1 // SPDX-License-Identifier: GPL-2.0+
2 /* Framework for finding and configuring PHYs.
3 * Also contains generic PHY driver
7 * Copyright (c) 2004 Freescale Semiconductor, Inc.
10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/acpi.h>
13 #include <linux/bitmap.h>
14 #include <linux/delay.h>
15 #include <linux/errno.h>
16 #include <linux/etherdevice.h>
17 #include <linux/ethtool.h>
18 #include <linux/init.h>
19 #include <linux/interrupt.h>
21 #include <linux/kernel.h>
22 #include <linux/mdio.h>
23 #include <linux/mii.h>
25 #include <linux/module.h>
26 #include <linux/netdevice.h>
27 #include <linux/phy.h>
28 #include <linux/phy_led_triggers.h>
29 #include <linux/property.h>
30 #include <linux/sfp.h>
31 #include <linux/skbuff.h>
32 #include <linux/slab.h>
33 #include <linux/string.h>
34 #include <linux/uaccess.h>
35 #include <linux/unistd.h>
37 MODULE_DESCRIPTION("PHY library");
38 MODULE_AUTHOR("Andy Fleming");
39 MODULE_LICENSE("GPL");
41 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_features) __ro_after_init;
42 EXPORT_SYMBOL_GPL(phy_basic_features);
44 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_t1_features) __ro_after_init;
45 EXPORT_SYMBOL_GPL(phy_basic_t1_features);
47 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_features) __ro_after_init;
48 EXPORT_SYMBOL_GPL(phy_gbit_features);
50 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_fibre_features) __ro_after_init;
51 EXPORT_SYMBOL_GPL(phy_gbit_fibre_features);
53 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_all_ports_features) __ro_after_init;
54 EXPORT_SYMBOL_GPL(phy_gbit_all_ports_features);
56 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_features) __ro_after_init;
57 EXPORT_SYMBOL_GPL(phy_10gbit_features);
59 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_fec_features) __ro_after_init;
60 EXPORT_SYMBOL_GPL(phy_10gbit_fec_features);
62 const int phy_basic_ports_array[3] = {
63 ETHTOOL_LINK_MODE_Autoneg_BIT,
64 ETHTOOL_LINK_MODE_TP_BIT,
65 ETHTOOL_LINK_MODE_MII_BIT,
67 EXPORT_SYMBOL_GPL(phy_basic_ports_array);
69 const int phy_fibre_port_array[1] = {
70 ETHTOOL_LINK_MODE_FIBRE_BIT,
72 EXPORT_SYMBOL_GPL(phy_fibre_port_array);
74 const int phy_all_ports_features_array[7] = {
75 ETHTOOL_LINK_MODE_Autoneg_BIT,
76 ETHTOOL_LINK_MODE_TP_BIT,
77 ETHTOOL_LINK_MODE_MII_BIT,
78 ETHTOOL_LINK_MODE_FIBRE_BIT,
79 ETHTOOL_LINK_MODE_AUI_BIT,
80 ETHTOOL_LINK_MODE_BNC_BIT,
81 ETHTOOL_LINK_MODE_Backplane_BIT,
83 EXPORT_SYMBOL_GPL(phy_all_ports_features_array);
85 const int phy_10_100_features_array[4] = {
86 ETHTOOL_LINK_MODE_10baseT_Half_BIT,
87 ETHTOOL_LINK_MODE_10baseT_Full_BIT,
88 ETHTOOL_LINK_MODE_100baseT_Half_BIT,
89 ETHTOOL_LINK_MODE_100baseT_Full_BIT,
91 EXPORT_SYMBOL_GPL(phy_10_100_features_array);
93 const int phy_basic_t1_features_array[3] = {
94 ETHTOOL_LINK_MODE_TP_BIT,
95 ETHTOOL_LINK_MODE_10baseT1L_Full_BIT,
96 ETHTOOL_LINK_MODE_100baseT1_Full_BIT,
98 EXPORT_SYMBOL_GPL(phy_basic_t1_features_array);
100 const int phy_gbit_features_array[2] = {
101 ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
102 ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
104 EXPORT_SYMBOL_GPL(phy_gbit_features_array);
106 const int phy_10gbit_features_array[1] = {
107 ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
109 EXPORT_SYMBOL_GPL(phy_10gbit_features_array);
111 static const int phy_10gbit_fec_features_array[1] = {
112 ETHTOOL_LINK_MODE_10000baseR_FEC_BIT,
115 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_full_features) __ro_after_init;
116 EXPORT_SYMBOL_GPL(phy_10gbit_full_features);
118 static const int phy_10gbit_full_features_array[] = {
119 ETHTOOL_LINK_MODE_10baseT_Full_BIT,
120 ETHTOOL_LINK_MODE_100baseT_Full_BIT,
121 ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
122 ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
125 static void features_init(void)
127 /* 10/100 half/full*/
128 linkmode_set_bit_array(phy_basic_ports_array,
129 ARRAY_SIZE(phy_basic_ports_array),
131 linkmode_set_bit_array(phy_10_100_features_array,
132 ARRAY_SIZE(phy_10_100_features_array),
136 linkmode_set_bit_array(phy_basic_t1_features_array,
137 ARRAY_SIZE(phy_basic_t1_features_array),
138 phy_basic_t1_features);
140 /* 10/100 half/full + 1000 half/full */
141 linkmode_set_bit_array(phy_basic_ports_array,
142 ARRAY_SIZE(phy_basic_ports_array),
144 linkmode_set_bit_array(phy_10_100_features_array,
145 ARRAY_SIZE(phy_10_100_features_array),
147 linkmode_set_bit_array(phy_gbit_features_array,
148 ARRAY_SIZE(phy_gbit_features_array),
151 /* 10/100 half/full + 1000 half/full + fibre*/
152 linkmode_set_bit_array(phy_basic_ports_array,
153 ARRAY_SIZE(phy_basic_ports_array),
154 phy_gbit_fibre_features);
155 linkmode_set_bit_array(phy_10_100_features_array,
156 ARRAY_SIZE(phy_10_100_features_array),
157 phy_gbit_fibre_features);
158 linkmode_set_bit_array(phy_gbit_features_array,
159 ARRAY_SIZE(phy_gbit_features_array),
160 phy_gbit_fibre_features);
161 linkmode_set_bit_array(phy_fibre_port_array,
162 ARRAY_SIZE(phy_fibre_port_array),
163 phy_gbit_fibre_features);
165 /* 10/100 half/full + 1000 half/full + TP/MII/FIBRE/AUI/BNC/Backplane*/
166 linkmode_set_bit_array(phy_all_ports_features_array,
167 ARRAY_SIZE(phy_all_ports_features_array),
168 phy_gbit_all_ports_features);
169 linkmode_set_bit_array(phy_10_100_features_array,
170 ARRAY_SIZE(phy_10_100_features_array),
171 phy_gbit_all_ports_features);
172 linkmode_set_bit_array(phy_gbit_features_array,
173 ARRAY_SIZE(phy_gbit_features_array),
174 phy_gbit_all_ports_features);
176 /* 10/100 half/full + 1000 half/full + 10G full*/
177 linkmode_set_bit_array(phy_all_ports_features_array,
178 ARRAY_SIZE(phy_all_ports_features_array),
179 phy_10gbit_features);
180 linkmode_set_bit_array(phy_10_100_features_array,
181 ARRAY_SIZE(phy_10_100_features_array),
182 phy_10gbit_features);
183 linkmode_set_bit_array(phy_gbit_features_array,
184 ARRAY_SIZE(phy_gbit_features_array),
185 phy_10gbit_features);
186 linkmode_set_bit_array(phy_10gbit_features_array,
187 ARRAY_SIZE(phy_10gbit_features_array),
188 phy_10gbit_features);
190 /* 10/100/1000/10G full */
191 linkmode_set_bit_array(phy_all_ports_features_array,
192 ARRAY_SIZE(phy_all_ports_features_array),
193 phy_10gbit_full_features);
194 linkmode_set_bit_array(phy_10gbit_full_features_array,
195 ARRAY_SIZE(phy_10gbit_full_features_array),
196 phy_10gbit_full_features);
198 linkmode_set_bit_array(phy_10gbit_fec_features_array,
199 ARRAY_SIZE(phy_10gbit_fec_features_array),
200 phy_10gbit_fec_features);
203 void phy_device_free(struct phy_device *phydev)
205 put_device(&phydev->mdio.dev);
207 EXPORT_SYMBOL(phy_device_free);
209 static void phy_mdio_device_free(struct mdio_device *mdiodev)
211 struct phy_device *phydev;
213 phydev = container_of(mdiodev, struct phy_device, mdio);
214 phy_device_free(phydev);
217 static void phy_device_release(struct device *dev)
219 kfree(to_phy_device(dev));
222 static void phy_mdio_device_remove(struct mdio_device *mdiodev)
224 struct phy_device *phydev;
226 phydev = container_of(mdiodev, struct phy_device, mdio);
227 phy_device_remove(phydev);
230 static struct phy_driver genphy_driver;
232 static LIST_HEAD(phy_fixup_list);
233 static DEFINE_MUTEX(phy_fixup_lock);
235 static bool mdio_bus_phy_may_suspend(struct phy_device *phydev)
237 struct device_driver *drv = phydev->mdio.dev.driver;
238 struct phy_driver *phydrv = to_phy_driver(drv);
239 struct net_device *netdev = phydev->attached_dev;
241 if (!drv || !phydrv->suspend)
244 /* PHY not attached? May suspend if the PHY has not already been
245 * suspended as part of a prior call to phy_disconnect() ->
246 * phy_detach() -> phy_suspend() because the parent netdev might be the
247 * MDIO bus driver and clock gated at this point.
252 if (netdev->wol_enabled)
255 /* As long as not all affected network drivers support the
256 * wol_enabled flag, let's check for hints that WoL is enabled.
257 * Don't suspend PHY if the attached netdev parent may wake up.
258 * The parent may point to a PCI device, as in tg3 driver.
260 if (netdev->dev.parent && device_may_wakeup(netdev->dev.parent))
263 /* Also don't suspend PHY if the netdev itself may wakeup. This
264 * is the case for devices w/o underlaying pwr. mgmt. aware bus,
267 if (device_may_wakeup(&netdev->dev))
271 return !phydev->suspended;
274 static __maybe_unused int mdio_bus_phy_suspend(struct device *dev)
276 struct phy_device *phydev = to_phy_device(dev);
278 if (phydev->mac_managed_pm)
281 /* Wakeup interrupts may occur during the system sleep transition when
282 * the PHY is inaccessible. Set flag to postpone handling until the PHY
283 * has resumed. Wait for concurrent interrupt handler to complete.
285 if (phy_interrupt_is_valid(phydev)) {
286 phydev->irq_suspended = 1;
287 synchronize_irq(phydev->irq);
290 /* We must stop the state machine manually, otherwise it stops out of
291 * control, possibly with the phydev->lock held. Upon resume, netdev
292 * may call phy routines that try to grab the same lock, and that may
293 * lead to a deadlock.
295 if (phydev->attached_dev && phydev->adjust_link)
296 phy_stop_machine(phydev);
298 if (!mdio_bus_phy_may_suspend(phydev))
301 phydev->suspended_by_mdio_bus = 1;
303 return phy_suspend(phydev);
306 static __maybe_unused int mdio_bus_phy_resume(struct device *dev)
308 struct phy_device *phydev = to_phy_device(dev);
311 if (phydev->mac_managed_pm)
314 if (!phydev->suspended_by_mdio_bus)
317 phydev->suspended_by_mdio_bus = 0;
319 /* If we managed to get here with the PHY state machine in a state
320 * neither PHY_HALTED, PHY_READY nor PHY_UP, this is an indication
321 * that something went wrong and we should most likely be using
322 * MAC managed PM, but we are not.
324 WARN_ON(phydev->state != PHY_HALTED && phydev->state != PHY_READY &&
325 phydev->state != PHY_UP);
327 ret = phy_init_hw(phydev);
331 ret = phy_resume(phydev);
335 if (phy_interrupt_is_valid(phydev)) {
336 phydev->irq_suspended = 0;
337 synchronize_irq(phydev->irq);
339 /* Rerun interrupts which were postponed by phy_interrupt()
340 * because they occurred during the system sleep transition.
342 if (phydev->irq_rerun) {
343 phydev->irq_rerun = 0;
344 enable_irq(phydev->irq);
345 irq_wake_thread(phydev->irq, phydev);
349 if (phydev->attached_dev && phydev->adjust_link)
350 phy_start_machine(phydev);
355 static SIMPLE_DEV_PM_OPS(mdio_bus_phy_pm_ops, mdio_bus_phy_suspend,
356 mdio_bus_phy_resume);
359 * phy_register_fixup - creates a new phy_fixup and adds it to the list
360 * @bus_id: A string which matches phydev->mdio.dev.bus_id (or PHY_ANY_ID)
361 * @phy_uid: Used to match against phydev->phy_id (the UID of the PHY)
362 * It can also be PHY_ANY_UID
363 * @phy_uid_mask: Applied to phydev->phy_id and fixup->phy_uid before
365 * @run: The actual code to be run when a matching PHY is found
367 int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
368 int (*run)(struct phy_device *))
370 struct phy_fixup *fixup = kzalloc(sizeof(*fixup), GFP_KERNEL);
375 strscpy(fixup->bus_id, bus_id, sizeof(fixup->bus_id));
376 fixup->phy_uid = phy_uid;
377 fixup->phy_uid_mask = phy_uid_mask;
380 mutex_lock(&phy_fixup_lock);
381 list_add_tail(&fixup->list, &phy_fixup_list);
382 mutex_unlock(&phy_fixup_lock);
386 EXPORT_SYMBOL(phy_register_fixup);
388 /* Registers a fixup to be run on any PHY with the UID in phy_uid */
389 int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask,
390 int (*run)(struct phy_device *))
392 return phy_register_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask, run);
394 EXPORT_SYMBOL(phy_register_fixup_for_uid);
396 /* Registers a fixup to be run on the PHY with id string bus_id */
397 int phy_register_fixup_for_id(const char *bus_id,
398 int (*run)(struct phy_device *))
400 return phy_register_fixup(bus_id, PHY_ANY_UID, 0xffffffff, run);
402 EXPORT_SYMBOL(phy_register_fixup_for_id);
405 * phy_unregister_fixup - remove a phy_fixup from the list
406 * @bus_id: A string matches fixup->bus_id (or PHY_ANY_ID) in phy_fixup_list
407 * @phy_uid: A phy id matches fixup->phy_id (or PHY_ANY_UID) in phy_fixup_list
408 * @phy_uid_mask: Applied to phy_uid and fixup->phy_uid before comparison
410 int phy_unregister_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask)
412 struct list_head *pos, *n;
413 struct phy_fixup *fixup;
418 mutex_lock(&phy_fixup_lock);
419 list_for_each_safe(pos, n, &phy_fixup_list) {
420 fixup = list_entry(pos, struct phy_fixup, list);
422 if ((!strcmp(fixup->bus_id, bus_id)) &&
423 ((fixup->phy_uid & phy_uid_mask) ==
424 (phy_uid & phy_uid_mask))) {
425 list_del(&fixup->list);
431 mutex_unlock(&phy_fixup_lock);
435 EXPORT_SYMBOL(phy_unregister_fixup);
437 /* Unregisters a fixup of any PHY with the UID in phy_uid */
438 int phy_unregister_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask)
440 return phy_unregister_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask);
442 EXPORT_SYMBOL(phy_unregister_fixup_for_uid);
444 /* Unregisters a fixup of the PHY with id string bus_id */
445 int phy_unregister_fixup_for_id(const char *bus_id)
447 return phy_unregister_fixup(bus_id, PHY_ANY_UID, 0xffffffff);
449 EXPORT_SYMBOL(phy_unregister_fixup_for_id);
451 /* Returns 1 if fixup matches phydev in bus_id and phy_uid.
452 * Fixups can be set to match any in one or more fields.
454 static int phy_needs_fixup(struct phy_device *phydev, struct phy_fixup *fixup)
456 if (strcmp(fixup->bus_id, phydev_name(phydev)) != 0)
457 if (strcmp(fixup->bus_id, PHY_ANY_ID) != 0)
460 if ((fixup->phy_uid & fixup->phy_uid_mask) !=
461 (phydev->phy_id & fixup->phy_uid_mask))
462 if (fixup->phy_uid != PHY_ANY_UID)
468 /* Runs any matching fixups for this phydev */
469 static int phy_scan_fixups(struct phy_device *phydev)
471 struct phy_fixup *fixup;
473 mutex_lock(&phy_fixup_lock);
474 list_for_each_entry(fixup, &phy_fixup_list, list) {
475 if (phy_needs_fixup(phydev, fixup)) {
476 int err = fixup->run(phydev);
479 mutex_unlock(&phy_fixup_lock);
482 phydev->has_fixups = true;
485 mutex_unlock(&phy_fixup_lock);
490 static int phy_bus_match(struct device *dev, struct device_driver *drv)
492 struct phy_device *phydev = to_phy_device(dev);
493 struct phy_driver *phydrv = to_phy_driver(drv);
494 const int num_ids = ARRAY_SIZE(phydev->c45_ids.device_ids);
497 if (!(phydrv->mdiodrv.flags & MDIO_DEVICE_IS_PHY))
500 if (phydrv->match_phy_device)
501 return phydrv->match_phy_device(phydev);
503 if (phydev->is_c45) {
504 for (i = 1; i < num_ids; i++) {
505 if (phydev->c45_ids.device_ids[i] == 0xffffffff)
508 if ((phydrv->phy_id & phydrv->phy_id_mask) ==
509 (phydev->c45_ids.device_ids[i] &
510 phydrv->phy_id_mask))
515 return (phydrv->phy_id & phydrv->phy_id_mask) ==
516 (phydev->phy_id & phydrv->phy_id_mask);
521 phy_id_show(struct device *dev, struct device_attribute *attr, char *buf)
523 struct phy_device *phydev = to_phy_device(dev);
525 return sysfs_emit(buf, "0x%.8lx\n", (unsigned long)phydev->phy_id);
527 static DEVICE_ATTR_RO(phy_id);
530 phy_interface_show(struct device *dev, struct device_attribute *attr, char *buf)
532 struct phy_device *phydev = to_phy_device(dev);
533 const char *mode = NULL;
535 if (phy_is_internal(phydev))
538 mode = phy_modes(phydev->interface);
540 return sysfs_emit(buf, "%s\n", mode);
542 static DEVICE_ATTR_RO(phy_interface);
545 phy_has_fixups_show(struct device *dev, struct device_attribute *attr,
548 struct phy_device *phydev = to_phy_device(dev);
550 return sysfs_emit(buf, "%d\n", phydev->has_fixups);
552 static DEVICE_ATTR_RO(phy_has_fixups);
554 static ssize_t phy_dev_flags_show(struct device *dev,
555 struct device_attribute *attr,
558 struct phy_device *phydev = to_phy_device(dev);
560 return sysfs_emit(buf, "0x%08x\n", phydev->dev_flags);
562 static DEVICE_ATTR_RO(phy_dev_flags);
564 static struct attribute *phy_dev_attrs[] = {
565 &dev_attr_phy_id.attr,
566 &dev_attr_phy_interface.attr,
567 &dev_attr_phy_has_fixups.attr,
568 &dev_attr_phy_dev_flags.attr,
571 ATTRIBUTE_GROUPS(phy_dev);
573 static const struct device_type mdio_bus_phy_type = {
575 .groups = phy_dev_groups,
576 .release = phy_device_release,
577 .pm = pm_ptr(&mdio_bus_phy_pm_ops),
580 static int phy_request_driver_module(struct phy_device *dev, u32 phy_id)
584 ret = request_module(MDIO_MODULE_PREFIX MDIO_ID_FMT,
585 MDIO_ID_ARGS(phy_id));
586 /* We only check for failures in executing the usermode binary,
587 * not whether a PHY driver module exists for the PHY ID.
588 * Accept -ENOENT because this may occur in case no initramfs exists,
589 * then modprobe isn't available.
591 if (IS_ENABLED(CONFIG_MODULES) && ret < 0 && ret != -ENOENT) {
592 phydev_err(dev, "error %d loading PHY driver module for ID 0x%08lx\n",
593 ret, (unsigned long)phy_id);
600 struct phy_device *phy_device_create(struct mii_bus *bus, int addr, u32 phy_id,
602 struct phy_c45_device_ids *c45_ids)
604 struct phy_device *dev;
605 struct mdio_device *mdiodev;
608 /* We allocate the device, and initialize the default values */
609 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
611 return ERR_PTR(-ENOMEM);
613 mdiodev = &dev->mdio;
614 mdiodev->dev.parent = &bus->dev;
615 mdiodev->dev.bus = &mdio_bus_type;
616 mdiodev->dev.type = &mdio_bus_phy_type;
618 mdiodev->bus_match = phy_bus_match;
619 mdiodev->addr = addr;
620 mdiodev->flags = MDIO_DEVICE_FLAG_PHY;
621 mdiodev->device_free = phy_mdio_device_free;
622 mdiodev->device_remove = phy_mdio_device_remove;
624 dev->speed = SPEED_UNKNOWN;
625 dev->duplex = DUPLEX_UNKNOWN;
630 dev->interface = PHY_INTERFACE_MODE_GMII;
632 dev->autoneg = AUTONEG_ENABLE;
634 dev->pma_extable = -ENODATA;
635 dev->is_c45 = is_c45;
636 dev->phy_id = phy_id;
638 dev->c45_ids = *c45_ids;
639 dev->irq = bus->irq[addr];
641 dev_set_name(&mdiodev->dev, PHY_ID_FMT, bus->id, addr);
642 device_initialize(&mdiodev->dev);
644 dev->state = PHY_DOWN;
646 mutex_init(&dev->lock);
647 INIT_DELAYED_WORK(&dev->state_queue, phy_state_machine);
649 /* Request the appropriate module unconditionally; don't
650 * bother trying to do so only if it isn't already loaded,
651 * because that gets complicated. A hotplug event would have
652 * done an unconditional modprobe anyway.
653 * We don't do normal hotplug because it won't work for MDIO
654 * -- because it relies on the device staying around for long
655 * enough for the driver to get loaded. With MDIO, the NIC
656 * driver will get bored and give up as soon as it finds that
657 * there's no driver _already_ loaded.
659 if (is_c45 && c45_ids) {
660 const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
663 for (i = 1; i < num_ids; i++) {
664 if (c45_ids->device_ids[i] == 0xffffffff)
667 ret = phy_request_driver_module(dev,
668 c45_ids->device_ids[i]);
673 ret = phy_request_driver_module(dev, phy_id);
677 put_device(&mdiodev->dev);
683 EXPORT_SYMBOL(phy_device_create);
685 /* phy_c45_probe_present - checks to see if a MMD is present in the package
686 * @bus: the target MII bus
687 * @prtad: PHY package address on the MII bus
688 * @devad: PHY device (MMD) address
690 * Read the MDIO_STAT2 register, and check whether a device is responding
693 * Returns: negative error number on bus access error, zero if no device
694 * is responding, or positive if a device is present.
696 static int phy_c45_probe_present(struct mii_bus *bus, int prtad, int devad)
700 stat2 = mdiobus_c45_read(bus, prtad, devad, MDIO_STAT2);
704 return (stat2 & MDIO_STAT2_DEVPRST) == MDIO_STAT2_DEVPRST_VAL;
707 /* get_phy_c45_devs_in_pkg - reads a MMD's devices in package registers.
708 * @bus: the target MII bus
709 * @addr: PHY address on the MII bus
710 * @dev_addr: MMD address in the PHY.
711 * @devices_in_package: where to store the devices in package information.
713 * Description: reads devices in package registers of a MMD at @dev_addr
714 * from PHY at @addr on @bus.
716 * Returns: 0 on success, -EIO on failure.
718 static int get_phy_c45_devs_in_pkg(struct mii_bus *bus, int addr, int dev_addr,
719 u32 *devices_in_package)
723 phy_reg = mdiobus_c45_read(bus, addr, dev_addr, MDIO_DEVS2);
726 *devices_in_package = phy_reg << 16;
728 phy_reg = mdiobus_c45_read(bus, addr, dev_addr, MDIO_DEVS1);
731 *devices_in_package |= phy_reg;
737 * get_phy_c45_ids - reads the specified addr for its 802.3-c45 IDs.
738 * @bus: the target MII bus
739 * @addr: PHY address on the MII bus
740 * @c45_ids: where to store the c45 ID information.
742 * Read the PHY "devices in package". If this appears to be valid, read
743 * the PHY identifiers for each device. Return the "devices in package"
744 * and identifiers in @c45_ids.
746 * Returns zero on success, %-EIO on bus access error, or %-ENODEV if
747 * the "devices in package" is invalid.
749 static int get_phy_c45_ids(struct mii_bus *bus, int addr,
750 struct phy_c45_device_ids *c45_ids)
752 const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
756 /* Find first non-zero Devices In package. Device zero is reserved
757 * for 802.3 c45 complied PHYs, so don't probe it at first.
759 for (i = 1; i < MDIO_MMD_NUM && (devs_in_pkg == 0 ||
760 (devs_in_pkg & 0x1fffffff) == 0x1fffffff); i++) {
761 if (i == MDIO_MMD_VEND1 || i == MDIO_MMD_VEND2) {
762 /* Check that there is a device present at this
763 * address before reading the devices-in-package
764 * register to avoid reading garbage from the PHY.
765 * Some PHYs (88x3310) vendor space is not IEEE802.3
768 ret = phy_c45_probe_present(bus, addr, i);
775 phy_reg = get_phy_c45_devs_in_pkg(bus, addr, i, &devs_in_pkg);
780 if ((devs_in_pkg & 0x1fffffff) == 0x1fffffff) {
781 /* If mostly Fs, there is no device there, then let's probe
782 * MMD 0, as some 10G PHYs have zero Devices In package,
783 * e.g. Cortina CS4315/CS4340 PHY.
785 phy_reg = get_phy_c45_devs_in_pkg(bus, addr, 0, &devs_in_pkg);
789 /* no device there, let's get out of here */
790 if ((devs_in_pkg & 0x1fffffff) == 0x1fffffff)
794 /* Now probe Device Identifiers for each device present. */
795 for (i = 1; i < num_ids; i++) {
796 if (!(devs_in_pkg & (1 << i)))
799 if (i == MDIO_MMD_VEND1 || i == MDIO_MMD_VEND2) {
800 /* Probe the "Device Present" bits for the vendor MMDs
801 * to ignore these if they do not contain IEEE 802.3
804 ret = phy_c45_probe_present(bus, addr, i);
812 phy_reg = mdiobus_c45_read(bus, addr, i, MII_PHYSID1);
815 c45_ids->device_ids[i] = phy_reg << 16;
817 phy_reg = mdiobus_c45_read(bus, addr, i, MII_PHYSID2);
820 c45_ids->device_ids[i] |= phy_reg;
823 c45_ids->devices_in_package = devs_in_pkg;
824 /* Bit 0 doesn't represent a device, it indicates c22 regs presence */
825 c45_ids->mmds_present = devs_in_pkg & ~BIT(0);
831 * get_phy_c22_id - reads the specified addr for its clause 22 ID.
832 * @bus: the target MII bus
833 * @addr: PHY address on the MII bus
834 * @phy_id: where to store the ID retrieved.
836 * Read the 802.3 clause 22 PHY ID from the PHY at @addr on the @bus,
837 * placing it in @phy_id. Return zero on successful read and the ID is
838 * valid, %-EIO on bus access error, or %-ENODEV if no device responds
841 static int get_phy_c22_id(struct mii_bus *bus, int addr, u32 *phy_id)
845 /* Grab the bits from PHYIR1, and put them in the upper half */
846 phy_reg = mdiobus_read(bus, addr, MII_PHYSID1);
848 /* returning -ENODEV doesn't stop bus scanning */
849 return (phy_reg == -EIO || phy_reg == -ENODEV) ? -ENODEV : -EIO;
852 *phy_id = phy_reg << 16;
854 /* Grab the bits from PHYIR2, and put them in the lower half */
855 phy_reg = mdiobus_read(bus, addr, MII_PHYSID2);
857 /* returning -ENODEV doesn't stop bus scanning */
858 return (phy_reg == -EIO || phy_reg == -ENODEV) ? -ENODEV : -EIO;
863 /* If the phy_id is mostly Fs, there is no device there */
864 if ((*phy_id & 0x1fffffff) == 0x1fffffff)
870 /* Extract the phy ID from the compatible string of the form
871 * ethernet-phy-idAAAA.BBBB.
873 int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id)
875 unsigned int upper, lower;
879 ret = fwnode_property_read_string(fwnode, "compatible", &cp);
883 if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) != 2)
886 *phy_id = ((upper & GENMASK(15, 0)) << 16) | (lower & GENMASK(15, 0));
889 EXPORT_SYMBOL(fwnode_get_phy_id);
892 * get_phy_device - reads the specified PHY device and returns its @phy_device
894 * @bus: the target MII bus
895 * @addr: PHY address on the MII bus
896 * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
898 * Probe for a PHY at @addr on @bus.
900 * When probing for a clause 22 PHY, then read the ID registers. If we find
901 * a valid ID, allocate and return a &struct phy_device.
903 * When probing for a clause 45 PHY, read the "devices in package" registers.
904 * If the "devices in package" appears valid, read the ID registers for each
905 * MMD, allocate and return a &struct phy_device.
907 * Returns an allocated &struct phy_device on success, %-ENODEV if there is
908 * no PHY present, or %-EIO on bus access error.
910 struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45)
912 struct phy_c45_device_ids c45_ids;
916 c45_ids.devices_in_package = 0;
917 c45_ids.mmds_present = 0;
918 memset(c45_ids.device_ids, 0xff, sizeof(c45_ids.device_ids));
921 r = get_phy_c45_ids(bus, addr, &c45_ids);
923 r = get_phy_c22_id(bus, addr, &phy_id);
928 /* PHY device such as the Marvell Alaska 88E2110 will return a PHY ID
929 * of 0 when probed using get_phy_c22_id() with no error. Proceed to
930 * probe with C45 to see if we're able to get a valid PHY ID in the C45
931 * space, if successful, create the C45 PHY device.
933 if (!is_c45 && phy_id == 0 && bus->probe_capabilities >= MDIOBUS_C45) {
934 r = get_phy_c45_ids(bus, addr, &c45_ids);
936 return phy_device_create(bus, addr, phy_id,
940 return phy_device_create(bus, addr, phy_id, is_c45, &c45_ids);
942 EXPORT_SYMBOL(get_phy_device);
945 * phy_device_register - Register the phy device on the MDIO bus
946 * @phydev: phy_device structure to be added to the MDIO bus
948 int phy_device_register(struct phy_device *phydev)
952 err = mdiobus_register_device(&phydev->mdio);
956 /* Deassert the reset signal */
957 phy_device_reset(phydev, 0);
959 /* Run all of the fixups for this PHY */
960 err = phy_scan_fixups(phydev);
962 phydev_err(phydev, "failed to initialize\n");
966 err = device_add(&phydev->mdio.dev);
968 phydev_err(phydev, "failed to add\n");
975 /* Assert the reset signal */
976 phy_device_reset(phydev, 1);
978 mdiobus_unregister_device(&phydev->mdio);
981 EXPORT_SYMBOL(phy_device_register);
984 * phy_device_remove - Remove a previously registered phy device from the MDIO bus
985 * @phydev: phy_device structure to remove
987 * This doesn't free the phy_device itself, it merely reverses the effects
988 * of phy_device_register(). Use phy_device_free() to free the device
989 * after calling this function.
991 void phy_device_remove(struct phy_device *phydev)
993 unregister_mii_timestamper(phydev->mii_ts);
995 device_del(&phydev->mdio.dev);
997 /* Assert the reset signal */
998 phy_device_reset(phydev, 1);
1000 mdiobus_unregister_device(&phydev->mdio);
1002 EXPORT_SYMBOL(phy_device_remove);
1005 * phy_get_c45_ids - Read 802.3-c45 IDs for phy device.
1006 * @phydev: phy_device structure to read 802.3-c45 IDs
1008 * Returns zero on success, %-EIO on bus access error, or %-ENODEV if
1009 * the "devices in package" is invalid.
1011 int phy_get_c45_ids(struct phy_device *phydev)
1013 return get_phy_c45_ids(phydev->mdio.bus, phydev->mdio.addr,
1016 EXPORT_SYMBOL(phy_get_c45_ids);
1019 * phy_find_first - finds the first PHY device on the bus
1020 * @bus: the target MII bus
1022 struct phy_device *phy_find_first(struct mii_bus *bus)
1024 struct phy_device *phydev;
1027 for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
1028 phydev = mdiobus_get_phy(bus, addr);
1034 EXPORT_SYMBOL(phy_find_first);
1036 static void phy_link_change(struct phy_device *phydev, bool up)
1038 struct net_device *netdev = phydev->attached_dev;
1041 netif_carrier_on(netdev);
1043 netif_carrier_off(netdev);
1044 phydev->adjust_link(netdev);
1045 if (phydev->mii_ts && phydev->mii_ts->link_state)
1046 phydev->mii_ts->link_state(phydev->mii_ts, phydev);
1050 * phy_prepare_link - prepares the PHY layer to monitor link status
1051 * @phydev: target phy_device struct
1052 * @handler: callback function for link status change notifications
1054 * Description: Tells the PHY infrastructure to handle the
1055 * gory details on monitoring link status (whether through
1056 * polling or an interrupt), and to call back to the
1057 * connected device driver when the link status changes.
1058 * If you want to monitor your own link state, don't call
1061 static void phy_prepare_link(struct phy_device *phydev,
1062 void (*handler)(struct net_device *))
1064 phydev->adjust_link = handler;
1068 * phy_connect_direct - connect an ethernet device to a specific phy_device
1069 * @dev: the network device to connect
1070 * @phydev: the pointer to the phy device
1071 * @handler: callback function for state change notifications
1072 * @interface: PHY device's interface
1074 int phy_connect_direct(struct net_device *dev, struct phy_device *phydev,
1075 void (*handler)(struct net_device *),
1076 phy_interface_t interface)
1083 rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
1087 phy_prepare_link(phydev, handler);
1088 if (phy_interrupt_is_valid(phydev))
1089 phy_request_interrupt(phydev);
1093 EXPORT_SYMBOL(phy_connect_direct);
1096 * phy_connect - connect an ethernet device to a PHY device
1097 * @dev: the network device to connect
1098 * @bus_id: the id string of the PHY device to connect
1099 * @handler: callback function for state change notifications
1100 * @interface: PHY device's interface
1102 * Description: Convenience function for connecting ethernet
1103 * devices to PHY devices. The default behavior is for
1104 * the PHY infrastructure to handle everything, and only notify
1105 * the connected driver when the link status changes. If you
1106 * don't want, or can't use the provided functionality, you may
1107 * choose to call only the subset of functions which provide
1108 * the desired functionality.
1110 struct phy_device *phy_connect(struct net_device *dev, const char *bus_id,
1111 void (*handler)(struct net_device *),
1112 phy_interface_t interface)
1114 struct phy_device *phydev;
1118 /* Search the list of PHY devices on the mdio bus for the
1119 * PHY with the requested name
1121 d = bus_find_device_by_name(&mdio_bus_type, NULL, bus_id);
1123 pr_err("PHY %s not found\n", bus_id);
1124 return ERR_PTR(-ENODEV);
1126 phydev = to_phy_device(d);
1128 rc = phy_connect_direct(dev, phydev, handler, interface);
1135 EXPORT_SYMBOL(phy_connect);
1138 * phy_disconnect - disable interrupts, stop state machine, and detach a PHY
1140 * @phydev: target phy_device struct
1142 void phy_disconnect(struct phy_device *phydev)
1144 if (phy_is_started(phydev))
1147 if (phy_interrupt_is_valid(phydev))
1148 phy_free_interrupt(phydev);
1150 phydev->adjust_link = NULL;
1154 EXPORT_SYMBOL(phy_disconnect);
1157 * phy_poll_reset - Safely wait until a PHY reset has properly completed
1158 * @phydev: The PHY device to poll
1160 * Description: According to IEEE 802.3, Section 2, Subsection 22.2.4.1.1, as
1161 * published in 2008, a PHY reset may take up to 0.5 seconds. The MII BMCR
1162 * register must be polled until the BMCR_RESET bit clears.
1164 * Furthermore, any attempts to write to PHY registers may have no effect
1165 * or even generate MDIO bus errors until this is complete.
1167 * Some PHYs (such as the Marvell 88E1111) don't entirely conform to the
1168 * standard and do not fully reset after the BMCR_RESET bit is set, and may
1169 * even *REQUIRE* a soft-reset to properly restart autonegotiation. In an
1170 * effort to support such broken PHYs, this function is separate from the
1171 * standard phy_init_hw() which will zero all the other bits in the BMCR
1172 * and reapply all driver-specific and board-specific fixups.
1174 static int phy_poll_reset(struct phy_device *phydev)
1176 /* Poll until the reset bit clears (50ms per retry == 0.6 sec) */
1179 ret = phy_read_poll_timeout(phydev, MII_BMCR, val, !(val & BMCR_RESET),
1180 50000, 600000, true);
1183 /* Some chips (smsc911x) may still need up to another 1ms after the
1184 * BMCR_RESET bit is cleared before they are usable.
1190 int phy_init_hw(struct phy_device *phydev)
1194 /* Deassert the reset signal */
1195 phy_device_reset(phydev, 0);
1200 if (phydev->drv->soft_reset) {
1201 ret = phydev->drv->soft_reset(phydev);
1202 /* see comment in genphy_soft_reset for an explanation */
1204 phydev->suspended = 0;
1210 ret = phy_scan_fixups(phydev);
1214 if (phydev->drv->config_init) {
1215 ret = phydev->drv->config_init(phydev);
1220 if (phydev->drv->config_intr) {
1221 ret = phydev->drv->config_intr(phydev);
1228 EXPORT_SYMBOL(phy_init_hw);
1230 void phy_attached_info(struct phy_device *phydev)
1232 phy_attached_print(phydev, NULL);
1234 EXPORT_SYMBOL(phy_attached_info);
1236 #define ATTACHED_FMT "attached PHY driver %s(mii_bus:phy_addr=%s, irq=%s)"
1237 char *phy_attached_info_irq(struct phy_device *phydev)
1242 switch(phydev->irq) {
1246 case PHY_MAC_INTERRUPT:
1250 snprintf(irq_num, sizeof(irq_num), "%d", phydev->irq);
1255 return kasprintf(GFP_KERNEL, "%s", irq_str);
1257 EXPORT_SYMBOL(phy_attached_info_irq);
1259 void phy_attached_print(struct phy_device *phydev, const char *fmt, ...)
1261 const char *unbound = phydev->drv ? "" : "[unbound] ";
1262 char *irq_str = phy_attached_info_irq(phydev);
1265 phydev_info(phydev, ATTACHED_FMT "\n", unbound,
1266 phydev_name(phydev), irq_str);
1270 phydev_info(phydev, ATTACHED_FMT, unbound,
1271 phydev_name(phydev), irq_str);
1279 EXPORT_SYMBOL(phy_attached_print);
1281 static void phy_sysfs_create_links(struct phy_device *phydev)
1283 struct net_device *dev = phydev->attached_dev;
1289 err = sysfs_create_link(&phydev->mdio.dev.kobj, &dev->dev.kobj,
1294 err = sysfs_create_link_nowarn(&dev->dev.kobj,
1295 &phydev->mdio.dev.kobj,
1298 dev_err(&dev->dev, "could not add device link to %s err %d\n",
1299 kobject_name(&phydev->mdio.dev.kobj),
1301 /* non-fatal - some net drivers can use one netdevice
1302 * with more then one phy
1306 phydev->sysfs_links = true;
1310 phy_standalone_show(struct device *dev, struct device_attribute *attr,
1313 struct phy_device *phydev = to_phy_device(dev);
1315 return sysfs_emit(buf, "%d\n", !phydev->attached_dev);
1317 static DEVICE_ATTR_RO(phy_standalone);
1320 * phy_sfp_attach - attach the SFP bus to the PHY upstream network device
1321 * @upstream: pointer to the phy device
1322 * @bus: sfp bus representing cage being attached
1324 * This is used to fill in the sfp_upstream_ops .attach member.
1326 void phy_sfp_attach(void *upstream, struct sfp_bus *bus)
1328 struct phy_device *phydev = upstream;
1330 if (phydev->attached_dev)
1331 phydev->attached_dev->sfp_bus = bus;
1332 phydev->sfp_bus_attached = true;
1334 EXPORT_SYMBOL(phy_sfp_attach);
1337 * phy_sfp_detach - detach the SFP bus from the PHY upstream network device
1338 * @upstream: pointer to the phy device
1339 * @bus: sfp bus representing cage being attached
1341 * This is used to fill in the sfp_upstream_ops .detach member.
1343 void phy_sfp_detach(void *upstream, struct sfp_bus *bus)
1345 struct phy_device *phydev = upstream;
1347 if (phydev->attached_dev)
1348 phydev->attached_dev->sfp_bus = NULL;
1349 phydev->sfp_bus_attached = false;
1351 EXPORT_SYMBOL(phy_sfp_detach);
1354 * phy_sfp_probe - probe for a SFP cage attached to this PHY device
1355 * @phydev: Pointer to phy_device
1356 * @ops: SFP's upstream operations
1358 int phy_sfp_probe(struct phy_device *phydev,
1359 const struct sfp_upstream_ops *ops)
1361 struct sfp_bus *bus;
1364 if (phydev->mdio.dev.fwnode) {
1365 bus = sfp_bus_find_fwnode(phydev->mdio.dev.fwnode);
1367 return PTR_ERR(bus);
1369 phydev->sfp_bus = bus;
1371 ret = sfp_bus_add_upstream(bus, phydev, ops);
1376 EXPORT_SYMBOL(phy_sfp_probe);
1379 * phy_attach_direct - attach a network device to a given PHY device pointer
1380 * @dev: network device to attach
1381 * @phydev: Pointer to phy_device to attach
1382 * @flags: PHY device's dev_flags
1383 * @interface: PHY device's interface
1385 * Description: Called by drivers to attach to a particular PHY
1386 * device. The phy_device is found, and properly hooked up
1387 * to the phy_driver. If no driver is attached, then a
1388 * generic driver is used. The phy_device is given a ptr to
1389 * the attaching device, and given a callback for link status
1390 * change. The phy_device is returned to the attaching driver.
1391 * This function takes a reference on the phy device.
1393 int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,
1394 u32 flags, phy_interface_t interface)
1396 struct mii_bus *bus = phydev->mdio.bus;
1397 struct device *d = &phydev->mdio.dev;
1398 struct module *ndev_owner = NULL;
1399 bool using_genphy = false;
1402 /* For Ethernet device drivers that register their own MDIO bus, we
1403 * will have bus->owner match ndev_mod, so we do not want to increment
1404 * our own module->refcnt here, otherwise we would not be able to
1408 ndev_owner = dev->dev.parent->driver->owner;
1409 if (ndev_owner != bus->owner && !try_module_get(bus->owner)) {
1410 phydev_err(phydev, "failed to get the bus module\n");
1416 /* Assume that if there is no driver, that it doesn't
1417 * exist, and we should use the genphy driver.
1421 d->driver = &genphy_c45_driver.mdiodrv.driver;
1423 d->driver = &genphy_driver.mdiodrv.driver;
1425 using_genphy = true;
1428 if (!try_module_get(d->driver->owner)) {
1429 phydev_err(phydev, "failed to get the device driver module\n");
1431 goto error_put_device;
1435 err = d->driver->probe(d);
1437 err = device_bind_driver(d);
1440 goto error_module_put;
1443 if (phydev->attached_dev) {
1444 dev_err(&dev->dev, "PHY already attached\n");
1449 phydev->phy_link_change = phy_link_change;
1451 phydev->attached_dev = dev;
1452 dev->phydev = phydev;
1454 if (phydev->sfp_bus_attached)
1455 dev->sfp_bus = phydev->sfp_bus;
1456 else if (dev->sfp_bus)
1457 phydev->is_on_sfp_module = true;
1460 /* Some Ethernet drivers try to connect to a PHY device before
1461 * calling register_netdevice() -> netdev_register_kobject() and
1462 * does the dev->dev.kobj initialization. Here we only check for
1463 * success which indicates that the network device kobject is
1464 * ready. Once we do that we still need to keep track of whether
1465 * links were successfully set up or not for phy_detach() to
1466 * remove them accordingly.
1468 phydev->sysfs_links = false;
1470 phy_sysfs_create_links(phydev);
1472 if (!phydev->attached_dev) {
1473 err = sysfs_create_file(&phydev->mdio.dev.kobj,
1474 &dev_attr_phy_standalone.attr);
1476 phydev_err(phydev, "error creating 'phy_standalone' sysfs entry\n");
1479 phydev->dev_flags |= flags;
1481 phydev->interface = interface;
1483 phydev->state = PHY_READY;
1485 phydev->interrupts = PHY_INTERRUPT_DISABLED;
1487 /* Port is set to PORT_TP by default and the actual PHY driver will set
1488 * it to different value depending on the PHY configuration. If we have
1489 * the generic PHY driver we can't figure it out, thus set the old
1490 * legacy PORT_MII value.
1493 phydev->port = PORT_MII;
1495 /* Initial carrier state is off as the phy is about to be
1499 netif_carrier_off(phydev->attached_dev);
1501 /* Do initial configuration here, now that
1502 * we have certain key parameters
1503 * (dev_flags and interface)
1505 err = phy_init_hw(phydev);
1510 phy_led_triggers_register(phydev);
1515 /* phy_detach() does all of the cleanup below */
1520 module_put(d->driver->owner);
1523 if (ndev_owner != bus->owner)
1524 module_put(bus->owner);
1527 EXPORT_SYMBOL(phy_attach_direct);
1530 * phy_attach - attach a network device to a particular PHY device
1531 * @dev: network device to attach
1532 * @bus_id: Bus ID of PHY device to attach
1533 * @interface: PHY device's interface
1535 * Description: Same as phy_attach_direct() except that a PHY bus_id
1536 * string is passed instead of a pointer to a struct phy_device.
1538 struct phy_device *phy_attach(struct net_device *dev, const char *bus_id,
1539 phy_interface_t interface)
1541 struct bus_type *bus = &mdio_bus_type;
1542 struct phy_device *phydev;
1547 return ERR_PTR(-EINVAL);
1549 /* Search the list of PHY devices on the mdio bus for the
1550 * PHY with the requested name
1552 d = bus_find_device_by_name(bus, NULL, bus_id);
1554 pr_err("PHY %s not found\n", bus_id);
1555 return ERR_PTR(-ENODEV);
1557 phydev = to_phy_device(d);
1559 rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
1566 EXPORT_SYMBOL(phy_attach);
1568 static bool phy_driver_is_genphy_kind(struct phy_device *phydev,
1569 struct device_driver *driver)
1571 struct device *d = &phydev->mdio.dev;
1578 ret = d->driver == driver;
1584 bool phy_driver_is_genphy(struct phy_device *phydev)
1586 return phy_driver_is_genphy_kind(phydev,
1587 &genphy_driver.mdiodrv.driver);
1589 EXPORT_SYMBOL_GPL(phy_driver_is_genphy);
1591 bool phy_driver_is_genphy_10g(struct phy_device *phydev)
1593 return phy_driver_is_genphy_kind(phydev,
1594 &genphy_c45_driver.mdiodrv.driver);
1596 EXPORT_SYMBOL_GPL(phy_driver_is_genphy_10g);
1599 * phy_package_join - join a common PHY group
1600 * @phydev: target phy_device struct
1601 * @addr: cookie and PHY address for global register access
1602 * @priv_size: if non-zero allocate this amount of bytes for private data
1604 * This joins a PHY group and provides a shared storage for all phydevs in
1605 * this group. This is intended to be used for packages which contain
1606 * more than one PHY, for example a quad PHY transceiver.
1608 * The addr parameter serves as a cookie which has to have the same value
1609 * for all members of one group and as a PHY address to access generic
1610 * registers of a PHY package. Usually, one of the PHY addresses of the
1611 * different PHYs in the package provides access to these global registers.
1612 * The address which is given here, will be used in the phy_package_read()
1613 * and phy_package_write() convenience functions. If your PHY doesn't have
1614 * global registers you can just pick any of the PHY addresses.
1616 * This will set the shared pointer of the phydev to the shared storage.
1617 * If this is the first call for a this cookie the shared storage will be
1618 * allocated. If priv_size is non-zero, the given amount of bytes are
1619 * allocated for the priv member.
1621 * Returns < 1 on error, 0 on success. Esp. calling phy_package_join()
1622 * with the same cookie but a different priv_size is an error.
1624 int phy_package_join(struct phy_device *phydev, int addr, size_t priv_size)
1626 struct mii_bus *bus = phydev->mdio.bus;
1627 struct phy_package_shared *shared;
1630 if (addr < 0 || addr >= PHY_MAX_ADDR)
1633 mutex_lock(&bus->shared_lock);
1634 shared = bus->shared[addr];
1637 shared = kzalloc(sizeof(*shared), GFP_KERNEL);
1641 shared->priv = kzalloc(priv_size, GFP_KERNEL);
1644 shared->priv_size = priv_size;
1646 shared->addr = addr;
1647 refcount_set(&shared->refcnt, 1);
1648 bus->shared[addr] = shared;
1651 if (priv_size && priv_size != shared->priv_size)
1653 refcount_inc(&shared->refcnt);
1655 mutex_unlock(&bus->shared_lock);
1657 phydev->shared = shared;
1664 mutex_unlock(&bus->shared_lock);
1667 EXPORT_SYMBOL_GPL(phy_package_join);
1670 * phy_package_leave - leave a common PHY group
1671 * @phydev: target phy_device struct
1673 * This leaves a PHY group created by phy_package_join(). If this phydev
1674 * was the last user of the shared data between the group, this data is
1675 * freed. Resets the phydev->shared pointer to NULL.
1677 void phy_package_leave(struct phy_device *phydev)
1679 struct phy_package_shared *shared = phydev->shared;
1680 struct mii_bus *bus = phydev->mdio.bus;
1685 if (refcount_dec_and_mutex_lock(&shared->refcnt, &bus->shared_lock)) {
1686 bus->shared[shared->addr] = NULL;
1687 mutex_unlock(&bus->shared_lock);
1688 kfree(shared->priv);
1692 phydev->shared = NULL;
1694 EXPORT_SYMBOL_GPL(phy_package_leave);
1696 static void devm_phy_package_leave(struct device *dev, void *res)
1698 phy_package_leave(*(struct phy_device **)res);
1702 * devm_phy_package_join - resource managed phy_package_join()
1703 * @dev: device that is registering this PHY package
1704 * @phydev: target phy_device struct
1705 * @addr: cookie and PHY address for global register access
1706 * @priv_size: if non-zero allocate this amount of bytes for private data
1708 * Managed phy_package_join(). Shared storage fetched by this function,
1709 * phy_package_leave() is automatically called on driver detach. See
1710 * phy_package_join() for more information.
1712 int devm_phy_package_join(struct device *dev, struct phy_device *phydev,
1713 int addr, size_t priv_size)
1715 struct phy_device **ptr;
1718 ptr = devres_alloc(devm_phy_package_leave, sizeof(*ptr),
1723 ret = phy_package_join(phydev, addr, priv_size);
1727 devres_add(dev, ptr);
1734 EXPORT_SYMBOL_GPL(devm_phy_package_join);
1737 * phy_detach - detach a PHY device from its network device
1738 * @phydev: target phy_device struct
1740 * This detaches the phy device from its network device and the phy
1741 * driver, and drops the reference count taken in phy_attach_direct().
1743 void phy_detach(struct phy_device *phydev)
1745 struct net_device *dev = phydev->attached_dev;
1746 struct module *ndev_owner = NULL;
1747 struct mii_bus *bus;
1749 if (phydev->sysfs_links) {
1751 sysfs_remove_link(&dev->dev.kobj, "phydev");
1752 sysfs_remove_link(&phydev->mdio.dev.kobj, "attached_dev");
1755 if (!phydev->attached_dev)
1756 sysfs_remove_file(&phydev->mdio.dev.kobj,
1757 &dev_attr_phy_standalone.attr);
1759 phy_suspend(phydev);
1761 phydev->attached_dev->phydev = NULL;
1762 phydev->attached_dev = NULL;
1764 phydev->phylink = NULL;
1766 phy_led_triggers_unregister(phydev);
1768 if (phydev->mdio.dev.driver)
1769 module_put(phydev->mdio.dev.driver->owner);
1771 /* If the device had no specific driver before (i.e. - it
1772 * was using the generic driver), we unbind the device
1773 * from the generic driver so that there's a chance a
1774 * real driver could be loaded
1776 if (phy_driver_is_genphy(phydev) ||
1777 phy_driver_is_genphy_10g(phydev))
1778 device_release_driver(&phydev->mdio.dev);
1780 /* Assert the reset signal */
1781 phy_device_reset(phydev, 1);
1784 * The phydev might go away on the put_device() below, so avoid
1785 * a use-after-free bug by reading the underlying bus first.
1787 bus = phydev->mdio.bus;
1789 put_device(&phydev->mdio.dev);
1791 ndev_owner = dev->dev.parent->driver->owner;
1792 if (ndev_owner != bus->owner)
1793 module_put(bus->owner);
1795 EXPORT_SYMBOL(phy_detach);
1797 int phy_suspend(struct phy_device *phydev)
1799 struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
1800 struct net_device *netdev = phydev->attached_dev;
1801 struct phy_driver *phydrv = phydev->drv;
1804 if (phydev->suspended)
1807 /* If the device has WOL enabled, we cannot suspend the PHY */
1808 phy_ethtool_get_wol(phydev, &wol);
1809 if (wol.wolopts || (netdev && netdev->wol_enabled))
1812 if (!phydrv || !phydrv->suspend)
1815 ret = phydrv->suspend(phydev);
1817 phydev->suspended = true;
1821 EXPORT_SYMBOL(phy_suspend);
1823 int __phy_resume(struct phy_device *phydev)
1825 struct phy_driver *phydrv = phydev->drv;
1828 lockdep_assert_held(&phydev->lock);
1830 if (!phydrv || !phydrv->resume)
1833 ret = phydrv->resume(phydev);
1835 phydev->suspended = false;
1839 EXPORT_SYMBOL(__phy_resume);
1841 int phy_resume(struct phy_device *phydev)
1845 mutex_lock(&phydev->lock);
1846 ret = __phy_resume(phydev);
1847 mutex_unlock(&phydev->lock);
1851 EXPORT_SYMBOL(phy_resume);
1853 int phy_loopback(struct phy_device *phydev, bool enable)
1860 mutex_lock(&phydev->lock);
1862 if (enable && phydev->loopback_enabled) {
1867 if (!enable && !phydev->loopback_enabled) {
1872 if (phydev->drv->set_loopback)
1873 ret = phydev->drv->set_loopback(phydev, enable);
1875 ret = genphy_loopback(phydev, enable);
1880 phydev->loopback_enabled = enable;
1883 mutex_unlock(&phydev->lock);
1886 EXPORT_SYMBOL(phy_loopback);
1889 * phy_reset_after_clk_enable - perform a PHY reset if needed
1890 * @phydev: target phy_device struct
1892 * Description: Some PHYs are known to need a reset after their refclk was
1893 * enabled. This function evaluates the flags and perform the reset if it's
1894 * needed. Returns < 0 on error, 0 if the phy wasn't reset and 1 if the phy
1897 int phy_reset_after_clk_enable(struct phy_device *phydev)
1899 if (!phydev || !phydev->drv)
1902 if (phydev->drv->flags & PHY_RST_AFTER_CLK_EN) {
1903 phy_device_reset(phydev, 1);
1904 phy_device_reset(phydev, 0);
1910 EXPORT_SYMBOL(phy_reset_after_clk_enable);
1912 /* Generic PHY support and helper functions */
1915 * genphy_config_advert - sanitize and advertise auto-negotiation parameters
1916 * @phydev: target phy_device struct
1918 * Description: Writes MII_ADVERTISE with the appropriate values,
1919 * after sanitizing the values to make sure we only advertise
1920 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
1921 * hasn't changed, and > 0 if it has changed.
1923 static int genphy_config_advert(struct phy_device *phydev)
1925 int err, bmsr, changed = 0;
1928 /* Only allow advertising what this PHY supports */
1929 linkmode_and(phydev->advertising, phydev->advertising,
1932 adv = linkmode_adv_to_mii_adv_t(phydev->advertising);
1934 /* Setup standard advertisement */
1935 err = phy_modify_changed(phydev, MII_ADVERTISE,
1936 ADVERTISE_ALL | ADVERTISE_100BASE4 |
1937 ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM,
1944 bmsr = phy_read(phydev, MII_BMSR);
1948 /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
1949 * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
1952 if (!(bmsr & BMSR_ESTATEN))
1955 adv = linkmode_adv_to_mii_ctrl1000_t(phydev->advertising);
1957 err = phy_modify_changed(phydev, MII_CTRL1000,
1958 ADVERTISE_1000FULL | ADVERTISE_1000HALF,
1969 * genphy_c37_config_advert - sanitize and advertise auto-negotiation parameters
1970 * @phydev: target phy_device struct
1972 * Description: Writes MII_ADVERTISE with the appropriate values,
1973 * after sanitizing the values to make sure we only advertise
1974 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
1975 * hasn't changed, and > 0 if it has changed. This function is intended
1976 * for Clause 37 1000Base-X mode.
1978 static int genphy_c37_config_advert(struct phy_device *phydev)
1982 /* Only allow advertising what this PHY supports */
1983 linkmode_and(phydev->advertising, phydev->advertising,
1986 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
1987 phydev->advertising))
1988 adv |= ADVERTISE_1000XFULL;
1989 if (linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
1990 phydev->advertising))
1991 adv |= ADVERTISE_1000XPAUSE;
1992 if (linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
1993 phydev->advertising))
1994 adv |= ADVERTISE_1000XPSE_ASYM;
1996 return phy_modify_changed(phydev, MII_ADVERTISE,
1997 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
1998 ADVERTISE_1000XHALF | ADVERTISE_1000XPSE_ASYM,
2003 * genphy_config_eee_advert - disable unwanted eee mode advertisement
2004 * @phydev: target phy_device struct
2006 * Description: Writes MDIO_AN_EEE_ADV after disabling unsupported energy
2007 * efficent ethernet modes. Returns 0 if the PHY's advertisement hasn't
2008 * changed, and 1 if it has changed.
2010 int genphy_config_eee_advert(struct phy_device *phydev)
2014 /* Nothing to disable */
2015 if (!phydev->eee_broken_modes)
2018 err = phy_modify_mmd_changed(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV,
2019 phydev->eee_broken_modes, 0);
2020 /* If the call failed, we assume that EEE is not supported */
2021 return err < 0 ? 0 : err;
2023 EXPORT_SYMBOL(genphy_config_eee_advert);
2026 * genphy_setup_forced - configures/forces speed/duplex from @phydev
2027 * @phydev: target phy_device struct
2029 * Description: Configures MII_BMCR to force speed/duplex
2030 * to the values in phydev. Assumes that the values are valid.
2031 * Please see phy_sanitize_settings().
2033 int genphy_setup_forced(struct phy_device *phydev)
2038 phydev->asym_pause = 0;
2040 ctl = mii_bmcr_encode_fixed(phydev->speed, phydev->duplex);
2042 return phy_modify(phydev, MII_BMCR,
2043 ~(BMCR_LOOPBACK | BMCR_ISOLATE | BMCR_PDOWN), ctl);
2045 EXPORT_SYMBOL(genphy_setup_forced);
2047 static int genphy_setup_master_slave(struct phy_device *phydev)
2051 if (!phydev->is_gigabit_capable)
2054 switch (phydev->master_slave_set) {
2055 case MASTER_SLAVE_CFG_MASTER_PREFERRED:
2056 ctl |= CTL1000_PREFER_MASTER;
2058 case MASTER_SLAVE_CFG_SLAVE_PREFERRED:
2060 case MASTER_SLAVE_CFG_MASTER_FORCE:
2061 ctl |= CTL1000_AS_MASTER;
2063 case MASTER_SLAVE_CFG_SLAVE_FORCE:
2064 ctl |= CTL1000_ENABLE_MASTER;
2066 case MASTER_SLAVE_CFG_UNKNOWN:
2067 case MASTER_SLAVE_CFG_UNSUPPORTED:
2070 phydev_warn(phydev, "Unsupported Master/Slave mode\n");
2074 return phy_modify_changed(phydev, MII_CTRL1000,
2075 (CTL1000_ENABLE_MASTER | CTL1000_AS_MASTER |
2076 CTL1000_PREFER_MASTER), ctl);
2079 int genphy_read_master_slave(struct phy_device *phydev)
2084 phydev->master_slave_get = MASTER_SLAVE_CFG_UNKNOWN;
2085 phydev->master_slave_state = MASTER_SLAVE_STATE_UNKNOWN;
2087 val = phy_read(phydev, MII_CTRL1000);
2091 if (val & CTL1000_ENABLE_MASTER) {
2092 if (val & CTL1000_AS_MASTER)
2093 cfg = MASTER_SLAVE_CFG_MASTER_FORCE;
2095 cfg = MASTER_SLAVE_CFG_SLAVE_FORCE;
2097 if (val & CTL1000_PREFER_MASTER)
2098 cfg = MASTER_SLAVE_CFG_MASTER_PREFERRED;
2100 cfg = MASTER_SLAVE_CFG_SLAVE_PREFERRED;
2103 val = phy_read(phydev, MII_STAT1000);
2107 if (val & LPA_1000MSFAIL) {
2108 state = MASTER_SLAVE_STATE_ERR;
2109 } else if (phydev->link) {
2110 /* this bits are valid only for active link */
2111 if (val & LPA_1000MSRES)
2112 state = MASTER_SLAVE_STATE_MASTER;
2114 state = MASTER_SLAVE_STATE_SLAVE;
2116 state = MASTER_SLAVE_STATE_UNKNOWN;
2119 phydev->master_slave_get = cfg;
2120 phydev->master_slave_state = state;
2124 EXPORT_SYMBOL(genphy_read_master_slave);
2127 * genphy_restart_aneg - Enable and Restart Autonegotiation
2128 * @phydev: target phy_device struct
2130 int genphy_restart_aneg(struct phy_device *phydev)
2132 /* Don't isolate the PHY if we're negotiating */
2133 return phy_modify(phydev, MII_BMCR, BMCR_ISOLATE,
2134 BMCR_ANENABLE | BMCR_ANRESTART);
2136 EXPORT_SYMBOL(genphy_restart_aneg);
2139 * genphy_check_and_restart_aneg - Enable and restart auto-negotiation
2140 * @phydev: target phy_device struct
2141 * @restart: whether aneg restart is requested
2143 * Check, and restart auto-negotiation if needed.
2145 int genphy_check_and_restart_aneg(struct phy_device *phydev, bool restart)
2150 /* Advertisement hasn't changed, but maybe aneg was never on to
2151 * begin with? Or maybe phy was isolated?
2153 ret = phy_read(phydev, MII_BMCR);
2157 if (!(ret & BMCR_ANENABLE) || (ret & BMCR_ISOLATE))
2162 return genphy_restart_aneg(phydev);
2166 EXPORT_SYMBOL(genphy_check_and_restart_aneg);
2169 * __genphy_config_aneg - restart auto-negotiation or write BMCR
2170 * @phydev: target phy_device struct
2171 * @changed: whether autoneg is requested
2173 * Description: If auto-negotiation is enabled, we configure the
2174 * advertising, and then restart auto-negotiation. If it is not
2175 * enabled, then we write the BMCR.
2177 int __genphy_config_aneg(struct phy_device *phydev, bool changed)
2181 if (genphy_config_eee_advert(phydev))
2184 err = genphy_setup_master_slave(phydev);
2190 if (AUTONEG_ENABLE != phydev->autoneg)
2191 return genphy_setup_forced(phydev);
2193 err = genphy_config_advert(phydev);
2194 if (err < 0) /* error */
2199 return genphy_check_and_restart_aneg(phydev, changed);
2201 EXPORT_SYMBOL(__genphy_config_aneg);
2204 * genphy_c37_config_aneg - restart auto-negotiation or write BMCR
2205 * @phydev: target phy_device struct
2207 * Description: If auto-negotiation is enabled, we configure the
2208 * advertising, and then restart auto-negotiation. If it is not
2209 * enabled, then we write the BMCR. This function is intended
2210 * for use with Clause 37 1000Base-X mode.
2212 int genphy_c37_config_aneg(struct phy_device *phydev)
2216 if (phydev->autoneg != AUTONEG_ENABLE)
2217 return genphy_setup_forced(phydev);
2219 err = phy_modify(phydev, MII_BMCR, BMCR_SPEED1000 | BMCR_SPEED100,
2224 changed = genphy_c37_config_advert(phydev);
2225 if (changed < 0) /* error */
2229 /* Advertisement hasn't changed, but maybe aneg was never on to
2230 * begin with? Or maybe phy was isolated?
2232 int ctl = phy_read(phydev, MII_BMCR);
2237 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
2238 changed = 1; /* do restart aneg */
2241 /* Only restart aneg if we are advertising something different
2242 * than we were before.
2245 return genphy_restart_aneg(phydev);
2249 EXPORT_SYMBOL(genphy_c37_config_aneg);
2252 * genphy_aneg_done - return auto-negotiation status
2253 * @phydev: target phy_device struct
2255 * Description: Reads the status register and returns 0 either if
2256 * auto-negotiation is incomplete, or if there was an error.
2257 * Returns BMSR_ANEGCOMPLETE if auto-negotiation is done.
2259 int genphy_aneg_done(struct phy_device *phydev)
2261 int retval = phy_read(phydev, MII_BMSR);
2263 return (retval < 0) ? retval : (retval & BMSR_ANEGCOMPLETE);
2265 EXPORT_SYMBOL(genphy_aneg_done);
2268 * genphy_update_link - update link status in @phydev
2269 * @phydev: target phy_device struct
2271 * Description: Update the value in phydev->link to reflect the
2272 * current link value. In order to do this, we need to read
2273 * the status register twice, keeping the second value.
2275 int genphy_update_link(struct phy_device *phydev)
2277 int status = 0, bmcr;
2279 bmcr = phy_read(phydev, MII_BMCR);
2283 /* Autoneg is being started, therefore disregard BMSR value and
2284 * report link as down.
2286 if (bmcr & BMCR_ANRESTART)
2289 /* The link state is latched low so that momentary link
2290 * drops can be detected. Do not double-read the status
2291 * in polling mode to detect such short link drops except
2292 * the link was already down.
2294 if (!phy_polling_mode(phydev) || !phydev->link) {
2295 status = phy_read(phydev, MII_BMSR);
2298 else if (status & BMSR_LSTATUS)
2302 /* Read link and autonegotiation status */
2303 status = phy_read(phydev, MII_BMSR);
2307 phydev->link = status & BMSR_LSTATUS ? 1 : 0;
2308 phydev->autoneg_complete = status & BMSR_ANEGCOMPLETE ? 1 : 0;
2310 /* Consider the case that autoneg was started and "aneg complete"
2311 * bit has been reset, but "link up" bit not yet.
2313 if (phydev->autoneg == AUTONEG_ENABLE && !phydev->autoneg_complete)
2318 EXPORT_SYMBOL(genphy_update_link);
2320 int genphy_read_lpa(struct phy_device *phydev)
2324 if (phydev->autoneg == AUTONEG_ENABLE) {
2325 if (!phydev->autoneg_complete) {
2326 mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising,
2328 mii_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, 0);
2332 if (phydev->is_gigabit_capable) {
2333 lpagb = phy_read(phydev, MII_STAT1000);
2337 if (lpagb & LPA_1000MSFAIL) {
2338 int adv = phy_read(phydev, MII_CTRL1000);
2343 if (adv & CTL1000_ENABLE_MASTER)
2344 phydev_err(phydev, "Master/Slave resolution failed, maybe conflicting manual settings?\n");
2346 phydev_err(phydev, "Master/Slave resolution failed\n");
2350 mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising,
2354 lpa = phy_read(phydev, MII_LPA);
2358 mii_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, lpa);
2360 linkmode_zero(phydev->lp_advertising);
2365 EXPORT_SYMBOL(genphy_read_lpa);
2368 * genphy_read_status_fixed - read the link parameters for !aneg mode
2369 * @phydev: target phy_device struct
2371 * Read the current duplex and speed state for a PHY operating with
2372 * autonegotiation disabled.
2374 int genphy_read_status_fixed(struct phy_device *phydev)
2376 int bmcr = phy_read(phydev, MII_BMCR);
2381 if (bmcr & BMCR_FULLDPLX)
2382 phydev->duplex = DUPLEX_FULL;
2384 phydev->duplex = DUPLEX_HALF;
2386 if (bmcr & BMCR_SPEED1000)
2387 phydev->speed = SPEED_1000;
2388 else if (bmcr & BMCR_SPEED100)
2389 phydev->speed = SPEED_100;
2391 phydev->speed = SPEED_10;
2395 EXPORT_SYMBOL(genphy_read_status_fixed);
2398 * genphy_read_status - check the link status and update current link state
2399 * @phydev: target phy_device struct
2401 * Description: Check the link, then figure out the current state
2402 * by comparing what we advertise with what the link partner
2403 * advertises. Start by checking the gigabit possibilities,
2404 * then move on to 10/100.
2406 int genphy_read_status(struct phy_device *phydev)
2408 int err, old_link = phydev->link;
2410 /* Update the link, but return if there was an error */
2411 err = genphy_update_link(phydev);
2415 /* why bother the PHY if nothing can have changed */
2416 if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
2419 phydev->master_slave_get = MASTER_SLAVE_CFG_UNSUPPORTED;
2420 phydev->master_slave_state = MASTER_SLAVE_STATE_UNSUPPORTED;
2421 phydev->speed = SPEED_UNKNOWN;
2422 phydev->duplex = DUPLEX_UNKNOWN;
2424 phydev->asym_pause = 0;
2426 if (phydev->is_gigabit_capable) {
2427 err = genphy_read_master_slave(phydev);
2432 err = genphy_read_lpa(phydev);
2436 if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete) {
2437 phy_resolve_aneg_linkmode(phydev);
2438 } else if (phydev->autoneg == AUTONEG_DISABLE) {
2439 err = genphy_read_status_fixed(phydev);
2446 EXPORT_SYMBOL(genphy_read_status);
2449 * genphy_c37_read_status - check the link status and update current link state
2450 * @phydev: target phy_device struct
2452 * Description: Check the link, then figure out the current state
2453 * by comparing what we advertise with what the link partner
2454 * advertises. This function is for Clause 37 1000Base-X mode.
2456 int genphy_c37_read_status(struct phy_device *phydev)
2458 int lpa, err, old_link = phydev->link;
2460 /* Update the link, but return if there was an error */
2461 err = genphy_update_link(phydev);
2465 /* why bother the PHY if nothing can have changed */
2466 if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
2469 phydev->duplex = DUPLEX_UNKNOWN;
2471 phydev->asym_pause = 0;
2473 if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete) {
2474 lpa = phy_read(phydev, MII_LPA);
2478 linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
2479 phydev->lp_advertising, lpa & LPA_LPACK);
2480 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
2481 phydev->lp_advertising, lpa & LPA_1000XFULL);
2482 linkmode_mod_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2483 phydev->lp_advertising, lpa & LPA_1000XPAUSE);
2484 linkmode_mod_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2485 phydev->lp_advertising,
2486 lpa & LPA_1000XPAUSE_ASYM);
2488 phy_resolve_aneg_linkmode(phydev);
2489 } else if (phydev->autoneg == AUTONEG_DISABLE) {
2490 int bmcr = phy_read(phydev, MII_BMCR);
2495 if (bmcr & BMCR_FULLDPLX)
2496 phydev->duplex = DUPLEX_FULL;
2498 phydev->duplex = DUPLEX_HALF;
2503 EXPORT_SYMBOL(genphy_c37_read_status);
2506 * genphy_soft_reset - software reset the PHY via BMCR_RESET bit
2507 * @phydev: target phy_device struct
2509 * Description: Perform a software PHY reset using the standard
2510 * BMCR_RESET bit and poll for the reset bit to be cleared.
2512 * Returns: 0 on success, < 0 on failure
2514 int genphy_soft_reset(struct phy_device *phydev)
2516 u16 res = BMCR_RESET;
2519 if (phydev->autoneg == AUTONEG_ENABLE)
2520 res |= BMCR_ANRESTART;
2522 ret = phy_modify(phydev, MII_BMCR, BMCR_ISOLATE, res);
2526 /* Clause 22 states that setting bit BMCR_RESET sets control registers
2527 * to their default value. Therefore the POWER DOWN bit is supposed to
2528 * be cleared after soft reset.
2530 phydev->suspended = 0;
2532 ret = phy_poll_reset(phydev);
2536 /* BMCR may be reset to defaults */
2537 if (phydev->autoneg == AUTONEG_DISABLE)
2538 ret = genphy_setup_forced(phydev);
2542 EXPORT_SYMBOL(genphy_soft_reset);
2544 irqreturn_t genphy_handle_interrupt_no_ack(struct phy_device *phydev)
2546 /* It seems there are cases where the interrupts are handled by another
2547 * entity (ie an IRQ controller embedded inside the PHY) and do not
2548 * need any other interraction from phylib. In this case, just trigger
2549 * the state machine directly.
2551 phy_trigger_machine(phydev);
2555 EXPORT_SYMBOL(genphy_handle_interrupt_no_ack);
2558 * genphy_read_abilities - read PHY abilities from Clause 22 registers
2559 * @phydev: target phy_device struct
2561 * Description: Reads the PHY's abilities and populates
2562 * phydev->supported accordingly.
2564 * Returns: 0 on success, < 0 on failure
2566 int genphy_read_abilities(struct phy_device *phydev)
2570 linkmode_set_bit_array(phy_basic_ports_array,
2571 ARRAY_SIZE(phy_basic_ports_array),
2574 val = phy_read(phydev, MII_BMSR);
2578 linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, phydev->supported,
2579 val & BMSR_ANEGCAPABLE);
2581 linkmode_mod_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT, phydev->supported,
2582 val & BMSR_100FULL);
2583 linkmode_mod_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT, phydev->supported,
2584 val & BMSR_100HALF);
2585 linkmode_mod_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT, phydev->supported,
2587 linkmode_mod_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT, phydev->supported,
2590 if (val & BMSR_ESTATEN) {
2591 val = phy_read(phydev, MII_ESTATUS);
2595 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
2596 phydev->supported, val & ESTATUS_1000_TFULL);
2597 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
2598 phydev->supported, val & ESTATUS_1000_THALF);
2599 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
2600 phydev->supported, val & ESTATUS_1000_XFULL);
2605 EXPORT_SYMBOL(genphy_read_abilities);
2607 /* This is used for the phy device which doesn't support the MMD extended
2608 * register access, but it does have side effect when we are trying to access
2609 * the MMD register via indirect method.
2611 int genphy_read_mmd_unsupported(struct phy_device *phdev, int devad, u16 regnum)
2615 EXPORT_SYMBOL(genphy_read_mmd_unsupported);
2617 int genphy_write_mmd_unsupported(struct phy_device *phdev, int devnum,
2618 u16 regnum, u16 val)
2622 EXPORT_SYMBOL(genphy_write_mmd_unsupported);
2624 int genphy_suspend(struct phy_device *phydev)
2626 return phy_set_bits(phydev, MII_BMCR, BMCR_PDOWN);
2628 EXPORT_SYMBOL(genphy_suspend);
2630 int genphy_resume(struct phy_device *phydev)
2632 return phy_clear_bits(phydev, MII_BMCR, BMCR_PDOWN);
2634 EXPORT_SYMBOL(genphy_resume);
2636 int genphy_loopback(struct phy_device *phydev, bool enable)
2639 u16 val, ctl = BMCR_LOOPBACK;
2642 ctl |= mii_bmcr_encode_fixed(phydev->speed, phydev->duplex);
2644 phy_modify(phydev, MII_BMCR, ~0, ctl);
2646 ret = phy_read_poll_timeout(phydev, MII_BMSR, val,
2648 5000, 500000, true);
2652 phy_modify(phydev, MII_BMCR, BMCR_LOOPBACK, 0);
2654 phy_config_aneg(phydev);
2659 EXPORT_SYMBOL(genphy_loopback);
2662 * phy_remove_link_mode - Remove a supported link mode
2663 * @phydev: phy_device structure to remove link mode from
2664 * @link_mode: Link mode to be removed
2666 * Description: Some MACs don't support all link modes which the PHY
2667 * does. e.g. a 1G MAC often does not support 1000Half. Add a helper
2668 * to remove a link mode.
2670 void phy_remove_link_mode(struct phy_device *phydev, u32 link_mode)
2672 linkmode_clear_bit(link_mode, phydev->supported);
2673 phy_advertise_supported(phydev);
2675 EXPORT_SYMBOL(phy_remove_link_mode);
2677 static void phy_copy_pause_bits(unsigned long *dst, unsigned long *src)
2679 linkmode_mod_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, dst,
2680 linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, src));
2681 linkmode_mod_bit(ETHTOOL_LINK_MODE_Pause_BIT, dst,
2682 linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT, src));
2686 * phy_advertise_supported - Advertise all supported modes
2687 * @phydev: target phy_device struct
2689 * Description: Called to advertise all supported modes, doesn't touch
2690 * pause mode advertising.
2692 void phy_advertise_supported(struct phy_device *phydev)
2694 __ETHTOOL_DECLARE_LINK_MODE_MASK(new);
2696 linkmode_copy(new, phydev->supported);
2697 phy_copy_pause_bits(new, phydev->advertising);
2698 linkmode_copy(phydev->advertising, new);
2700 EXPORT_SYMBOL(phy_advertise_supported);
2703 * phy_support_sym_pause - Enable support of symmetrical pause
2704 * @phydev: target phy_device struct
2706 * Description: Called by the MAC to indicate is supports symmetrical
2707 * Pause, but not asym pause.
2709 void phy_support_sym_pause(struct phy_device *phydev)
2711 linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported);
2712 phy_copy_pause_bits(phydev->advertising, phydev->supported);
2714 EXPORT_SYMBOL(phy_support_sym_pause);
2717 * phy_support_asym_pause - Enable support of asym pause
2718 * @phydev: target phy_device struct
2720 * Description: Called by the MAC to indicate is supports Asym Pause.
2722 void phy_support_asym_pause(struct phy_device *phydev)
2724 phy_copy_pause_bits(phydev->advertising, phydev->supported);
2726 EXPORT_SYMBOL(phy_support_asym_pause);
2729 * phy_set_sym_pause - Configure symmetric Pause
2730 * @phydev: target phy_device struct
2731 * @rx: Receiver Pause is supported
2732 * @tx: Transmit Pause is supported
2733 * @autoneg: Auto neg should be used
2735 * Description: Configure advertised Pause support depending on if
2736 * receiver pause and pause auto neg is supported. Generally called
2737 * from the set_pauseparam .ndo.
2739 void phy_set_sym_pause(struct phy_device *phydev, bool rx, bool tx,
2742 linkmode_clear_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported);
2744 if (rx && tx && autoneg)
2745 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2748 linkmode_copy(phydev->advertising, phydev->supported);
2750 EXPORT_SYMBOL(phy_set_sym_pause);
2753 * phy_set_asym_pause - Configure Pause and Asym Pause
2754 * @phydev: target phy_device struct
2755 * @rx: Receiver Pause is supported
2756 * @tx: Transmit Pause is supported
2758 * Description: Configure advertised Pause support depending on if
2759 * transmit and receiver pause is supported. If there has been a
2760 * change in adverting, trigger a new autoneg. Generally called from
2761 * the set_pauseparam .ndo.
2763 void phy_set_asym_pause(struct phy_device *phydev, bool rx, bool tx)
2765 __ETHTOOL_DECLARE_LINK_MODE_MASK(oldadv);
2767 linkmode_copy(oldadv, phydev->advertising);
2768 linkmode_set_pause(phydev->advertising, tx, rx);
2770 if (!linkmode_equal(oldadv, phydev->advertising) &&
2772 phy_start_aneg(phydev);
2774 EXPORT_SYMBOL(phy_set_asym_pause);
2777 * phy_validate_pause - Test if the PHY/MAC support the pause configuration
2778 * @phydev: phy_device struct
2779 * @pp: requested pause configuration
2781 * Description: Test if the PHY/MAC combination supports the Pause
2782 * configuration the user is requesting. Returns True if it is
2783 * supported, false otherwise.
2785 bool phy_validate_pause(struct phy_device *phydev,
2786 struct ethtool_pauseparam *pp)
2788 if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2789 phydev->supported) && pp->rx_pause)
2792 if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2793 phydev->supported) &&
2794 pp->rx_pause != pp->tx_pause)
2799 EXPORT_SYMBOL(phy_validate_pause);
2802 * phy_get_pause - resolve negotiated pause modes
2803 * @phydev: phy_device struct
2804 * @tx_pause: pointer to bool to indicate whether transmit pause should be
2806 * @rx_pause: pointer to bool to indicate whether receive pause should be
2809 * Resolve and return the flow control modes according to the negotiation
2810 * result. This includes checking that we are operating in full duplex mode.
2811 * See linkmode_resolve_pause() for further details.
2813 void phy_get_pause(struct phy_device *phydev, bool *tx_pause, bool *rx_pause)
2815 if (phydev->duplex != DUPLEX_FULL) {
2821 return linkmode_resolve_pause(phydev->advertising,
2822 phydev->lp_advertising,
2823 tx_pause, rx_pause);
2825 EXPORT_SYMBOL(phy_get_pause);
2827 #if IS_ENABLED(CONFIG_OF_MDIO)
2828 static int phy_get_int_delay_property(struct device *dev, const char *name)
2833 ret = device_property_read_u32(dev, name, &int_delay);
2840 static int phy_get_int_delay_property(struct device *dev, const char *name)
2847 * phy_get_internal_delay - returns the index of the internal delay
2848 * @phydev: phy_device struct
2849 * @dev: pointer to the devices device struct
2850 * @delay_values: array of delays the PHY supports
2851 * @size: the size of the delay array
2852 * @is_rx: boolean to indicate to get the rx internal delay
2854 * Returns the index within the array of internal delay passed in.
2855 * If the device property is not present then the interface type is checked
2856 * if the interface defines use of internal delay then a 1 is returned otherwise
2858 * The array must be in ascending order. If PHY does not have an ascending order
2859 * array then size = 0 and the value of the delay property is returned.
2860 * Return -EINVAL if the delay is invalid or cannot be found.
2862 s32 phy_get_internal_delay(struct phy_device *phydev, struct device *dev,
2863 const int *delay_values, int size, bool is_rx)
2869 delay = phy_get_int_delay_property(dev, "rx-internal-delay-ps");
2870 if (delay < 0 && size == 0) {
2871 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
2872 phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID)
2879 delay = phy_get_int_delay_property(dev, "tx-internal-delay-ps");
2880 if (delay < 0 && size == 0) {
2881 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
2882 phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID)
2892 if (delay && size == 0)
2895 if (delay < delay_values[0] || delay > delay_values[size - 1]) {
2896 phydev_err(phydev, "Delay %d is out of range\n", delay);
2900 if (delay == delay_values[0])
2903 for (i = 1; i < size; i++) {
2904 if (delay == delay_values[i])
2907 /* Find an approximate index by looking up the table */
2908 if (delay > delay_values[i - 1] &&
2909 delay < delay_values[i]) {
2910 if (delay - delay_values[i - 1] <
2911 delay_values[i] - delay)
2918 phydev_err(phydev, "error finding internal delay index for %d\n",
2923 EXPORT_SYMBOL(phy_get_internal_delay);
2925 static bool phy_drv_supports_irq(struct phy_driver *phydrv)
2927 return phydrv->config_intr && phydrv->handle_interrupt;
2931 * fwnode_mdio_find_device - Given a fwnode, find the mdio_device
2932 * @fwnode: pointer to the mdio_device's fwnode
2934 * If successful, returns a pointer to the mdio_device with the embedded
2935 * struct device refcount incremented by one, or NULL on failure.
2936 * The caller should call put_device() on the mdio_device after its use.
2938 struct mdio_device *fwnode_mdio_find_device(struct fwnode_handle *fwnode)
2945 d = bus_find_device_by_fwnode(&mdio_bus_type, fwnode);
2949 return to_mdio_device(d);
2951 EXPORT_SYMBOL(fwnode_mdio_find_device);
2954 * fwnode_phy_find_device - For provided phy_fwnode, find phy_device.
2956 * @phy_fwnode: Pointer to the phy's fwnode.
2958 * If successful, returns a pointer to the phy_device with the embedded
2959 * struct device refcount incremented by one, or NULL on failure.
2961 struct phy_device *fwnode_phy_find_device(struct fwnode_handle *phy_fwnode)
2963 struct mdio_device *mdiodev;
2965 mdiodev = fwnode_mdio_find_device(phy_fwnode);
2969 if (mdiodev->flags & MDIO_DEVICE_FLAG_PHY)
2970 return to_phy_device(&mdiodev->dev);
2972 put_device(&mdiodev->dev);
2976 EXPORT_SYMBOL(fwnode_phy_find_device);
2979 * device_phy_find_device - For the given device, get the phy_device
2980 * @dev: Pointer to the given device
2982 * Refer return conditions of fwnode_phy_find_device().
2984 struct phy_device *device_phy_find_device(struct device *dev)
2986 return fwnode_phy_find_device(dev_fwnode(dev));
2988 EXPORT_SYMBOL_GPL(device_phy_find_device);
2991 * fwnode_get_phy_node - Get the phy_node using the named reference.
2992 * @fwnode: Pointer to fwnode from which phy_node has to be obtained.
2994 * Refer return conditions of fwnode_find_reference().
2995 * For ACPI, only "phy-handle" is supported. Legacy DT properties "phy"
2996 * and "phy-device" are not supported in ACPI. DT supports all the three
2997 * named references to the phy node.
2999 struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode)
3001 struct fwnode_handle *phy_node;
3003 /* Only phy-handle is used for ACPI */
3004 phy_node = fwnode_find_reference(fwnode, "phy-handle", 0);
3005 if (is_acpi_node(fwnode) || !IS_ERR(phy_node))
3007 phy_node = fwnode_find_reference(fwnode, "phy", 0);
3008 if (IS_ERR(phy_node))
3009 phy_node = fwnode_find_reference(fwnode, "phy-device", 0);
3012 EXPORT_SYMBOL_GPL(fwnode_get_phy_node);
3015 * phy_probe - probe and init a PHY device
3016 * @dev: device to probe and init
3018 * Description: Take care of setting up the phy_device structure,
3019 * set the state to READY (the driver's init function should
3020 * set it to STARTING if needed).
3022 static int phy_probe(struct device *dev)
3024 struct phy_device *phydev = to_phy_device(dev);
3025 struct device_driver *drv = phydev->mdio.dev.driver;
3026 struct phy_driver *phydrv = to_phy_driver(drv);
3029 phydev->drv = phydrv;
3031 /* Disable the interrupt if the PHY doesn't support it
3032 * but the interrupt is still a valid one
3034 if (!phy_drv_supports_irq(phydrv) && phy_interrupt_is_valid(phydev))
3035 phydev->irq = PHY_POLL;
3037 if (phydrv->flags & PHY_IS_INTERNAL)
3038 phydev->is_internal = true;
3040 mutex_lock(&phydev->lock);
3042 /* Deassert the reset signal */
3043 phy_device_reset(phydev, 0);
3045 if (phydev->drv->probe) {
3046 err = phydev->drv->probe(phydev);
3051 /* Start out supporting everything. Eventually,
3052 * a controller will attach, and may modify one
3053 * or both of these values
3055 if (phydrv->features)
3056 linkmode_copy(phydev->supported, phydrv->features);
3057 else if (phydrv->get_features)
3058 err = phydrv->get_features(phydev);
3059 else if (phydev->is_c45)
3060 err = genphy_c45_pma_read_abilities(phydev);
3062 err = genphy_read_abilities(phydev);
3067 if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
3069 phydev->autoneg = 0;
3071 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
3073 phydev->is_gigabit_capable = 1;
3074 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
3076 phydev->is_gigabit_capable = 1;
3078 of_set_phy_supported(phydev);
3079 phy_advertise_supported(phydev);
3081 /* Get the EEE modes we want to prohibit. We will ask
3082 * the PHY stop advertising these mode later on
3084 of_set_phy_eee_broken(phydev);
3086 /* The Pause Frame bits indicate that the PHY can support passing
3087 * pause frames. During autonegotiation, the PHYs will determine if
3088 * they should allow pause frames to pass. The MAC driver should then
3089 * use that result to determine whether to enable flow control via
3092 * Normally, PHY drivers should not set the Pause bits, and instead
3093 * allow phylib to do that. However, there may be some situations
3094 * (e.g. hardware erratum) where the driver wants to set only one
3097 if (!test_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported) &&
3098 !test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported)) {
3099 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
3101 linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
3105 /* Set the state to READY by default */
3106 phydev->state = PHY_READY;
3109 /* Assert the reset signal */
3111 phy_device_reset(phydev, 1);
3113 mutex_unlock(&phydev->lock);
3118 static int phy_remove(struct device *dev)
3120 struct phy_device *phydev = to_phy_device(dev);
3122 cancel_delayed_work_sync(&phydev->state_queue);
3124 mutex_lock(&phydev->lock);
3125 phydev->state = PHY_DOWN;
3126 mutex_unlock(&phydev->lock);
3128 sfp_bus_del_upstream(phydev->sfp_bus);
3129 phydev->sfp_bus = NULL;
3131 if (phydev->drv && phydev->drv->remove)
3132 phydev->drv->remove(phydev);
3134 /* Assert the reset signal */
3135 phy_device_reset(phydev, 1);
3142 static void phy_shutdown(struct device *dev)
3144 struct phy_device *phydev = to_phy_device(dev);
3146 if (phydev->state == PHY_READY || !phydev->attached_dev)
3149 phy_disable_interrupts(phydev);
3153 * phy_driver_register - register a phy_driver with the PHY layer
3154 * @new_driver: new phy_driver to register
3155 * @owner: module owning this PHY
3157 int phy_driver_register(struct phy_driver *new_driver, struct module *owner)
3161 /* Either the features are hard coded, or dynamically
3162 * determined. It cannot be both.
3164 if (WARN_ON(new_driver->features && new_driver->get_features)) {
3165 pr_err("%s: features and get_features must not both be set\n",
3170 /* PHYLIB device drivers must not match using a DT compatible table
3171 * as this bypasses our checks that the mdiodev that is being matched
3172 * is backed by a struct phy_device. If such a case happens, we will
3173 * make out-of-bounds accesses and lockup in phydev->lock.
3175 if (WARN(new_driver->mdiodrv.driver.of_match_table,
3176 "%s: driver must not provide a DT match table\n",
3180 new_driver->mdiodrv.flags |= MDIO_DEVICE_IS_PHY;
3181 new_driver->mdiodrv.driver.name = new_driver->name;
3182 new_driver->mdiodrv.driver.bus = &mdio_bus_type;
3183 new_driver->mdiodrv.driver.probe = phy_probe;
3184 new_driver->mdiodrv.driver.remove = phy_remove;
3185 new_driver->mdiodrv.driver.shutdown = phy_shutdown;
3186 new_driver->mdiodrv.driver.owner = owner;
3187 new_driver->mdiodrv.driver.probe_type = PROBE_FORCE_SYNCHRONOUS;
3189 retval = driver_register(&new_driver->mdiodrv.driver);
3191 pr_err("%s: Error %d in registering driver\n",
3192 new_driver->name, retval);
3197 pr_debug("%s: Registered new driver\n", new_driver->name);
3201 EXPORT_SYMBOL(phy_driver_register);
3203 int phy_drivers_register(struct phy_driver *new_driver, int n,
3204 struct module *owner)
3208 for (i = 0; i < n; i++) {
3209 ret = phy_driver_register(new_driver + i, owner);
3212 phy_driver_unregister(new_driver + i);
3218 EXPORT_SYMBOL(phy_drivers_register);
3220 void phy_driver_unregister(struct phy_driver *drv)
3222 driver_unregister(&drv->mdiodrv.driver);
3224 EXPORT_SYMBOL(phy_driver_unregister);
3226 void phy_drivers_unregister(struct phy_driver *drv, int n)
3230 for (i = 0; i < n; i++)
3231 phy_driver_unregister(drv + i);
3233 EXPORT_SYMBOL(phy_drivers_unregister);
3235 static struct phy_driver genphy_driver = {
3236 .phy_id = 0xffffffff,
3237 .phy_id_mask = 0xffffffff,
3238 .name = "Generic PHY",
3239 .get_features = genphy_read_abilities,
3240 .suspend = genphy_suspend,
3241 .resume = genphy_resume,
3242 .set_loopback = genphy_loopback,
3245 static const struct ethtool_phy_ops phy_ethtool_phy_ops = {
3246 .get_sset_count = phy_ethtool_get_sset_count,
3247 .get_strings = phy_ethtool_get_strings,
3248 .get_stats = phy_ethtool_get_stats,
3249 .start_cable_test = phy_start_cable_test,
3250 .start_cable_test_tdr = phy_start_cable_test_tdr,
3253 static int __init phy_init(void)
3257 rc = mdio_bus_init();
3261 ethtool_set_ethtool_phy_ops(&phy_ethtool_phy_ops);
3264 rc = phy_driver_register(&genphy_c45_driver, THIS_MODULE);
3268 rc = phy_driver_register(&genphy_driver, THIS_MODULE);
3270 phy_driver_unregister(&genphy_c45_driver);
3278 static void __exit phy_exit(void)
3280 phy_driver_unregister(&genphy_c45_driver);
3281 phy_driver_unregister(&genphy_driver);
3283 ethtool_set_ethtool_phy_ops(NULL);
3286 subsys_initcall(phy_init);
3287 module_exit(phy_exit);