]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - drivers/net/phy/mdio_bus.c
f28f89e109ba2c8d3e839cafa9ccc13122ab180e
[mirror_ubuntu-zesty-kernel.git] / drivers / net / phy / mdio_bus.c
1 /* MDIO Bus interface
2 *
3 * Author: Andy Fleming
4 *
5 * Copyright (c) 2004 Freescale Semiconductor, Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
12 */
13
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
16 #include <linux/kernel.h>
17 #include <linux/string.h>
18 #include <linux/errno.h>
19 #include <linux/unistd.h>
20 #include <linux/slab.h>
21 #include <linux/interrupt.h>
22 #include <linux/init.h>
23 #include <linux/delay.h>
24 #include <linux/device.h>
25 #include <linux/of_device.h>
26 #include <linux/of_mdio.h>
27 #include <linux/netdevice.h>
28 #include <linux/etherdevice.h>
29 #include <linux/skbuff.h>
30 #include <linux/spinlock.h>
31 #include <linux/mm.h>
32 #include <linux/module.h>
33 #include <linux/mii.h>
34 #include <linux/ethtool.h>
35 #include <linux/phy.h>
36 #include <linux/io.h>
37 #include <linux/uaccess.h>
38
39 #include <asm/irq.h>
40
41 int mdiobus_register_device(struct mdio_device *mdiodev)
42 {
43 if (mdiodev->bus->mdio_map[mdiodev->addr])
44 return -EBUSY;
45
46 mdiodev->bus->mdio_map[mdiodev->addr] = mdiodev;
47
48 return 0;
49 }
50 EXPORT_SYMBOL(mdiobus_register_device);
51
52 int mdiobus_unregister_device(struct mdio_device *mdiodev)
53 {
54 if (mdiodev->bus->mdio_map[mdiodev->addr] != mdiodev)
55 return -EINVAL;
56
57 mdiodev->bus->mdio_map[mdiodev->addr] = NULL;
58
59 return 0;
60 }
61 EXPORT_SYMBOL(mdiobus_unregister_device);
62
63 struct phy_device *mdiobus_get_phy(struct mii_bus *bus, int addr)
64 {
65 struct mdio_device *mdiodev = bus->mdio_map[addr];
66
67 if (!mdiodev)
68 return NULL;
69
70 if (!(mdiodev->flags & MDIO_DEVICE_FLAG_PHY))
71 return NULL;
72
73 return container_of(mdiodev, struct phy_device, mdio);
74 }
75 EXPORT_SYMBOL(mdiobus_get_phy);
76
77 bool mdiobus_is_registered_device(struct mii_bus *bus, int addr)
78 {
79 return bus->mdio_map[addr];
80 }
81 EXPORT_SYMBOL(mdiobus_is_registered_device);
82
83 /**
84 * mdiobus_alloc_size - allocate a mii_bus structure
85 * @size: extra amount of memory to allocate for private storage.
86 * If non-zero, then bus->priv is points to that memory.
87 *
88 * Description: called by a bus driver to allocate an mii_bus
89 * structure to fill in.
90 */
91 struct mii_bus *mdiobus_alloc_size(size_t size)
92 {
93 struct mii_bus *bus;
94 size_t aligned_size = ALIGN(sizeof(*bus), NETDEV_ALIGN);
95 size_t alloc_size;
96 int i;
97
98 /* If we alloc extra space, it should be aligned */
99 if (size)
100 alloc_size = aligned_size + size;
101 else
102 alloc_size = sizeof(*bus);
103
104 bus = kzalloc(alloc_size, GFP_KERNEL);
105 if (bus) {
106 bus->state = MDIOBUS_ALLOCATED;
107 if (size)
108 bus->priv = (void *)bus + aligned_size;
109 }
110
111 /* Initialise the interrupts to polling */
112 for (i = 0; i < PHY_MAX_ADDR; i++)
113 bus->irq[i] = PHY_POLL;
114
115 return bus;
116 }
117 EXPORT_SYMBOL(mdiobus_alloc_size);
118
119 static void _devm_mdiobus_free(struct device *dev, void *res)
120 {
121 mdiobus_free(*(struct mii_bus **)res);
122 }
123
124 static int devm_mdiobus_match(struct device *dev, void *res, void *data)
125 {
126 struct mii_bus **r = res;
127
128 if (WARN_ON(!r || !*r))
129 return 0;
130
131 return *r == data;
132 }
133
134 /**
135 * devm_mdiobus_alloc_size - Resource-managed mdiobus_alloc_size()
136 * @dev: Device to allocate mii_bus for
137 * @sizeof_priv: Space to allocate for private structure.
138 *
139 * Managed mdiobus_alloc_size. mii_bus allocated with this function is
140 * automatically freed on driver detach.
141 *
142 * If an mii_bus allocated with this function needs to be freed separately,
143 * devm_mdiobus_free() must be used.
144 *
145 * RETURNS:
146 * Pointer to allocated mii_bus on success, NULL on failure.
147 */
148 struct mii_bus *devm_mdiobus_alloc_size(struct device *dev, int sizeof_priv)
149 {
150 struct mii_bus **ptr, *bus;
151
152 ptr = devres_alloc(_devm_mdiobus_free, sizeof(*ptr), GFP_KERNEL);
153 if (!ptr)
154 return NULL;
155
156 /* use raw alloc_dr for kmalloc caller tracing */
157 bus = mdiobus_alloc_size(sizeof_priv);
158 if (bus) {
159 *ptr = bus;
160 devres_add(dev, ptr);
161 } else {
162 devres_free(ptr);
163 }
164
165 return bus;
166 }
167 EXPORT_SYMBOL_GPL(devm_mdiobus_alloc_size);
168
169 /**
170 * devm_mdiobus_free - Resource-managed mdiobus_free()
171 * @dev: Device this mii_bus belongs to
172 * @bus: the mii_bus associated with the device
173 *
174 * Free mii_bus allocated with devm_mdiobus_alloc_size().
175 */
176 void devm_mdiobus_free(struct device *dev, struct mii_bus *bus)
177 {
178 int rc;
179
180 rc = devres_release(dev, _devm_mdiobus_free,
181 devm_mdiobus_match, bus);
182 WARN_ON(rc);
183 }
184 EXPORT_SYMBOL_GPL(devm_mdiobus_free);
185
186 /**
187 * mdiobus_release - mii_bus device release callback
188 * @d: the target struct device that contains the mii_bus
189 *
190 * Description: called when the last reference to an mii_bus is
191 * dropped, to free the underlying memory.
192 */
193 static void mdiobus_release(struct device *d)
194 {
195 struct mii_bus *bus = to_mii_bus(d);
196 BUG_ON(bus->state != MDIOBUS_RELEASED &&
197 /* for compatibility with error handling in drivers */
198 bus->state != MDIOBUS_ALLOCATED);
199 kfree(bus);
200 }
201
202 static struct class mdio_bus_class = {
203 .name = "mdio_bus",
204 .dev_release = mdiobus_release,
205 };
206
207 #if IS_ENABLED(CONFIG_OF_MDIO)
208 /* Helper function for of_mdio_find_bus */
209 static int of_mdio_bus_match(struct device *dev, const void *mdio_bus_np)
210 {
211 return dev->of_node == mdio_bus_np;
212 }
213 /**
214 * of_mdio_find_bus - Given an mii_bus node, find the mii_bus.
215 * @mdio_bus_np: Pointer to the mii_bus.
216 *
217 * Returns a reference to the mii_bus, or NULL if none found. The
218 * embedded struct device will have its reference count incremented,
219 * and this must be put once the bus is finished with.
220 *
221 * Because the association of a device_node and mii_bus is made via
222 * of_mdiobus_register(), the mii_bus cannot be found before it is
223 * registered with of_mdiobus_register().
224 *
225 */
226 struct mii_bus *of_mdio_find_bus(struct device_node *mdio_bus_np)
227 {
228 struct device *d;
229
230 if (!mdio_bus_np)
231 return NULL;
232
233 d = class_find_device(&mdio_bus_class, NULL, mdio_bus_np,
234 of_mdio_bus_match);
235
236 return d ? to_mii_bus(d) : NULL;
237 }
238 EXPORT_SYMBOL(of_mdio_find_bus);
239
240 /* Walk the list of subnodes of a mdio bus and look for a node that matches the
241 * phy's address with its 'reg' property. If found, set the of_node pointer for
242 * the phy. This allows auto-probed pyh devices to be supplied with information
243 * passed in via DT.
244 */
245 static void of_mdiobus_link_phydev(struct mii_bus *bus,
246 struct phy_device *phydev)
247 {
248 struct device *dev = &phydev->mdio.dev;
249 struct device_node *child;
250
251 if (dev->of_node || !bus->dev.of_node)
252 return;
253
254 for_each_available_child_of_node(bus->dev.of_node, child) {
255 int addr;
256 int ret;
257
258 ret = of_property_read_u32(child, "reg", &addr);
259 if (ret < 0) {
260 dev_err(dev, "%s has invalid PHY address\n",
261 child->full_name);
262 continue;
263 }
264
265 /* A PHY must have a reg property in the range [0-31] */
266 if (addr >= PHY_MAX_ADDR) {
267 dev_err(dev, "%s PHY address %i is too large\n",
268 child->full_name, addr);
269 continue;
270 }
271
272 if (addr == phydev->mdio.addr) {
273 dev->of_node = child;
274 return;
275 }
276 }
277 }
278 #else /* !IS_ENABLED(CONFIG_OF_MDIO) */
279 static inline void of_mdiobus_link_phydev(struct mii_bus *mdio,
280 struct phy_device *phydev)
281 {
282 }
283 #endif
284
285 /**
286 * __mdiobus_register - bring up all the PHYs on a given bus and attach them to bus
287 * @bus: target mii_bus
288 * @owner: module containing bus accessor functions
289 *
290 * Description: Called by a bus driver to bring up all the PHYs
291 * on a given bus, and attach them to the bus. Drivers should use
292 * mdiobus_register() rather than __mdiobus_register() unless they
293 * need to pass a specific owner module.
294 *
295 * Returns 0 on success or < 0 on error.
296 */
297 int __mdiobus_register(struct mii_bus *bus, struct module *owner)
298 {
299 int i, err;
300
301 if (NULL == bus || NULL == bus->name ||
302 NULL == bus->read || NULL == bus->write)
303 return -EINVAL;
304
305 BUG_ON(bus->state != MDIOBUS_ALLOCATED &&
306 bus->state != MDIOBUS_UNREGISTERED);
307
308 bus->owner = owner;
309 bus->dev.parent = bus->parent;
310 bus->dev.class = &mdio_bus_class;
311 bus->dev.groups = NULL;
312 dev_set_name(&bus->dev, "%s", bus->id);
313
314 err = device_register(&bus->dev);
315 if (err) {
316 pr_err("mii_bus %s failed to register\n", bus->id);
317 put_device(&bus->dev);
318 return -EINVAL;
319 }
320
321 mutex_init(&bus->mdio_lock);
322
323 if (bus->reset)
324 bus->reset(bus);
325
326 for (i = 0; i < PHY_MAX_ADDR; i++) {
327 if ((bus->phy_mask & (1 << i)) == 0) {
328 struct phy_device *phydev;
329
330 phydev = mdiobus_scan(bus, i);
331 if (IS_ERR(phydev)) {
332 err = PTR_ERR(phydev);
333 goto error;
334 }
335 }
336 }
337
338 bus->state = MDIOBUS_REGISTERED;
339 pr_info("%s: probed\n", bus->name);
340 return 0;
341
342 error:
343 while (--i >= 0) {
344 struct phy_device *phydev = mdiobus_get_phy(bus, i);
345 if (phydev) {
346 phy_device_remove(phydev);
347 phy_device_free(phydev);
348 }
349 }
350 device_del(&bus->dev);
351 return err;
352 }
353 EXPORT_SYMBOL(__mdiobus_register);
354
355 void mdiobus_unregister(struct mii_bus *bus)
356 {
357 int i;
358
359 BUG_ON(bus->state != MDIOBUS_REGISTERED);
360 bus->state = MDIOBUS_UNREGISTERED;
361
362 for (i = 0; i < PHY_MAX_ADDR; i++) {
363 struct phy_device *phydev = mdiobus_get_phy(bus, i);
364 if (phydev) {
365 phy_device_remove(phydev);
366 phy_device_free(phydev);
367 }
368 }
369 device_del(&bus->dev);
370 }
371 EXPORT_SYMBOL(mdiobus_unregister);
372
373 /**
374 * mdiobus_free - free a struct mii_bus
375 * @bus: mii_bus to free
376 *
377 * This function releases the reference to the underlying device
378 * object in the mii_bus. If this is the last reference, the mii_bus
379 * will be freed.
380 */
381 void mdiobus_free(struct mii_bus *bus)
382 {
383 /* For compatibility with error handling in drivers. */
384 if (bus->state == MDIOBUS_ALLOCATED) {
385 kfree(bus);
386 return;
387 }
388
389 BUG_ON(bus->state != MDIOBUS_UNREGISTERED);
390 bus->state = MDIOBUS_RELEASED;
391
392 put_device(&bus->dev);
393 }
394 EXPORT_SYMBOL(mdiobus_free);
395
396 struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr)
397 {
398 struct phy_device *phydev;
399 int err;
400
401 phydev = get_phy_device(bus, addr, false);
402 if (IS_ERR(phydev) || phydev == NULL)
403 return phydev;
404
405 /*
406 * For DT, see if the auto-probed phy has a correspoding child
407 * in the bus node, and set the of_node pointer in this case.
408 */
409 of_mdiobus_link_phydev(bus, phydev);
410
411 err = phy_device_register(phydev);
412 if (err) {
413 phy_device_free(phydev);
414 return NULL;
415 }
416
417 return phydev;
418 }
419 EXPORT_SYMBOL(mdiobus_scan);
420
421 /**
422 * mdiobus_read_nested - Nested version of the mdiobus_read function
423 * @bus: the mii_bus struct
424 * @addr: the phy address
425 * @regnum: register number to read
426 *
427 * In case of nested MDIO bus access avoid lockdep false positives by
428 * using mutex_lock_nested().
429 *
430 * NOTE: MUST NOT be called from interrupt context,
431 * because the bus read/write functions may wait for an interrupt
432 * to conclude the operation.
433 */
434 int mdiobus_read_nested(struct mii_bus *bus, int addr, u32 regnum)
435 {
436 int retval;
437
438 BUG_ON(in_interrupt());
439
440 mutex_lock_nested(&bus->mdio_lock, SINGLE_DEPTH_NESTING);
441 retval = bus->read(bus, addr, regnum);
442 mutex_unlock(&bus->mdio_lock);
443
444 return retval;
445 }
446 EXPORT_SYMBOL(mdiobus_read_nested);
447
448 /**
449 * mdiobus_read - Convenience function for reading a given MII mgmt register
450 * @bus: the mii_bus struct
451 * @addr: the phy address
452 * @regnum: register number to read
453 *
454 * NOTE: MUST NOT be called from interrupt context,
455 * because the bus read/write functions may wait for an interrupt
456 * to conclude the operation.
457 */
458 int mdiobus_read(struct mii_bus *bus, int addr, u32 regnum)
459 {
460 int retval;
461
462 BUG_ON(in_interrupt());
463
464 mutex_lock(&bus->mdio_lock);
465 retval = bus->read(bus, addr, regnum);
466 mutex_unlock(&bus->mdio_lock);
467
468 return retval;
469 }
470 EXPORT_SYMBOL(mdiobus_read);
471
472 /**
473 * mdiobus_write_nested - Nested version of the mdiobus_write function
474 * @bus: the mii_bus struct
475 * @addr: the phy address
476 * @regnum: register number to write
477 * @val: value to write to @regnum
478 *
479 * In case of nested MDIO bus access avoid lockdep false positives by
480 * using mutex_lock_nested().
481 *
482 * NOTE: MUST NOT be called from interrupt context,
483 * because the bus read/write functions may wait for an interrupt
484 * to conclude the operation.
485 */
486 int mdiobus_write_nested(struct mii_bus *bus, int addr, u32 regnum, u16 val)
487 {
488 int err;
489
490 BUG_ON(in_interrupt());
491
492 mutex_lock_nested(&bus->mdio_lock, SINGLE_DEPTH_NESTING);
493 err = bus->write(bus, addr, regnum, val);
494 mutex_unlock(&bus->mdio_lock);
495
496 return err;
497 }
498 EXPORT_SYMBOL(mdiobus_write_nested);
499
500 /**
501 * mdiobus_write - Convenience function for writing a given MII mgmt register
502 * @bus: the mii_bus struct
503 * @addr: the phy address
504 * @regnum: register number to write
505 * @val: value to write to @regnum
506 *
507 * NOTE: MUST NOT be called from interrupt context,
508 * because the bus read/write functions may wait for an interrupt
509 * to conclude the operation.
510 */
511 int mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val)
512 {
513 int err;
514
515 BUG_ON(in_interrupt());
516
517 mutex_lock(&bus->mdio_lock);
518 err = bus->write(bus, addr, regnum, val);
519 mutex_unlock(&bus->mdio_lock);
520
521 return err;
522 }
523 EXPORT_SYMBOL(mdiobus_write);
524
525 /**
526 * mdio_bus_match - determine if given PHY driver supports the given PHY device
527 * @dev: target PHY device
528 * @drv: given PHY driver
529 *
530 * Description: Given a PHY device, and a PHY driver, return 1 if
531 * the driver supports the device. Otherwise, return 0.
532 */
533 static int mdio_bus_match(struct device *dev, struct device_driver *drv)
534 {
535 struct phy_device *phydev = to_phy_device(dev);
536 struct phy_driver *phydrv = to_phy_driver(drv);
537 const int num_ids = ARRAY_SIZE(phydev->c45_ids.device_ids);
538 int i;
539
540 if (of_driver_match_device(dev, drv))
541 return 1;
542
543 if (phydrv->match_phy_device)
544 return phydrv->match_phy_device(phydev);
545
546 if (phydev->is_c45) {
547 for (i = 1; i < num_ids; i++) {
548 if (!(phydev->c45_ids.devices_in_package & (1 << i)))
549 continue;
550
551 if ((phydrv->phy_id & phydrv->phy_id_mask) ==
552 (phydev->c45_ids.device_ids[i] &
553 phydrv->phy_id_mask))
554 return 1;
555 }
556 return 0;
557 } else {
558 return (phydrv->phy_id & phydrv->phy_id_mask) ==
559 (phydev->phy_id & phydrv->phy_id_mask);
560 }
561 }
562
563 #ifdef CONFIG_PM
564
565 static bool mdio_bus_phy_may_suspend(struct phy_device *phydev)
566 {
567 struct device_driver *drv = phydev->mdio.dev.driver;
568 struct phy_driver *phydrv = to_phy_driver(drv);
569 struct net_device *netdev = phydev->attached_dev;
570
571 if (!drv || !phydrv->suspend)
572 return false;
573
574 /* PHY not attached? May suspend if the PHY has not already been
575 * suspended as part of a prior call to phy_disconnect() ->
576 * phy_detach() -> phy_suspend() because the parent netdev might be the
577 * MDIO bus driver and clock gated at this point.
578 */
579 if (!netdev)
580 return !phydev->suspended;
581
582 /* Don't suspend PHY if the attched netdev parent may wakeup.
583 * The parent may point to a PCI device, as in tg3 driver.
584 */
585 if (netdev->dev.parent && device_may_wakeup(netdev->dev.parent))
586 return false;
587
588 /* Also don't suspend PHY if the netdev itself may wakeup. This
589 * is the case for devices w/o underlaying pwr. mgmt. aware bus,
590 * e.g. SoC devices.
591 */
592 if (device_may_wakeup(&netdev->dev))
593 return false;
594
595 return true;
596 }
597
598 static int mdio_bus_suspend(struct device *dev)
599 {
600 struct phy_device *phydev = to_phy_device(dev);
601
602 /* We must stop the state machine manually, otherwise it stops out of
603 * control, possibly with the phydev->lock held. Upon resume, netdev
604 * may call phy routines that try to grab the same lock, and that may
605 * lead to a deadlock.
606 */
607 if (phydev->attached_dev && phydev->adjust_link)
608 phy_stop_machine(phydev);
609
610 if (!mdio_bus_phy_may_suspend(phydev))
611 return 0;
612
613 return phy_suspend(phydev);
614 }
615
616 static int mdio_bus_resume(struct device *dev)
617 {
618 struct phy_device *phydev = to_phy_device(dev);
619 int ret;
620
621 if (!mdio_bus_phy_may_suspend(phydev))
622 goto no_resume;
623
624 ret = phy_resume(phydev);
625 if (ret < 0)
626 return ret;
627
628 no_resume:
629 if (phydev->attached_dev && phydev->adjust_link)
630 phy_start_machine(phydev);
631
632 return 0;
633 }
634
635 static int mdio_bus_restore(struct device *dev)
636 {
637 struct phy_device *phydev = to_phy_device(dev);
638 struct net_device *netdev = phydev->attached_dev;
639 int ret;
640
641 if (!netdev)
642 return 0;
643
644 ret = phy_init_hw(phydev);
645 if (ret < 0)
646 return ret;
647
648 /* The PHY needs to renegotiate. */
649 phydev->link = 0;
650 phydev->state = PHY_UP;
651
652 phy_start_machine(phydev);
653
654 return 0;
655 }
656
657 static const struct dev_pm_ops mdio_bus_pm_ops = {
658 .suspend = mdio_bus_suspend,
659 .resume = mdio_bus_resume,
660 .freeze = mdio_bus_suspend,
661 .thaw = mdio_bus_resume,
662 .restore = mdio_bus_restore,
663 };
664
665 #define MDIO_BUS_PM_OPS (&mdio_bus_pm_ops)
666
667 #else
668
669 #define MDIO_BUS_PM_OPS NULL
670
671 #endif /* CONFIG_PM */
672
673 static ssize_t
674 phy_id_show(struct device *dev, struct device_attribute *attr, char *buf)
675 {
676 struct phy_device *phydev = to_phy_device(dev);
677
678 return sprintf(buf, "0x%.8lx\n", (unsigned long)phydev->phy_id);
679 }
680 static DEVICE_ATTR_RO(phy_id);
681
682 static ssize_t
683 phy_interface_show(struct device *dev, struct device_attribute *attr, char *buf)
684 {
685 struct phy_device *phydev = to_phy_device(dev);
686 const char *mode = NULL;
687
688 if (phy_is_internal(phydev))
689 mode = "internal";
690 else
691 mode = phy_modes(phydev->interface);
692
693 return sprintf(buf, "%s\n", mode);
694 }
695 static DEVICE_ATTR_RO(phy_interface);
696
697 static ssize_t
698 phy_has_fixups_show(struct device *dev, struct device_attribute *attr, char *buf)
699 {
700 struct phy_device *phydev = to_phy_device(dev);
701
702 return sprintf(buf, "%d\n", phydev->has_fixups);
703 }
704 static DEVICE_ATTR_RO(phy_has_fixups);
705
706 static struct attribute *mdio_dev_attrs[] = {
707 &dev_attr_phy_id.attr,
708 &dev_attr_phy_interface.attr,
709 &dev_attr_phy_has_fixups.attr,
710 NULL,
711 };
712 ATTRIBUTE_GROUPS(mdio_dev);
713
714 struct bus_type mdio_bus_type = {
715 .name = "mdio_bus",
716 .match = mdio_bus_match,
717 .pm = MDIO_BUS_PM_OPS,
718 .dev_groups = mdio_dev_groups,
719 };
720 EXPORT_SYMBOL(mdio_bus_type);
721
722 int __init mdio_bus_init(void)
723 {
724 int ret;
725
726 ret = class_register(&mdio_bus_class);
727 if (!ret) {
728 ret = bus_register(&mdio_bus_type);
729 if (ret)
730 class_unregister(&mdio_bus_class);
731 }
732
733 return ret;
734 }
735
736 void mdio_bus_exit(void)
737 {
738 class_unregister(&mdio_bus_class);
739 bus_unregister(&mdio_bus_type);
740 }