RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / drivers / net / phy / mdio_bus.c
blobfc2f0e695a13a572a2309003243afe3ca685c6b1
1 /*
2 * drivers/net/phy/mdio_bus.c
4 * MDIO Bus interface
6 * Author: Andy Fleming
8 * Copyright (c) 2004 Freescale Semiconductor, Inc.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
16 #include <linux/kernel.h>
17 #include <linux/string.h>
18 #include <linux/errno.h>
19 #include <linux/unistd.h>
20 #include <linux/slab.h>
21 #include <linux/interrupt.h>
22 #include <linux/init.h>
23 #include <linux/delay.h>
24 #include <linux/netdevice.h>
25 #include <linux/etherdevice.h>
26 #include <linux/skbuff.h>
27 #include <linux/spinlock.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>
34 #include <asm/io.h>
35 #include <asm/irq.h>
36 #include <asm/uaccess.h>
38 /**
39 * mdiobus_register - bring up all the PHYs on a given bus and attach them to bus
40 * @bus: target mii_bus
42 * Description: Called by a bus driver to bring up all the PHYs
43 * on a given bus, and attach them to the bus.
45 * Returns 0 on success or < 0 on error.
47 int mdiobus_register(struct mii_bus *bus)
49 int i;
50 int err = 0;
52 spin_lock_init(&bus->mdio_lock);
54 if (NULL == bus || NULL == bus->name ||
55 NULL == bus->read ||
56 NULL == bus->write)
57 return -EINVAL;
59 if (bus->reset)
60 bus->reset(bus);
62 for (i = 0; i < PHY_MAX_ADDR; i++) {
63 struct phy_device *phydev;
65 if (bus->phy_mask & (1 << i)) {
66 bus->phy_map[i] = NULL;
67 continue;
70 phydev = get_phy_device(bus, i);
72 if (IS_ERR(phydev))
73 return PTR_ERR(phydev);
75 /* There's a PHY at this address
76 * We need to set:
77 * 1) IRQ
78 * 2) bus_id
79 * 3) parent
80 * 4) bus
81 * 5) mii_bus
82 * And, we need to register it */
83 if (phydev) {
84 phydev->irq = bus->irq[i];
86 phydev->dev.parent = bus->dev;
87 phydev->dev.bus = &mdio_bus_type;
88 snprintf(phydev->dev.bus_id, BUS_ID_SIZE, PHY_ID_FMT, bus->id, i);
90 phydev->bus = bus;
92 err = device_register(&phydev->dev);
94 if (err)
95 printk(KERN_ERR "phy %d failed to register\n",
96 i);
99 bus->phy_map[i] = phydev;
102 pr_info("%s: probed\n", bus->name);
104 return err;
106 EXPORT_SYMBOL(mdiobus_register);
108 void mdiobus_unregister(struct mii_bus *bus)
110 int i;
112 for (i = 0; i < PHY_MAX_ADDR; i++) {
113 if (bus->phy_map[i]) {
114 device_unregister(&bus->phy_map[i]->dev);
115 kfree(bus->phy_map[i]);
119 EXPORT_SYMBOL(mdiobus_unregister);
122 * mdio_bus_match - determine if given PHY driver supports the given PHY device
123 * @dev: target PHY device
124 * @drv: given PHY driver
126 * Description: Given a PHY device, and a PHY driver, return 1 if
127 * the driver supports the device. Otherwise, return 0.
129 static int mdio_bus_match(struct device *dev, struct device_driver *drv)
131 struct phy_device *phydev = to_phy_device(dev);
132 struct phy_driver *phydrv = to_phy_driver(drv);
134 return ((phydrv->phy_id & phydrv->phy_id_mask) ==
135 (phydev->phy_id & phydrv->phy_id_mask));
138 /* Suspend and resume. Copied from platform_suspend and
139 * platform_resume
141 static int mdio_bus_suspend(struct device * dev, pm_message_t state)
143 int ret = 0;
144 struct device_driver *drv = dev->driver;
146 if (drv && drv->suspend)
147 ret = drv->suspend(dev, state);
149 return ret;
152 static int mdio_bus_resume(struct device * dev)
154 int ret = 0;
155 struct device_driver *drv = dev->driver;
157 if (drv && drv->resume)
158 ret = drv->resume(dev);
160 return ret;
163 struct bus_type mdio_bus_type = {
164 .name = "mdio_bus",
165 .match = mdio_bus_match,
166 .suspend = mdio_bus_suspend,
167 .resume = mdio_bus_resume,
169 EXPORT_SYMBOL(mdio_bus_type);
171 int __init mdio_bus_init(void)
173 return bus_register(&mdio_bus_type);
176 void mdio_bus_exit(void)
178 bus_unregister(&mdio_bus_type);