dd.c 8.9 KB
Newer Older
1
/*
2
 * drivers/base/dd.c - The core device/driver interactions.
3
 *
4 5 6
 * This file contains the (sometimes tricky) code that controls the
 * interactions between devices and drivers, which primarily includes
 * driver binding and unbinding.
7
 *
8 9 10
 * All of this code used to exist in drivers/base/bus.c, but was
 * relocated to here in the name of compartmentalization (since it wasn't
 * strictly code just for the 'struct bus_type'.
11
 *
12 13 14 15
 * Copyright (c) 2002-5 Patrick Mochel
 * Copyright (c) 2002-3 Open Source Development Labs
 * Copyright (c) 2007 Greg Kroah-Hartman <gregkh@suse.de>
 * Copyright (c) 2007 Novell Inc.
16
 *
17
 * This file is released under the GPLv2
18 19 20 21
 */

#include <linux/device.h>
#include <linux/module.h>
22
#include <linux/kthread.h>
23
#include <linux/wait.h>
24 25 26 27 28

#include "base.h"
#include "power/power.h"


29
static void driver_bound(struct device *dev)
30
{
A
Andrew Morton 已提交
31 32 33
	if (klist_node_attached(&dev->knode_driver)) {
		printk(KERN_WARNING "%s: device %s already bound\n",
			__FUNCTION__, kobject_name(&dev->kobj));
34
		return;
A
Andrew Morton 已提交
35
	}
36

37 38
	pr_debug("driver: '%s': %s: bound to device '%s'\n", dev->bus_id,
		 __FUNCTION__, dev->driver->name);
39 40

	if (dev->bus)
41
		blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
42 43
					     BUS_NOTIFY_BOUND_DRIVER, dev);

44
	klist_add_tail(&dev->knode_driver, &dev->driver->p->klist_devices);
45 46 47 48 49 50
}

static int driver_sysfs_add(struct device *dev)
{
	int ret;

51
	ret = sysfs_create_link(&dev->driver->p->kobj, &dev->kobj,
52
			  kobject_name(&dev->kobj));
A
Andrew Morton 已提交
53
	if (ret == 0) {
54
		ret = sysfs_create_link(&dev->kobj, &dev->driver->p->kobj,
A
Andrew Morton 已提交
55 56
					"driver");
		if (ret)
57
			sysfs_remove_link(&dev->driver->p->kobj,
A
Andrew Morton 已提交
58 59 60
					kobject_name(&dev->kobj));
	}
	return ret;
61 62
}

63 64 65 66 67
static void driver_sysfs_remove(struct device *dev)
{
	struct device_driver *drv = dev->driver;

	if (drv) {
68
		sysfs_remove_link(&drv->p->kobj, kobject_name(&dev->kobj));
69 70 71 72 73
		sysfs_remove_link(&dev->kobj, "driver");
	}
}

/**
74 75
 * device_bind_driver - bind a driver to one device.
 * @dev: device.
76
 *
77 78
 * Allow manual attachment of a driver to a device.
 * Caller must have already set @dev->driver.
79
 *
80 81 82 83
 * Note that this does not modify the bus reference count
 * nor take the bus's rwsem. Please verify those are accounted
 * for before calling this. (It is ok to call with no other effort
 * from a driver's probe() method.)
84
 *
85
 * This function must be called with @dev->sem held.
86 87 88
 */
int device_bind_driver(struct device *dev)
{
89 90 91 92 93 94
	int ret;

	ret = driver_sysfs_add(dev);
	if (!ret)
		driver_bound(dev);
	return ret;
95
}
96
EXPORT_SYMBOL_GPL(device_bind_driver);
97

98
static atomic_t probe_count = ATOMIC_INIT(0);
99 100
static DECLARE_WAIT_QUEUE_HEAD(probe_waitqueue);

101
static int really_probe(struct device *dev, struct device_driver *drv)
102
{
103
	int ret = 0;
104

105
	atomic_inc(&probe_count);
106 107
	pr_debug("bus: '%s': %s: probing driver %s with device %s\n",
		 drv->bus->name, __FUNCTION__, drv->name, dev->bus_id);
T
Tejun Heo 已提交
108
	WARN_ON(!list_empty(&dev->devres_head));
109 110

	dev->driver = drv;
111 112 113 114 115 116
	if (driver_sysfs_add(dev)) {
		printk(KERN_ERR "%s: driver_sysfs_add(%s) failed\n",
			__FUNCTION__, dev->bus_id);
		goto probe_failed;
	}

117 118
	if (dev->bus->probe) {
		ret = dev->bus->probe(dev);
119
		if (ret)
120
			goto probe_failed;
121
	} else if (drv->probe) {
122
		ret = drv->probe(dev);
123
		if (ret)
124
			goto probe_failed;
A
Andrew Morton 已提交
125
	}
126 127

	driver_bound(dev);
128
	ret = 1;
129 130
	pr_debug("bus: '%s': %s: bound device %s to driver %s\n",
		 drv->bus->name, __FUNCTION__, dev->bus_id, drv->name);
131
	goto done;
132

133
probe_failed:
T
Tejun Heo 已提交
134
	devres_release_all(dev);
135 136 137
	driver_sysfs_remove(dev);
	dev->driver = NULL;

138
	if (ret != -ENODEV && ret != -ENXIO) {
139 140 141 142 143
		/* driver matched but the probe failed */
		printk(KERN_WARNING
		       "%s: probe of %s failed with error %d\n",
		       drv->name, dev->bus_id, ret);
	}
144 145 146 147 148
	/*
	 * Ignore errors returned by ->probe so that the next driver can try
	 * its luck.
	 */
	ret = 0;
149 150
done:
	atomic_dec(&probe_count);
151
	wake_up(&probe_waitqueue);
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
	return ret;
}

/**
 * driver_probe_done
 * Determine if the probe sequence is finished or not.
 *
 * Should somehow figure out how to use a semaphore, not an atomic variable...
 */
int driver_probe_done(void)
{
	pr_debug("%s: probe_count = %d\n", __FUNCTION__,
		 atomic_read(&probe_count));
	if (atomic_read(&probe_count))
		return -EBUSY;
	return 0;
}

/**
 * driver_probe_device - attempt to bind device & driver together
 * @drv: driver to bind a device to
 * @dev: device to try to bind to the driver
 *
 * First, we call the bus's match function, if one present, which should
 * compare the device IDs the driver supports with the device IDs of the
 * device. Note we don't do this ourselves because we don't know the
 * format of the ID structures, nor what is to be considered a match and
 * what is not.
 *
181 182
 * This function returns 1 if a match is found, -ENODEV if the device is
 * not registered, and 0 otherwise.
183 184 185 186
 *
 * This function must be called with @dev->sem held.  When called for a
 * USB interface, @dev->parent->sem must be held as well.
 */
187
int driver_probe_device(struct device_driver *drv, struct device *dev)
188 189 190
{
	int ret = 0;

191 192
	if (!device_is_registered(dev))
		return -ENODEV;
193 194 195
	if (drv->bus->match && !drv->bus->match(dev, drv))
		goto done;

196 197
	pr_debug("bus: '%s': %s: matched device %s with driver %s\n",
		 drv->bus->name, __FUNCTION__, dev->bus_id, drv->name);
198

199
	ret = really_probe(dev, drv);
200 201

done:
202
	return ret;
203 204
}

205
static int __device_attach(struct device_driver *drv, void *data)
206
{
207
	struct device *dev = data;
208
	return driver_probe_device(drv, dev);
209 210
}

211
/**
212 213
 * device_attach - try to attach device to a driver.
 * @dev: device.
214
 *
215 216 217
 * Walk the list of drivers that the bus has and call
 * driver_probe_device() for each pair. If a compatible
 * pair is found, break out and return.
218
 *
219 220 221
 * Returns 1 if the device was bound to a driver;
 * 0 if no matching device was found;
 * -ENODEV if the device is not registered.
222
 *
223
 * When called for a USB interface, @dev->parent->sem must be held.
224
 */
225
int device_attach(struct device *dev)
226
{
227 228 229
	int ret = 0;

	down(&dev->sem);
230
	if (dev->driver) {
A
Andrew Morton 已提交
231 232 233
		ret = device_bind_driver(dev);
		if (ret == 0)
			ret = 1;
234 235 236 237
		else {
			dev->driver = NULL;
			ret = 0;
		}
238
	} else {
239
		ret = bus_for_each_drv(dev->bus, NULL, dev, __device_attach);
240
	}
241 242
	up(&dev->sem);
	return ret;
243
}
244
EXPORT_SYMBOL_GPL(device_attach);
245

246
static int __driver_attach(struct device *dev, void *data)
247
{
248
	struct device_driver *drv = data;
249 250 251 252 253 254 255 256 257 258 259

	/*
	 * Lock device and try to bind to it. We drop the error
	 * here and always return 0, because we need to keep trying
	 * to bind to devices and some drivers will return an error
	 * simply if it didn't support the device.
	 *
	 * driver_probe_device() will spit a warning if there
	 * is an error.
	 */

260 261
	if (dev->parent)	/* Needed for USB */
		down(&dev->parent->sem);
262 263 264 265
	down(&dev->sem);
	if (!dev->driver)
		driver_probe_device(drv, dev);
	up(&dev->sem);
266 267
	if (dev->parent)
		up(&dev->parent->sem);
268

269 270 271 272
	return 0;
}

/**
273 274
 * driver_attach - try to bind driver to devices.
 * @drv: driver.
275
 *
276 277 278 279
 * Walk the list of devices that the bus has on it and try to
 * match the driver with each one.  If driver_probe_device()
 * returns 0 and the @dev->driver is set, we've found a
 * compatible pair.
280
 */
281
int driver_attach(struct device_driver *drv)
282
{
A
Andrew Morton 已提交
283
	return bus_for_each_dev(drv->bus, NULL, drv, __driver_attach);
284
}
285
EXPORT_SYMBOL_GPL(driver_attach);
286

287
/*
288 289
 * __device_release_driver() must be called with @dev->sem held.
 * When called for a USB interface, @dev->parent->sem must be held as well.
290
 */
291
static void __device_release_driver(struct device *dev)
292
{
293
	struct device_driver *drv;
294

295
	drv = dev->driver;
296
	if (drv) {
297
		driver_sysfs_remove(dev);
298 299
		sysfs_remove_link(&dev->kobj, "driver");

300
		if (dev->bus)
301
			blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
302 303 304
						     BUS_NOTIFY_UNBIND_DRIVER,
						     dev);

305
		if (dev->bus && dev->bus->remove)
306 307
			dev->bus->remove(dev);
		else if (drv->remove)
308
			drv->remove(dev);
T
Tejun Heo 已提交
309
		devres_release_all(dev);
310
		dev->driver = NULL;
311
		klist_remove(&dev->knode_driver);
312
	}
313 314
}

315
/**
316 317
 * device_release_driver - manually detach device from driver.
 * @dev: device.
318
 *
319 320
 * Manually detach device from driver.
 * When called for a USB interface, @dev->parent->sem must be held.
321
 */
322
void device_release_driver(struct device *dev)
323
{
324 325 326 327 328 329 330 331
	/*
	 * If anyone calls device_release_driver() recursively from
	 * within their ->remove callback for the same device, they
	 * will deadlock right here.
	 */
	down(&dev->sem);
	__device_release_driver(dev);
	up(&dev->sem);
332
}
333
EXPORT_SYMBOL_GPL(device_release_driver);
334

335 336 337 338
/**
 * driver_detach - detach driver from all devices it controls.
 * @drv: driver.
 */
339
void driver_detach(struct device_driver *drv)
340
{
341
	struct device *dev;
342 343

	for (;;) {
344 345 346
		spin_lock(&drv->p->klist_devices.k_lock);
		if (list_empty(&drv->p->klist_devices.k_list)) {
			spin_unlock(&drv->p->klist_devices.k_lock);
347 348
			break;
		}
349
		dev = list_entry(drv->p->klist_devices.k_list.prev,
350 351
				struct device, knode_driver.n_node);
		get_device(dev);
352
		spin_unlock(&drv->p->klist_devices.k_lock);
353

354 355
		if (dev->parent)	/* Needed for USB */
			down(&dev->parent->sem);
356 357 358 359
		down(&dev->sem);
		if (dev->driver == drv)
			__device_release_driver(dev);
		up(&dev->sem);
360 361
		if (dev->parent)
			up(&dev->parent->sem);
362 363
		put_device(dev);
	}
364
}