1 // SPDX-License-Identifier: GPL-2.0+
10 #include <dm/device-internal.h>
11 #include <dm/uclass-internal.h>
13 /* DT node properties for MAC-PHY interface */
14 #define PHY_MODE_STR_CNT 2
15 static const char *phy_mode_str[PHY_MODE_STR_CNT] = { "phy-mode",
16 "phy-connection-type" };
17 /* DT node properties that reference a PHY node */
18 #define PHY_HANDLE_STR_CNT 3
19 const char *phy_handle_str[PHY_HANDLE_STR_CNT] = { "phy-handle",
23 void dm_mdio_probe_devices(void)
28 uclass_get(UCLASS_MDIO, &uc);
29 uclass_foreach_dev(it, uc) {
34 static int dm_mdio_post_bind(struct udevice *dev)
38 /* set a custom name for the MDIO device, if present in DT */
39 if (ofnode_valid(dev->node)) {
40 dt_name = ofnode_read_string(dev->node, "device-name");
42 debug("renaming dev %s to %s\n", dev->name, dt_name);
43 device_set_name(dev, dt_name);
48 * MDIO command doesn't like spaces in names, don't allow them to keep
51 if (strchr(dev->name, ' ')) {
52 debug("\nError: MDIO device name \"%s\" has a space!\n",
61 * Following read/write/reset functions are registered with legacy MII code.
62 * These are called for PHY operations by upper layers and we further call the
63 * DM MDIO driver functions.
65 static int mdio_read(struct mii_dev *mii_bus, int addr, int devad, int reg)
67 struct udevice *dev = mii_bus->priv;
69 return mdio_get_ops(dev)->read(dev, addr, devad, reg);
72 static int mdio_write(struct mii_dev *mii_bus, int addr, int devad, int reg,
75 struct udevice *dev = mii_bus->priv;
77 return mdio_get_ops(dev)->write(dev, addr, devad, reg, val);
80 static int mdio_reset(struct mii_dev *mii_bus)
82 struct udevice *dev = mii_bus->priv;
84 if (mdio_get_ops(dev)->reset)
85 return mdio_get_ops(dev)->reset(dev);
90 static int dm_mdio_post_probe(struct udevice *dev)
92 struct mdio_perdev_priv *pdata = dev_get_uclass_priv(dev);
94 pdata->mii_bus = mdio_alloc();
95 pdata->mii_bus->read = mdio_read;
96 pdata->mii_bus->write = mdio_write;
97 pdata->mii_bus->reset = mdio_reset;
98 pdata->mii_bus->priv = dev;
99 strncpy(pdata->mii_bus->name, dev->name, MDIO_NAME_LEN - 1);
101 return mdio_register(pdata->mii_bus);
104 static int dm_mdio_pre_remove(struct udevice *dev)
106 struct mdio_perdev_priv *pdata = dev_get_uclass_priv(dev);
107 struct mdio_ops *ops = mdio_get_ops(dev);
111 mdio_unregister(pdata->mii_bus);
112 mdio_free(pdata->mii_bus);
117 struct phy_device *dm_mdio_phy_connect(struct udevice *mdiodev, int phyaddr,
118 struct udevice *ethdev,
119 phy_interface_t interface)
121 struct mdio_perdev_priv *pdata = dev_get_uclass_priv(mdiodev);
123 if (device_probe(mdiodev))
126 return phy_connect(pdata->mii_bus, phyaddr, ethdev, interface);
129 static struct phy_device *dm_eth_connect_phy_handle(struct udevice *ethdev,
130 phy_interface_t interface)
133 struct udevice *mdiodev;
134 struct phy_device *phy;
135 struct ofnode_phandle_args phandle = {.node = ofnode_null()};
138 for (i = 0; i < PHY_HANDLE_STR_CNT; i++)
139 if (!dev_read_phandle_with_args(ethdev, phy_handle_str[i], NULL,
143 if (!ofnode_valid(phandle.node)) {
144 dev_dbg(dev, "can't find PHY node\n");
149 * reading 'reg' directly should be fine. This is a PHY node, the
150 * address is always size 1 and requires no translation
152 if (ofnode_read_u32(phandle.node, "reg", &phy_addr)) {
153 dev_dbg(ethdev, "missing reg property in phy node\n");
157 if (uclass_get_device_by_ofnode(UCLASS_MDIO,
158 ofnode_get_parent(phandle.node),
160 dev_dbg(dev, "can't find MDIO bus for node %s\n",
161 ofnode_get_name(ofnode_get_parent(phandle.node)));
165 phy = dm_mdio_phy_connect(mdiodev, phy_addr, ethdev, interface);
168 phy->node = phandle.node;
173 /* Connect to a PHY linked in eth DT node */
174 struct phy_device *dm_eth_phy_connect(struct udevice *ethdev)
177 phy_interface_t interface;
178 struct phy_device *phy;
181 if (!ofnode_valid(ethdev->node)) {
182 debug("%s: supplied eth dev has no DT node!\n", ethdev->name);
186 interface = PHY_INTERFACE_MODE_NONE;
187 for (i = 0; i < PHY_MODE_STR_CNT; i++) {
188 if_str = ofnode_read_string(ethdev->node, phy_mode_str[i]);
190 interface = phy_get_interface_by_name(if_str);
195 interface = PHY_INTERFACE_MODE_NONE;
196 if (interface == PHY_INTERFACE_MODE_NONE)
197 dev_dbg(ethdev, "can't find interface mode, default to NONE\n");
199 phy = dm_eth_connect_phy_handle(ethdev, interface);
204 phy->interface = interface;
209 UCLASS_DRIVER(mdio) = {
212 .post_bind = dm_mdio_post_bind,
213 .post_probe = dm_mdio_post_probe,
214 .pre_remove = dm_mdio_pre_remove,
215 .per_device_auto_alloc_size = sizeof(struct mdio_perdev_priv),