GNU Linux-libre 4.19.245-gnu1
[releases.git] / drivers / of / of_mdio.c
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 */
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
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
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  */
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  */
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         mdiobus_unregister(mdio);
287         return rc;
288 }
289 EXPORT_SYMBOL(of_mdiobus_register);
290
291 /* Helper function for of_phy_find_device */
292 static int of_phy_match(struct device *dev, void *phy_np)
293 {
294         return dev->of_node == phy_np;
295 }
296
297 /**
298  * of_phy_find_device - Give a PHY node, find the phy_device
299  * @phy_np: Pointer to the phy's device tree node
300  *
301  * If successful, returns a pointer to the phy_device with the embedded
302  * struct device refcount incremented by one, or NULL on failure.
303  */
304 struct phy_device *of_phy_find_device(struct device_node *phy_np)
305 {
306         struct device *d;
307         struct mdio_device *mdiodev;
308
309         if (!phy_np)
310                 return NULL;
311
312         d = bus_find_device(&mdio_bus_type, NULL, phy_np, of_phy_match);
313         if (d) {
314                 mdiodev = to_mdio_device(d);
315                 if (mdiodev->flags & MDIO_DEVICE_FLAG_PHY)
316                         return to_phy_device(d);
317                 put_device(d);
318         }
319
320         return NULL;
321 }
322 EXPORT_SYMBOL(of_phy_find_device);
323
324 /**
325  * of_phy_connect - Connect to the phy described in the device tree
326  * @dev: pointer to net_device claiming the phy
327  * @phy_np: Pointer to device tree node for the PHY
328  * @hndlr: Link state callback for the network device
329  * @flags: flags to pass to the PHY
330  * @iface: PHY data interface type
331  *
332  * If successful, returns a pointer to the phy_device with the embedded
333  * struct device refcount incremented by one, or NULL on failure. The
334  * refcount must be dropped by calling phy_disconnect() or phy_detach().
335  */
336 struct phy_device *of_phy_connect(struct net_device *dev,
337                                   struct device_node *phy_np,
338                                   void (*hndlr)(struct net_device *), u32 flags,
339                                   phy_interface_t iface)
340 {
341         struct phy_device *phy = of_phy_find_device(phy_np);
342         int ret;
343
344         if (!phy)
345                 return NULL;
346
347         phy->dev_flags = flags;
348
349         ret = phy_connect_direct(dev, phy, hndlr, iface);
350
351         /* refcount is held by phy_connect_direct() on success */
352         put_device(&phy->mdio.dev);
353
354         return ret ? NULL : phy;
355 }
356 EXPORT_SYMBOL(of_phy_connect);
357
358 /**
359  * of_phy_get_and_connect
360  * - Get phy node and connect to the phy described in the device tree
361  * @dev: pointer to net_device claiming the phy
362  * @np: Pointer to device tree node for the net_device claiming the phy
363  * @hndlr: Link state callback for the network device
364  *
365  * If successful, returns a pointer to the phy_device with the embedded
366  * struct device refcount incremented by one, or NULL on failure. The
367  * refcount must be dropped by calling phy_disconnect() or phy_detach().
368  */
369 struct phy_device *of_phy_get_and_connect(struct net_device *dev,
370                                           struct device_node *np,
371                                           void (*hndlr)(struct net_device *))
372 {
373         phy_interface_t iface;
374         struct device_node *phy_np;
375         struct phy_device *phy;
376         int ret;
377
378         iface = of_get_phy_mode(np);
379         if ((int)iface < 0)
380                 return NULL;
381         if (of_phy_is_fixed_link(np)) {
382                 ret = of_phy_register_fixed_link(np);
383                 if (ret < 0) {
384                         netdev_err(dev, "broken fixed-link specification\n");
385                         return NULL;
386                 }
387                 phy_np = of_node_get(np);
388         } else {
389                 phy_np = of_parse_phandle(np, "phy-handle", 0);
390                 if (!phy_np)
391                         return NULL;
392         }
393
394         phy = of_phy_connect(dev, phy_np, hndlr, 0, iface);
395
396         of_node_put(phy_np);
397
398         return phy;
399 }
400 EXPORT_SYMBOL(of_phy_get_and_connect);
401
402 /**
403  * of_phy_attach - Attach to a PHY without starting the state machine
404  * @dev: pointer to net_device claiming the phy
405  * @phy_np: Node pointer for the PHY
406  * @flags: flags to pass to the PHY
407  * @iface: PHY data interface type
408  *
409  * If successful, returns a pointer to the phy_device with the embedded
410  * struct device refcount incremented by one, or NULL on failure. The
411  * refcount must be dropped by calling phy_disconnect() or phy_detach().
412  */
413 struct phy_device *of_phy_attach(struct net_device *dev,
414                                  struct device_node *phy_np, u32 flags,
415                                  phy_interface_t iface)
416 {
417         struct phy_device *phy = of_phy_find_device(phy_np);
418         int ret;
419
420         if (!phy)
421                 return NULL;
422
423         ret = phy_attach_direct(dev, phy, flags, iface);
424
425         /* refcount is held by phy_attach_direct() on success */
426         put_device(&phy->mdio.dev);
427
428         return ret ? NULL : phy;
429 }
430 EXPORT_SYMBOL(of_phy_attach);
431
432 /*
433  * of_phy_is_fixed_link() and of_phy_register_fixed_link() must
434  * support two DT bindings:
435  * - the old DT binding, where 'fixed-link' was a property with 5
436  *   cells encoding various informations about the fixed PHY
437  * - the new DT binding, where 'fixed-link' is a sub-node of the
438  *   Ethernet device.
439  */
440 bool of_phy_is_fixed_link(struct device_node *np)
441 {
442         struct device_node *dn;
443         int len, err;
444         const char *managed;
445
446         /* New binding */
447         dn = of_get_child_by_name(np, "fixed-link");
448         if (dn) {
449                 of_node_put(dn);
450                 return true;
451         }
452
453         err = of_property_read_string(np, "managed", &managed);
454         if (err == 0 && strcmp(managed, "auto") != 0)
455                 return true;
456
457         /* Old binding */
458         if (of_get_property(np, "fixed-link", &len) &&
459             len == (5 * sizeof(__be32)))
460                 return true;
461
462         return false;
463 }
464 EXPORT_SYMBOL(of_phy_is_fixed_link);
465
466 int of_phy_register_fixed_link(struct device_node *np)
467 {
468         struct fixed_phy_status status = {};
469         struct device_node *fixed_link_node;
470         u32 fixed_link_prop[5];
471         const char *managed;
472         int link_gpio = -1;
473
474         if (of_property_read_string(np, "managed", &managed) == 0 &&
475             strcmp(managed, "in-band-status") == 0) {
476                 /* status is zeroed, namely its .link member */
477                 goto register_phy;
478         }
479
480         /* New binding */
481         fixed_link_node = of_get_child_by_name(np, "fixed-link");
482         if (fixed_link_node) {
483                 status.link = 1;
484                 status.duplex = of_property_read_bool(fixed_link_node,
485                                                       "full-duplex");
486                 if (of_property_read_u32(fixed_link_node, "speed",
487                                          &status.speed)) {
488                         of_node_put(fixed_link_node);
489                         return -EINVAL;
490                 }
491                 status.pause = of_property_read_bool(fixed_link_node, "pause");
492                 status.asym_pause = of_property_read_bool(fixed_link_node,
493                                                           "asym-pause");
494                 link_gpio = of_get_named_gpio_flags(fixed_link_node,
495                                                     "link-gpios", 0, NULL);
496                 of_node_put(fixed_link_node);
497                 if (link_gpio == -EPROBE_DEFER)
498                         return -EPROBE_DEFER;
499
500                 goto register_phy;
501         }
502
503         /* Old binding */
504         if (of_property_read_u32_array(np, "fixed-link", fixed_link_prop,
505                                        ARRAY_SIZE(fixed_link_prop)) == 0) {
506                 status.link = 1;
507                 status.duplex = fixed_link_prop[1];
508                 status.speed  = fixed_link_prop[2];
509                 status.pause  = fixed_link_prop[3];
510                 status.asym_pause = fixed_link_prop[4];
511                 goto register_phy;
512         }
513
514         return -ENODEV;
515
516 register_phy:
517         return PTR_ERR_OR_ZERO(fixed_phy_register(PHY_POLL, &status, link_gpio,
518                                                   np));
519 }
520 EXPORT_SYMBOL(of_phy_register_fixed_link);
521
522 void of_phy_deregister_fixed_link(struct device_node *np)
523 {
524         struct phy_device *phydev;
525
526         phydev = of_phy_find_device(np);
527         if (!phydev)
528                 return;
529
530         fixed_phy_unregister(phydev);
531
532         put_device(&phydev->mdio.dev);  /* of_phy_find_device() */
533         phy_device_free(phydev);        /* fixed_phy_register() */
534 }
535 EXPORT_SYMBOL(of_phy_deregister_fixed_link);