phylib: give mdio buses a device tree presence
[deliverable/linux.git] / drivers / net / phy / mdio_bus.c
CommitLineData
00db8189
AF
1/*
2 * drivers/net/phy/mdio_bus.c
3 *
4 * MDIO Bus interface
5 *
6 * Author: Andy Fleming
7 *
8 * Copyright (c) 2004 Freescale Semiconductor, Inc.
9 *
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.
14 *
15 */
00db8189 16#include <linux/kernel.h>
00db8189
AF
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>
00db8189
AF
30#include <linux/mii.h>
31#include <linux/ethtool.h>
32#include <linux/phy.h>
33
34#include <asm/io.h>
35#include <asm/irq.h>
36#include <asm/uaccess.h>
37
298cf9be
LB
38/**
39 * mdiobus_alloc - allocate a mii_bus structure
40 *
41 * Description: called by a bus driver to allocate an mii_bus
42 * structure to fill in.
43 */
44struct mii_bus *mdiobus_alloc(void)
45{
46abc021
LB
46 struct mii_bus *bus;
47
48 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
49 if (bus != NULL)
50 bus->state = MDIOBUS_ALLOCATED;
51
52 return bus;
298cf9be
LB
53}
54EXPORT_SYMBOL(mdiobus_alloc);
55
46abc021
LB
56/**
57 * mdiobus_release - mii_bus device release callback
58 *
59 * Description: called when the last reference to an mii_bus is
60 * dropped, to free the underlying memory.
61 */
62static void mdiobus_release(struct device *d)
63{
64 struct mii_bus *bus = to_mii_bus(d);
65 BUG_ON(bus->state != MDIOBUS_RELEASED);
66 kfree(bus);
67}
68
69static struct class mdio_bus_class = {
70 .name = "mdio_bus",
71 .dev_release = mdiobus_release,
72};
73
b3df0da8
RD
74/**
75 * mdiobus_register - bring up all the PHYs on a given bus and attach them to bus
76 * @bus: target mii_bus
e1393456 77 *
b3df0da8
RD
78 * Description: Called by a bus driver to bring up all the PHYs
79 * on a given bus, and attach them to the bus.
80 *
81 * Returns 0 on success or < 0 on error.
e1393456
AF
82 */
83int mdiobus_register(struct mii_bus *bus)
84{
85 int i;
86 int err = 0;
87
e1393456
AF
88 if (NULL == bus || NULL == bus->name ||
89 NULL == bus->read ||
90 NULL == bus->write)
91 return -EINVAL;
92
46abc021
LB
93 BUG_ON(bus->state != MDIOBUS_ALLOCATED &&
94 bus->state != MDIOBUS_UNREGISTERED);
95
96 bus->dev.parent = bus->parent;
97 bus->dev.class = &mdio_bus_class;
98 bus->dev.groups = NULL;
99 memcpy(bus->dev.bus_id, bus->id, MII_BUS_ID_SIZE);
100
101 err = device_register(&bus->dev);
102 if (err) {
103 printk(KERN_ERR "mii_bus %s failed to register\n", bus->id);
104 return -EINVAL;
105 }
106
107 bus->state = MDIOBUS_REGISTERED;
108
d1e7fe4d
AB
109 mutex_init(&bus->mdio_lock);
110
e1393456
AF
111 if (bus->reset)
112 bus->reset(bus);
113
114 for (i = 0; i < PHY_MAX_ADDR; i++) {
4fd5f812
LB
115 bus->phy_map[i] = NULL;
116 if ((bus->phy_mask & (1 << i)) == 0) {
117 struct phy_device *phydev;
e1393456 118
4fd5f812
LB
119 phydev = mdiobus_scan(bus, i);
120 if (IS_ERR(phydev))
121 err = PTR_ERR(phydev);
64b1c2b4 122 }
e1393456
AF
123 }
124
125 pr_info("%s: probed\n", bus->name);
126
127 return err;
128}
129EXPORT_SYMBOL(mdiobus_register);
130
131void mdiobus_unregister(struct mii_bus *bus)
132{
133 int i;
134
46abc021
LB
135 BUG_ON(bus->state != MDIOBUS_REGISTERED);
136 bus->state = MDIOBUS_UNREGISTERED;
137
138 device_unregister(&bus->dev);
e1393456 139 for (i = 0; i < PHY_MAX_ADDR; i++) {
6f4a7f41 140 if (bus->phy_map[i])
e1393456 141 device_unregister(&bus->phy_map[i]->dev);
e1393456
AF
142 }
143}
144EXPORT_SYMBOL(mdiobus_unregister);
145
298cf9be
LB
146/**
147 * mdiobus_free - free a struct mii_bus
148 * @bus: mii_bus to free
149 *
46abc021
LB
150 * This function releases the reference to the underlying device
151 * object in the mii_bus. If this is the last reference, the mii_bus
152 * will be freed.
298cf9be
LB
153 */
154void mdiobus_free(struct mii_bus *bus)
155{
46abc021
LB
156 /*
157 * For compatibility with error handling in drivers.
158 */
159 if (bus->state == MDIOBUS_ALLOCATED) {
160 kfree(bus);
161 return;
162 }
163
164 BUG_ON(bus->state != MDIOBUS_UNREGISTERED);
165 bus->state = MDIOBUS_RELEASED;
166
167 put_device(&bus->dev);
298cf9be
LB
168}
169EXPORT_SYMBOL(mdiobus_free);
170
4fd5f812
LB
171struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr)
172{
173 struct phy_device *phydev;
174 int err;
175
176 phydev = get_phy_device(bus, addr);
177 if (IS_ERR(phydev) || phydev == NULL)
178 return phydev;
179
180 /* There's a PHY at this address
181 * We need to set:
182 * 1) IRQ
183 * 2) bus_id
184 * 3) parent
185 * 4) bus
186 * 5) mii_bus
187 * And, we need to register it */
188
189 phydev->irq = bus->irq != NULL ? bus->irq[addr] : PHY_POLL;
190
18ee49dd 191 phydev->dev.parent = bus->parent;
4fd5f812
LB
192 phydev->dev.bus = &mdio_bus_type;
193 snprintf(phydev->dev.bus_id, BUS_ID_SIZE, PHY_ID_FMT, bus->id, addr);
194
195 phydev->bus = bus;
196
197 /* Run all of the fixups for this PHY */
198 phy_scan_fixups(phydev);
199
200 err = device_register(&phydev->dev);
201 if (err) {
202 printk(KERN_ERR "phy %d failed to register\n", addr);
203 phy_device_free(phydev);
204 phydev = NULL;
205 }
206
207 bus->phy_map[addr] = phydev;
208
209 return phydev;
210}
211EXPORT_SYMBOL(mdiobus_scan);
212
b3df0da8
RD
213/**
214 * mdio_bus_match - determine if given PHY driver supports the given PHY device
215 * @dev: target PHY device
216 * @drv: given PHY driver
00db8189 217 *
b3df0da8
RD
218 * Description: Given a PHY device, and a PHY driver, return 1 if
219 * the driver supports the device. Otherwise, return 0.
00db8189
AF
220 */
221static int mdio_bus_match(struct device *dev, struct device_driver *drv)
222{
223 struct phy_device *phydev = to_phy_device(dev);
224 struct phy_driver *phydrv = to_phy_driver(drv);
225
5f708dd9
KG
226 return ((phydrv->phy_id & phydrv->phy_id_mask) ==
227 (phydev->phy_id & phydrv->phy_id_mask));
00db8189
AF
228}
229
230/* Suspend and resume. Copied from platform_suspend and
231 * platform_resume
232 */
829ca9a3 233static int mdio_bus_suspend(struct device * dev, pm_message_t state)
00db8189
AF
234{
235 int ret = 0;
236 struct device_driver *drv = dev->driver;
237
9480e307
RK
238 if (drv && drv->suspend)
239 ret = drv->suspend(dev, state);
240
00db8189
AF
241 return ret;
242}
243
244static int mdio_bus_resume(struct device * dev)
245{
246 int ret = 0;
247 struct device_driver *drv = dev->driver;
248
9480e307
RK
249 if (drv && drv->resume)
250 ret = drv->resume(dev);
251
00db8189
AF
252 return ret;
253}
254
255struct bus_type mdio_bus_type = {
256 .name = "mdio_bus",
257 .match = mdio_bus_match,
258 .suspend = mdio_bus_suspend,
259 .resume = mdio_bus_resume,
260};
11b0bacd 261EXPORT_SYMBOL(mdio_bus_type);
00db8189 262
67c4f3fa 263int __init mdio_bus_init(void)
00db8189 264{
46abc021
LB
265 int ret;
266
267 ret = class_register(&mdio_bus_class);
268 if (!ret) {
269 ret = bus_register(&mdio_bus_type);
270 if (ret)
271 class_unregister(&mdio_bus_class);
272 }
273
274 return ret;
00db8189
AF
275}
276
dc85dec6 277void mdio_bus_exit(void)
e1393456 278{
46abc021 279 class_unregister(&mdio_bus_class);
e1393456
AF
280 bus_unregister(&mdio_bus_type);
281}
This page took 0.381141 seconds and 5 git commands to generate.