5f9ee61a4ab58a8fde3eb6941f7bb6ea48bca07a
[deliverable/linux.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/io.h>
34 #include <linux/uaccess.h>
35
36 #include <asm/irq.h>
37
38 MODULE_DESCRIPTION("PHY library");
39 MODULE_AUTHOR("Andy Fleming");
40 MODULE_LICENSE("GPL");
41
42 void phy_device_free(struct phy_device *phydev)
43 {
44 put_device(&phydev->dev);
45 }
46 EXPORT_SYMBOL(phy_device_free);
47
48 static void phy_device_release(struct device *dev)
49 {
50 kfree(to_phy_device(dev));
51 }
52
53 static struct phy_driver genphy_driver;
54
55 static LIST_HEAD(phy_fixup_list);
56 static DEFINE_MUTEX(phy_fixup_lock);
57
58 static int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,
59 u32 flags, phy_interface_t interface);
60
61 /**
62 * phy_register_fixup - creates a new phy_fixup and adds it to the list
63 * @bus_id: A string which matches phydev->dev.bus_id (or PHY_ANY_ID)
64 * @phy_uid: Used to match against phydev->phy_id (the UID of the PHY)
65 * It can also be PHY_ANY_UID
66 * @phy_uid_mask: Applied to phydev->phy_id and fixup->phy_uid before
67 * comparison
68 * @run: The actual code to be run when a matching PHY is found
69 */
70 int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
71 int (*run)(struct phy_device *))
72 {
73 struct phy_fixup *fixup;
74
75 fixup = kzalloc(sizeof(*fixup), GFP_KERNEL);
76 if (!fixup)
77 return -ENOMEM;
78
79 strlcpy(fixup->bus_id, bus_id, sizeof(fixup->bus_id));
80 fixup->phy_uid = phy_uid;
81 fixup->phy_uid_mask = phy_uid_mask;
82 fixup->run = run;
83
84 mutex_lock(&phy_fixup_lock);
85 list_add_tail(&fixup->list, &phy_fixup_list);
86 mutex_unlock(&phy_fixup_lock);
87
88 return 0;
89 }
90 EXPORT_SYMBOL(phy_register_fixup);
91
92 /* Registers a fixup to be run on any PHY with the UID in phy_uid */
93 int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask,
94 int (*run)(struct phy_device *))
95 {
96 return phy_register_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask, run);
97 }
98 EXPORT_SYMBOL(phy_register_fixup_for_uid);
99
100 /* Registers a fixup to be run on the PHY with id string bus_id */
101 int phy_register_fixup_for_id(const char *bus_id,
102 int (*run)(struct phy_device *))
103 {
104 return phy_register_fixup(bus_id, PHY_ANY_UID, 0xffffffff, run);
105 }
106 EXPORT_SYMBOL(phy_register_fixup_for_id);
107
108 /* Returns 1 if fixup matches phydev in bus_id and phy_uid.
109 * Fixups can be set to match any in one or more fields.
110 */
111 static int phy_needs_fixup(struct phy_device *phydev, struct phy_fixup *fixup)
112 {
113 if (strcmp(fixup->bus_id, dev_name(&phydev->dev)) != 0)
114 if (strcmp(fixup->bus_id, PHY_ANY_ID) != 0)
115 return 0;
116
117 if ((fixup->phy_uid & fixup->phy_uid_mask) !=
118 (phydev->phy_id & fixup->phy_uid_mask))
119 if (fixup->phy_uid != PHY_ANY_UID)
120 return 0;
121
122 return 1;
123 }
124
125 /* Runs any matching fixups for this phydev */
126 int phy_scan_fixups(struct phy_device *phydev)
127 {
128 struct phy_fixup *fixup;
129
130 mutex_lock(&phy_fixup_lock);
131 list_for_each_entry(fixup, &phy_fixup_list, list) {
132 if (phy_needs_fixup(phydev, fixup)) {
133 int err;
134
135 err = fixup->run(phydev);
136
137 if (err < 0) {
138 mutex_unlock(&phy_fixup_lock);
139 return err;
140 }
141 }
142 }
143 mutex_unlock(&phy_fixup_lock);
144
145 return 0;
146 }
147 EXPORT_SYMBOL(phy_scan_fixups);
148
149 struct phy_device *phy_device_create(struct mii_bus *bus, int addr, int phy_id,
150 bool is_c45,
151 struct phy_c45_device_ids *c45_ids)
152 {
153 struct phy_device *dev;
154
155 /* We allocate the device, and initialize the default values */
156 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
157
158 if (NULL == dev)
159 return (struct phy_device *)PTR_ERR((void *)-ENOMEM);
160
161 dev->dev.release = phy_device_release;
162
163 dev->speed = 0;
164 dev->duplex = -1;
165 dev->pause = 0;
166 dev->asym_pause = 0;
167 dev->link = 1;
168 dev->interface = PHY_INTERFACE_MODE_GMII;
169
170 dev->autoneg = AUTONEG_ENABLE;
171
172 dev->is_c45 = is_c45;
173 dev->addr = addr;
174 dev->phy_id = phy_id;
175 if (c45_ids)
176 dev->c45_ids = *c45_ids;
177 dev->bus = bus;
178 dev->dev.parent = bus->parent;
179 dev->dev.bus = &mdio_bus_type;
180 dev->irq = bus->irq != NULL ? bus->irq[addr] : PHY_POLL;
181 dev_set_name(&dev->dev, PHY_ID_FMT, bus->id, addr);
182
183 dev->state = PHY_DOWN;
184
185 mutex_init(&dev->lock);
186 INIT_DELAYED_WORK(&dev->state_queue, phy_state_machine);
187 INIT_WORK(&dev->phy_queue, phy_change);
188
189 /* Request the appropriate module unconditionally; don't
190 * bother trying to do so only if it isn't already loaded,
191 * because that gets complicated. A hotplug event would have
192 * done an unconditional modprobe anyway.
193 * We don't do normal hotplug because it won't work for MDIO
194 * -- because it relies on the device staying around for long
195 * enough for the driver to get loaded. With MDIO, the NIC
196 * driver will get bored and give up as soon as it finds that
197 * there's no driver _already_ loaded.
198 */
199 request_module(MDIO_MODULE_PREFIX MDIO_ID_FMT, MDIO_ID_ARGS(phy_id));
200
201 device_initialize(&dev->dev);
202
203 return dev;
204 }
205 EXPORT_SYMBOL(phy_device_create);
206
207 /**
208 * get_phy_c45_ids - reads the specified addr for its 802.3-c45 IDs.
209 * @bus: the target MII bus
210 * @addr: PHY address on the MII bus
211 * @phy_id: where to store the ID retrieved.
212 * @c45_ids: where to store the c45 ID information.
213 *
214 * If the PHY devices-in-package appears to be valid, it and the
215 * corresponding identifiers are stored in @c45_ids, zero is stored
216 * in @phy_id. Otherwise 0xffffffff is stored in @phy_id. Returns
217 * zero on success.
218 *
219 */
220 static int get_phy_c45_ids(struct mii_bus *bus, int addr, u32 *phy_id,
221 struct phy_c45_device_ids *c45_ids) {
222 int phy_reg;
223 int i, reg_addr;
224 const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
225
226 /* Find first non-zero Devices In package. Device
227 * zero is reserved, so don't probe it.
228 */
229 for (i = 1;
230 i < num_ids && c45_ids->devices_in_package == 0;
231 i++) {
232 reg_addr = MII_ADDR_C45 | i << 16 | 6;
233 phy_reg = mdiobus_read(bus, addr, reg_addr);
234 if (phy_reg < 0)
235 return -EIO;
236 c45_ids->devices_in_package = (phy_reg & 0xffff) << 16;
237
238 reg_addr = MII_ADDR_C45 | i << 16 | 5;
239 phy_reg = mdiobus_read(bus, addr, reg_addr);
240 if (phy_reg < 0)
241 return -EIO;
242 c45_ids->devices_in_package |= (phy_reg & 0xffff);
243
244 /* If mostly Fs, there is no device there,
245 * let's get out of here.
246 */
247 if ((c45_ids->devices_in_package & 0x1fffffff) == 0x1fffffff) {
248 *phy_id = 0xffffffff;
249 return 0;
250 }
251 }
252
253 /* Now probe Device Identifiers for each device present. */
254 for (i = 1; i < num_ids; i++) {
255 if (!(c45_ids->devices_in_package & (1 << i)))
256 continue;
257
258 reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID1;
259 phy_reg = mdiobus_read(bus, addr, reg_addr);
260 if (phy_reg < 0)
261 return -EIO;
262 c45_ids->device_ids[i] = (phy_reg & 0xffff) << 16;
263
264 reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID2;
265 phy_reg = mdiobus_read(bus, addr, reg_addr);
266 if (phy_reg < 0)
267 return -EIO;
268 c45_ids->device_ids[i] |= (phy_reg & 0xffff);
269 }
270 *phy_id = 0;
271 return 0;
272 }
273
274 /**
275 * get_phy_id - reads the specified addr for its ID.
276 * @bus: the target MII bus
277 * @addr: PHY address on the MII bus
278 * @phy_id: where to store the ID retrieved.
279 * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
280 * @c45_ids: where to store the c45 ID information.
281 *
282 * Description: In the case of a 802.3-c22 PHY, reads the ID registers
283 * of the PHY at @addr on the @bus, stores it in @phy_id and returns
284 * zero on success.
285 *
286 * In the case of a 802.3-c45 PHY, get_phy_c45_ids() is invoked, and
287 * its return value is in turn returned.
288 *
289 */
290 static int get_phy_id(struct mii_bus *bus, int addr, u32 *phy_id,
291 bool is_c45, struct phy_c45_device_ids *c45_ids)
292 {
293 int phy_reg;
294
295 if (is_c45)
296 return get_phy_c45_ids(bus, addr, phy_id, c45_ids);
297
298 /* Grab the bits from PHYIR1, and put them in the upper half */
299 phy_reg = mdiobus_read(bus, addr, MII_PHYSID1);
300
301 if (phy_reg < 0)
302 return -EIO;
303
304 *phy_id = (phy_reg & 0xffff) << 16;
305
306 /* Grab the bits from PHYIR2, and put them in the lower half */
307 phy_reg = mdiobus_read(bus, addr, MII_PHYSID2);
308
309 if (phy_reg < 0)
310 return -EIO;
311
312 *phy_id |= (phy_reg & 0xffff);
313
314 return 0;
315 }
316
317 /**
318 * get_phy_device - reads the specified PHY device and returns its @phy_device
319 * struct
320 * @bus: the target MII bus
321 * @addr: PHY address on the MII bus
322 * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
323 *
324 * Description: Reads the ID registers of the PHY at @addr on the
325 * @bus, then allocates and returns the phy_device to represent it.
326 */
327 struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45)
328 {
329 struct phy_c45_device_ids c45_ids = {0};
330 struct phy_device *dev = NULL;
331 u32 phy_id = 0;
332 int r;
333
334 r = get_phy_id(bus, addr, &phy_id, is_c45, &c45_ids);
335 if (r)
336 return ERR_PTR(r);
337
338 /* If the phy_id is mostly Fs, there is no device there */
339 if ((phy_id & 0x1fffffff) == 0x1fffffff)
340 return NULL;
341
342 dev = phy_device_create(bus, addr, phy_id, is_c45, &c45_ids);
343
344 return dev;
345 }
346 EXPORT_SYMBOL(get_phy_device);
347
348 /**
349 * phy_device_register - Register the phy device on the MDIO bus
350 * @phydev: phy_device structure to be added to the MDIO bus
351 */
352 int phy_device_register(struct phy_device *phydev)
353 {
354 int err;
355
356 /* Don't register a phy if one is already registered at this address */
357 if (phydev->bus->phy_map[phydev->addr])
358 return -EINVAL;
359 phydev->bus->phy_map[phydev->addr] = phydev;
360
361 /* Run all of the fixups for this PHY */
362 err = phy_init_hw(phydev);
363 if (err) {
364 pr_err("PHY %d failed to initialize\n", phydev->addr);
365 goto out;
366 }
367
368 err = device_add(&phydev->dev);
369 if (err) {
370 pr_err("PHY %d failed to add\n", phydev->addr);
371 goto out;
372 }
373
374 return 0;
375
376 out:
377 phydev->bus->phy_map[phydev->addr] = NULL;
378 return err;
379 }
380 EXPORT_SYMBOL(phy_device_register);
381
382 /**
383 * phy_find_first - finds the first PHY device on the bus
384 * @bus: the target MII bus
385 */
386 struct phy_device *phy_find_first(struct mii_bus *bus)
387 {
388 int addr;
389
390 for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
391 if (bus->phy_map[addr])
392 return bus->phy_map[addr];
393 }
394 return NULL;
395 }
396 EXPORT_SYMBOL(phy_find_first);
397
398 /**
399 * phy_prepare_link - prepares the PHY layer to monitor link status
400 * @phydev: target phy_device struct
401 * @handler: callback function for link status change notifications
402 *
403 * Description: Tells the PHY infrastructure to handle the
404 * gory details on monitoring link status (whether through
405 * polling or an interrupt), and to call back to the
406 * connected device driver when the link status changes.
407 * If you want to monitor your own link state, don't call
408 * this function.
409 */
410 static void phy_prepare_link(struct phy_device *phydev,
411 void (*handler)(struct net_device *))
412 {
413 phydev->adjust_link = handler;
414 }
415
416 /**
417 * phy_connect_direct - connect an ethernet device to a specific phy_device
418 * @dev: the network device to connect
419 * @phydev: the pointer to the phy device
420 * @handler: callback function for state change notifications
421 * @interface: PHY device's interface
422 */
423 int phy_connect_direct(struct net_device *dev, struct phy_device *phydev,
424 void (*handler)(struct net_device *),
425 phy_interface_t interface)
426 {
427 int rc;
428
429 rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
430 if (rc)
431 return rc;
432
433 phy_prepare_link(phydev, handler);
434 phy_start_machine(phydev, NULL);
435 if (phydev->irq > 0)
436 phy_start_interrupts(phydev);
437
438 return 0;
439 }
440 EXPORT_SYMBOL(phy_connect_direct);
441
442 /**
443 * phy_connect - connect an ethernet device to a PHY device
444 * @dev: the network device to connect
445 * @bus_id: the id string of the PHY device to connect
446 * @handler: callback function for state change notifications
447 * @interface: PHY device's interface
448 *
449 * Description: Convenience function for connecting ethernet
450 * devices to PHY devices. The default behavior is for
451 * the PHY infrastructure to handle everything, and only notify
452 * the connected driver when the link status changes. If you
453 * don't want, or can't use the provided functionality, you may
454 * choose to call only the subset of functions which provide
455 * the desired functionality.
456 */
457 struct phy_device *phy_connect(struct net_device *dev, const char *bus_id,
458 void (*handler)(struct net_device *),
459 phy_interface_t interface)
460 {
461 struct phy_device *phydev;
462 struct device *d;
463 int rc;
464
465 /* Search the list of PHY devices on the mdio bus for the
466 * PHY with the requested name
467 */
468 d = bus_find_device_by_name(&mdio_bus_type, NULL, bus_id);
469 if (!d) {
470 pr_err("PHY %s not found\n", bus_id);
471 return ERR_PTR(-ENODEV);
472 }
473 phydev = to_phy_device(d);
474
475 rc = phy_connect_direct(dev, phydev, handler, interface);
476 if (rc)
477 return ERR_PTR(rc);
478
479 return phydev;
480 }
481 EXPORT_SYMBOL(phy_connect);
482
483 /**
484 * phy_disconnect - disable interrupts, stop state machine, and detach a PHY
485 * device
486 * @phydev: target phy_device struct
487 */
488 void phy_disconnect(struct phy_device *phydev)
489 {
490 if (phydev->irq > 0)
491 phy_stop_interrupts(phydev);
492
493 phy_stop_machine(phydev);
494
495 phydev->adjust_link = NULL;
496
497 phy_detach(phydev);
498 }
499 EXPORT_SYMBOL(phy_disconnect);
500
501 /**
502 * phy_poll_reset - Safely wait until a PHY reset has properly completed
503 * @phydev: The PHY device to poll
504 *
505 * Description: According to IEEE 802.3, Section 2, Subsection 22.2.4.1.1, as
506 * published in 2008, a PHY reset may take up to 0.5 seconds. The MII BMCR
507 * register must be polled until the BMCR_RESET bit clears.
508 *
509 * Furthermore, any attempts to write to PHY registers may have no effect
510 * or even generate MDIO bus errors until this is complete.
511 *
512 * Some PHYs (such as the Marvell 88E1111) don't entirely conform to the
513 * standard and do not fully reset after the BMCR_RESET bit is set, and may
514 * even *REQUIRE* a soft-reset to properly restart autonegotiation. In an
515 * effort to support such broken PHYs, this function is separate from the
516 * standard phy_init_hw() which will zero all the other bits in the BMCR
517 * and reapply all driver-specific and board-specific fixups.
518 */
519 static int phy_poll_reset(struct phy_device *phydev)
520 {
521 /* Poll until the reset bit clears (50ms per retry == 0.6 sec) */
522 unsigned int retries = 12;
523 int ret;
524
525 do {
526 msleep(50);
527 ret = phy_read(phydev, MII_BMCR);
528 if (ret < 0)
529 return ret;
530 } while (ret & BMCR_RESET && --retries);
531 if (ret & BMCR_RESET)
532 return -ETIMEDOUT;
533
534 /* Some chips (smsc911x) may still need up to another 1ms after the
535 * BMCR_RESET bit is cleared before they are usable.
536 */
537 msleep(1);
538 return 0;
539 }
540
541 int phy_init_hw(struct phy_device *phydev)
542 {
543 int ret;
544
545 if (!phydev->drv || !phydev->drv->config_init)
546 return 0;
547
548 ret = phy_write(phydev, MII_BMCR, BMCR_RESET);
549 if (ret < 0)
550 return ret;
551
552 ret = phy_poll_reset(phydev);
553 if (ret < 0)
554 return ret;
555
556 ret = phy_scan_fixups(phydev);
557 if (ret < 0)
558 return ret;
559
560 return phydev->drv->config_init(phydev);
561 }
562 EXPORT_SYMBOL(phy_init_hw);
563
564 /**
565 * phy_attach_direct - attach a network device to a given PHY device pointer
566 * @dev: network device to attach
567 * @phydev: Pointer to phy_device to attach
568 * @flags: PHY device's dev_flags
569 * @interface: PHY device's interface
570 *
571 * Description: Called by drivers to attach to a particular PHY
572 * device. The phy_device is found, and properly hooked up
573 * to the phy_driver. If no driver is attached, then the
574 * genphy_driver is used. The phy_device is given a ptr to
575 * the attaching device, and given a callback for link status
576 * change. The phy_device is returned to the attaching driver.
577 */
578 static int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,
579 u32 flags, phy_interface_t interface)
580 {
581 struct device *d = &phydev->dev;
582 int err;
583
584 /* Assume that if there is no driver, that it doesn't
585 * exist, and we should use the genphy driver.
586 */
587 if (NULL == d->driver) {
588 if (phydev->is_c45) {
589 pr_err("No driver for phy %x\n", phydev->phy_id);
590 return -ENODEV;
591 }
592
593 d->driver = &genphy_driver.driver;
594
595 err = d->driver->probe(d);
596 if (err >= 0)
597 err = device_bind_driver(d);
598
599 if (err)
600 return err;
601 }
602
603 if (phydev->attached_dev) {
604 dev_err(&dev->dev, "PHY already attached\n");
605 return -EBUSY;
606 }
607
608 phydev->attached_dev = dev;
609 dev->phydev = phydev;
610
611 phydev->dev_flags = flags;
612
613 phydev->interface = interface;
614
615 phydev->state = PHY_READY;
616
617 /* Do initial configuration here, now that
618 * we have certain key parameters
619 * (dev_flags and interface)
620 */
621 err = phy_init_hw(phydev);
622 if (err)
623 phy_detach(phydev);
624
625 phy_resume(phydev);
626
627 return err;
628 }
629
630 /**
631 * phy_attach - attach a network device to a particular PHY device
632 * @dev: network device to attach
633 * @bus_id: Bus ID of PHY device to attach
634 * @interface: PHY device's interface
635 *
636 * Description: Same as phy_attach_direct() except that a PHY bus_id
637 * string is passed instead of a pointer to a struct phy_device.
638 */
639 struct phy_device *phy_attach(struct net_device *dev, const char *bus_id,
640 phy_interface_t interface)
641 {
642 struct bus_type *bus = &mdio_bus_type;
643 struct phy_device *phydev;
644 struct device *d;
645 int rc;
646
647 /* Search the list of PHY devices on the mdio bus for the
648 * PHY with the requested name
649 */
650 d = bus_find_device_by_name(bus, NULL, bus_id);
651 if (!d) {
652 pr_err("PHY %s not found\n", bus_id);
653 return ERR_PTR(-ENODEV);
654 }
655 phydev = to_phy_device(d);
656
657 rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
658 if (rc)
659 return ERR_PTR(rc);
660
661 return phydev;
662 }
663 EXPORT_SYMBOL(phy_attach);
664
665 /**
666 * phy_detach - detach a PHY device from its network device
667 * @phydev: target phy_device struct
668 */
669 void phy_detach(struct phy_device *phydev)
670 {
671 phydev->attached_dev->phydev = NULL;
672 phydev->attached_dev = NULL;
673 phy_suspend(phydev);
674
675 /* If the device had no specific driver before (i.e. - it
676 * was using the generic driver), we unbind the device
677 * from the generic driver so that there's a chance a
678 * real driver could be loaded
679 */
680 if (phydev->dev.driver == &genphy_driver.driver)
681 device_release_driver(&phydev->dev);
682 }
683 EXPORT_SYMBOL(phy_detach);
684
685 int phy_suspend(struct phy_device *phydev)
686 {
687 struct phy_driver *phydrv = to_phy_driver(phydev->dev.driver);
688 struct ethtool_wolinfo wol;
689
690 /* If the device has WOL enabled, we cannot suspend the PHY */
691 wol.cmd = ETHTOOL_GWOL;
692 phy_ethtool_get_wol(phydev, &wol);
693 if (wol.wolopts)
694 return -EBUSY;
695
696 if (phydrv->suspend)
697 return phydrv->suspend(phydev);
698 return 0;
699 }
700
701 int phy_resume(struct phy_device *phydev)
702 {
703 struct phy_driver *phydrv = to_phy_driver(phydev->dev.driver);
704
705 if (phydrv->resume)
706 return phydrv->resume(phydev);
707 return 0;
708 }
709
710 /* Generic PHY support and helper functions */
711
712 /**
713 * genphy_config_advert - sanitize and advertise auto-negotiation parameters
714 * @phydev: target phy_device struct
715 *
716 * Description: Writes MII_ADVERTISE with the appropriate values,
717 * after sanitizing the values to make sure we only advertise
718 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
719 * hasn't changed, and > 0 if it has changed.
720 */
721 static int genphy_config_advert(struct phy_device *phydev)
722 {
723 u32 advertise;
724 int oldadv, adv;
725 int err, changed = 0;
726
727 /* Only allow advertising what this PHY supports */
728 phydev->advertising &= phydev->supported;
729 advertise = phydev->advertising;
730
731 /* Setup standard advertisement */
732 adv = phy_read(phydev, MII_ADVERTISE);
733
734 if (adv < 0)
735 return adv;
736
737 oldadv = adv;
738 adv &= ~(ADVERTISE_ALL | ADVERTISE_100BASE4 | ADVERTISE_PAUSE_CAP |
739 ADVERTISE_PAUSE_ASYM);
740 adv |= ethtool_adv_to_mii_adv_t(advertise);
741
742 if (adv != oldadv) {
743 err = phy_write(phydev, MII_ADVERTISE, adv);
744
745 if (err < 0)
746 return err;
747 changed = 1;
748 }
749
750 /* Configure gigabit if it's supported */
751 if (phydev->supported & (SUPPORTED_1000baseT_Half |
752 SUPPORTED_1000baseT_Full)) {
753 adv = phy_read(phydev, MII_CTRL1000);
754
755 if (adv < 0)
756 return adv;
757
758 oldadv = adv;
759 adv &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
760 adv |= ethtool_adv_to_mii_ctrl1000_t(advertise);
761
762 if (adv != oldadv) {
763 err = phy_write(phydev, MII_CTRL1000, adv);
764
765 if (err < 0)
766 return err;
767 changed = 1;
768 }
769 }
770
771 return changed;
772 }
773
774 /**
775 * genphy_setup_forced - configures/forces speed/duplex from @phydev
776 * @phydev: target phy_device struct
777 *
778 * Description: Configures MII_BMCR to force speed/duplex
779 * to the values in phydev. Assumes that the values are valid.
780 * Please see phy_sanitize_settings().
781 */
782 int genphy_setup_forced(struct phy_device *phydev)
783 {
784 int err;
785 int ctl = 0;
786
787 phydev->pause = 0;
788 phydev->asym_pause = 0;
789
790 if (SPEED_1000 == phydev->speed)
791 ctl |= BMCR_SPEED1000;
792 else if (SPEED_100 == phydev->speed)
793 ctl |= BMCR_SPEED100;
794
795 if (DUPLEX_FULL == phydev->duplex)
796 ctl |= BMCR_FULLDPLX;
797
798 err = phy_write(phydev, MII_BMCR, ctl);
799
800 return err;
801 }
802 EXPORT_SYMBOL(genphy_setup_forced);
803
804 /**
805 * genphy_restart_aneg - Enable and Restart Autonegotiation
806 * @phydev: target phy_device struct
807 */
808 int genphy_restart_aneg(struct phy_device *phydev)
809 {
810 int ctl;
811
812 ctl = phy_read(phydev, MII_BMCR);
813
814 if (ctl < 0)
815 return ctl;
816
817 ctl |= BMCR_ANENABLE | BMCR_ANRESTART;
818
819 /* Don't isolate the PHY if we're negotiating */
820 ctl &= ~BMCR_ISOLATE;
821
822 ctl = phy_write(phydev, MII_BMCR, ctl);
823
824 return ctl;
825 }
826 EXPORT_SYMBOL(genphy_restart_aneg);
827
828
829 /**
830 * genphy_config_aneg - restart auto-negotiation or write BMCR
831 * @phydev: target phy_device struct
832 *
833 * Description: If auto-negotiation is enabled, we configure the
834 * advertising, and then restart auto-negotiation. If it is not
835 * enabled, then we write the BMCR.
836 */
837 int genphy_config_aneg(struct phy_device *phydev)
838 {
839 int result;
840
841 if (AUTONEG_ENABLE != phydev->autoneg)
842 return genphy_setup_forced(phydev);
843
844 result = genphy_config_advert(phydev);
845
846 if (result < 0) /* error */
847 return result;
848
849 if (result == 0) {
850 /* Advertisement hasn't changed, but maybe aneg was never on to
851 * begin with? Or maybe phy was isolated?
852 */
853 int ctl = phy_read(phydev, MII_BMCR);
854
855 if (ctl < 0)
856 return ctl;
857
858 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
859 result = 1; /* do restart aneg */
860 }
861
862 /* Only restart aneg if we are advertising something different
863 * than we were before.
864 */
865 if (result > 0)
866 result = genphy_restart_aneg(phydev);
867
868 return result;
869 }
870 EXPORT_SYMBOL(genphy_config_aneg);
871
872 /**
873 * genphy_update_link - update link status in @phydev
874 * @phydev: target phy_device struct
875 *
876 * Description: Update the value in phydev->link to reflect the
877 * current link value. In order to do this, we need to read
878 * the status register twice, keeping the second value.
879 */
880 int genphy_update_link(struct phy_device *phydev)
881 {
882 int status;
883
884 /* Do a fake read */
885 status = phy_read(phydev, MII_BMSR);
886
887 if (status < 0)
888 return status;
889
890 /* Read link and autonegotiation status */
891 status = phy_read(phydev, MII_BMSR);
892
893 if (status < 0)
894 return status;
895
896 if ((status & BMSR_LSTATUS) == 0)
897 phydev->link = 0;
898 else
899 phydev->link = 1;
900
901 return 0;
902 }
903 EXPORT_SYMBOL(genphy_update_link);
904
905 /**
906 * genphy_read_status - check the link status and update current link state
907 * @phydev: target phy_device struct
908 *
909 * Description: Check the link, then figure out the current state
910 * by comparing what we advertise with what the link partner
911 * advertises. Start by checking the gigabit possibilities,
912 * then move on to 10/100.
913 */
914 int genphy_read_status(struct phy_device *phydev)
915 {
916 int adv;
917 int err;
918 int lpa;
919 int lpagb = 0;
920
921 /* Update the link, but return if there was an error */
922 err = genphy_update_link(phydev);
923 if (err)
924 return err;
925
926 phydev->lp_advertising = 0;
927
928 if (AUTONEG_ENABLE == phydev->autoneg) {
929 if (phydev->supported & (SUPPORTED_1000baseT_Half
930 | SUPPORTED_1000baseT_Full)) {
931 lpagb = phy_read(phydev, MII_STAT1000);
932
933 if (lpagb < 0)
934 return lpagb;
935
936 adv = phy_read(phydev, MII_CTRL1000);
937
938 if (adv < 0)
939 return adv;
940
941 phydev->lp_advertising =
942 mii_stat1000_to_ethtool_lpa_t(lpagb);
943 lpagb &= adv << 2;
944 }
945
946 lpa = phy_read(phydev, MII_LPA);
947
948 if (lpa < 0)
949 return lpa;
950
951 phydev->lp_advertising |= mii_lpa_to_ethtool_lpa_t(lpa);
952
953 adv = phy_read(phydev, MII_ADVERTISE);
954
955 if (adv < 0)
956 return adv;
957
958 lpa &= adv;
959
960 phydev->speed = SPEED_10;
961 phydev->duplex = DUPLEX_HALF;
962 phydev->pause = 0;
963 phydev->asym_pause = 0;
964
965 if (lpagb & (LPA_1000FULL | LPA_1000HALF)) {
966 phydev->speed = SPEED_1000;
967
968 if (lpagb & LPA_1000FULL)
969 phydev->duplex = DUPLEX_FULL;
970 } else if (lpa & (LPA_100FULL | LPA_100HALF)) {
971 phydev->speed = SPEED_100;
972
973 if (lpa & LPA_100FULL)
974 phydev->duplex = DUPLEX_FULL;
975 } else
976 if (lpa & LPA_10FULL)
977 phydev->duplex = DUPLEX_FULL;
978
979 if (phydev->duplex == DUPLEX_FULL) {
980 phydev->pause = lpa & LPA_PAUSE_CAP ? 1 : 0;
981 phydev->asym_pause = lpa & LPA_PAUSE_ASYM ? 1 : 0;
982 }
983 } else {
984 int bmcr = phy_read(phydev, MII_BMCR);
985
986 if (bmcr < 0)
987 return bmcr;
988
989 if (bmcr & BMCR_FULLDPLX)
990 phydev->duplex = DUPLEX_FULL;
991 else
992 phydev->duplex = DUPLEX_HALF;
993
994 if (bmcr & BMCR_SPEED1000)
995 phydev->speed = SPEED_1000;
996 else if (bmcr & BMCR_SPEED100)
997 phydev->speed = SPEED_100;
998 else
999 phydev->speed = SPEED_10;
1000
1001 phydev->pause = 0;
1002 phydev->asym_pause = 0;
1003 }
1004
1005 return 0;
1006 }
1007 EXPORT_SYMBOL(genphy_read_status);
1008
1009 static int genphy_config_init(struct phy_device *phydev)
1010 {
1011 int val;
1012 u32 features;
1013
1014 /* For now, I'll claim that the generic driver supports
1015 * all possible port types
1016 */
1017 features = (SUPPORTED_TP | SUPPORTED_MII
1018 | SUPPORTED_AUI | SUPPORTED_FIBRE |
1019 SUPPORTED_BNC);
1020
1021 /* Do we support autonegotiation? */
1022 val = phy_read(phydev, MII_BMSR);
1023
1024 if (val < 0)
1025 return val;
1026
1027 if (val & BMSR_ANEGCAPABLE)
1028 features |= SUPPORTED_Autoneg;
1029
1030 if (val & BMSR_100FULL)
1031 features |= SUPPORTED_100baseT_Full;
1032 if (val & BMSR_100HALF)
1033 features |= SUPPORTED_100baseT_Half;
1034 if (val & BMSR_10FULL)
1035 features |= SUPPORTED_10baseT_Full;
1036 if (val & BMSR_10HALF)
1037 features |= SUPPORTED_10baseT_Half;
1038
1039 if (val & BMSR_ESTATEN) {
1040 val = phy_read(phydev, MII_ESTATUS);
1041
1042 if (val < 0)
1043 return val;
1044
1045 if (val & ESTATUS_1000_TFULL)
1046 features |= SUPPORTED_1000baseT_Full;
1047 if (val & ESTATUS_1000_THALF)
1048 features |= SUPPORTED_1000baseT_Half;
1049 }
1050
1051 phydev->supported = features;
1052 phydev->advertising = features;
1053
1054 return 0;
1055 }
1056 int genphy_suspend(struct phy_device *phydev)
1057 {
1058 int value;
1059
1060 mutex_lock(&phydev->lock);
1061
1062 value = phy_read(phydev, MII_BMCR);
1063 phy_write(phydev, MII_BMCR, value | BMCR_PDOWN);
1064
1065 mutex_unlock(&phydev->lock);
1066
1067 return 0;
1068 }
1069 EXPORT_SYMBOL(genphy_suspend);
1070
1071 int genphy_resume(struct phy_device *phydev)
1072 {
1073 int value;
1074
1075 mutex_lock(&phydev->lock);
1076
1077 value = phy_read(phydev, MII_BMCR);
1078 phy_write(phydev, MII_BMCR, value & ~BMCR_PDOWN);
1079
1080 mutex_unlock(&phydev->lock);
1081
1082 return 0;
1083 }
1084 EXPORT_SYMBOL(genphy_resume);
1085
1086 /**
1087 * phy_probe - probe and init a PHY device
1088 * @dev: device to probe and init
1089 *
1090 * Description: Take care of setting up the phy_device structure,
1091 * set the state to READY (the driver's init function should
1092 * set it to STARTING if needed).
1093 */
1094 static int phy_probe(struct device *dev)
1095 {
1096 struct phy_device *phydev;
1097 struct phy_driver *phydrv;
1098 struct device_driver *drv;
1099 int err = 0;
1100
1101 phydev = to_phy_device(dev);
1102
1103 drv = phydev->dev.driver;
1104 phydrv = to_phy_driver(drv);
1105 phydev->drv = phydrv;
1106
1107 /* Disable the interrupt if the PHY doesn't support it
1108 * but the interrupt is still a valid one
1109 */
1110 if (!(phydrv->flags & PHY_HAS_INTERRUPT) &&
1111 phy_interrupt_is_valid(phydev))
1112 phydev->irq = PHY_POLL;
1113
1114 if (phydrv->flags & PHY_IS_INTERNAL)
1115 phydev->is_internal = true;
1116
1117 mutex_lock(&phydev->lock);
1118
1119 /* Start out supporting everything. Eventually,
1120 * a controller will attach, and may modify one
1121 * or both of these values
1122 */
1123 phydev->supported = phydrv->features;
1124 phydev->advertising = phydrv->features;
1125
1126 /* Set the state to READY by default */
1127 phydev->state = PHY_READY;
1128
1129 if (phydev->drv->probe)
1130 err = phydev->drv->probe(phydev);
1131
1132 mutex_unlock(&phydev->lock);
1133
1134 return err;
1135 }
1136
1137 static int phy_remove(struct device *dev)
1138 {
1139 struct phy_device *phydev;
1140
1141 phydev = to_phy_device(dev);
1142
1143 mutex_lock(&phydev->lock);
1144 phydev->state = PHY_DOWN;
1145 mutex_unlock(&phydev->lock);
1146
1147 if (phydev->drv->remove)
1148 phydev->drv->remove(phydev);
1149 phydev->drv = NULL;
1150
1151 return 0;
1152 }
1153
1154 /**
1155 * phy_driver_register - register a phy_driver with the PHY layer
1156 * @new_driver: new phy_driver to register
1157 */
1158 int phy_driver_register(struct phy_driver *new_driver)
1159 {
1160 int retval;
1161
1162 new_driver->driver.name = new_driver->name;
1163 new_driver->driver.bus = &mdio_bus_type;
1164 new_driver->driver.probe = phy_probe;
1165 new_driver->driver.remove = phy_remove;
1166
1167 retval = driver_register(&new_driver->driver);
1168
1169 if (retval) {
1170 pr_err("%s: Error %d in registering driver\n",
1171 new_driver->name, retval);
1172
1173 return retval;
1174 }
1175
1176 pr_debug("%s: Registered new driver\n", new_driver->name);
1177
1178 return 0;
1179 }
1180 EXPORT_SYMBOL(phy_driver_register);
1181
1182 int phy_drivers_register(struct phy_driver *new_driver, int n)
1183 {
1184 int i, ret = 0;
1185
1186 for (i = 0; i < n; i++) {
1187 ret = phy_driver_register(new_driver + i);
1188 if (ret) {
1189 while (i-- > 0)
1190 phy_driver_unregister(new_driver + i);
1191 break;
1192 }
1193 }
1194 return ret;
1195 }
1196 EXPORT_SYMBOL(phy_drivers_register);
1197
1198 void phy_driver_unregister(struct phy_driver *drv)
1199 {
1200 driver_unregister(&drv->driver);
1201 }
1202 EXPORT_SYMBOL(phy_driver_unregister);
1203
1204 void phy_drivers_unregister(struct phy_driver *drv, int n)
1205 {
1206 int i;
1207
1208 for (i = 0; i < n; i++)
1209 phy_driver_unregister(drv + i);
1210 }
1211 EXPORT_SYMBOL(phy_drivers_unregister);
1212
1213 static struct phy_driver genphy_driver = {
1214 .phy_id = 0xffffffff,
1215 .phy_id_mask = 0xffffffff,
1216 .name = "Generic PHY",
1217 .config_init = genphy_config_init,
1218 .features = 0,
1219 .config_aneg = genphy_config_aneg,
1220 .read_status = genphy_read_status,
1221 .suspend = genphy_suspend,
1222 .resume = genphy_resume,
1223 .driver = { .owner = THIS_MODULE, },
1224 };
1225
1226 static int __init phy_init(void)
1227 {
1228 int rc;
1229
1230 rc = mdio_bus_init();
1231 if (rc)
1232 return rc;
1233
1234 rc = phy_driver_register(&genphy_driver);
1235 if (rc)
1236 mdio_bus_exit();
1237
1238 return rc;
1239 }
1240
1241 static void __exit phy_exit(void)
1242 {
1243 phy_driver_unregister(&genphy_driver);
1244 mdio_bus_exit();
1245 }
1246
1247 subsys_initcall(phy_init);
1248 module_exit(phy_exit);
This page took 0.072423 seconds and 4 git commands to generate.