blob: 4401492ca015adaadc7165fb536a794d65f22c52 [file] [log] [blame]
Alex Margineanc3452b52019-06-03 19:10:30 +03001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2019
4 * Alex Marginean, NXP
5 */
6
7#include <common.h>
8#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070010#include <malloc.h>
Alex Margineanc3452b52019-06-03 19:10:30 +030011#include <miiphy.h>
12#include <dm/device-internal.h>
Simon Glass336d4612020-02-03 07:36:16 -070013#include <dm/device_compat.h>
Bin Meng33aad0b2021-03-14 20:14:47 +080014#include <dm/of_extra.h>
Alex Margineanc3452b52019-06-03 19:10:30 +030015#include <dm/uclass-internal.h>
Simon Glass336d4612020-02-03 07:36:16 -070016#include <linux/compat.h>
Alex Margineanc3452b52019-06-03 19:10:30 +030017
18void dm_mdio_probe_devices(void)
19{
20 struct udevice *it;
21 struct uclass *uc;
22
23 uclass_get(UCLASS_MDIO, &uc);
24 uclass_foreach_dev(it, uc) {
25 device_probe(it);
26 }
27}
28
29static int dm_mdio_post_bind(struct udevice *dev)
30{
Alex Marginean6b3abc02019-07-25 12:33:17 +030031 const char *dt_name;
32
33 /* set a custom name for the MDIO device, if present in DT */
Simon Glassf10643c2020-12-19 10:40:14 -070034 if (dev_has_ofnode(dev)) {
35 dt_name = dev_read_string(dev, "device-name");
Alex Marginean6b3abc02019-07-25 12:33:17 +030036 if (dt_name) {
37 debug("renaming dev %s to %s\n", dev->name, dt_name);
38 device_set_name(dev, dt_name);
39 }
40 }
41
Alex Margineanc3452b52019-06-03 19:10:30 +030042 /*
43 * MDIO command doesn't like spaces in names, don't allow them to keep
44 * it happy
45 */
46 if (strchr(dev->name, ' ')) {
47 debug("\nError: MDIO device name \"%s\" has a space!\n",
48 dev->name);
49 return -EINVAL;
50 }
51
52 return 0;
53}
54
Marek Behún351bfa62022-04-07 00:32:58 +020055int dm_mdio_read(struct udevice *mdio_dev, int addr, int devad, int reg)
56{
57 struct mdio_ops *ops = mdio_get_ops(mdio_dev);
58
59 if (!ops->read)
60 return -ENOSYS;
61
62 return ops->read(mdio_dev, addr, devad, reg);
63}
64
65int dm_mdio_write(struct udevice *mdio_dev, int addr, int devad, int reg,
66 u16 val)
67{
68 struct mdio_ops *ops = mdio_get_ops(mdio_dev);
69
70 if (!ops->write)
71 return -ENOSYS;
72
73 return ops->write(mdio_dev, addr, devad, reg, val);
74}
75
76int dm_mdio_reset(struct udevice *mdio_dev)
77{
78 struct mdio_ops *ops = mdio_get_ops(mdio_dev);
79
80 if (!ops->reset)
81 return 0;
82
83 return ops->reset(mdio_dev);
84}
85
Alex Margineanc3452b52019-06-03 19:10:30 +030086/*
87 * Following read/write/reset functions are registered with legacy MII code.
88 * These are called for PHY operations by upper layers and we further call the
89 * DM MDIO driver functions.
90 */
91static int mdio_read(struct mii_dev *mii_bus, int addr, int devad, int reg)
92{
Marek Behún1776a242022-04-07 00:32:59 +020093 return dm_mdio_read(mii_bus->priv, addr, devad, reg);
Alex Margineanc3452b52019-06-03 19:10:30 +030094}
95
96static int mdio_write(struct mii_dev *mii_bus, int addr, int devad, int reg,
97 u16 val)
98{
Marek Behún1776a242022-04-07 00:32:59 +020099 return dm_mdio_write(mii_bus->priv, addr, devad, reg, val);
Alex Margineanc3452b52019-06-03 19:10:30 +0300100}
101
102static int mdio_reset(struct mii_dev *mii_bus)
103{
Marek Behún1776a242022-04-07 00:32:59 +0200104 return dm_mdio_reset(mii_bus->priv);
Alex Margineanc3452b52019-06-03 19:10:30 +0300105}
106
107static int dm_mdio_post_probe(struct udevice *dev)
108{
109 struct mdio_perdev_priv *pdata = dev_get_uclass_priv(dev);
110
111 pdata->mii_bus = mdio_alloc();
112 pdata->mii_bus->read = mdio_read;
113 pdata->mii_bus->write = mdio_write;
114 pdata->mii_bus->reset = mdio_reset;
115 pdata->mii_bus->priv = dev;
Vladimir Olteanbf35c312021-09-27 14:22:00 +0300116 strlcpy(pdata->mii_bus->name, dev->name, MDIO_NAME_LEN);
Alex Margineanc3452b52019-06-03 19:10:30 +0300117
118 return mdio_register(pdata->mii_bus);
119}
120
121static int dm_mdio_pre_remove(struct udevice *dev)
122{
123 struct mdio_perdev_priv *pdata = dev_get_uclass_priv(dev);
Alex Margineanc3452b52019-06-03 19:10:30 +0300124
Marek Behún1776a242022-04-07 00:32:59 +0200125 dm_mdio_reset(dev);
Alex Margineanc3452b52019-06-03 19:10:30 +0300126 mdio_unregister(pdata->mii_bus);
127 mdio_free(pdata->mii_bus);
128
129 return 0;
130}
131
Marek Behún00b1bad2022-04-27 12:41:49 +0200132struct phy_device *dm_phy_find_by_ofnode(ofnode phynode)
133{
134 struct mdio_perdev_priv *pdata;
135 struct udevice *mdiodev;
136 u32 phy_addr;
137
138 if (ofnode_read_u32(phynode, "reg", &phy_addr))
139 return NULL;
140
141 if (uclass_get_device_by_ofnode(UCLASS_MDIO,
142 ofnode_get_parent(phynode),
143 &mdiodev))
144 return NULL;
145
146 if (device_probe(mdiodev))
147 return NULL;
148
149 pdata = dev_get_uclass_priv(mdiodev);
150
151 return phy_find_by_mask(pdata->mii_bus, BIT(phy_addr));
152}
153
Alex Margineana5d32c32019-11-25 17:15:11 +0200154struct phy_device *dm_mdio_phy_connect(struct udevice *mdiodev, int phyaddr,
Alex Margineanc3452b52019-06-03 19:10:30 +0300155 struct udevice *ethdev,
156 phy_interface_t interface)
157{
Alex Margineana5d32c32019-11-25 17:15:11 +0200158 struct mdio_perdev_priv *pdata = dev_get_uclass_priv(mdiodev);
Alex Margineanc3452b52019-06-03 19:10:30 +0300159
Alex Margineana5d32c32019-11-25 17:15:11 +0200160 if (device_probe(mdiodev))
161 return NULL;
Alex Margineanc3452b52019-06-03 19:10:30 +0300162
Alex Margineana5d32c32019-11-25 17:15:11 +0200163 return phy_connect(pdata->mii_bus, phyaddr, ethdev, interface);
Alex Margineanc3452b52019-06-03 19:10:30 +0300164}
165
Alex Marginean2f624552019-11-25 17:15:12 +0200166static struct phy_device *dm_eth_connect_phy_handle(struct udevice *ethdev,
167 phy_interface_t interface)
168{
169 u32 phy_addr;
170 struct udevice *mdiodev;
171 struct phy_device *phy;
Vladimir Olteanf27bc8a2021-03-14 20:14:48 +0800172 ofnode phynode;
Alex Marginean2f624552019-11-25 17:15:12 +0200173
Rasmus Villemoesbdf31922020-10-05 15:15:16 +0200174 if (CONFIG_IS_ENABLED(PHY_FIXED) &&
Vladimir Olteanf27bc8a2021-03-14 20:14:48 +0800175 ofnode_phy_is_fixed_link(dev_ofnode(ethdev), &phynode)) {
176 phy = phy_connect(NULL, 0, ethdev, interface);
Rasmus Villemoesbdf31922020-10-05 15:15:16 +0200177 goto out;
178 }
179
Marek Behúnf3dd2132022-04-07 00:32:57 +0200180 phynode = dev_get_phy_node(ethdev);
181 if (!ofnode_valid(phynode)) {
Sean Anderson0851bd12020-09-15 10:44:53 -0400182 dev_dbg(ethdev, "can't find PHY node\n");
Alex Marginean2f624552019-11-25 17:15:12 +0200183 return NULL;
184 }
185
186 /*
187 * reading 'reg' directly should be fine. This is a PHY node, the
188 * address is always size 1 and requires no translation
189 */
Marek Behúnf3dd2132022-04-07 00:32:57 +0200190 if (ofnode_read_u32(phynode, "reg", &phy_addr)) {
Alex Marginean2f624552019-11-25 17:15:12 +0200191 dev_dbg(ethdev, "missing reg property in phy node\n");
192 return NULL;
193 }
194
195 if (uclass_get_device_by_ofnode(UCLASS_MDIO,
Marek Behúnf3dd2132022-04-07 00:32:57 +0200196 ofnode_get_parent(phynode),
Alex Marginean2f624552019-11-25 17:15:12 +0200197 &mdiodev)) {
Sean Anderson0851bd12020-09-15 10:44:53 -0400198 dev_dbg(ethdev, "can't find MDIO bus for node %s\n",
Marek Behúnf3dd2132022-04-07 00:32:57 +0200199 ofnode_get_name(ofnode_get_parent(phynode)));
Alex Marginean2f624552019-11-25 17:15:12 +0200200 return NULL;
201 }
202
203 phy = dm_mdio_phy_connect(mdiodev, phy_addr, ethdev, interface);
204
Rasmus Villemoesbdf31922020-10-05 15:15:16 +0200205out:
Alex Marginean2f624552019-11-25 17:15:12 +0200206 if (phy)
Marek Behúnf3dd2132022-04-07 00:32:57 +0200207 phy->node = phynode;
Alex Marginean2f624552019-11-25 17:15:12 +0200208
209 return phy;
210}
211
212/* Connect to a PHY linked in eth DT node */
213struct phy_device *dm_eth_phy_connect(struct udevice *ethdev)
214{
Alex Marginean2f624552019-11-25 17:15:12 +0200215 phy_interface_t interface;
216 struct phy_device *phy;
Alex Marginean2f624552019-11-25 17:15:12 +0200217
Simon Glassf10643c2020-12-19 10:40:14 -0700218 if (!dev_has_ofnode(ethdev)) {
Alex Marginean2f624552019-11-25 17:15:12 +0200219 debug("%s: supplied eth dev has no DT node!\n", ethdev->name);
220 return NULL;
221 }
222
Marek Behún123ca112022-04-07 00:33:01 +0200223 interface = dev_read_phy_mode(ethdev);
Marek Behúnffb0f6f2022-04-07 00:33:03 +0200224 if (interface == PHY_INTERFACE_MODE_NA)
225 dev_dbg(ethdev, "can't find interface mode, default to NA\n");
Alex Marginean2f624552019-11-25 17:15:12 +0200226
227 phy = dm_eth_connect_phy_handle(ethdev, interface);
228
229 if (!phy)
230 return NULL;
231
232 phy->interface = interface;
233
234 return phy;
235}
236
Alex Margineanc3452b52019-06-03 19:10:30 +0300237UCLASS_DRIVER(mdio) = {
238 .id = UCLASS_MDIO,
239 .name = "mdio",
240 .post_bind = dm_mdio_post_bind,
241 .post_probe = dm_mdio_post_probe,
242 .pre_remove = dm_mdio_pre_remove,
Simon Glass41575d82020-12-03 16:55:17 -0700243 .per_device_auto = sizeof(struct mdio_perdev_priv),
Alex Margineanc3452b52019-06-03 19:10:30 +0300244};