net: introduce helpers to get PHY ofnode from MAC
[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 /* DT node properties for MAC-PHY interface */
19 static const char * const phy_mode_str[] = {
20         "phy-mode", "phy-connection-type"
21 };
22
23 void dm_mdio_probe_devices(void)
24 {
25         struct udevice *it;
26         struct uclass *uc;
27
28         uclass_get(UCLASS_MDIO, &uc);
29         uclass_foreach_dev(it, uc) {
30                 device_probe(it);
31         }
32 }
33
34 static int dm_mdio_post_bind(struct udevice *dev)
35 {
36         const char *dt_name;
37
38         /* set a custom name for the MDIO device, if present in DT */
39         if (dev_has_ofnode(dev)) {
40                 dt_name = dev_read_string(dev, "device-name");
41                 if (dt_name) {
42                         debug("renaming dev %s to %s\n", dev->name, dt_name);
43                         device_set_name(dev, dt_name);
44                 }
45         }
46
47         /*
48          * MDIO command doesn't like spaces in names, don't allow them to keep
49          * it happy
50          */
51         if (strchr(dev->name, ' ')) {
52                 debug("\nError: MDIO device name \"%s\" has a space!\n",
53                       dev->name);
54                 return -EINVAL;
55         }
56
57         return 0;
58 }
59
60 /*
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.
64  */
65 static int mdio_read(struct mii_dev *mii_bus, int addr, int devad, int reg)
66 {
67         struct udevice *dev = mii_bus->priv;
68
69         return mdio_get_ops(dev)->read(dev, addr, devad, reg);
70 }
71
72 static int mdio_write(struct mii_dev *mii_bus, int addr, int devad, int reg,
73                       u16 val)
74 {
75         struct udevice *dev = mii_bus->priv;
76
77         return mdio_get_ops(dev)->write(dev, addr, devad, reg, val);
78 }
79
80 static int mdio_reset(struct mii_dev *mii_bus)
81 {
82         struct udevice *dev = mii_bus->priv;
83
84         if (mdio_get_ops(dev)->reset)
85                 return mdio_get_ops(dev)->reset(dev);
86         else
87                 return 0;
88 }
89
90 static int dm_mdio_post_probe(struct udevice *dev)
91 {
92         struct mdio_perdev_priv *pdata = dev_get_uclass_priv(dev);
93
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         strlcpy(pdata->mii_bus->name, dev->name, MDIO_NAME_LEN);
100
101         return mdio_register(pdata->mii_bus);
102 }
103
104 static int dm_mdio_pre_remove(struct udevice *dev)
105 {
106         struct mdio_perdev_priv *pdata = dev_get_uclass_priv(dev);
107         struct mdio_ops *ops = mdio_get_ops(dev);
108
109         if (ops->reset)
110                 ops->reset(dev);
111         mdio_unregister(pdata->mii_bus);
112         mdio_free(pdata->mii_bus);
113
114         return 0;
115 }
116
117 struct phy_device *dm_mdio_phy_connect(struct udevice *mdiodev, int phyaddr,
118                                        struct udevice *ethdev,
119                                        phy_interface_t interface)
120 {
121         struct mdio_perdev_priv *pdata = dev_get_uclass_priv(mdiodev);
122
123         if (device_probe(mdiodev))
124                 return NULL;
125
126         return phy_connect(pdata->mii_bus, phyaddr, ethdev, interface);
127 }
128
129 static struct phy_device *dm_eth_connect_phy_handle(struct udevice *ethdev,
130                                                     phy_interface_t interface)
131 {
132         u32 phy_addr;
133         struct udevice *mdiodev;
134         struct phy_device *phy;
135         ofnode phynode;
136
137         if (CONFIG_IS_ENABLED(PHY_FIXED) &&
138             ofnode_phy_is_fixed_link(dev_ofnode(ethdev), &phynode)) {
139                 phy = phy_connect(NULL, 0, ethdev, interface);
140                 goto out;
141         }
142
143         phynode = dev_get_phy_node(ethdev);
144         if (!ofnode_valid(phynode)) {
145                 dev_dbg(ethdev, "can't find PHY node\n");
146                 return NULL;
147         }
148
149         /*
150          * reading 'reg' directly should be fine.  This is a PHY node, the
151          * address is always size 1 and requires no translation
152          */
153         if (ofnode_read_u32(phynode, "reg", &phy_addr)) {
154                 dev_dbg(ethdev, "missing reg property in phy node\n");
155                 return NULL;
156         }
157
158         if (uclass_get_device_by_ofnode(UCLASS_MDIO,
159                                         ofnode_get_parent(phynode),
160                                         &mdiodev)) {
161                 dev_dbg(ethdev, "can't find MDIO bus for node %s\n",
162                         ofnode_get_name(ofnode_get_parent(phynode)));
163                 return NULL;
164         }
165
166         phy = dm_mdio_phy_connect(mdiodev, phy_addr, ethdev, interface);
167
168 out:
169         if (phy)
170                 phy->node = phynode;
171
172         return phy;
173 }
174
175 /* Connect to a PHY linked in eth DT node */
176 struct phy_device *dm_eth_phy_connect(struct udevice *ethdev)
177 {
178         const char *if_str;
179         phy_interface_t interface;
180         struct phy_device *phy;
181         int i;
182
183         if (!dev_has_ofnode(ethdev)) {
184                 debug("%s: supplied eth dev has no DT node!\n", ethdev->name);
185                 return NULL;
186         }
187
188         interface = PHY_INTERFACE_MODE_NONE;
189         for (i = 0; i < ARRAY_SIZE(phy_mode_str); i++) {
190                 if_str = dev_read_string(ethdev, phy_mode_str[i]);
191                 if (if_str) {
192                         interface = phy_get_interface_by_name(if_str);
193                         break;
194                 }
195         }
196         if (interface < 0)
197                 interface = PHY_INTERFACE_MODE_NONE;
198         if (interface == PHY_INTERFACE_MODE_NONE)
199                 dev_dbg(ethdev, "can't find interface mode, default to NONE\n");
200
201         phy = dm_eth_connect_phy_handle(ethdev, interface);
202
203         if (!phy)
204                 return NULL;
205
206         phy->interface = interface;
207
208         return phy;
209 }
210
211 UCLASS_DRIVER(mdio) = {
212         .id = UCLASS_MDIO,
213         .name = "mdio",
214         .post_bind  = dm_mdio_post_bind,
215         .post_probe = dm_mdio_post_probe,
216         .pre_remove = dm_mdio_pre_remove,
217         .per_device_auto        = sizeof(struct mdio_perdev_priv),
218 };