net: phy: fix null-ptr-deref while probe() failed
[platform/kernel/linux-starfive.git] / drivers / net / phy / phy_device.c
1 // 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/acpi.h>
13 #include <linux/bitmap.h>
14 #include <linux/delay.h>
15 #include <linux/errno.h>
16 #include <linux/etherdevice.h>
17 #include <linux/ethtool.h>
18 #include <linux/init.h>
19 #include <linux/interrupt.h>
20 #include <linux/io.h>
21 #include <linux/kernel.h>
22 #include <linux/mdio.h>
23 #include <linux/mii.h>
24 #include <linux/mm.h>
25 #include <linux/module.h>
26 #include <linux/netdevice.h>
27 #include <linux/phy.h>
28 #include <linux/phy_led_triggers.h>
29 #include <linux/pse-pd/pse.h>
30 #include <linux/property.h>
31 #include <linux/sfp.h>
32 #include <linux/skbuff.h>
33 #include <linux/slab.h>
34 #include <linux/string.h>
35 #include <linux/uaccess.h>
36 #include <linux/unistd.h>
37
38 MODULE_DESCRIPTION("PHY library");
39 MODULE_AUTHOR("Andy Fleming");
40 MODULE_LICENSE("GPL");
41
42 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_features) __ro_after_init;
43 EXPORT_SYMBOL_GPL(phy_basic_features);
44
45 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_t1_features) __ro_after_init;
46 EXPORT_SYMBOL_GPL(phy_basic_t1_features);
47
48 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_features) __ro_after_init;
49 EXPORT_SYMBOL_GPL(phy_gbit_features);
50
51 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_fibre_features) __ro_after_init;
52 EXPORT_SYMBOL_GPL(phy_gbit_fibre_features);
53
54 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_all_ports_features) __ro_after_init;
55 EXPORT_SYMBOL_GPL(phy_gbit_all_ports_features);
56
57 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_features) __ro_after_init;
58 EXPORT_SYMBOL_GPL(phy_10gbit_features);
59
60 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_fec_features) __ro_after_init;
61 EXPORT_SYMBOL_GPL(phy_10gbit_fec_features);
62
63 const int phy_basic_ports_array[3] = {
64         ETHTOOL_LINK_MODE_Autoneg_BIT,
65         ETHTOOL_LINK_MODE_TP_BIT,
66         ETHTOOL_LINK_MODE_MII_BIT,
67 };
68 EXPORT_SYMBOL_GPL(phy_basic_ports_array);
69
70 const int phy_fibre_port_array[1] = {
71         ETHTOOL_LINK_MODE_FIBRE_BIT,
72 };
73 EXPORT_SYMBOL_GPL(phy_fibre_port_array);
74
75 const int phy_all_ports_features_array[7] = {
76         ETHTOOL_LINK_MODE_Autoneg_BIT,
77         ETHTOOL_LINK_MODE_TP_BIT,
78         ETHTOOL_LINK_MODE_MII_BIT,
79         ETHTOOL_LINK_MODE_FIBRE_BIT,
80         ETHTOOL_LINK_MODE_AUI_BIT,
81         ETHTOOL_LINK_MODE_BNC_BIT,
82         ETHTOOL_LINK_MODE_Backplane_BIT,
83 };
84 EXPORT_SYMBOL_GPL(phy_all_ports_features_array);
85
86 const int phy_10_100_features_array[4] = {
87         ETHTOOL_LINK_MODE_10baseT_Half_BIT,
88         ETHTOOL_LINK_MODE_10baseT_Full_BIT,
89         ETHTOOL_LINK_MODE_100baseT_Half_BIT,
90         ETHTOOL_LINK_MODE_100baseT_Full_BIT,
91 };
92 EXPORT_SYMBOL_GPL(phy_10_100_features_array);
93
94 const int phy_basic_t1_features_array[3] = {
95         ETHTOOL_LINK_MODE_TP_BIT,
96         ETHTOOL_LINK_MODE_10baseT1L_Full_BIT,
97         ETHTOOL_LINK_MODE_100baseT1_Full_BIT,
98 };
99 EXPORT_SYMBOL_GPL(phy_basic_t1_features_array);
100
101 const int phy_gbit_features_array[2] = {
102         ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
103         ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
104 };
105 EXPORT_SYMBOL_GPL(phy_gbit_features_array);
106
107 const int phy_10gbit_features_array[1] = {
108         ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
109 };
110 EXPORT_SYMBOL_GPL(phy_10gbit_features_array);
111
112 static const int phy_10gbit_fec_features_array[1] = {
113         ETHTOOL_LINK_MODE_10000baseR_FEC_BIT,
114 };
115
116 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_full_features) __ro_after_init;
117 EXPORT_SYMBOL_GPL(phy_10gbit_full_features);
118
119 static const int phy_10gbit_full_features_array[] = {
120         ETHTOOL_LINK_MODE_10baseT_Full_BIT,
121         ETHTOOL_LINK_MODE_100baseT_Full_BIT,
122         ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
123         ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
124 };
125
126 static void features_init(void)
127 {
128         /* 10/100 half/full*/
129         linkmode_set_bit_array(phy_basic_ports_array,
130                                ARRAY_SIZE(phy_basic_ports_array),
131                                phy_basic_features);
132         linkmode_set_bit_array(phy_10_100_features_array,
133                                ARRAY_SIZE(phy_10_100_features_array),
134                                phy_basic_features);
135
136         /* 100 full, TP */
137         linkmode_set_bit_array(phy_basic_t1_features_array,
138                                ARRAY_SIZE(phy_basic_t1_features_array),
139                                phy_basic_t1_features);
140
141         /* 10/100 half/full + 1000 half/full */
142         linkmode_set_bit_array(phy_basic_ports_array,
143                                ARRAY_SIZE(phy_basic_ports_array),
144                                phy_gbit_features);
145         linkmode_set_bit_array(phy_10_100_features_array,
146                                ARRAY_SIZE(phy_10_100_features_array),
147                                phy_gbit_features);
148         linkmode_set_bit_array(phy_gbit_features_array,
149                                ARRAY_SIZE(phy_gbit_features_array),
150                                phy_gbit_features);
151
152         /* 10/100 half/full + 1000 half/full + fibre*/
153         linkmode_set_bit_array(phy_basic_ports_array,
154                                ARRAY_SIZE(phy_basic_ports_array),
155                                phy_gbit_fibre_features);
156         linkmode_set_bit_array(phy_10_100_features_array,
157                                ARRAY_SIZE(phy_10_100_features_array),
158                                phy_gbit_fibre_features);
159         linkmode_set_bit_array(phy_gbit_features_array,
160                                ARRAY_SIZE(phy_gbit_features_array),
161                                phy_gbit_fibre_features);
162         linkmode_set_bit_array(phy_fibre_port_array,
163                                ARRAY_SIZE(phy_fibre_port_array),
164                                phy_gbit_fibre_features);
165
166         /* 10/100 half/full + 1000 half/full + TP/MII/FIBRE/AUI/BNC/Backplane*/
167         linkmode_set_bit_array(phy_all_ports_features_array,
168                                ARRAY_SIZE(phy_all_ports_features_array),
169                                phy_gbit_all_ports_features);
170         linkmode_set_bit_array(phy_10_100_features_array,
171                                ARRAY_SIZE(phy_10_100_features_array),
172                                phy_gbit_all_ports_features);
173         linkmode_set_bit_array(phy_gbit_features_array,
174                                ARRAY_SIZE(phy_gbit_features_array),
175                                phy_gbit_all_ports_features);
176
177         /* 10/100 half/full + 1000 half/full + 10G full*/
178         linkmode_set_bit_array(phy_all_ports_features_array,
179                                ARRAY_SIZE(phy_all_ports_features_array),
180                                phy_10gbit_features);
181         linkmode_set_bit_array(phy_10_100_features_array,
182                                ARRAY_SIZE(phy_10_100_features_array),
183                                phy_10gbit_features);
184         linkmode_set_bit_array(phy_gbit_features_array,
185                                ARRAY_SIZE(phy_gbit_features_array),
186                                phy_10gbit_features);
187         linkmode_set_bit_array(phy_10gbit_features_array,
188                                ARRAY_SIZE(phy_10gbit_features_array),
189                                phy_10gbit_features);
190
191         /* 10/100/1000/10G full */
192         linkmode_set_bit_array(phy_all_ports_features_array,
193                                ARRAY_SIZE(phy_all_ports_features_array),
194                                phy_10gbit_full_features);
195         linkmode_set_bit_array(phy_10gbit_full_features_array,
196                                ARRAY_SIZE(phy_10gbit_full_features_array),
197                                phy_10gbit_full_features);
198         /* 10G FEC only */
199         linkmode_set_bit_array(phy_10gbit_fec_features_array,
200                                ARRAY_SIZE(phy_10gbit_fec_features_array),
201                                phy_10gbit_fec_features);
202 }
203
204 void phy_device_free(struct phy_device *phydev)
205 {
206         put_device(&phydev->mdio.dev);
207 }
208 EXPORT_SYMBOL(phy_device_free);
209
210 static void phy_mdio_device_free(struct mdio_device *mdiodev)
211 {
212         struct phy_device *phydev;
213
214         phydev = container_of(mdiodev, struct phy_device, mdio);
215         phy_device_free(phydev);
216 }
217
218 static void phy_device_release(struct device *dev)
219 {
220         kfree(to_phy_device(dev));
221 }
222
223 static void phy_mdio_device_remove(struct mdio_device *mdiodev)
224 {
225         struct phy_device *phydev;
226
227         phydev = container_of(mdiodev, struct phy_device, mdio);
228         phy_device_remove(phydev);
229 }
230
231 static struct phy_driver genphy_driver;
232
233 static LIST_HEAD(phy_fixup_list);
234 static DEFINE_MUTEX(phy_fixup_lock);
235
236 static bool mdio_bus_phy_may_suspend(struct phy_device *phydev)
237 {
238         struct device_driver *drv = phydev->mdio.dev.driver;
239         struct phy_driver *phydrv = to_phy_driver(drv);
240         struct net_device *netdev = phydev->attached_dev;
241
242         if (!drv || !phydrv->suspend)
243                 return false;
244
245         /* PHY not attached? May suspend if the PHY has not already been
246          * suspended as part of a prior call to phy_disconnect() ->
247          * phy_detach() -> phy_suspend() because the parent netdev might be the
248          * MDIO bus driver and clock gated at this point.
249          */
250         if (!netdev)
251                 goto out;
252
253         if (netdev->wol_enabled)
254                 return false;
255
256         /* As long as not all affected network drivers support the
257          * wol_enabled flag, let's check for hints that WoL is enabled.
258          * Don't suspend PHY if the attached netdev parent may wake up.
259          * The parent may point to a PCI device, as in tg3 driver.
260          */
261         if (netdev->dev.parent && device_may_wakeup(netdev->dev.parent))
262                 return false;
263
264         /* Also don't suspend PHY if the netdev itself may wakeup. This
265          * is the case for devices w/o underlaying pwr. mgmt. aware bus,
266          * e.g. SoC devices.
267          */
268         if (device_may_wakeup(&netdev->dev))
269                 return false;
270
271 out:
272         return !phydev->suspended;
273 }
274
275 static __maybe_unused int mdio_bus_phy_suspend(struct device *dev)
276 {
277         struct phy_device *phydev = to_phy_device(dev);
278
279         if (phydev->mac_managed_pm)
280                 return 0;
281
282         /* Wakeup interrupts may occur during the system sleep transition when
283          * the PHY is inaccessible. Set flag to postpone handling until the PHY
284          * has resumed. Wait for concurrent interrupt handler to complete.
285          */
286         if (phy_interrupt_is_valid(phydev)) {
287                 phydev->irq_suspended = 1;
288                 synchronize_irq(phydev->irq);
289         }
290
291         /* We must stop the state machine manually, otherwise it stops out of
292          * control, possibly with the phydev->lock held. Upon resume, netdev
293          * may call phy routines that try to grab the same lock, and that may
294          * lead to a deadlock.
295          */
296         if (phydev->attached_dev && phydev->adjust_link)
297                 phy_stop_machine(phydev);
298
299         if (!mdio_bus_phy_may_suspend(phydev))
300                 return 0;
301
302         phydev->suspended_by_mdio_bus = 1;
303
304         return phy_suspend(phydev);
305 }
306
307 static __maybe_unused int mdio_bus_phy_resume(struct device *dev)
308 {
309         struct phy_device *phydev = to_phy_device(dev);
310         int ret;
311
312         if (phydev->mac_managed_pm)
313                 return 0;
314
315         if (!phydev->suspended_by_mdio_bus)
316                 goto no_resume;
317
318         phydev->suspended_by_mdio_bus = 0;
319
320         /* If we managed to get here with the PHY state machine in a state
321          * neither PHY_HALTED, PHY_READY nor PHY_UP, this is an indication
322          * that something went wrong and we should most likely be using
323          * MAC managed PM, but we are not.
324          */
325         WARN_ON(phydev->state != PHY_HALTED && phydev->state != PHY_READY &&
326                 phydev->state != PHY_UP);
327
328         ret = phy_init_hw(phydev);
329         if (ret < 0)
330                 return ret;
331
332         ret = phy_resume(phydev);
333         if (ret < 0)
334                 return ret;
335 no_resume:
336         if (phy_interrupt_is_valid(phydev)) {
337                 phydev->irq_suspended = 0;
338                 synchronize_irq(phydev->irq);
339
340                 /* Rerun interrupts which were postponed by phy_interrupt()
341                  * because they occurred during the system sleep transition.
342                  */
343                 if (phydev->irq_rerun) {
344                         phydev->irq_rerun = 0;
345                         enable_irq(phydev->irq);
346                         irq_wake_thread(phydev->irq, phydev);
347                 }
348         }
349
350         if (phydev->attached_dev && phydev->adjust_link)
351                 phy_start_machine(phydev);
352
353         return 0;
354 }
355
356 static SIMPLE_DEV_PM_OPS(mdio_bus_phy_pm_ops, mdio_bus_phy_suspend,
357                          mdio_bus_phy_resume);
358
359 /**
360  * phy_register_fixup - creates a new phy_fixup and adds it to the list
361  * @bus_id: A string which matches phydev->mdio.dev.bus_id (or PHY_ANY_ID)
362  * @phy_uid: Used to match against phydev->phy_id (the UID of the PHY)
363  *      It can also be PHY_ANY_UID
364  * @phy_uid_mask: Applied to phydev->phy_id and fixup->phy_uid before
365  *      comparison
366  * @run: The actual code to be run when a matching PHY is found
367  */
368 int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
369                        int (*run)(struct phy_device *))
370 {
371         struct phy_fixup *fixup = kzalloc(sizeof(*fixup), GFP_KERNEL);
372
373         if (!fixup)
374                 return -ENOMEM;
375
376         strscpy(fixup->bus_id, bus_id, sizeof(fixup->bus_id));
377         fixup->phy_uid = phy_uid;
378         fixup->phy_uid_mask = phy_uid_mask;
379         fixup->run = run;
380
381         mutex_lock(&phy_fixup_lock);
382         list_add_tail(&fixup->list, &phy_fixup_list);
383         mutex_unlock(&phy_fixup_lock);
384
385         return 0;
386 }
387 EXPORT_SYMBOL(phy_register_fixup);
388
389 /* Registers a fixup to be run on any PHY with the UID in phy_uid */
390 int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask,
391                                int (*run)(struct phy_device *))
392 {
393         return phy_register_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask, run);
394 }
395 EXPORT_SYMBOL(phy_register_fixup_for_uid);
396
397 /* Registers a fixup to be run on the PHY with id string bus_id */
398 int phy_register_fixup_for_id(const char *bus_id,
399                               int (*run)(struct phy_device *))
400 {
401         return phy_register_fixup(bus_id, PHY_ANY_UID, 0xffffffff, run);
402 }
403 EXPORT_SYMBOL(phy_register_fixup_for_id);
404
405 /**
406  * phy_unregister_fixup - remove a phy_fixup from the list
407  * @bus_id: A string matches fixup->bus_id (or PHY_ANY_ID) in phy_fixup_list
408  * @phy_uid: A phy id matches fixup->phy_id (or PHY_ANY_UID) in phy_fixup_list
409  * @phy_uid_mask: Applied to phy_uid and fixup->phy_uid before comparison
410  */
411 int phy_unregister_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask)
412 {
413         struct list_head *pos, *n;
414         struct phy_fixup *fixup;
415         int ret;
416
417         ret = -ENODEV;
418
419         mutex_lock(&phy_fixup_lock);
420         list_for_each_safe(pos, n, &phy_fixup_list) {
421                 fixup = list_entry(pos, struct phy_fixup, list);
422
423                 if ((!strcmp(fixup->bus_id, bus_id)) &&
424                     ((fixup->phy_uid & phy_uid_mask) ==
425                      (phy_uid & phy_uid_mask))) {
426                         list_del(&fixup->list);
427                         kfree(fixup);
428                         ret = 0;
429                         break;
430                 }
431         }
432         mutex_unlock(&phy_fixup_lock);
433
434         return ret;
435 }
436 EXPORT_SYMBOL(phy_unregister_fixup);
437
438 /* Unregisters a fixup of any PHY with the UID in phy_uid */
439 int phy_unregister_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask)
440 {
441         return phy_unregister_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask);
442 }
443 EXPORT_SYMBOL(phy_unregister_fixup_for_uid);
444
445 /* Unregisters a fixup of the PHY with id string bus_id */
446 int phy_unregister_fixup_for_id(const char *bus_id)
447 {
448         return phy_unregister_fixup(bus_id, PHY_ANY_UID, 0xffffffff);
449 }
450 EXPORT_SYMBOL(phy_unregister_fixup_for_id);
451
452 /* Returns 1 if fixup matches phydev in bus_id and phy_uid.
453  * Fixups can be set to match any in one or more fields.
454  */
455 static int phy_needs_fixup(struct phy_device *phydev, struct phy_fixup *fixup)
456 {
457         if (strcmp(fixup->bus_id, phydev_name(phydev)) != 0)
458                 if (strcmp(fixup->bus_id, PHY_ANY_ID) != 0)
459                         return 0;
460
461         if ((fixup->phy_uid & fixup->phy_uid_mask) !=
462             (phydev->phy_id & fixup->phy_uid_mask))
463                 if (fixup->phy_uid != PHY_ANY_UID)
464                         return 0;
465
466         return 1;
467 }
468
469 /* Runs any matching fixups for this phydev */
470 static int phy_scan_fixups(struct phy_device *phydev)
471 {
472         struct phy_fixup *fixup;
473
474         mutex_lock(&phy_fixup_lock);
475         list_for_each_entry(fixup, &phy_fixup_list, list) {
476                 if (phy_needs_fixup(phydev, fixup)) {
477                         int err = fixup->run(phydev);
478
479                         if (err < 0) {
480                                 mutex_unlock(&phy_fixup_lock);
481                                 return err;
482                         }
483                         phydev->has_fixups = true;
484                 }
485         }
486         mutex_unlock(&phy_fixup_lock);
487
488         return 0;
489 }
490
491 static int phy_bus_match(struct device *dev, struct device_driver *drv)
492 {
493         struct phy_device *phydev = to_phy_device(dev);
494         struct phy_driver *phydrv = to_phy_driver(drv);
495         const int num_ids = ARRAY_SIZE(phydev->c45_ids.device_ids);
496         int i;
497
498         if (!(phydrv->mdiodrv.flags & MDIO_DEVICE_IS_PHY))
499                 return 0;
500
501         if (phydrv->match_phy_device)
502                 return phydrv->match_phy_device(phydev);
503
504         if (phydev->is_c45) {
505                 for (i = 1; i < num_ids; i++) {
506                         if (phydev->c45_ids.device_ids[i] == 0xffffffff)
507                                 continue;
508
509                         if ((phydrv->phy_id & phydrv->phy_id_mask) ==
510                             (phydev->c45_ids.device_ids[i] &
511                              phydrv->phy_id_mask))
512                                 return 1;
513                 }
514                 return 0;
515         } else {
516                 return (phydrv->phy_id & phydrv->phy_id_mask) ==
517                         (phydev->phy_id & phydrv->phy_id_mask);
518         }
519 }
520
521 static ssize_t
522 phy_id_show(struct device *dev, struct device_attribute *attr, char *buf)
523 {
524         struct phy_device *phydev = to_phy_device(dev);
525
526         return sysfs_emit(buf, "0x%.8lx\n", (unsigned long)phydev->phy_id);
527 }
528 static DEVICE_ATTR_RO(phy_id);
529
530 static ssize_t
531 phy_interface_show(struct device *dev, struct device_attribute *attr, char *buf)
532 {
533         struct phy_device *phydev = to_phy_device(dev);
534         const char *mode = NULL;
535
536         if (phy_is_internal(phydev))
537                 mode = "internal";
538         else
539                 mode = phy_modes(phydev->interface);
540
541         return sysfs_emit(buf, "%s\n", mode);
542 }
543 static DEVICE_ATTR_RO(phy_interface);
544
545 static ssize_t
546 phy_has_fixups_show(struct device *dev, struct device_attribute *attr,
547                     char *buf)
548 {
549         struct phy_device *phydev = to_phy_device(dev);
550
551         return sysfs_emit(buf, "%d\n", phydev->has_fixups);
552 }
553 static DEVICE_ATTR_RO(phy_has_fixups);
554
555 static ssize_t phy_dev_flags_show(struct device *dev,
556                                   struct device_attribute *attr,
557                                   char *buf)
558 {
559         struct phy_device *phydev = to_phy_device(dev);
560
561         return sysfs_emit(buf, "0x%08x\n", phydev->dev_flags);
562 }
563 static DEVICE_ATTR_RO(phy_dev_flags);
564
565 static struct attribute *phy_dev_attrs[] = {
566         &dev_attr_phy_id.attr,
567         &dev_attr_phy_interface.attr,
568         &dev_attr_phy_has_fixups.attr,
569         &dev_attr_phy_dev_flags.attr,
570         NULL,
571 };
572 ATTRIBUTE_GROUPS(phy_dev);
573
574 static const struct device_type mdio_bus_phy_type = {
575         .name = "PHY",
576         .groups = phy_dev_groups,
577         .release = phy_device_release,
578         .pm = pm_ptr(&mdio_bus_phy_pm_ops),
579 };
580
581 static int phy_request_driver_module(struct phy_device *dev, u32 phy_id)
582 {
583         int ret;
584
585         ret = request_module(MDIO_MODULE_PREFIX MDIO_ID_FMT,
586                              MDIO_ID_ARGS(phy_id));
587         /* We only check for failures in executing the usermode binary,
588          * not whether a PHY driver module exists for the PHY ID.
589          * Accept -ENOENT because this may occur in case no initramfs exists,
590          * then modprobe isn't available.
591          */
592         if (IS_ENABLED(CONFIG_MODULES) && ret < 0 && ret != -ENOENT) {
593                 phydev_err(dev, "error %d loading PHY driver module for ID 0x%08lx\n",
594                            ret, (unsigned long)phy_id);
595                 return ret;
596         }
597
598         return 0;
599 }
600
601 struct phy_device *phy_device_create(struct mii_bus *bus, int addr, u32 phy_id,
602                                      bool is_c45,
603                                      struct phy_c45_device_ids *c45_ids)
604 {
605         struct phy_device *dev;
606         struct mdio_device *mdiodev;
607         int ret = 0;
608
609         /* We allocate the device, and initialize the default values */
610         dev = kzalloc(sizeof(*dev), GFP_KERNEL);
611         if (!dev)
612                 return ERR_PTR(-ENOMEM);
613
614         mdiodev = &dev->mdio;
615         mdiodev->dev.parent = &bus->dev;
616         mdiodev->dev.bus = &mdio_bus_type;
617         mdiodev->dev.type = &mdio_bus_phy_type;
618         mdiodev->bus = bus;
619         mdiodev->bus_match = phy_bus_match;
620         mdiodev->addr = addr;
621         mdiodev->flags = MDIO_DEVICE_FLAG_PHY;
622         mdiodev->device_free = phy_mdio_device_free;
623         mdiodev->device_remove = phy_mdio_device_remove;
624
625         dev->speed = SPEED_UNKNOWN;
626         dev->duplex = DUPLEX_UNKNOWN;
627         dev->pause = 0;
628         dev->asym_pause = 0;
629         dev->link = 0;
630         dev->port = PORT_TP;
631         dev->interface = PHY_INTERFACE_MODE_GMII;
632
633         dev->autoneg = AUTONEG_ENABLE;
634
635         dev->pma_extable = -ENODATA;
636         dev->is_c45 = is_c45;
637         dev->phy_id = phy_id;
638         if (c45_ids)
639                 dev->c45_ids = *c45_ids;
640         dev->irq = bus->irq[addr];
641
642         dev_set_name(&mdiodev->dev, PHY_ID_FMT, bus->id, addr);
643         device_initialize(&mdiodev->dev);
644
645         dev->state = PHY_DOWN;
646
647         mutex_init(&dev->lock);
648         INIT_DELAYED_WORK(&dev->state_queue, phy_state_machine);
649
650         /* Request the appropriate module unconditionally; don't
651          * bother trying to do so only if it isn't already loaded,
652          * because that gets complicated. A hotplug event would have
653          * done an unconditional modprobe anyway.
654          * We don't do normal hotplug because it won't work for MDIO
655          * -- because it relies on the device staying around for long
656          * enough for the driver to get loaded. With MDIO, the NIC
657          * driver will get bored and give up as soon as it finds that
658          * there's no driver _already_ loaded.
659          */
660         if (is_c45 && c45_ids) {
661                 const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
662                 int i;
663
664                 for (i = 1; i < num_ids; i++) {
665                         if (c45_ids->device_ids[i] == 0xffffffff)
666                                 continue;
667
668                         ret = phy_request_driver_module(dev,
669                                                 c45_ids->device_ids[i]);
670                         if (ret)
671                                 break;
672                 }
673         } else {
674                 ret = phy_request_driver_module(dev, phy_id);
675         }
676
677         if (ret) {
678                 put_device(&mdiodev->dev);
679                 dev = ERR_PTR(ret);
680         }
681
682         return dev;
683 }
684 EXPORT_SYMBOL(phy_device_create);
685
686 /* phy_c45_probe_present - checks to see if a MMD is present in the package
687  * @bus: the target MII bus
688  * @prtad: PHY package address on the MII bus
689  * @devad: PHY device (MMD) address
690  *
691  * Read the MDIO_STAT2 register, and check whether a device is responding
692  * at this address.
693  *
694  * Returns: negative error number on bus access error, zero if no device
695  * is responding, or positive if a device is present.
696  */
697 static int phy_c45_probe_present(struct mii_bus *bus, int prtad, int devad)
698 {
699         int stat2;
700
701         stat2 = mdiobus_c45_read(bus, prtad, devad, MDIO_STAT2);
702         if (stat2 < 0)
703                 return stat2;
704
705         return (stat2 & MDIO_STAT2_DEVPRST) == MDIO_STAT2_DEVPRST_VAL;
706 }
707
708 /* get_phy_c45_devs_in_pkg - reads a MMD's devices in package registers.
709  * @bus: the target MII bus
710  * @addr: PHY address on the MII bus
711  * @dev_addr: MMD address in the PHY.
712  * @devices_in_package: where to store the devices in package information.
713  *
714  * Description: reads devices in package registers of a MMD at @dev_addr
715  * from PHY at @addr on @bus.
716  *
717  * Returns: 0 on success, -EIO on failure.
718  */
719 static int get_phy_c45_devs_in_pkg(struct mii_bus *bus, int addr, int dev_addr,
720                                    u32 *devices_in_package)
721 {
722         int phy_reg;
723
724         phy_reg = mdiobus_c45_read(bus, addr, dev_addr, MDIO_DEVS2);
725         if (phy_reg < 0)
726                 return -EIO;
727         *devices_in_package = phy_reg << 16;
728
729         phy_reg = mdiobus_c45_read(bus, addr, dev_addr, MDIO_DEVS1);
730         if (phy_reg < 0)
731                 return -EIO;
732         *devices_in_package |= phy_reg;
733
734         return 0;
735 }
736
737 /**
738  * get_phy_c45_ids - reads the specified addr for its 802.3-c45 IDs.
739  * @bus: the target MII bus
740  * @addr: PHY address on the MII bus
741  * @c45_ids: where to store the c45 ID information.
742  *
743  * Read the PHY "devices in package". If this appears to be valid, read
744  * the PHY identifiers for each device. Return the "devices in package"
745  * and identifiers in @c45_ids.
746  *
747  * Returns zero on success, %-EIO on bus access error, or %-ENODEV if
748  * the "devices in package" is invalid.
749  */
750 static int get_phy_c45_ids(struct mii_bus *bus, int addr,
751                            struct phy_c45_device_ids *c45_ids)
752 {
753         const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
754         u32 devs_in_pkg = 0;
755         int i, ret, phy_reg;
756
757         /* Find first non-zero Devices In package. Device zero is reserved
758          * for 802.3 c45 complied PHYs, so don't probe it at first.
759          */
760         for (i = 1; i < MDIO_MMD_NUM && (devs_in_pkg == 0 ||
761              (devs_in_pkg & 0x1fffffff) == 0x1fffffff); i++) {
762                 if (i == MDIO_MMD_VEND1 || i == MDIO_MMD_VEND2) {
763                         /* Check that there is a device present at this
764                          * address before reading the devices-in-package
765                          * register to avoid reading garbage from the PHY.
766                          * Some PHYs (88x3310) vendor space is not IEEE802.3
767                          * compliant.
768                          */
769                         ret = phy_c45_probe_present(bus, addr, i);
770                         if (ret < 0)
771                                 return -EIO;
772
773                         if (!ret)
774                                 continue;
775                 }
776                 phy_reg = get_phy_c45_devs_in_pkg(bus, addr, i, &devs_in_pkg);
777                 if (phy_reg < 0)
778                         return -EIO;
779         }
780
781         if ((devs_in_pkg & 0x1fffffff) == 0x1fffffff) {
782                 /* If mostly Fs, there is no device there, then let's probe
783                  * MMD 0, as some 10G PHYs have zero Devices In package,
784                  * e.g. Cortina CS4315/CS4340 PHY.
785                  */
786                 phy_reg = get_phy_c45_devs_in_pkg(bus, addr, 0, &devs_in_pkg);
787                 if (phy_reg < 0)
788                         return -EIO;
789
790                 /* no device there, let's get out of here */
791                 if ((devs_in_pkg & 0x1fffffff) == 0x1fffffff)
792                         return -ENODEV;
793         }
794
795         /* Now probe Device Identifiers for each device present. */
796         for (i = 1; i < num_ids; i++) {
797                 if (!(devs_in_pkg & (1 << i)))
798                         continue;
799
800                 if (i == MDIO_MMD_VEND1 || i == MDIO_MMD_VEND2) {
801                         /* Probe the "Device Present" bits for the vendor MMDs
802                          * to ignore these if they do not contain IEEE 802.3
803                          * registers.
804                          */
805                         ret = phy_c45_probe_present(bus, addr, i);
806                         if (ret < 0)
807                                 return ret;
808
809                         if (!ret)
810                                 continue;
811                 }
812
813                 phy_reg = mdiobus_c45_read(bus, addr, i, MII_PHYSID1);
814                 if (phy_reg < 0)
815                         return -EIO;
816                 c45_ids->device_ids[i] = phy_reg << 16;
817
818                 phy_reg = mdiobus_c45_read(bus, addr, i, MII_PHYSID2);
819                 if (phy_reg < 0)
820                         return -EIO;
821                 c45_ids->device_ids[i] |= phy_reg;
822         }
823
824         c45_ids->devices_in_package = devs_in_pkg;
825         /* Bit 0 doesn't represent a device, it indicates c22 regs presence */
826         c45_ids->mmds_present = devs_in_pkg & ~BIT(0);
827
828         return 0;
829 }
830
831 /**
832  * get_phy_c22_id - reads the specified addr for its clause 22 ID.
833  * @bus: the target MII bus
834  * @addr: PHY address on the MII bus
835  * @phy_id: where to store the ID retrieved.
836  *
837  * Read the 802.3 clause 22 PHY ID from the PHY at @addr on the @bus,
838  * placing it in @phy_id. Return zero on successful read and the ID is
839  * valid, %-EIO on bus access error, or %-ENODEV if no device responds
840  * or invalid ID.
841  */
842 static int get_phy_c22_id(struct mii_bus *bus, int addr, u32 *phy_id)
843 {
844         int phy_reg;
845
846         /* Grab the bits from PHYIR1, and put them in the upper half */
847         phy_reg = mdiobus_read(bus, addr, MII_PHYSID1);
848         if (phy_reg < 0) {
849                 /* returning -ENODEV doesn't stop bus scanning */
850                 return (phy_reg == -EIO || phy_reg == -ENODEV) ? -ENODEV : -EIO;
851         }
852
853         *phy_id = phy_reg << 16;
854
855         /* Grab the bits from PHYIR2, and put them in the lower half */
856         phy_reg = mdiobus_read(bus, addr, MII_PHYSID2);
857         if (phy_reg < 0) {
858                 /* returning -ENODEV doesn't stop bus scanning */
859                 return (phy_reg == -EIO || phy_reg == -ENODEV) ? -ENODEV : -EIO;
860         }
861
862         *phy_id |= phy_reg;
863
864         /* If the phy_id is mostly Fs, there is no device there */
865         if ((*phy_id & 0x1fffffff) == 0x1fffffff)
866                 return -ENODEV;
867
868         return 0;
869 }
870
871 /* Extract the phy ID from the compatible string of the form
872  * ethernet-phy-idAAAA.BBBB.
873  */
874 int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id)
875 {
876         unsigned int upper, lower;
877         const char *cp;
878         int ret;
879
880         ret = fwnode_property_read_string(fwnode, "compatible", &cp);
881         if (ret)
882                 return ret;
883
884         if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) != 2)
885                 return -EINVAL;
886
887         *phy_id = ((upper & GENMASK(15, 0)) << 16) | (lower & GENMASK(15, 0));
888         return 0;
889 }
890 EXPORT_SYMBOL(fwnode_get_phy_id);
891
892 /**
893  * get_phy_device - reads the specified PHY device and returns its @phy_device
894  *                  struct
895  * @bus: the target MII bus
896  * @addr: PHY address on the MII bus
897  * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
898  *
899  * Probe for a PHY at @addr on @bus.
900  *
901  * When probing for a clause 22 PHY, then read the ID registers. If we find
902  * a valid ID, allocate and return a &struct phy_device.
903  *
904  * When probing for a clause 45 PHY, read the "devices in package" registers.
905  * If the "devices in package" appears valid, read the ID registers for each
906  * MMD, allocate and return a &struct phy_device.
907  *
908  * Returns an allocated &struct phy_device on success, %-ENODEV if there is
909  * no PHY present, or %-EIO on bus access error.
910  */
911 struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45)
912 {
913         struct phy_c45_device_ids c45_ids;
914         u32 phy_id = 0;
915         int r;
916
917         c45_ids.devices_in_package = 0;
918         c45_ids.mmds_present = 0;
919         memset(c45_ids.device_ids, 0xff, sizeof(c45_ids.device_ids));
920
921         if (is_c45)
922                 r = get_phy_c45_ids(bus, addr, &c45_ids);
923         else
924                 r = get_phy_c22_id(bus, addr, &phy_id);
925
926         if (r)
927                 return ERR_PTR(r);
928
929         /* PHY device such as the Marvell Alaska 88E2110 will return a PHY ID
930          * of 0 when probed using get_phy_c22_id() with no error. Proceed to
931          * probe with C45 to see if we're able to get a valid PHY ID in the C45
932          * space, if successful, create the C45 PHY device.
933          */
934         if (!is_c45 && phy_id == 0 && bus->probe_capabilities >= MDIOBUS_C45) {
935                 r = get_phy_c45_ids(bus, addr, &c45_ids);
936                 if (!r)
937                         return phy_device_create(bus, addr, phy_id,
938                                                  true, &c45_ids);
939         }
940
941         return phy_device_create(bus, addr, phy_id, is_c45, &c45_ids);
942 }
943 EXPORT_SYMBOL(get_phy_device);
944
945 /**
946  * phy_device_register - Register the phy device on the MDIO bus
947  * @phydev: phy_device structure to be added to the MDIO bus
948  */
949 int phy_device_register(struct phy_device *phydev)
950 {
951         int err;
952
953         err = mdiobus_register_device(&phydev->mdio);
954         if (err)
955                 return err;
956
957         /* Deassert the reset signal */
958         phy_device_reset(phydev, 0);
959
960         /* Run all of the fixups for this PHY */
961         err = phy_scan_fixups(phydev);
962         if (err) {
963                 phydev_err(phydev, "failed to initialize\n");
964                 goto out;
965         }
966
967         err = device_add(&phydev->mdio.dev);
968         if (err) {
969                 phydev_err(phydev, "failed to add\n");
970                 goto out;
971         }
972
973         return 0;
974
975  out:
976         /* Assert the reset signal */
977         phy_device_reset(phydev, 1);
978
979         mdiobus_unregister_device(&phydev->mdio);
980         return err;
981 }
982 EXPORT_SYMBOL(phy_device_register);
983
984 /**
985  * phy_device_remove - Remove a previously registered phy device from the MDIO bus
986  * @phydev: phy_device structure to remove
987  *
988  * This doesn't free the phy_device itself, it merely reverses the effects
989  * of phy_device_register(). Use phy_device_free() to free the device
990  * after calling this function.
991  */
992 void phy_device_remove(struct phy_device *phydev)
993 {
994         unregister_mii_timestamper(phydev->mii_ts);
995         pse_control_put(phydev->psec);
996
997         device_del(&phydev->mdio.dev);
998
999         /* Assert the reset signal */
1000         phy_device_reset(phydev, 1);
1001
1002         mdiobus_unregister_device(&phydev->mdio);
1003 }
1004 EXPORT_SYMBOL(phy_device_remove);
1005
1006 /**
1007  * phy_get_c45_ids - Read 802.3-c45 IDs for phy device.
1008  * @phydev: phy_device structure to read 802.3-c45 IDs
1009  *
1010  * Returns zero on success, %-EIO on bus access error, or %-ENODEV if
1011  * the "devices in package" is invalid.
1012  */
1013 int phy_get_c45_ids(struct phy_device *phydev)
1014 {
1015         return get_phy_c45_ids(phydev->mdio.bus, phydev->mdio.addr,
1016                                &phydev->c45_ids);
1017 }
1018 EXPORT_SYMBOL(phy_get_c45_ids);
1019
1020 /**
1021  * phy_find_first - finds the first PHY device on the bus
1022  * @bus: the target MII bus
1023  */
1024 struct phy_device *phy_find_first(struct mii_bus *bus)
1025 {
1026         struct phy_device *phydev;
1027         int addr;
1028
1029         for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
1030                 phydev = mdiobus_get_phy(bus, addr);
1031                 if (phydev)
1032                         return phydev;
1033         }
1034         return NULL;
1035 }
1036 EXPORT_SYMBOL(phy_find_first);
1037
1038 static void phy_link_change(struct phy_device *phydev, bool up)
1039 {
1040         struct net_device *netdev = phydev->attached_dev;
1041
1042         if (up)
1043                 netif_carrier_on(netdev);
1044         else
1045                 netif_carrier_off(netdev);
1046         phydev->adjust_link(netdev);
1047         if (phydev->mii_ts && phydev->mii_ts->link_state)
1048                 phydev->mii_ts->link_state(phydev->mii_ts, phydev);
1049 }
1050
1051 /**
1052  * phy_prepare_link - prepares the PHY layer to monitor link status
1053  * @phydev: target phy_device struct
1054  * @handler: callback function for link status change notifications
1055  *
1056  * Description: Tells the PHY infrastructure to handle the
1057  *   gory details on monitoring link status (whether through
1058  *   polling or an interrupt), and to call back to the
1059  *   connected device driver when the link status changes.
1060  *   If you want to monitor your own link state, don't call
1061  *   this function.
1062  */
1063 static void phy_prepare_link(struct phy_device *phydev,
1064                              void (*handler)(struct net_device *))
1065 {
1066         phydev->adjust_link = handler;
1067 }
1068
1069 /**
1070  * phy_connect_direct - connect an ethernet device to a specific phy_device
1071  * @dev: the network device to connect
1072  * @phydev: the pointer to the phy device
1073  * @handler: callback function for state change notifications
1074  * @interface: PHY device's interface
1075  */
1076 int phy_connect_direct(struct net_device *dev, struct phy_device *phydev,
1077                        void (*handler)(struct net_device *),
1078                        phy_interface_t interface)
1079 {
1080         int rc;
1081
1082         if (!dev)
1083                 return -EINVAL;
1084
1085         rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
1086         if (rc)
1087                 return rc;
1088
1089         phy_prepare_link(phydev, handler);
1090         if (phy_interrupt_is_valid(phydev))
1091                 phy_request_interrupt(phydev);
1092
1093         return 0;
1094 }
1095 EXPORT_SYMBOL(phy_connect_direct);
1096
1097 /**
1098  * phy_connect - connect an ethernet device to a PHY device
1099  * @dev: the network device to connect
1100  * @bus_id: the id string of the PHY device to connect
1101  * @handler: callback function for state change notifications
1102  * @interface: PHY device's interface
1103  *
1104  * Description: Convenience function for connecting ethernet
1105  *   devices to PHY devices.  The default behavior is for
1106  *   the PHY infrastructure to handle everything, and only notify
1107  *   the connected driver when the link status changes.  If you
1108  *   don't want, or can't use the provided functionality, you may
1109  *   choose to call only the subset of functions which provide
1110  *   the desired functionality.
1111  */
1112 struct phy_device *phy_connect(struct net_device *dev, const char *bus_id,
1113                                void (*handler)(struct net_device *),
1114                                phy_interface_t interface)
1115 {
1116         struct phy_device *phydev;
1117         struct device *d;
1118         int rc;
1119
1120         /* Search the list of PHY devices on the mdio bus for the
1121          * PHY with the requested name
1122          */
1123         d = bus_find_device_by_name(&mdio_bus_type, NULL, bus_id);
1124         if (!d) {
1125                 pr_err("PHY %s not found\n", bus_id);
1126                 return ERR_PTR(-ENODEV);
1127         }
1128         phydev = to_phy_device(d);
1129
1130         rc = phy_connect_direct(dev, phydev, handler, interface);
1131         put_device(d);
1132         if (rc)
1133                 return ERR_PTR(rc);
1134
1135         return phydev;
1136 }
1137 EXPORT_SYMBOL(phy_connect);
1138
1139 /**
1140  * phy_disconnect - disable interrupts, stop state machine, and detach a PHY
1141  *                  device
1142  * @phydev: target phy_device struct
1143  */
1144 void phy_disconnect(struct phy_device *phydev)
1145 {
1146         if (phy_is_started(phydev))
1147                 phy_stop(phydev);
1148
1149         if (phy_interrupt_is_valid(phydev))
1150                 phy_free_interrupt(phydev);
1151
1152         phydev->adjust_link = NULL;
1153
1154         phy_detach(phydev);
1155 }
1156 EXPORT_SYMBOL(phy_disconnect);
1157
1158 /**
1159  * phy_poll_reset - Safely wait until a PHY reset has properly completed
1160  * @phydev: The PHY device to poll
1161  *
1162  * Description: According to IEEE 802.3, Section 2, Subsection 22.2.4.1.1, as
1163  *   published in 2008, a PHY reset may take up to 0.5 seconds.  The MII BMCR
1164  *   register must be polled until the BMCR_RESET bit clears.
1165  *
1166  *   Furthermore, any attempts to write to PHY registers may have no effect
1167  *   or even generate MDIO bus errors until this is complete.
1168  *
1169  *   Some PHYs (such as the Marvell 88E1111) don't entirely conform to the
1170  *   standard and do not fully reset after the BMCR_RESET bit is set, and may
1171  *   even *REQUIRE* a soft-reset to properly restart autonegotiation.  In an
1172  *   effort to support such broken PHYs, this function is separate from the
1173  *   standard phy_init_hw() which will zero all the other bits in the BMCR
1174  *   and reapply all driver-specific and board-specific fixups.
1175  */
1176 static int phy_poll_reset(struct phy_device *phydev)
1177 {
1178         /* Poll until the reset bit clears (50ms per retry == 0.6 sec) */
1179         int ret, val;
1180
1181         ret = phy_read_poll_timeout(phydev, MII_BMCR, val, !(val & BMCR_RESET),
1182                                     50000, 600000, true);
1183         if (ret)
1184                 return ret;
1185         /* Some chips (smsc911x) may still need up to another 1ms after the
1186          * BMCR_RESET bit is cleared before they are usable.
1187          */
1188         msleep(1);
1189         return 0;
1190 }
1191
1192 int phy_init_hw(struct phy_device *phydev)
1193 {
1194         int ret = 0;
1195
1196         /* Deassert the reset signal */
1197         phy_device_reset(phydev, 0);
1198
1199         if (!phydev->drv)
1200                 return 0;
1201
1202         if (phydev->drv->soft_reset) {
1203                 ret = phydev->drv->soft_reset(phydev);
1204                 /* see comment in genphy_soft_reset for an explanation */
1205                 if (!ret)
1206                         phydev->suspended = 0;
1207         }
1208
1209         if (ret < 0)
1210                 return ret;
1211
1212         ret = phy_scan_fixups(phydev);
1213         if (ret < 0)
1214                 return ret;
1215
1216         if (phydev->drv->config_init) {
1217                 ret = phydev->drv->config_init(phydev);
1218                 if (ret < 0)
1219                         return ret;
1220         }
1221
1222         if (phydev->drv->config_intr) {
1223                 ret = phydev->drv->config_intr(phydev);
1224                 if (ret < 0)
1225                         return ret;
1226         }
1227
1228         return 0;
1229 }
1230 EXPORT_SYMBOL(phy_init_hw);
1231
1232 void phy_attached_info(struct phy_device *phydev)
1233 {
1234         phy_attached_print(phydev, NULL);
1235 }
1236 EXPORT_SYMBOL(phy_attached_info);
1237
1238 #define ATTACHED_FMT "attached PHY driver %s(mii_bus:phy_addr=%s, irq=%s)"
1239 char *phy_attached_info_irq(struct phy_device *phydev)
1240 {
1241         char *irq_str;
1242         char irq_num[8];
1243
1244         switch(phydev->irq) {
1245         case PHY_POLL:
1246                 irq_str = "POLL";
1247                 break;
1248         case PHY_MAC_INTERRUPT:
1249                 irq_str = "MAC";
1250                 break;
1251         default:
1252                 snprintf(irq_num, sizeof(irq_num), "%d", phydev->irq);
1253                 irq_str = irq_num;
1254                 break;
1255         }
1256
1257         return kasprintf(GFP_KERNEL, "%s", irq_str);
1258 }
1259 EXPORT_SYMBOL(phy_attached_info_irq);
1260
1261 void phy_attached_print(struct phy_device *phydev, const char *fmt, ...)
1262 {
1263         const char *unbound = phydev->drv ? "" : "[unbound] ";
1264         char *irq_str = phy_attached_info_irq(phydev);
1265
1266         if (!fmt) {
1267                 phydev_info(phydev, ATTACHED_FMT "\n", unbound,
1268                             phydev_name(phydev), irq_str);
1269         } else {
1270                 va_list ap;
1271
1272                 phydev_info(phydev, ATTACHED_FMT, unbound,
1273                             phydev_name(phydev), irq_str);
1274
1275                 va_start(ap, fmt);
1276                 vprintk(fmt, ap);
1277                 va_end(ap);
1278         }
1279         kfree(irq_str);
1280 }
1281 EXPORT_SYMBOL(phy_attached_print);
1282
1283 static void phy_sysfs_create_links(struct phy_device *phydev)
1284 {
1285         struct net_device *dev = phydev->attached_dev;
1286         int err;
1287
1288         if (!dev)
1289                 return;
1290
1291         err = sysfs_create_link(&phydev->mdio.dev.kobj, &dev->dev.kobj,
1292                                 "attached_dev");
1293         if (err)
1294                 return;
1295
1296         err = sysfs_create_link_nowarn(&dev->dev.kobj,
1297                                        &phydev->mdio.dev.kobj,
1298                                        "phydev");
1299         if (err) {
1300                 dev_err(&dev->dev, "could not add device link to %s err %d\n",
1301                         kobject_name(&phydev->mdio.dev.kobj),
1302                         err);
1303                 /* non-fatal - some net drivers can use one netdevice
1304                  * with more then one phy
1305                  */
1306         }
1307
1308         phydev->sysfs_links = true;
1309 }
1310
1311 static ssize_t
1312 phy_standalone_show(struct device *dev, struct device_attribute *attr,
1313                     char *buf)
1314 {
1315         struct phy_device *phydev = to_phy_device(dev);
1316
1317         return sysfs_emit(buf, "%d\n", !phydev->attached_dev);
1318 }
1319 static DEVICE_ATTR_RO(phy_standalone);
1320
1321 /**
1322  * phy_sfp_attach - attach the SFP bus to the PHY upstream network device
1323  * @upstream: pointer to the phy device
1324  * @bus: sfp bus representing cage being attached
1325  *
1326  * This is used to fill in the sfp_upstream_ops .attach member.
1327  */
1328 void phy_sfp_attach(void *upstream, struct sfp_bus *bus)
1329 {
1330         struct phy_device *phydev = upstream;
1331
1332         if (phydev->attached_dev)
1333                 phydev->attached_dev->sfp_bus = bus;
1334         phydev->sfp_bus_attached = true;
1335 }
1336 EXPORT_SYMBOL(phy_sfp_attach);
1337
1338 /**
1339  * phy_sfp_detach - detach the SFP bus from the PHY upstream network device
1340  * @upstream: pointer to the phy device
1341  * @bus: sfp bus representing cage being attached
1342  *
1343  * This is used to fill in the sfp_upstream_ops .detach member.
1344  */
1345 void phy_sfp_detach(void *upstream, struct sfp_bus *bus)
1346 {
1347         struct phy_device *phydev = upstream;
1348
1349         if (phydev->attached_dev)
1350                 phydev->attached_dev->sfp_bus = NULL;
1351         phydev->sfp_bus_attached = false;
1352 }
1353 EXPORT_SYMBOL(phy_sfp_detach);
1354
1355 /**
1356  * phy_sfp_probe - probe for a SFP cage attached to this PHY device
1357  * @phydev: Pointer to phy_device
1358  * @ops: SFP's upstream operations
1359  */
1360 int phy_sfp_probe(struct phy_device *phydev,
1361                   const struct sfp_upstream_ops *ops)
1362 {
1363         struct sfp_bus *bus;
1364         int ret = 0;
1365
1366         if (phydev->mdio.dev.fwnode) {
1367                 bus = sfp_bus_find_fwnode(phydev->mdio.dev.fwnode);
1368                 if (IS_ERR(bus))
1369                         return PTR_ERR(bus);
1370
1371                 phydev->sfp_bus = bus;
1372
1373                 ret = sfp_bus_add_upstream(bus, phydev, ops);
1374                 sfp_bus_put(bus);
1375         }
1376         return ret;
1377 }
1378 EXPORT_SYMBOL(phy_sfp_probe);
1379
1380 /**
1381  * phy_attach_direct - attach a network device to a given PHY device pointer
1382  * @dev: network device to attach
1383  * @phydev: Pointer to phy_device to attach
1384  * @flags: PHY device's dev_flags
1385  * @interface: PHY device's interface
1386  *
1387  * Description: Called by drivers to attach to a particular PHY
1388  *     device. The phy_device is found, and properly hooked up
1389  *     to the phy_driver.  If no driver is attached, then a
1390  *     generic driver is used.  The phy_device is given a ptr to
1391  *     the attaching device, and given a callback for link status
1392  *     change.  The phy_device is returned to the attaching driver.
1393  *     This function takes a reference on the phy device.
1394  */
1395 int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,
1396                       u32 flags, phy_interface_t interface)
1397 {
1398         struct mii_bus *bus = phydev->mdio.bus;
1399         struct device *d = &phydev->mdio.dev;
1400         struct module *ndev_owner = NULL;
1401         bool using_genphy = false;
1402         int err;
1403
1404         /* For Ethernet device drivers that register their own MDIO bus, we
1405          * will have bus->owner match ndev_mod, so we do not want to increment
1406          * our own module->refcnt here, otherwise we would not be able to
1407          * unload later on.
1408          */
1409         if (dev)
1410                 ndev_owner = dev->dev.parent->driver->owner;
1411         if (ndev_owner != bus->owner && !try_module_get(bus->owner)) {
1412                 phydev_err(phydev, "failed to get the bus module\n");
1413                 return -EIO;
1414         }
1415
1416         get_device(d);
1417
1418         /* Assume that if there is no driver, that it doesn't
1419          * exist, and we should use the genphy driver.
1420          */
1421         if (!d->driver) {
1422                 if (phydev->is_c45)
1423                         d->driver = &genphy_c45_driver.mdiodrv.driver;
1424                 else
1425                         d->driver = &genphy_driver.mdiodrv.driver;
1426
1427                 using_genphy = true;
1428         }
1429
1430         if (!try_module_get(d->driver->owner)) {
1431                 phydev_err(phydev, "failed to get the device driver module\n");
1432                 err = -EIO;
1433                 goto error_put_device;
1434         }
1435
1436         if (using_genphy) {
1437                 err = d->driver->probe(d);
1438                 if (err >= 0)
1439                         err = device_bind_driver(d);
1440
1441                 if (err)
1442                         goto error_module_put;
1443         }
1444
1445         if (phydev->attached_dev) {
1446                 dev_err(&dev->dev, "PHY already attached\n");
1447                 err = -EBUSY;
1448                 goto error;
1449         }
1450
1451         phydev->phy_link_change = phy_link_change;
1452         if (dev) {
1453                 phydev->attached_dev = dev;
1454                 dev->phydev = phydev;
1455
1456                 if (phydev->sfp_bus_attached)
1457                         dev->sfp_bus = phydev->sfp_bus;
1458                 else if (dev->sfp_bus)
1459                         phydev->is_on_sfp_module = true;
1460         }
1461
1462         /* Some Ethernet drivers try to connect to a PHY device before
1463          * calling register_netdevice() -> netdev_register_kobject() and
1464          * does the dev->dev.kobj initialization. Here we only check for
1465          * success which indicates that the network device kobject is
1466          * ready. Once we do that we still need to keep track of whether
1467          * links were successfully set up or not for phy_detach() to
1468          * remove them accordingly.
1469          */
1470         phydev->sysfs_links = false;
1471
1472         phy_sysfs_create_links(phydev);
1473
1474         if (!phydev->attached_dev) {
1475                 err = sysfs_create_file(&phydev->mdio.dev.kobj,
1476                                         &dev_attr_phy_standalone.attr);
1477                 if (err)
1478                         phydev_err(phydev, "error creating 'phy_standalone' sysfs entry\n");
1479         }
1480
1481         phydev->dev_flags |= flags;
1482
1483         phydev->interface = interface;
1484
1485         phydev->state = PHY_READY;
1486
1487         phydev->interrupts = PHY_INTERRUPT_DISABLED;
1488
1489         /* Port is set to PORT_TP by default and the actual PHY driver will set
1490          * it to different value depending on the PHY configuration. If we have
1491          * the generic PHY driver we can't figure it out, thus set the old
1492          * legacy PORT_MII value.
1493          */
1494         if (using_genphy)
1495                 phydev->port = PORT_MII;
1496
1497         /* Initial carrier state is off as the phy is about to be
1498          * (re)initialized.
1499          */
1500         if (dev)
1501                 netif_carrier_off(phydev->attached_dev);
1502
1503         /* Do initial configuration here, now that
1504          * we have certain key parameters
1505          * (dev_flags and interface)
1506          */
1507         err = phy_init_hw(phydev);
1508         if (err)
1509                 goto error;
1510
1511         phy_resume(phydev);
1512         phy_led_triggers_register(phydev);
1513
1514         return err;
1515
1516 error:
1517         /* phy_detach() does all of the cleanup below */
1518         phy_detach(phydev);
1519         return err;
1520
1521 error_module_put:
1522         module_put(d->driver->owner);
1523         d->driver = NULL;
1524 error_put_device:
1525         put_device(d);
1526         if (ndev_owner != bus->owner)
1527                 module_put(bus->owner);
1528         return err;
1529 }
1530 EXPORT_SYMBOL(phy_attach_direct);
1531
1532 /**
1533  * phy_attach - attach a network device to a particular PHY device
1534  * @dev: network device to attach
1535  * @bus_id: Bus ID of PHY device to attach
1536  * @interface: PHY device's interface
1537  *
1538  * Description: Same as phy_attach_direct() except that a PHY bus_id
1539  *     string is passed instead of a pointer to a struct phy_device.
1540  */
1541 struct phy_device *phy_attach(struct net_device *dev, const char *bus_id,
1542                               phy_interface_t interface)
1543 {
1544         struct bus_type *bus = &mdio_bus_type;
1545         struct phy_device *phydev;
1546         struct device *d;
1547         int rc;
1548
1549         if (!dev)
1550                 return ERR_PTR(-EINVAL);
1551
1552         /* Search the list of PHY devices on the mdio bus for the
1553          * PHY with the requested name
1554          */
1555         d = bus_find_device_by_name(bus, NULL, bus_id);
1556         if (!d) {
1557                 pr_err("PHY %s not found\n", bus_id);
1558                 return ERR_PTR(-ENODEV);
1559         }
1560         phydev = to_phy_device(d);
1561
1562         rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
1563         put_device(d);
1564         if (rc)
1565                 return ERR_PTR(rc);
1566
1567         return phydev;
1568 }
1569 EXPORT_SYMBOL(phy_attach);
1570
1571 static bool phy_driver_is_genphy_kind(struct phy_device *phydev,
1572                                       struct device_driver *driver)
1573 {
1574         struct device *d = &phydev->mdio.dev;
1575         bool ret = false;
1576
1577         if (!phydev->drv)
1578                 return ret;
1579
1580         get_device(d);
1581         ret = d->driver == driver;
1582         put_device(d);
1583
1584         return ret;
1585 }
1586
1587 bool phy_driver_is_genphy(struct phy_device *phydev)
1588 {
1589         return phy_driver_is_genphy_kind(phydev,
1590                                          &genphy_driver.mdiodrv.driver);
1591 }
1592 EXPORT_SYMBOL_GPL(phy_driver_is_genphy);
1593
1594 bool phy_driver_is_genphy_10g(struct phy_device *phydev)
1595 {
1596         return phy_driver_is_genphy_kind(phydev,
1597                                          &genphy_c45_driver.mdiodrv.driver);
1598 }
1599 EXPORT_SYMBOL_GPL(phy_driver_is_genphy_10g);
1600
1601 /**
1602  * phy_package_join - join a common PHY group
1603  * @phydev: target phy_device struct
1604  * @addr: cookie and PHY address for global register access
1605  * @priv_size: if non-zero allocate this amount of bytes for private data
1606  *
1607  * This joins a PHY group and provides a shared storage for all phydevs in
1608  * this group. This is intended to be used for packages which contain
1609  * more than one PHY, for example a quad PHY transceiver.
1610  *
1611  * The addr parameter serves as a cookie which has to have the same value
1612  * for all members of one group and as a PHY address to access generic
1613  * registers of a PHY package. Usually, one of the PHY addresses of the
1614  * different PHYs in the package provides access to these global registers.
1615  * The address which is given here, will be used in the phy_package_read()
1616  * and phy_package_write() convenience functions. If your PHY doesn't have
1617  * global registers you can just pick any of the PHY addresses.
1618  *
1619  * This will set the shared pointer of the phydev to the shared storage.
1620  * If this is the first call for a this cookie the shared storage will be
1621  * allocated. If priv_size is non-zero, the given amount of bytes are
1622  * allocated for the priv member.
1623  *
1624  * Returns < 1 on error, 0 on success. Esp. calling phy_package_join()
1625  * with the same cookie but a different priv_size is an error.
1626  */
1627 int phy_package_join(struct phy_device *phydev, int addr, size_t priv_size)
1628 {
1629         struct mii_bus *bus = phydev->mdio.bus;
1630         struct phy_package_shared *shared;
1631         int ret;
1632
1633         if (addr < 0 || addr >= PHY_MAX_ADDR)
1634                 return -EINVAL;
1635
1636         mutex_lock(&bus->shared_lock);
1637         shared = bus->shared[addr];
1638         if (!shared) {
1639                 ret = -ENOMEM;
1640                 shared = kzalloc(sizeof(*shared), GFP_KERNEL);
1641                 if (!shared)
1642                         goto err_unlock;
1643                 if (priv_size) {
1644                         shared->priv = kzalloc(priv_size, GFP_KERNEL);
1645                         if (!shared->priv)
1646                                 goto err_free;
1647                         shared->priv_size = priv_size;
1648                 }
1649                 shared->addr = addr;
1650                 refcount_set(&shared->refcnt, 1);
1651                 bus->shared[addr] = shared;
1652         } else {
1653                 ret = -EINVAL;
1654                 if (priv_size && priv_size != shared->priv_size)
1655                         goto err_unlock;
1656                 refcount_inc(&shared->refcnt);
1657         }
1658         mutex_unlock(&bus->shared_lock);
1659
1660         phydev->shared = shared;
1661
1662         return 0;
1663
1664 err_free:
1665         kfree(shared);
1666 err_unlock:
1667         mutex_unlock(&bus->shared_lock);
1668         return ret;
1669 }
1670 EXPORT_SYMBOL_GPL(phy_package_join);
1671
1672 /**
1673  * phy_package_leave - leave a common PHY group
1674  * @phydev: target phy_device struct
1675  *
1676  * This leaves a PHY group created by phy_package_join(). If this phydev
1677  * was the last user of the shared data between the group, this data is
1678  * freed. Resets the phydev->shared pointer to NULL.
1679  */
1680 void phy_package_leave(struct phy_device *phydev)
1681 {
1682         struct phy_package_shared *shared = phydev->shared;
1683         struct mii_bus *bus = phydev->mdio.bus;
1684
1685         if (!shared)
1686                 return;
1687
1688         if (refcount_dec_and_mutex_lock(&shared->refcnt, &bus->shared_lock)) {
1689                 bus->shared[shared->addr] = NULL;
1690                 mutex_unlock(&bus->shared_lock);
1691                 kfree(shared->priv);
1692                 kfree(shared);
1693         }
1694
1695         phydev->shared = NULL;
1696 }
1697 EXPORT_SYMBOL_GPL(phy_package_leave);
1698
1699 static void devm_phy_package_leave(struct device *dev, void *res)
1700 {
1701         phy_package_leave(*(struct phy_device **)res);
1702 }
1703
1704 /**
1705  * devm_phy_package_join - resource managed phy_package_join()
1706  * @dev: device that is registering this PHY package
1707  * @phydev: target phy_device struct
1708  * @addr: cookie and PHY address for global register access
1709  * @priv_size: if non-zero allocate this amount of bytes for private data
1710  *
1711  * Managed phy_package_join(). Shared storage fetched by this function,
1712  * phy_package_leave() is automatically called on driver detach. See
1713  * phy_package_join() for more information.
1714  */
1715 int devm_phy_package_join(struct device *dev, struct phy_device *phydev,
1716                           int addr, size_t priv_size)
1717 {
1718         struct phy_device **ptr;
1719         int ret;
1720
1721         ptr = devres_alloc(devm_phy_package_leave, sizeof(*ptr),
1722                            GFP_KERNEL);
1723         if (!ptr)
1724                 return -ENOMEM;
1725
1726         ret = phy_package_join(phydev, addr, priv_size);
1727
1728         if (!ret) {
1729                 *ptr = phydev;
1730                 devres_add(dev, ptr);
1731         } else {
1732                 devres_free(ptr);
1733         }
1734
1735         return ret;
1736 }
1737 EXPORT_SYMBOL_GPL(devm_phy_package_join);
1738
1739 /**
1740  * phy_detach - detach a PHY device from its network device
1741  * @phydev: target phy_device struct
1742  *
1743  * This detaches the phy device from its network device and the phy
1744  * driver, and drops the reference count taken in phy_attach_direct().
1745  */
1746 void phy_detach(struct phy_device *phydev)
1747 {
1748         struct net_device *dev = phydev->attached_dev;
1749         struct module *ndev_owner = NULL;
1750         struct mii_bus *bus;
1751
1752         if (phydev->sysfs_links) {
1753                 if (dev)
1754                         sysfs_remove_link(&dev->dev.kobj, "phydev");
1755                 sysfs_remove_link(&phydev->mdio.dev.kobj, "attached_dev");
1756         }
1757
1758         if (!phydev->attached_dev)
1759                 sysfs_remove_file(&phydev->mdio.dev.kobj,
1760                                   &dev_attr_phy_standalone.attr);
1761
1762         phy_suspend(phydev);
1763         if (dev) {
1764                 phydev->attached_dev->phydev = NULL;
1765                 phydev->attached_dev = NULL;
1766         }
1767         phydev->phylink = NULL;
1768
1769         phy_led_triggers_unregister(phydev);
1770
1771         if (phydev->mdio.dev.driver)
1772                 module_put(phydev->mdio.dev.driver->owner);
1773
1774         /* If the device had no specific driver before (i.e. - it
1775          * was using the generic driver), we unbind the device
1776          * from the generic driver so that there's a chance a
1777          * real driver could be loaded
1778          */
1779         if (phy_driver_is_genphy(phydev) ||
1780             phy_driver_is_genphy_10g(phydev))
1781                 device_release_driver(&phydev->mdio.dev);
1782
1783         /* Assert the reset signal */
1784         phy_device_reset(phydev, 1);
1785
1786         /*
1787          * The phydev might go away on the put_device() below, so avoid
1788          * a use-after-free bug by reading the underlying bus first.
1789          */
1790         bus = phydev->mdio.bus;
1791
1792         put_device(&phydev->mdio.dev);
1793         if (dev)
1794                 ndev_owner = dev->dev.parent->driver->owner;
1795         if (ndev_owner != bus->owner)
1796                 module_put(bus->owner);
1797 }
1798 EXPORT_SYMBOL(phy_detach);
1799
1800 int phy_suspend(struct phy_device *phydev)
1801 {
1802         struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
1803         struct net_device *netdev = phydev->attached_dev;
1804         struct phy_driver *phydrv = phydev->drv;
1805         int ret;
1806
1807         if (phydev->suspended)
1808                 return 0;
1809
1810         /* If the device has WOL enabled, we cannot suspend the PHY */
1811         phy_ethtool_get_wol(phydev, &wol);
1812         if (wol.wolopts || (netdev && netdev->wol_enabled))
1813                 return -EBUSY;
1814
1815         if (!phydrv || !phydrv->suspend)
1816                 return 0;
1817
1818         ret = phydrv->suspend(phydev);
1819         if (!ret)
1820                 phydev->suspended = true;
1821
1822         return ret;
1823 }
1824 EXPORT_SYMBOL(phy_suspend);
1825
1826 int __phy_resume(struct phy_device *phydev)
1827 {
1828         struct phy_driver *phydrv = phydev->drv;
1829         int ret;
1830
1831         lockdep_assert_held(&phydev->lock);
1832
1833         if (!phydrv || !phydrv->resume)
1834                 return 0;
1835
1836         ret = phydrv->resume(phydev);
1837         if (!ret)
1838                 phydev->suspended = false;
1839
1840         return ret;
1841 }
1842 EXPORT_SYMBOL(__phy_resume);
1843
1844 int phy_resume(struct phy_device *phydev)
1845 {
1846         int ret;
1847
1848         mutex_lock(&phydev->lock);
1849         ret = __phy_resume(phydev);
1850         mutex_unlock(&phydev->lock);
1851
1852         return ret;
1853 }
1854 EXPORT_SYMBOL(phy_resume);
1855
1856 int phy_loopback(struct phy_device *phydev, bool enable)
1857 {
1858         int ret = 0;
1859
1860         if (!phydev->drv)
1861                 return -EIO;
1862
1863         mutex_lock(&phydev->lock);
1864
1865         if (enable && phydev->loopback_enabled) {
1866                 ret = -EBUSY;
1867                 goto out;
1868         }
1869
1870         if (!enable && !phydev->loopback_enabled) {
1871                 ret = -EINVAL;
1872                 goto out;
1873         }
1874
1875         if (phydev->drv->set_loopback)
1876                 ret = phydev->drv->set_loopback(phydev, enable);
1877         else
1878                 ret = genphy_loopback(phydev, enable);
1879
1880         if (ret)
1881                 goto out;
1882
1883         phydev->loopback_enabled = enable;
1884
1885 out:
1886         mutex_unlock(&phydev->lock);
1887         return ret;
1888 }
1889 EXPORT_SYMBOL(phy_loopback);
1890
1891 /**
1892  * phy_reset_after_clk_enable - perform a PHY reset if needed
1893  * @phydev: target phy_device struct
1894  *
1895  * Description: Some PHYs are known to need a reset after their refclk was
1896  *   enabled. This function evaluates the flags and perform the reset if it's
1897  *   needed. Returns < 0 on error, 0 if the phy wasn't reset and 1 if the phy
1898  *   was reset.
1899  */
1900 int phy_reset_after_clk_enable(struct phy_device *phydev)
1901 {
1902         if (!phydev || !phydev->drv)
1903                 return -ENODEV;
1904
1905         if (phydev->drv->flags & PHY_RST_AFTER_CLK_EN) {
1906                 phy_device_reset(phydev, 1);
1907                 phy_device_reset(phydev, 0);
1908                 return 1;
1909         }
1910
1911         return 0;
1912 }
1913 EXPORT_SYMBOL(phy_reset_after_clk_enable);
1914
1915 /* Generic PHY support and helper functions */
1916
1917 /**
1918  * genphy_config_advert - sanitize and advertise auto-negotiation parameters
1919  * @phydev: target phy_device struct
1920  *
1921  * Description: Writes MII_ADVERTISE with the appropriate values,
1922  *   after sanitizing the values to make sure we only advertise
1923  *   what is supported.  Returns < 0 on error, 0 if the PHY's advertisement
1924  *   hasn't changed, and > 0 if it has changed.
1925  */
1926 static int genphy_config_advert(struct phy_device *phydev)
1927 {
1928         int err, bmsr, changed = 0;
1929         u32 adv;
1930
1931         /* Only allow advertising what this PHY supports */
1932         linkmode_and(phydev->advertising, phydev->advertising,
1933                      phydev->supported);
1934
1935         adv = linkmode_adv_to_mii_adv_t(phydev->advertising);
1936
1937         /* Setup standard advertisement */
1938         err = phy_modify_changed(phydev, MII_ADVERTISE,
1939                                  ADVERTISE_ALL | ADVERTISE_100BASE4 |
1940                                  ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM,
1941                                  adv);
1942         if (err < 0)
1943                 return err;
1944         if (err > 0)
1945                 changed = 1;
1946
1947         bmsr = phy_read(phydev, MII_BMSR);
1948         if (bmsr < 0)
1949                 return bmsr;
1950
1951         /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
1952          * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
1953          * logical 1.
1954          */
1955         if (!(bmsr & BMSR_ESTATEN))
1956                 return changed;
1957
1958         adv = linkmode_adv_to_mii_ctrl1000_t(phydev->advertising);
1959
1960         err = phy_modify_changed(phydev, MII_CTRL1000,
1961                                  ADVERTISE_1000FULL | ADVERTISE_1000HALF,
1962                                  adv);
1963         if (err < 0)
1964                 return err;
1965         if (err > 0)
1966                 changed = 1;
1967
1968         return changed;
1969 }
1970
1971 /**
1972  * genphy_c37_config_advert - sanitize and advertise auto-negotiation parameters
1973  * @phydev: target phy_device struct
1974  *
1975  * Description: Writes MII_ADVERTISE with the appropriate values,
1976  *   after sanitizing the values to make sure we only advertise
1977  *   what is supported.  Returns < 0 on error, 0 if the PHY's advertisement
1978  *   hasn't changed, and > 0 if it has changed. This function is intended
1979  *   for Clause 37 1000Base-X mode.
1980  */
1981 static int genphy_c37_config_advert(struct phy_device *phydev)
1982 {
1983         u16 adv = 0;
1984
1985         /* Only allow advertising what this PHY supports */
1986         linkmode_and(phydev->advertising, phydev->advertising,
1987                      phydev->supported);
1988
1989         if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
1990                               phydev->advertising))
1991                 adv |= ADVERTISE_1000XFULL;
1992         if (linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
1993                               phydev->advertising))
1994                 adv |= ADVERTISE_1000XPAUSE;
1995         if (linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
1996                               phydev->advertising))
1997                 adv |= ADVERTISE_1000XPSE_ASYM;
1998
1999         return phy_modify_changed(phydev, MII_ADVERTISE,
2000                                   ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
2001                                   ADVERTISE_1000XHALF | ADVERTISE_1000XPSE_ASYM,
2002                                   adv);
2003 }
2004
2005 /**
2006  * genphy_config_eee_advert - disable unwanted eee mode advertisement
2007  * @phydev: target phy_device struct
2008  *
2009  * Description: Writes MDIO_AN_EEE_ADV after disabling unsupported energy
2010  *   efficent ethernet modes. Returns 0 if the PHY's advertisement hasn't
2011  *   changed, and 1 if it has changed.
2012  */
2013 int genphy_config_eee_advert(struct phy_device *phydev)
2014 {
2015         int err;
2016
2017         /* Nothing to disable */
2018         if (!phydev->eee_broken_modes)
2019                 return 0;
2020
2021         err = phy_modify_mmd_changed(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV,
2022                                      phydev->eee_broken_modes, 0);
2023         /* If the call failed, we assume that EEE is not supported */
2024         return err < 0 ? 0 : err;
2025 }
2026 EXPORT_SYMBOL(genphy_config_eee_advert);
2027
2028 /**
2029  * genphy_setup_forced - configures/forces speed/duplex from @phydev
2030  * @phydev: target phy_device struct
2031  *
2032  * Description: Configures MII_BMCR to force speed/duplex
2033  *   to the values in phydev. Assumes that the values are valid.
2034  *   Please see phy_sanitize_settings().
2035  */
2036 int genphy_setup_forced(struct phy_device *phydev)
2037 {
2038         u16 ctl;
2039
2040         phydev->pause = 0;
2041         phydev->asym_pause = 0;
2042
2043         ctl = mii_bmcr_encode_fixed(phydev->speed, phydev->duplex);
2044
2045         return phy_modify(phydev, MII_BMCR,
2046                           ~(BMCR_LOOPBACK | BMCR_ISOLATE | BMCR_PDOWN), ctl);
2047 }
2048 EXPORT_SYMBOL(genphy_setup_forced);
2049
2050 static int genphy_setup_master_slave(struct phy_device *phydev)
2051 {
2052         u16 ctl = 0;
2053
2054         if (!phydev->is_gigabit_capable)
2055                 return 0;
2056
2057         switch (phydev->master_slave_set) {
2058         case MASTER_SLAVE_CFG_MASTER_PREFERRED:
2059                 ctl |= CTL1000_PREFER_MASTER;
2060                 break;
2061         case MASTER_SLAVE_CFG_SLAVE_PREFERRED:
2062                 break;
2063         case MASTER_SLAVE_CFG_MASTER_FORCE:
2064                 ctl |= CTL1000_AS_MASTER;
2065                 fallthrough;
2066         case MASTER_SLAVE_CFG_SLAVE_FORCE:
2067                 ctl |= CTL1000_ENABLE_MASTER;
2068                 break;
2069         case MASTER_SLAVE_CFG_UNKNOWN:
2070         case MASTER_SLAVE_CFG_UNSUPPORTED:
2071                 return 0;
2072         default:
2073                 phydev_warn(phydev, "Unsupported Master/Slave mode\n");
2074                 return -EOPNOTSUPP;
2075         }
2076
2077         return phy_modify_changed(phydev, MII_CTRL1000,
2078                                   (CTL1000_ENABLE_MASTER | CTL1000_AS_MASTER |
2079                                    CTL1000_PREFER_MASTER), ctl);
2080 }
2081
2082 int genphy_read_master_slave(struct phy_device *phydev)
2083 {
2084         int cfg, state;
2085         int val;
2086
2087         phydev->master_slave_get = MASTER_SLAVE_CFG_UNKNOWN;
2088         phydev->master_slave_state = MASTER_SLAVE_STATE_UNKNOWN;
2089
2090         val = phy_read(phydev, MII_CTRL1000);
2091         if (val < 0)
2092                 return val;
2093
2094         if (val & CTL1000_ENABLE_MASTER) {
2095                 if (val & CTL1000_AS_MASTER)
2096                         cfg = MASTER_SLAVE_CFG_MASTER_FORCE;
2097                 else
2098                         cfg = MASTER_SLAVE_CFG_SLAVE_FORCE;
2099         } else {
2100                 if (val & CTL1000_PREFER_MASTER)
2101                         cfg = MASTER_SLAVE_CFG_MASTER_PREFERRED;
2102                 else
2103                         cfg = MASTER_SLAVE_CFG_SLAVE_PREFERRED;
2104         }
2105
2106         val = phy_read(phydev, MII_STAT1000);
2107         if (val < 0)
2108                 return val;
2109
2110         if (val & LPA_1000MSFAIL) {
2111                 state = MASTER_SLAVE_STATE_ERR;
2112         } else if (phydev->link) {
2113                 /* this bits are valid only for active link */
2114                 if (val & LPA_1000MSRES)
2115                         state = MASTER_SLAVE_STATE_MASTER;
2116                 else
2117                         state = MASTER_SLAVE_STATE_SLAVE;
2118         } else {
2119                 state = MASTER_SLAVE_STATE_UNKNOWN;
2120         }
2121
2122         phydev->master_slave_get = cfg;
2123         phydev->master_slave_state = state;
2124
2125         return 0;
2126 }
2127 EXPORT_SYMBOL(genphy_read_master_slave);
2128
2129 /**
2130  * genphy_restart_aneg - Enable and Restart Autonegotiation
2131  * @phydev: target phy_device struct
2132  */
2133 int genphy_restart_aneg(struct phy_device *phydev)
2134 {
2135         /* Don't isolate the PHY if we're negotiating */
2136         return phy_modify(phydev, MII_BMCR, BMCR_ISOLATE,
2137                           BMCR_ANENABLE | BMCR_ANRESTART);
2138 }
2139 EXPORT_SYMBOL(genphy_restart_aneg);
2140
2141 /**
2142  * genphy_check_and_restart_aneg - Enable and restart auto-negotiation
2143  * @phydev: target phy_device struct
2144  * @restart: whether aneg restart is requested
2145  *
2146  * Check, and restart auto-negotiation if needed.
2147  */
2148 int genphy_check_and_restart_aneg(struct phy_device *phydev, bool restart)
2149 {
2150         int ret;
2151
2152         if (!restart) {
2153                 /* Advertisement hasn't changed, but maybe aneg was never on to
2154                  * begin with?  Or maybe phy was isolated?
2155                  */
2156                 ret = phy_read(phydev, MII_BMCR);
2157                 if (ret < 0)
2158                         return ret;
2159
2160                 if (!(ret & BMCR_ANENABLE) || (ret & BMCR_ISOLATE))
2161                         restart = true;
2162         }
2163
2164         if (restart)
2165                 return genphy_restart_aneg(phydev);
2166
2167         return 0;
2168 }
2169 EXPORT_SYMBOL(genphy_check_and_restart_aneg);
2170
2171 /**
2172  * __genphy_config_aneg - restart auto-negotiation or write BMCR
2173  * @phydev: target phy_device struct
2174  * @changed: whether autoneg is requested
2175  *
2176  * Description: If auto-negotiation is enabled, we configure the
2177  *   advertising, and then restart auto-negotiation.  If it is not
2178  *   enabled, then we write the BMCR.
2179  */
2180 int __genphy_config_aneg(struct phy_device *phydev, bool changed)
2181 {
2182         int err;
2183
2184         if (genphy_config_eee_advert(phydev))
2185                 changed = true;
2186
2187         err = genphy_setup_master_slave(phydev);
2188         if (err < 0)
2189                 return err;
2190         else if (err)
2191                 changed = true;
2192
2193         if (AUTONEG_ENABLE != phydev->autoneg)
2194                 return genphy_setup_forced(phydev);
2195
2196         err = genphy_config_advert(phydev);
2197         if (err < 0) /* error */
2198                 return err;
2199         else if (err)
2200                 changed = true;
2201
2202         return genphy_check_and_restart_aneg(phydev, changed);
2203 }
2204 EXPORT_SYMBOL(__genphy_config_aneg);
2205
2206 /**
2207  * genphy_c37_config_aneg - restart auto-negotiation or write BMCR
2208  * @phydev: target phy_device struct
2209  *
2210  * Description: If auto-negotiation is enabled, we configure the
2211  *   advertising, and then restart auto-negotiation.  If it is not
2212  *   enabled, then we write the BMCR. This function is intended
2213  *   for use with Clause 37 1000Base-X mode.
2214  */
2215 int genphy_c37_config_aneg(struct phy_device *phydev)
2216 {
2217         int err, changed;
2218
2219         if (phydev->autoneg != AUTONEG_ENABLE)
2220                 return genphy_setup_forced(phydev);
2221
2222         err = phy_modify(phydev, MII_BMCR, BMCR_SPEED1000 | BMCR_SPEED100,
2223                          BMCR_SPEED1000);
2224         if (err)
2225                 return err;
2226
2227         changed = genphy_c37_config_advert(phydev);
2228         if (changed < 0) /* error */
2229                 return changed;
2230
2231         if (!changed) {
2232                 /* Advertisement hasn't changed, but maybe aneg was never on to
2233                  * begin with?  Or maybe phy was isolated?
2234                  */
2235                 int ctl = phy_read(phydev, MII_BMCR);
2236
2237                 if (ctl < 0)
2238                         return ctl;
2239
2240                 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
2241                         changed = 1; /* do restart aneg */
2242         }
2243
2244         /* Only restart aneg if we are advertising something different
2245          * than we were before.
2246          */
2247         if (changed > 0)
2248                 return genphy_restart_aneg(phydev);
2249
2250         return 0;
2251 }
2252 EXPORT_SYMBOL(genphy_c37_config_aneg);
2253
2254 /**
2255  * genphy_aneg_done - return auto-negotiation status
2256  * @phydev: target phy_device struct
2257  *
2258  * Description: Reads the status register and returns 0 either if
2259  *   auto-negotiation is incomplete, or if there was an error.
2260  *   Returns BMSR_ANEGCOMPLETE if auto-negotiation is done.
2261  */
2262 int genphy_aneg_done(struct phy_device *phydev)
2263 {
2264         int retval = phy_read(phydev, MII_BMSR);
2265
2266         return (retval < 0) ? retval : (retval & BMSR_ANEGCOMPLETE);
2267 }
2268 EXPORT_SYMBOL(genphy_aneg_done);
2269
2270 /**
2271  * genphy_update_link - update link status in @phydev
2272  * @phydev: target phy_device struct
2273  *
2274  * Description: Update the value in phydev->link to reflect the
2275  *   current link value.  In order to do this, we need to read
2276  *   the status register twice, keeping the second value.
2277  */
2278 int genphy_update_link(struct phy_device *phydev)
2279 {
2280         int status = 0, bmcr;
2281
2282         bmcr = phy_read(phydev, MII_BMCR);
2283         if (bmcr < 0)
2284                 return bmcr;
2285
2286         /* Autoneg is being started, therefore disregard BMSR value and
2287          * report link as down.
2288          */
2289         if (bmcr & BMCR_ANRESTART)
2290                 goto done;
2291
2292         /* The link state is latched low so that momentary link
2293          * drops can be detected. Do not double-read the status
2294          * in polling mode to detect such short link drops except
2295          * the link was already down.
2296          */
2297         if (!phy_polling_mode(phydev) || !phydev->link) {
2298                 status = phy_read(phydev, MII_BMSR);
2299                 if (status < 0)
2300                         return status;
2301                 else if (status & BMSR_LSTATUS)
2302                         goto done;
2303         }
2304
2305         /* Read link and autonegotiation status */
2306         status = phy_read(phydev, MII_BMSR);
2307         if (status < 0)
2308                 return status;
2309 done:
2310         phydev->link = status & BMSR_LSTATUS ? 1 : 0;
2311         phydev->autoneg_complete = status & BMSR_ANEGCOMPLETE ? 1 : 0;
2312
2313         /* Consider the case that autoneg was started and "aneg complete"
2314          * bit has been reset, but "link up" bit not yet.
2315          */
2316         if (phydev->autoneg == AUTONEG_ENABLE && !phydev->autoneg_complete)
2317                 phydev->link = 0;
2318
2319         return 0;
2320 }
2321 EXPORT_SYMBOL(genphy_update_link);
2322
2323 int genphy_read_lpa(struct phy_device *phydev)
2324 {
2325         int lpa, lpagb;
2326
2327         if (phydev->autoneg == AUTONEG_ENABLE) {
2328                 if (!phydev->autoneg_complete) {
2329                         mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising,
2330                                                         0);
2331                         mii_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, 0);
2332                         return 0;
2333                 }
2334
2335                 if (phydev->is_gigabit_capable) {
2336                         lpagb = phy_read(phydev, MII_STAT1000);
2337                         if (lpagb < 0)
2338                                 return lpagb;
2339
2340                         if (lpagb & LPA_1000MSFAIL) {
2341                                 int adv = phy_read(phydev, MII_CTRL1000);
2342
2343                                 if (adv < 0)
2344                                         return adv;
2345
2346                                 if (adv & CTL1000_ENABLE_MASTER)
2347                                         phydev_err(phydev, "Master/Slave resolution failed, maybe conflicting manual settings?\n");
2348                                 else
2349                                         phydev_err(phydev, "Master/Slave resolution failed\n");
2350                                 return -ENOLINK;
2351                         }
2352
2353                         mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising,
2354                                                         lpagb);
2355                 }
2356
2357                 lpa = phy_read(phydev, MII_LPA);
2358                 if (lpa < 0)
2359                         return lpa;
2360
2361                 mii_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, lpa);
2362         } else {
2363                 linkmode_zero(phydev->lp_advertising);
2364         }
2365
2366         return 0;
2367 }
2368 EXPORT_SYMBOL(genphy_read_lpa);
2369
2370 /**
2371  * genphy_read_status_fixed - read the link parameters for !aneg mode
2372  * @phydev: target phy_device struct
2373  *
2374  * Read the current duplex and speed state for a PHY operating with
2375  * autonegotiation disabled.
2376  */
2377 int genphy_read_status_fixed(struct phy_device *phydev)
2378 {
2379         int bmcr = phy_read(phydev, MII_BMCR);
2380
2381         if (bmcr < 0)
2382                 return bmcr;
2383
2384         if (bmcr & BMCR_FULLDPLX)
2385                 phydev->duplex = DUPLEX_FULL;
2386         else
2387                 phydev->duplex = DUPLEX_HALF;
2388
2389         if (bmcr & BMCR_SPEED1000)
2390                 phydev->speed = SPEED_1000;
2391         else if (bmcr & BMCR_SPEED100)
2392                 phydev->speed = SPEED_100;
2393         else
2394                 phydev->speed = SPEED_10;
2395
2396         return 0;
2397 }
2398 EXPORT_SYMBOL(genphy_read_status_fixed);
2399
2400 /**
2401  * genphy_read_status - check the link status and update current link state
2402  * @phydev: target phy_device struct
2403  *
2404  * Description: Check the link, then figure out the current state
2405  *   by comparing what we advertise with what the link partner
2406  *   advertises.  Start by checking the gigabit possibilities,
2407  *   then move on to 10/100.
2408  */
2409 int genphy_read_status(struct phy_device *phydev)
2410 {
2411         int err, old_link = phydev->link;
2412
2413         /* Update the link, but return if there was an error */
2414         err = genphy_update_link(phydev);
2415         if (err)
2416                 return err;
2417
2418         /* why bother the PHY if nothing can have changed */
2419         if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
2420                 return 0;
2421
2422         phydev->master_slave_get = MASTER_SLAVE_CFG_UNSUPPORTED;
2423         phydev->master_slave_state = MASTER_SLAVE_STATE_UNSUPPORTED;
2424         phydev->speed = SPEED_UNKNOWN;
2425         phydev->duplex = DUPLEX_UNKNOWN;
2426         phydev->pause = 0;
2427         phydev->asym_pause = 0;
2428
2429         if (phydev->is_gigabit_capable) {
2430                 err = genphy_read_master_slave(phydev);
2431                 if (err < 0)
2432                         return err;
2433         }
2434
2435         err = genphy_read_lpa(phydev);
2436         if (err < 0)
2437                 return err;
2438
2439         if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete) {
2440                 phy_resolve_aneg_linkmode(phydev);
2441         } else if (phydev->autoneg == AUTONEG_DISABLE) {
2442                 err = genphy_read_status_fixed(phydev);
2443                 if (err < 0)
2444                         return err;
2445         }
2446
2447         return 0;
2448 }
2449 EXPORT_SYMBOL(genphy_read_status);
2450
2451 /**
2452  * genphy_c37_read_status - check the link status and update current link state
2453  * @phydev: target phy_device struct
2454  *
2455  * Description: Check the link, then figure out the current state
2456  *   by comparing what we advertise with what the link partner
2457  *   advertises. This function is for Clause 37 1000Base-X mode.
2458  */
2459 int genphy_c37_read_status(struct phy_device *phydev)
2460 {
2461         int lpa, err, old_link = phydev->link;
2462
2463         /* Update the link, but return if there was an error */
2464         err = genphy_update_link(phydev);
2465         if (err)
2466                 return err;
2467
2468         /* why bother the PHY if nothing can have changed */
2469         if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
2470                 return 0;
2471
2472         phydev->duplex = DUPLEX_UNKNOWN;
2473         phydev->pause = 0;
2474         phydev->asym_pause = 0;
2475
2476         if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete) {
2477                 lpa = phy_read(phydev, MII_LPA);
2478                 if (lpa < 0)
2479                         return lpa;
2480
2481                 linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
2482                                  phydev->lp_advertising, lpa & LPA_LPACK);
2483                 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
2484                                  phydev->lp_advertising, lpa & LPA_1000XFULL);
2485                 linkmode_mod_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2486                                  phydev->lp_advertising, lpa & LPA_1000XPAUSE);
2487                 linkmode_mod_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2488                                  phydev->lp_advertising,
2489                                  lpa & LPA_1000XPAUSE_ASYM);
2490
2491                 phy_resolve_aneg_linkmode(phydev);
2492         } else if (phydev->autoneg == AUTONEG_DISABLE) {
2493                 int bmcr = phy_read(phydev, MII_BMCR);
2494
2495                 if (bmcr < 0)
2496                         return bmcr;
2497
2498                 if (bmcr & BMCR_FULLDPLX)
2499                         phydev->duplex = DUPLEX_FULL;
2500                 else
2501                         phydev->duplex = DUPLEX_HALF;
2502         }
2503
2504         return 0;
2505 }
2506 EXPORT_SYMBOL(genphy_c37_read_status);
2507
2508 /**
2509  * genphy_soft_reset - software reset the PHY via BMCR_RESET bit
2510  * @phydev: target phy_device struct
2511  *
2512  * Description: Perform a software PHY reset using the standard
2513  * BMCR_RESET bit and poll for the reset bit to be cleared.
2514  *
2515  * Returns: 0 on success, < 0 on failure
2516  */
2517 int genphy_soft_reset(struct phy_device *phydev)
2518 {
2519         u16 res = BMCR_RESET;
2520         int ret;
2521
2522         if (phydev->autoneg == AUTONEG_ENABLE)
2523                 res |= BMCR_ANRESTART;
2524
2525         ret = phy_modify(phydev, MII_BMCR, BMCR_ISOLATE, res);
2526         if (ret < 0)
2527                 return ret;
2528
2529         /* Clause 22 states that setting bit BMCR_RESET sets control registers
2530          * to their default value. Therefore the POWER DOWN bit is supposed to
2531          * be cleared after soft reset.
2532          */
2533         phydev->suspended = 0;
2534
2535         ret = phy_poll_reset(phydev);
2536         if (ret)
2537                 return ret;
2538
2539         /* BMCR may be reset to defaults */
2540         if (phydev->autoneg == AUTONEG_DISABLE)
2541                 ret = genphy_setup_forced(phydev);
2542
2543         return ret;
2544 }
2545 EXPORT_SYMBOL(genphy_soft_reset);
2546
2547 irqreturn_t genphy_handle_interrupt_no_ack(struct phy_device *phydev)
2548 {
2549         /* It seems there are cases where the interrupts are handled by another
2550          * entity (ie an IRQ controller embedded inside the PHY) and do not
2551          * need any other interraction from phylib. In this case, just trigger
2552          * the state machine directly.
2553          */
2554         phy_trigger_machine(phydev);
2555
2556         return 0;
2557 }
2558 EXPORT_SYMBOL(genphy_handle_interrupt_no_ack);
2559
2560 /**
2561  * genphy_read_abilities - read PHY abilities from Clause 22 registers
2562  * @phydev: target phy_device struct
2563  *
2564  * Description: Reads the PHY's abilities and populates
2565  * phydev->supported accordingly.
2566  *
2567  * Returns: 0 on success, < 0 on failure
2568  */
2569 int genphy_read_abilities(struct phy_device *phydev)
2570 {
2571         int val;
2572
2573         linkmode_set_bit_array(phy_basic_ports_array,
2574                                ARRAY_SIZE(phy_basic_ports_array),
2575                                phydev->supported);
2576
2577         val = phy_read(phydev, MII_BMSR);
2578         if (val < 0)
2579                 return val;
2580
2581         linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, phydev->supported,
2582                          val & BMSR_ANEGCAPABLE);
2583
2584         linkmode_mod_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT, phydev->supported,
2585                          val & BMSR_100FULL);
2586         linkmode_mod_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT, phydev->supported,
2587                          val & BMSR_100HALF);
2588         linkmode_mod_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT, phydev->supported,
2589                          val & BMSR_10FULL);
2590         linkmode_mod_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT, phydev->supported,
2591                          val & BMSR_10HALF);
2592
2593         if (val & BMSR_ESTATEN) {
2594                 val = phy_read(phydev, MII_ESTATUS);
2595                 if (val < 0)
2596                         return val;
2597
2598                 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
2599                                  phydev->supported, val & ESTATUS_1000_TFULL);
2600                 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
2601                                  phydev->supported, val & ESTATUS_1000_THALF);
2602                 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
2603                                  phydev->supported, val & ESTATUS_1000_XFULL);
2604         }
2605
2606         return 0;
2607 }
2608 EXPORT_SYMBOL(genphy_read_abilities);
2609
2610 /* This is used for the phy device which doesn't support the MMD extended
2611  * register access, but it does have side effect when we are trying to access
2612  * the MMD register via indirect method.
2613  */
2614 int genphy_read_mmd_unsupported(struct phy_device *phdev, int devad, u16 regnum)
2615 {
2616         return -EOPNOTSUPP;
2617 }
2618 EXPORT_SYMBOL(genphy_read_mmd_unsupported);
2619
2620 int genphy_write_mmd_unsupported(struct phy_device *phdev, int devnum,
2621                                  u16 regnum, u16 val)
2622 {
2623         return -EOPNOTSUPP;
2624 }
2625 EXPORT_SYMBOL(genphy_write_mmd_unsupported);
2626
2627 int genphy_suspend(struct phy_device *phydev)
2628 {
2629         return phy_set_bits(phydev, MII_BMCR, BMCR_PDOWN);
2630 }
2631 EXPORT_SYMBOL(genphy_suspend);
2632
2633 int genphy_resume(struct phy_device *phydev)
2634 {
2635         return phy_clear_bits(phydev, MII_BMCR, BMCR_PDOWN);
2636 }
2637 EXPORT_SYMBOL(genphy_resume);
2638
2639 int genphy_loopback(struct phy_device *phydev, bool enable)
2640 {
2641         if (enable) {
2642                 u16 val, ctl = BMCR_LOOPBACK;
2643                 int ret;
2644
2645                 ctl |= mii_bmcr_encode_fixed(phydev->speed, phydev->duplex);
2646
2647                 phy_modify(phydev, MII_BMCR, ~0, ctl);
2648
2649                 ret = phy_read_poll_timeout(phydev, MII_BMSR, val,
2650                                             val & BMSR_LSTATUS,
2651                                     5000, 500000, true);
2652                 if (ret)
2653                         return ret;
2654         } else {
2655                 phy_modify(phydev, MII_BMCR, BMCR_LOOPBACK, 0);
2656
2657                 phy_config_aneg(phydev);
2658         }
2659
2660         return 0;
2661 }
2662 EXPORT_SYMBOL(genphy_loopback);
2663
2664 /**
2665  * phy_remove_link_mode - Remove a supported link mode
2666  * @phydev: phy_device structure to remove link mode from
2667  * @link_mode: Link mode to be removed
2668  *
2669  * Description: Some MACs don't support all link modes which the PHY
2670  * does.  e.g. a 1G MAC often does not support 1000Half. Add a helper
2671  * to remove a link mode.
2672  */
2673 void phy_remove_link_mode(struct phy_device *phydev, u32 link_mode)
2674 {
2675         linkmode_clear_bit(link_mode, phydev->supported);
2676         phy_advertise_supported(phydev);
2677 }
2678 EXPORT_SYMBOL(phy_remove_link_mode);
2679
2680 static void phy_copy_pause_bits(unsigned long *dst, unsigned long *src)
2681 {
2682         linkmode_mod_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, dst,
2683                 linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, src));
2684         linkmode_mod_bit(ETHTOOL_LINK_MODE_Pause_BIT, dst,
2685                 linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT, src));
2686 }
2687
2688 /**
2689  * phy_advertise_supported - Advertise all supported modes
2690  * @phydev: target phy_device struct
2691  *
2692  * Description: Called to advertise all supported modes, doesn't touch
2693  * pause mode advertising.
2694  */
2695 void phy_advertise_supported(struct phy_device *phydev)
2696 {
2697         __ETHTOOL_DECLARE_LINK_MODE_MASK(new);
2698
2699         linkmode_copy(new, phydev->supported);
2700         phy_copy_pause_bits(new, phydev->advertising);
2701         linkmode_copy(phydev->advertising, new);
2702 }
2703 EXPORT_SYMBOL(phy_advertise_supported);
2704
2705 /**
2706  * phy_support_sym_pause - Enable support of symmetrical pause
2707  * @phydev: target phy_device struct
2708  *
2709  * Description: Called by the MAC to indicate is supports symmetrical
2710  * Pause, but not asym pause.
2711  */
2712 void phy_support_sym_pause(struct phy_device *phydev)
2713 {
2714         linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported);
2715         phy_copy_pause_bits(phydev->advertising, phydev->supported);
2716 }
2717 EXPORT_SYMBOL(phy_support_sym_pause);
2718
2719 /**
2720  * phy_support_asym_pause - Enable support of asym pause
2721  * @phydev: target phy_device struct
2722  *
2723  * Description: Called by the MAC to indicate is supports Asym Pause.
2724  */
2725 void phy_support_asym_pause(struct phy_device *phydev)
2726 {
2727         phy_copy_pause_bits(phydev->advertising, phydev->supported);
2728 }
2729 EXPORT_SYMBOL(phy_support_asym_pause);
2730
2731 /**
2732  * phy_set_sym_pause - Configure symmetric Pause
2733  * @phydev: target phy_device struct
2734  * @rx: Receiver Pause is supported
2735  * @tx: Transmit Pause is supported
2736  * @autoneg: Auto neg should be used
2737  *
2738  * Description: Configure advertised Pause support depending on if
2739  * receiver pause and pause auto neg is supported. Generally called
2740  * from the set_pauseparam .ndo.
2741  */
2742 void phy_set_sym_pause(struct phy_device *phydev, bool rx, bool tx,
2743                        bool autoneg)
2744 {
2745         linkmode_clear_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported);
2746
2747         if (rx && tx && autoneg)
2748                 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2749                                  phydev->supported);
2750
2751         linkmode_copy(phydev->advertising, phydev->supported);
2752 }
2753 EXPORT_SYMBOL(phy_set_sym_pause);
2754
2755 /**
2756  * phy_set_asym_pause - Configure Pause and Asym Pause
2757  * @phydev: target phy_device struct
2758  * @rx: Receiver Pause is supported
2759  * @tx: Transmit Pause is supported
2760  *
2761  * Description: Configure advertised Pause support depending on if
2762  * transmit and receiver pause is supported. If there has been a
2763  * change in adverting, trigger a new autoneg. Generally called from
2764  * the set_pauseparam .ndo.
2765  */
2766 void phy_set_asym_pause(struct phy_device *phydev, bool rx, bool tx)
2767 {
2768         __ETHTOOL_DECLARE_LINK_MODE_MASK(oldadv);
2769
2770         linkmode_copy(oldadv, phydev->advertising);
2771         linkmode_set_pause(phydev->advertising, tx, rx);
2772
2773         if (!linkmode_equal(oldadv, phydev->advertising) &&
2774             phydev->autoneg)
2775                 phy_start_aneg(phydev);
2776 }
2777 EXPORT_SYMBOL(phy_set_asym_pause);
2778
2779 /**
2780  * phy_validate_pause - Test if the PHY/MAC support the pause configuration
2781  * @phydev: phy_device struct
2782  * @pp: requested pause configuration
2783  *
2784  * Description: Test if the PHY/MAC combination supports the Pause
2785  * configuration the user is requesting. Returns True if it is
2786  * supported, false otherwise.
2787  */
2788 bool phy_validate_pause(struct phy_device *phydev,
2789                         struct ethtool_pauseparam *pp)
2790 {
2791         if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2792                                phydev->supported) && pp->rx_pause)
2793                 return false;
2794
2795         if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2796                                phydev->supported) &&
2797             pp->rx_pause != pp->tx_pause)
2798                 return false;
2799
2800         return true;
2801 }
2802 EXPORT_SYMBOL(phy_validate_pause);
2803
2804 /**
2805  * phy_get_pause - resolve negotiated pause modes
2806  * @phydev: phy_device struct
2807  * @tx_pause: pointer to bool to indicate whether transmit pause should be
2808  * enabled.
2809  * @rx_pause: pointer to bool to indicate whether receive pause should be
2810  * enabled.
2811  *
2812  * Resolve and return the flow control modes according to the negotiation
2813  * result. This includes checking that we are operating in full duplex mode.
2814  * See linkmode_resolve_pause() for further details.
2815  */
2816 void phy_get_pause(struct phy_device *phydev, bool *tx_pause, bool *rx_pause)
2817 {
2818         if (phydev->duplex != DUPLEX_FULL) {
2819                 *tx_pause = false;
2820                 *rx_pause = false;
2821                 return;
2822         }
2823
2824         return linkmode_resolve_pause(phydev->advertising,
2825                                       phydev->lp_advertising,
2826                                       tx_pause, rx_pause);
2827 }
2828 EXPORT_SYMBOL(phy_get_pause);
2829
2830 #if IS_ENABLED(CONFIG_OF_MDIO)
2831 static int phy_get_int_delay_property(struct device *dev, const char *name)
2832 {
2833         s32 int_delay;
2834         int ret;
2835
2836         ret = device_property_read_u32(dev, name, &int_delay);
2837         if (ret)
2838                 return ret;
2839
2840         return int_delay;
2841 }
2842 #else
2843 static int phy_get_int_delay_property(struct device *dev, const char *name)
2844 {
2845         return -EINVAL;
2846 }
2847 #endif
2848
2849 /**
2850  * phy_get_internal_delay - returns the index of the internal delay
2851  * @phydev: phy_device struct
2852  * @dev: pointer to the devices device struct
2853  * @delay_values: array of delays the PHY supports
2854  * @size: the size of the delay array
2855  * @is_rx: boolean to indicate to get the rx internal delay
2856  *
2857  * Returns the index within the array of internal delay passed in.
2858  * If the device property is not present then the interface type is checked
2859  * if the interface defines use of internal delay then a 1 is returned otherwise
2860  * a 0 is returned.
2861  * The array must be in ascending order. If PHY does not have an ascending order
2862  * array then size = 0 and the value of the delay property is returned.
2863  * Return -EINVAL if the delay is invalid or cannot be found.
2864  */
2865 s32 phy_get_internal_delay(struct phy_device *phydev, struct device *dev,
2866                            const int *delay_values, int size, bool is_rx)
2867 {
2868         s32 delay;
2869         int i;
2870
2871         if (is_rx) {
2872                 delay = phy_get_int_delay_property(dev, "rx-internal-delay-ps");
2873                 if (delay < 0 && size == 0) {
2874                         if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
2875                             phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID)
2876                                 return 1;
2877                         else
2878                                 return 0;
2879                 }
2880
2881         } else {
2882                 delay = phy_get_int_delay_property(dev, "tx-internal-delay-ps");
2883                 if (delay < 0 && size == 0) {
2884                         if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
2885                             phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID)
2886                                 return 1;
2887                         else
2888                                 return 0;
2889                 }
2890         }
2891
2892         if (delay < 0)
2893                 return delay;
2894
2895         if (delay && size == 0)
2896                 return delay;
2897
2898         if (delay < delay_values[0] || delay > delay_values[size - 1]) {
2899                 phydev_err(phydev, "Delay %d is out of range\n", delay);
2900                 return -EINVAL;
2901         }
2902
2903         if (delay == delay_values[0])
2904                 return 0;
2905
2906         for (i = 1; i < size; i++) {
2907                 if (delay == delay_values[i])
2908                         return i;
2909
2910                 /* Find an approximate index by looking up the table */
2911                 if (delay > delay_values[i - 1] &&
2912                     delay < delay_values[i]) {
2913                         if (delay - delay_values[i - 1] <
2914                             delay_values[i] - delay)
2915                                 return i - 1;
2916                         else
2917                                 return i;
2918                 }
2919         }
2920
2921         phydev_err(phydev, "error finding internal delay index for %d\n",
2922                    delay);
2923
2924         return -EINVAL;
2925 }
2926 EXPORT_SYMBOL(phy_get_internal_delay);
2927
2928 static bool phy_drv_supports_irq(struct phy_driver *phydrv)
2929 {
2930         return phydrv->config_intr && phydrv->handle_interrupt;
2931 }
2932
2933 /**
2934  * fwnode_mdio_find_device - Given a fwnode, find the mdio_device
2935  * @fwnode: pointer to the mdio_device's fwnode
2936  *
2937  * If successful, returns a pointer to the mdio_device with the embedded
2938  * struct device refcount incremented by one, or NULL on failure.
2939  * The caller should call put_device() on the mdio_device after its use.
2940  */
2941 struct mdio_device *fwnode_mdio_find_device(struct fwnode_handle *fwnode)
2942 {
2943         struct device *d;
2944
2945         if (!fwnode)
2946                 return NULL;
2947
2948         d = bus_find_device_by_fwnode(&mdio_bus_type, fwnode);
2949         if (!d)
2950                 return NULL;
2951
2952         return to_mdio_device(d);
2953 }
2954 EXPORT_SYMBOL(fwnode_mdio_find_device);
2955
2956 /**
2957  * fwnode_phy_find_device - For provided phy_fwnode, find phy_device.
2958  *
2959  * @phy_fwnode: Pointer to the phy's fwnode.
2960  *
2961  * If successful, returns a pointer to the phy_device with the embedded
2962  * struct device refcount incremented by one, or NULL on failure.
2963  */
2964 struct phy_device *fwnode_phy_find_device(struct fwnode_handle *phy_fwnode)
2965 {
2966         struct mdio_device *mdiodev;
2967
2968         mdiodev = fwnode_mdio_find_device(phy_fwnode);
2969         if (!mdiodev)
2970                 return NULL;
2971
2972         if (mdiodev->flags & MDIO_DEVICE_FLAG_PHY)
2973                 return to_phy_device(&mdiodev->dev);
2974
2975         put_device(&mdiodev->dev);
2976
2977         return NULL;
2978 }
2979 EXPORT_SYMBOL(fwnode_phy_find_device);
2980
2981 /**
2982  * device_phy_find_device - For the given device, get the phy_device
2983  * @dev: Pointer to the given device
2984  *
2985  * Refer return conditions of fwnode_phy_find_device().
2986  */
2987 struct phy_device *device_phy_find_device(struct device *dev)
2988 {
2989         return fwnode_phy_find_device(dev_fwnode(dev));
2990 }
2991 EXPORT_SYMBOL_GPL(device_phy_find_device);
2992
2993 /**
2994  * fwnode_get_phy_node - Get the phy_node using the named reference.
2995  * @fwnode: Pointer to fwnode from which phy_node has to be obtained.
2996  *
2997  * Refer return conditions of fwnode_find_reference().
2998  * For ACPI, only "phy-handle" is supported. Legacy DT properties "phy"
2999  * and "phy-device" are not supported in ACPI. DT supports all the three
3000  * named references to the phy node.
3001  */
3002 struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode)
3003 {
3004         struct fwnode_handle *phy_node;
3005
3006         /* Only phy-handle is used for ACPI */
3007         phy_node = fwnode_find_reference(fwnode, "phy-handle", 0);
3008         if (is_acpi_node(fwnode) || !IS_ERR(phy_node))
3009                 return phy_node;
3010         phy_node = fwnode_find_reference(fwnode, "phy", 0);
3011         if (IS_ERR(phy_node))
3012                 phy_node = fwnode_find_reference(fwnode, "phy-device", 0);
3013         return phy_node;
3014 }
3015 EXPORT_SYMBOL_GPL(fwnode_get_phy_node);
3016
3017 /**
3018  * phy_probe - probe and init a PHY device
3019  * @dev: device to probe and init
3020  *
3021  * Description: Take care of setting up the phy_device structure,
3022  *   set the state to READY (the driver's init function should
3023  *   set it to STARTING if needed).
3024  */
3025 static int phy_probe(struct device *dev)
3026 {
3027         struct phy_device *phydev = to_phy_device(dev);
3028         struct device_driver *drv = phydev->mdio.dev.driver;
3029         struct phy_driver *phydrv = to_phy_driver(drv);
3030         int err = 0;
3031
3032         phydev->drv = phydrv;
3033
3034         /* Disable the interrupt if the PHY doesn't support it
3035          * but the interrupt is still a valid one
3036          */
3037         if (!phy_drv_supports_irq(phydrv) && phy_interrupt_is_valid(phydev))
3038                 phydev->irq = PHY_POLL;
3039
3040         if (phydrv->flags & PHY_IS_INTERNAL)
3041                 phydev->is_internal = true;
3042
3043         mutex_lock(&phydev->lock);
3044
3045         /* Deassert the reset signal */
3046         phy_device_reset(phydev, 0);
3047
3048         if (phydev->drv->probe) {
3049                 err = phydev->drv->probe(phydev);
3050                 if (err)
3051                         goto out;
3052         }
3053
3054         /* Start out supporting everything. Eventually,
3055          * a controller will attach, and may modify one
3056          * or both of these values
3057          */
3058         if (phydrv->features)
3059                 linkmode_copy(phydev->supported, phydrv->features);
3060         else if (phydrv->get_features)
3061                 err = phydrv->get_features(phydev);
3062         else if (phydev->is_c45)
3063                 err = genphy_c45_pma_read_abilities(phydev);
3064         else
3065                 err = genphy_read_abilities(phydev);
3066
3067         if (err)
3068                 goto out;
3069
3070         if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
3071                                phydev->supported))
3072                 phydev->autoneg = 0;
3073
3074         if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
3075                               phydev->supported))
3076                 phydev->is_gigabit_capable = 1;
3077         if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
3078                               phydev->supported))
3079                 phydev->is_gigabit_capable = 1;
3080
3081         of_set_phy_supported(phydev);
3082         phy_advertise_supported(phydev);
3083
3084         /* Get the EEE modes we want to prohibit. We will ask
3085          * the PHY stop advertising these mode later on
3086          */
3087         of_set_phy_eee_broken(phydev);
3088
3089         /* The Pause Frame bits indicate that the PHY can support passing
3090          * pause frames. During autonegotiation, the PHYs will determine if
3091          * they should allow pause frames to pass.  The MAC driver should then
3092          * use that result to determine whether to enable flow control via
3093          * pause frames.
3094          *
3095          * Normally, PHY drivers should not set the Pause bits, and instead
3096          * allow phylib to do that.  However, there may be some situations
3097          * (e.g. hardware erratum) where the driver wants to set only one
3098          * of these bits.
3099          */
3100         if (!test_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported) &&
3101             !test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported)) {
3102                 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
3103                                  phydev->supported);
3104                 linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
3105                                  phydev->supported);
3106         }
3107
3108         /* Set the state to READY by default */
3109         phydev->state = PHY_READY;
3110
3111 out:
3112         /* Assert the reset signal */
3113         if (err)
3114                 phy_device_reset(phydev, 1);
3115
3116         mutex_unlock(&phydev->lock);
3117
3118         return err;
3119 }
3120
3121 static int phy_remove(struct device *dev)
3122 {
3123         struct phy_device *phydev = to_phy_device(dev);
3124
3125         cancel_delayed_work_sync(&phydev->state_queue);
3126
3127         mutex_lock(&phydev->lock);
3128         phydev->state = PHY_DOWN;
3129         mutex_unlock(&phydev->lock);
3130
3131         sfp_bus_del_upstream(phydev->sfp_bus);
3132         phydev->sfp_bus = NULL;
3133
3134         if (phydev->drv && phydev->drv->remove)
3135                 phydev->drv->remove(phydev);
3136
3137         /* Assert the reset signal */
3138         phy_device_reset(phydev, 1);
3139
3140         phydev->drv = NULL;
3141
3142         return 0;
3143 }
3144
3145 static void phy_shutdown(struct device *dev)
3146 {
3147         struct phy_device *phydev = to_phy_device(dev);
3148
3149         if (phydev->state == PHY_READY || !phydev->attached_dev)
3150                 return;
3151
3152         phy_disable_interrupts(phydev);
3153 }
3154
3155 /**
3156  * phy_driver_register - register a phy_driver with the PHY layer
3157  * @new_driver: new phy_driver to register
3158  * @owner: module owning this PHY
3159  */
3160 int phy_driver_register(struct phy_driver *new_driver, struct module *owner)
3161 {
3162         int retval;
3163
3164         /* Either the features are hard coded, or dynamically
3165          * determined. It cannot be both.
3166          */
3167         if (WARN_ON(new_driver->features && new_driver->get_features)) {
3168                 pr_err("%s: features and get_features must not both be set\n",
3169                        new_driver->name);
3170                 return -EINVAL;
3171         }
3172
3173         /* PHYLIB device drivers must not match using a DT compatible table
3174          * as this bypasses our checks that the mdiodev that is being matched
3175          * is backed by a struct phy_device. If such a case happens, we will
3176          * make out-of-bounds accesses and lockup in phydev->lock.
3177          */
3178         if (WARN(new_driver->mdiodrv.driver.of_match_table,
3179                  "%s: driver must not provide a DT match table\n",
3180                  new_driver->name))
3181                 return -EINVAL;
3182
3183         new_driver->mdiodrv.flags |= MDIO_DEVICE_IS_PHY;
3184         new_driver->mdiodrv.driver.name = new_driver->name;
3185         new_driver->mdiodrv.driver.bus = &mdio_bus_type;
3186         new_driver->mdiodrv.driver.probe = phy_probe;
3187         new_driver->mdiodrv.driver.remove = phy_remove;
3188         new_driver->mdiodrv.driver.shutdown = phy_shutdown;
3189         new_driver->mdiodrv.driver.owner = owner;
3190         new_driver->mdiodrv.driver.probe_type = PROBE_FORCE_SYNCHRONOUS;
3191
3192         retval = driver_register(&new_driver->mdiodrv.driver);
3193         if (retval) {
3194                 pr_err("%s: Error %d in registering driver\n",
3195                        new_driver->name, retval);
3196
3197                 return retval;
3198         }
3199
3200         pr_debug("%s: Registered new driver\n", new_driver->name);
3201
3202         return 0;
3203 }
3204 EXPORT_SYMBOL(phy_driver_register);
3205
3206 int phy_drivers_register(struct phy_driver *new_driver, int n,
3207                          struct module *owner)
3208 {
3209         int i, ret = 0;
3210
3211         for (i = 0; i < n; i++) {
3212                 ret = phy_driver_register(new_driver + i, owner);
3213                 if (ret) {
3214                         while (i-- > 0)
3215                                 phy_driver_unregister(new_driver + i);
3216                         break;
3217                 }
3218         }
3219         return ret;
3220 }
3221 EXPORT_SYMBOL(phy_drivers_register);
3222
3223 void phy_driver_unregister(struct phy_driver *drv)
3224 {
3225         driver_unregister(&drv->mdiodrv.driver);
3226 }
3227 EXPORT_SYMBOL(phy_driver_unregister);
3228
3229 void phy_drivers_unregister(struct phy_driver *drv, int n)
3230 {
3231         int i;
3232
3233         for (i = 0; i < n; i++)
3234                 phy_driver_unregister(drv + i);
3235 }
3236 EXPORT_SYMBOL(phy_drivers_unregister);
3237
3238 static struct phy_driver genphy_driver = {
3239         .phy_id         = 0xffffffff,
3240         .phy_id_mask    = 0xffffffff,
3241         .name           = "Generic PHY",
3242         .get_features   = genphy_read_abilities,
3243         .suspend        = genphy_suspend,
3244         .resume         = genphy_resume,
3245         .set_loopback   = genphy_loopback,
3246 };
3247
3248 static const struct ethtool_phy_ops phy_ethtool_phy_ops = {
3249         .get_sset_count         = phy_ethtool_get_sset_count,
3250         .get_strings            = phy_ethtool_get_strings,
3251         .get_stats              = phy_ethtool_get_stats,
3252         .start_cable_test       = phy_start_cable_test,
3253         .start_cable_test_tdr   = phy_start_cable_test_tdr,
3254 };
3255
3256 static int __init phy_init(void)
3257 {
3258         int rc;
3259
3260         rc = mdio_bus_init();
3261         if (rc)
3262                 return rc;
3263
3264         ethtool_set_ethtool_phy_ops(&phy_ethtool_phy_ops);
3265         features_init();
3266
3267         rc = phy_driver_register(&genphy_c45_driver, THIS_MODULE);
3268         if (rc)
3269                 goto err_c45;
3270
3271         rc = phy_driver_register(&genphy_driver, THIS_MODULE);
3272         if (rc) {
3273                 phy_driver_unregister(&genphy_c45_driver);
3274 err_c45:
3275                 mdio_bus_exit();
3276         }
3277
3278         return rc;
3279 }
3280
3281 static void __exit phy_exit(void)
3282 {
3283         phy_driver_unregister(&genphy_c45_driver);
3284         phy_driver_unregister(&genphy_driver);
3285         mdio_bus_exit();
3286         ethtool_set_ethtool_phy_ops(NULL);
3287 }
3288
3289 subsys_initcall(phy_init);
3290 module_exit(phy_exit);