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
{
31
	if (klist_node_attached(&dev->knode_driver)) {
A
Andrew Morton 已提交
32
		printk(KERN_WARNING "%s: device %s already bound\n",
33
			__func__, kobject_name(&dev->kobj));
34
		return;
A
Andrew Morton 已提交
35
	}
36

37
	pr_debug("driver: '%s': %s: bound to device '%s'\n", dev_name(dev),
38
		 __func__, 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
	pr_debug("bus: '%s': %s: probing driver %s with device %s\n",
107
		 drv->bus->name, __func__, drv->name, dev_name(dev));
T
Tejun Heo 已提交
108
	WARN_ON(!list_empty(&dev->devres_head));
109 110

	dev->driver = drv;
111 112
	if (driver_sysfs_add(dev)) {
		printk(KERN_ERR "%s: driver_sysfs_add(%s) failed\n",
113
			__func__, dev_name(dev));
114 115 116
		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
	pr_debug("bus: '%s': %s: bound device %s to driver %s\n",
130
		 drv->bus->name, __func__, dev_name(dev), 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
		/* driver matched but the probe failed */
		printk(KERN_WARNING
		       "%s: probe of %s failed with error %d\n",
142
		       drv->name, dev_name(dev), ret);
143
	}
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
	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)
{
163
	pr_debug("%s: probe_count = %d\n", __func__,
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
		 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
	pr_debug("bus: '%s': %s: matched device %s with driver %s\n",
197
		 drv->bus->name, __func__, dev_name(dev), 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 262
	if (drv->bus->match && !drv->bus->match(dev, drv))
		return 0;

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

272 273 274 275
	return 0;
}

/**
276 277
 * driver_attach - try to bind driver to devices.
 * @drv: driver.
278
 *
279 280 281 282
 * 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.
283
 */
284
int driver_attach(struct device_driver *drv)
285
{
A
Andrew Morton 已提交
286
	return bus_for_each_dev(drv->bus, NULL, drv, __driver_attach);
287
}
288
EXPORT_SYMBOL_GPL(driver_attach);
289

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

298
	drv = dev->driver;
299
	if (drv) {
300
		driver_sysfs_remove(dev);
301

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

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

317
/**
318 319
 * device_release_driver - manually detach device from driver.
 * @dev: device.
320
 *
321 322
 * Manually detach device from driver.
 * When called for a USB interface, @dev->parent->sem must be held.
323
 */
324
void device_release_driver(struct device *dev)
325
{
326 327 328 329 330 331 332 333
	/*
	 * 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);
334
}
335
EXPORT_SYMBOL_GPL(device_release_driver);
336

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

	for (;;) {
346 347 348
		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);
349 350
			break;
		}
351 352
		dev = list_entry(drv->p->klist_devices.k_list.prev,
				struct device, knode_driver.n_node);
353
		get_device(dev);
354
		spin_unlock(&drv->p->klist_devices.k_lock);
355

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