blob: bfc2e14f3b51af0601a52e339b4ee3b789180da7 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001// SPDX-License-Identifier: GPL-2.0+
2/* Framework for finding and configuring PHYs.
3 * Also contains generic PHY driver
4 *
5 * Author: Andy Fleming
6 *
7 * Copyright (c) 2004 Freescale Semiconductor, Inc.
8 */
9
10#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
12#include <linux/kernel.h>
13#include <linux/string.h>
14#include <linux/errno.h>
15#include <linux/unistd.h>
16#include <linux/slab.h>
17#include <linux/interrupt.h>
18#include <linux/init.h>
19#include <linux/delay.h>
20#include <linux/netdevice.h>
21#include <linux/etherdevice.h>
22#include <linux/skbuff.h>
23#include <linux/mm.h>
24#include <linux/module.h>
25#include <linux/mii.h>
26#include <linux/ethtool.h>
27#include <linux/bitmap.h>
28#include <linux/phy.h>
29#include <linux/phy_led_triggers.h>
30#include <linux/sfp.h>
31#include <linux/mdio.h>
32#include <linux/io.h>
33#include <linux/uaccess.h>
34
35MODULE_DESCRIPTION("PHY library");
36MODULE_AUTHOR("Andy Fleming");
37MODULE_LICENSE("GPL");
38
39__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_features) __ro_after_init;
40EXPORT_SYMBOL_GPL(phy_basic_features);
41
42__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_t1_features) __ro_after_init;
43EXPORT_SYMBOL_GPL(phy_basic_t1_features);
44
45__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_features) __ro_after_init;
46EXPORT_SYMBOL_GPL(phy_gbit_features);
47
48__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_fibre_features) __ro_after_init;
49EXPORT_SYMBOL_GPL(phy_gbit_fibre_features);
50
51__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_all_ports_features) __ro_after_init;
52EXPORT_SYMBOL_GPL(phy_gbit_all_ports_features);
53
54__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_features) __ro_after_init;
55EXPORT_SYMBOL_GPL(phy_10gbit_features);
56
57__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_fec_features) __ro_after_init;
58EXPORT_SYMBOL_GPL(phy_10gbit_fec_features);
59
60const int phy_basic_ports_array[3] = {
61 ETHTOOL_LINK_MODE_Autoneg_BIT,
62 ETHTOOL_LINK_MODE_TP_BIT,
63 ETHTOOL_LINK_MODE_MII_BIT,
64};
65EXPORT_SYMBOL_GPL(phy_basic_ports_array);
66
67const int phy_fibre_port_array[1] = {
68 ETHTOOL_LINK_MODE_FIBRE_BIT,
69};
70EXPORT_SYMBOL_GPL(phy_fibre_port_array);
71
72const int phy_all_ports_features_array[7] = {
73 ETHTOOL_LINK_MODE_Autoneg_BIT,
74 ETHTOOL_LINK_MODE_TP_BIT,
75 ETHTOOL_LINK_MODE_MII_BIT,
76 ETHTOOL_LINK_MODE_FIBRE_BIT,
77 ETHTOOL_LINK_MODE_AUI_BIT,
78 ETHTOOL_LINK_MODE_BNC_BIT,
79 ETHTOOL_LINK_MODE_Backplane_BIT,
80};
81EXPORT_SYMBOL_GPL(phy_all_ports_features_array);
82
83const int phy_10_100_features_array[4] = {
84 ETHTOOL_LINK_MODE_10baseT_Half_BIT,
85 ETHTOOL_LINK_MODE_10baseT_Full_BIT,
86 ETHTOOL_LINK_MODE_100baseT_Half_BIT,
87 ETHTOOL_LINK_MODE_100baseT_Full_BIT,
88};
89EXPORT_SYMBOL_GPL(phy_10_100_features_array);
90
91const int phy_basic_t1_features_array[2] = {
92 ETHTOOL_LINK_MODE_TP_BIT,
93 ETHTOOL_LINK_MODE_100baseT1_Full_BIT,
94};
95EXPORT_SYMBOL_GPL(phy_basic_t1_features_array);
96
97const int phy_gbit_features_array[2] = {
98 ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
99 ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
100};
101EXPORT_SYMBOL_GPL(phy_gbit_features_array);
102
103const int phy_10gbit_features_array[1] = {
104 ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
105};
106EXPORT_SYMBOL_GPL(phy_10gbit_features_array);
107
108const int phy_10gbit_fec_features_array[1] = {
109 ETHTOOL_LINK_MODE_10000baseR_FEC_BIT,
110};
111EXPORT_SYMBOL_GPL(phy_10gbit_fec_features_array);
112
113__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_full_features) __ro_after_init;
114EXPORT_SYMBOL_GPL(phy_10gbit_full_features);
115
116static const int phy_10gbit_full_features_array[] = {
117 ETHTOOL_LINK_MODE_10baseT_Full_BIT,
118 ETHTOOL_LINK_MODE_100baseT_Full_BIT,
119 ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
120 ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
121};
122
123static void features_init(void)
124{
125 /* 10/100 half/full*/
126 linkmode_set_bit_array(phy_basic_ports_array,
127 ARRAY_SIZE(phy_basic_ports_array),
128 phy_basic_features);
129 linkmode_set_bit_array(phy_10_100_features_array,
130 ARRAY_SIZE(phy_10_100_features_array),
131 phy_basic_features);
132
133 /* 100 full, TP */
134 linkmode_set_bit_array(phy_basic_t1_features_array,
135 ARRAY_SIZE(phy_basic_t1_features_array),
136 phy_basic_t1_features);
137
138 /* 10/100 half/full + 1000 half/full */
139 linkmode_set_bit_array(phy_basic_ports_array,
140 ARRAY_SIZE(phy_basic_ports_array),
141 phy_gbit_features);
142 linkmode_set_bit_array(phy_10_100_features_array,
143 ARRAY_SIZE(phy_10_100_features_array),
144 phy_gbit_features);
145 linkmode_set_bit_array(phy_gbit_features_array,
146 ARRAY_SIZE(phy_gbit_features_array),
147 phy_gbit_features);
148
149 /* 10/100 half/full + 1000 half/full + fibre*/
150 linkmode_set_bit_array(phy_basic_ports_array,
151 ARRAY_SIZE(phy_basic_ports_array),
152 phy_gbit_fibre_features);
153 linkmode_set_bit_array(phy_10_100_features_array,
154 ARRAY_SIZE(phy_10_100_features_array),
155 phy_gbit_fibre_features);
156 linkmode_set_bit_array(phy_gbit_features_array,
157 ARRAY_SIZE(phy_gbit_features_array),
158 phy_gbit_fibre_features);
159 linkmode_set_bit_array(phy_fibre_port_array,
160 ARRAY_SIZE(phy_fibre_port_array),
161 phy_gbit_fibre_features);
162
163 /* 10/100 half/full + 1000 half/full + TP/MII/FIBRE/AUI/BNC/Backplane*/
164 linkmode_set_bit_array(phy_all_ports_features_array,
165 ARRAY_SIZE(phy_all_ports_features_array),
166 phy_gbit_all_ports_features);
167 linkmode_set_bit_array(phy_10_100_features_array,
168 ARRAY_SIZE(phy_10_100_features_array),
169 phy_gbit_all_ports_features);
170 linkmode_set_bit_array(phy_gbit_features_array,
171 ARRAY_SIZE(phy_gbit_features_array),
172 phy_gbit_all_ports_features);
173
174 /* 10/100 half/full + 1000 half/full + 10G full*/
175 linkmode_set_bit_array(phy_all_ports_features_array,
176 ARRAY_SIZE(phy_all_ports_features_array),
177 phy_10gbit_features);
178 linkmode_set_bit_array(phy_10_100_features_array,
179 ARRAY_SIZE(phy_10_100_features_array),
180 phy_10gbit_features);
181 linkmode_set_bit_array(phy_gbit_features_array,
182 ARRAY_SIZE(phy_gbit_features_array),
183 phy_10gbit_features);
184 linkmode_set_bit_array(phy_10gbit_features_array,
185 ARRAY_SIZE(phy_10gbit_features_array),
186 phy_10gbit_features);
187
188 /* 10/100/1000/10G full */
189 linkmode_set_bit_array(phy_all_ports_features_array,
190 ARRAY_SIZE(phy_all_ports_features_array),
191 phy_10gbit_full_features);
192 linkmode_set_bit_array(phy_10gbit_full_features_array,
193 ARRAY_SIZE(phy_10gbit_full_features_array),
194 phy_10gbit_full_features);
195 /* 10G FEC only */
196 linkmode_set_bit_array(phy_10gbit_fec_features_array,
197 ARRAY_SIZE(phy_10gbit_fec_features_array),
198 phy_10gbit_fec_features);
199}
200
201void phy_device_free(struct phy_device *phydev)
202{
203 put_device(&phydev->mdio.dev);
204}
205EXPORT_SYMBOL(phy_device_free);
206
207static void phy_mdio_device_free(struct mdio_device *mdiodev)
208{
209 struct phy_device *phydev;
210
211 phydev = container_of(mdiodev, struct phy_device, mdio);
212 phy_device_free(phydev);
213}
214
215static void phy_device_release(struct device *dev)
216{
217 kfree(to_phy_device(dev));
218}
219
220static void phy_mdio_device_remove(struct mdio_device *mdiodev)
221{
222 struct phy_device *phydev;
223
224 phydev = container_of(mdiodev, struct phy_device, mdio);
225 phy_device_remove(phydev);
226}
227
228static struct phy_driver genphy_driver;
229extern struct phy_driver genphy_c45_driver;
230
231static LIST_HEAD(phy_fixup_list);
232static DEFINE_MUTEX(phy_fixup_lock);
233
234#ifdef CONFIG_PM
235static bool mdio_bus_phy_may_suspend(struct phy_device *phydev)
236{
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;
240
241 if (!drv || !phydrv->suspend)
242 return false;
243
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.
248 */
249 if (!netdev)
250 goto out;
251
252 if (netdev->wol_enabled)
253 return false;
254
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.
259 */
260 if (netdev->dev.parent && device_may_wakeup(netdev->dev.parent))
261 return false;
262
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,
265 * e.g. SoC devices.
266 */
267 if (device_may_wakeup(&netdev->dev))
268 return false;
269
270out:
271 return !phydev->suspended;
272}
273
274static int mdio_bus_phy_suspend(struct device *dev)
275{
276 struct phy_device *phydev = to_phy_device(dev);
277
278 /* We must stop the state machine manually, otherwise it stops out of
279 * control, possibly with the phydev->lock held. Upon resume, netdev
280 * may call phy routines that try to grab the same lock, and that may
281 * lead to a deadlock.
282 */
283 if (phydev->attached_dev && phydev->adjust_link)
284 phy_stop_machine(phydev);
285
286 if (!mdio_bus_phy_may_suspend(phydev))
287 return 0;
288
289 phydev->suspended_by_mdio_bus = 1;
290
291 return phy_suspend(phydev);
292}
293
294static int mdio_bus_phy_resume(struct device *dev)
295{
296 struct phy_device *phydev = to_phy_device(dev);
297 int ret;
298
299 if (!phydev->suspended_by_mdio_bus)
300 goto no_resume;
301
302 phydev->suspended_by_mdio_bus = 0;
303
304 ret = phy_resume(phydev);
305 if (ret < 0)
306 return ret;
307
308no_resume:
309 if (phydev->attached_dev && phydev->adjust_link)
310 phy_start_machine(phydev);
311
312 return 0;
313}
314
315static int mdio_bus_phy_restore(struct device *dev)
316{
317 struct phy_device *phydev = to_phy_device(dev);
318 struct net_device *netdev = phydev->attached_dev;
319 int ret;
320
321 if (!netdev)
322 return 0;
323
324 ret = phy_init_hw(phydev);
325 if (ret < 0)
326 return ret;
327
328 if (phydev->attached_dev && phydev->adjust_link)
329 phy_start_machine(phydev);
330
331 return 0;
332}
333
334static const struct dev_pm_ops mdio_bus_phy_pm_ops = {
335 .suspend = mdio_bus_phy_suspend,
336 .resume = mdio_bus_phy_resume,
337 .freeze = mdio_bus_phy_suspend,
338 .thaw = mdio_bus_phy_resume,
339 .restore = mdio_bus_phy_restore,
340};
341
342#define MDIO_BUS_PHY_PM_OPS (&mdio_bus_phy_pm_ops)
343
344#else
345
346#define MDIO_BUS_PHY_PM_OPS NULL
347
348#endif /* CONFIG_PM */
349
350/**
351 * phy_register_fixup - creates a new phy_fixup and adds it to the list
352 * @bus_id: A string which matches phydev->mdio.dev.bus_id (or PHY_ANY_ID)
353 * @phy_uid: Used to match against phydev->phy_id (the UID of the PHY)
354 * It can also be PHY_ANY_UID
355 * @phy_uid_mask: Applied to phydev->phy_id and fixup->phy_uid before
356 * comparison
357 * @run: The actual code to be run when a matching PHY is found
358 */
359int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
360 int (*run)(struct phy_device *))
361{
362 struct phy_fixup *fixup = kzalloc(sizeof(*fixup), GFP_KERNEL);
363
364 if (!fixup)
365 return -ENOMEM;
366
367 strlcpy(fixup->bus_id, bus_id, sizeof(fixup->bus_id));
368 fixup->phy_uid = phy_uid;
369 fixup->phy_uid_mask = phy_uid_mask;
370 fixup->run = run;
371
372 mutex_lock(&phy_fixup_lock);
373 list_add_tail(&fixup->list, &phy_fixup_list);
374 mutex_unlock(&phy_fixup_lock);
375
376 return 0;
377}
378EXPORT_SYMBOL(phy_register_fixup);
379
380/* Registers a fixup to be run on any PHY with the UID in phy_uid */
381int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask,
382 int (*run)(struct phy_device *))
383{
384 return phy_register_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask, run);
385}
386EXPORT_SYMBOL(phy_register_fixup_for_uid);
387
388/* Registers a fixup to be run on the PHY with id string bus_id */
389int phy_register_fixup_for_id(const char *bus_id,
390 int (*run)(struct phy_device *))
391{
392 return phy_register_fixup(bus_id, PHY_ANY_UID, 0xffffffff, run);
393}
394EXPORT_SYMBOL(phy_register_fixup_for_id);
395
396/**
397 * phy_unregister_fixup - remove a phy_fixup from the list
398 * @bus_id: A string matches fixup->bus_id (or PHY_ANY_ID) in phy_fixup_list
399 * @phy_uid: A phy id matches fixup->phy_id (or PHY_ANY_UID) in phy_fixup_list
400 * @phy_uid_mask: Applied to phy_uid and fixup->phy_uid before comparison
401 */
402int phy_unregister_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask)
403{
404 struct list_head *pos, *n;
405 struct phy_fixup *fixup;
406 int ret;
407
408 ret = -ENODEV;
409
410 mutex_lock(&phy_fixup_lock);
411 list_for_each_safe(pos, n, &phy_fixup_list) {
412 fixup = list_entry(pos, struct phy_fixup, list);
413
414 if ((!strcmp(fixup->bus_id, bus_id)) &&
415 ((fixup->phy_uid & phy_uid_mask) ==
416 (phy_uid & phy_uid_mask))) {
417 list_del(&fixup->list);
418 kfree(fixup);
419 ret = 0;
420 break;
421 }
422 }
423 mutex_unlock(&phy_fixup_lock);
424
425 return ret;
426}
427EXPORT_SYMBOL(phy_unregister_fixup);
428
429/* Unregisters a fixup of any PHY with the UID in phy_uid */
430int phy_unregister_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask)
431{
432 return phy_unregister_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask);
433}
434EXPORT_SYMBOL(phy_unregister_fixup_for_uid);
435
436/* Unregisters a fixup of the PHY with id string bus_id */
437int phy_unregister_fixup_for_id(const char *bus_id)
438{
439 return phy_unregister_fixup(bus_id, PHY_ANY_UID, 0xffffffff);
440}
441EXPORT_SYMBOL(phy_unregister_fixup_for_id);
442
443/* Returns 1 if fixup matches phydev in bus_id and phy_uid.
444 * Fixups can be set to match any in one or more fields.
445 */
446static int phy_needs_fixup(struct phy_device *phydev, struct phy_fixup *fixup)
447{
448 if (strcmp(fixup->bus_id, phydev_name(phydev)) != 0)
449 if (strcmp(fixup->bus_id, PHY_ANY_ID) != 0)
450 return 0;
451
452 if ((fixup->phy_uid & fixup->phy_uid_mask) !=
453 (phydev->phy_id & fixup->phy_uid_mask))
454 if (fixup->phy_uid != PHY_ANY_UID)
455 return 0;
456
457 return 1;
458}
459
460/* Runs any matching fixups for this phydev */
461static int phy_scan_fixups(struct phy_device *phydev)
462{
463 struct phy_fixup *fixup;
464
465 mutex_lock(&phy_fixup_lock);
466 list_for_each_entry(fixup, &phy_fixup_list, list) {
467 if (phy_needs_fixup(phydev, fixup)) {
468 int err = fixup->run(phydev);
469
470 if (err < 0) {
471 mutex_unlock(&phy_fixup_lock);
472 return err;
473 }
474 phydev->has_fixups = true;
475 }
476 }
477 mutex_unlock(&phy_fixup_lock);
478
479 return 0;
480}
481
482static int phy_bus_match(struct device *dev, struct device_driver *drv)
483{
484 struct phy_device *phydev = to_phy_device(dev);
485 struct phy_driver *phydrv = to_phy_driver(drv);
486 const int num_ids = ARRAY_SIZE(phydev->c45_ids.device_ids);
487 int i;
488
489 if (!(phydrv->mdiodrv.flags & MDIO_DEVICE_IS_PHY))
490 return 0;
491
492 if (phydrv->match_phy_device)
493 return phydrv->match_phy_device(phydev);
494
495 if (phydev->is_c45) {
496 for (i = 1; i < num_ids; i++) {
497 if (phydev->c45_ids.device_ids[i] == 0xffffffff)
498 continue;
499
500 if ((phydrv->phy_id & phydrv->phy_id_mask) ==
501 (phydev->c45_ids.device_ids[i] &
502 phydrv->phy_id_mask))
503 return 1;
504 }
505 return 0;
506 } else {
507 return (phydrv->phy_id & phydrv->phy_id_mask) ==
508 (phydev->phy_id & phydrv->phy_id_mask);
509 }
510}
511
512static ssize_t
513phy_id_show(struct device *dev, struct device_attribute *attr, char *buf)
514{
515 struct phy_device *phydev = to_phy_device(dev);
516
517 return sprintf(buf, "0x%.8lx\n", (unsigned long)phydev->phy_id);
518}
519static DEVICE_ATTR_RO(phy_id);
520
521static ssize_t
522phy_interface_show(struct device *dev, struct device_attribute *attr, char *buf)
523{
524 struct phy_device *phydev = to_phy_device(dev);
525 const char *mode = NULL;
526
527 if (phy_is_internal(phydev))
528 mode = "internal";
529 else
530 mode = phy_modes(phydev->interface);
531
532 return sprintf(buf, "%s\n", mode);
533}
534static DEVICE_ATTR_RO(phy_interface);
535
536static ssize_t
537phy_has_fixups_show(struct device *dev, struct device_attribute *attr,
538 char *buf)
539{
540 struct phy_device *phydev = to_phy_device(dev);
541
542 return sprintf(buf, "%d\n", phydev->has_fixups);
543}
544static DEVICE_ATTR_RO(phy_has_fixups);
545
546static struct attribute *phy_dev_attrs[] = {
547 &dev_attr_phy_id.attr,
548 &dev_attr_phy_interface.attr,
549 &dev_attr_phy_has_fixups.attr,
550 NULL,
551};
552ATTRIBUTE_GROUPS(phy_dev);
553
554static const struct device_type mdio_bus_phy_type = {
555 .name = "PHY",
556 .groups = phy_dev_groups,
557 .release = phy_device_release,
558 .pm = MDIO_BUS_PHY_PM_OPS,
559};
560
561static int phy_request_driver_module(struct phy_device *dev, u32 phy_id)
562{
563 int ret;
564
565 ret = request_module(MDIO_MODULE_PREFIX MDIO_ID_FMT,
566 MDIO_ID_ARGS(phy_id));
567 /* We only check for failures in executing the usermode binary,
568 * not whether a PHY driver module exists for the PHY ID.
569 * Accept -ENOENT because this may occur in case no initramfs exists,
570 * then modprobe isn't available.
571 */
572 if (IS_ENABLED(CONFIG_MODULES) && ret < 0 && ret != -ENOENT) {
573 phydev_err(dev, "error %d loading PHY driver module for ID 0x%08lx\n",
574 ret, (unsigned long)phy_id);
575 return ret;
576 }
577
578 return 0;
579}
580
581struct phy_device *phy_device_create(struct mii_bus *bus, int addr, u32 phy_id,
582 bool is_c45,
583 struct phy_c45_device_ids *c45_ids)
584{
585 struct phy_device *dev;
586 struct mdio_device *mdiodev;
587 int ret = 0;
588
589 /* We allocate the device, and initialize the default values */
590 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
591 if (!dev)
592 return ERR_PTR(-ENOMEM);
593
594 mdiodev = &dev->mdio;
595 mdiodev->dev.parent = &bus->dev;
596 mdiodev->dev.bus = &mdio_bus_type;
597 mdiodev->dev.type = &mdio_bus_phy_type;
598 mdiodev->bus = bus;
599 mdiodev->bus_match = phy_bus_match;
600 mdiodev->addr = addr;
601 mdiodev->flags = MDIO_DEVICE_FLAG_PHY;
602 mdiodev->device_free = phy_mdio_device_free;
603 mdiodev->device_remove = phy_mdio_device_remove;
604
605 dev->speed = SPEED_UNKNOWN;
606 dev->duplex = DUPLEX_UNKNOWN;
607 dev->pause = 0;
608 dev->asym_pause = 0;
609 dev->link = 0;
610 dev->interface = PHY_INTERFACE_MODE_GMII;
611
612 dev->autoneg = AUTONEG_ENABLE;
613
614 dev->is_c45 = is_c45;
615 dev->phy_id = phy_id;
616 if (c45_ids)
617 dev->c45_ids = *c45_ids;
618 dev->irq = bus->irq[addr];
619
620 dev_set_name(&mdiodev->dev, PHY_ID_FMT, bus->id, addr);
621 device_initialize(&mdiodev->dev);
622
623 dev->state = PHY_DOWN;
624
625 mutex_init(&dev->lock);
626 INIT_DELAYED_WORK(&dev->state_queue, phy_state_machine);
627
628 /* Request the appropriate module unconditionally; don't
629 * bother trying to do so only if it isn't already loaded,
630 * because that gets complicated. A hotplug event would have
631 * done an unconditional modprobe anyway.
632 * We don't do normal hotplug because it won't work for MDIO
633 * -- because it relies on the device staying around for long
634 * enough for the driver to get loaded. With MDIO, the NIC
635 * driver will get bored and give up as soon as it finds that
636 * there's no driver _already_ loaded.
637 */
638 if (is_c45 && c45_ids) {
639 const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
640 int i;
641
642 for (i = 1; i < num_ids; i++) {
643 if (c45_ids->device_ids[i] == 0xffffffff)
644 continue;
645
646 ret = phy_request_driver_module(dev,
647 c45_ids->device_ids[i]);
648 if (ret)
649 break;
650 }
651 } else {
652 ret = phy_request_driver_module(dev, phy_id);
653 }
654
655 if (ret) {
656 put_device(&mdiodev->dev);
657 dev = ERR_PTR(ret);
658 }
659
660 return dev;
661}
662EXPORT_SYMBOL(phy_device_create);
663
664/* get_phy_c45_devs_in_pkg - reads a MMD's devices in package registers.
665 * @bus: the target MII bus
666 * @addr: PHY address on the MII bus
667 * @dev_addr: MMD address in the PHY.
668 * @devices_in_package: where to store the devices in package information.
669 *
670 * Description: reads devices in package registers of a MMD at @dev_addr
671 * from PHY at @addr on @bus.
672 *
673 * Returns: 0 on success, -EIO on failure.
674 */
675static int get_phy_c45_devs_in_pkg(struct mii_bus *bus, int addr, int dev_addr,
676 u32 *devices_in_package)
677{
678 int phy_reg, reg_addr;
679
680 reg_addr = MII_ADDR_C45 | dev_addr << 16 | MDIO_DEVS2;
681 phy_reg = mdiobus_read(bus, addr, reg_addr);
682 if (phy_reg < 0)
683 return -EIO;
684 *devices_in_package = phy_reg << 16;
685
686 reg_addr = MII_ADDR_C45 | dev_addr << 16 | MDIO_DEVS1;
687 phy_reg = mdiobus_read(bus, addr, reg_addr);
688 if (phy_reg < 0)
689 return -EIO;
690 *devices_in_package |= phy_reg;
691
692 /* Bit 0 doesn't represent a device, it indicates c22 regs presence */
693 *devices_in_package &= ~BIT(0);
694
695 return 0;
696}
697
698/**
699 * get_phy_c45_ids - reads the specified addr for its 802.3-c45 IDs.
700 * @bus: the target MII bus
701 * @addr: PHY address on the MII bus
702 * @phy_id: where to store the ID retrieved.
703 * @c45_ids: where to store the c45 ID information.
704 *
705 * If the PHY devices-in-package appears to be valid, it and the
706 * corresponding identifiers are stored in @c45_ids, zero is stored
707 * in @phy_id. Otherwise 0xffffffff is stored in @phy_id. Returns
708 * zero on success.
709 *
710 */
711static int get_phy_c45_ids(struct mii_bus *bus, int addr, u32 *phy_id,
712 struct phy_c45_device_ids *c45_ids) {
713 int phy_reg;
714 int i, reg_addr;
715 const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
716 u32 *devs = &c45_ids->devices_in_package;
717
718 /* Find first non-zero Devices In package. Device zero is reserved
719 * for 802.3 c45 complied PHYs, so don't probe it at first.
720 */
721 for (i = 1; i < num_ids && *devs == 0; i++) {
722 phy_reg = get_phy_c45_devs_in_pkg(bus, addr, i, devs);
723 if (phy_reg < 0)
724 return -EIO;
725
726 if ((*devs & 0x1fffffff) == 0x1fffffff) {
727 /* If mostly Fs, there is no device there,
728 * then let's continue to probe more, as some
729 * 10G PHYs have zero Devices In package,
730 * e.g. Cortina CS4315/CS4340 PHY.
731 */
732 phy_reg = get_phy_c45_devs_in_pkg(bus, addr, 0, devs);
733 if (phy_reg < 0)
734 return -EIO;
735 /* no device there, let's get out of here */
736 if ((*devs & 0x1fffffff) == 0x1fffffff) {
737 *phy_id = 0xffffffff;
738 return 0;
739 } else {
740 break;
741 }
742 }
743 }
744
745 /* Now probe Device Identifiers for each device present. */
746 for (i = 1; i < num_ids; i++) {
747 if (!(c45_ids->devices_in_package & (1 << i)))
748 continue;
749
750 reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID1;
751 phy_reg = mdiobus_read(bus, addr, reg_addr);
752 if (phy_reg < 0)
753 return -EIO;
754 c45_ids->device_ids[i] = phy_reg << 16;
755
756 reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID2;
757 phy_reg = mdiobus_read(bus, addr, reg_addr);
758 if (phy_reg < 0)
759 return -EIO;
760 c45_ids->device_ids[i] |= phy_reg;
761 }
762 *phy_id = 0;
763 return 0;
764}
765
766/**
767 * get_phy_id - reads the specified addr for its ID.
768 * @bus: the target MII bus
769 * @addr: PHY address on the MII bus
770 * @phy_id: where to store the ID retrieved.
771 * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
772 * @c45_ids: where to store the c45 ID information.
773 *
774 * Description: In the case of a 802.3-c22 PHY, reads the ID registers
775 * of the PHY at @addr on the @bus, stores it in @phy_id and returns
776 * zero on success.
777 *
778 * In the case of a 802.3-c45 PHY, get_phy_c45_ids() is invoked, and
779 * its return value is in turn returned.
780 *
781 */
782static int get_phy_id(struct mii_bus *bus, int addr, u32 *phy_id,
783 bool is_c45, struct phy_c45_device_ids *c45_ids)
784{
785 int phy_reg;
786
787 if (is_c45)
788 return get_phy_c45_ids(bus, addr, phy_id, c45_ids);
789
790 /* Grab the bits from PHYIR1, and put them in the upper half */
791 phy_reg = mdiobus_read(bus, addr, MII_PHYSID1);
792 if (phy_reg < 0) {
793 /* returning -ENODEV doesn't stop bus scanning */
794 return (phy_reg == -EIO || phy_reg == -ENODEV) ? -ENODEV : -EIO;
795 }
796
797 *phy_id = phy_reg << 16;
798
799 /* Grab the bits from PHYIR2, and put them in the lower half */
800 phy_reg = mdiobus_read(bus, addr, MII_PHYSID2);
801 if (phy_reg < 0) {
802 /* returning -ENODEV doesn't stop bus scanning */
803 return (phy_reg == -EIO || phy_reg == -ENODEV) ? -ENODEV : -EIO;
804 }
805
806 *phy_id |= phy_reg;
807
808 return 0;
809}
810
811/**
b.liub17525e2025-05-14 17:22:29 +0800812 * get_phy_c22_id - reads the specified addr for its clause 22 ID.
813 * @bus: the target MII bus
814 * @addr: PHY address on the MII bus
815 * @phy_id: where to store the ID retrieved.
816 *
817 * Read the 802.3 clause 22 PHY ID from the PHY at @addr on the @bus,
818 * placing it in @phy_id. Return zero on successful read and the ID is
819 * valid, %-EIO on bus access error, or %-ENODEV if no device responds
820 * or invalid ID.
821 */
822
823static int get_phy_c22_id(struct mii_bus *bus, int addr, u32 *phy_id)
824{
825 int phy_reg;
826
827 /* Grab the bits from PHYIR1, and put them in the upper half */
828// phy_reg = mdiobus_read(bus, addr, MII_PHYSID1);
829#ifdef CONFIG_JLSEMI_PHY
830 mdiobus_write(bus, addr, 0x0d, 1);
831 mdiobus_write(bus, addr, 0x0e, 2);
832 mdiobus_write(bus, addr, 0x0d, 0x4000 | 1);
833 phy_reg = mdiobus_read(bus, addr, 0x0e);
834#else
835 phy_reg = mdiobus_read(bus, addr, MII_PHYSID1);
836#endif
837 if (phy_reg < 0) {
838 /* returning -ENODEV doesn't stop bus scanning */
839 return (phy_reg == -EIO || phy_reg == -ENODEV) ? -ENODEV : -EIO;
840 }
841
842 *phy_id = phy_reg << 16;
843
844 /* Grab the bits from PHYIR2, and put them in the lower half */
845// phy_reg = mdiobus_read(bus, addr, MII_PHYSID2);
846#ifdef CONFIG_JLSEMI_PHY
847 mdiobus_write(bus, addr, 0x0d, 1);
848 mdiobus_write(bus, addr, 0x0e, 3);
849 mdiobus_write(bus, addr, 0x0d, 0x4000 | 1);
850 phy_reg = mdiobus_read(bus, addr, 0x0e);
851#else
852 phy_reg = mdiobus_read(bus, addr, MII_PHYSID2);
853#endif
854 if (phy_reg < 0) {
855 /* returning -ENODEV doesn't stop bus scanning */
856 return (phy_reg == -EIO || phy_reg == -ENODEV) ? -ENODEV : -EIO;
857 }
858
859 *phy_id |= phy_reg;
860
861#ifdef CONFIG_JLSEMI_PHY
862 printk("[%s] read with c45 phy id:0x%x addr:0x%x\n", __func__, *phy_id, addr);
863#else
864 printk("[%s] read with c22 phy id:0x%x\n", __func__, *phy_id);
865#endif
866 /* If the phy_id is mostly Fs, there is no device there */
867 if ((*phy_id & 0x1fffffff) == 0x1fffffff)
868 return -ENODEV;
869
870 return 0;
871}
872
873/**
b.liue9582032025-04-17 19:18:16 +0800874 * get_phy_device - reads the specified PHY device and returns its @phy_device
875 * struct
876 * @bus: the target MII bus
877 * @addr: PHY address on the MII bus
878 * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
879 *
880 * Description: Reads the ID registers of the PHY at @addr on the
881 * @bus, then allocates and returns the phy_device to represent it.
882 */
883struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45)
884{
885 struct phy_c45_device_ids c45_ids;
886 u32 phy_id = 0;
887 int r;
888
889 c45_ids.devices_in_package = 0;
890 memset(c45_ids.device_ids, 0xff, sizeof(c45_ids.device_ids));
891
b.liub17525e2025-05-14 17:22:29 +0800892 //r = get_phy_id(bus, addr, &phy_id, is_c45, &c45_ids);
893 r = get_phy_c22_id(bus, addr, &phy_id);
b.liue9582032025-04-17 19:18:16 +0800894 if (r)
895 return ERR_PTR(r);
896
897 /* If the phy_id is mostly Fs, there is no device there */
898 if ((phy_id & 0x1fffffff) == 0x1fffffff)
899 return ERR_PTR(-ENODEV);
900
901 return phy_device_create(bus, addr, phy_id, is_c45, &c45_ids);
902}
903EXPORT_SYMBOL(get_phy_device);
904
905/**
906 * phy_device_register - Register the phy device on the MDIO bus
907 * @phydev: phy_device structure to be added to the MDIO bus
908 */
909int phy_device_register(struct phy_device *phydev)
910{
911 int err;
912
913 err = mdiobus_register_device(&phydev->mdio);
914 if (err)
915 return err;
916
917 /* Deassert the reset signal */
918 phy_device_reset(phydev, 0);
919
920 /* Run all of the fixups for this PHY */
921 err = phy_scan_fixups(phydev);
922 if (err) {
923 phydev_err(phydev, "failed to initialize\n");
924 goto out;
925 }
926
927 err = device_add(&phydev->mdio.dev);
928 if (err) {
929 phydev_err(phydev, "failed to add\n");
930 goto out;
931 }
932
933 return 0;
934
935 out:
936 /* Assert the reset signal */
937 phy_device_reset(phydev, 1);
938
939 mdiobus_unregister_device(&phydev->mdio);
940 return err;
941}
942EXPORT_SYMBOL(phy_device_register);
943
944/**
945 * phy_device_remove - Remove a previously registered phy device from the MDIO bus
946 * @phydev: phy_device structure to remove
947 *
948 * This doesn't free the phy_device itself, it merely reverses the effects
949 * of phy_device_register(). Use phy_device_free() to free the device
950 * after calling this function.
951 */
952void phy_device_remove(struct phy_device *phydev)
953{
954 device_del(&phydev->mdio.dev);
955
956 /* Assert the reset signal */
957 phy_device_reset(phydev, 1);
958
959 mdiobus_unregister_device(&phydev->mdio);
960}
961EXPORT_SYMBOL(phy_device_remove);
962
963/**
964 * phy_find_first - finds the first PHY device on the bus
965 * @bus: the target MII bus
966 */
967struct phy_device *phy_find_first(struct mii_bus *bus)
968{
969 struct phy_device *phydev;
970 int addr;
971
972 for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
973 phydev = mdiobus_get_phy(bus, addr);
974 if (phydev)
975 return phydev;
976 }
977 return NULL;
978}
979EXPORT_SYMBOL(phy_find_first);
980
981static void phy_link_change(struct phy_device *phydev, bool up, bool do_carrier)
982{
983 struct net_device *netdev = phydev->attached_dev;
984
985 if (do_carrier) {
986 if (up)
987 netif_carrier_on(netdev);
988 else
989 netif_carrier_off(netdev);
990 }
991 phydev->adjust_link(netdev);
992}
993
994/**
995 * phy_prepare_link - prepares the PHY layer to monitor link status
996 * @phydev: target phy_device struct
997 * @handler: callback function for link status change notifications
998 *
999 * Description: Tells the PHY infrastructure to handle the
1000 * gory details on monitoring link status (whether through
1001 * polling or an interrupt), and to call back to the
1002 * connected device driver when the link status changes.
1003 * If you want to monitor your own link state, don't call
1004 * this function.
1005 */
1006static void phy_prepare_link(struct phy_device *phydev,
1007 void (*handler)(struct net_device *))
1008{
1009 phydev->adjust_link = handler;
1010}
1011
1012/**
1013 * phy_connect_direct - connect an ethernet device to a specific phy_device
1014 * @dev: the network device to connect
1015 * @phydev: the pointer to the phy device
1016 * @handler: callback function for state change notifications
1017 * @interface: PHY device's interface
1018 */
1019int phy_connect_direct(struct net_device *dev, struct phy_device *phydev,
1020 void (*handler)(struct net_device *),
1021 phy_interface_t interface)
1022{
1023 int rc;
1024
1025 if (!dev)
1026 return -EINVAL;
1027
1028 rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
1029 if (rc)
1030 return rc;
1031
1032 phy_prepare_link(phydev, handler);
1033 if (phy_interrupt_is_valid(phydev))
1034 phy_request_interrupt(phydev);
1035
1036 return 0;
1037}
1038EXPORT_SYMBOL(phy_connect_direct);
1039
1040/**
1041 * phy_connect - connect an ethernet device to a PHY device
1042 * @dev: the network device to connect
1043 * @bus_id: the id string of the PHY device to connect
1044 * @handler: callback function for state change notifications
1045 * @interface: PHY device's interface
1046 *
1047 * Description: Convenience function for connecting ethernet
1048 * devices to PHY devices. The default behavior is for
1049 * the PHY infrastructure to handle everything, and only notify
1050 * the connected driver when the link status changes. If you
1051 * don't want, or can't use the provided functionality, you may
1052 * choose to call only the subset of functions which provide
1053 * the desired functionality.
1054 */
1055struct phy_device *phy_connect(struct net_device *dev, const char *bus_id,
1056 void (*handler)(struct net_device *),
1057 phy_interface_t interface)
1058{
1059 struct phy_device *phydev;
1060 struct device *d;
1061 int rc;
1062
1063 /* Search the list of PHY devices on the mdio bus for the
1064 * PHY with the requested name
1065 */
1066 d = bus_find_device_by_name(&mdio_bus_type, NULL, bus_id);
1067 if (!d) {
1068 pr_err("PHY %s not found\n", bus_id);
1069 return ERR_PTR(-ENODEV);
1070 }
1071 phydev = to_phy_device(d);
1072
1073 rc = phy_connect_direct(dev, phydev, handler, interface);
1074 put_device(d);
1075 if (rc)
1076 return ERR_PTR(rc);
1077
1078 return phydev;
1079}
1080EXPORT_SYMBOL(phy_connect);
1081
1082/**
1083 * phy_disconnect - disable interrupts, stop state machine, and detach a PHY
1084 * device
1085 * @phydev: target phy_device struct
1086 */
1087void phy_disconnect(struct phy_device *phydev)
1088{
1089 if (phy_is_started(phydev))
1090 phy_stop(phydev);
1091
1092 if (phy_interrupt_is_valid(phydev))
1093 phy_free_interrupt(phydev);
1094
1095 phydev->adjust_link = NULL;
1096
1097 phy_detach(phydev);
1098}
1099EXPORT_SYMBOL(phy_disconnect);
1100
1101/**
1102 * phy_poll_reset - Safely wait until a PHY reset has properly completed
1103 * @phydev: The PHY device to poll
1104 *
1105 * Description: According to IEEE 802.3, Section 2, Subsection 22.2.4.1.1, as
1106 * published in 2008, a PHY reset may take up to 0.5 seconds. The MII BMCR
1107 * register must be polled until the BMCR_RESET bit clears.
1108 *
1109 * Furthermore, any attempts to write to PHY registers may have no effect
1110 * or even generate MDIO bus errors until this is complete.
1111 *
1112 * Some PHYs (such as the Marvell 88E1111) don't entirely conform to the
1113 * standard and do not fully reset after the BMCR_RESET bit is set, and may
1114 * even *REQUIRE* a soft-reset to properly restart autonegotiation. In an
1115 * effort to support such broken PHYs, this function is separate from the
1116 * standard phy_init_hw() which will zero all the other bits in the BMCR
1117 * and reapply all driver-specific and board-specific fixups.
1118 */
1119static int phy_poll_reset(struct phy_device *phydev)
1120{
1121 /* Poll until the reset bit clears (50ms per retry == 0.6 sec) */
1122 unsigned int retries = 12;
1123 int ret;
1124
1125 do {
1126 msleep(50);
1127 ret = phy_read(phydev, MII_BMCR);
1128 if (ret < 0)
1129 return ret;
1130 } while (ret & BMCR_RESET && --retries);
1131 if (ret & BMCR_RESET)
1132 return -ETIMEDOUT;
1133
1134 /* Some chips (smsc911x) may still need up to another 1ms after the
1135 * BMCR_RESET bit is cleared before they are usable.
1136 */
1137 msleep(1);
1138 return 0;
1139}
1140
1141int phy_init_hw(struct phy_device *phydev)
1142{
1143 int ret = 0;
1144
1145 /* Deassert the reset signal */
1146 phy_device_reset(phydev, 0);
1147
1148 if (!phydev->drv)
1149 return 0;
1150
1151 if (phydev->drv->soft_reset)
1152 ret = phydev->drv->soft_reset(phydev);
1153
1154 if (ret < 0)
1155 return ret;
1156
1157 ret = phy_scan_fixups(phydev);
1158 if (ret < 0)
1159 return ret;
1160
1161 if (phydev->drv->config_init)
1162 ret = phydev->drv->config_init(phydev);
1163
1164 return ret;
1165}
1166EXPORT_SYMBOL(phy_init_hw);
1167
1168void phy_attached_info(struct phy_device *phydev)
1169{
1170 phy_attached_print(phydev, NULL);
1171}
1172EXPORT_SYMBOL(phy_attached_info);
1173
1174#define ATTACHED_FMT "attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%s)"
1175void phy_attached_print(struct phy_device *phydev, const char *fmt, ...)
1176{
1177 const char *drv_name = phydev->drv ? phydev->drv->name : "unbound";
1178 char *irq_str;
1179 char irq_num[8];
1180
1181 switch(phydev->irq) {
1182 case PHY_POLL:
1183 irq_str = "POLL";
1184 break;
1185 case PHY_IGNORE_INTERRUPT:
1186 irq_str = "IGNORE";
1187 break;
1188 default:
1189 snprintf(irq_num, sizeof(irq_num), "%d", phydev->irq);
1190 irq_str = irq_num;
1191 break;
1192 }
1193
1194
1195 if (!fmt) {
1196 phydev_info(phydev, ATTACHED_FMT "\n",
1197 drv_name, phydev_name(phydev),
1198 irq_str);
1199 } else {
1200 va_list ap;
1201
1202 phydev_info(phydev, ATTACHED_FMT,
1203 drv_name, phydev_name(phydev),
1204 irq_str);
1205
1206 va_start(ap, fmt);
1207 vprintk(fmt, ap);
1208 va_end(ap);
1209 }
1210}
1211EXPORT_SYMBOL(phy_attached_print);
1212
1213static void phy_sysfs_create_links(struct phy_device *phydev)
1214{
1215 struct net_device *dev = phydev->attached_dev;
1216 int err;
1217
1218 if (!dev)
1219 return;
1220
1221 err = sysfs_create_link(&phydev->mdio.dev.kobj, &dev->dev.kobj,
1222 "attached_dev");
1223 if (err)
1224 return;
1225
1226 err = sysfs_create_link_nowarn(&dev->dev.kobj,
1227 &phydev->mdio.dev.kobj,
1228 "phydev");
1229 if (err) {
1230 dev_err(&dev->dev, "could not add device link to %s err %d\n",
1231 kobject_name(&phydev->mdio.dev.kobj),
1232 err);
1233 /* non-fatal - some net drivers can use one netdevice
1234 * with more then one phy
1235 */
1236 }
1237
1238 phydev->sysfs_links = true;
1239}
1240
1241static ssize_t
1242phy_standalone_show(struct device *dev, struct device_attribute *attr,
1243 char *buf)
1244{
1245 struct phy_device *phydev = to_phy_device(dev);
1246
1247 return sprintf(buf, "%d\n", !phydev->attached_dev);
1248}
1249static DEVICE_ATTR_RO(phy_standalone);
1250
1251/**
1252 * phy_sfp_attach - attach the SFP bus to the PHY upstream network device
1253 * @upstream: pointer to the phy device
1254 * @bus: sfp bus representing cage being attached
1255 *
1256 * This is used to fill in the sfp_upstream_ops .attach member.
1257 */
1258void phy_sfp_attach(void *upstream, struct sfp_bus *bus)
1259{
1260 struct phy_device *phydev = upstream;
1261
1262 if (phydev->attached_dev)
1263 phydev->attached_dev->sfp_bus = bus;
1264 phydev->sfp_bus_attached = true;
1265}
1266EXPORT_SYMBOL(phy_sfp_attach);
1267
1268/**
1269 * phy_sfp_detach - detach the SFP bus from the PHY upstream network device
1270 * @upstream: pointer to the phy device
1271 * @bus: sfp bus representing cage being attached
1272 *
1273 * This is used to fill in the sfp_upstream_ops .detach member.
1274 */
1275void phy_sfp_detach(void *upstream, struct sfp_bus *bus)
1276{
1277 struct phy_device *phydev = upstream;
1278
1279 if (phydev->attached_dev)
1280 phydev->attached_dev->sfp_bus = NULL;
1281 phydev->sfp_bus_attached = false;
1282}
1283EXPORT_SYMBOL(phy_sfp_detach);
1284
1285/**
1286 * phy_sfp_probe - probe for a SFP cage attached to this PHY device
1287 * @phydev: Pointer to phy_device
1288 * @ops: SFP's upstream operations
1289 */
1290int phy_sfp_probe(struct phy_device *phydev,
1291 const struct sfp_upstream_ops *ops)
1292{
1293 struct sfp_bus *bus;
1294 int ret;
1295
1296 if (phydev->mdio.dev.fwnode) {
1297 bus = sfp_bus_find_fwnode(phydev->mdio.dev.fwnode);
1298 if (IS_ERR(bus))
1299 return PTR_ERR(bus);
1300
1301 phydev->sfp_bus = bus;
1302
1303 ret = sfp_bus_add_upstream(bus, phydev, ops);
1304 sfp_bus_put(bus);
1305 }
1306 return 0;
1307}
1308EXPORT_SYMBOL(phy_sfp_probe);
1309
1310/**
1311 * phy_attach_direct - attach a network device to a given PHY device pointer
1312 * @dev: network device to attach
1313 * @phydev: Pointer to phy_device to attach
1314 * @flags: PHY device's dev_flags
1315 * @interface: PHY device's interface
1316 *
1317 * Description: Called by drivers to attach to a particular PHY
1318 * device. The phy_device is found, and properly hooked up
1319 * to the phy_driver. If no driver is attached, then a
1320 * generic driver is used. The phy_device is given a ptr to
1321 * the attaching device, and given a callback for link status
1322 * change. The phy_device is returned to the attaching driver.
1323 * This function takes a reference on the phy device.
1324 */
1325int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,
1326 u32 flags, phy_interface_t interface)
1327{
1328 struct mii_bus *bus = phydev->mdio.bus;
1329 struct device *d = &phydev->mdio.dev;
1330 struct module *ndev_owner = NULL;
1331 bool using_genphy = false;
1332 int err;
1333
1334 /* For Ethernet device drivers that register their own MDIO bus, we
1335 * will have bus->owner match ndev_mod, so we do not want to increment
1336 * our own module->refcnt here, otherwise we would not be able to
1337 * unload later on.
1338 */
1339 if (dev)
1340 ndev_owner = dev->dev.parent->driver->owner;
1341 if (ndev_owner != bus->owner && !try_module_get(bus->owner)) {
1342 phydev_err(phydev, "failed to get the bus module\n");
1343 return -EIO;
1344 }
1345
1346 get_device(d);
1347
1348 /* Assume that if there is no driver, that it doesn't
1349 * exist, and we should use the genphy driver.
1350 */
1351 if (!d->driver) {
1352 if (phydev->is_c45)
1353 d->driver = &genphy_c45_driver.mdiodrv.driver;
1354 else
1355 d->driver = &genphy_driver.mdiodrv.driver;
1356
1357 using_genphy = true;
1358 }
1359
1360 if (!try_module_get(d->driver->owner)) {
1361 phydev_err(phydev, "failed to get the device driver module\n");
1362 err = -EIO;
1363 goto error_put_device;
1364 }
1365
1366 if (using_genphy) {
1367 err = d->driver->probe(d);
1368 if (err >= 0)
1369 err = device_bind_driver(d);
1370
1371 if (err)
1372 goto error_module_put;
1373 }
1374
1375 if (phydev->attached_dev) {
1376 dev_err(&dev->dev, "PHY already attached\n");
1377 err = -EBUSY;
1378 goto error;
1379 }
1380
1381 phydev->phy_link_change = phy_link_change;
1382 if (dev) {
1383 phydev->attached_dev = dev;
1384 dev->phydev = phydev;
1385 }
1386
1387 if (phydev->sfp_bus_attached)
1388 dev->sfp_bus = phydev->sfp_bus;
1389
1390 /* Some Ethernet drivers try to connect to a PHY device before
1391 * calling register_netdevice() -> netdev_register_kobject() and
1392 * does the dev->dev.kobj initialization. Here we only check for
1393 * success which indicates that the network device kobject is
1394 * ready. Once we do that we still need to keep track of whether
1395 * links were successfully set up or not for phy_detach() to
1396 * remove them accordingly.
1397 */
1398 phydev->sysfs_links = false;
1399
1400 phy_sysfs_create_links(phydev);
1401
1402 if (!phydev->attached_dev) {
1403 err = sysfs_create_file(&phydev->mdio.dev.kobj,
1404 &dev_attr_phy_standalone.attr);
1405 if (err)
1406 phydev_err(phydev, "error creating 'phy_standalone' sysfs entry\n");
1407 }
1408
1409 phydev->dev_flags = flags;
1410
1411 phydev->interface = interface;
1412
1413 phydev->state = PHY_READY;
1414
1415 /* Initial carrier state is off as the phy is about to be
1416 * (re)initialized.
1417 */
1418 if (dev)
1419 netif_carrier_off(phydev->attached_dev);
1420
1421 /* Do initial configuration here, now that
1422 * we have certain key parameters
1423 * (dev_flags and interface)
1424 */
1425 err = phy_init_hw(phydev);
1426 if (err)
1427 goto error;
1428
1429 phy_resume(phydev);
1430 phy_led_triggers_register(phydev);
1431
1432 return err;
1433
1434error:
1435 /* phy_detach() does all of the cleanup below */
1436 phy_detach(phydev);
1437 return err;
1438
1439error_module_put:
1440 module_put(d->driver->owner);
1441 d->driver = NULL;
1442error_put_device:
1443 put_device(d);
1444 if (ndev_owner != bus->owner)
1445 module_put(bus->owner);
1446 return err;
1447}
1448EXPORT_SYMBOL(phy_attach_direct);
1449
1450/**
1451 * phy_attach - attach a network device to a particular PHY device
1452 * @dev: network device to attach
1453 * @bus_id: Bus ID of PHY device to attach
1454 * @interface: PHY device's interface
1455 *
1456 * Description: Same as phy_attach_direct() except that a PHY bus_id
1457 * string is passed instead of a pointer to a struct phy_device.
1458 */
1459struct phy_device *phy_attach(struct net_device *dev, const char *bus_id,
1460 phy_interface_t interface)
1461{
1462 struct bus_type *bus = &mdio_bus_type;
1463 struct phy_device *phydev;
1464 struct device *d;
1465 int rc;
1466
1467 if (!dev)
1468 return ERR_PTR(-EINVAL);
1469
1470 /* Search the list of PHY devices on the mdio bus for the
1471 * PHY with the requested name
1472 */
1473 d = bus_find_device_by_name(bus, NULL, bus_id);
1474 if (!d) {
1475 pr_err("PHY %s not found\n", bus_id);
1476 return ERR_PTR(-ENODEV);
1477 }
1478 phydev = to_phy_device(d);
1479
1480 rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
1481 put_device(d);
1482 if (rc)
1483 return ERR_PTR(rc);
1484
1485 return phydev;
1486}
1487EXPORT_SYMBOL(phy_attach);
1488
1489static bool phy_driver_is_genphy_kind(struct phy_device *phydev,
1490 struct device_driver *driver)
1491{
1492 struct device *d = &phydev->mdio.dev;
1493 bool ret = false;
1494
1495 if (!phydev->drv)
1496 return ret;
1497
1498 get_device(d);
1499 ret = d->driver == driver;
1500 put_device(d);
1501
1502 return ret;
1503}
1504
1505bool phy_driver_is_genphy(struct phy_device *phydev)
1506{
1507 return phy_driver_is_genphy_kind(phydev,
1508 &genphy_driver.mdiodrv.driver);
1509}
1510EXPORT_SYMBOL_GPL(phy_driver_is_genphy);
1511
1512bool phy_driver_is_genphy_10g(struct phy_device *phydev)
1513{
1514 return phy_driver_is_genphy_kind(phydev,
1515 &genphy_c45_driver.mdiodrv.driver);
1516}
1517EXPORT_SYMBOL_GPL(phy_driver_is_genphy_10g);
1518
1519/**
1520 * phy_detach - detach a PHY device from its network device
1521 * @phydev: target phy_device struct
1522 *
1523 * This detaches the phy device from its network device and the phy
1524 * driver, and drops the reference count taken in phy_attach_direct().
1525 */
1526void phy_detach(struct phy_device *phydev)
1527{
1528 struct net_device *dev = phydev->attached_dev;
1529 struct module *ndev_owner = NULL;
1530 struct mii_bus *bus;
1531
1532 if (phydev->drv && phydev->drv->detach)
1533 phydev->drv->detach(phydev);
1534
1535 if (phydev->sysfs_links) {
1536 if (dev)
1537 sysfs_remove_link(&dev->dev.kobj, "phydev");
1538 sysfs_remove_link(&phydev->mdio.dev.kobj, "attached_dev");
1539 }
1540
1541 if (!phydev->attached_dev)
1542 sysfs_remove_file(&phydev->mdio.dev.kobj,
1543 &dev_attr_phy_standalone.attr);
1544
1545 phy_suspend(phydev);
1546 if (dev) {
1547 phydev->attached_dev->phydev = NULL;
1548 phydev->attached_dev = NULL;
1549 }
1550 phydev->phylink = NULL;
1551
1552 phy_led_triggers_unregister(phydev);
1553
1554 if (phydev->mdio.dev.driver)
1555 module_put(phydev->mdio.dev.driver->owner);
1556
1557 /* If the device had no specific driver before (i.e. - it
1558 * was using the generic driver), we unbind the device
1559 * from the generic driver so that there's a chance a
1560 * real driver could be loaded
1561 */
1562 if (phy_driver_is_genphy(phydev) ||
1563 phy_driver_is_genphy_10g(phydev))
1564 device_release_driver(&phydev->mdio.dev);
1565
1566 /* Assert the reset signal */
1567 phy_device_reset(phydev, 1);
1568
1569 /*
1570 * The phydev might go away on the put_device() below, so avoid
1571 * a use-after-free bug by reading the underlying bus first.
1572 */
1573 bus = phydev->mdio.bus;
1574
1575 put_device(&phydev->mdio.dev);
1576 if (dev)
1577 ndev_owner = dev->dev.parent->driver->owner;
1578 if (ndev_owner != bus->owner)
1579 module_put(bus->owner);
1580}
1581EXPORT_SYMBOL(phy_detach);
1582
1583int phy_suspend(struct phy_device *phydev)
1584{
1585 struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
1586 struct net_device *netdev = phydev->attached_dev;
1587 struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
1588 int ret = 0;
1589
1590 /* If the device has WOL enabled, we cannot suspend the PHY */
1591 phy_ethtool_get_wol(phydev, &wol);
1592 if (wol.wolopts || (netdev && netdev->wol_enabled))
1593 return -EBUSY;
1594
1595 if (phydev->drv && phydrv->suspend)
1596 ret = phydrv->suspend(phydev);
1597
1598 if (ret)
1599 return ret;
1600
1601 phydev->suspended = true;
1602
1603 return ret;
1604}
1605EXPORT_SYMBOL(phy_suspend);
1606
1607int __phy_resume(struct phy_device *phydev)
1608{
1609 struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
1610 int ret = 0;
1611
1612 WARN_ON(!mutex_is_locked(&phydev->lock));
1613
1614 if (phydev->drv && phydrv->resume)
1615 ret = phydrv->resume(phydev);
1616
1617 if (ret)
1618 return ret;
1619
1620 phydev->suspended = false;
1621
1622 return ret;
1623}
1624EXPORT_SYMBOL(__phy_resume);
1625
1626int phy_resume(struct phy_device *phydev)
1627{
1628 int ret;
1629
1630 mutex_lock(&phydev->lock);
1631 ret = __phy_resume(phydev);
1632 mutex_unlock(&phydev->lock);
1633
1634 return ret;
1635}
1636EXPORT_SYMBOL(phy_resume);
1637
1638int phy_loopback(struct phy_device *phydev, bool enable)
1639{
1640 struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
1641 int ret = 0;
1642
1643 mutex_lock(&phydev->lock);
1644
1645 if (enable && phydev->loopback_enabled) {
1646 ret = -EBUSY;
1647 goto out;
1648 }
1649
1650 if (!enable && !phydev->loopback_enabled) {
1651 ret = -EINVAL;
1652 goto out;
1653 }
1654
1655 if (phydev->drv && phydrv->set_loopback)
1656 ret = phydrv->set_loopback(phydev, enable);
1657 else
1658 ret = -EOPNOTSUPP;
1659
1660 if (ret)
1661 goto out;
1662
1663 phydev->loopback_enabled = enable;
1664
1665out:
1666 mutex_unlock(&phydev->lock);
1667 return ret;
1668}
1669EXPORT_SYMBOL(phy_loopback);
1670
1671/**
1672 * phy_reset_after_clk_enable - perform a PHY reset if needed
1673 * @phydev: target phy_device struct
1674 *
1675 * Description: Some PHYs are known to need a reset after their refclk was
1676 * enabled. This function evaluates the flags and perform the reset if it's
1677 * needed. Returns < 0 on error, 0 if the phy wasn't reset and 1 if the phy
1678 * was reset.
1679 */
1680int phy_reset_after_clk_enable(struct phy_device *phydev)
1681{
1682 if (!phydev || !phydev->drv)
1683 return -ENODEV;
1684
1685 if (phydev->drv->flags & PHY_RST_AFTER_CLK_EN) {
1686 phy_device_reset(phydev, 1);
1687 phy_device_reset(phydev, 0);
1688 return 1;
1689 }
1690
1691 return 0;
1692}
1693EXPORT_SYMBOL(phy_reset_after_clk_enable);
1694
1695/* Generic PHY support and helper functions */
1696
1697/**
1698 * genphy_config_advert - sanitize and advertise auto-negotiation parameters
1699 * @phydev: target phy_device struct
1700 *
1701 * Description: Writes MII_ADVERTISE with the appropriate values,
1702 * after sanitizing the values to make sure we only advertise
1703 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
1704 * hasn't changed, and > 0 if it has changed.
1705 */
1706static int genphy_config_advert(struct phy_device *phydev)
1707{
1708 int err, bmsr, changed = 0;
1709 u32 adv;
1710
1711 /* Only allow advertising what this PHY supports */
1712 linkmode_and(phydev->advertising, phydev->advertising,
1713 phydev->supported);
1714
1715 adv = linkmode_adv_to_mii_adv_t(phydev->advertising);
1716
1717 /* Setup standard advertisement */
1718 err = phy_modify_changed(phydev, MII_ADVERTISE,
1719 ADVERTISE_ALL | ADVERTISE_100BASE4 |
1720 ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM,
1721 adv);
1722 if (err < 0)
1723 return err;
1724 if (err > 0)
1725 changed = 1;
1726
1727 bmsr = phy_read(phydev, MII_BMSR);
1728 if (bmsr < 0)
1729 return bmsr;
1730
1731 /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
1732 * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
1733 * logical 1.
1734 */
1735 if (!(bmsr & BMSR_ESTATEN))
1736 return changed;
1737
1738 adv = linkmode_adv_to_mii_ctrl1000_t(phydev->advertising);
1739
1740 err = phy_modify_changed(phydev, MII_CTRL1000,
1741 ADVERTISE_1000FULL | ADVERTISE_1000HALF,
1742 adv);
1743 if (err < 0)
1744 return err;
1745 if (err > 0)
1746 changed = 1;
1747
1748 return changed;
1749}
1750
1751/**
1752 * genphy_c37_config_advert - sanitize and advertise auto-negotiation parameters
1753 * @phydev: target phy_device struct
1754 *
1755 * Description: Writes MII_ADVERTISE with the appropriate values,
1756 * after sanitizing the values to make sure we only advertise
1757 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
1758 * hasn't changed, and > 0 if it has changed. This function is intended
1759 * for Clause 37 1000Base-X mode.
1760 */
1761static int genphy_c37_config_advert(struct phy_device *phydev)
1762{
1763 u16 adv = 0;
1764
1765 /* Only allow advertising what this PHY supports */
1766 linkmode_and(phydev->advertising, phydev->advertising,
1767 phydev->supported);
1768
1769 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
1770 phydev->advertising))
1771 adv |= ADVERTISE_1000XFULL;
1772 if (linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
1773 phydev->advertising))
1774 adv |= ADVERTISE_1000XPAUSE;
1775 if (linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
1776 phydev->advertising))
1777 adv |= ADVERTISE_1000XPSE_ASYM;
1778
1779 return phy_modify_changed(phydev, MII_ADVERTISE,
1780 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
1781 ADVERTISE_1000XHALF | ADVERTISE_1000XPSE_ASYM,
1782 adv);
1783}
1784
1785/**
1786 * genphy_config_eee_advert - disable unwanted eee mode advertisement
1787 * @phydev: target phy_device struct
1788 *
1789 * Description: Writes MDIO_AN_EEE_ADV after disabling unsupported energy
1790 * efficent ethernet modes. Returns 0 if the PHY's advertisement hasn't
1791 * changed, and 1 if it has changed.
1792 */
1793int genphy_config_eee_advert(struct phy_device *phydev)
1794{
1795 int err;
1796
1797 /* Nothing to disable */
1798 if (!phydev->eee_broken_modes)
1799 return 0;
1800
1801 err = phy_modify_mmd_changed(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV,
1802 phydev->eee_broken_modes, 0);
1803 /* If the call failed, we assume that EEE is not supported */
1804 return err < 0 ? 0 : err;
1805}
1806EXPORT_SYMBOL(genphy_config_eee_advert);
1807
1808/**
1809 * genphy_setup_forced - configures/forces speed/duplex from @phydev
1810 * @phydev: target phy_device struct
1811 *
1812 * Description: Configures MII_BMCR to force speed/duplex
1813 * to the values in phydev. Assumes that the values are valid.
1814 * Please see phy_sanitize_settings().
1815 */
1816int genphy_setup_forced(struct phy_device *phydev)
1817{
1818 u16 ctl = 0;
1819
1820 phydev->pause = 0;
1821 phydev->asym_pause = 0;
1822
1823 if (SPEED_1000 == phydev->speed)
1824 ctl |= BMCR_SPEED1000;
1825 else if (SPEED_100 == phydev->speed)
1826 ctl |= BMCR_SPEED100;
1827
1828 if (DUPLEX_FULL == phydev->duplex)
1829 ctl |= BMCR_FULLDPLX;
1830
1831 return phy_modify(phydev, MII_BMCR,
1832 ~(BMCR_LOOPBACK | BMCR_ISOLATE | BMCR_PDOWN), ctl);
1833}
1834EXPORT_SYMBOL(genphy_setup_forced);
1835
1836/**
1837 * genphy_restart_aneg - Enable and Restart Autonegotiation
1838 * @phydev: target phy_device struct
1839 */
1840int genphy_restart_aneg(struct phy_device *phydev)
1841{
1842 /* Don't isolate the PHY if we're negotiating */
1843 return phy_modify(phydev, MII_BMCR, BMCR_ISOLATE,
1844 BMCR_ANENABLE | BMCR_ANRESTART);
1845}
1846EXPORT_SYMBOL(genphy_restart_aneg);
1847
1848/**
1849 * __genphy_config_aneg - restart auto-negotiation or write BMCR
1850 * @phydev: target phy_device struct
1851 * @changed: whether autoneg is requested
1852 *
1853 * Description: If auto-negotiation is enabled, we configure the
1854 * advertising, and then restart auto-negotiation. If it is not
1855 * enabled, then we write the BMCR.
1856 */
1857int __genphy_config_aneg(struct phy_device *phydev, bool changed)
1858{
1859 int err;
1860
1861 if (genphy_config_eee_advert(phydev))
1862 changed = true;
1863
1864 if (AUTONEG_ENABLE != phydev->autoneg)
1865 return genphy_setup_forced(phydev);
1866
1867 err = genphy_config_advert(phydev);
1868 if (err < 0) /* error */
1869 return err;
1870 else if (err)
1871 changed = true;
1872
1873 if (!changed) {
1874 /* Advertisement hasn't changed, but maybe aneg was never on to
1875 * begin with? Or maybe phy was isolated?
1876 */
1877 int ctl = phy_read(phydev, MII_BMCR);
1878
1879 if (ctl < 0)
1880 return ctl;
1881
1882 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
1883 changed = true; /* do restart aneg */
1884 }
1885
1886 /* Only restart aneg if we are advertising something different
1887 * than we were before.
1888 */
1889 return changed ? genphy_restart_aneg(phydev) : 0;
1890}
1891EXPORT_SYMBOL(__genphy_config_aneg);
1892
1893/**
1894 * genphy_c37_config_aneg - restart auto-negotiation or write BMCR
1895 * @phydev: target phy_device struct
1896 *
1897 * Description: If auto-negotiation is enabled, we configure the
1898 * advertising, and then restart auto-negotiation. If it is not
1899 * enabled, then we write the BMCR. This function is intended
1900 * for use with Clause 37 1000Base-X mode.
1901 */
1902int genphy_c37_config_aneg(struct phy_device *phydev)
1903{
1904 int err, changed;
1905
1906 if (phydev->autoneg != AUTONEG_ENABLE)
1907 return genphy_setup_forced(phydev);
1908
1909 err = phy_modify(phydev, MII_BMCR, BMCR_SPEED1000 | BMCR_SPEED100,
1910 BMCR_SPEED1000);
1911 if (err)
1912 return err;
1913
1914 changed = genphy_c37_config_advert(phydev);
1915 if (changed < 0) /* error */
1916 return changed;
1917
1918 if (!changed) {
1919 /* Advertisement hasn't changed, but maybe aneg was never on to
1920 * begin with? Or maybe phy was isolated?
1921 */
1922 int ctl = phy_read(phydev, MII_BMCR);
1923
1924 if (ctl < 0)
1925 return ctl;
1926
1927 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
1928 changed = 1; /* do restart aneg */
1929 }
1930
1931 /* Only restart aneg if we are advertising something different
1932 * than we were before.
1933 */
1934 if (changed > 0)
1935 return genphy_restart_aneg(phydev);
1936
1937 return 0;
1938}
1939EXPORT_SYMBOL(genphy_c37_config_aneg);
1940
1941/**
1942 * genphy_aneg_done - return auto-negotiation status
1943 * @phydev: target phy_device struct
1944 *
1945 * Description: Reads the status register and returns 0 either if
1946 * auto-negotiation is incomplete, or if there was an error.
1947 * Returns BMSR_ANEGCOMPLETE if auto-negotiation is done.
1948 */
1949int genphy_aneg_done(struct phy_device *phydev)
1950{
1951 int retval = phy_read(phydev, MII_BMSR);
1952
1953 return (retval < 0) ? retval : (retval & BMSR_ANEGCOMPLETE);
1954}
1955EXPORT_SYMBOL(genphy_aneg_done);
1956
1957/**
1958 * genphy_update_link - update link status in @phydev
1959 * @phydev: target phy_device struct
1960 *
1961 * Description: Update the value in phydev->link to reflect the
1962 * current link value. In order to do this, we need to read
1963 * the status register twice, keeping the second value.
1964 */
1965int genphy_update_link(struct phy_device *phydev)
1966{
1967 int status = 0, bmcr;
1968
1969 bmcr = phy_read(phydev, MII_BMCR);
1970 if (bmcr < 0)
1971 return bmcr;
1972
1973 /* Autoneg is being started, therefore disregard BMSR value and
1974 * report link as down.
1975 */
1976 if (bmcr & BMCR_ANRESTART)
1977 goto done;
1978
1979 /* The link state is latched low so that momentary link
1980 * drops can be detected. Do not double-read the status
1981 * in polling mode to detect such short link drops except
1982 * the link was already down.
1983 */
1984 if (!phy_polling_mode(phydev) || !phydev->link) {
1985 status = phy_read(phydev, MII_BMSR);
1986 if (status < 0)
1987 return status;
1988 else if (status & BMSR_LSTATUS)
1989 goto done;
1990 }
1991
1992 /* Read link and autonegotiation status */
1993 status = phy_read(phydev, MII_BMSR);
1994 if (status < 0)
1995 return status;
1996done:
1997 phydev->link = status & BMSR_LSTATUS ? 1 : 0;
1998 phydev->autoneg_complete = status & BMSR_ANEGCOMPLETE ? 1 : 0;
1999
2000 /* Consider the case that autoneg was started and "aneg complete"
2001 * bit has been reset, but "link up" bit not yet.
2002 */
2003 if (phydev->autoneg == AUTONEG_ENABLE && !phydev->autoneg_complete)
2004 phydev->link = 0;
2005
2006 return 0;
2007}
2008EXPORT_SYMBOL(genphy_update_link);
2009
2010int genphy_read_lpa(struct phy_device *phydev)
2011{
2012 int lpa, lpagb;
2013
2014 if (phydev->autoneg == AUTONEG_ENABLE) {
2015 if (!phydev->autoneg_complete) {
2016 mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising,
2017 0);
2018 mii_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, 0);
2019 return 0;
2020 }
2021
2022 if (phydev->is_gigabit_capable) {
2023 lpagb = phy_read(phydev, MII_STAT1000);
2024 if (lpagb < 0)
2025 return lpagb;
2026
2027 if (lpagb & LPA_1000MSFAIL) {
2028 int adv = phy_read(phydev, MII_CTRL1000);
2029
2030 if (adv < 0)
2031 return adv;
2032
2033 if (adv & CTL1000_ENABLE_MASTER)
2034 phydev_err(phydev, "Master/Slave resolution failed, maybe conflicting manual settings?\n");
2035 else
2036 phydev_err(phydev, "Master/Slave resolution failed\n");
2037 return -ENOLINK;
2038 }
2039
2040 mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising,
2041 lpagb);
2042 }
2043
2044 lpa = phy_read(phydev, MII_LPA);
2045 if (lpa < 0)
2046 return lpa;
2047
2048 mii_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, lpa);
2049 } else {
2050 linkmode_zero(phydev->lp_advertising);
2051 }
2052
2053 return 0;
2054}
2055EXPORT_SYMBOL(genphy_read_lpa);
2056
2057/**
2058 * genphy_read_status - check the link status and update current link state
2059 * @phydev: target phy_device struct
2060 *
2061 * Description: Check the link, then figure out the current state
2062 * by comparing what we advertise with what the link partner
2063 * advertises. Start by checking the gigabit possibilities,
2064 * then move on to 10/100.
2065 */
2066int genphy_read_status(struct phy_device *phydev)
2067{
2068 int err, old_link = phydev->link;
2069
2070 /* Update the link, but return if there was an error */
2071 err = genphy_update_link(phydev);
2072 if (err)
2073 return err;
2074
2075 /* why bother the PHY if nothing can have changed */
2076 if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
2077 return 0;
2078
2079 phydev->speed = SPEED_UNKNOWN;
2080 phydev->duplex = DUPLEX_UNKNOWN;
2081 phydev->pause = 0;
2082 phydev->asym_pause = 0;
2083
2084 err = genphy_read_lpa(phydev);
2085 if (err < 0)
2086 return err;
2087
2088 if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete) {
2089 phy_resolve_aneg_linkmode(phydev);
2090 } else if (phydev->autoneg == AUTONEG_DISABLE) {
2091 int bmcr = phy_read(phydev, MII_BMCR);
2092
2093 if (bmcr < 0)
2094 return bmcr;
2095
2096 if (bmcr & BMCR_FULLDPLX)
2097 phydev->duplex = DUPLEX_FULL;
2098 else
2099 phydev->duplex = DUPLEX_HALF;
2100
2101 if (bmcr & BMCR_SPEED1000)
2102 phydev->speed = SPEED_1000;
2103 else if (bmcr & BMCR_SPEED100)
2104 phydev->speed = SPEED_100;
2105 else
2106 phydev->speed = SPEED_10;
2107 }
2108
2109 return 0;
2110}
2111EXPORT_SYMBOL(genphy_read_status);
2112
2113/**
2114 * genphy_c37_read_status - check the link status and update current link state
2115 * @phydev: target phy_device struct
2116 *
2117 * Description: Check the link, then figure out the current state
2118 * by comparing what we advertise with what the link partner
2119 * advertises. This function is for Clause 37 1000Base-X mode.
2120 */
2121int genphy_c37_read_status(struct phy_device *phydev)
2122{
2123 int lpa, err, old_link = phydev->link;
2124
2125 /* Update the link, but return if there was an error */
2126 err = genphy_update_link(phydev);
2127 if (err)
2128 return err;
2129
2130 /* why bother the PHY if nothing can have changed */
2131 if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
2132 return 0;
2133
2134 phydev->duplex = DUPLEX_UNKNOWN;
2135 phydev->pause = 0;
2136 phydev->asym_pause = 0;
2137
2138 if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete) {
2139 lpa = phy_read(phydev, MII_LPA);
2140 if (lpa < 0)
2141 return lpa;
2142
2143 linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
2144 phydev->lp_advertising, lpa & LPA_LPACK);
2145 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
2146 phydev->lp_advertising, lpa & LPA_1000XFULL);
2147 linkmode_mod_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2148 phydev->lp_advertising, lpa & LPA_1000XPAUSE);
2149 linkmode_mod_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2150 phydev->lp_advertising,
2151 lpa & LPA_1000XPAUSE_ASYM);
2152
2153 phy_resolve_aneg_linkmode(phydev);
2154 } else if (phydev->autoneg == AUTONEG_DISABLE) {
2155 int bmcr = phy_read(phydev, MII_BMCR);
2156
2157 if (bmcr < 0)
2158 return bmcr;
2159
2160 if (bmcr & BMCR_FULLDPLX)
2161 phydev->duplex = DUPLEX_FULL;
2162 else
2163 phydev->duplex = DUPLEX_HALF;
2164 }
2165
2166 return 0;
2167}
2168EXPORT_SYMBOL(genphy_c37_read_status);
2169
2170/**
2171 * genphy_soft_reset - software reset the PHY via BMCR_RESET bit
2172 * @phydev: target phy_device struct
2173 *
2174 * Description: Perform a software PHY reset using the standard
2175 * BMCR_RESET bit and poll for the reset bit to be cleared.
2176 *
2177 * Returns: 0 on success, < 0 on failure
2178 */
2179int genphy_soft_reset(struct phy_device *phydev)
2180{
2181 u16 res = BMCR_RESET;
2182 int ret;
2183
2184 if (phydev->autoneg == AUTONEG_ENABLE)
2185 res |= BMCR_ANRESTART;
2186
2187 ret = phy_modify(phydev, MII_BMCR, BMCR_ISOLATE, res);
2188 if (ret < 0)
2189 return ret;
2190
2191 ret = phy_poll_reset(phydev);
2192 if (ret)
2193 return ret;
2194
2195 /* BMCR may be reset to defaults */
2196 if (phydev->autoneg == AUTONEG_DISABLE)
2197 ret = genphy_setup_forced(phydev);
2198
2199 return ret;
2200}
2201EXPORT_SYMBOL(genphy_soft_reset);
2202
2203/**
2204 * genphy_read_abilities - read PHY abilities from Clause 22 registers
2205 * @phydev: target phy_device struct
2206 *
2207 * Description: Reads the PHY's abilities and populates
2208 * phydev->supported accordingly.
2209 *
2210 * Returns: 0 on success, < 0 on failure
2211 */
2212int genphy_read_abilities(struct phy_device *phydev)
2213{
2214 int val;
2215
2216 linkmode_set_bit_array(phy_basic_ports_array,
2217 ARRAY_SIZE(phy_basic_ports_array),
2218 phydev->supported);
2219
2220 val = phy_read(phydev, MII_BMSR);
2221 if (val < 0)
2222 return val;
2223
2224 linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, phydev->supported,
2225 val & BMSR_ANEGCAPABLE);
2226
2227 linkmode_mod_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT, phydev->supported,
2228 val & BMSR_100FULL);
2229 linkmode_mod_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT, phydev->supported,
2230 val & BMSR_100HALF);
2231 linkmode_mod_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT, phydev->supported,
2232 val & BMSR_10FULL);
2233 linkmode_mod_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT, phydev->supported,
2234 val & BMSR_10HALF);
2235
2236 if (val & BMSR_ESTATEN) {
2237 val = phy_read(phydev, MII_ESTATUS);
2238 if (val < 0)
2239 return val;
2240
2241 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
2242 phydev->supported, val & ESTATUS_1000_TFULL);
2243 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
2244 phydev->supported, val & ESTATUS_1000_THALF);
2245 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
2246 phydev->supported, val & ESTATUS_1000_XFULL);
2247 }
2248
2249 return 0;
2250}
2251EXPORT_SYMBOL(genphy_read_abilities);
2252
2253/* This is used for the phy device which doesn't support the MMD extended
2254 * register access, but it does have side effect when we are trying to access
2255 * the MMD register via indirect method.
2256 */
2257int genphy_read_mmd_unsupported(struct phy_device *phdev, int devad, u16 regnum)
2258{
2259 return -EOPNOTSUPP;
2260}
2261EXPORT_SYMBOL(genphy_read_mmd_unsupported);
2262
2263int genphy_write_mmd_unsupported(struct phy_device *phdev, int devnum,
2264 u16 regnum, u16 val)
2265{
2266 return -EOPNOTSUPP;
2267}
2268EXPORT_SYMBOL(genphy_write_mmd_unsupported);
2269
2270int genphy_suspend(struct phy_device *phydev)
2271{
2272 return phy_set_bits(phydev, MII_BMCR, BMCR_PDOWN);
2273}
2274EXPORT_SYMBOL(genphy_suspend);
2275
2276int genphy_resume(struct phy_device *phydev)
2277{
2278 return phy_clear_bits(phydev, MII_BMCR, BMCR_PDOWN);
2279}
2280EXPORT_SYMBOL(genphy_resume);
2281
2282int genphy_loopback(struct phy_device *phydev, bool enable)
2283{
2284 return phy_modify(phydev, MII_BMCR, BMCR_LOOPBACK,
2285 enable ? BMCR_LOOPBACK : 0);
2286}
2287EXPORT_SYMBOL(genphy_loopback);
2288
2289/**
2290 * phy_remove_link_mode - Remove a supported link mode
2291 * @phydev: phy_device structure to remove link mode from
2292 * @link_mode: Link mode to be removed
2293 *
2294 * Description: Some MACs don't support all link modes which the PHY
2295 * does. e.g. a 1G MAC often does not support 1000Half. Add a helper
2296 * to remove a link mode.
2297 */
2298void phy_remove_link_mode(struct phy_device *phydev, u32 link_mode)
2299{
2300 linkmode_clear_bit(link_mode, phydev->supported);
2301 phy_advertise_supported(phydev);
2302}
2303EXPORT_SYMBOL(phy_remove_link_mode);
2304
2305static void phy_copy_pause_bits(unsigned long *dst, unsigned long *src)
2306{
2307 linkmode_mod_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, dst,
2308 linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, src));
2309 linkmode_mod_bit(ETHTOOL_LINK_MODE_Pause_BIT, dst,
2310 linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT, src));
2311}
2312
2313/**
2314 * phy_advertise_supported - Advertise all supported modes
2315 * @phydev: target phy_device struct
2316 *
2317 * Description: Called to advertise all supported modes, doesn't touch
2318 * pause mode advertising.
2319 */
2320void phy_advertise_supported(struct phy_device *phydev)
2321{
2322 __ETHTOOL_DECLARE_LINK_MODE_MASK(new);
2323
2324 linkmode_copy(new, phydev->supported);
2325 phy_copy_pause_bits(new, phydev->advertising);
2326 linkmode_copy(phydev->advertising, new);
2327}
2328EXPORT_SYMBOL(phy_advertise_supported);
2329
2330/**
2331 * phy_support_sym_pause - Enable support of symmetrical pause
2332 * @phydev: target phy_device struct
2333 *
2334 * Description: Called by the MAC to indicate is supports symmetrical
2335 * Pause, but not asym pause.
2336 */
2337void phy_support_sym_pause(struct phy_device *phydev)
2338{
2339 linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported);
2340 phy_copy_pause_bits(phydev->advertising, phydev->supported);
2341}
2342EXPORT_SYMBOL(phy_support_sym_pause);
2343
2344/**
2345 * phy_support_asym_pause - Enable support of asym pause
2346 * @phydev: target phy_device struct
2347 *
2348 * Description: Called by the MAC to indicate is supports Asym Pause.
2349 */
2350void phy_support_asym_pause(struct phy_device *phydev)
2351{
2352 phy_copy_pause_bits(phydev->advertising, phydev->supported);
2353}
2354EXPORT_SYMBOL(phy_support_asym_pause);
2355
2356/**
2357 * phy_set_sym_pause - Configure symmetric Pause
2358 * @phydev: target phy_device struct
2359 * @rx: Receiver Pause is supported
2360 * @tx: Transmit Pause is supported
2361 * @autoneg: Auto neg should be used
2362 *
2363 * Description: Configure advertised Pause support depending on if
2364 * receiver pause and pause auto neg is supported. Generally called
2365 * from the set_pauseparam .ndo.
2366 */
2367void phy_set_sym_pause(struct phy_device *phydev, bool rx, bool tx,
2368 bool autoneg)
2369{
2370 linkmode_clear_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported);
2371
2372 if (rx && tx && autoneg)
2373 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2374 phydev->supported);
2375
2376 linkmode_copy(phydev->advertising, phydev->supported);
2377}
2378EXPORT_SYMBOL(phy_set_sym_pause);
2379
2380/**
2381 * phy_set_asym_pause - Configure Pause and Asym Pause
2382 * @phydev: target phy_device struct
2383 * @rx: Receiver Pause is supported
2384 * @tx: Transmit Pause is supported
2385 *
2386 * Description: Configure advertised Pause support depending on if
2387 * transmit and receiver pause is supported. If there has been a
2388 * change in adverting, trigger a new autoneg. Generally called from
2389 * the set_pauseparam .ndo.
2390 */
2391void phy_set_asym_pause(struct phy_device *phydev, bool rx, bool tx)
2392{
2393 __ETHTOOL_DECLARE_LINK_MODE_MASK(oldadv);
2394
2395 linkmode_copy(oldadv, phydev->advertising);
2396
2397 linkmode_clear_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2398 phydev->advertising);
2399 linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2400 phydev->advertising);
2401
2402 if (rx) {
2403 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2404 phydev->advertising);
2405 linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2406 phydev->advertising);
2407 }
2408
2409 if (tx)
2410 linkmode_change_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2411 phydev->advertising);
2412
2413 if (!linkmode_equal(oldadv, phydev->advertising) &&
2414 phydev->autoneg)
2415 phy_start_aneg(phydev);
2416}
2417EXPORT_SYMBOL(phy_set_asym_pause);
2418
2419/**
2420 * phy_validate_pause - Test if the PHY/MAC support the pause configuration
2421 * @phydev: phy_device struct
2422 * @pp: requested pause configuration
2423 *
2424 * Description: Test if the PHY/MAC combination supports the Pause
2425 * configuration the user is requesting. Returns True if it is
2426 * supported, false otherwise.
2427 */
2428bool phy_validate_pause(struct phy_device *phydev,
2429 struct ethtool_pauseparam *pp)
2430{
2431 if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2432 phydev->supported) && pp->rx_pause)
2433 return false;
2434
2435 if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2436 phydev->supported) &&
2437 pp->rx_pause != pp->tx_pause)
2438 return false;
2439
2440 return true;
2441}
2442EXPORT_SYMBOL(phy_validate_pause);
2443
2444static bool phy_drv_supports_irq(struct phy_driver *phydrv)
2445{
2446 return phydrv->config_intr && phydrv->ack_interrupt;
2447}
2448
2449/**
2450 * phy_probe - probe and init a PHY device
2451 * @dev: device to probe and init
2452 *
2453 * Description: Take care of setting up the phy_device structure,
2454 * set the state to READY (the driver's init function should
2455 * set it to STARTING if needed).
2456 */
2457static int phy_probe(struct device *dev)
2458{
2459 struct phy_device *phydev = to_phy_device(dev);
2460 struct device_driver *drv = phydev->mdio.dev.driver;
2461 struct phy_driver *phydrv = to_phy_driver(drv);
2462 int err = 0;
2463
2464 phydev->drv = phydrv;
2465
2466 /* Disable the interrupt if the PHY doesn't support it
2467 * but the interrupt is still a valid one
2468 */
2469 if (!phy_drv_supports_irq(phydrv) && phy_interrupt_is_valid(phydev))
2470 phydev->irq = PHY_POLL;
2471
2472 if (phydrv->flags & PHY_IS_INTERNAL)
2473 phydev->is_internal = true;
2474
2475 mutex_lock(&phydev->lock);
2476
2477 if (phydev->drv->probe) {
2478 /* Deassert the reset signal */
2479 phy_device_reset(phydev, 0);
2480
2481 err = phydev->drv->probe(phydev);
2482 if (err) {
2483 /* Assert the reset signal */
2484 phy_device_reset(phydev, 1);
2485 goto out;
2486 }
2487 }
2488
2489 /* Start out supporting everything. Eventually,
2490 * a controller will attach, and may modify one
2491 * or both of these values
2492 */
2493 if (phydrv->features) {
2494 linkmode_copy(phydev->supported, phydrv->features);
2495 } else if (phydrv->get_features) {
2496 err = phydrv->get_features(phydev);
2497 } else if (phydev->is_c45) {
2498 err = genphy_c45_pma_read_abilities(phydev);
2499 } else {
2500 err = genphy_read_abilities(phydev);
2501 }
2502
2503 if (err)
2504 goto out;
2505
2506 if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
2507 phydev->supported))
2508 phydev->autoneg = 0;
2509
2510 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
2511 phydev->supported))
2512 phydev->is_gigabit_capable = 1;
2513 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
2514 phydev->supported))
2515 phydev->is_gigabit_capable = 1;
2516
2517 of_set_phy_supported(phydev);
2518 phy_advertise_supported(phydev);
2519
2520 /* Get the EEE modes we want to prohibit. We will ask
2521 * the PHY stop advertising these mode later on
2522 */
2523 of_set_phy_eee_broken(phydev);
2524
2525 /* The Pause Frame bits indicate that the PHY can support passing
2526 * pause frames. During autonegotiation, the PHYs will determine if
2527 * they should allow pause frames to pass. The MAC driver should then
2528 * use that result to determine whether to enable flow control via
2529 * pause frames.
2530 *
2531 * Normally, PHY drivers should not set the Pause bits, and instead
2532 * allow phylib to do that. However, there may be some situations
2533 * (e.g. hardware erratum) where the driver wants to set only one
2534 * of these bits.
2535 */
2536 if (!test_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported) &&
2537 !test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported)) {
2538 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2539 phydev->supported);
2540 linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2541 phydev->supported);
2542 }
2543
2544 /* Set the state to READY by default */
2545 phydev->state = PHY_READY;
2546
2547out:
2548 mutex_unlock(&phydev->lock);
2549
2550 return err;
2551}
2552
2553static int phy_remove(struct device *dev)
2554{
2555 struct phy_device *phydev = to_phy_device(dev);
2556
2557 cancel_delayed_work_sync(&phydev->state_queue);
2558
2559 mutex_lock(&phydev->lock);
2560 phydev->state = PHY_DOWN;
2561 mutex_unlock(&phydev->lock);
2562
2563 sfp_bus_del_upstream(phydev->sfp_bus);
2564 phydev->sfp_bus = NULL;
2565
2566 if (phydev->drv && phydev->drv->remove) {
2567 phydev->drv->remove(phydev);
2568
2569 /* Assert the reset signal */
2570 phy_device_reset(phydev, 1);
2571 }
2572 phydev->drv = NULL;
2573
2574 return 0;
2575}
2576
2577/**
2578 * phy_driver_register - register a phy_driver with the PHY layer
2579 * @new_driver: new phy_driver to register
2580 * @owner: module owning this PHY
2581 */
2582int phy_driver_register(struct phy_driver *new_driver, struct module *owner)
2583{
2584 int retval;
2585
2586 /* Either the features are hard coded, or dynamically
2587 * determined. It cannot be both.
2588 */
2589 if (WARN_ON(new_driver->features && new_driver->get_features)) {
2590 pr_err("%s: features and get_features must not both be set\n",
2591 new_driver->name);
2592 return -EINVAL;
2593 }
2594
2595 new_driver->mdiodrv.flags |= MDIO_DEVICE_IS_PHY;
2596 new_driver->mdiodrv.driver.name = new_driver->name;
2597 new_driver->mdiodrv.driver.bus = &mdio_bus_type;
2598 new_driver->mdiodrv.driver.probe = phy_probe;
2599 new_driver->mdiodrv.driver.remove = phy_remove;
2600 new_driver->mdiodrv.driver.owner = owner;
2601
2602 retval = driver_register(&new_driver->mdiodrv.driver);
2603 if (retval) {
2604 pr_err("%s: Error %d in registering driver\n",
2605 new_driver->name, retval);
2606
2607 return retval;
2608 }
2609
2610 pr_debug("%s: Registered new driver\n", new_driver->name);
2611
2612 return 0;
2613}
2614EXPORT_SYMBOL(phy_driver_register);
2615
2616int phy_drivers_register(struct phy_driver *new_driver, int n,
2617 struct module *owner)
2618{
2619 int i, ret = 0;
2620
2621 for (i = 0; i < n; i++) {
2622 ret = phy_driver_register(new_driver + i, owner);
2623 if (ret) {
2624 while (i-- > 0)
2625 phy_driver_unregister(new_driver + i);
2626 break;
2627 }
2628 }
2629 return ret;
2630}
2631EXPORT_SYMBOL(phy_drivers_register);
2632
2633void phy_driver_unregister(struct phy_driver *drv)
2634{
2635 driver_unregister(&drv->mdiodrv.driver);
2636}
2637EXPORT_SYMBOL(phy_driver_unregister);
2638
2639void phy_drivers_unregister(struct phy_driver *drv, int n)
2640{
2641 int i;
2642
2643 for (i = 0; i < n; i++)
2644 phy_driver_unregister(drv + i);
2645}
2646EXPORT_SYMBOL(phy_drivers_unregister);
2647
2648static struct phy_driver genphy_driver = {
2649 .phy_id = 0xffffffff,
2650 .phy_id_mask = 0xffffffff,
2651 .name = "Generic PHY",
2652 .soft_reset = genphy_no_soft_reset,
2653 .get_features = genphy_read_abilities,
2654 .aneg_done = genphy_aneg_done,
2655 .suspend = genphy_suspend,
2656 .resume = genphy_resume,
2657 .set_loopback = genphy_loopback,
2658};
2659
2660static int __init phy_init(void)
2661{
2662 int rc;
2663
2664 rc = mdio_bus_init();
2665 if (rc)
2666 return rc;
2667
2668 features_init();
2669
2670 rc = phy_driver_register(&genphy_c45_driver, THIS_MODULE);
2671 if (rc)
2672 goto err_c45;
2673
2674 rc = phy_driver_register(&genphy_driver, THIS_MODULE);
2675 if (rc) {
2676 phy_driver_unregister(&genphy_c45_driver);
2677err_c45:
2678 mdio_bus_exit();
2679 }
2680
2681 return rc;
2682}
2683
2684static void __exit phy_exit(void)
2685{
2686 phy_driver_unregister(&genphy_c45_driver);
2687 phy_driver_unregister(&genphy_driver);
2688 mdio_bus_exit();
2689}
2690
2691subsys_initcall(phy_init);
2692module_exit(phy_exit);