convert ATM drivers to netdev_tx_t
[linux-block.git] / drivers / base / dd.c
CommitLineData
07e4a3e2 1/*
4a3ad20c 2 * drivers/base/dd.c - The core device/driver interactions.
07e4a3e2 3 *
4a3ad20c
GKH
4 * This file contains the (sometimes tricky) code that controls the
5 * interactions between devices and drivers, which primarily includes
6 * driver binding and unbinding.
07e4a3e2 7 *
4a3ad20c
GKH
8 * All of this code used to exist in drivers/base/bus.c, but was
9 * relocated to here in the name of compartmentalization (since it wasn't
10 * strictly code just for the 'struct bus_type'.
07e4a3e2 11 *
4a3ad20c
GKH
12 * Copyright (c) 2002-5 Patrick Mochel
13 * Copyright (c) 2002-3 Open Source Development Labs
14 * Copyright (c) 2007 Greg Kroah-Hartman <gregkh@suse.de>
15 * Copyright (c) 2007 Novell Inc.
07e4a3e2 16 *
4a3ad20c 17 * This file is released under the GPLv2
07e4a3e2 18 */
19
20#include <linux/device.h>
216773a7 21#include <linux/delay.h>
07e4a3e2 22#include <linux/module.h>
d779249e 23#include <linux/kthread.h>
735a7ffb 24#include <linux/wait.h>
216773a7 25#include <linux/async.h>
07e4a3e2 26
27#include "base.h"
28#include "power/power.h"
29
07e4a3e2 30
1901fb26 31static void driver_bound(struct device *dev)
07e4a3e2 32{
8940b4f3 33 if (klist_node_attached(&dev->p->knode_driver)) {
f86db396 34 printk(KERN_WARNING "%s: device %s already bound\n",
2b3a302a 35 __func__, kobject_name(&dev->kobj));
1901fb26 36 return;
f86db396 37 }
4c898c7f 38
1e0b2cf9 39 pr_debug("driver: '%s': %s: bound to device '%s'\n", dev_name(dev),
2b3a302a 40 __func__, dev->driver->name);
116af378
BH
41
42 if (dev->bus)
c6f7e72a 43 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
116af378
BH
44 BUS_NOTIFY_BOUND_DRIVER, dev);
45
8940b4f3 46 klist_add_tail(&dev->p->knode_driver, &dev->driver->p->klist_devices);
1901fb26
KS
47}
48
49static int driver_sysfs_add(struct device *dev)
50{
51 int ret;
52
e5dd1278 53 ret = sysfs_create_link(&dev->driver->p->kobj, &dev->kobj,
07e4a3e2 54 kobject_name(&dev->kobj));
f86db396 55 if (ret == 0) {
e5dd1278 56 ret = sysfs_create_link(&dev->kobj, &dev->driver->p->kobj,
f86db396
AM
57 "driver");
58 if (ret)
e5dd1278 59 sysfs_remove_link(&dev->driver->p->kobj,
f86db396
AM
60 kobject_name(&dev->kobj));
61 }
62 return ret;
07e4a3e2 63}
64
1901fb26
KS
65static void driver_sysfs_remove(struct device *dev)
66{
67 struct device_driver *drv = dev->driver;
68
69 if (drv) {
e5dd1278 70 sysfs_remove_link(&drv->p->kobj, kobject_name(&dev->kobj));
1901fb26
KS
71 sysfs_remove_link(&dev->kobj, "driver");
72 }
73}
74
75/**
4a3ad20c
GKH
76 * device_bind_driver - bind a driver to one device.
77 * @dev: device.
1901fb26 78 *
4a3ad20c
GKH
79 * Allow manual attachment of a driver to a device.
80 * Caller must have already set @dev->driver.
1901fb26 81 *
4a3ad20c
GKH
82 * Note that this does not modify the bus reference count
83 * nor take the bus's rwsem. Please verify those are accounted
84 * for before calling this. (It is ok to call with no other effort
85 * from a driver's probe() method.)
1901fb26 86 *
4a3ad20c 87 * This function must be called with @dev->sem held.
1901fb26
KS
88 */
89int device_bind_driver(struct device *dev)
90{
cb986b74
CH
91 int ret;
92
93 ret = driver_sysfs_add(dev);
94 if (!ret)
95 driver_bound(dev);
96 return ret;
1901fb26 97}
4a3ad20c 98EXPORT_SYMBOL_GPL(device_bind_driver);
1901fb26 99
d779249e 100static atomic_t probe_count = ATOMIC_INIT(0);
735a7ffb
AM
101static DECLARE_WAIT_QUEUE_HEAD(probe_waitqueue);
102
21c7f30b 103static int really_probe(struct device *dev, struct device_driver *drv)
07e4a3e2 104{
0d3e5a2e 105 int ret = 0;
07e4a3e2 106
d779249e 107 atomic_inc(&probe_count);
7dc72b28 108 pr_debug("bus: '%s': %s: probing driver %s with device %s\n",
1e0b2cf9 109 drv->bus->name, __func__, drv->name, dev_name(dev));
9ac7849e 110 WARN_ON(!list_empty(&dev->devres_head));
07e4a3e2 111
07e4a3e2 112 dev->driver = drv;
1901fb26
KS
113 if (driver_sysfs_add(dev)) {
114 printk(KERN_ERR "%s: driver_sysfs_add(%s) failed\n",
1e0b2cf9 115 __func__, dev_name(dev));
1901fb26
KS
116 goto probe_failed;
117 }
118
594c8281
RK
119 if (dev->bus->probe) {
120 ret = dev->bus->probe(dev);
1901fb26 121 if (ret)
d779249e 122 goto probe_failed;
594c8281 123 } else if (drv->probe) {
0d3e5a2e 124 ret = drv->probe(dev);
1901fb26 125 if (ret)
d779249e 126 goto probe_failed;
f86db396 127 }
1901fb26
KS
128
129 driver_bound(dev);
0d3e5a2e 130 ret = 1;
7dc72b28 131 pr_debug("bus: '%s': %s: bound device %s to driver %s\n",
1e0b2cf9 132 drv->bus->name, __func__, dev_name(dev), drv->name);
d779249e 133 goto done;
0d3e5a2e 134
d779249e 135probe_failed:
9ac7849e 136 devres_release_all(dev);
1901fb26
KS
137 driver_sysfs_remove(dev);
138 dev->driver = NULL;
139
c578abbc 140 if (ret != -ENODEV && ret != -ENXIO) {
0d3e5a2e
PM
141 /* driver matched but the probe failed */
142 printk(KERN_WARNING
143 "%s: probe of %s failed with error %d\n",
1e0b2cf9 144 drv->name, dev_name(dev), ret);
0d3e5a2e 145 }
c578abbc
CH
146 /*
147 * Ignore errors returned by ->probe so that the next driver can try
148 * its luck.
149 */
150 ret = 0;
d779249e 151done:
d779249e 152 atomic_dec(&probe_count);
735a7ffb 153 wake_up(&probe_waitqueue);
d779249e
GKH
154 return ret;
155}
156
157/**
158 * driver_probe_done
159 * Determine if the probe sequence is finished or not.
160 *
161 * Should somehow figure out how to use a semaphore, not an atomic variable...
162 */
163int driver_probe_done(void)
164{
2b3a302a 165 pr_debug("%s: probe_count = %d\n", __func__,
d779249e
GKH
166 atomic_read(&probe_count));
167 if (atomic_read(&probe_count))
168 return -EBUSY;
169 return 0;
170}
171
216773a7
AV
172/**
173 * wait_for_device_probe
174 * Wait for device probing to be completed.
216773a7 175 */
b23530eb 176void wait_for_device_probe(void)
216773a7
AV
177{
178 /* wait for the known devices to complete their probing */
b23530eb 179 wait_event(probe_waitqueue, atomic_read(&probe_count) == 0);
216773a7 180 async_synchronize_full();
216773a7 181}
d4d5291c 182EXPORT_SYMBOL_GPL(wait_for_device_probe);
216773a7 183
d779249e
GKH
184/**
185 * driver_probe_device - attempt to bind device & driver together
186 * @drv: driver to bind a device to
187 * @dev: device to try to bind to the driver
188 *
49b420a1
ML
189 * This function returns -ENODEV if the device is not registered,
190 * 1 if the device is bound sucessfully and 0 otherwise.
d779249e
GKH
191 *
192 * This function must be called with @dev->sem held. When called for a
193 * USB interface, @dev->parent->sem must be held as well.
194 */
4a3ad20c 195int driver_probe_device(struct device_driver *drv, struct device *dev)
d779249e 196{
d779249e
GKH
197 int ret = 0;
198
f2eaae19
AS
199 if (!device_is_registered(dev))
200 return -ENODEV;
d779249e 201
7dc72b28 202 pr_debug("bus: '%s': %s: matched device %s with driver %s\n",
1e0b2cf9 203 drv->bus->name, __func__, dev_name(dev), drv->name);
d779249e 204
21c7f30b 205 ret = really_probe(dev, drv);
d779249e 206
0d3e5a2e 207 return ret;
07e4a3e2 208}
209
4a3ad20c 210static int __device_attach(struct device_driver *drv, void *data)
2287c322 211{
4a3ad20c 212 struct device *dev = data;
49b420a1
ML
213
214 if (!driver_match_device(drv, dev))
215 return 0;
216
0d3e5a2e 217 return driver_probe_device(drv, dev);
2287c322 218}
219
07e4a3e2 220/**
4a3ad20c
GKH
221 * device_attach - try to attach device to a driver.
222 * @dev: device.
07e4a3e2 223 *
4a3ad20c
GKH
224 * Walk the list of drivers that the bus has and call
225 * driver_probe_device() for each pair. If a compatible
226 * pair is found, break out and return.
0d3e5a2e 227 *
4a3ad20c 228 * Returns 1 if the device was bound to a driver;
59a3cd7f 229 * 0 if no matching driver was found;
4a3ad20c 230 * -ENODEV if the device is not registered.
bf74ad5b 231 *
4a3ad20c 232 * When called for a USB interface, @dev->parent->sem must be held.
07e4a3e2 233 */
4a3ad20c 234int device_attach(struct device *dev)
07e4a3e2 235{
0d3e5a2e
PM
236 int ret = 0;
237
238 down(&dev->sem);
07e4a3e2 239 if (dev->driver) {
f86db396
AM
240 ret = device_bind_driver(dev);
241 if (ret == 0)
242 ret = 1;
c6a46696
CH
243 else {
244 dev->driver = NULL;
245 ret = 0;
246 }
21c7f30b 247 } else {
5adc55da 248 ret = bus_for_each_drv(dev->bus, NULL, dev, __device_attach);
21c7f30b 249 }
0d3e5a2e
PM
250 up(&dev->sem);
251 return ret;
2287c322 252}
4a3ad20c 253EXPORT_SYMBOL_GPL(device_attach);
2287c322 254
4a3ad20c 255static int __driver_attach(struct device *dev, void *data)
2287c322 256{
4a3ad20c 257 struct device_driver *drv = data;
0d3e5a2e
PM
258
259 /*
260 * Lock device and try to bind to it. We drop the error
261 * here and always return 0, because we need to keep trying
262 * to bind to devices and some drivers will return an error
263 * simply if it didn't support the device.
264 *
265 * driver_probe_device() will spit a warning if there
266 * is an error.
267 */
268
49b420a1 269 if (!driver_match_device(drv, dev))
6cd49586
AV
270 return 0;
271
bf74ad5b
AS
272 if (dev->parent) /* Needed for USB */
273 down(&dev->parent->sem);
0d3e5a2e
PM
274 down(&dev->sem);
275 if (!dev->driver)
276 driver_probe_device(drv, dev);
277 up(&dev->sem);
bf74ad5b
AS
278 if (dev->parent)
279 up(&dev->parent->sem);
0d3e5a2e 280
07e4a3e2 281 return 0;
282}
283
284/**
4a3ad20c
GKH
285 * driver_attach - try to bind driver to devices.
286 * @drv: driver.
07e4a3e2 287 *
4a3ad20c
GKH
288 * Walk the list of devices that the bus has on it and try to
289 * match the driver with each one. If driver_probe_device()
290 * returns 0 and the @dev->driver is set, we've found a
291 * compatible pair.
07e4a3e2 292 */
4a3ad20c 293int driver_attach(struct device_driver *drv)
07e4a3e2 294{
f86db396 295 return bus_for_each_dev(drv->bus, NULL, drv, __driver_attach);
07e4a3e2 296}
4a3ad20c 297EXPORT_SYMBOL_GPL(driver_attach);
07e4a3e2 298
ab71c6f0 299/*
4a3ad20c
GKH
300 * __device_release_driver() must be called with @dev->sem held.
301 * When called for a USB interface, @dev->parent->sem must be held as well.
07e4a3e2 302 */
4a3ad20c 303static void __device_release_driver(struct device *dev)
07e4a3e2 304{
4a3ad20c 305 struct device_driver *drv;
07e4a3e2 306
ef2c5174 307 drv = dev->driver;
c95a6b05 308 if (drv) {
1901fb26 309 driver_sysfs_remove(dev);
0d3e5a2e 310
116af378 311 if (dev->bus)
c6f7e72a 312 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
116af378
BH
313 BUS_NOTIFY_UNBIND_DRIVER,
314 dev);
315
0f836ca4 316 if (dev->bus && dev->bus->remove)
594c8281
RK
317 dev->bus->remove(dev);
318 else if (drv->remove)
0d3e5a2e 319 drv->remove(dev);
9ac7849e 320 devres_release_all(dev);
0d3e5a2e 321 dev->driver = NULL;
8940b4f3 322 klist_remove(&dev->p->knode_driver);
309b7d60
JR
323 if (dev->bus)
324 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
325 BUS_NOTIFY_UNBOUND_DRIVER,
326 dev);
0d3e5a2e 327 }
07e4a3e2 328}
329
ab71c6f0 330/**
4a3ad20c
GKH
331 * device_release_driver - manually detach device from driver.
332 * @dev: device.
ab71c6f0 333 *
4a3ad20c
GKH
334 * Manually detach device from driver.
335 * When called for a USB interface, @dev->parent->sem must be held.
ab71c6f0 336 */
4a3ad20c 337void device_release_driver(struct device *dev)
94e7b1c5 338{
c95a6b05
AS
339 /*
340 * If anyone calls device_release_driver() recursively from
341 * within their ->remove callback for the same device, they
342 * will deadlock right here.
343 */
344 down(&dev->sem);
345 __device_release_driver(dev);
346 up(&dev->sem);
94e7b1c5 347}
4a3ad20c 348EXPORT_SYMBOL_GPL(device_release_driver);
c95a6b05 349
07e4a3e2 350/**
351 * driver_detach - detach driver from all devices it controls.
352 * @drv: driver.
353 */
4a3ad20c 354void driver_detach(struct device_driver *drv)
07e4a3e2 355{
8940b4f3 356 struct device_private *dev_prv;
4a3ad20c 357 struct device *dev;
c95a6b05
AS
358
359 for (;;) {
e5dd1278
GKH
360 spin_lock(&drv->p->klist_devices.k_lock);
361 if (list_empty(&drv->p->klist_devices.k_list)) {
362 spin_unlock(&drv->p->klist_devices.k_lock);
c95a6b05
AS
363 break;
364 }
8940b4f3
GKH
365 dev_prv = list_entry(drv->p->klist_devices.k_list.prev,
366 struct device_private,
367 knode_driver.n_node);
368 dev = dev_prv->device;
c95a6b05 369 get_device(dev);
e5dd1278 370 spin_unlock(&drv->p->klist_devices.k_lock);
c95a6b05 371
bf74ad5b
AS
372 if (dev->parent) /* Needed for USB */
373 down(&dev->parent->sem);
c95a6b05
AS
374 down(&dev->sem);
375 if (dev->driver == drv)
376 __device_release_driver(dev);
377 up(&dev->sem);
bf74ad5b
AS
378 if (dev->parent)
379 up(&dev->parent->sem);
c95a6b05
AS
380 put_device(dev);
381 }
07e4a3e2 382}