1 /* Framework for finding and configuring PHYs.
2 * Also contains generic PHY driver
6 * Copyright (c) 2004 Freescale Semiconductor, Inc.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
15 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17 #include <linux/kernel.h>
18 #include <linux/string.h>
19 #include <linux/errno.h>
20 #include <linux/unistd.h>
21 #include <linux/slab.h>
22 #include <linux/interrupt.h>
23 #include <linux/init.h>
24 #include <linux/delay.h>
25 #include <linux/netdevice.h>
26 #include <linux/etherdevice.h>
27 #include <linux/skbuff.h>
29 #include <linux/module.h>
30 #include <linux/mii.h>
31 #include <linux/ethtool.h>
32 #include <linux/bitmap.h>
33 #include <linux/phy.h>
34 #include <linux/phy_led_triggers.h>
35 #include <linux/mdio.h>
37 #include <linux/uaccess.h>
42 MODULE_DESCRIPTION("PHY library");
43 MODULE_AUTHOR("Andy Fleming");
44 MODULE_LICENSE("GPL");
46 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_features
) __ro_after_init
;
47 EXPORT_SYMBOL_GPL(phy_basic_features
);
49 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_t1_features
) __ro_after_init
;
50 EXPORT_SYMBOL_GPL(phy_basic_t1_features
);
52 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_features
) __ro_after_init
;
53 EXPORT_SYMBOL_GPL(phy_gbit_features
);
55 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_fibre_features
) __ro_after_init
;
56 EXPORT_SYMBOL_GPL(phy_gbit_fibre_features
);
58 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_all_ports_features
) __ro_after_init
;
59 EXPORT_SYMBOL_GPL(phy_gbit_all_ports_features
);
61 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_features
) __ro_after_init
;
62 EXPORT_SYMBOL_GPL(phy_10gbit_features
);
64 static const int phy_basic_ports_array
[] = {
65 ETHTOOL_LINK_MODE_Autoneg_BIT
,
66 ETHTOOL_LINK_MODE_TP_BIT
,
67 ETHTOOL_LINK_MODE_MII_BIT
,
70 static const int phy_fibre_port_array
[] = {
71 ETHTOOL_LINK_MODE_FIBRE_BIT
,
74 static const int phy_all_ports_features_array
[] = {
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
,
84 static const int phy_10_100_features_array
[] = {
85 ETHTOOL_LINK_MODE_10baseT_Half_BIT
,
86 ETHTOOL_LINK_MODE_10baseT_Full_BIT
,
87 ETHTOOL_LINK_MODE_100baseT_Half_BIT
,
88 ETHTOOL_LINK_MODE_100baseT_Full_BIT
,
91 static const int phy_basic_t1_features_array
[] = {
92 ETHTOOL_LINK_MODE_TP_BIT
,
93 ETHTOOL_LINK_MODE_100baseT_Full_BIT
,
96 static const int phy_gbit_features_array
[] = {
97 ETHTOOL_LINK_MODE_1000baseT_Half_BIT
,
98 ETHTOOL_LINK_MODE_1000baseT_Full_BIT
,
101 static const int phy_10gbit_features_array
[] = {
102 ETHTOOL_LINK_MODE_10000baseT_Full_BIT
,
105 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_full_features
) __ro_after_init
;
106 EXPORT_SYMBOL_GPL(phy_10gbit_full_features
);
108 static const int phy_10gbit_full_features_array
[] = {
109 ETHTOOL_LINK_MODE_10baseT_Full_BIT
,
110 ETHTOOL_LINK_MODE_100baseT_Full_BIT
,
111 ETHTOOL_LINK_MODE_1000baseT_Full_BIT
,
112 ETHTOOL_LINK_MODE_10000baseT_Full_BIT
,
115 static void features_init(void)
117 /* 10/100 half/full*/
118 linkmode_set_bit_array(phy_basic_ports_array
,
119 ARRAY_SIZE(phy_basic_ports_array
),
121 linkmode_set_bit_array(phy_10_100_features_array
,
122 ARRAY_SIZE(phy_10_100_features_array
),
126 linkmode_set_bit_array(phy_basic_t1_features_array
,
127 ARRAY_SIZE(phy_basic_t1_features_array
),
128 phy_basic_t1_features
);
130 /* 10/100 half/full + 1000 half/full */
131 linkmode_set_bit_array(phy_basic_ports_array
,
132 ARRAY_SIZE(phy_basic_ports_array
),
134 linkmode_set_bit_array(phy_10_100_features_array
,
135 ARRAY_SIZE(phy_10_100_features_array
),
137 linkmode_set_bit_array(phy_gbit_features_array
,
138 ARRAY_SIZE(phy_gbit_features_array
),
141 /* 10/100 half/full + 1000 half/full + fibre*/
142 linkmode_set_bit_array(phy_basic_ports_array
,
143 ARRAY_SIZE(phy_basic_ports_array
),
144 phy_gbit_fibre_features
);
145 linkmode_set_bit_array(phy_10_100_features_array
,
146 ARRAY_SIZE(phy_10_100_features_array
),
147 phy_gbit_fibre_features
);
148 linkmode_set_bit_array(phy_gbit_features_array
,
149 ARRAY_SIZE(phy_gbit_features_array
),
150 phy_gbit_fibre_features
);
151 linkmode_set_bit_array(phy_fibre_port_array
,
152 ARRAY_SIZE(phy_fibre_port_array
),
153 phy_gbit_fibre_features
);
155 /* 10/100 half/full + 1000 half/full + TP/MII/FIBRE/AUI/BNC/Backplane*/
156 linkmode_set_bit_array(phy_all_ports_features_array
,
157 ARRAY_SIZE(phy_all_ports_features_array
),
158 phy_gbit_all_ports_features
);
159 linkmode_set_bit_array(phy_10_100_features_array
,
160 ARRAY_SIZE(phy_10_100_features_array
),
161 phy_gbit_all_ports_features
);
162 linkmode_set_bit_array(phy_gbit_features_array
,
163 ARRAY_SIZE(phy_gbit_features_array
),
164 phy_gbit_all_ports_features
);
166 /* 10/100 half/full + 1000 half/full + 10G full*/
167 linkmode_set_bit_array(phy_all_ports_features_array
,
168 ARRAY_SIZE(phy_all_ports_features_array
),
169 phy_10gbit_features
);
170 linkmode_set_bit_array(phy_10_100_features_array
,
171 ARRAY_SIZE(phy_10_100_features_array
),
172 phy_10gbit_features
);
173 linkmode_set_bit_array(phy_gbit_features_array
,
174 ARRAY_SIZE(phy_gbit_features_array
),
175 phy_10gbit_features
);
176 linkmode_set_bit_array(phy_10gbit_features_array
,
177 ARRAY_SIZE(phy_10gbit_features_array
),
178 phy_10gbit_features
);
180 /* 10/100/1000/10G full */
181 linkmode_set_bit_array(phy_all_ports_features_array
,
182 ARRAY_SIZE(phy_all_ports_features_array
),
183 phy_10gbit_full_features
);
184 linkmode_set_bit_array(phy_10gbit_full_features_array
,
185 ARRAY_SIZE(phy_10gbit_full_features_array
),
186 phy_10gbit_full_features
);
189 void phy_device_free(struct phy_device
*phydev
)
191 put_device(&phydev
->mdio
.dev
);
193 EXPORT_SYMBOL(phy_device_free
);
195 static void phy_mdio_device_free(struct mdio_device
*mdiodev
)
197 struct phy_device
*phydev
;
199 phydev
= container_of(mdiodev
, struct phy_device
, mdio
);
200 phy_device_free(phydev
);
203 static void phy_device_release(struct device
*dev
)
205 kfree(to_phy_device(dev
));
208 static void phy_mdio_device_remove(struct mdio_device
*mdiodev
)
210 struct phy_device
*phydev
;
212 phydev
= container_of(mdiodev
, struct phy_device
, mdio
);
213 phy_device_remove(phydev
);
216 static struct phy_driver genphy_driver
;
217 extern struct phy_driver genphy_10g_driver
;
219 static LIST_HEAD(phy_fixup_list
);
220 static DEFINE_MUTEX(phy_fixup_lock
);
223 static bool mdio_bus_phy_may_suspend(struct phy_device
*phydev
)
225 struct device_driver
*drv
= phydev
->mdio
.dev
.driver
;
226 struct phy_driver
*phydrv
= to_phy_driver(drv
);
227 struct net_device
*netdev
= phydev
->attached_dev
;
229 if (!drv
|| !phydrv
->suspend
)
232 /* PHY not attached? May suspend if the PHY has not already been
233 * suspended as part of a prior call to phy_disconnect() ->
234 * phy_detach() -> phy_suspend() because the parent netdev might be the
235 * MDIO bus driver and clock gated at this point.
238 return !phydev
->suspended
;
240 if (netdev
->wol_enabled
)
243 /* As long as not all affected network drivers support the
244 * wol_enabled flag, let's check for hints that WoL is enabled.
245 * Don't suspend PHY if the attached netdev parent may wake up.
246 * The parent may point to a PCI device, as in tg3 driver.
248 if (netdev
->dev
.parent
&& device_may_wakeup(netdev
->dev
.parent
))
251 /* Also don't suspend PHY if the netdev itself may wakeup. This
252 * is the case for devices w/o underlaying pwr. mgmt. aware bus,
255 if (device_may_wakeup(&netdev
->dev
))
261 static int mdio_bus_phy_suspend(struct device
*dev
)
263 struct phy_device
*phydev
= to_phy_device(dev
);
265 /* We must stop the state machine manually, otherwise it stops out of
266 * control, possibly with the phydev->lock held. Upon resume, netdev
267 * may call phy routines that try to grab the same lock, and that may
268 * lead to a deadlock.
270 if (phydev
->attached_dev
&& phydev
->adjust_link
)
271 phy_stop_machine(phydev
);
273 if (!mdio_bus_phy_may_suspend(phydev
))
276 return phy_suspend(phydev
);
279 static int mdio_bus_phy_resume(struct device
*dev
)
281 struct phy_device
*phydev
= to_phy_device(dev
);
284 if (!mdio_bus_phy_may_suspend(phydev
))
287 ret
= phy_resume(phydev
);
292 if (phydev
->attached_dev
&& phydev
->adjust_link
)
293 phy_start_machine(phydev
);
298 static int mdio_bus_phy_restore(struct device
*dev
)
300 struct phy_device
*phydev
= to_phy_device(dev
);
301 struct net_device
*netdev
= phydev
->attached_dev
;
307 ret
= phy_init_hw(phydev
);
311 /* The PHY needs to renegotiate. */
313 phydev
->state
= PHY_UP
;
315 phy_start_machine(phydev
);
320 static const struct dev_pm_ops mdio_bus_phy_pm_ops
= {
321 .suspend
= mdio_bus_phy_suspend
,
322 .resume
= mdio_bus_phy_resume
,
323 .freeze
= mdio_bus_phy_suspend
,
324 .thaw
= mdio_bus_phy_resume
,
325 .restore
= mdio_bus_phy_restore
,
328 #define MDIO_BUS_PHY_PM_OPS (&mdio_bus_phy_pm_ops)
332 #define MDIO_BUS_PHY_PM_OPS NULL
334 #endif /* CONFIG_PM */
337 * phy_register_fixup - creates a new phy_fixup and adds it to the list
338 * @bus_id: A string which matches phydev->mdio.dev.bus_id (or PHY_ANY_ID)
339 * @phy_uid: Used to match against phydev->phy_id (the UID of the PHY)
340 * It can also be PHY_ANY_UID
341 * @phy_uid_mask: Applied to phydev->phy_id and fixup->phy_uid before
343 * @run: The actual code to be run when a matching PHY is found
345 int phy_register_fixup(const char *bus_id
, u32 phy_uid
, u32 phy_uid_mask
,
346 int (*run
)(struct phy_device
*))
348 struct phy_fixup
*fixup
= kzalloc(sizeof(*fixup
), GFP_KERNEL
);
353 strlcpy(fixup
->bus_id
, bus_id
, sizeof(fixup
->bus_id
));
354 fixup
->phy_uid
= phy_uid
;
355 fixup
->phy_uid_mask
= phy_uid_mask
;
358 mutex_lock(&phy_fixup_lock
);
359 list_add_tail(&fixup
->list
, &phy_fixup_list
);
360 mutex_unlock(&phy_fixup_lock
);
364 EXPORT_SYMBOL(phy_register_fixup
);
366 /* Registers a fixup to be run on any PHY with the UID in phy_uid */
367 int phy_register_fixup_for_uid(u32 phy_uid
, u32 phy_uid_mask
,
368 int (*run
)(struct phy_device
*))
370 return phy_register_fixup(PHY_ANY_ID
, phy_uid
, phy_uid_mask
, run
);
372 EXPORT_SYMBOL(phy_register_fixup_for_uid
);
374 /* Registers a fixup to be run on the PHY with id string bus_id */
375 int phy_register_fixup_for_id(const char *bus_id
,
376 int (*run
)(struct phy_device
*))
378 return phy_register_fixup(bus_id
, PHY_ANY_UID
, 0xffffffff, run
);
380 EXPORT_SYMBOL(phy_register_fixup_for_id
);
383 * phy_unregister_fixup - remove a phy_fixup from the list
384 * @bus_id: A string matches fixup->bus_id (or PHY_ANY_ID) in phy_fixup_list
385 * @phy_uid: A phy id matches fixup->phy_id (or PHY_ANY_UID) in phy_fixup_list
386 * @phy_uid_mask: Applied to phy_uid and fixup->phy_uid before comparison
388 int phy_unregister_fixup(const char *bus_id
, u32 phy_uid
, u32 phy_uid_mask
)
390 struct list_head
*pos
, *n
;
391 struct phy_fixup
*fixup
;
396 mutex_lock(&phy_fixup_lock
);
397 list_for_each_safe(pos
, n
, &phy_fixup_list
) {
398 fixup
= list_entry(pos
, struct phy_fixup
, list
);
400 if ((!strcmp(fixup
->bus_id
, bus_id
)) &&
401 ((fixup
->phy_uid
& phy_uid_mask
) ==
402 (phy_uid
& phy_uid_mask
))) {
403 list_del(&fixup
->list
);
409 mutex_unlock(&phy_fixup_lock
);
413 EXPORT_SYMBOL(phy_unregister_fixup
);
415 /* Unregisters a fixup of any PHY with the UID in phy_uid */
416 int phy_unregister_fixup_for_uid(u32 phy_uid
, u32 phy_uid_mask
)
418 return phy_unregister_fixup(PHY_ANY_ID
, phy_uid
, phy_uid_mask
);
420 EXPORT_SYMBOL(phy_unregister_fixup_for_uid
);
422 /* Unregisters a fixup of the PHY with id string bus_id */
423 int phy_unregister_fixup_for_id(const char *bus_id
)
425 return phy_unregister_fixup(bus_id
, PHY_ANY_UID
, 0xffffffff);
427 EXPORT_SYMBOL(phy_unregister_fixup_for_id
);
429 /* Returns 1 if fixup matches phydev in bus_id and phy_uid.
430 * Fixups can be set to match any in one or more fields.
432 static int phy_needs_fixup(struct phy_device
*phydev
, struct phy_fixup
*fixup
)
434 if (strcmp(fixup
->bus_id
, phydev_name(phydev
)) != 0)
435 if (strcmp(fixup
->bus_id
, PHY_ANY_ID
) != 0)
438 if ((fixup
->phy_uid
& fixup
->phy_uid_mask
) !=
439 (phydev
->phy_id
& fixup
->phy_uid_mask
))
440 if (fixup
->phy_uid
!= PHY_ANY_UID
)
446 /* Runs any matching fixups for this phydev */
447 static int phy_scan_fixups(struct phy_device
*phydev
)
449 struct phy_fixup
*fixup
;
451 mutex_lock(&phy_fixup_lock
);
452 list_for_each_entry(fixup
, &phy_fixup_list
, list
) {
453 if (phy_needs_fixup(phydev
, fixup
)) {
454 int err
= fixup
->run(phydev
);
457 mutex_unlock(&phy_fixup_lock
);
460 phydev
->has_fixups
= true;
463 mutex_unlock(&phy_fixup_lock
);
468 static int phy_bus_match(struct device
*dev
, struct device_driver
*drv
)
470 struct phy_device
*phydev
= to_phy_device(dev
);
471 struct phy_driver
*phydrv
= to_phy_driver(drv
);
472 const int num_ids
= ARRAY_SIZE(phydev
->c45_ids
.device_ids
);
475 if (!(phydrv
->mdiodrv
.flags
& MDIO_DEVICE_IS_PHY
))
478 if (phydrv
->match_phy_device
)
479 return phydrv
->match_phy_device(phydev
);
481 if (phydev
->is_c45
) {
482 for (i
= 1; i
< num_ids
; i
++) {
483 if (!(phydev
->c45_ids
.devices_in_package
& (1 << i
)))
486 if ((phydrv
->phy_id
& phydrv
->phy_id_mask
) ==
487 (phydev
->c45_ids
.device_ids
[i
] &
488 phydrv
->phy_id_mask
))
493 return (phydrv
->phy_id
& phydrv
->phy_id_mask
) ==
494 (phydev
->phy_id
& phydrv
->phy_id_mask
);
499 phy_id_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
501 struct phy_device
*phydev
= to_phy_device(dev
);
503 return sprintf(buf
, "0x%.8lx\n", (unsigned long)phydev
->phy_id
);
505 static DEVICE_ATTR_RO(phy_id
);
508 phy_interface_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
510 struct phy_device
*phydev
= to_phy_device(dev
);
511 const char *mode
= NULL
;
513 if (phy_is_internal(phydev
))
516 mode
= phy_modes(phydev
->interface
);
518 return sprintf(buf
, "%s\n", mode
);
520 static DEVICE_ATTR_RO(phy_interface
);
523 phy_has_fixups_show(struct device
*dev
, struct device_attribute
*attr
,
526 struct phy_device
*phydev
= to_phy_device(dev
);
528 return sprintf(buf
, "%d\n", phydev
->has_fixups
);
530 static DEVICE_ATTR_RO(phy_has_fixups
);
532 static struct attribute
*phy_dev_attrs
[] = {
533 &dev_attr_phy_id
.attr
,
534 &dev_attr_phy_interface
.attr
,
535 &dev_attr_phy_has_fixups
.attr
,
538 ATTRIBUTE_GROUPS(phy_dev
);
540 static const struct device_type mdio_bus_phy_type
= {
542 .groups
= phy_dev_groups
,
543 .release
= phy_device_release
,
544 .pm
= MDIO_BUS_PHY_PM_OPS
,
547 struct phy_device
*phy_device_create(struct mii_bus
*bus
, int addr
, int phy_id
,
549 struct phy_c45_device_ids
*c45_ids
)
551 struct phy_device
*dev
;
552 struct mdio_device
*mdiodev
;
554 /* We allocate the device, and initialize the default values */
555 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
557 return ERR_PTR(-ENOMEM
);
559 mdiodev
= &dev
->mdio
;
560 mdiodev
->dev
.parent
= &bus
->dev
;
561 mdiodev
->dev
.bus
= &mdio_bus_type
;
562 mdiodev
->dev
.type
= &mdio_bus_phy_type
;
564 mdiodev
->bus_match
= phy_bus_match
;
565 mdiodev
->addr
= addr
;
566 mdiodev
->flags
= MDIO_DEVICE_FLAG_PHY
;
567 mdiodev
->device_free
= phy_mdio_device_free
;
568 mdiodev
->device_remove
= phy_mdio_device_remove
;
575 dev
->interface
= PHY_INTERFACE_MODE_GMII
;
577 dev
->autoneg
= AUTONEG_ENABLE
;
579 dev
->is_c45
= is_c45
;
580 dev
->phy_id
= phy_id
;
582 dev
->c45_ids
= *c45_ids
;
583 dev
->irq
= bus
->irq
[addr
];
584 dev_set_name(&mdiodev
->dev
, PHY_ID_FMT
, bus
->id
, addr
);
586 dev
->state
= PHY_DOWN
;
588 mutex_init(&dev
->lock
);
589 INIT_DELAYED_WORK(&dev
->state_queue
, phy_state_machine
);
590 INIT_WORK(&dev
->phy_queue
, phy_change_work
);
592 /* Request the appropriate module unconditionally; don't
593 * bother trying to do so only if it isn't already loaded,
594 * because that gets complicated. A hotplug event would have
595 * done an unconditional modprobe anyway.
596 * We don't do normal hotplug because it won't work for MDIO
597 * -- because it relies on the device staying around for long
598 * enough for the driver to get loaded. With MDIO, the NIC
599 * driver will get bored and give up as soon as it finds that
600 * there's no driver _already_ loaded.
602 request_module(MDIO_MODULE_PREFIX MDIO_ID_FMT
, MDIO_ID_ARGS(phy_id
));
604 device_initialize(&mdiodev
->dev
);
608 EXPORT_SYMBOL(phy_device_create
);
610 /* get_phy_c45_devs_in_pkg - reads a MMD's devices in package registers.
611 * @bus: the target MII bus
612 * @addr: PHY address on the MII bus
613 * @dev_addr: MMD address in the PHY.
614 * @devices_in_package: where to store the devices in package information.
616 * Description: reads devices in package registers of a MMD at @dev_addr
617 * from PHY at @addr on @bus.
619 * Returns: 0 on success, -EIO on failure.
621 static int get_phy_c45_devs_in_pkg(struct mii_bus
*bus
, int addr
, int dev_addr
,
622 u32
*devices_in_package
)
624 int phy_reg
, reg_addr
;
626 reg_addr
= MII_ADDR_C45
| dev_addr
<< 16 | MDIO_DEVS2
;
627 phy_reg
= mdiobus_read(bus
, addr
, reg_addr
);
630 *devices_in_package
= (phy_reg
& 0xffff) << 16;
632 reg_addr
= MII_ADDR_C45
| dev_addr
<< 16 | MDIO_DEVS1
;
633 phy_reg
= mdiobus_read(bus
, addr
, reg_addr
);
636 *devices_in_package
|= (phy_reg
& 0xffff);
642 * get_phy_c45_ids - reads the specified addr for its 802.3-c45 IDs.
643 * @bus: the target MII bus
644 * @addr: PHY address on the MII bus
645 * @phy_id: where to store the ID retrieved.
646 * @c45_ids: where to store the c45 ID information.
648 * If the PHY devices-in-package appears to be valid, it and the
649 * corresponding identifiers are stored in @c45_ids, zero is stored
650 * in @phy_id. Otherwise 0xffffffff is stored in @phy_id. Returns
654 static int get_phy_c45_ids(struct mii_bus
*bus
, int addr
, u32
*phy_id
,
655 struct phy_c45_device_ids
*c45_ids
) {
658 const int num_ids
= ARRAY_SIZE(c45_ids
->device_ids
);
659 u32
*devs
= &c45_ids
->devices_in_package
;
661 /* Find first non-zero Devices In package. Device zero is reserved
662 * for 802.3 c45 complied PHYs, so don't probe it at first.
664 for (i
= 1; i
< num_ids
&& *devs
== 0; i
++) {
665 phy_reg
= get_phy_c45_devs_in_pkg(bus
, addr
, i
, devs
);
669 if ((*devs
& 0x1fffffff) == 0x1fffffff) {
670 /* If mostly Fs, there is no device there,
671 * then let's continue to probe more, as some
672 * 10G PHYs have zero Devices In package,
673 * e.g. Cortina CS4315/CS4340 PHY.
675 phy_reg
= get_phy_c45_devs_in_pkg(bus
, addr
, 0, devs
);
678 /* no device there, let's get out of here */
679 if ((*devs
& 0x1fffffff) == 0x1fffffff) {
680 *phy_id
= 0xffffffff;
688 /* Now probe Device Identifiers for each device present. */
689 for (i
= 1; i
< num_ids
; i
++) {
690 if (!(c45_ids
->devices_in_package
& (1 << i
)))
693 reg_addr
= MII_ADDR_C45
| i
<< 16 | MII_PHYSID1
;
694 phy_reg
= mdiobus_read(bus
, addr
, reg_addr
);
697 c45_ids
->device_ids
[i
] = (phy_reg
& 0xffff) << 16;
699 reg_addr
= MII_ADDR_C45
| i
<< 16 | MII_PHYSID2
;
700 phy_reg
= mdiobus_read(bus
, addr
, reg_addr
);
703 c45_ids
->device_ids
[i
] |= (phy_reg
& 0xffff);
710 * get_phy_id - reads the specified addr for its ID.
711 * @bus: the target MII bus
712 * @addr: PHY address on the MII bus
713 * @phy_id: where to store the ID retrieved.
714 * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
715 * @c45_ids: where to store the c45 ID information.
717 * Description: In the case of a 802.3-c22 PHY, reads the ID registers
718 * of the PHY at @addr on the @bus, stores it in @phy_id and returns
721 * In the case of a 802.3-c45 PHY, get_phy_c45_ids() is invoked, and
722 * its return value is in turn returned.
725 static int get_phy_id(struct mii_bus
*bus
, int addr
, u32
*phy_id
,
726 bool is_c45
, struct phy_c45_device_ids
*c45_ids
)
731 return get_phy_c45_ids(bus
, addr
, phy_id
, c45_ids
);
733 /* Grab the bits from PHYIR1, and put them in the upper half */
734 phy_reg
= mdiobus_read(bus
, addr
, MII_PHYSID1
);
736 /* if there is no device, return without an error so scanning
737 * the bus works properly
739 if (phy_reg
== -EIO
|| phy_reg
== -ENODEV
) {
740 *phy_id
= 0xffffffff;
747 *phy_id
= (phy_reg
& 0xffff) << 16;
749 /* Grab the bits from PHYIR2, and put them in the lower half */
750 phy_reg
= mdiobus_read(bus
, addr
, MII_PHYSID2
);
754 *phy_id
|= (phy_reg
& 0xffff);
760 * get_phy_device - reads the specified PHY device and returns its @phy_device
762 * @bus: the target MII bus
763 * @addr: PHY address on the MII bus
764 * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
766 * Description: Reads the ID registers of the PHY at @addr on the
767 * @bus, then allocates and returns the phy_device to represent it.
769 struct phy_device
*get_phy_device(struct mii_bus
*bus
, int addr
, bool is_c45
)
771 struct phy_c45_device_ids c45_ids
= {0};
775 r
= get_phy_id(bus
, addr
, &phy_id
, is_c45
, &c45_ids
);
779 /* If the phy_id is mostly Fs, there is no device there */
780 if ((phy_id
& 0x1fffffff) == 0x1fffffff)
781 return ERR_PTR(-ENODEV
);
783 return phy_device_create(bus
, addr
, phy_id
, is_c45
, &c45_ids
);
785 EXPORT_SYMBOL(get_phy_device
);
788 * phy_device_register - Register the phy device on the MDIO bus
789 * @phydev: phy_device structure to be added to the MDIO bus
791 int phy_device_register(struct phy_device
*phydev
)
795 err
= mdiobus_register_device(&phydev
->mdio
);
799 /* Deassert the reset signal */
800 phy_device_reset(phydev
, 0);
802 /* Run all of the fixups for this PHY */
803 err
= phy_scan_fixups(phydev
);
805 pr_err("PHY %d failed to initialize\n", phydev
->mdio
.addr
);
809 err
= device_add(&phydev
->mdio
.dev
);
811 pr_err("PHY %d failed to add\n", phydev
->mdio
.addr
);
818 /* Assert the reset signal */
819 phy_device_reset(phydev
, 1);
821 mdiobus_unregister_device(&phydev
->mdio
);
824 EXPORT_SYMBOL(phy_device_register
);
827 * phy_device_remove - Remove a previously registered phy device from the MDIO bus
828 * @phydev: phy_device structure to remove
830 * This doesn't free the phy_device itself, it merely reverses the effects
831 * of phy_device_register(). Use phy_device_free() to free the device
832 * after calling this function.
834 void phy_device_remove(struct phy_device
*phydev
)
836 device_del(&phydev
->mdio
.dev
);
838 /* Assert the reset signal */
839 phy_device_reset(phydev
, 1);
841 mdiobus_unregister_device(&phydev
->mdio
);
843 EXPORT_SYMBOL(phy_device_remove
);
846 * phy_find_first - finds the first PHY device on the bus
847 * @bus: the target MII bus
849 struct phy_device
*phy_find_first(struct mii_bus
*bus
)
851 struct phy_device
*phydev
;
854 for (addr
= 0; addr
< PHY_MAX_ADDR
; addr
++) {
855 phydev
= mdiobus_get_phy(bus
, addr
);
861 EXPORT_SYMBOL(phy_find_first
);
863 static void phy_link_change(struct phy_device
*phydev
, bool up
, bool do_carrier
)
865 struct net_device
*netdev
= phydev
->attached_dev
;
869 netif_carrier_on(netdev
);
871 netif_carrier_off(netdev
);
873 phydev
->adjust_link(netdev
);
877 * phy_prepare_link - prepares the PHY layer to monitor link status
878 * @phydev: target phy_device struct
879 * @handler: callback function for link status change notifications
881 * Description: Tells the PHY infrastructure to handle the
882 * gory details on monitoring link status (whether through
883 * polling or an interrupt), and to call back to the
884 * connected device driver when the link status changes.
885 * If you want to monitor your own link state, don't call
888 static void phy_prepare_link(struct phy_device
*phydev
,
889 void (*handler
)(struct net_device
*))
891 phydev
->adjust_link
= handler
;
895 * phy_connect_direct - connect an ethernet device to a specific phy_device
896 * @dev: the network device to connect
897 * @phydev: the pointer to the phy device
898 * @handler: callback function for state change notifications
899 * @interface: PHY device's interface
901 int phy_connect_direct(struct net_device
*dev
, struct phy_device
*phydev
,
902 void (*handler
)(struct net_device
*),
903 phy_interface_t interface
)
907 rc
= phy_attach_direct(dev
, phydev
, phydev
->dev_flags
, interface
);
911 phy_prepare_link(phydev
, handler
);
912 phy_start_machine(phydev
);
914 phy_start_interrupts(phydev
);
918 EXPORT_SYMBOL(phy_connect_direct
);
921 * phy_connect - connect an ethernet device to a PHY device
922 * @dev: the network device to connect
923 * @bus_id: the id string of the PHY device to connect
924 * @handler: callback function for state change notifications
925 * @interface: PHY device's interface
927 * Description: Convenience function for connecting ethernet
928 * devices to PHY devices. The default behavior is for
929 * the PHY infrastructure to handle everything, and only notify
930 * the connected driver when the link status changes. If you
931 * don't want, or can't use the provided functionality, you may
932 * choose to call only the subset of functions which provide
933 * the desired functionality.
935 struct phy_device
*phy_connect(struct net_device
*dev
, const char *bus_id
,
936 void (*handler
)(struct net_device
*),
937 phy_interface_t interface
)
939 struct phy_device
*phydev
;
943 /* Search the list of PHY devices on the mdio bus for the
944 * PHY with the requested name
946 d
= bus_find_device_by_name(&mdio_bus_type
, NULL
, bus_id
);
948 pr_err("PHY %s not found\n", bus_id
);
949 return ERR_PTR(-ENODEV
);
951 phydev
= to_phy_device(d
);
953 rc
= phy_connect_direct(dev
, phydev
, handler
, interface
);
960 EXPORT_SYMBOL(phy_connect
);
963 * phy_disconnect - disable interrupts, stop state machine, and detach a PHY
965 * @phydev: target phy_device struct
967 void phy_disconnect(struct phy_device
*phydev
)
970 phy_stop_interrupts(phydev
);
972 phy_stop_machine(phydev
);
974 phydev
->adjust_link
= NULL
;
978 EXPORT_SYMBOL(phy_disconnect
);
981 * phy_poll_reset - Safely wait until a PHY reset has properly completed
982 * @phydev: The PHY device to poll
984 * Description: According to IEEE 802.3, Section 2, Subsection 22.2.4.1.1, as
985 * published in 2008, a PHY reset may take up to 0.5 seconds. The MII BMCR
986 * register must be polled until the BMCR_RESET bit clears.
988 * Furthermore, any attempts to write to PHY registers may have no effect
989 * or even generate MDIO bus errors until this is complete.
991 * Some PHYs (such as the Marvell 88E1111) don't entirely conform to the
992 * standard and do not fully reset after the BMCR_RESET bit is set, and may
993 * even *REQUIRE* a soft-reset to properly restart autonegotiation. In an
994 * effort to support such broken PHYs, this function is separate from the
995 * standard phy_init_hw() which will zero all the other bits in the BMCR
996 * and reapply all driver-specific and board-specific fixups.
998 static int phy_poll_reset(struct phy_device
*phydev
)
1000 /* Poll until the reset bit clears (50ms per retry == 0.6 sec) */
1001 unsigned int retries
= 12;
1006 ret
= phy_read(phydev
, MII_BMCR
);
1009 } while (ret
& BMCR_RESET
&& --retries
);
1010 if (ret
& BMCR_RESET
)
1013 /* Some chips (smsc911x) may still need up to another 1ms after the
1014 * BMCR_RESET bit is cleared before they are usable.
1020 int phy_init_hw(struct phy_device
*phydev
)
1024 /* Deassert the reset signal */
1025 phy_device_reset(phydev
, 0);
1027 if (!phydev
->drv
|| !phydev
->drv
->config_init
)
1030 if (phydev
->drv
->soft_reset
)
1031 ret
= phydev
->drv
->soft_reset(phydev
);
1036 ret
= phy_scan_fixups(phydev
);
1040 return phydev
->drv
->config_init(phydev
);
1042 EXPORT_SYMBOL(phy_init_hw
);
1044 void phy_attached_info(struct phy_device
*phydev
)
1046 phy_attached_print(phydev
, NULL
);
1048 EXPORT_SYMBOL(phy_attached_info
);
1050 #define ATTACHED_FMT "attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%s)"
1051 void phy_attached_print(struct phy_device
*phydev
, const char *fmt
, ...)
1053 const char *drv_name
= phydev
->drv
? phydev
->drv
->name
: "unbound";
1057 switch(phydev
->irq
) {
1061 case PHY_IGNORE_INTERRUPT
:
1065 snprintf(irq_num
, sizeof(irq_num
), "%d", phydev
->irq
);
1072 phydev_info(phydev
, ATTACHED_FMT
"\n",
1073 drv_name
, phydev_name(phydev
),
1078 phydev_info(phydev
, ATTACHED_FMT
,
1079 drv_name
, phydev_name(phydev
),
1087 EXPORT_SYMBOL(phy_attached_print
);
1090 * phy_attach_direct - attach a network device to a given PHY device pointer
1091 * @dev: network device to attach
1092 * @phydev: Pointer to phy_device to attach
1093 * @flags: PHY device's dev_flags
1094 * @interface: PHY device's interface
1096 * Description: Called by drivers to attach to a particular PHY
1097 * device. The phy_device is found, and properly hooked up
1098 * to the phy_driver. If no driver is attached, then a
1099 * generic driver is used. The phy_device is given a ptr to
1100 * the attaching device, and given a callback for link status
1101 * change. The phy_device is returned to the attaching driver.
1102 * This function takes a reference on the phy device.
1104 int phy_attach_direct(struct net_device
*dev
, struct phy_device
*phydev
,
1105 u32 flags
, phy_interface_t interface
)
1107 struct module
*ndev_owner
= dev
->dev
.parent
->driver
->owner
;
1108 struct mii_bus
*bus
= phydev
->mdio
.bus
;
1109 struct device
*d
= &phydev
->mdio
.dev
;
1110 bool using_genphy
= false;
1113 /* For Ethernet device drivers that register their own MDIO bus, we
1114 * will have bus->owner match ndev_mod, so we do not want to increment
1115 * our own module->refcnt here, otherwise we would not be able to
1118 if (ndev_owner
!= bus
->owner
&& !try_module_get(bus
->owner
)) {
1119 dev_err(&dev
->dev
, "failed to get the bus module\n");
1125 /* Assume that if there is no driver, that it doesn't
1126 * exist, and we should use the genphy driver.
1130 d
->driver
= &genphy_10g_driver
.mdiodrv
.driver
;
1132 d
->driver
= &genphy_driver
.mdiodrv
.driver
;
1134 using_genphy
= true;
1137 if (!try_module_get(d
->driver
->owner
)) {
1138 dev_err(&dev
->dev
, "failed to get the device driver module\n");
1140 goto error_put_device
;
1144 err
= d
->driver
->probe(d
);
1146 err
= device_bind_driver(d
);
1149 goto error_module_put
;
1152 if (phydev
->attached_dev
) {
1153 dev_err(&dev
->dev
, "PHY already attached\n");
1158 phydev
->phy_link_change
= phy_link_change
;
1159 phydev
->attached_dev
= dev
;
1160 dev
->phydev
= phydev
;
1162 /* Some Ethernet drivers try to connect to a PHY device before
1163 * calling register_netdevice() -> netdev_register_kobject() and
1164 * does the dev->dev.kobj initialization. Here we only check for
1165 * success which indicates that the network device kobject is
1166 * ready. Once we do that we still need to keep track of whether
1167 * links were successfully set up or not for phy_detach() to
1168 * remove them accordingly.
1170 phydev
->sysfs_links
= false;
1172 err
= sysfs_create_link(&phydev
->mdio
.dev
.kobj
, &dev
->dev
.kobj
,
1175 err
= sysfs_create_link_nowarn(&dev
->dev
.kobj
,
1176 &phydev
->mdio
.dev
.kobj
,
1179 dev_err(&dev
->dev
, "could not add device link to %s err %d\n",
1180 kobject_name(&phydev
->mdio
.dev
.kobj
),
1182 /* non-fatal - some net drivers can use one netdevice
1183 * with more then one phy
1187 phydev
->sysfs_links
= true;
1190 phydev
->dev_flags
= flags
;
1192 phydev
->interface
= interface
;
1194 phydev
->state
= PHY_READY
;
1196 /* Initial carrier state is off as the phy is about to be
1199 netif_carrier_off(phydev
->attached_dev
);
1201 /* Do initial configuration here, now that
1202 * we have certain key parameters
1203 * (dev_flags and interface)
1205 err
= phy_init_hw(phydev
);
1210 phy_led_triggers_register(phydev
);
1215 /* phy_detach() does all of the cleanup below */
1220 module_put(d
->driver
->owner
);
1223 if (ndev_owner
!= bus
->owner
)
1224 module_put(bus
->owner
);
1227 EXPORT_SYMBOL(phy_attach_direct
);
1230 * phy_attach - attach a network device to a particular PHY device
1231 * @dev: network device to attach
1232 * @bus_id: Bus ID of PHY device to attach
1233 * @interface: PHY device's interface
1235 * Description: Same as phy_attach_direct() except that a PHY bus_id
1236 * string is passed instead of a pointer to a struct phy_device.
1238 struct phy_device
*phy_attach(struct net_device
*dev
, const char *bus_id
,
1239 phy_interface_t interface
)
1241 struct bus_type
*bus
= &mdio_bus_type
;
1242 struct phy_device
*phydev
;
1246 /* Search the list of PHY devices on the mdio bus for the
1247 * PHY with the requested name
1249 d
= bus_find_device_by_name(bus
, NULL
, bus_id
);
1251 pr_err("PHY %s not found\n", bus_id
);
1252 return ERR_PTR(-ENODEV
);
1254 phydev
= to_phy_device(d
);
1256 rc
= phy_attach_direct(dev
, phydev
, phydev
->dev_flags
, interface
);
1263 EXPORT_SYMBOL(phy_attach
);
1266 * phy_detach - detach a PHY device from its network device
1267 * @phydev: target phy_device struct
1269 * This detaches the phy device from its network device and the phy
1270 * driver, and drops the reference count taken in phy_attach_direct().
1272 void phy_detach(struct phy_device
*phydev
)
1274 struct net_device
*dev
= phydev
->attached_dev
;
1275 struct module
*ndev_owner
= dev
->dev
.parent
->driver
->owner
;
1276 struct mii_bus
*bus
;
1278 if (phydev
->sysfs_links
) {
1279 sysfs_remove_link(&dev
->dev
.kobj
, "phydev");
1280 sysfs_remove_link(&phydev
->mdio
.dev
.kobj
, "attached_dev");
1282 phy_suspend(phydev
);
1283 phydev
->attached_dev
->phydev
= NULL
;
1284 phydev
->attached_dev
= NULL
;
1285 phydev
->phylink
= NULL
;
1287 phy_led_triggers_unregister(phydev
);
1289 module_put(phydev
->mdio
.dev
.driver
->owner
);
1291 /* If the device had no specific driver before (i.e. - it
1292 * was using the generic driver), we unbind the device
1293 * from the generic driver so that there's a chance a
1294 * real driver could be loaded
1296 if (phydev
->mdio
.dev
.driver
== &genphy_10g_driver
.mdiodrv
.driver
||
1297 phydev
->mdio
.dev
.driver
== &genphy_driver
.mdiodrv
.driver
)
1298 device_release_driver(&phydev
->mdio
.dev
);
1301 * The phydev might go away on the put_device() below, so avoid
1302 * a use-after-free bug by reading the underlying bus first.
1304 bus
= phydev
->mdio
.bus
;
1306 put_device(&phydev
->mdio
.dev
);
1307 if (ndev_owner
!= bus
->owner
)
1308 module_put(bus
->owner
);
1310 /* Assert the reset signal */
1311 phy_device_reset(phydev
, 1);
1313 EXPORT_SYMBOL(phy_detach
);
1315 int phy_suspend(struct phy_device
*phydev
)
1317 struct phy_driver
*phydrv
= to_phy_driver(phydev
->mdio
.dev
.driver
);
1318 struct net_device
*netdev
= phydev
->attached_dev
;
1319 struct ethtool_wolinfo wol
= { .cmd
= ETHTOOL_GWOL
};
1322 /* If the device has WOL enabled, we cannot suspend the PHY */
1323 phy_ethtool_get_wol(phydev
, &wol
);
1324 if (wol
.wolopts
|| (netdev
&& netdev
->wol_enabled
))
1327 if (phydev
->drv
&& phydrv
->suspend
)
1328 ret
= phydrv
->suspend(phydev
);
1333 phydev
->suspended
= true;
1337 EXPORT_SYMBOL(phy_suspend
);
1339 int __phy_resume(struct phy_device
*phydev
)
1341 struct phy_driver
*phydrv
= to_phy_driver(phydev
->mdio
.dev
.driver
);
1344 WARN_ON(!mutex_is_locked(&phydev
->lock
));
1346 if (phydev
->drv
&& phydrv
->resume
)
1347 ret
= phydrv
->resume(phydev
);
1352 phydev
->suspended
= false;
1356 EXPORT_SYMBOL(__phy_resume
);
1358 int phy_resume(struct phy_device
*phydev
)
1362 mutex_lock(&phydev
->lock
);
1363 ret
= __phy_resume(phydev
);
1364 mutex_unlock(&phydev
->lock
);
1368 EXPORT_SYMBOL(phy_resume
);
1370 int phy_loopback(struct phy_device
*phydev
, bool enable
)
1372 struct phy_driver
*phydrv
= to_phy_driver(phydev
->mdio
.dev
.driver
);
1375 mutex_lock(&phydev
->lock
);
1377 if (enable
&& phydev
->loopback_enabled
) {
1382 if (!enable
&& !phydev
->loopback_enabled
) {
1387 if (phydev
->drv
&& phydrv
->set_loopback
)
1388 ret
= phydrv
->set_loopback(phydev
, enable
);
1395 phydev
->loopback_enabled
= enable
;
1398 mutex_unlock(&phydev
->lock
);
1401 EXPORT_SYMBOL(phy_loopback
);
1404 * phy_reset_after_clk_enable - perform a PHY reset if needed
1405 * @phydev: target phy_device struct
1407 * Description: Some PHYs are known to need a reset after their refclk was
1408 * enabled. This function evaluates the flags and perform the reset if it's
1409 * needed. Returns < 0 on error, 0 if the phy wasn't reset and 1 if the phy
1412 int phy_reset_after_clk_enable(struct phy_device
*phydev
)
1414 if (!phydev
|| !phydev
->drv
)
1417 if (phydev
->drv
->flags
& PHY_RST_AFTER_CLK_EN
) {
1418 phy_device_reset(phydev
, 1);
1419 phy_device_reset(phydev
, 0);
1425 EXPORT_SYMBOL(phy_reset_after_clk_enable
);
1427 /* Generic PHY support and helper functions */
1430 * genphy_config_advert - sanitize and advertise auto-negotiation parameters
1431 * @phydev: target phy_device struct
1433 * Description: Writes MII_ADVERTISE with the appropriate values,
1434 * after sanitizing the values to make sure we only advertise
1435 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
1436 * hasn't changed, and > 0 if it has changed.
1438 static int genphy_config_advert(struct phy_device
*phydev
)
1441 int oldadv
, adv
, bmsr
;
1442 int err
, changed
= 0;
1444 /* Only allow advertising what this PHY supports */
1445 phydev
->advertising
&= phydev
->supported
;
1446 advertise
= phydev
->advertising
;
1448 /* Setup standard advertisement */
1449 adv
= phy_read(phydev
, MII_ADVERTISE
);
1454 adv
&= ~(ADVERTISE_ALL
| ADVERTISE_100BASE4
| ADVERTISE_PAUSE_CAP
|
1455 ADVERTISE_PAUSE_ASYM
);
1456 adv
|= ethtool_adv_to_mii_adv_t(advertise
);
1458 if (adv
!= oldadv
) {
1459 err
= phy_write(phydev
, MII_ADVERTISE
, adv
);
1466 bmsr
= phy_read(phydev
, MII_BMSR
);
1470 /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
1471 * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
1474 if (!(bmsr
& BMSR_ESTATEN
))
1477 /* Configure gigabit if it's supported */
1478 adv
= phy_read(phydev
, MII_CTRL1000
);
1483 adv
&= ~(ADVERTISE_1000FULL
| ADVERTISE_1000HALF
);
1485 if (phydev
->supported
& (SUPPORTED_1000baseT_Half
|
1486 SUPPORTED_1000baseT_Full
)) {
1487 adv
|= ethtool_adv_to_mii_ctrl1000_t(advertise
);
1493 err
= phy_write(phydev
, MII_CTRL1000
, adv
);
1501 * genphy_config_eee_advert - disable unwanted eee mode advertisement
1502 * @phydev: target phy_device struct
1504 * Description: Writes MDIO_AN_EEE_ADV after disabling unsupported energy
1505 * efficent ethernet modes. Returns 0 if the PHY's advertisement hasn't
1506 * changed, and 1 if it has changed.
1508 static int genphy_config_eee_advert(struct phy_device
*phydev
)
1510 int broken
= phydev
->eee_broken_modes
;
1513 /* Nothing to disable */
1517 /* If the following call fails, we assume that EEE is not
1518 * supported by the phy. If we read 0, EEE is not advertised
1519 * In both case, we don't need to continue
1521 adv
= phy_read_mmd(phydev
, MDIO_MMD_AN
, MDIO_AN_EEE_ADV
);
1528 /* Advertising remains unchanged with the broken mask */
1532 phy_write_mmd(phydev
, MDIO_MMD_AN
, MDIO_AN_EEE_ADV
, adv
);
1538 * genphy_setup_forced - configures/forces speed/duplex from @phydev
1539 * @phydev: target phy_device struct
1541 * Description: Configures MII_BMCR to force speed/duplex
1542 * to the values in phydev. Assumes that the values are valid.
1543 * Please see phy_sanitize_settings().
1545 int genphy_setup_forced(struct phy_device
*phydev
)
1550 phydev
->asym_pause
= 0;
1552 if (SPEED_1000
== phydev
->speed
)
1553 ctl
|= BMCR_SPEED1000
;
1554 else if (SPEED_100
== phydev
->speed
)
1555 ctl
|= BMCR_SPEED100
;
1557 if (DUPLEX_FULL
== phydev
->duplex
)
1558 ctl
|= BMCR_FULLDPLX
;
1560 return phy_modify(phydev
, MII_BMCR
,
1561 ~(BMCR_LOOPBACK
| BMCR_ISOLATE
| BMCR_PDOWN
), ctl
);
1563 EXPORT_SYMBOL(genphy_setup_forced
);
1566 * genphy_restart_aneg - Enable and Restart Autonegotiation
1567 * @phydev: target phy_device struct
1569 int genphy_restart_aneg(struct phy_device
*phydev
)
1571 /* Don't isolate the PHY if we're negotiating */
1572 return phy_modify(phydev
, MII_BMCR
, BMCR_ISOLATE
,
1573 BMCR_ANENABLE
| BMCR_ANRESTART
);
1575 EXPORT_SYMBOL(genphy_restart_aneg
);
1578 * genphy_config_aneg - restart auto-negotiation or write BMCR
1579 * @phydev: target phy_device struct
1581 * Description: If auto-negotiation is enabled, we configure the
1582 * advertising, and then restart auto-negotiation. If it is not
1583 * enabled, then we write the BMCR.
1585 int genphy_config_aneg(struct phy_device
*phydev
)
1589 changed
= genphy_config_eee_advert(phydev
);
1591 if (AUTONEG_ENABLE
!= phydev
->autoneg
)
1592 return genphy_setup_forced(phydev
);
1594 err
= genphy_config_advert(phydev
);
1595 if (err
< 0) /* error */
1601 /* Advertisement hasn't changed, but maybe aneg was never on to
1602 * begin with? Or maybe phy was isolated?
1604 int ctl
= phy_read(phydev
, MII_BMCR
);
1609 if (!(ctl
& BMCR_ANENABLE
) || (ctl
& BMCR_ISOLATE
))
1610 changed
= 1; /* do restart aneg */
1613 /* Only restart aneg if we are advertising something different
1614 * than we were before.
1617 return genphy_restart_aneg(phydev
);
1621 EXPORT_SYMBOL(genphy_config_aneg
);
1624 * genphy_aneg_done - return auto-negotiation status
1625 * @phydev: target phy_device struct
1627 * Description: Reads the status register and returns 0 either if
1628 * auto-negotiation is incomplete, or if there was an error.
1629 * Returns BMSR_ANEGCOMPLETE if auto-negotiation is done.
1631 int genphy_aneg_done(struct phy_device
*phydev
)
1633 int retval
= phy_read(phydev
, MII_BMSR
);
1635 return (retval
< 0) ? retval
: (retval
& BMSR_ANEGCOMPLETE
);
1637 EXPORT_SYMBOL(genphy_aneg_done
);
1640 * genphy_update_link - update link status in @phydev
1641 * @phydev: target phy_device struct
1643 * Description: Update the value in phydev->link to reflect the
1644 * current link value. In order to do this, we need to read
1645 * the status register twice, keeping the second value.
1647 int genphy_update_link(struct phy_device
*phydev
)
1651 /* Do a fake read */
1652 status
= phy_read(phydev
, MII_BMSR
);
1656 /* Read link and autonegotiation status */
1657 status
= phy_read(phydev
, MII_BMSR
);
1661 if ((status
& BMSR_LSTATUS
) == 0)
1668 EXPORT_SYMBOL(genphy_update_link
);
1671 * genphy_read_status - check the link status and update current link state
1672 * @phydev: target phy_device struct
1674 * Description: Check the link, then figure out the current state
1675 * by comparing what we advertise with what the link partner
1676 * advertises. Start by checking the gigabit possibilities,
1677 * then move on to 10/100.
1679 int genphy_read_status(struct phy_device
*phydev
)
1686 int common_adv_gb
= 0;
1688 /* Update the link, but return if there was an error */
1689 err
= genphy_update_link(phydev
);
1693 phydev
->lp_advertising
= 0;
1695 if (AUTONEG_ENABLE
== phydev
->autoneg
) {
1696 if (phydev
->supported
& (SUPPORTED_1000baseT_Half
1697 | SUPPORTED_1000baseT_Full
)) {
1698 lpagb
= phy_read(phydev
, MII_STAT1000
);
1702 adv
= phy_read(phydev
, MII_CTRL1000
);
1706 if (lpagb
& LPA_1000MSFAIL
) {
1707 if (adv
& CTL1000_ENABLE_MASTER
)
1708 phydev_err(phydev
, "Master/Slave resolution failed, maybe conflicting manual settings?\n");
1710 phydev_err(phydev
, "Master/Slave resolution failed\n");
1714 phydev
->lp_advertising
=
1715 mii_stat1000_to_ethtool_lpa_t(lpagb
);
1716 common_adv_gb
= lpagb
& adv
<< 2;
1719 lpa
= phy_read(phydev
, MII_LPA
);
1723 phydev
->lp_advertising
|= mii_lpa_to_ethtool_lpa_t(lpa
);
1725 adv
= phy_read(phydev
, MII_ADVERTISE
);
1729 common_adv
= lpa
& adv
;
1731 phydev
->speed
= SPEED_10
;
1732 phydev
->duplex
= DUPLEX_HALF
;
1734 phydev
->asym_pause
= 0;
1736 if (common_adv_gb
& (LPA_1000FULL
| LPA_1000HALF
)) {
1737 phydev
->speed
= SPEED_1000
;
1739 if (common_adv_gb
& LPA_1000FULL
)
1740 phydev
->duplex
= DUPLEX_FULL
;
1741 } else if (common_adv
& (LPA_100FULL
| LPA_100HALF
)) {
1742 phydev
->speed
= SPEED_100
;
1744 if (common_adv
& LPA_100FULL
)
1745 phydev
->duplex
= DUPLEX_FULL
;
1747 if (common_adv
& LPA_10FULL
)
1748 phydev
->duplex
= DUPLEX_FULL
;
1750 if (phydev
->duplex
== DUPLEX_FULL
) {
1751 phydev
->pause
= lpa
& LPA_PAUSE_CAP
? 1 : 0;
1752 phydev
->asym_pause
= lpa
& LPA_PAUSE_ASYM
? 1 : 0;
1755 int bmcr
= phy_read(phydev
, MII_BMCR
);
1760 if (bmcr
& BMCR_FULLDPLX
)
1761 phydev
->duplex
= DUPLEX_FULL
;
1763 phydev
->duplex
= DUPLEX_HALF
;
1765 if (bmcr
& BMCR_SPEED1000
)
1766 phydev
->speed
= SPEED_1000
;
1767 else if (bmcr
& BMCR_SPEED100
)
1768 phydev
->speed
= SPEED_100
;
1770 phydev
->speed
= SPEED_10
;
1773 phydev
->asym_pause
= 0;
1778 EXPORT_SYMBOL(genphy_read_status
);
1781 * genphy_soft_reset - software reset the PHY via BMCR_RESET bit
1782 * @phydev: target phy_device struct
1784 * Description: Perform a software PHY reset using the standard
1785 * BMCR_RESET bit and poll for the reset bit to be cleared.
1787 * Returns: 0 on success, < 0 on failure
1789 int genphy_soft_reset(struct phy_device
*phydev
)
1793 ret
= phy_write(phydev
, MII_BMCR
, BMCR_RESET
);
1797 return phy_poll_reset(phydev
);
1799 EXPORT_SYMBOL(genphy_soft_reset
);
1801 int genphy_config_init(struct phy_device
*phydev
)
1806 features
= (SUPPORTED_TP
| SUPPORTED_MII
1807 | SUPPORTED_AUI
| SUPPORTED_FIBRE
|
1808 SUPPORTED_BNC
| SUPPORTED_Pause
| SUPPORTED_Asym_Pause
);
1810 /* Do we support autonegotiation? */
1811 val
= phy_read(phydev
, MII_BMSR
);
1815 if (val
& BMSR_ANEGCAPABLE
)
1816 features
|= SUPPORTED_Autoneg
;
1818 if (val
& BMSR_100FULL
)
1819 features
|= SUPPORTED_100baseT_Full
;
1820 if (val
& BMSR_100HALF
)
1821 features
|= SUPPORTED_100baseT_Half
;
1822 if (val
& BMSR_10FULL
)
1823 features
|= SUPPORTED_10baseT_Full
;
1824 if (val
& BMSR_10HALF
)
1825 features
|= SUPPORTED_10baseT_Half
;
1827 if (val
& BMSR_ESTATEN
) {
1828 val
= phy_read(phydev
, MII_ESTATUS
);
1832 if (val
& ESTATUS_1000_TFULL
)
1833 features
|= SUPPORTED_1000baseT_Full
;
1834 if (val
& ESTATUS_1000_THALF
)
1835 features
|= SUPPORTED_1000baseT_Half
;
1838 phydev
->supported
&= features
;
1839 phydev
->advertising
&= features
;
1843 EXPORT_SYMBOL(genphy_config_init
);
1845 /* This is used for the phy device which doesn't support the MMD extended
1846 * register access, but it does have side effect when we are trying to access
1847 * the MMD register via indirect method.
1849 int genphy_read_mmd_unsupported(struct phy_device
*phdev
, int devad
, u16 regnum
)
1853 EXPORT_SYMBOL(genphy_read_mmd_unsupported
);
1855 int genphy_write_mmd_unsupported(struct phy_device
*phdev
, int devnum
,
1856 u16 regnum
, u16 val
)
1860 EXPORT_SYMBOL(genphy_write_mmd_unsupported
);
1862 int genphy_suspend(struct phy_device
*phydev
)
1864 return phy_set_bits(phydev
, MII_BMCR
, BMCR_PDOWN
);
1866 EXPORT_SYMBOL(genphy_suspend
);
1868 int genphy_resume(struct phy_device
*phydev
)
1870 return phy_clear_bits(phydev
, MII_BMCR
, BMCR_PDOWN
);
1872 EXPORT_SYMBOL(genphy_resume
);
1874 int genphy_loopback(struct phy_device
*phydev
, bool enable
)
1876 return phy_modify(phydev
, MII_BMCR
, BMCR_LOOPBACK
,
1877 enable
? BMCR_LOOPBACK
: 0);
1879 EXPORT_SYMBOL(genphy_loopback
);
1881 static int __set_phy_supported(struct phy_device
*phydev
, u32 max_speed
)
1883 phydev
->supported
&= ~(PHY_1000BT_FEATURES
| PHY_100BT_FEATURES
|
1886 switch (max_speed
) {
1890 phydev
->supported
|= PHY_1000BT_FEATURES
;
1893 phydev
->supported
|= PHY_100BT_FEATURES
;
1896 phydev
->supported
|= PHY_10BT_FEATURES
;
1902 int phy_set_max_speed(struct phy_device
*phydev
, u32 max_speed
)
1906 err
= __set_phy_supported(phydev
, max_speed
);
1910 phydev
->advertising
= phydev
->supported
;
1914 EXPORT_SYMBOL(phy_set_max_speed
);
1917 * phy_remove_link_mode - Remove a supported link mode
1918 * @phydev: phy_device structure to remove link mode from
1919 * @link_mode: Link mode to be removed
1921 * Description: Some MACs don't support all link modes which the PHY
1922 * does. e.g. a 1G MAC often does not support 1000Half. Add a helper
1923 * to remove a link mode.
1925 void phy_remove_link_mode(struct phy_device
*phydev
, u32 link_mode
)
1927 WARN_ON(link_mode
> 31);
1929 phydev
->supported
&= ~BIT(link_mode
);
1930 phydev
->advertising
= phydev
->supported
;
1932 EXPORT_SYMBOL(phy_remove_link_mode
);
1935 * phy_support_sym_pause - Enable support of symmetrical pause
1936 * @phydev: target phy_device struct
1938 * Description: Called by the MAC to indicate is supports symmetrical
1939 * Pause, but not asym pause.
1941 void phy_support_sym_pause(struct phy_device
*phydev
)
1943 phydev
->supported
&= ~SUPPORTED_Asym_Pause
;
1944 phydev
->supported
|= SUPPORTED_Pause
;
1945 phydev
->advertising
= phydev
->supported
;
1947 EXPORT_SYMBOL(phy_support_sym_pause
);
1950 * phy_support_asym_pause - Enable support of asym pause
1951 * @phydev: target phy_device struct
1953 * Description: Called by the MAC to indicate is supports Asym Pause.
1955 void phy_support_asym_pause(struct phy_device
*phydev
)
1957 phydev
->supported
|= SUPPORTED_Pause
| SUPPORTED_Asym_Pause
;
1958 phydev
->advertising
= phydev
->supported
;
1960 EXPORT_SYMBOL(phy_support_asym_pause
);
1963 * phy_set_sym_pause - Configure symmetric Pause
1964 * @phydev: target phy_device struct
1965 * @rx: Receiver Pause is supported
1966 * @tx: Transmit Pause is supported
1967 * @autoneg: Auto neg should be used
1969 * Description: Configure advertised Pause support depending on if
1970 * receiver pause and pause auto neg is supported. Generally called
1971 * from the set_pauseparam .ndo.
1973 void phy_set_sym_pause(struct phy_device
*phydev
, bool rx
, bool tx
,
1976 phydev
->supported
&= ~SUPPORTED_Pause
;
1978 if (rx
&& tx
&& autoneg
)
1979 phydev
->supported
|= SUPPORTED_Pause
;
1981 phydev
->advertising
= phydev
->supported
;
1983 EXPORT_SYMBOL(phy_set_sym_pause
);
1986 * phy_set_asym_pause - Configure Pause and Asym Pause
1987 * @phydev: target phy_device struct
1988 * @rx: Receiver Pause is supported
1989 * @tx: Transmit Pause is supported
1991 * Description: Configure advertised Pause support depending on if
1992 * transmit and receiver pause is supported. If there has been a
1993 * change in adverting, trigger a new autoneg. Generally called from
1994 * the set_pauseparam .ndo.
1996 void phy_set_asym_pause(struct phy_device
*phydev
, bool rx
, bool tx
)
1998 u16 oldadv
= phydev
->advertising
;
1999 u16 newadv
= oldadv
&= ~(SUPPORTED_Pause
| SUPPORTED_Asym_Pause
);
2002 newadv
|= SUPPORTED_Pause
| SUPPORTED_Asym_Pause
;
2004 newadv
^= SUPPORTED_Asym_Pause
;
2006 if (oldadv
!= newadv
) {
2007 phydev
->advertising
= newadv
;
2009 if (phydev
->autoneg
)
2010 phy_start_aneg(phydev
);
2013 EXPORT_SYMBOL(phy_set_asym_pause
);
2016 * phy_validate_pause - Test if the PHY/MAC support the pause configuration
2017 * @phydev: phy_device struct
2018 * @pp: requested pause configuration
2020 * Description: Test if the PHY/MAC combination supports the Pause
2021 * configuration the user is requesting. Returns True if it is
2022 * supported, false otherwise.
2024 bool phy_validate_pause(struct phy_device
*phydev
,
2025 struct ethtool_pauseparam
*pp
)
2027 if (!(phydev
->supported
& SUPPORTED_Pause
) ||
2028 (!(phydev
->supported
& SUPPORTED_Asym_Pause
) &&
2029 pp
->rx_pause
!= pp
->tx_pause
))
2033 EXPORT_SYMBOL(phy_validate_pause
);
2035 static void of_set_phy_supported(struct phy_device
*phydev
)
2037 struct device_node
*node
= phydev
->mdio
.dev
.of_node
;
2040 if (!IS_ENABLED(CONFIG_OF_MDIO
))
2046 if (!of_property_read_u32(node
, "max-speed", &max_speed
))
2047 __set_phy_supported(phydev
, max_speed
);
2050 static void of_set_phy_eee_broken(struct phy_device
*phydev
)
2052 struct device_node
*node
= phydev
->mdio
.dev
.of_node
;
2055 if (!IS_ENABLED(CONFIG_OF_MDIO
))
2061 if (of_property_read_bool(node
, "eee-broken-100tx"))
2062 broken
|= MDIO_EEE_100TX
;
2063 if (of_property_read_bool(node
, "eee-broken-1000t"))
2064 broken
|= MDIO_EEE_1000T
;
2065 if (of_property_read_bool(node
, "eee-broken-10gt"))
2066 broken
|= MDIO_EEE_10GT
;
2067 if (of_property_read_bool(node
, "eee-broken-1000kx"))
2068 broken
|= MDIO_EEE_1000KX
;
2069 if (of_property_read_bool(node
, "eee-broken-10gkx4"))
2070 broken
|= MDIO_EEE_10GKX4
;
2071 if (of_property_read_bool(node
, "eee-broken-10gkr"))
2072 broken
|= MDIO_EEE_10GKR
;
2074 phydev
->eee_broken_modes
= broken
;
2078 * phy_probe - probe and init a PHY device
2079 * @dev: device to probe and init
2081 * Description: Take care of setting up the phy_device structure,
2082 * set the state to READY (the driver's init function should
2083 * set it to STARTING if needed).
2085 static int phy_probe(struct device
*dev
)
2087 struct phy_device
*phydev
= to_phy_device(dev
);
2088 struct device_driver
*drv
= phydev
->mdio
.dev
.driver
;
2089 struct phy_driver
*phydrv
= to_phy_driver(drv
);
2093 phydev
->drv
= phydrv
;
2095 /* Disable the interrupt if the PHY doesn't support it
2096 * but the interrupt is still a valid one
2098 if (!(phydrv
->flags
& PHY_HAS_INTERRUPT
) &&
2099 phy_interrupt_is_valid(phydev
))
2100 phydev
->irq
= PHY_POLL
;
2102 if (phydrv
->flags
& PHY_IS_INTERNAL
)
2103 phydev
->is_internal
= true;
2105 mutex_lock(&phydev
->lock
);
2107 /* Start out supporting everything. Eventually,
2108 * a controller will attach, and may modify one
2109 * or both of these values
2111 ethtool_convert_link_mode_to_legacy_u32(&features
, phydrv
->features
);
2112 phydev
->supported
= features
;
2113 of_set_phy_supported(phydev
);
2114 phydev
->advertising
= phydev
->supported
;
2116 /* Get the EEE modes we want to prohibit. We will ask
2117 * the PHY stop advertising these mode later on
2119 of_set_phy_eee_broken(phydev
);
2121 /* The Pause Frame bits indicate that the PHY can support passing
2122 * pause frames. During autonegotiation, the PHYs will determine if
2123 * they should allow pause frames to pass. The MAC driver should then
2124 * use that result to determine whether to enable flow control via
2127 * Normally, PHY drivers should not set the Pause bits, and instead
2128 * allow phylib to do that. However, there may be some situations
2129 * (e.g. hardware erratum) where the driver wants to set only one
2132 if (test_bit(ETHTOOL_LINK_MODE_Pause_BIT
, phydrv
->features
) ||
2133 test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT
, phydrv
->features
)) {
2134 phydev
->supported
&= ~(SUPPORTED_Pause
| SUPPORTED_Asym_Pause
);
2135 if (test_bit(ETHTOOL_LINK_MODE_Pause_BIT
, phydrv
->features
))
2136 phydev
->supported
|= SUPPORTED_Pause
;
2137 if (test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT
,
2139 phydev
->supported
|= SUPPORTED_Asym_Pause
;
2141 phydev
->supported
|= SUPPORTED_Pause
| SUPPORTED_Asym_Pause
;
2144 /* Set the state to READY by default */
2145 phydev
->state
= PHY_READY
;
2147 if (phydev
->drv
->probe
) {
2148 /* Deassert the reset signal */
2149 phy_device_reset(phydev
, 0);
2151 err
= phydev
->drv
->probe(phydev
);
2153 /* Assert the reset signal */
2154 phy_device_reset(phydev
, 1);
2158 mutex_unlock(&phydev
->lock
);
2163 static int phy_remove(struct device
*dev
)
2165 struct phy_device
*phydev
= to_phy_device(dev
);
2167 cancel_delayed_work_sync(&phydev
->state_queue
);
2169 mutex_lock(&phydev
->lock
);
2170 phydev
->state
= PHY_DOWN
;
2171 mutex_unlock(&phydev
->lock
);
2173 if (phydev
->drv
&& phydev
->drv
->remove
) {
2174 phydev
->drv
->remove(phydev
);
2176 /* Assert the reset signal */
2177 phy_device_reset(phydev
, 1);
2185 * phy_driver_register - register a phy_driver with the PHY layer
2186 * @new_driver: new phy_driver to register
2187 * @owner: module owning this PHY
2189 int phy_driver_register(struct phy_driver
*new_driver
, struct module
*owner
)
2193 new_driver
->mdiodrv
.flags
|= MDIO_DEVICE_IS_PHY
;
2194 new_driver
->mdiodrv
.driver
.name
= new_driver
->name
;
2195 new_driver
->mdiodrv
.driver
.bus
= &mdio_bus_type
;
2196 new_driver
->mdiodrv
.driver
.probe
= phy_probe
;
2197 new_driver
->mdiodrv
.driver
.remove
= phy_remove
;
2198 new_driver
->mdiodrv
.driver
.owner
= owner
;
2200 retval
= driver_register(&new_driver
->mdiodrv
.driver
);
2202 pr_err("%s: Error %d in registering driver\n",
2203 new_driver
->name
, retval
);
2208 pr_debug("%s: Registered new driver\n", new_driver
->name
);
2212 EXPORT_SYMBOL(phy_driver_register
);
2214 int phy_drivers_register(struct phy_driver
*new_driver
, int n
,
2215 struct module
*owner
)
2219 for (i
= 0; i
< n
; i
++) {
2220 ret
= phy_driver_register(new_driver
+ i
, owner
);
2223 phy_driver_unregister(new_driver
+ i
);
2229 EXPORT_SYMBOL(phy_drivers_register
);
2231 void phy_driver_unregister(struct phy_driver
*drv
)
2233 driver_unregister(&drv
->mdiodrv
.driver
);
2235 EXPORT_SYMBOL(phy_driver_unregister
);
2237 void phy_drivers_unregister(struct phy_driver
*drv
, int n
)
2241 for (i
= 0; i
< n
; i
++)
2242 phy_driver_unregister(drv
+ i
);
2244 EXPORT_SYMBOL(phy_drivers_unregister
);
2246 static struct phy_driver genphy_driver
= {
2247 .phy_id
= 0xffffffff,
2248 .phy_id_mask
= 0xffffffff,
2249 .name
= "Generic PHY",
2250 .soft_reset
= genphy_no_soft_reset
,
2251 .config_init
= genphy_config_init
,
2252 .features
= PHY_GBIT_ALL_PORTS_FEATURES
,
2253 .aneg_done
= genphy_aneg_done
,
2254 .suspend
= genphy_suspend
,
2255 .resume
= genphy_resume
,
2256 .set_loopback
= genphy_loopback
,
2259 static int __init
phy_init(void)
2263 rc
= mdio_bus_init();
2269 rc
= phy_driver_register(&genphy_10g_driver
, THIS_MODULE
);
2273 rc
= phy_driver_register(&genphy_driver
, THIS_MODULE
);
2275 phy_driver_unregister(&genphy_10g_driver
);
2283 static void __exit
phy_exit(void)
2285 phy_driver_unregister(&genphy_10g_driver
);
2286 phy_driver_unregister(&genphy_driver
);
2290 subsys_initcall(phy_init
);
2291 module_exit(phy_exit
);