GNU Linux-libre 4.9.337-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         d->driver = NULL;
952 error_put_device:
953         put_device(d);
954         if (ndev_owner != bus->owner)
955                 module_put(bus->owner);
956         return err;
957 }
958 EXPORT_SYMBOL(phy_attach_direct);
959
960 /**
961  * phy_attach - attach a network device to a particular PHY device
962  * @dev: network device to attach
963  * @bus_id: Bus ID of PHY device to attach
964  * @interface: PHY device's interface
965  *
966  * Description: Same as phy_attach_direct() except that a PHY bus_id
967  *     string is passed instead of a pointer to a struct phy_device.
968  */
969 struct phy_device *phy_attach(struct net_device *dev, const char *bus_id,
970                               phy_interface_t interface)
971 {
972         struct bus_type *bus = &mdio_bus_type;
973         struct phy_device *phydev;
974         struct device *d;
975         int rc;
976
977         if (!dev)
978                 return ERR_PTR(-EINVAL);
979
980         /* Search the list of PHY devices on the mdio bus for the
981          * PHY with the requested name
982          */
983         d = bus_find_device_by_name(bus, NULL, bus_id);
984         if (!d) {
985                 pr_err("PHY %s not found\n", bus_id);
986                 return ERR_PTR(-ENODEV);
987         }
988         phydev = to_phy_device(d);
989
990         rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
991         put_device(d);
992         if (rc)
993                 return ERR_PTR(rc);
994
995         return phydev;
996 }
997 EXPORT_SYMBOL(phy_attach);
998
999 /**
1000  * phy_detach - detach a PHY device from its network device
1001  * @phydev: target phy_device struct
1002  *
1003  * This detaches the phy device from its network device and the phy
1004  * driver, and drops the reference count taken in phy_attach_direct().
1005  */
1006 void phy_detach(struct phy_device *phydev)
1007 {
1008         struct net_device *dev = phydev->attached_dev;
1009         struct module *ndev_owner = dev->dev.parent->driver->owner;
1010         struct mii_bus *bus;
1011         int i;
1012
1013         phydev->attached_dev->phydev = NULL;
1014         phydev->attached_dev = NULL;
1015         phy_suspend(phydev);
1016
1017         if (phydev->mdio.dev.driver)
1018                 module_put(phydev->mdio.dev.driver->owner);
1019
1020         /* If the device had no specific driver before (i.e. - it
1021          * was using the generic driver), we unbind the device
1022          * from the generic driver so that there's a chance a
1023          * real driver could be loaded
1024          */
1025         for (i = 0; i < ARRAY_SIZE(genphy_driver); i++) {
1026                 if (phydev->mdio.dev.driver ==
1027                     &genphy_driver[i].mdiodrv.driver) {
1028                         device_release_driver(&phydev->mdio.dev);
1029                         break;
1030                 }
1031         }
1032
1033         /*
1034          * The phydev might go away on the put_device() below, so avoid
1035          * a use-after-free bug by reading the underlying bus first.
1036          */
1037         bus = phydev->mdio.bus;
1038
1039         put_device(&phydev->mdio.dev);
1040         if (ndev_owner != bus->owner)
1041                 module_put(bus->owner);
1042 }
1043 EXPORT_SYMBOL(phy_detach);
1044
1045 int phy_suspend(struct phy_device *phydev)
1046 {
1047         struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
1048         struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
1049         int ret = 0;
1050
1051         /* If the device has WOL enabled, we cannot suspend the PHY */
1052         phy_ethtool_get_wol(phydev, &wol);
1053         if (wol.wolopts)
1054                 return -EBUSY;
1055
1056         if (phydrv->suspend)
1057                 ret = phydrv->suspend(phydev);
1058
1059         if (ret)
1060                 return ret;
1061
1062         phydev->suspended = true;
1063
1064         return ret;
1065 }
1066 EXPORT_SYMBOL(phy_suspend);
1067
1068 int phy_resume(struct phy_device *phydev)
1069 {
1070         struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
1071         int ret = 0;
1072
1073         if (phydrv->resume)
1074                 ret = phydrv->resume(phydev);
1075
1076         if (ret)
1077                 return ret;
1078
1079         phydev->suspended = false;
1080
1081         return ret;
1082 }
1083 EXPORT_SYMBOL(phy_resume);
1084
1085 /* Generic PHY support and helper functions */
1086
1087 /**
1088  * genphy_config_advert - sanitize and advertise auto-negotiation parameters
1089  * @phydev: target phy_device struct
1090  *
1091  * Description: Writes MII_ADVERTISE with the appropriate values,
1092  *   after sanitizing the values to make sure we only advertise
1093  *   what is supported.  Returns < 0 on error, 0 if the PHY's advertisement
1094  *   hasn't changed, and > 0 if it has changed.
1095  */
1096 static int genphy_config_advert(struct phy_device *phydev)
1097 {
1098         u32 advertise;
1099         int oldadv, adv, bmsr;
1100         int err, changed = 0;
1101
1102         /* Only allow advertising what this PHY supports */
1103         phydev->advertising &= phydev->supported;
1104         advertise = phydev->advertising;
1105
1106         /* Setup standard advertisement */
1107         adv = phy_read(phydev, MII_ADVERTISE);
1108         if (adv < 0)
1109                 return adv;
1110
1111         oldadv = adv;
1112         adv &= ~(ADVERTISE_ALL | ADVERTISE_100BASE4 | ADVERTISE_PAUSE_CAP |
1113                  ADVERTISE_PAUSE_ASYM);
1114         adv |= ethtool_adv_to_mii_adv_t(advertise);
1115
1116         if (adv != oldadv) {
1117                 err = phy_write(phydev, MII_ADVERTISE, adv);
1118
1119                 if (err < 0)
1120                         return err;
1121                 changed = 1;
1122         }
1123
1124         bmsr = phy_read(phydev, MII_BMSR);
1125         if (bmsr < 0)
1126                 return bmsr;
1127
1128         /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
1129          * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
1130          * logical 1.
1131          */
1132         if (!(bmsr & BMSR_ESTATEN))
1133                 return changed;
1134
1135         /* Configure gigabit if it's supported */
1136         adv = phy_read(phydev, MII_CTRL1000);
1137         if (adv < 0)
1138                 return adv;
1139
1140         oldadv = adv;
1141         adv &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1142
1143         if (phydev->supported & (SUPPORTED_1000baseT_Half |
1144                                  SUPPORTED_1000baseT_Full)) {
1145                 adv |= ethtool_adv_to_mii_ctrl1000_t(advertise);
1146         }
1147
1148         if (adv != oldadv)
1149                 changed = 1;
1150
1151         err = phy_write(phydev, MII_CTRL1000, adv);
1152         if (err < 0)
1153                 return err;
1154
1155         return changed;
1156 }
1157
1158 /**
1159  * genphy_config_eee_advert - disable unwanted eee mode advertisement
1160  * @phydev: target phy_device struct
1161  *
1162  * Description: Writes MDIO_AN_EEE_ADV after disabling unsupported energy
1163  *   efficent ethernet modes. Returns 0 if the PHY's advertisement hasn't
1164  *   changed, and 1 if it has changed.
1165  */
1166 static int genphy_config_eee_advert(struct phy_device *phydev)
1167 {
1168         int broken = phydev->eee_broken_modes;
1169         int old_adv, adv;
1170
1171         /* Nothing to disable */
1172         if (!broken)
1173                 return 0;
1174
1175         /* If the following call fails, we assume that EEE is not
1176          * supported by the phy. If we read 0, EEE is not advertised
1177          * In both case, we don't need to continue
1178          */
1179         adv = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_ADV, MDIO_MMD_AN);
1180         if (adv <= 0)
1181                 return 0;
1182
1183         old_adv = adv;
1184         adv &= ~broken;
1185
1186         /* Advertising remains unchanged with the broken mask */
1187         if (old_adv == adv)
1188                 return 0;
1189
1190         phy_write_mmd_indirect(phydev, MDIO_AN_EEE_ADV, MDIO_MMD_AN, adv);
1191
1192         return 1;
1193 }
1194
1195 /**
1196  * genphy_setup_forced - configures/forces speed/duplex from @phydev
1197  * @phydev: target phy_device struct
1198  *
1199  * Description: Configures MII_BMCR to force speed/duplex
1200  *   to the values in phydev. Assumes that the values are valid.
1201  *   Please see phy_sanitize_settings().
1202  */
1203 int genphy_setup_forced(struct phy_device *phydev)
1204 {
1205         int ctl = phy_read(phydev, MII_BMCR);
1206
1207         ctl &= BMCR_LOOPBACK | BMCR_ISOLATE | BMCR_PDOWN;
1208         phydev->pause = 0;
1209         phydev->asym_pause = 0;
1210
1211         if (SPEED_1000 == phydev->speed)
1212                 ctl |= BMCR_SPEED1000;
1213         else if (SPEED_100 == phydev->speed)
1214                 ctl |= BMCR_SPEED100;
1215
1216         if (DUPLEX_FULL == phydev->duplex)
1217                 ctl |= BMCR_FULLDPLX;
1218
1219         return phy_write(phydev, MII_BMCR, ctl);
1220 }
1221 EXPORT_SYMBOL(genphy_setup_forced);
1222
1223 /**
1224  * genphy_restart_aneg - Enable and Restart Autonegotiation
1225  * @phydev: target phy_device struct
1226  */
1227 int genphy_restart_aneg(struct phy_device *phydev)
1228 {
1229         int ctl = phy_read(phydev, MII_BMCR);
1230
1231         if (ctl < 0)
1232                 return ctl;
1233
1234         ctl |= BMCR_ANENABLE | BMCR_ANRESTART;
1235
1236         /* Don't isolate the PHY if we're negotiating */
1237         ctl &= ~BMCR_ISOLATE;
1238
1239         return phy_write(phydev, MII_BMCR, ctl);
1240 }
1241 EXPORT_SYMBOL(genphy_restart_aneg);
1242
1243 /**
1244  * genphy_config_aneg - restart auto-negotiation or write BMCR
1245  * @phydev: target phy_device struct
1246  *
1247  * Description: If auto-negotiation is enabled, we configure the
1248  *   advertising, and then restart auto-negotiation.  If it is not
1249  *   enabled, then we write the BMCR.
1250  */
1251 int genphy_config_aneg(struct phy_device *phydev)
1252 {
1253         int err, changed;
1254
1255         changed = genphy_config_eee_advert(phydev);
1256
1257         if (AUTONEG_ENABLE != phydev->autoneg)
1258                 return genphy_setup_forced(phydev);
1259
1260         err = genphy_config_advert(phydev);
1261         if (err < 0) /* error */
1262                 return err;
1263
1264         changed |= err;
1265
1266         if (changed == 0) {
1267                 /* Advertisement hasn't changed, but maybe aneg was never on to
1268                  * begin with?  Or maybe phy was isolated?
1269                  */
1270                 int ctl = phy_read(phydev, MII_BMCR);
1271
1272                 if (ctl < 0)
1273                         return ctl;
1274
1275                 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
1276                         changed = 1; /* do restart aneg */
1277         }
1278
1279         /* Only restart aneg if we are advertising something different
1280          * than we were before.
1281          */
1282         if (changed > 0)
1283                 return genphy_restart_aneg(phydev);
1284
1285         return 0;
1286 }
1287 EXPORT_SYMBOL(genphy_config_aneg);
1288
1289 /**
1290  * genphy_aneg_done - return auto-negotiation status
1291  * @phydev: target phy_device struct
1292  *
1293  * Description: Reads the status register and returns 0 either if
1294  *   auto-negotiation is incomplete, or if there was an error.
1295  *   Returns BMSR_ANEGCOMPLETE if auto-negotiation is done.
1296  */
1297 int genphy_aneg_done(struct phy_device *phydev)
1298 {
1299         int retval = phy_read(phydev, MII_BMSR);
1300
1301         return (retval < 0) ? retval : (retval & BMSR_ANEGCOMPLETE);
1302 }
1303 EXPORT_SYMBOL(genphy_aneg_done);
1304
1305 static int gen10g_config_aneg(struct phy_device *phydev)
1306 {
1307         return 0;
1308 }
1309
1310 /**
1311  * genphy_update_link - update link status in @phydev
1312  * @phydev: target phy_device struct
1313  *
1314  * Description: Update the value in phydev->link to reflect the
1315  *   current link value.  In order to do this, we need to read
1316  *   the status register twice, keeping the second value.
1317  */
1318 int genphy_update_link(struct phy_device *phydev)
1319 {
1320         int status;
1321
1322         /* Do a fake read */
1323         status = phy_read(phydev, MII_BMSR);
1324         if (status < 0)
1325                 return status;
1326
1327         /* Read link and autonegotiation status */
1328         status = phy_read(phydev, MII_BMSR);
1329         if (status < 0)
1330                 return status;
1331
1332         if ((status & BMSR_LSTATUS) == 0)
1333                 phydev->link = 0;
1334         else
1335                 phydev->link = 1;
1336
1337         return 0;
1338 }
1339 EXPORT_SYMBOL(genphy_update_link);
1340
1341 /**
1342  * genphy_read_status - check the link status and update current link state
1343  * @phydev: target phy_device struct
1344  *
1345  * Description: Check the link, then figure out the current state
1346  *   by comparing what we advertise with what the link partner
1347  *   advertises.  Start by checking the gigabit possibilities,
1348  *   then move on to 10/100.
1349  */
1350 int genphy_read_status(struct phy_device *phydev)
1351 {
1352         int adv;
1353         int err;
1354         int lpa;
1355         int lpagb = 0;
1356         int common_adv;
1357         int common_adv_gb = 0;
1358
1359         /* Update the link, but return if there was an error */
1360         err = genphy_update_link(phydev);
1361         if (err)
1362                 return err;
1363
1364         phydev->lp_advertising = 0;
1365
1366         if (AUTONEG_ENABLE == phydev->autoneg) {
1367                 if (phydev->supported & (SUPPORTED_1000baseT_Half
1368                                         | SUPPORTED_1000baseT_Full)) {
1369                         lpagb = phy_read(phydev, MII_STAT1000);
1370                         if (lpagb < 0)
1371                                 return lpagb;
1372
1373                         adv = phy_read(phydev, MII_CTRL1000);
1374                         if (adv < 0)
1375                                 return adv;
1376
1377                         phydev->lp_advertising =
1378                                 mii_stat1000_to_ethtool_lpa_t(lpagb);
1379                         common_adv_gb = lpagb & adv << 2;
1380                 }
1381
1382                 lpa = phy_read(phydev, MII_LPA);
1383                 if (lpa < 0)
1384                         return lpa;
1385
1386                 phydev->lp_advertising |= mii_lpa_to_ethtool_lpa_t(lpa);
1387
1388                 adv = phy_read(phydev, MII_ADVERTISE);
1389                 if (adv < 0)
1390                         return adv;
1391
1392                 common_adv = lpa & adv;
1393
1394                 phydev->speed = SPEED_10;
1395                 phydev->duplex = DUPLEX_HALF;
1396                 phydev->pause = 0;
1397                 phydev->asym_pause = 0;
1398
1399                 if (common_adv_gb & (LPA_1000FULL | LPA_1000HALF)) {
1400                         phydev->speed = SPEED_1000;
1401
1402                         if (common_adv_gb & LPA_1000FULL)
1403                                 phydev->duplex = DUPLEX_FULL;
1404                 } else if (common_adv & (LPA_100FULL | LPA_100HALF)) {
1405                         phydev->speed = SPEED_100;
1406
1407                         if (common_adv & LPA_100FULL)
1408                                 phydev->duplex = DUPLEX_FULL;
1409                 } else
1410                         if (common_adv & LPA_10FULL)
1411                                 phydev->duplex = DUPLEX_FULL;
1412
1413                 if (phydev->duplex == DUPLEX_FULL) {
1414                         phydev->pause = lpa & LPA_PAUSE_CAP ? 1 : 0;
1415                         phydev->asym_pause = lpa & LPA_PAUSE_ASYM ? 1 : 0;
1416                 }
1417         } else {
1418                 int bmcr = phy_read(phydev, MII_BMCR);
1419
1420                 if (bmcr < 0)
1421                         return bmcr;
1422
1423                 if (bmcr & BMCR_FULLDPLX)
1424                         phydev->duplex = DUPLEX_FULL;
1425                 else
1426                         phydev->duplex = DUPLEX_HALF;
1427
1428                 if (bmcr & BMCR_SPEED1000)
1429                         phydev->speed = SPEED_1000;
1430                 else if (bmcr & BMCR_SPEED100)
1431                         phydev->speed = SPEED_100;
1432                 else
1433                         phydev->speed = SPEED_10;
1434
1435                 phydev->pause = 0;
1436                 phydev->asym_pause = 0;
1437         }
1438
1439         return 0;
1440 }
1441 EXPORT_SYMBOL(genphy_read_status);
1442
1443 static int gen10g_read_status(struct phy_device *phydev)
1444 {
1445         int devad, reg;
1446         u32 mmd_mask = phydev->c45_ids.devices_in_package;
1447
1448         phydev->link = 1;
1449
1450         /* For now just lie and say it's 10G all the time */
1451         phydev->speed = SPEED_10000;
1452         phydev->duplex = DUPLEX_FULL;
1453
1454         for (devad = 0; mmd_mask; devad++, mmd_mask = mmd_mask >> 1) {
1455                 if (!(mmd_mask & 1))
1456                         continue;
1457
1458                 /* Read twice because link state is latched and a
1459                  * read moves the current state into the register
1460                  */
1461                 phy_read_mmd(phydev, devad, MDIO_STAT1);
1462                 reg = phy_read_mmd(phydev, devad, MDIO_STAT1);
1463                 if (reg < 0 || !(reg & MDIO_STAT1_LSTATUS))
1464                         phydev->link = 0;
1465         }
1466
1467         return 0;
1468 }
1469
1470 /**
1471  * genphy_soft_reset - software reset the PHY via BMCR_RESET bit
1472  * @phydev: target phy_device struct
1473  *
1474  * Description: Perform a software PHY reset using the standard
1475  * BMCR_RESET bit and poll for the reset bit to be cleared.
1476  *
1477  * Returns: 0 on success, < 0 on failure
1478  */
1479 int genphy_soft_reset(struct phy_device *phydev)
1480 {
1481         int ret;
1482
1483         ret = phy_write(phydev, MII_BMCR, BMCR_RESET);
1484         if (ret < 0)
1485                 return ret;
1486
1487         return phy_poll_reset(phydev);
1488 }
1489 EXPORT_SYMBOL(genphy_soft_reset);
1490
1491 int genphy_config_init(struct phy_device *phydev)
1492 {
1493         int val;
1494         u32 features;
1495
1496         features = (SUPPORTED_TP | SUPPORTED_MII
1497                         | SUPPORTED_AUI | SUPPORTED_FIBRE |
1498                         SUPPORTED_BNC | SUPPORTED_Pause | SUPPORTED_Asym_Pause);
1499
1500         /* Do we support autonegotiation? */
1501         val = phy_read(phydev, MII_BMSR);
1502         if (val < 0)
1503                 return val;
1504
1505         if (val & BMSR_ANEGCAPABLE)
1506                 features |= SUPPORTED_Autoneg;
1507
1508         if (val & BMSR_100FULL)
1509                 features |= SUPPORTED_100baseT_Full;
1510         if (val & BMSR_100HALF)
1511                 features |= SUPPORTED_100baseT_Half;
1512         if (val & BMSR_10FULL)
1513                 features |= SUPPORTED_10baseT_Full;
1514         if (val & BMSR_10HALF)
1515                 features |= SUPPORTED_10baseT_Half;
1516
1517         if (val & BMSR_ESTATEN) {
1518                 val = phy_read(phydev, MII_ESTATUS);
1519                 if (val < 0)
1520                         return val;
1521
1522                 if (val & ESTATUS_1000_TFULL)
1523                         features |= SUPPORTED_1000baseT_Full;
1524                 if (val & ESTATUS_1000_THALF)
1525                         features |= SUPPORTED_1000baseT_Half;
1526         }
1527
1528         phydev->supported &= features;
1529         phydev->advertising &= features;
1530
1531         return 0;
1532 }
1533
1534 static int gen10g_soft_reset(struct phy_device *phydev)
1535 {
1536         /* Do nothing for now */
1537         return 0;
1538 }
1539 EXPORT_SYMBOL(genphy_config_init);
1540
1541 static int gen10g_config_init(struct phy_device *phydev)
1542 {
1543         /* Temporarily just say we support everything */
1544         phydev->supported = SUPPORTED_10000baseT_Full;
1545         phydev->advertising = SUPPORTED_10000baseT_Full;
1546
1547         return 0;
1548 }
1549
1550 int genphy_suspend(struct phy_device *phydev)
1551 {
1552         int value;
1553
1554         mutex_lock(&phydev->lock);
1555
1556         value = phy_read(phydev, MII_BMCR);
1557         phy_write(phydev, MII_BMCR, value | BMCR_PDOWN);
1558
1559         mutex_unlock(&phydev->lock);
1560
1561         return 0;
1562 }
1563 EXPORT_SYMBOL(genphy_suspend);
1564
1565 static int gen10g_suspend(struct phy_device *phydev)
1566 {
1567         return 0;
1568 }
1569
1570 int genphy_resume(struct phy_device *phydev)
1571 {
1572         int value;
1573
1574         mutex_lock(&phydev->lock);
1575
1576         value = phy_read(phydev, MII_BMCR);
1577         phy_write(phydev, MII_BMCR, value & ~BMCR_PDOWN);
1578
1579         mutex_unlock(&phydev->lock);
1580
1581         return 0;
1582 }
1583 EXPORT_SYMBOL(genphy_resume);
1584
1585 static int gen10g_resume(struct phy_device *phydev)
1586 {
1587         return 0;
1588 }
1589
1590 static int __set_phy_supported(struct phy_device *phydev, u32 max_speed)
1591 {
1592         switch (max_speed) {
1593         case SPEED_10:
1594                 phydev->supported &= ~PHY_100BT_FEATURES;
1595                 /* fall through */
1596         case SPEED_100:
1597                 phydev->supported &= ~PHY_1000BT_FEATURES;
1598                 break;
1599         case SPEED_1000:
1600                 break;
1601         default:
1602                 return -ENOTSUPP;
1603         }
1604
1605         return 0;
1606 }
1607
1608 int phy_set_max_speed(struct phy_device *phydev, u32 max_speed)
1609 {
1610         int err;
1611
1612         err = __set_phy_supported(phydev, max_speed);
1613         if (err)
1614                 return err;
1615
1616         phydev->advertising = phydev->supported;
1617
1618         return 0;
1619 }
1620 EXPORT_SYMBOL(phy_set_max_speed);
1621
1622 static void of_set_phy_supported(struct phy_device *phydev)
1623 {
1624         struct device_node *node = phydev->mdio.dev.of_node;
1625         u32 max_speed;
1626
1627         if (!IS_ENABLED(CONFIG_OF_MDIO))
1628                 return;
1629
1630         if (!node)
1631                 return;
1632
1633         if (!of_property_read_u32(node, "max-speed", &max_speed))
1634                 __set_phy_supported(phydev, max_speed);
1635 }
1636
1637 static void of_set_phy_eee_broken(struct phy_device *phydev)
1638 {
1639         struct device_node *node = phydev->mdio.dev.of_node;
1640         u32 broken = 0;
1641
1642         if (!IS_ENABLED(CONFIG_OF_MDIO))
1643                 return;
1644
1645         if (!node)
1646                 return;
1647
1648         if (of_property_read_bool(node, "eee-broken-100tx"))
1649                 broken |= MDIO_EEE_100TX;
1650         if (of_property_read_bool(node, "eee-broken-1000t"))
1651                 broken |= MDIO_EEE_1000T;
1652         if (of_property_read_bool(node, "eee-broken-10gt"))
1653                 broken |= MDIO_EEE_10GT;
1654         if (of_property_read_bool(node, "eee-broken-1000kx"))
1655                 broken |= MDIO_EEE_1000KX;
1656         if (of_property_read_bool(node, "eee-broken-10gkx4"))
1657                 broken |= MDIO_EEE_10GKX4;
1658         if (of_property_read_bool(node, "eee-broken-10gkr"))
1659                 broken |= MDIO_EEE_10GKR;
1660
1661         phydev->eee_broken_modes = broken;
1662 }
1663
1664 /**
1665  * phy_probe - probe and init a PHY device
1666  * @dev: device to probe and init
1667  *
1668  * Description: Take care of setting up the phy_device structure,
1669  *   set the state to READY (the driver's init function should
1670  *   set it to STARTING if needed).
1671  */
1672 static int phy_probe(struct device *dev)
1673 {
1674         struct phy_device *phydev = to_phy_device(dev);
1675         struct device_driver *drv = phydev->mdio.dev.driver;
1676         struct phy_driver *phydrv = to_phy_driver(drv);
1677         int err = 0;
1678
1679         phydev->drv = phydrv;
1680
1681         /* Disable the interrupt if the PHY doesn't support it
1682          * but the interrupt is still a valid one
1683          */
1684         if (!(phydrv->flags & PHY_HAS_INTERRUPT) &&
1685             phy_interrupt_is_valid(phydev))
1686                 phydev->irq = PHY_POLL;
1687
1688         if (phydrv->flags & PHY_IS_INTERNAL)
1689                 phydev->is_internal = true;
1690
1691         mutex_lock(&phydev->lock);
1692
1693         /* Start out supporting everything. Eventually,
1694          * a controller will attach, and may modify one
1695          * or both of these values
1696          */
1697         phydev->supported = phydrv->features;
1698         of_set_phy_supported(phydev);
1699         phydev->advertising = phydev->supported;
1700
1701         /* Get the EEE modes we want to prohibit. We will ask
1702          * the PHY stop advertising these mode later on
1703          */
1704         of_set_phy_eee_broken(phydev);
1705
1706         /* Set the state to READY by default */
1707         phydev->state = PHY_READY;
1708
1709         if (phydev->drv->probe)
1710                 err = phydev->drv->probe(phydev);
1711
1712         mutex_unlock(&phydev->lock);
1713
1714         return err;
1715 }
1716
1717 static int phy_remove(struct device *dev)
1718 {
1719         struct phy_device *phydev = to_phy_device(dev);
1720
1721         cancel_delayed_work_sync(&phydev->state_queue);
1722
1723         mutex_lock(&phydev->lock);
1724         phydev->state = PHY_DOWN;
1725         mutex_unlock(&phydev->lock);
1726
1727         if (phydev->drv->remove)
1728                 phydev->drv->remove(phydev);
1729         phydev->drv = NULL;
1730
1731         return 0;
1732 }
1733
1734 /**
1735  * phy_driver_register - register a phy_driver with the PHY layer
1736  * @new_driver: new phy_driver to register
1737  * @owner: module owning this PHY
1738  */
1739 int phy_driver_register(struct phy_driver *new_driver, struct module *owner)
1740 {
1741         int retval;
1742
1743         new_driver->mdiodrv.flags |= MDIO_DEVICE_IS_PHY;
1744         new_driver->mdiodrv.driver.name = new_driver->name;
1745         new_driver->mdiodrv.driver.bus = &mdio_bus_type;
1746         new_driver->mdiodrv.driver.probe = phy_probe;
1747         new_driver->mdiodrv.driver.remove = phy_remove;
1748         new_driver->mdiodrv.driver.owner = owner;
1749
1750         retval = driver_register(&new_driver->mdiodrv.driver);
1751         if (retval) {
1752                 pr_err("%s: Error %d in registering driver\n",
1753                        new_driver->name, retval);
1754
1755                 return retval;
1756         }
1757
1758         pr_debug("%s: Registered new driver\n", new_driver->name);
1759
1760         return 0;
1761 }
1762 EXPORT_SYMBOL(phy_driver_register);
1763
1764 int phy_drivers_register(struct phy_driver *new_driver, int n,
1765                          struct module *owner)
1766 {
1767         int i, ret = 0;
1768
1769         for (i = 0; i < n; i++) {
1770                 ret = phy_driver_register(new_driver + i, owner);
1771                 if (ret) {
1772                         while (i-- > 0)
1773                                 phy_driver_unregister(new_driver + i);
1774                         break;
1775                 }
1776         }
1777         return ret;
1778 }
1779 EXPORT_SYMBOL(phy_drivers_register);
1780
1781 void phy_driver_unregister(struct phy_driver *drv)
1782 {
1783         driver_unregister(&drv->mdiodrv.driver);
1784 }
1785 EXPORT_SYMBOL(phy_driver_unregister);
1786
1787 void phy_drivers_unregister(struct phy_driver *drv, int n)
1788 {
1789         int i;
1790
1791         for (i = 0; i < n; i++)
1792                 phy_driver_unregister(drv + i);
1793 }
1794 EXPORT_SYMBOL(phy_drivers_unregister);
1795
1796 static struct phy_driver genphy_driver[] = {
1797 {
1798         .phy_id         = 0xffffffff,
1799         .phy_id_mask    = 0xffffffff,
1800         .name           = "Generic PHY",
1801         .soft_reset     = genphy_no_soft_reset,
1802         .config_init    = genphy_config_init,
1803         .features       = PHY_GBIT_FEATURES | SUPPORTED_MII |
1804                           SUPPORTED_AUI | SUPPORTED_FIBRE |
1805                           SUPPORTED_BNC,
1806         .config_aneg    = genphy_config_aneg,
1807         .aneg_done      = genphy_aneg_done,
1808         .read_status    = genphy_read_status,
1809         .suspend        = genphy_suspend,
1810         .resume         = genphy_resume,
1811 }, {
1812         .phy_id         = 0xffffffff,
1813         .phy_id_mask    = 0xffffffff,
1814         .name           = "Generic 10G PHY",
1815         .soft_reset     = gen10g_soft_reset,
1816         .config_init    = gen10g_config_init,
1817         .features       = 0,
1818         .config_aneg    = gen10g_config_aneg,
1819         .read_status    = gen10g_read_status,
1820         .suspend        = gen10g_suspend,
1821         .resume         = gen10g_resume,
1822 } };
1823
1824 static int __init phy_init(void)
1825 {
1826         int rc;
1827
1828         rc = mdio_bus_init();
1829         if (rc)
1830                 return rc;
1831
1832         rc = phy_drivers_register(genphy_driver,
1833                                   ARRAY_SIZE(genphy_driver), THIS_MODULE);
1834         if (rc)
1835                 mdio_bus_exit();
1836
1837         return rc;
1838 }
1839
1840 static void __exit phy_exit(void)
1841 {
1842         phy_drivers_unregister(genphy_driver,
1843                                ARRAY_SIZE(genphy_driver));
1844         mdio_bus_exit();
1845 }
1846
1847 subsys_initcall(phy_init);
1848 module_exit(phy_exit);