Consolidate driver_probe_done() loops into one place
[deliverable/linux.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{
cda5e83f 33 if (klist_node_attached(&dev->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
cda5e83f 46 klist_add_tail(&dev->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.
175 *
176 * Note: this function polls at 100 msec intervals.
177 */
178int wait_for_device_probe(void)
179{
180 /* wait for the known devices to complete their probing */
181 while (driver_probe_done() != 0)
182 msleep(100);
183 async_synchronize_full();
184 return 0;
185}
186
d779249e
GKH
187/**
188 * driver_probe_device - attempt to bind device & driver together
189 * @drv: driver to bind a device to
190 * @dev: device to try to bind to the driver
191 *
192 * First, we call the bus's match function, if one present, which should
193 * compare the device IDs the driver supports with the device IDs of the
194 * device. Note we don't do this ourselves because we don't know the
195 * format of the ID structures, nor what is to be considered a match and
196 * what is not.
197 *
21c7f30b
CH
198 * This function returns 1 if a match is found, -ENODEV if the device is
199 * not registered, and 0 otherwise.
d779249e
GKH
200 *
201 * This function must be called with @dev->sem held. When called for a
202 * USB interface, @dev->parent->sem must be held as well.
203 */
4a3ad20c 204int driver_probe_device(struct device_driver *drv, struct device *dev)
d779249e 205{
d779249e
GKH
206 int ret = 0;
207
f2eaae19
AS
208 if (!device_is_registered(dev))
209 return -ENODEV;
d779249e
GKH
210 if (drv->bus->match && !drv->bus->match(dev, drv))
211 goto done;
212
7dc72b28 213 pr_debug("bus: '%s': %s: matched device %s with driver %s\n",
1e0b2cf9 214 drv->bus->name, __func__, dev_name(dev), drv->name);
d779249e 215
21c7f30b 216 ret = really_probe(dev, drv);
d779249e
GKH
217
218done:
0d3e5a2e 219 return ret;
07e4a3e2 220}
221
4a3ad20c 222static int __device_attach(struct device_driver *drv, void *data)
2287c322 223{
4a3ad20c 224 struct device *dev = data;
0d3e5a2e 225 return driver_probe_device(drv, dev);
2287c322 226}
227
07e4a3e2 228/**
4a3ad20c
GKH
229 * device_attach - try to attach device to a driver.
230 * @dev: device.
07e4a3e2 231 *
4a3ad20c
GKH
232 * Walk the list of drivers that the bus has and call
233 * driver_probe_device() for each pair. If a compatible
234 * pair is found, break out and return.
0d3e5a2e 235 *
4a3ad20c
GKH
236 * Returns 1 if the device was bound to a driver;
237 * 0 if no matching device was found;
238 * -ENODEV if the device is not registered.
bf74ad5b 239 *
4a3ad20c 240 * When called for a USB interface, @dev->parent->sem must be held.
07e4a3e2 241 */
4a3ad20c 242int device_attach(struct device *dev)
07e4a3e2 243{
0d3e5a2e
PM
244 int ret = 0;
245
246 down(&dev->sem);
07e4a3e2 247 if (dev->driver) {
f86db396
AM
248 ret = device_bind_driver(dev);
249 if (ret == 0)
250 ret = 1;
c6a46696
CH
251 else {
252 dev->driver = NULL;
253 ret = 0;
254 }
21c7f30b 255 } else {
5adc55da 256 ret = bus_for_each_drv(dev->bus, NULL, dev, __device_attach);
21c7f30b 257 }
0d3e5a2e
PM
258 up(&dev->sem);
259 return ret;
2287c322 260}
4a3ad20c 261EXPORT_SYMBOL_GPL(device_attach);
2287c322 262
4a3ad20c 263static int __driver_attach(struct device *dev, void *data)
2287c322 264{
4a3ad20c 265 struct device_driver *drv = data;
0d3e5a2e
PM
266
267 /*
268 * Lock device and try to bind to it. We drop the error
269 * here and always return 0, because we need to keep trying
270 * to bind to devices and some drivers will return an error
271 * simply if it didn't support the device.
272 *
273 * driver_probe_device() will spit a warning if there
274 * is an error.
275 */
276
6cd49586
AV
277 if (drv->bus->match && !drv->bus->match(dev, drv))
278 return 0;
279
bf74ad5b
AS
280 if (dev->parent) /* Needed for USB */
281 down(&dev->parent->sem);
0d3e5a2e
PM
282 down(&dev->sem);
283 if (!dev->driver)
284 driver_probe_device(drv, dev);
285 up(&dev->sem);
bf74ad5b
AS
286 if (dev->parent)
287 up(&dev->parent->sem);
0d3e5a2e 288
07e4a3e2 289 return 0;
290}
291
292/**
4a3ad20c
GKH
293 * driver_attach - try to bind driver to devices.
294 * @drv: driver.
07e4a3e2 295 *
4a3ad20c
GKH
296 * Walk the list of devices that the bus has on it and try to
297 * match the driver with each one. If driver_probe_device()
298 * returns 0 and the @dev->driver is set, we've found a
299 * compatible pair.
07e4a3e2 300 */
4a3ad20c 301int driver_attach(struct device_driver *drv)
07e4a3e2 302{
f86db396 303 return bus_for_each_dev(drv->bus, NULL, drv, __driver_attach);
07e4a3e2 304}
4a3ad20c 305EXPORT_SYMBOL_GPL(driver_attach);
07e4a3e2 306
ab71c6f0 307/*
4a3ad20c
GKH
308 * __device_release_driver() must be called with @dev->sem held.
309 * When called for a USB interface, @dev->parent->sem must be held as well.
07e4a3e2 310 */
4a3ad20c 311static void __device_release_driver(struct device *dev)
07e4a3e2 312{
4a3ad20c 313 struct device_driver *drv;
07e4a3e2 314
ef2c5174 315 drv = dev->driver;
c95a6b05 316 if (drv) {
1901fb26 317 driver_sysfs_remove(dev);
0d3e5a2e 318
116af378 319 if (dev->bus)
c6f7e72a 320 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
116af378
BH
321 BUS_NOTIFY_UNBIND_DRIVER,
322 dev);
323
0f836ca4 324 if (dev->bus && dev->bus->remove)
594c8281
RK
325 dev->bus->remove(dev);
326 else if (drv->remove)
0d3e5a2e 327 drv->remove(dev);
9ac7849e 328 devres_release_all(dev);
0d3e5a2e 329 dev->driver = NULL;
cda5e83f 330 klist_remove(&dev->knode_driver);
0d3e5a2e 331 }
07e4a3e2 332}
333
ab71c6f0 334/**
4a3ad20c
GKH
335 * device_release_driver - manually detach device from driver.
336 * @dev: device.
ab71c6f0 337 *
4a3ad20c
GKH
338 * Manually detach device from driver.
339 * When called for a USB interface, @dev->parent->sem must be held.
ab71c6f0 340 */
4a3ad20c 341void device_release_driver(struct device *dev)
94e7b1c5 342{
c95a6b05
AS
343 /*
344 * If anyone calls device_release_driver() recursively from
345 * within their ->remove callback for the same device, they
346 * will deadlock right here.
347 */
348 down(&dev->sem);
349 __device_release_driver(dev);
350 up(&dev->sem);
94e7b1c5 351}
4a3ad20c 352EXPORT_SYMBOL_GPL(device_release_driver);
c95a6b05 353
07e4a3e2 354/**
355 * driver_detach - detach driver from all devices it controls.
356 * @drv: driver.
357 */
4a3ad20c 358void driver_detach(struct device_driver *drv)
07e4a3e2 359{
4a3ad20c 360 struct device *dev;
c95a6b05
AS
361
362 for (;;) {
e5dd1278
GKH
363 spin_lock(&drv->p->klist_devices.k_lock);
364 if (list_empty(&drv->p->klist_devices.k_list)) {
365 spin_unlock(&drv->p->klist_devices.k_lock);
c95a6b05
AS
366 break;
367 }
cda5e83f
GKH
368 dev = list_entry(drv->p->klist_devices.k_list.prev,
369 struct device, knode_driver.n_node);
c95a6b05 370 get_device(dev);
e5dd1278 371 spin_unlock(&drv->p->klist_devices.k_lock);
c95a6b05 372
bf74ad5b
AS
373 if (dev->parent) /* Needed for USB */
374 down(&dev->parent->sem);
c95a6b05
AS
375 down(&dev->sem);
376 if (dev->driver == drv)
377 __device_release_driver(dev);
378 up(&dev->sem);
bf74ad5b
AS
379 if (dev->parent)
380 up(&dev->parent->sem);
c95a6b05
AS
381 put_device(dev);
382 }
07e4a3e2 383}
This page took 0.483545 seconds and 5 git commands to generate.