GNU Linux-libre 4.9.309-gnu1
[releases.git] / drivers / net / phy / phy_device.c
1 /* Framework for finding and configuring PHYs.
2  * Also contains generic PHY driver
3  *
4  * Author: Andy Fleming
5  *
6  * Copyright (c) 2004 Freescale Semiconductor, Inc.
7  *
8  * This program is free software; you can redistribute  it and/or modify it
9  * under  the terms of  the GNU General  Public License as published by the
10  * Free Software Foundation;  either version 2 of the  License, or (at your
11  * option) any later version.
12  *
13  */
14
15 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16
17 #include <linux/kernel.h>
18 #include <linux/string.h>
19 #include <linux/errno.h>
20 #include <linux/unistd.h>
21 #include <linux/slab.h>
22 #include <linux/interrupt.h>
23 #include <linux/init.h>
24 #include <linux/delay.h>
25 #include <linux/netdevice.h>
26 #include <linux/etherdevice.h>
27 #include <linux/skbuff.h>
28 #include <linux/mm.h>
29 #include <linux/module.h>
30 #include <linux/mii.h>
31 #include <linux/ethtool.h>
32 #include <linux/phy.h>
33 #include <linux/mdio.h>
34 #include <linux/io.h>
35 #include <linux/uaccess.h>
36 #include <linux/of.h>
37
38 #include <asm/irq.h>
39
40 MODULE_DESCRIPTION("PHY library");
41 MODULE_AUTHOR("Andy Fleming");
42 MODULE_LICENSE("GPL");
43
44 void phy_device_free(struct phy_device *phydev)
45 {
46         put_device(&phydev->mdio.dev);
47 }
48 EXPORT_SYMBOL(phy_device_free);
49
50 static void phy_mdio_device_free(struct mdio_device *mdiodev)
51 {
52         struct phy_device *phydev;
53
54         phydev = container_of(mdiodev, struct phy_device, mdio);
55         phy_device_free(phydev);
56 }
57
58 static void phy_device_release(struct device *dev)
59 {
60         kfree(to_phy_device(dev));
61 }
62
63 static void phy_mdio_device_remove(struct mdio_device *mdiodev)
64 {
65         struct phy_device *phydev;
66
67         phydev = container_of(mdiodev, struct phy_device, mdio);
68         phy_device_remove(phydev);
69 }
70
71 enum genphy_driver {
72         GENPHY_DRV_1G,
73         GENPHY_DRV_10G,
74         GENPHY_DRV_MAX
75 };
76
77 static struct phy_driver genphy_driver[GENPHY_DRV_MAX];
78
79 static LIST_HEAD(phy_fixup_list);
80 static DEFINE_MUTEX(phy_fixup_lock);
81
82 #ifdef CONFIG_PM
83 static bool mdio_bus_phy_may_suspend(struct phy_device *phydev)
84 {
85         struct device_driver *drv = phydev->mdio.dev.driver;
86         struct phy_driver *phydrv = to_phy_driver(drv);
87         struct net_device *netdev = phydev->attached_dev;
88
89         if (!drv || !phydrv->suspend)
90                 return false;
91
92         /* PHY not attached? May suspend if the PHY has not already been
93          * suspended as part of a prior call to phy_disconnect() ->
94          * phy_detach() -> phy_suspend() because the parent netdev might be the
95          * MDIO bus driver and clock gated at this point.
96          */
97         if (!netdev)
98                 goto out;
99
100         /* Don't suspend PHY if the attached netdev parent may wakeup.
101          * The parent may point to a PCI device, as in tg3 driver.
102          */
103         if (netdev->dev.parent && device_may_wakeup(netdev->dev.parent))
104                 return false;
105
106         /* Also don't suspend PHY if the netdev itself may wakeup. This
107          * is the case for devices w/o underlaying pwr. mgmt. aware bus,
108          * e.g. SoC devices.
109          */
110         if (device_may_wakeup(&netdev->dev))
111                 return false;
112
113 out:
114         return !phydev->suspended;
115 }
116
117 static int mdio_bus_phy_suspend(struct device *dev)
118 {
119         struct phy_device *phydev = to_phy_device(dev);
120
121         /* We must stop the state machine manually, otherwise it stops out of
122          * control, possibly with the phydev->lock held. Upon resume, netdev
123          * may call phy routines that try to grab the same lock, and that may
124          * lead to a deadlock.
125          */
126         if (phydev->attached_dev && phydev->adjust_link)
127                 phy_stop_machine(phydev);
128
129         if (!mdio_bus_phy_may_suspend(phydev))
130                 return 0;
131
132         phydev->suspended_by_mdio_bus = true;
133
134         return phy_suspend(phydev);
135 }
136
137 static int mdio_bus_phy_resume(struct device *dev)
138 {
139         struct phy_device *phydev = to_phy_device(dev);
140         int ret;
141
142         if (!phydev->suspended_by_mdio_bus)
143                 goto no_resume;
144
145         phydev->suspended_by_mdio_bus = false;
146
147         ret = phy_resume(phydev);
148         if (ret < 0)
149                 return ret;
150
151 no_resume:
152         if (phydev->attached_dev && phydev->adjust_link)
153                 phy_start_machine(phydev);
154
155         return 0;
156 }
157
158 static int mdio_bus_phy_restore(struct device *dev)
159 {
160         struct phy_device *phydev = to_phy_device(dev);
161         struct net_device *netdev = phydev->attached_dev;
162         int ret;
163
164         if (!netdev)
165                 return 0;
166
167         ret = phy_init_hw(phydev);
168         if (ret < 0)
169                 return ret;
170
171         if (phydev->attached_dev && phydev->adjust_link)
172                 phy_start_machine(phydev);
173
174         return 0;
175 }
176
177 static const struct dev_pm_ops mdio_bus_phy_pm_ops = {
178         .suspend = mdio_bus_phy_suspend,
179         .resume = mdio_bus_phy_resume,
180         .freeze = mdio_bus_phy_suspend,
181         .thaw = mdio_bus_phy_resume,
182         .restore = mdio_bus_phy_restore,
183 };
184
185 #define MDIO_BUS_PHY_PM_OPS (&mdio_bus_phy_pm_ops)
186
187 #else
188
189 #define MDIO_BUS_PHY_PM_OPS NULL
190
191 #endif /* CONFIG_PM */
192
193 /**
194  * phy_register_fixup - creates a new phy_fixup and adds it to the list
195  * @bus_id: A string which matches phydev->mdio.dev.bus_id (or PHY_ANY_ID)
196  * @phy_uid: Used to match against phydev->phy_id (the UID of the PHY)
197  *      It can also be PHY_ANY_UID
198  * @phy_uid_mask: Applied to phydev->phy_id and fixup->phy_uid before
199  *      comparison
200  * @run: The actual code to be run when a matching PHY is found
201  */
202 int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
203                        int (*run)(struct phy_device *))
204 {
205         struct phy_fixup *fixup = kzalloc(sizeof(*fixup), GFP_KERNEL);
206
207         if (!fixup)
208                 return -ENOMEM;
209
210         strlcpy(fixup->bus_id, bus_id, sizeof(fixup->bus_id));
211         fixup->phy_uid = phy_uid;
212         fixup->phy_uid_mask = phy_uid_mask;
213         fixup->run = run;
214
215         mutex_lock(&phy_fixup_lock);
216         list_add_tail(&fixup->list, &phy_fixup_list);
217         mutex_unlock(&phy_fixup_lock);
218
219         return 0;
220 }
221 EXPORT_SYMBOL(phy_register_fixup);
222
223 /* Registers a fixup to be run on any PHY with the UID in phy_uid */
224 int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask,
225                                int (*run)(struct phy_device *))
226 {
227         return phy_register_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask, run);
228 }
229 EXPORT_SYMBOL(phy_register_fixup_for_uid);
230
231 /* Registers a fixup to be run on the PHY with id string bus_id */
232 int phy_register_fixup_for_id(const char *bus_id,
233                               int (*run)(struct phy_device *))
234 {
235         return phy_register_fixup(bus_id, PHY_ANY_UID, 0xffffffff, run);
236 }
237 EXPORT_SYMBOL(phy_register_fixup_for_id);
238
239 /* Returns 1 if fixup matches phydev in bus_id and phy_uid.
240  * Fixups can be set to match any in one or more fields.
241  */
242 static int phy_needs_fixup(struct phy_device *phydev, struct phy_fixup *fixup)
243 {
244         if (strcmp(fixup->bus_id, phydev_name(phydev)) != 0)
245                 if (strcmp(fixup->bus_id, PHY_ANY_ID) != 0)
246                         return 0;
247
248         if ((fixup->phy_uid & fixup->phy_uid_mask) !=
249             (phydev->phy_id & fixup->phy_uid_mask))
250                 if (fixup->phy_uid != PHY_ANY_UID)
251                         return 0;
252
253         return 1;
254 }
255
256 /* Runs any matching fixups for this phydev */
257 static int phy_scan_fixups(struct phy_device *phydev)
258 {
259         struct phy_fixup *fixup;
260
261         mutex_lock(&phy_fixup_lock);
262         list_for_each_entry(fixup, &phy_fixup_list, list) {
263                 if (phy_needs_fixup(phydev, fixup)) {
264                         int err = fixup->run(phydev);
265
266                         if (err < 0) {
267                                 mutex_unlock(&phy_fixup_lock);
268                                 return err;
269                         }
270                         phydev->has_fixups = true;
271                 }
272         }
273         mutex_unlock(&phy_fixup_lock);
274
275         return 0;
276 }
277
278 static int phy_bus_match(struct device *dev, struct device_driver *drv)
279 {
280         struct phy_device *phydev = to_phy_device(dev);
281         struct phy_driver *phydrv = to_phy_driver(drv);
282         const int num_ids = ARRAY_SIZE(phydev->c45_ids.device_ids);
283         int i;
284
285         if (!(phydrv->mdiodrv.flags & MDIO_DEVICE_IS_PHY))
286                 return 0;
287
288         if (phydrv->match_phy_device)
289                 return phydrv->match_phy_device(phydev);
290
291         if (phydev->is_c45) {
292                 for (i = 1; i < num_ids; i++) {
293                         if (!(phydev->c45_ids.devices_in_package & (1 << i)))
294                                 continue;
295
296                         if ((phydrv->phy_id & phydrv->phy_id_mask) ==
297                             (phydev->c45_ids.device_ids[i] &
298                              phydrv->phy_id_mask))
299                                 return 1;
300                 }
301                 return 0;
302         } else {
303                 return (phydrv->phy_id & phydrv->phy_id_mask) ==
304                         (phydev->phy_id & phydrv->phy_id_mask);
305         }
306 }
307
308 struct phy_device *phy_device_create(struct mii_bus *bus, int addr, int phy_id,
309                                      bool is_c45,
310                                      struct phy_c45_device_ids *c45_ids)
311 {
312         struct phy_device *dev;
313         struct mdio_device *mdiodev;
314
315         /* We allocate the device, and initialize the default values */
316         dev = kzalloc(sizeof(*dev), GFP_KERNEL);
317         if (!dev)
318                 return ERR_PTR(-ENOMEM);
319
320         mdiodev = &dev->mdio;
321         mdiodev->dev.release = phy_device_release;
322         mdiodev->dev.parent = &bus->dev;
323         mdiodev->dev.bus = &mdio_bus_type;
324         mdiodev->bus = bus;
325         mdiodev->pm_ops = MDIO_BUS_PHY_PM_OPS;
326         mdiodev->bus_match = phy_bus_match;
327         mdiodev->addr = addr;
328         mdiodev->flags = MDIO_DEVICE_FLAG_PHY;
329         mdiodev->device_free = phy_mdio_device_free;
330         mdiodev->device_remove = phy_mdio_device_remove;
331
332         dev->speed = SPEED_UNKNOWN;
333         dev->duplex = DUPLEX_UNKNOWN;
334         dev->pause = 0;
335         dev->asym_pause = 0;
336         dev->link = 1;
337         dev->interface = PHY_INTERFACE_MODE_GMII;
338
339         dev->autoneg = AUTONEG_ENABLE;
340
341         dev->is_c45 = is_c45;
342         dev->phy_id = phy_id;
343         if (c45_ids)
344                 dev->c45_ids = *c45_ids;
345         dev->irq = bus->irq[addr];
346         dev_set_name(&mdiodev->dev, PHY_ID_FMT, bus->id, addr);
347
348         dev->state = PHY_DOWN;
349
350         mutex_init(&dev->lock);
351         INIT_DELAYED_WORK(&dev->state_queue, phy_state_machine);
352         INIT_WORK(&dev->phy_queue, phy_change);
353
354         /* Request the appropriate module unconditionally; don't
355          * bother trying to do so only if it isn't already loaded,
356          * because that gets complicated. A hotplug event would have
357          * done an unconditional modprobe anyway.
358          * We don't do normal hotplug because it won't work for MDIO
359          * -- because it relies on the device staying around for long
360          * enough for the driver to get loaded. With MDIO, the NIC
361          * driver will get bored and give up as soon as it finds that
362          * there's no driver _already_ loaded.
363          */
364         request_module(MDIO_MODULE_PREFIX MDIO_ID_FMT, MDIO_ID_ARGS(phy_id));
365
366         device_initialize(&mdiodev->dev);
367
368         return dev;
369 }
370 EXPORT_SYMBOL(phy_device_create);
371
372 /* get_phy_c45_devs_in_pkg - reads a MMD's devices in package registers.
373  * @bus: the target MII bus
374  * @addr: PHY address on the MII bus
375  * @dev_addr: MMD address in the PHY.
376  * @devices_in_package: where to store the devices in package information.
377  *
378  * Description: reads devices in package registers of a MMD at @dev_addr
379  * from PHY at @addr on @bus.
380  *
381  * Returns: 0 on success, -EIO on failure.
382  */
383 static int get_phy_c45_devs_in_pkg(struct mii_bus *bus, int addr, int dev_addr,
384                                    u32 *devices_in_package)
385 {
386         int phy_reg, reg_addr;
387
388         reg_addr = MII_ADDR_C45 | dev_addr << 16 | MDIO_DEVS2;
389         phy_reg = mdiobus_read(bus, addr, reg_addr);
390         if (phy_reg < 0)
391                 return -EIO;
392         *devices_in_package = (phy_reg & 0xffff) << 16;
393
394         reg_addr = MII_ADDR_C45 | dev_addr << 16 | MDIO_DEVS1;
395         phy_reg = mdiobus_read(bus, addr, reg_addr);
396         if (phy_reg < 0)
397                 return -EIO;
398         *devices_in_package |= (phy_reg & 0xffff);
399
400         return 0;
401 }
402
403 /**
404  * get_phy_c45_ids - reads the specified addr for its 802.3-c45 IDs.
405  * @bus: the target MII bus
406  * @addr: PHY address on the MII bus
407  * @phy_id: where to store the ID retrieved.
408  * @c45_ids: where to store the c45 ID information.
409  *
410  *   If the PHY devices-in-package appears to be valid, it and the
411  *   corresponding identifiers are stored in @c45_ids, zero is stored
412  *   in @phy_id.  Otherwise 0xffffffff is stored in @phy_id.  Returns
413  *   zero on success.
414  *
415  */
416 static int get_phy_c45_ids(struct mii_bus *bus, int addr, u32 *phy_id,
417                            struct phy_c45_device_ids *c45_ids) {
418         int phy_reg;
419         int i, reg_addr;
420         const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
421         u32 *devs = &c45_ids->devices_in_package;
422
423         /* Find first non-zero Devices In package. Device zero is reserved
424          * for 802.3 c45 complied PHYs, so don't probe it at first.
425          */
426         for (i = 1; i < num_ids && *devs == 0; i++) {
427                 phy_reg = get_phy_c45_devs_in_pkg(bus, addr, i, devs);
428                 if (phy_reg < 0)
429                         return -EIO;
430
431                 if ((*devs & 0x1fffffff) == 0x1fffffff) {
432                         /*  If mostly Fs, there is no device there,
433                          *  then let's continue to probe more, as some
434                          *  10G PHYs have zero Devices In package,
435                          *  e.g. Cortina CS4315/CS4340 PHY.
436                          */
437                         phy_reg = get_phy_c45_devs_in_pkg(bus, addr, 0, devs);
438                         if (phy_reg < 0)
439                                 return -EIO;
440                         /* no device there, let's get out of here */
441                         if ((*devs & 0x1fffffff) == 0x1fffffff) {
442                                 *phy_id = 0xffffffff;
443                                 return 0;
444                         } else {
445                                 break;
446                         }
447                 }
448         }
449
450         /* Now probe Device Identifiers for each device present. */
451         for (i = 1; i < num_ids; i++) {
452                 if (!(c45_ids->devices_in_package & (1 << i)))
453                         continue;
454
455                 reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID1;
456                 phy_reg = mdiobus_read(bus, addr, reg_addr);
457                 if (phy_reg < 0)
458                         return -EIO;
459                 c45_ids->device_ids[i] = (phy_reg & 0xffff) << 16;
460
461                 reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID2;
462                 phy_reg = mdiobus_read(bus, addr, reg_addr);
463                 if (phy_reg < 0)
464                         return -EIO;
465                 c45_ids->device_ids[i] |= (phy_reg & 0xffff);
466         }
467         *phy_id = 0;
468         return 0;
469 }
470
471 /**
472  * get_phy_id - reads the specified addr for its ID.
473  * @bus: the target MII bus
474  * @addr: PHY address on the MII bus
475  * @phy_id: where to store the ID retrieved.
476  * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
477  * @c45_ids: where to store the c45 ID information.
478  *
479  * Description: In the case of a 802.3-c22 PHY, reads the ID registers
480  *   of the PHY at @addr on the @bus, stores it in @phy_id and returns
481  *   zero on success.
482  *
483  *   In the case of a 802.3-c45 PHY, get_phy_c45_ids() is invoked, and
484  *   its return value is in turn returned.
485  *
486  */
487 static int get_phy_id(struct mii_bus *bus, int addr, u32 *phy_id,
488                       bool is_c45, struct phy_c45_device_ids *c45_ids)
489 {
490         int phy_reg;
491
492         if (is_c45)
493                 return get_phy_c45_ids(bus, addr, phy_id, c45_ids);
494
495         /* Grab the bits from PHYIR1, and put them in the upper half */
496         phy_reg = mdiobus_read(bus, addr, MII_PHYSID1);
497         if (phy_reg < 0)
498                 return -EIO;
499
500         *phy_id = (phy_reg & 0xffff) << 16;
501
502         /* Grab the bits from PHYIR2, and put them in the lower half */
503         phy_reg = mdiobus_read(bus, addr, MII_PHYSID2);
504         if (phy_reg < 0)
505                 return -EIO;
506
507         *phy_id |= (phy_reg & 0xffff);
508
509         return 0;
510 }
511
512 /**
513  * get_phy_device - reads the specified PHY device and returns its @phy_device
514  *                  struct
515  * @bus: the target MII bus
516  * @addr: PHY address on the MII bus
517  * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
518  *
519  * Description: Reads the ID registers of the PHY at @addr on the
520  *   @bus, then allocates and returns the phy_device to represent it.
521  */
522 struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45)
523 {
524         struct phy_c45_device_ids c45_ids = {0};
525         u32 phy_id = 0;
526         int r;
527
528         r = get_phy_id(bus, addr, &phy_id, is_c45, &c45_ids);
529         if (r)
530                 return ERR_PTR(r);
531
532         /* If the phy_id is mostly Fs, there is no device there */
533         if ((phy_id & 0x1fffffff) == 0x1fffffff)
534                 return ERR_PTR(-ENODEV);
535
536         return phy_device_create(bus, addr, phy_id, is_c45, &c45_ids);
537 }
538 EXPORT_SYMBOL(get_phy_device);
539
540 static ssize_t
541 phy_id_show(struct device *dev, struct device_attribute *attr, char *buf)
542 {
543         struct phy_device *phydev = to_phy_device(dev);
544
545         return sprintf(buf, "0x%.8lx\n", (unsigned long)phydev->phy_id);
546 }
547 static DEVICE_ATTR_RO(phy_id);
548
549 static ssize_t
550 phy_interface_show(struct device *dev, struct device_attribute *attr, char *buf)
551 {
552         struct phy_device *phydev = to_phy_device(dev);
553         const char *mode = NULL;
554
555         if (phy_is_internal(phydev))
556                 mode = "internal";
557         else
558                 mode = phy_modes(phydev->interface);
559
560         return sprintf(buf, "%s\n", mode);
561 }
562 static DEVICE_ATTR_RO(phy_interface);
563
564 static ssize_t
565 phy_has_fixups_show(struct device *dev, struct device_attribute *attr,
566                     char *buf)
567 {
568         struct phy_device *phydev = to_phy_device(dev);
569
570         return sprintf(buf, "%d\n", phydev->has_fixups);
571 }
572 static DEVICE_ATTR_RO(phy_has_fixups);
573
574 static struct attribute *phy_dev_attrs[] = {
575         &dev_attr_phy_id.attr,
576         &dev_attr_phy_interface.attr,
577         &dev_attr_phy_has_fixups.attr,
578         NULL,
579 };
580 ATTRIBUTE_GROUPS(phy_dev);
581
582 /**
583  * phy_device_register - Register the phy device on the MDIO bus
584  * @phydev: phy_device structure to be added to the MDIO bus
585  */
586 int phy_device_register(struct phy_device *phydev)
587 {
588         int err;
589
590         err = mdiobus_register_device(&phydev->mdio);
591         if (err)
592                 return err;
593
594         /* Run all of the fixups for this PHY */
595         err = phy_scan_fixups(phydev);
596         if (err) {
597                 pr_err("PHY %d failed to initialize\n", phydev->mdio.addr);
598                 goto out;
599         }
600
601         phydev->mdio.dev.groups = phy_dev_groups;
602
603         err = device_add(&phydev->mdio.dev);
604         if (err) {
605                 pr_err("PHY %d failed to add\n", phydev->mdio.addr);
606                 goto out;
607         }
608
609         return 0;
610
611  out:
612         mdiobus_unregister_device(&phydev->mdio);
613         return err;
614 }
615 EXPORT_SYMBOL(phy_device_register);
616
617 /**
618  * phy_device_remove - Remove a previously registered phy device from the MDIO bus
619  * @phydev: phy_device structure to remove
620  *
621  * This doesn't free the phy_device itself, it merely reverses the effects
622  * of phy_device_register(). Use phy_device_free() to free the device
623  * after calling this function.
624  */
625 void phy_device_remove(struct phy_device *phydev)
626 {
627         device_del(&phydev->mdio.dev);
628         mdiobus_unregister_device(&phydev->mdio);
629 }
630 EXPORT_SYMBOL(phy_device_remove);
631
632 /**
633  * phy_find_first - finds the first PHY device on the bus
634  * @bus: the target MII bus
635  */
636 struct phy_device *phy_find_first(struct mii_bus *bus)
637 {
638         struct phy_device *phydev;
639         int addr;
640
641         for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
642                 phydev = mdiobus_get_phy(bus, addr);
643                 if (phydev)
644                         return phydev;
645         }
646         return NULL;
647 }
648 EXPORT_SYMBOL(phy_find_first);
649
650 /**
651  * phy_prepare_link - prepares the PHY layer to monitor link status
652  * @phydev: target phy_device struct
653  * @handler: callback function for link status change notifications
654  *
655  * Description: Tells the PHY infrastructure to handle the
656  *   gory details on monitoring link status (whether through
657  *   polling or an interrupt), and to call back to the
658  *   connected device driver when the link status changes.
659  *   If you want to monitor your own link state, don't call
660  *   this function.
661  */
662 static void phy_prepare_link(struct phy_device *phydev,
663                              void (*handler)(struct net_device *))
664 {
665         phydev->adjust_link = handler;
666 }
667
668 /**
669  * phy_connect_direct - connect an ethernet device to a specific phy_device
670  * @dev: the network device to connect
671  * @phydev: the pointer to the phy device
672  * @handler: callback function for state change notifications
673  * @interface: PHY device's interface
674  */
675 int phy_connect_direct(struct net_device *dev, struct phy_device *phydev,
676                        void (*handler)(struct net_device *),
677                        phy_interface_t interface)
678 {
679         int rc;
680
681         if (!dev)
682                 return -EINVAL;
683
684         rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
685         if (rc)
686                 return rc;
687
688         phy_prepare_link(phydev, handler);
689         phy_start_machine(phydev);
690         if (phydev->irq > 0)
691                 phy_start_interrupts(phydev);
692
693         return 0;
694 }
695 EXPORT_SYMBOL(phy_connect_direct);
696
697 /**
698  * phy_connect - connect an ethernet device to a PHY device
699  * @dev: the network device to connect
700  * @bus_id: the id string of the PHY device to connect
701  * @handler: callback function for state change notifications
702  * @interface: PHY device's interface
703  *
704  * Description: Convenience function for connecting ethernet
705  *   devices to PHY devices.  The default behavior is for
706  *   the PHY infrastructure to handle everything, and only notify
707  *   the connected driver when the link status changes.  If you
708  *   don't want, or can't use the provided functionality, you may
709  *   choose to call only the subset of functions which provide
710  *   the desired functionality.
711  */
712 struct phy_device *phy_connect(struct net_device *dev, const char *bus_id,
713                                void (*handler)(struct net_device *),
714                                phy_interface_t interface)
715 {
716         struct phy_device *phydev;
717         struct device *d;
718         int rc;
719
720         /* Search the list of PHY devices on the mdio bus for the
721          * PHY with the requested name
722          */
723         d = bus_find_device_by_name(&mdio_bus_type, NULL, bus_id);
724         if (!d) {
725                 pr_err("PHY %s not found\n", bus_id);
726                 return ERR_PTR(-ENODEV);
727         }
728         phydev = to_phy_device(d);
729
730         rc = phy_connect_direct(dev, phydev, handler, interface);
731         put_device(d);
732         if (rc)
733                 return ERR_PTR(rc);
734
735         return phydev;
736 }
737 EXPORT_SYMBOL(phy_connect);
738
739 /**
740  * phy_disconnect - disable interrupts, stop state machine, and detach a PHY
741  *                  device
742  * @phydev: target phy_device struct
743  */
744 void phy_disconnect(struct phy_device *phydev)
745 {
746         if (phydev->irq > 0)
747                 phy_stop_interrupts(phydev);
748
749         phy_stop_machine(phydev);
750
751         phydev->adjust_link = NULL;
752
753         phy_detach(phydev);
754 }
755 EXPORT_SYMBOL(phy_disconnect);
756
757 /**
758  * phy_poll_reset - Safely wait until a PHY reset has properly completed
759  * @phydev: The PHY device to poll
760  *
761  * Description: According to IEEE 802.3, Section 2, Subsection 22.2.4.1.1, as
762  *   published in 2008, a PHY reset may take up to 0.5 seconds.  The MII BMCR
763  *   register must be polled until the BMCR_RESET bit clears.
764  *
765  *   Furthermore, any attempts to write to PHY registers may have no effect
766  *   or even generate MDIO bus errors until this is complete.
767  *
768  *   Some PHYs (such as the Marvell 88E1111) don't entirely conform to the
769  *   standard and do not fully reset after the BMCR_RESET bit is set, and may
770  *   even *REQUIRE* a soft-reset to properly restart autonegotiation.  In an
771  *   effort to support such broken PHYs, this function is separate from the
772  *   standard phy_init_hw() which will zero all the other bits in the BMCR
773  *   and reapply all driver-specific and board-specific fixups.
774  */
775 static int phy_poll_reset(struct phy_device *phydev)
776 {
777         /* Poll until the reset bit clears (50ms per retry == 0.6 sec) */
778         unsigned int retries = 12;
779         int ret;
780
781         do {
782                 msleep(50);
783                 ret = phy_read(phydev, MII_BMCR);
784                 if (ret < 0)
785                         return ret;
786         } while (ret & BMCR_RESET && --retries);
787         if (ret & BMCR_RESET)
788                 return -ETIMEDOUT;
789
790         /* Some chips (smsc911x) may still need up to another 1ms after the
791          * BMCR_RESET bit is cleared before they are usable.
792          */
793         msleep(1);
794         return 0;
795 }
796
797 int phy_init_hw(struct phy_device *phydev)
798 {
799         int ret = 0;
800
801         if (!phydev->drv || !phydev->drv->config_init)
802                 return 0;
803
804         if (phydev->drv->soft_reset)
805                 ret = phydev->drv->soft_reset(phydev);
806         else
807                 ret = genphy_soft_reset(phydev);
808
809         if (ret < 0)
810                 return ret;
811
812         ret = phy_scan_fixups(phydev);
813         if (ret < 0)
814                 return ret;
815
816         return phydev->drv->config_init(phydev);
817 }
818 EXPORT_SYMBOL(phy_init_hw);
819
820 void phy_attached_info(struct phy_device *phydev)
821 {
822         phy_attached_print(phydev, NULL);
823 }
824 EXPORT_SYMBOL(phy_attached_info);
825
826 #define ATTACHED_FMT "attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)"
827 void phy_attached_print(struct phy_device *phydev, const char *fmt, ...)
828 {
829         if (!fmt) {
830                 dev_info(&phydev->mdio.dev, ATTACHED_FMT "\n",
831                          phydev->drv->name, phydev_name(phydev),
832                          phydev->irq);
833         } else {
834                 va_list ap;
835
836                 dev_info(&phydev->mdio.dev, ATTACHED_FMT,
837                          phydev->drv->name, phydev_name(phydev),
838                          phydev->irq);
839
840                 va_start(ap, fmt);
841                 vprintk(fmt, ap);
842                 va_end(ap);
843         }
844 }
845 EXPORT_SYMBOL(phy_attached_print);
846
847 /**
848  * phy_attach_direct - attach a network device to a given PHY device pointer
849  * @dev: network device to attach
850  * @phydev: Pointer to phy_device to attach
851  * @flags: PHY device's dev_flags
852  * @interface: PHY device's interface
853  *
854  * Description: Called by drivers to attach to a particular PHY
855  *     device. The phy_device is found, and properly hooked up
856  *     to the phy_driver.  If no driver is attached, then a
857  *     generic driver is used.  The phy_device is given a ptr to
858  *     the attaching device, and given a callback for link status
859  *     change.  The phy_device is returned to the attaching driver.
860  *     This function takes a reference on the phy device.
861  */
862 int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,
863                       u32 flags, phy_interface_t interface)
864 {
865         struct module *ndev_owner = dev->dev.parent->driver->owner;
866         struct mii_bus *bus = phydev->mdio.bus;
867         struct device *d = &phydev->mdio.dev;
868         bool using_genphy = false;
869         int err;
870
871         /* For Ethernet device drivers that register their own MDIO bus, we
872          * will have bus->owner match ndev_mod, so we do not want to increment
873          * our own module->refcnt here, otherwise we would not be able to
874          * unload later on.
875          */
876         if (ndev_owner != bus->owner && !try_module_get(bus->owner)) {
877                 dev_err(&dev->dev, "failed to get the bus module\n");
878                 return -EIO;
879         }
880
881         get_device(d);
882
883         /* Assume that if there is no driver, that it doesn't
884          * exist, and we should use the genphy driver.
885          */
886         if (!d->driver) {
887                 if (phydev->is_c45)
888                         d->driver =
889                                 &genphy_driver[GENPHY_DRV_10G].mdiodrv.driver;
890                 else
891                         d->driver =
892                                 &genphy_driver[GENPHY_DRV_1G].mdiodrv.driver;
893
894                 using_genphy = true;
895         }
896
897         if (!try_module_get(d->driver->owner)) {
898                 dev_err(&dev->dev, "failed to get the device driver module\n");
899                 err = -EIO;
900                 goto error_put_device;
901         }
902
903         if (using_genphy) {
904                 err = d->driver->probe(d);
905                 if (err >= 0)
906                         err = device_bind_driver(d);
907
908                 if (err)
909                         goto error_module_put;
910         }
911
912         if (phydev->attached_dev) {
913                 dev_err(&dev->dev, "PHY already attached\n");
914                 err = -EBUSY;
915                 goto error;
916         }
917
918         phydev->attached_dev = dev;
919         dev->phydev = phydev;
920
921         phydev->dev_flags = flags;
922
923         phydev->interface = interface;
924
925         phydev->state = PHY_READY;
926
927         /* Initial carrier state is off as the phy is about to be
928          * (re)initialized.
929          */
930         netif_carrier_off(phydev->attached_dev);
931
932         /* Do initial configuration here, now that
933          * we have certain key parameters
934          * (dev_flags and interface)
935          */
936         err = phy_init_hw(phydev);
937         if (err)
938                 phy_detach(phydev);
939         else
940                 phy_resume(phydev);
941
942         return err;
943
944 error:
945         /* phy_detach() does all of the cleanup below */
946         phy_detach(phydev);
947         return err;
948
949 error_module_put:
950         module_put(d->driver->owner);
951 error_put_device:
952         put_device(d);
953         if (ndev_owner != bus->owner)
954                 module_put(bus->owner);
955         return err;
956 }
957 EXPORT_SYMBOL(phy_attach_direct);
958
959 /**
960  * phy_attach - attach a network device to a particular PHY device
961  * @dev: network device to attach
962  * @bus_id: Bus ID of PHY device to attach
963  * @interface: PHY device's interface
964  *
965  * Description: Same as phy_attach_direct() except that a PHY bus_id
966  *     string is passed instead of a pointer to a struct phy_device.
967  */
968 struct phy_device *phy_attach(struct net_device *dev, const char *bus_id,
969                               phy_interface_t interface)
970 {
971         struct bus_type *bus = &mdio_bus_type;
972         struct phy_device *phydev;
973         struct device *d;
974         int rc;
975
976         if (!dev)
977                 return ERR_PTR(-EINVAL);
978
979         /* Search the list of PHY devices on the mdio bus for the
980          * PHY with the requested name
981          */
982         d = bus_find_device_by_name(bus, NULL, bus_id);
983         if (!d) {
984                 pr_err("PHY %s not found\n", bus_id);
985                 return ERR_PTR(-ENODEV);
986         }
987         phydev = to_phy_device(d);
988
989         rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
990         put_device(d);
991         if (rc)
992                 return ERR_PTR(rc);
993
994         return phydev;
995 }
996 EXPORT_SYMBOL(phy_attach);
997
998 /**
999  * phy_detach - detach a PHY device from its network device
1000  * @phydev: target phy_device struct
1001  *
1002  * This detaches the phy device from its network device and the phy
1003  * driver, and drops the reference count taken in phy_attach_direct().
1004  */
1005 void phy_detach(struct phy_device *phydev)
1006 {
1007         struct net_device *dev = phydev->attached_dev;
1008         struct module *ndev_owner = dev->dev.parent->driver->owner;
1009         struct mii_bus *bus;
1010         int i;
1011
1012         phydev->attached_dev->phydev = NULL;
1013         phydev->attached_dev = NULL;
1014         phy_suspend(phydev);
1015
1016         if (phydev->mdio.dev.driver)
1017                 module_put(phydev->mdio.dev.driver->owner);
1018
1019         /* If the device had no specific driver before (i.e. - it
1020          * was using the generic driver), we unbind the device
1021          * from the generic driver so that there's a chance a
1022          * real driver could be loaded
1023          */
1024         for (i = 0; i < ARRAY_SIZE(genphy_driver); i++) {
1025                 if (phydev->mdio.dev.driver ==
1026                     &genphy_driver[i].mdiodrv.driver) {
1027                         device_release_driver(&phydev->mdio.dev);
1028                         break;
1029                 }
1030         }
1031
1032         /*
1033          * The phydev might go away on the put_device() below, so avoid
1034          * a use-after-free bug by reading the underlying bus first.
1035          */
1036         bus = phydev->mdio.bus;
1037
1038         put_device(&phydev->mdio.dev);
1039         if (ndev_owner != bus->owner)
1040                 module_put(bus->owner);
1041 }
1042 EXPORT_SYMBOL(phy_detach);
1043
1044 int phy_suspend(struct phy_device *phydev)
1045 {
1046         struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
1047         struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
1048         int ret = 0;
1049
1050         /* If the device has WOL enabled, we cannot suspend the PHY */
1051         phy_ethtool_get_wol(phydev, &wol);
1052         if (wol.wolopts)
1053                 return -EBUSY;
1054
1055         if (phydrv->suspend)
1056                 ret = phydrv->suspend(phydev);
1057
1058         if (ret)
1059                 return ret;
1060
1061         phydev->suspended = true;
1062
1063         return ret;
1064 }
1065 EXPORT_SYMBOL(phy_suspend);
1066
1067 int phy_resume(struct phy_device *phydev)
1068 {
1069         struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
1070         int ret = 0;
1071
1072         if (phydrv->resume)
1073                 ret = phydrv->resume(phydev);
1074
1075         if (ret)
1076                 return ret;
1077
1078         phydev->suspended = false;
1079
1080         return ret;
1081 }
1082 EXPORT_SYMBOL(phy_resume);
1083
1084 /* Generic PHY support and helper functions */
1085
1086 /**
1087  * genphy_config_advert - sanitize and advertise auto-negotiation parameters
1088  * @phydev: target phy_device struct
1089  *
1090  * Description: Writes MII_ADVERTISE with the appropriate values,
1091  *   after sanitizing the values to make sure we only advertise
1092  *   what is supported.  Returns < 0 on error, 0 if the PHY's advertisement
1093  *   hasn't changed, and > 0 if it has changed.
1094  */
1095 static int genphy_config_advert(struct phy_device *phydev)
1096 {
1097         u32 advertise;
1098         int oldadv, adv, bmsr;
1099         int err, changed = 0;
1100
1101         /* Only allow advertising what this PHY supports */
1102         phydev->advertising &= phydev->supported;
1103         advertise = phydev->advertising;
1104
1105         /* Setup standard advertisement */
1106         adv = phy_read(phydev, MII_ADVERTISE);
1107         if (adv < 0)
1108                 return adv;
1109
1110         oldadv = adv;
1111         adv &= ~(ADVERTISE_ALL | ADVERTISE_100BASE4 | ADVERTISE_PAUSE_CAP |
1112                  ADVERTISE_PAUSE_ASYM);
1113         adv |= ethtool_adv_to_mii_adv_t(advertise);
1114
1115         if (adv != oldadv) {
1116                 err = phy_write(phydev, MII_ADVERTISE, adv);
1117
1118                 if (err < 0)
1119                         return err;
1120                 changed = 1;
1121         }
1122
1123         bmsr = phy_read(phydev, MII_BMSR);
1124         if (bmsr < 0)
1125                 return bmsr;
1126
1127         /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
1128          * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
1129          * logical 1.
1130          */
1131         if (!(bmsr & BMSR_ESTATEN))
1132                 return changed;
1133
1134         /* Configure gigabit if it's supported */
1135         adv = phy_read(phydev, MII_CTRL1000);
1136         if (adv < 0)
1137                 return adv;
1138
1139         oldadv = adv;
1140         adv &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1141
1142         if (phydev->supported & (SUPPORTED_1000baseT_Half |
1143                                  SUPPORTED_1000baseT_Full)) {
1144                 adv |= ethtool_adv_to_mii_ctrl1000_t(advertise);
1145         }
1146
1147         if (adv != oldadv)
1148                 changed = 1;
1149
1150         err = phy_write(phydev, MII_CTRL1000, adv);
1151         if (err < 0)
1152                 return err;
1153
1154         return changed;
1155 }
1156
1157 /**
1158  * genphy_config_eee_advert - disable unwanted eee mode advertisement
1159  * @phydev: target phy_device struct
1160  *
1161  * Description: Writes MDIO_AN_EEE_ADV after disabling unsupported energy
1162  *   efficent ethernet modes. Returns 0 if the PHY's advertisement hasn't
1163  *   changed, and 1 if it has changed.
1164  */
1165 static int genphy_config_eee_advert(struct phy_device *phydev)
1166 {
1167         int broken = phydev->eee_broken_modes;
1168         int old_adv, adv;
1169
1170         /* Nothing to disable */
1171         if (!broken)
1172                 return 0;
1173
1174         /* If the following call fails, we assume that EEE is not
1175          * supported by the phy. If we read 0, EEE is not advertised
1176          * In both case, we don't need to continue
1177          */
1178         adv = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_ADV, MDIO_MMD_AN);
1179         if (adv <= 0)
1180                 return 0;
1181
1182         old_adv = adv;
1183         adv &= ~broken;
1184
1185         /* Advertising remains unchanged with the broken mask */
1186         if (old_adv == adv)
1187                 return 0;
1188
1189         phy_write_mmd_indirect(phydev, MDIO_AN_EEE_ADV, MDIO_MMD_AN, adv);
1190
1191         return 1;
1192 }
1193
1194 /**
1195  * genphy_setup_forced - configures/forces speed/duplex from @phydev
1196  * @phydev: target phy_device struct
1197  *
1198  * Description: Configures MII_BMCR to force speed/duplex
1199  *   to the values in phydev. Assumes that the values are valid.
1200  *   Please see phy_sanitize_settings().
1201  */
1202 int genphy_setup_forced(struct phy_device *phydev)
1203 {
1204         int ctl = phy_read(phydev, MII_BMCR);
1205
1206         ctl &= BMCR_LOOPBACK | BMCR_ISOLATE | BMCR_PDOWN;
1207         phydev->pause = 0;
1208         phydev->asym_pause = 0;
1209
1210         if (SPEED_1000 == phydev->speed)
1211                 ctl |= BMCR_SPEED1000;
1212         else if (SPEED_100 == phydev->speed)
1213                 ctl |= BMCR_SPEED100;
1214
1215         if (DUPLEX_FULL == phydev->duplex)
1216                 ctl |= BMCR_FULLDPLX;
1217
1218         return phy_write(phydev, MII_BMCR, ctl);
1219 }
1220 EXPORT_SYMBOL(genphy_setup_forced);
1221
1222 /**
1223  * genphy_restart_aneg - Enable and Restart Autonegotiation
1224  * @phydev: target phy_device struct
1225  */
1226 int genphy_restart_aneg(struct phy_device *phydev)
1227 {
1228         int ctl = phy_read(phydev, MII_BMCR);
1229
1230         if (ctl < 0)
1231                 return ctl;
1232
1233         ctl |= BMCR_ANENABLE | BMCR_ANRESTART;
1234
1235         /* Don't isolate the PHY if we're negotiating */
1236         ctl &= ~BMCR_ISOLATE;
1237
1238         return phy_write(phydev, MII_BMCR, ctl);
1239 }
1240 EXPORT_SYMBOL(genphy_restart_aneg);
1241
1242 /**
1243  * genphy_config_aneg - restart auto-negotiation or write BMCR
1244  * @phydev: target phy_device struct
1245  *
1246  * Description: If auto-negotiation is enabled, we configure the
1247  *   advertising, and then restart auto-negotiation.  If it is not
1248  *   enabled, then we write the BMCR.
1249  */
1250 int genphy_config_aneg(struct phy_device *phydev)
1251 {
1252         int err, changed;
1253
1254         changed = genphy_config_eee_advert(phydev);
1255
1256         if (AUTONEG_ENABLE != phydev->autoneg)
1257                 return genphy_setup_forced(phydev);
1258
1259         err = genphy_config_advert(phydev);
1260         if (err < 0) /* error */
1261                 return err;
1262
1263         changed |= err;
1264
1265         if (changed == 0) {
1266                 /* Advertisement hasn't changed, but maybe aneg was never on to
1267                  * begin with?  Or maybe phy was isolated?
1268                  */
1269                 int ctl = phy_read(phydev, MII_BMCR);
1270
1271                 if (ctl < 0)
1272                         return ctl;
1273
1274                 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
1275                         changed = 1; /* do restart aneg */
1276         }
1277
1278         /* Only restart aneg if we are advertising something different
1279          * than we were before.
1280          */
1281         if (changed > 0)
1282                 return genphy_restart_aneg(phydev);
1283
1284         return 0;
1285 }
1286 EXPORT_SYMBOL(genphy_config_aneg);
1287
1288 /**
1289  * genphy_aneg_done - return auto-negotiation status
1290  * @phydev: target phy_device struct
1291  *
1292  * Description: Reads the status register and returns 0 either if
1293  *   auto-negotiation is incomplete, or if there was an error.
1294  *   Returns BMSR_ANEGCOMPLETE if auto-negotiation is done.
1295  */
1296 int genphy_aneg_done(struct phy_device *phydev)
1297 {
1298         int retval = phy_read(phydev, MII_BMSR);
1299
1300         return (retval < 0) ? retval : (retval & BMSR_ANEGCOMPLETE);
1301 }
1302 EXPORT_SYMBOL(genphy_aneg_done);
1303
1304 static int gen10g_config_aneg(struct phy_device *phydev)
1305 {
1306         return 0;
1307 }
1308
1309 /**
1310  * genphy_update_link - update link status in @phydev
1311  * @phydev: target phy_device struct
1312  *
1313  * Description: Update the value in phydev->link to reflect the
1314  *   current link value.  In order to do this, we need to read
1315  *   the status register twice, keeping the second value.
1316  */
1317 int genphy_update_link(struct phy_device *phydev)
1318 {
1319         int status;
1320
1321         /* Do a fake read */
1322         status = phy_read(phydev, MII_BMSR);
1323         if (status < 0)
1324                 return status;
1325
1326         /* Read link and autonegotiation status */
1327         status = phy_read(phydev, MII_BMSR);
1328         if (status < 0)
1329                 return status;
1330
1331         if ((status & BMSR_LSTATUS) == 0)
1332                 phydev->link = 0;
1333         else
1334                 phydev->link = 1;
1335
1336         return 0;
1337 }
1338 EXPORT_SYMBOL(genphy_update_link);
1339
1340 /**
1341  * genphy_read_status - check the link status and update current link state
1342  * @phydev: target phy_device struct
1343  *
1344  * Description: Check the link, then figure out the current state
1345  *   by comparing what we advertise with what the link partner
1346  *   advertises.  Start by checking the gigabit possibilities,
1347  *   then move on to 10/100.
1348  */
1349 int genphy_read_status(struct phy_device *phydev)
1350 {
1351         int adv;
1352         int err;
1353         int lpa;
1354         int lpagb = 0;
1355         int common_adv;
1356         int common_adv_gb = 0;
1357
1358         /* Update the link, but return if there was an error */
1359         err = genphy_update_link(phydev);
1360         if (err)
1361                 return err;
1362
1363         phydev->lp_advertising = 0;
1364
1365         if (AUTONEG_ENABLE == phydev->autoneg) {
1366                 if (phydev->supported & (SUPPORTED_1000baseT_Half
1367                                         | SUPPORTED_1000baseT_Full)) {
1368                         lpagb = phy_read(phydev, MII_STAT1000);
1369                         if (lpagb < 0)
1370                                 return lpagb;
1371
1372                         adv = phy_read(phydev, MII_CTRL1000);
1373                         if (adv < 0)
1374                                 return adv;
1375
1376                         phydev->lp_advertising =
1377                                 mii_stat1000_to_ethtool_lpa_t(lpagb);
1378                         common_adv_gb = lpagb & adv << 2;
1379                 }
1380
1381                 lpa = phy_read(phydev, MII_LPA);
1382                 if (lpa < 0)
1383                         return lpa;
1384
1385                 phydev->lp_advertising |= mii_lpa_to_ethtool_lpa_t(lpa);
1386
1387                 adv = phy_read(phydev, MII_ADVERTISE);
1388                 if (adv < 0)
1389                         return adv;
1390
1391                 common_adv = lpa & adv;
1392
1393                 phydev->speed = SPEED_10;
1394                 phydev->duplex = DUPLEX_HALF;
1395                 phydev->pause = 0;
1396                 phydev->asym_pause = 0;
1397
1398                 if (common_adv_gb & (LPA_1000FULL | LPA_1000HALF)) {
1399                         phydev->speed = SPEED_1000;
1400
1401                         if (common_adv_gb & LPA_1000FULL)
1402                                 phydev->duplex = DUPLEX_FULL;
1403                 } else if (common_adv & (LPA_100FULL | LPA_100HALF)) {
1404                         phydev->speed = SPEED_100;
1405
1406                         if (common_adv & LPA_100FULL)
1407                                 phydev->duplex = DUPLEX_FULL;
1408                 } else
1409                         if (common_adv & LPA_10FULL)
1410                                 phydev->duplex = DUPLEX_FULL;
1411
1412                 if (phydev->duplex == DUPLEX_FULL) {
1413                         phydev->pause = lpa & LPA_PAUSE_CAP ? 1 : 0;
1414                         phydev->asym_pause = lpa & LPA_PAUSE_ASYM ? 1 : 0;
1415                 }
1416         } else {
1417                 int bmcr = phy_read(phydev, MII_BMCR);
1418
1419                 if (bmcr < 0)
1420                         return bmcr;
1421
1422                 if (bmcr & BMCR_FULLDPLX)
1423                         phydev->duplex = DUPLEX_FULL;
1424                 else
1425                         phydev->duplex = DUPLEX_HALF;
1426
1427                 if (bmcr & BMCR_SPEED1000)
1428                         phydev->speed = SPEED_1000;
1429                 else if (bmcr & BMCR_SPEED100)
1430                         phydev->speed = SPEED_100;
1431                 else
1432                         phydev->speed = SPEED_10;
1433
1434                 phydev->pause = 0;
1435                 phydev->asym_pause = 0;
1436         }
1437
1438         return 0;
1439 }
1440 EXPORT_SYMBOL(genphy_read_status);
1441
1442 static int gen10g_read_status(struct phy_device *phydev)
1443 {
1444         int devad, reg;
1445         u32 mmd_mask = phydev->c45_ids.devices_in_package;
1446
1447         phydev->link = 1;
1448
1449         /* For now just lie and say it's 10G all the time */
1450         phydev->speed = SPEED_10000;
1451         phydev->duplex = DUPLEX_FULL;
1452
1453         for (devad = 0; mmd_mask; devad++, mmd_mask = mmd_mask >> 1) {
1454                 if (!(mmd_mask & 1))
1455                         continue;
1456
1457                 /* Read twice because link state is latched and a
1458                  * read moves the current state into the register
1459                  */
1460                 phy_read_mmd(phydev, devad, MDIO_STAT1);
1461                 reg = phy_read_mmd(phydev, devad, MDIO_STAT1);
1462                 if (reg < 0 || !(reg & MDIO_STAT1_LSTATUS))
1463                         phydev->link = 0;
1464         }
1465
1466         return 0;
1467 }
1468
1469 /**
1470  * genphy_soft_reset - software reset the PHY via BMCR_RESET bit
1471  * @phydev: target phy_device struct
1472  *
1473  * Description: Perform a software PHY reset using the standard
1474  * BMCR_RESET bit and poll for the reset bit to be cleared.
1475  *
1476  * Returns: 0 on success, < 0 on failure
1477  */
1478 int genphy_soft_reset(struct phy_device *phydev)
1479 {
1480         int ret;
1481
1482         ret = phy_write(phydev, MII_BMCR, BMCR_RESET);
1483         if (ret < 0)
1484                 return ret;
1485
1486         return phy_poll_reset(phydev);
1487 }
1488 EXPORT_SYMBOL(genphy_soft_reset);
1489
1490 int genphy_config_init(struct phy_device *phydev)
1491 {
1492         int val;
1493         u32 features;
1494
1495         features = (SUPPORTED_TP | SUPPORTED_MII
1496                         | SUPPORTED_AUI | SUPPORTED_FIBRE |
1497                         SUPPORTED_BNC | SUPPORTED_Pause | SUPPORTED_Asym_Pause);
1498
1499         /* Do we support autonegotiation? */
1500         val = phy_read(phydev, MII_BMSR);
1501         if (val < 0)
1502                 return val;
1503
1504         if (val & BMSR_ANEGCAPABLE)
1505                 features |= SUPPORTED_Autoneg;
1506
1507         if (val & BMSR_100FULL)
1508                 features |= SUPPORTED_100baseT_Full;
1509         if (val & BMSR_100HALF)
1510                 features |= SUPPORTED_100baseT_Half;
1511         if (val & BMSR_10FULL)
1512                 features |= SUPPORTED_10baseT_Full;
1513         if (val & BMSR_10HALF)
1514                 features |= SUPPORTED_10baseT_Half;
1515
1516         if (val & BMSR_ESTATEN) {
1517                 val = phy_read(phydev, MII_ESTATUS);
1518                 if (val < 0)
1519                         return val;
1520
1521                 if (val & ESTATUS_1000_TFULL)
1522                         features |= SUPPORTED_1000baseT_Full;
1523                 if (val & ESTATUS_1000_THALF)
1524                         features |= SUPPORTED_1000baseT_Half;
1525         }
1526
1527         phydev->supported &= features;
1528         phydev->advertising &= features;
1529
1530         return 0;
1531 }
1532
1533 static int gen10g_soft_reset(struct phy_device *phydev)
1534 {
1535         /* Do nothing for now */
1536         return 0;
1537 }
1538 EXPORT_SYMBOL(genphy_config_init);
1539
1540 static int gen10g_config_init(struct phy_device *phydev)
1541 {
1542         /* Temporarily just say we support everything */
1543         phydev->supported = SUPPORTED_10000baseT_Full;
1544         phydev->advertising = SUPPORTED_10000baseT_Full;
1545
1546         return 0;
1547 }
1548
1549 int genphy_suspend(struct phy_device *phydev)
1550 {
1551         int value;
1552
1553         mutex_lock(&phydev->lock);
1554
1555         value = phy_read(phydev, MII_BMCR);
1556         phy_write(phydev, MII_BMCR, value | BMCR_PDOWN);
1557
1558         mutex_unlock(&phydev->lock);
1559
1560         return 0;
1561 }
1562 EXPORT_SYMBOL(genphy_suspend);
1563
1564 static int gen10g_suspend(struct phy_device *phydev)
1565 {
1566         return 0;
1567 }
1568
1569 int genphy_resume(struct phy_device *phydev)
1570 {
1571         int value;
1572
1573         mutex_lock(&phydev->lock);
1574
1575         value = phy_read(phydev, MII_BMCR);
1576         phy_write(phydev, MII_BMCR, value & ~BMCR_PDOWN);
1577
1578         mutex_unlock(&phydev->lock);
1579
1580         return 0;
1581 }
1582 EXPORT_SYMBOL(genphy_resume);
1583
1584 static int gen10g_resume(struct phy_device *phydev)
1585 {
1586         return 0;
1587 }
1588
1589 static int __set_phy_supported(struct phy_device *phydev, u32 max_speed)
1590 {
1591         switch (max_speed) {
1592         case SPEED_10:
1593                 phydev->supported &= ~PHY_100BT_FEATURES;
1594                 /* fall through */
1595         case SPEED_100:
1596                 phydev->supported &= ~PHY_1000BT_FEATURES;
1597                 break;
1598         case SPEED_1000:
1599                 break;
1600         default:
1601                 return -ENOTSUPP;
1602         }
1603
1604         return 0;
1605 }
1606
1607 int phy_set_max_speed(struct phy_device *phydev, u32 max_speed)
1608 {
1609         int err;
1610
1611         err = __set_phy_supported(phydev, max_speed);
1612         if (err)
1613                 return err;
1614
1615         phydev->advertising = phydev->supported;
1616
1617         return 0;
1618 }
1619 EXPORT_SYMBOL(phy_set_max_speed);
1620
1621 static void of_set_phy_supported(struct phy_device *phydev)
1622 {
1623         struct device_node *node = phydev->mdio.dev.of_node;
1624         u32 max_speed;
1625
1626         if (!IS_ENABLED(CONFIG_OF_MDIO))
1627                 return;
1628
1629         if (!node)
1630                 return;
1631
1632         if (!of_property_read_u32(node, "max-speed", &max_speed))
1633                 __set_phy_supported(phydev, max_speed);
1634 }
1635
1636 static void of_set_phy_eee_broken(struct phy_device *phydev)
1637 {
1638         struct device_node *node = phydev->mdio.dev.of_node;
1639         u32 broken = 0;
1640
1641         if (!IS_ENABLED(CONFIG_OF_MDIO))
1642                 return;
1643
1644         if (!node)
1645                 return;
1646
1647         if (of_property_read_bool(node, "eee-broken-100tx"))
1648                 broken |= MDIO_EEE_100TX;
1649         if (of_property_read_bool(node, "eee-broken-1000t"))
1650                 broken |= MDIO_EEE_1000T;
1651         if (of_property_read_bool(node, "eee-broken-10gt"))
1652                 broken |= MDIO_EEE_10GT;
1653         if (of_property_read_bool(node, "eee-broken-1000kx"))
1654                 broken |= MDIO_EEE_1000KX;
1655         if (of_property_read_bool(node, "eee-broken-10gkx4"))
1656                 broken |= MDIO_EEE_10GKX4;
1657         if (of_property_read_bool(node, "eee-broken-10gkr"))
1658                 broken |= MDIO_EEE_10GKR;
1659
1660         phydev->eee_broken_modes = broken;
1661 }
1662
1663 /**
1664  * phy_probe - probe and init a PHY device
1665  * @dev: device to probe and init
1666  *
1667  * Description: Take care of setting up the phy_device structure,
1668  *   set the state to READY (the driver's init function should
1669  *   set it to STARTING if needed).
1670  */
1671 static int phy_probe(struct device *dev)
1672 {
1673         struct phy_device *phydev = to_phy_device(dev);
1674         struct device_driver *drv = phydev->mdio.dev.driver;
1675         struct phy_driver *phydrv = to_phy_driver(drv);
1676         int err = 0;
1677
1678         phydev->drv = phydrv;
1679
1680         /* Disable the interrupt if the PHY doesn't support it
1681          * but the interrupt is still a valid one
1682          */
1683         if (!(phydrv->flags & PHY_HAS_INTERRUPT) &&
1684             phy_interrupt_is_valid(phydev))
1685                 phydev->irq = PHY_POLL;
1686
1687         if (phydrv->flags & PHY_IS_INTERNAL)
1688                 phydev->is_internal = true;
1689
1690         mutex_lock(&phydev->lock);
1691
1692         /* Start out supporting everything. Eventually,
1693          * a controller will attach, and may modify one
1694          * or both of these values
1695          */
1696         phydev->supported = phydrv->features;
1697         of_set_phy_supported(phydev);
1698         phydev->advertising = phydev->supported;
1699
1700         /* Get the EEE modes we want to prohibit. We will ask
1701          * the PHY stop advertising these mode later on
1702          */
1703         of_set_phy_eee_broken(phydev);
1704
1705         /* Set the state to READY by default */
1706         phydev->state = PHY_READY;
1707
1708         if (phydev->drv->probe)
1709                 err = phydev->drv->probe(phydev);
1710
1711         mutex_unlock(&phydev->lock);
1712
1713         return err;
1714 }
1715
1716 static int phy_remove(struct device *dev)
1717 {
1718         struct phy_device *phydev = to_phy_device(dev);
1719
1720         cancel_delayed_work_sync(&phydev->state_queue);
1721
1722         mutex_lock(&phydev->lock);
1723         phydev->state = PHY_DOWN;
1724         mutex_unlock(&phydev->lock);
1725
1726         if (phydev->drv->remove)
1727                 phydev->drv->remove(phydev);
1728         phydev->drv = NULL;
1729
1730         return 0;
1731 }
1732
1733 /**
1734  * phy_driver_register - register a phy_driver with the PHY layer
1735  * @new_driver: new phy_driver to register
1736  * @owner: module owning this PHY
1737  */
1738 int phy_driver_register(struct phy_driver *new_driver, struct module *owner)
1739 {
1740         int retval;
1741
1742         new_driver->mdiodrv.flags |= MDIO_DEVICE_IS_PHY;
1743         new_driver->mdiodrv.driver.name = new_driver->name;
1744         new_driver->mdiodrv.driver.bus = &mdio_bus_type;
1745         new_driver->mdiodrv.driver.probe = phy_probe;
1746         new_driver->mdiodrv.driver.remove = phy_remove;
1747         new_driver->mdiodrv.driver.owner = owner;
1748
1749         retval = driver_register(&new_driver->mdiodrv.driver);
1750         if (retval) {
1751                 pr_err("%s: Error %d in registering driver\n",
1752                        new_driver->name, retval);
1753
1754                 return retval;
1755         }
1756
1757         pr_debug("%s: Registered new driver\n", new_driver->name);
1758
1759         return 0;
1760 }
1761 EXPORT_SYMBOL(phy_driver_register);
1762
1763 int phy_drivers_register(struct phy_driver *new_driver, int n,
1764                          struct module *owner)
1765 {
1766         int i, ret = 0;
1767
1768         for (i = 0; i < n; i++) {
1769                 ret = phy_driver_register(new_driver + i, owner);
1770                 if (ret) {
1771                         while (i-- > 0)
1772                                 phy_driver_unregister(new_driver + i);
1773                         break;
1774                 }
1775         }
1776         return ret;
1777 }
1778 EXPORT_SYMBOL(phy_drivers_register);
1779
1780 void phy_driver_unregister(struct phy_driver *drv)
1781 {
1782         driver_unregister(&drv->mdiodrv.driver);
1783 }
1784 EXPORT_SYMBOL(phy_driver_unregister);
1785
1786 void phy_drivers_unregister(struct phy_driver *drv, int n)
1787 {
1788         int i;
1789
1790         for (i = 0; i < n; i++)
1791                 phy_driver_unregister(drv + i);
1792 }
1793 EXPORT_SYMBOL(phy_drivers_unregister);
1794
1795 static struct phy_driver genphy_driver[] = {
1796 {
1797         .phy_id         = 0xffffffff,
1798         .phy_id_mask    = 0xffffffff,
1799         .name           = "Generic PHY",
1800         .soft_reset     = genphy_no_soft_reset,
1801         .config_init    = genphy_config_init,
1802         .features       = PHY_GBIT_FEATURES | SUPPORTED_MII |
1803                           SUPPORTED_AUI | SUPPORTED_FIBRE |
1804                           SUPPORTED_BNC,
1805         .config_aneg    = genphy_config_aneg,
1806         .aneg_done      = genphy_aneg_done,
1807         .read_status    = genphy_read_status,
1808         .suspend        = genphy_suspend,
1809         .resume         = genphy_resume,
1810 }, {
1811         .phy_id         = 0xffffffff,
1812         .phy_id_mask    = 0xffffffff,
1813         .name           = "Generic 10G PHY",
1814         .soft_reset     = gen10g_soft_reset,
1815         .config_init    = gen10g_config_init,
1816         .features       = 0,
1817         .config_aneg    = gen10g_config_aneg,
1818         .read_status    = gen10g_read_status,
1819         .suspend        = gen10g_suspend,
1820         .resume         = gen10g_resume,
1821 } };
1822
1823 static int __init phy_init(void)
1824 {
1825         int rc;
1826
1827         rc = mdio_bus_init();
1828         if (rc)
1829                 return rc;
1830
1831         rc = phy_drivers_register(genphy_driver,
1832                                   ARRAY_SIZE(genphy_driver), THIS_MODULE);
1833         if (rc)
1834                 mdio_bus_exit();
1835
1836         return rc;
1837 }
1838
1839 static void __exit phy_exit(void)
1840 {
1841         phy_drivers_unregister(genphy_driver,
1842                                ARRAY_SIZE(genphy_driver));
1843         mdio_bus_exit();
1844 }
1845
1846 subsys_initcall(phy_init);
1847 module_exit(phy_exit);