Linux 4.19.133
[linux/fpc-iii.git] / drivers / of / of_mdio.c
blobaf7572fe090fdbf4b7d3dd27f271d84970c49f54
1 /*
2 * OF helpers for the MDIO (Ethernet PHY) API
4 * Copyright (c) 2009 Secret Lab Technologies, Ltd.
6 * This file is released under the GPLv2
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.
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>
25 #define DEFAULT_GPIO_RESET_DELAY 10 /* in microseconds */
27 MODULE_AUTHOR("Grant Likely <grant.likely@secretlab.ca>");
28 MODULE_LICENSE("GPL");
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)
34 struct property *prop;
35 const char *cp;
36 unsigned int upper, lower;
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;
44 return -EINVAL;
47 static int of_mdiobus_register_phy(struct mii_bus *mdio,
48 struct device_node *child, u32 addr)
50 struct phy_device *phy;
51 bool is_c45;
52 int rc;
53 u32 phy_id;
55 is_c45 = of_device_is_compatible(child,
56 "ethernet-phy-ieee802.3-c45");
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);
65 rc = of_irq_get(child, 0);
66 if (rc == -EPROBE_DEFER) {
67 phy_device_free(phy);
68 return rc;
70 if (rc > 0) {
71 phy->irq = rc;
72 mdio->irq[addr] = rc;
73 } else {
74 phy->irq = mdio->irq[addr];
77 if (of_property_read_bool(child, "broken-turn-around"))
78 mdio->phy_ignore_ta_mask |= 1 << addr;
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);
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);
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;
100 dev_dbg(&mdio->dev, "registered phy %pOFn at address %i\n",
101 child, addr);
102 return 0;
105 static int of_mdiobus_register_device(struct mii_bus *mdio,
106 struct device_node *child, u32 addr)
108 struct mdio_device *mdiodev;
109 int rc;
111 mdiodev = mdio_device_create(mdio, addr);
112 if (IS_ERR(mdiodev))
113 return PTR_ERR(mdiodev);
115 /* Associate the OF node with the device structure so it
116 * can be looked up later.
118 of_node_get(child);
119 mdiodev->dev.of_node = child;
120 mdiodev->dev.fwnode = of_fwnode_handle(child);
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;
130 dev_dbg(&mdio->dev, "registered mdio device %pOFn at address %i\n",
131 child, addr);
132 return 0;
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.
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", },
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
164 * A device which is not a phy is expected to have a compatible string
165 * indicating what sort of device it is.
167 static bool of_mdiobus_child_is_phy(struct device_node *child)
169 u32 phy_id;
171 if (of_get_phy_id(child, &phy_id) != -EINVAL)
172 return true;
174 if (of_device_is_compatible(child, "ethernet-phy-ieee802.3-c45"))
175 return true;
177 if (of_device_is_compatible(child, "ethernet-phy-ieee802.3-c22"))
178 return true;
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;
187 if (!of_find_property(child, "compatible", NULL))
188 return true;
190 return false;
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.
198 * This function registers the mii_bus structure and registers a phy_device
199 * for each child node of @np.
201 int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
203 struct device_node *child;
204 bool scanphys = false;
205 int addr, rc;
207 if (!np)
208 return mdiobus_register(mdio);
210 /* Do not continue if the node is disabled */
211 if (!of_device_is_available(np))
212 return -ENODEV;
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;
218 mdio->dev.of_node = np;
219 mdio->dev.fwnode = of_fwnode_handle(np);
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);
225 /* Register the MDIO bus */
226 rc = mdiobus_register(mdio);
227 if (rc)
228 return rc;
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;
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);
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;
251 if (!scanphys)
252 return 0;
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;
260 for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
261 /* skip already registered PHYs */
262 if (mdiobus_is_registered_device(mdio, addr))
263 continue;
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);
269 if (of_mdiobus_child_is_phy(child)) {
270 rc = of_mdiobus_register_phy(mdio, child, addr);
271 if (rc && rc != -ENODEV)
272 goto unregister;
273 break;
278 return 0;
280 unregister:
281 mdiobus_unregister(mdio);
282 return rc;
284 EXPORT_SYMBOL(of_mdiobus_register);
286 /* Helper function for of_phy_find_device */
287 static int of_phy_match(struct device *dev, void *phy_np)
289 return dev->of_node == phy_np;
293 * of_phy_find_device - Give a PHY node, find the phy_device
294 * @phy_np: Pointer to the phy's device tree node
296 * If successful, returns a pointer to the phy_device with the embedded
297 * struct device refcount incremented by one, or NULL on failure.
299 struct phy_device *of_phy_find_device(struct device_node *phy_np)
301 struct device *d;
302 struct mdio_device *mdiodev;
304 if (!phy_np)
305 return NULL;
307 d = bus_find_device(&mdio_bus_type, NULL, phy_np, of_phy_match);
308 if (d) {
309 mdiodev = to_mdio_device(d);
310 if (mdiodev->flags & MDIO_DEVICE_FLAG_PHY)
311 return to_phy_device(d);
312 put_device(d);
315 return NULL;
317 EXPORT_SYMBOL(of_phy_find_device);
320 * of_phy_connect - Connect to the phy described in the device tree
321 * @dev: pointer to net_device claiming the phy
322 * @phy_np: Pointer to device tree node for the PHY
323 * @hndlr: Link state callback for the network device
324 * @flags: flags to pass to the PHY
325 * @iface: PHY data interface type
327 * If successful, returns a pointer to the phy_device with the embedded
328 * struct device refcount incremented by one, or NULL on failure. The
329 * refcount must be dropped by calling phy_disconnect() or phy_detach().
331 struct phy_device *of_phy_connect(struct net_device *dev,
332 struct device_node *phy_np,
333 void (*hndlr)(struct net_device *), u32 flags,
334 phy_interface_t iface)
336 struct phy_device *phy = of_phy_find_device(phy_np);
337 int ret;
339 if (!phy)
340 return NULL;
342 phy->dev_flags = flags;
344 ret = phy_connect_direct(dev, phy, hndlr, iface);
346 /* refcount is held by phy_connect_direct() on success */
347 put_device(&phy->mdio.dev);
349 return ret ? NULL : phy;
351 EXPORT_SYMBOL(of_phy_connect);
354 * of_phy_get_and_connect
355 * - Get phy node and connect to the phy described in the device tree
356 * @dev: pointer to net_device claiming the phy
357 * @np: Pointer to device tree node for the net_device claiming the phy
358 * @hndlr: Link state callback for the network device
360 * If successful, returns a pointer to the phy_device with the embedded
361 * struct device refcount incremented by one, or NULL on failure. The
362 * refcount must be dropped by calling phy_disconnect() or phy_detach().
364 struct phy_device *of_phy_get_and_connect(struct net_device *dev,
365 struct device_node *np,
366 void (*hndlr)(struct net_device *))
368 phy_interface_t iface;
369 struct device_node *phy_np;
370 struct phy_device *phy;
371 int ret;
373 iface = of_get_phy_mode(np);
374 if ((int)iface < 0)
375 return NULL;
376 if (of_phy_is_fixed_link(np)) {
377 ret = of_phy_register_fixed_link(np);
378 if (ret < 0) {
379 netdev_err(dev, "broken fixed-link specification\n");
380 return NULL;
382 phy_np = of_node_get(np);
383 } else {
384 phy_np = of_parse_phandle(np, "phy-handle", 0);
385 if (!phy_np)
386 return NULL;
389 phy = of_phy_connect(dev, phy_np, hndlr, 0, iface);
391 of_node_put(phy_np);
393 return phy;
395 EXPORT_SYMBOL(of_phy_get_and_connect);
398 * of_phy_attach - Attach to a PHY without starting the state machine
399 * @dev: pointer to net_device claiming the phy
400 * @phy_np: Node pointer for the PHY
401 * @flags: flags to pass to the PHY
402 * @iface: PHY data interface type
404 * If successful, returns a pointer to the phy_device with the embedded
405 * struct device refcount incremented by one, or NULL on failure. The
406 * refcount must be dropped by calling phy_disconnect() or phy_detach().
408 struct phy_device *of_phy_attach(struct net_device *dev,
409 struct device_node *phy_np, u32 flags,
410 phy_interface_t iface)
412 struct phy_device *phy = of_phy_find_device(phy_np);
413 int ret;
415 if (!phy)
416 return NULL;
418 ret = phy_attach_direct(dev, phy, flags, iface);
420 /* refcount is held by phy_attach_direct() on success */
421 put_device(&phy->mdio.dev);
423 return ret ? NULL : phy;
425 EXPORT_SYMBOL(of_phy_attach);
428 * of_phy_is_fixed_link() and of_phy_register_fixed_link() must
429 * support two DT bindings:
430 * - the old DT binding, where 'fixed-link' was a property with 5
431 * cells encoding various informations about the fixed PHY
432 * - the new DT binding, where 'fixed-link' is a sub-node of the
433 * Ethernet device.
435 bool of_phy_is_fixed_link(struct device_node *np)
437 struct device_node *dn;
438 int len, err;
439 const char *managed;
441 /* New binding */
442 dn = of_get_child_by_name(np, "fixed-link");
443 if (dn) {
444 of_node_put(dn);
445 return true;
448 err = of_property_read_string(np, "managed", &managed);
449 if (err == 0 && strcmp(managed, "auto") != 0)
450 return true;
452 /* Old binding */
453 if (of_get_property(np, "fixed-link", &len) &&
454 len == (5 * sizeof(__be32)))
455 return true;
457 return false;
459 EXPORT_SYMBOL(of_phy_is_fixed_link);
461 int of_phy_register_fixed_link(struct device_node *np)
463 struct fixed_phy_status status = {};
464 struct device_node *fixed_link_node;
465 u32 fixed_link_prop[5];
466 const char *managed;
467 int link_gpio = -1;
469 if (of_property_read_string(np, "managed", &managed) == 0 &&
470 strcmp(managed, "in-band-status") == 0) {
471 /* status is zeroed, namely its .link member */
472 goto register_phy;
475 /* New binding */
476 fixed_link_node = of_get_child_by_name(np, "fixed-link");
477 if (fixed_link_node) {
478 status.link = 1;
479 status.duplex = of_property_read_bool(fixed_link_node,
480 "full-duplex");
481 if (of_property_read_u32(fixed_link_node, "speed",
482 &status.speed)) {
483 of_node_put(fixed_link_node);
484 return -EINVAL;
486 status.pause = of_property_read_bool(fixed_link_node, "pause");
487 status.asym_pause = of_property_read_bool(fixed_link_node,
488 "asym-pause");
489 link_gpio = of_get_named_gpio_flags(fixed_link_node,
490 "link-gpios", 0, NULL);
491 of_node_put(fixed_link_node);
492 if (link_gpio == -EPROBE_DEFER)
493 return -EPROBE_DEFER;
495 goto register_phy;
498 /* Old binding */
499 if (of_property_read_u32_array(np, "fixed-link", fixed_link_prop,
500 ARRAY_SIZE(fixed_link_prop)) == 0) {
501 status.link = 1;
502 status.duplex = fixed_link_prop[1];
503 status.speed = fixed_link_prop[2];
504 status.pause = fixed_link_prop[3];
505 status.asym_pause = fixed_link_prop[4];
506 goto register_phy;
509 return -ENODEV;
511 register_phy:
512 return PTR_ERR_OR_ZERO(fixed_phy_register(PHY_POLL, &status, link_gpio,
513 np));
515 EXPORT_SYMBOL(of_phy_register_fixed_link);
517 void of_phy_deregister_fixed_link(struct device_node *np)
519 struct phy_device *phydev;
521 phydev = of_phy_find_device(np);
522 if (!phydev)
523 return;
525 fixed_phy_unregister(phydev);
527 put_device(&phydev->mdio.dev); /* of_phy_find_device() */
528 phy_device_free(phydev); /* fixed_phy_register() */
530 EXPORT_SYMBOL(of_phy_deregister_fixed_link);