u-boot-brain/drivers/phy/sandbox-phy.c
Tom Rini 83d290c56f SPDX: Convert all of our single license tags to Linux Kernel style
When U-Boot started using SPDX tags we were among the early adopters and
there weren't a lot of other examples to borrow from.  So we picked the
area of the file that usually had a full license text and replaced it
with an appropriate SPDX-License-Identifier: entry.  Since then, the
Linux Kernel has adopted SPDX tags and they place it as the very first
line in a file (except where shebangs are used, then it's second line)
and with slightly different comment styles than us.

In part due to community overlap, in part due to better tag visibility
and in part for other minor reasons, switch over to that style.

This commit changes all instances where we have a single declared
license in the tag as both the before and after are identical in tag
contents.  There's also a few places where I found we did not have a tag
and have introduced one.

Signed-off-by: Tom Rini <trini@konsulko.com>
2018-05-07 09:34:12 -04:00

105 lines
1.9 KiB
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
* Written by Jean-Jacques Hiblot <jjhiblot@ti.com>
*/
#include <common.h>
#include <dm.h>
#include <generic-phy.h>
struct sandbox_phy_priv {
bool initialized;
bool on;
bool broken;
};
static int sandbox_phy_power_on(struct phy *phy)
{
struct sandbox_phy_priv *priv = dev_get_priv(phy->dev);
if (!priv->initialized)
return -EIO;
if (priv->broken)
return -EIO;
priv->on = true;
return 0;
}
static int sandbox_phy_power_off(struct phy *phy)
{
struct sandbox_phy_priv *priv = dev_get_priv(phy->dev);
if (!priv->initialized)
return -EIO;
if (priv->broken)
return -EIO;
/*
* for validation purpose, let's says that power off
* works only for PHY 0
*/
if (phy->id)
return -EIO;
priv->on = false;
return 0;
}
static int sandbox_phy_init(struct phy *phy)
{
struct sandbox_phy_priv *priv = dev_get_priv(phy->dev);
priv->initialized = true;
priv->on = true;
return 0;
}
static int sandbox_phy_exit(struct phy *phy)
{
struct sandbox_phy_priv *priv = dev_get_priv(phy->dev);
priv->initialized = false;
priv->on = false;
return 0;
}
static int sandbox_phy_probe(struct udevice *dev)
{
struct sandbox_phy_priv *priv = dev_get_priv(dev);
priv->initialized = false;
priv->on = false;
priv->broken = dev_read_bool(dev, "broken");
return 0;
}
static struct phy_ops sandbox_phy_ops = {
.power_on = sandbox_phy_power_on,
.power_off = sandbox_phy_power_off,
.init = sandbox_phy_init,
.exit = sandbox_phy_exit,
};
static const struct udevice_id sandbox_phy_ids[] = {
{ .compatible = "sandbox,phy" },
{ }
};
U_BOOT_DRIVER(phy_sandbox) = {
.name = "phy_sandbox",
.id = UCLASS_PHY,
.of_match = sandbox_phy_ids,
.ops = &sandbox_phy_ops,
.probe = sandbox_phy_probe,
.priv_auto_alloc_size = sizeof(struct sandbox_phy_priv),
};