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