Merge tag 'efi-2022-07-rc1-2' of https://source.denx.de/u-boot/custodians/u-boot-efi
[platform/kernel/u-boot.git] / net / mdio-uclass.c
1 // 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>
9 #include <log.h>
10 #include <malloc.h>
11 #include <miiphy.h>
12 #include <dm/device-internal.h>
13 #include <dm/device_compat.h>
14 #include <dm/of_extra.h>
15 #include <dm/uclass-internal.h>
16 #include <linux/compat.h>
17
18 void 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
29 static int dm_mdio_post_bind(struct udevice *dev)
30 {
31         const char *dt_name;
32
33         /* set a custom name for the MDIO device, if present in DT */
34         if (dev_has_ofnode(dev)) {
35                 dt_name = dev_read_string(dev, "device-name");
36                 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
42         /*
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
55 int 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
65 int 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
76 int 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
86 /*
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  */
91 static int mdio_read(struct mii_dev *mii_bus, int addr, int devad, int reg)
92 {
93         return dm_mdio_read(mii_bus->priv, addr, devad, reg);
94 }
95
96 static int mdio_write(struct mii_dev *mii_bus, int addr, int devad, int reg,
97                       u16 val)
98 {
99         return dm_mdio_write(mii_bus->priv, addr, devad, reg, val);
100 }
101
102 static int mdio_reset(struct mii_dev *mii_bus)
103 {
104         return dm_mdio_reset(mii_bus->priv);
105 }
106
107 static 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;
116         strlcpy(pdata->mii_bus->name, dev->name, MDIO_NAME_LEN);
117
118         return mdio_register(pdata->mii_bus);
119 }
120
121 static int dm_mdio_pre_remove(struct udevice *dev)
122 {
123         struct mdio_perdev_priv *pdata = dev_get_uclass_priv(dev);
124
125         dm_mdio_reset(dev);
126         mdio_unregister(pdata->mii_bus);
127         mdio_free(pdata->mii_bus);
128
129         return 0;
130 }
131
132 struct phy_device *dm_mdio_phy_connect(struct udevice *mdiodev, int phyaddr,
133                                        struct udevice *ethdev,
134                                        phy_interface_t interface)
135 {
136         struct mdio_perdev_priv *pdata = dev_get_uclass_priv(mdiodev);
137
138         if (device_probe(mdiodev))
139                 return NULL;
140
141         return phy_connect(pdata->mii_bus, phyaddr, ethdev, interface);
142 }
143
144 static struct phy_device *dm_eth_connect_phy_handle(struct udevice *ethdev,
145                                                     phy_interface_t interface)
146 {
147         u32 phy_addr;
148         struct udevice *mdiodev;
149         struct phy_device *phy;
150         ofnode phynode;
151
152         if (CONFIG_IS_ENABLED(PHY_FIXED) &&
153             ofnode_phy_is_fixed_link(dev_ofnode(ethdev), &phynode)) {
154                 phy = phy_connect(NULL, 0, ethdev, interface);
155                 goto out;
156         }
157
158         phynode = dev_get_phy_node(ethdev);
159         if (!ofnode_valid(phynode)) {
160                 dev_dbg(ethdev, "can't find PHY node\n");
161                 return NULL;
162         }
163
164         /*
165          * reading 'reg' directly should be fine.  This is a PHY node, the
166          * address is always size 1 and requires no translation
167          */
168         if (ofnode_read_u32(phynode, "reg", &phy_addr)) {
169                 dev_dbg(ethdev, "missing reg property in phy node\n");
170                 return NULL;
171         }
172
173         if (uclass_get_device_by_ofnode(UCLASS_MDIO,
174                                         ofnode_get_parent(phynode),
175                                         &mdiodev)) {
176                 dev_dbg(ethdev, "can't find MDIO bus for node %s\n",
177                         ofnode_get_name(ofnode_get_parent(phynode)));
178                 return NULL;
179         }
180
181         phy = dm_mdio_phy_connect(mdiodev, phy_addr, ethdev, interface);
182
183 out:
184         if (phy)
185                 phy->node = phynode;
186
187         return phy;
188 }
189
190 /* Connect to a PHY linked in eth DT node */
191 struct phy_device *dm_eth_phy_connect(struct udevice *ethdev)
192 {
193         phy_interface_t interface;
194         struct phy_device *phy;
195
196         if (!dev_has_ofnode(ethdev)) {
197                 debug("%s: supplied eth dev has no DT node!\n", ethdev->name);
198                 return NULL;
199         }
200
201         interface = dev_read_phy_mode(ethdev);
202         if (interface == PHY_INTERFACE_MODE_NA)
203                 dev_dbg(ethdev, "can't find interface mode, default to NA\n");
204
205         phy = dm_eth_connect_phy_handle(ethdev, interface);
206
207         if (!phy)
208                 return NULL;
209
210         phy->interface = interface;
211
212         return phy;
213 }
214
215 UCLASS_DRIVER(mdio) = {
216         .id = UCLASS_MDIO,
217         .name = "mdio",
218         .post_bind  = dm_mdio_post_bind,
219         .post_probe = dm_mdio_post_probe,
220         .pre_remove = dm_mdio_pre_remove,
221         .per_device_auto        = sizeof(struct mdio_perdev_priv),
222 };