2017-04-24 09:51:27 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
|
|
|
|
|
* Written by Jean-Jacques Hiblot <jjhiblot@ti.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
|
#include <dm.h>
|
|
|
|
|
#include <generic-phy.h>
|
|
|
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
|
|
static inline struct phy_ops *phy_dev_ops(struct udevice *dev)
|
|
|
|
|
{
|
|
|
|
|
return (struct phy_ops *)dev->driver->ops;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int generic_phy_xlate_offs_flags(struct phy *phy,
|
2017-05-19 02:09:47 +00:00
|
|
|
struct ofnode_phandle_args *args)
|
2017-04-24 09:51:27 +00:00
|
|
|
{
|
|
|
|
|
debug("%s(phy=%p)\n", __func__, phy);
|
|
|
|
|
|
|
|
|
|
if (args->args_count > 1) {
|
|
|
|
|
debug("Invaild args_count: %d\n", args->args_count);
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (args->args_count)
|
|
|
|
|
phy->id = args->args[0];
|
|
|
|
|
else
|
|
|
|
|
phy->id = 0;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int generic_phy_get_by_index(struct udevice *dev, int index,
|
|
|
|
|
struct phy *phy)
|
|
|
|
|
{
|
2017-05-19 02:09:47 +00:00
|
|
|
struct ofnode_phandle_args args;
|
2017-04-24 09:51:27 +00:00
|
|
|
struct phy_ops *ops;
|
|
|
|
|
int ret;
|
|
|
|
|
struct udevice *phydev;
|
|
|
|
|
|
|
|
|
|
debug("%s(dev=%p, index=%d, phy=%p)\n", __func__, dev, index, phy);
|
|
|
|
|
|
|
|
|
|
assert(phy);
|
2017-07-18 09:38:42 +00:00
|
|
|
phy->dev = NULL;
|
2017-05-19 02:09:47 +00:00
|
|
|
ret = dev_read_phandle_with_args(dev, "phys", "#phy-cells", 0, index,
|
|
|
|
|
&args);
|
2017-04-24 09:51:27 +00:00
|
|
|
if (ret) {
|
2017-05-19 02:09:47 +00:00
|
|
|
debug("%s: dev_read_phandle_with_args failed: err=%d\n",
|
2017-04-24 09:51:27 +00:00
|
|
|
__func__, ret);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-19 02:09:47 +00:00
|
|
|
ret = uclass_get_device_by_ofnode(UCLASS_PHY, args.node, &phydev);
|
2017-04-24 09:51:27 +00:00
|
|
|
if (ret) {
|
2017-05-19 02:09:47 +00:00
|
|
|
debug("%s: uclass_get_device_by_ofnode failed: err=%d\n",
|
2017-04-24 09:51:27 +00:00
|
|
|
__func__, ret);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
phy->dev = phydev;
|
|
|
|
|
|
|
|
|
|
ops = phy_dev_ops(phydev);
|
|
|
|
|
|
|
|
|
|
if (ops->of_xlate)
|
|
|
|
|
ret = ops->of_xlate(phy, &args);
|
|
|
|
|
else
|
|
|
|
|
ret = generic_phy_xlate_offs_flags(phy, &args);
|
|
|
|
|
if (ret) {
|
|
|
|
|
debug("of_xlate() failed: %d\n", ret);
|
|
|
|
|
goto err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
err:
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int generic_phy_get_by_name(struct udevice *dev, const char *phy_name,
|
|
|
|
|
struct phy *phy)
|
|
|
|
|
{
|
|
|
|
|
int index;
|
|
|
|
|
|
|
|
|
|
debug("%s(dev=%p, name=%s, phy=%p)\n", __func__, dev, phy_name, phy);
|
|
|
|
|
|
2017-05-19 02:09:47 +00:00
|
|
|
index = dev_read_stringlist_search(dev, "phy-names", phy_name);
|
2017-04-24 09:51:27 +00:00
|
|
|
if (index < 0) {
|
2017-05-19 02:09:47 +00:00
|
|
|
debug("dev_read_stringlist_search() failed: %d\n", index);
|
2017-04-24 09:51:27 +00:00
|
|
|
return index;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return generic_phy_get_by_index(dev, index, phy);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int generic_phy_init(struct phy *phy)
|
|
|
|
|
{
|
2019-10-01 12:03:26 +00:00
|
|
|
struct phy_ops const *ops;
|
|
|
|
|
|
2020-05-20 17:05:41 +00:00
|
|
|
if (!generic_phy_valid(phy))
|
2019-10-01 12:03:26 +00:00
|
|
|
return 0;
|
|
|
|
|
ops = phy_dev_ops(phy->dev);
|
2017-04-24 09:51:27 +00:00
|
|
|
|
|
|
|
|
return ops->init ? ops->init(phy) : 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int generic_phy_reset(struct phy *phy)
|
|
|
|
|
{
|
2019-10-01 12:03:26 +00:00
|
|
|
struct phy_ops const *ops;
|
|
|
|
|
|
2020-05-20 17:05:41 +00:00
|
|
|
if (!generic_phy_valid(phy))
|
2019-10-01 12:03:26 +00:00
|
|
|
return 0;
|
|
|
|
|
ops = phy_dev_ops(phy->dev);
|
2017-04-24 09:51:27 +00:00
|
|
|
|
|
|
|
|
return ops->reset ? ops->reset(phy) : 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int generic_phy_exit(struct phy *phy)
|
|
|
|
|
{
|
2019-10-01 12:03:26 +00:00
|
|
|
struct phy_ops const *ops;
|
|
|
|
|
|
2020-05-20 17:05:41 +00:00
|
|
|
if (!generic_phy_valid(phy))
|
2019-10-01 12:03:26 +00:00
|
|
|
return 0;
|
|
|
|
|
ops = phy_dev_ops(phy->dev);
|
2017-04-24 09:51:27 +00:00
|
|
|
|
|
|
|
|
return ops->exit ? ops->exit(phy) : 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int generic_phy_power_on(struct phy *phy)
|
|
|
|
|
{
|
2019-10-01 12:03:26 +00:00
|
|
|
struct phy_ops const *ops;
|
|
|
|
|
|
2020-05-20 17:05:41 +00:00
|
|
|
if (!generic_phy_valid(phy))
|
2019-10-01 12:03:26 +00:00
|
|
|
return 0;
|
|
|
|
|
ops = phy_dev_ops(phy->dev);
|
2017-04-24 09:51:27 +00:00
|
|
|
|
|
|
|
|
return ops->power_on ? ops->power_on(phy) : 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int generic_phy_power_off(struct phy *phy)
|
|
|
|
|
{
|
2019-10-01 12:03:26 +00:00
|
|
|
struct phy_ops const *ops;
|
|
|
|
|
|
2020-05-20 17:05:41 +00:00
|
|
|
if (!generic_phy_valid(phy))
|
2019-10-01 12:03:26 +00:00
|
|
|
return 0;
|
|
|
|
|
ops = phy_dev_ops(phy->dev);
|
2017-04-24 09:51:27 +00:00
|
|
|
|
|
|
|
|
return ops->power_off ? ops->power_off(phy) : 0;
|
|
|
|
|
}
|
|
|
|
|
|
phy: Add configuration interface
The phy framework is only allowing to configure the power state of thePHY
using the init and power_on hooks, and their power_off and exit
counterparts.
While it works for most, simple, PHYs supported so far, some more advanced
PHYs need some configuration depending on runtime parameters. These PHYs
have been supported by a number of means already, often by using ad-hoc
drivers in their consumer drivers.
That doesn't work too well however, when a consumer device needs to deal
with multiple PHYs, or when multiple consumers need to deal with the same
PHY (a DSI driver and a CSI driver for example).
So we'll add a new interface, through two funtions, phy_validate and
phy_configure. The first one will allow to check that a current
configuration, for a given mode, is applicable. It will also allow the PHY
driver to tune the settings given as parameters as it sees fit.
phy_configure will actually apply that configuration in the phy itself.
Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
Change-Id: Icd170eaef9a1dbe21e0c7664b797a27877c703b5
2020-12-10 02:12:15 +00:00
|
|
|
int generic_phy_configure(struct phy *phy, union phy_configure_opts *opts)
|
|
|
|
|
{
|
|
|
|
|
struct phy_ops const *ops;
|
|
|
|
|
|
|
|
|
|
if (!generic_phy_valid(phy))
|
|
|
|
|
return 0;
|
|
|
|
|
ops = phy_dev_ops(phy->dev);
|
|
|
|
|
|
|
|
|
|
return ops->configure ? ops->configure(phy, opts) : 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int generic_phy_validate(struct phy *phy, enum phy_mode mode, int submode,
|
|
|
|
|
union phy_configure_opts *opts)
|
|
|
|
|
{
|
|
|
|
|
struct phy_ops const *ops;
|
|
|
|
|
|
|
|
|
|
if (!generic_phy_valid(phy))
|
|
|
|
|
return 0;
|
|
|
|
|
ops = phy_dev_ops(phy->dev);
|
|
|
|
|
|
|
|
|
|
return ops->validate ? ops->validate(phy, mode, submode, opts) : 0;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-24 09:51:27 +00:00
|
|
|
UCLASS_DRIVER(phy) = {
|
|
|
|
|
.id = UCLASS_PHY,
|
|
|
|
|
.name = "phy",
|
|
|
|
|
};
|