blob: 8b7d3e64b8cab66faf8b500b5fcaf58801300de3 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/*
2 * OF helpers for the MDIO (Ethernet PHY) API
3 *
4 * Copyright (c) 2009 Secret Lab Technologies, Ltd.
5 *
6 * This file is released under the GPLv2
7 *
8 * This file provides helper functions for extracting PHY device information
9 * out of the OpenFirmware device tree and using it to populate an mii_bus.
10 */
11
12#include <linux/kernel.h>
13#include <linux/device.h>
14#include <linux/netdevice.h>
15#include <linux/err.h>
16#include <linux/phy.h>
17#include <linux/phy_fixed.h>
18#include <linux/of.h>
19#include <linux/of_gpio.h>
20#include <linux/of_irq.h>
21#include <linux/of_mdio.h>
22#include <linux/of_net.h>
23#include <linux/module.h>
24
25#define DEFAULT_GPIO_RESET_DELAY 10 /* in microseconds */
26
27MODULE_AUTHOR("Grant Likely <grant.likely@secretlab.ca>");
28MODULE_LICENSE("GPL");
29
30/* Extract the clause 22 phy ID from the compatible string of the form
31 * ethernet-phy-idAAAA.BBBB */
32static int of_get_phy_id(struct device_node *device, u32 *phy_id)
33{
34 struct property *prop;
35 const char *cp;
36 unsigned int upper, lower;
37
38 of_property_for_each_string(device, "compatible", prop, cp) {
39 if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) == 2) {
40 *phy_id = ((upper & 0xFFFF) << 16) | (lower & 0xFFFF);
41 return 0;
42 }
43 }
44 return -EINVAL;
45}
46
47static int of_mdiobus_register_phy(struct mii_bus *mdio,
48 struct device_node *child, u32 addr)
49{
50 struct phy_device *phy;
51 bool is_c45;
52 int rc;
53 u32 phy_id;
54
55 is_c45 = of_device_is_compatible(child,
56 "ethernet-phy-ieee802.3-c45");
57
58 if (!is_c45 && !of_get_phy_id(child, &phy_id))
59 phy = phy_device_create(mdio, addr, phy_id, 0, NULL);
60 else
61 phy = get_phy_device(mdio, addr, is_c45);
62 if (IS_ERR(phy))
63 return PTR_ERR(phy);
64
65 rc = of_irq_get(child, 0);
66 if (rc == -EPROBE_DEFER) {
67 phy_device_free(phy);
68 return rc;
69 }
70 if (rc > 0) {
71 phy->irq = rc;
72 mdio->irq[addr] = rc;
73 } else {
74 phy->irq = mdio->irq[addr];
75 }
76
77 if (of_property_read_bool(child, "broken-turn-around"))
78 mdio->phy_ignore_ta_mask |= 1 << addr;
79
80 /* Associate the OF node with the device structure so it
81 * can be looked up later */
82 of_node_get(child);
83 phy->mdio.dev.of_node = child;
84
85 /* All data is now stored in the phy struct;
86 * register it */
87 rc = phy_device_register(phy);
88 if (rc) {
89 phy_device_free(phy);
90 of_node_put(child);
91 return rc;
92 }
93
94 dev_dbg(&mdio->dev, "registered phy %s at address %i\n",
95 child->name, addr);
96 return 0;
97}
98
99static int of_mdiobus_register_device(struct mii_bus *mdio,
100 struct device_node *child, u32 addr)
101{
102 struct mdio_device *mdiodev;
103 int rc;
104
105 mdiodev = mdio_device_create(mdio, addr);
106 if (IS_ERR(mdiodev))
107 return PTR_ERR(mdiodev);
108
109 /* Associate the OF node with the device structure so it
110 * can be looked up later.
111 */
112 of_node_get(child);
113 mdiodev->dev.of_node = child;
114
115 /* All data is now stored in the mdiodev struct; register it. */
116 rc = mdio_device_register(mdiodev);
117 if (rc) {
118 mdio_device_free(mdiodev);
119 of_node_put(child);
120 return rc;
121 }
122
123 dev_dbg(&mdio->dev, "registered mdio device %s at address %i\n",
124 child->name, addr);
125 return 0;
126}
127
128/* The following is a list of PHY compatible strings which appear in
129 * some DTBs. The compatible string is never matched against a PHY
130 * driver, so is pointless. We only expect devices which are not PHYs
131 * to have a compatible string, so they can be matched to an MDIO
132 * driver. Encourage users to upgrade their DT blobs to remove these.
133 */
134static const struct of_device_id whitelist_phys[] = {
135 { .compatible = "brcm,40nm-ephy" },
136 { .compatible = "broadcom,bcm5241" },
137 { .compatible = "marvell,88E1111", },
138 { .compatible = "marvell,88e1116", },
139 { .compatible = "marvell,88e1118", },
140 { .compatible = "marvell,88e1145", },
141 { .compatible = "marvell,88e1149r", },
142 { .compatible = "marvell,88e1310", },
143 { .compatible = "marvell,88E1510", },
144 { .compatible = "marvell,88E1514", },
145 { .compatible = "moxa,moxart-rtl8201cp", },
146 {}
147};
148
149/*
150 * Return true if the child node is for a phy. It must either:
151 * o Compatible string of "ethernet-phy-idX.X"
152 * o Compatible string of "ethernet-phy-ieee802.3-c45"
153 * o Compatible string of "ethernet-phy-ieee802.3-c22"
154 * o In the white list above (and issue a warning)
155 * o No compatibility string
156 *
157 * A device which is not a phy is expected to have a compatible string
158 * indicating what sort of device it is.
159 */
160static bool of_mdiobus_child_is_phy(struct device_node *child)
161{
162 u32 phy_id;
163
164 if (of_get_phy_id(child, &phy_id) != -EINVAL)
165 return true;
166
167 if (of_device_is_compatible(child, "ethernet-phy-ieee802.3-c45"))
168 return true;
169
170 if (of_device_is_compatible(child, "ethernet-phy-ieee802.3-c22"))
171 return true;
172
173 if (of_match_node(whitelist_phys, child)) {
174 pr_warn(FW_WARN
175 "%pOF: Whitelisted compatible string. Please remove\n",
176 child);
177 return true;
178 }
179
180 if (!of_find_property(child, "compatible", NULL))
181 return true;
182
183 return false;
184}
185
186/**
187 * of_mdiobus_register - Register mii_bus and create PHYs from the device tree
188 * @mdio: pointer to mii_bus structure
189 * @np: pointer to device_node of MDIO bus.
190 *
191 * This function registers the mii_bus structure and registers a phy_device
192 * for each child node of @np.
193 */
194int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
195{
196 struct device_node *child;
197 bool scanphys = false;
198 int addr, rc;
199
200 /* Do not continue if the node is disabled */
201 if (!of_device_is_available(np))
202 return -ENODEV;
203
204 /* Mask out all PHYs from auto probing. Instead the PHYs listed in
205 * the device tree are populated after the bus has been registered */
206 mdio->phy_mask = ~0;
207
208 mdio->dev.of_node = np;
209
210 /* Get bus level PHY reset GPIO details */
211 mdio->reset_delay_us = DEFAULT_GPIO_RESET_DELAY;
212 of_property_read_u32(np, "reset-delay-us", &mdio->reset_delay_us);
213
214 /* Register the MDIO bus */
215 rc = mdiobus_register(mdio);
216 if (rc)
217 return rc;
218
219 /* Loop over the child nodes and register a phy_device for each phy */
220 for_each_available_child_of_node(np, child) {
221 addr = of_mdio_parse_addr(&mdio->dev, child);
222 if (addr < 0) {
223 scanphys = true;
224 continue;
225 }
226
227 if (of_mdiobus_child_is_phy(child))
228 rc = of_mdiobus_register_phy(mdio, child, addr);
229 else
230 rc = of_mdiobus_register_device(mdio, child, addr);
231
232 if (rc == -ENODEV)
233 dev_err(&mdio->dev,
234 "MDIO device at address %d is missing.\n",
235 addr);
236 else if (rc)
237 goto unregister;
238 }
239
240 if (!scanphys)
241 return 0;
242
243 /* auto scan for PHYs with empty reg property */
244 for_each_available_child_of_node(np, child) {
245 /* Skip PHYs with reg property set */
246 if (of_find_property(child, "reg", NULL))
247 continue;
248
249 for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
250 /* skip already registered PHYs */
251 if (mdiobus_is_registered_device(mdio, addr))
252 continue;
253
254 /* be noisy to encourage people to set reg property */
255 dev_info(&mdio->dev, "scan phy %s at address %i\n",
256 child->name, addr);
257
258 if (of_mdiobus_child_is_phy(child)) {
259 /* -ENODEV is the return code that PHYLIB has
260 * standardized on to indicate that bus
261 * scanning should continue.
262 */
263 rc = of_mdiobus_register_phy(mdio, child, addr);
264 if (!rc)
265 break;
266 if (rc != -ENODEV)
267 goto unregister;
268 }
269 }
270 }
271
272 return 0;
273
274unregister:
275 mdiobus_unregister(mdio);
276 return rc;
277}
278EXPORT_SYMBOL(of_mdiobus_register);
279
280/* Helper function for of_phy_find_device */
281static int of_phy_match(struct device *dev, void *phy_np)
282{
283 return dev->of_node == phy_np;
284}
285
286/**
287 * of_phy_find_device - Give a PHY node, find the phy_device
288 * @phy_np: Pointer to the phy's device tree node
289 *
290 * If successful, returns a pointer to the phy_device with the embedded
291 * struct device refcount incremented by one, or NULL on failure.
292 */
293struct phy_device *of_phy_find_device(struct device_node *phy_np)
294{
295 struct device *d;
296 struct mdio_device *mdiodev;
297
298 if (!phy_np)
299 return NULL;
300
301 d = bus_find_device(&mdio_bus_type, NULL, phy_np, of_phy_match);
302 if (d) {
303 mdiodev = to_mdio_device(d);
304 if (mdiodev->flags & MDIO_DEVICE_FLAG_PHY)
305 return to_phy_device(d);
306 put_device(d);
307 }
308
309 return NULL;
310}
311EXPORT_SYMBOL(of_phy_find_device);
312
313/**
314 * of_phy_connect - Connect to the phy described in the device tree
315 * @dev: pointer to net_device claiming the phy
316 * @phy_np: Pointer to device tree node for the PHY
317 * @hndlr: Link state callback for the network device
318 * @flags: flags to pass to the PHY
319 * @iface: PHY data interface type
320 *
321 * If successful, returns a pointer to the phy_device with the embedded
322 * struct device refcount incremented by one, or NULL on failure. The
323 * refcount must be dropped by calling phy_disconnect() or phy_detach().
324 */
325struct phy_device *of_phy_connect(struct net_device *dev,
326 struct device_node *phy_np,
327 void (*hndlr)(struct net_device *), u32 flags,
328 phy_interface_t iface)
329{
330 struct phy_device *phy = of_phy_find_device(phy_np);
331 int ret;
332
333 if (!phy)
334 return NULL;
335
336 phy->dev_flags = flags;
337
338 ret = phy_connect_direct(dev, phy, hndlr, iface);
339
340 /* refcount is held by phy_connect_direct() on success */
341 put_device(&phy->mdio.dev);
342
343 return ret ? NULL : phy;
344}
345EXPORT_SYMBOL(of_phy_connect);
346
347/**
348 * of_phy_get_and_connect
349 * - Get phy node and connect to the phy described in the device tree
350 * @dev: pointer to net_device claiming the phy
351 * @np: Pointer to device tree node for the net_device claiming the phy
352 * @hndlr: Link state callback for the network device
353 *
354 * If successful, returns a pointer to the phy_device with the embedded
355 * struct device refcount incremented by one, or NULL on failure. The
356 * refcount must be dropped by calling phy_disconnect() or phy_detach().
357 */
358struct phy_device *of_phy_get_and_connect(struct net_device *dev,
359 struct device_node *np,
360 void (*hndlr)(struct net_device *))
361{
362 phy_interface_t iface;
363 struct device_node *phy_np;
364 struct phy_device *phy;
365
366 iface = of_get_phy_mode(np);
367 if ((int)iface < 0)
368 return NULL;
369
370 phy_np = of_parse_phandle(np, "phy-handle", 0);
371 if (!phy_np)
372 return NULL;
373
374 phy = of_phy_connect(dev, phy_np, hndlr, 0, iface);
375
376 of_node_put(phy_np);
377
378 return phy;
379}
380EXPORT_SYMBOL(of_phy_get_and_connect);
381
382/**
383 * of_phy_attach - Attach to a PHY without starting the state machine
384 * @dev: pointer to net_device claiming the phy
385 * @phy_np: Node pointer for the PHY
386 * @flags: flags to pass to the PHY
387 * @iface: PHY data interface type
388 *
389 * If successful, returns a pointer to the phy_device with the embedded
390 * struct device refcount incremented by one, or NULL on failure. The
391 * refcount must be dropped by calling phy_disconnect() or phy_detach().
392 */
393struct phy_device *of_phy_attach(struct net_device *dev,
394 struct device_node *phy_np, u32 flags,
395 phy_interface_t iface)
396{
397 struct phy_device *phy = of_phy_find_device(phy_np);
398 int ret;
399
400 if (!phy)
401 return NULL;
402
403 ret = phy_attach_direct(dev, phy, flags, iface);
404
405 /* refcount is held by phy_attach_direct() on success */
406 put_device(&phy->mdio.dev);
407
408 return ret ? NULL : phy;
409}
410EXPORT_SYMBOL(of_phy_attach);
411
412/*
413 * of_phy_is_fixed_link() and of_phy_register_fixed_link() must
414 * support two DT bindings:
415 * - the old DT binding, where 'fixed-link' was a property with 5
416 * cells encoding various informations about the fixed PHY
417 * - the new DT binding, where 'fixed-link' is a sub-node of the
418 * Ethernet device.
419 */
420bool of_phy_is_fixed_link(struct device_node *np)
421{
422 struct device_node *dn;
423 int len, err;
424 const char *managed;
425
426 /* New binding */
427 dn = of_get_child_by_name(np, "fixed-link");
428 if (dn) {
429 of_node_put(dn);
430 return true;
431 }
432
433 err = of_property_read_string(np, "managed", &managed);
434 if (err == 0 && strcmp(managed, "auto") != 0)
435 return true;
436
437 /* Old binding */
438 if (of_get_property(np, "fixed-link", &len) &&
439 len == (5 * sizeof(__be32)))
440 return true;
441
442 return false;
443}
444EXPORT_SYMBOL(of_phy_is_fixed_link);
445
446int of_phy_register_fixed_link(struct device_node *np)
447{
448 struct fixed_phy_status status = {};
449 struct device_node *fixed_link_node;
450 u32 fixed_link_prop[5];
451 const char *managed;
452 int link_gpio = -1;
453
454 if (of_property_read_string(np, "managed", &managed) == 0 &&
455 strcmp(managed, "in-band-status") == 0) {
456 /* status is zeroed, namely its .link member */
457 goto register_phy;
458 }
459
460 /* New binding */
461 fixed_link_node = of_get_child_by_name(np, "fixed-link");
462 if (fixed_link_node) {
463 status.link = 1;
464 status.duplex = of_property_read_bool(fixed_link_node,
465 "full-duplex");
466 if (of_property_read_u32(fixed_link_node, "speed",
467 &status.speed)) {
468 of_node_put(fixed_link_node);
469 return -EINVAL;
470 }
471 status.pause = of_property_read_bool(fixed_link_node, "pause");
472 status.asym_pause = of_property_read_bool(fixed_link_node,
473 "asym-pause");
474 link_gpio = of_get_named_gpio_flags(fixed_link_node,
475 "link-gpios", 0, NULL);
476 of_node_put(fixed_link_node);
477 if (link_gpio == -EPROBE_DEFER)
478 return -EPROBE_DEFER;
479
480 goto register_phy;
481 }
482
483 /* Old binding */
484 if (of_property_read_u32_array(np, "fixed-link", fixed_link_prop,
485 ARRAY_SIZE(fixed_link_prop)) == 0) {
486 status.link = 1;
487 status.duplex = fixed_link_prop[1];
488 status.speed = fixed_link_prop[2];
489 status.pause = fixed_link_prop[3];
490 status.asym_pause = fixed_link_prop[4];
491 goto register_phy;
492 }
493
494 return -ENODEV;
495
496register_phy:
497 return PTR_ERR_OR_ZERO(fixed_phy_register(PHY_POLL, &status, link_gpio,
498 np));
499}
500EXPORT_SYMBOL(of_phy_register_fixed_link);
501
502void of_phy_deregister_fixed_link(struct device_node *np)
503{
504 struct phy_device *phydev;
505
506 phydev = of_phy_find_device(np);
507 if (!phydev)
508 return;
509
510 fixed_phy_unregister(phydev);
511
512 put_device(&phydev->mdio.dev); /* of_phy_find_device() */
513 phy_device_free(phydev); /* fixed_phy_register() */
514}
515EXPORT_SYMBOL(of_phy_deregister_fixed_link);