blob: 2b905016664d9779439c4fa047507256b0cb2faf [file] [log] [blame]
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -08001/*
2 * drivers/base/dd.c - The core device/driver interactions.
3 *
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.
7 *
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'.
11 *
12 * Copyright (c) 2002-5 Patrick Mochel
13 * Copyright (c) 2002-3 Open Source Development Labs
14 *
15 * This file is released under the GPLv2
16 */
17
18#include <linux/device.h>
19#include <linux/module.h>
20
21#include "base.h"
22#include "power/power.h"
23
24#define to_drv(node) container_of(node, struct device_driver, kobj.entry)
25
26
27/**
28 * device_bind_driver - bind a driver to one device.
29 * @dev: device.
30 *
31 * Allow manual attachment of a driver to a device.
32 * Caller must have already set @dev->driver.
33 *
34 * Note that this does not modify the bus reference count
35 * nor take the bus's rwsem. Please verify those are accounted
36 * for before calling this. (It is ok to call with no other effort
37 * from a driver's probe() method.)
Patrick Mochel0d3e5a22005-04-05 23:46:33 -070038 *
39 * This function must be called with @dev->sem held.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080040 */
41void device_bind_driver(struct device * dev)
42{
Daniel Ritz4c898c72005-09-22 00:47:11 -070043 if (klist_node_attached(&dev->knode_driver))
44 return;
45
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080046 pr_debug("bound device '%s' to driver '%s'\n",
47 dev->bus_id, dev->driver->name);
James Bottomleyd856f1e32005-08-19 09:14:01 -040048 klist_add_tail(&dev->knode_driver, &dev->driver->klist_devices);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080049 sysfs_create_link(&dev->driver->kobj, &dev->kobj,
50 kobject_name(&dev->kobj));
51 sysfs_create_link(&dev->kobj, &dev->driver->kobj, "driver");
52}
53
54/**
55 * driver_probe_device - attempt to bind device & driver.
56 * @drv: driver.
57 * @dev: device.
58 *
59 * First, we call the bus's match function, if one present, which
60 * should compare the device IDs the driver supports with the
61 * device IDs of the device. Note we don't do this ourselves
62 * because we don't know the format of the ID structures, nor what
63 * is to be considered a match and what is not.
64 *
Patrick Mochel0d3e5a22005-04-05 23:46:33 -070065 * This function returns 1 if a match is found, an error if one
66 * occurs (that is not -ENODEV or -ENXIO), and 0 otherwise.
67 *
Alan Sternbf74ad52005-11-17 16:54:12 -050068 * This function must be called with @dev->sem held. When called
69 * for a USB interface, @dev->parent->sem must be held as well.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080070 */
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -070071int driver_probe_device(struct device_driver * drv, struct device * dev)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080072{
Patrick Mochel0d3e5a22005-04-05 23:46:33 -070073 int ret = 0;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080074
75 if (drv->bus->match && !drv->bus->match(dev, drv))
Patrick Mochel0d3e5a22005-04-05 23:46:33 -070076 goto Done;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080077
Patrick Mochel0d3e5a22005-04-05 23:46:33 -070078 pr_debug("%s: Matched Device %s with Driver %s\n",
79 drv->bus->name, dev->bus_id, drv->name);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080080 dev->driver = drv;
81 if (drv->probe) {
Patrick Mochel0d3e5a22005-04-05 23:46:33 -070082 ret = drv->probe(dev);
83 if (ret) {
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080084 dev->driver = NULL;
Patrick Mochel0d3e5a22005-04-05 23:46:33 -070085 goto ProbeFailed;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080086 }
87 }
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080088 device_bind_driver(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -070089 ret = 1;
90 pr_debug("%s: Bound Device %s to Driver %s\n",
91 drv->bus->name, dev->bus_id, drv->name);
92 goto Done;
93
94 ProbeFailed:
95 if (ret == -ENODEV || ret == -ENXIO) {
96 /* Driver matched, but didn't support device
97 * or device not found.
98 * Not an error; keep going.
99 */
100 ret = 0;
101 } else {
102 /* driver matched but the probe failed */
103 printk(KERN_WARNING
104 "%s: probe of %s failed with error %d\n",
105 drv->name, dev->bus_id, ret);
106 }
107 Done:
108 return ret;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800109}
110
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800111static int __device_attach(struct device_driver * drv, void * data)
112{
113 struct device * dev = data;
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700114 return driver_probe_device(drv, dev);
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800115}
116
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800117/**
118 * device_attach - try to attach device to a driver.
119 * @dev: device.
120 *
121 * Walk the list of drivers that the bus has and call
122 * driver_probe_device() for each pair. If a compatible
123 * pair is found, break out and return.
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700124 *
Hannes Reineckeca2b94b2005-05-18 10:42:23 +0200125 * Returns 1 if the device was bound to a driver;
126 * 0 if no matching device was found; error code otherwise.
Alan Sternbf74ad52005-11-17 16:54:12 -0500127 *
128 * When called for a USB interface, @dev->parent->sem must be held.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800129 */
130int device_attach(struct device * dev)
131{
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700132 int ret = 0;
133
134 down(&dev->sem);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800135 if (dev->driver) {
136 device_bind_driver(dev);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700137 ret = 1;
138 } else
139 ret = bus_for_each_drv(dev->bus, NULL, dev, __device_attach);
140 up(&dev->sem);
141 return ret;
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800142}
143
144static int __driver_attach(struct device * dev, void * data)
145{
146 struct device_driver * drv = data;
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800147
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700148 /*
149 * Lock device and try to bind to it. We drop the error
150 * here and always return 0, because we need to keep trying
151 * to bind to devices and some drivers will return an error
152 * simply if it didn't support the device.
153 *
154 * driver_probe_device() will spit a warning if there
155 * is an error.
156 */
157
Alan Sternbf74ad52005-11-17 16:54:12 -0500158 if (dev->parent) /* Needed for USB */
159 down(&dev->parent->sem);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700160 down(&dev->sem);
161 if (!dev->driver)
162 driver_probe_device(drv, dev);
163 up(&dev->sem);
Alan Sternbf74ad52005-11-17 16:54:12 -0500164 if (dev->parent)
165 up(&dev->parent->sem);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700166
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800167 return 0;
168}
169
170/**
171 * driver_attach - try to bind driver to devices.
172 * @drv: driver.
173 *
174 * Walk the list of devices that the bus has on it and try to
175 * match the driver with each one. If driver_probe_device()
176 * returns 0 and the @dev->driver is set, we've found a
177 * compatible pair.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800178 */
179void driver_attach(struct device_driver * drv)
180{
mochel@digitalimplant.org2287c322005-03-24 10:50:24 -0800181 bus_for_each_dev(drv->bus, NULL, drv, __driver_attach);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800182}
183
184/**
185 * device_release_driver - manually detach device from driver.
186 * @dev: device.
187 *
188 * Manually detach device from driver.
Alan Sternc95a6b02005-05-06 15:38:33 -0400189 *
190 * __device_release_driver() must be called with @dev->sem held.
Alan Sternbf74ad52005-11-17 16:54:12 -0500191 * When called for a USB interface, @dev->parent->sem must be held
192 * as well.
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800193 */
Alan Sternc95a6b02005-05-06 15:38:33 -0400194
195static void __device_release_driver(struct device * dev)
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800196{
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700197 struct device_driver * drv;
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800198
Alan Sternc95a6b02005-05-06 15:38:33 -0400199 drv = dev->driver;
200 if (drv) {
201 get_driver(drv);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700202 sysfs_remove_link(&drv->kobj, kobject_name(&dev->kobj));
203 sysfs_remove_link(&dev->kobj, "driver");
Alan Sternc95a6b02005-05-06 15:38:33 -0400204 klist_remove(&dev->knode_driver);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700205
206 if (drv->remove)
207 drv->remove(dev);
208 dev->driver = NULL;
Alan Sternc95a6b02005-05-06 15:38:33 -0400209 put_driver(drv);
Patrick Mochel0d3e5a22005-04-05 23:46:33 -0700210 }
Alan Sternc95a6b02005-05-06 15:38:33 -0400211}
212
213void device_release_driver(struct device * dev)
214{
215 /*
216 * If anyone calls device_release_driver() recursively from
217 * within their ->remove callback for the same device, they
218 * will deadlock right here.
219 */
220 down(&dev->sem);
221 __device_release_driver(dev);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800222 up(&dev->sem);
223}
224
mochel@digitalimplant.org94e7b1c52005-03-21 12:25:36 -0800225
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800226/**
227 * driver_detach - detach driver from all devices it controls.
228 * @drv: driver.
229 */
230void driver_detach(struct device_driver * drv)
231{
Alan Sternc95a6b02005-05-06 15:38:33 -0400232 struct device * dev;
233
234 for (;;) {
Alan Stern2b08c8d2005-11-23 15:43:50 -0800235 spin_lock(&drv->klist_devices.k_lock);
Alan Sternc95a6b02005-05-06 15:38:33 -0400236 if (list_empty(&drv->klist_devices.k_list)) {
Alan Stern2b08c8d2005-11-23 15:43:50 -0800237 spin_unlock(&drv->klist_devices.k_lock);
Alan Sternc95a6b02005-05-06 15:38:33 -0400238 break;
239 }
240 dev = list_entry(drv->klist_devices.k_list.prev,
241 struct device, knode_driver.n_node);
242 get_device(dev);
Alan Stern2b08c8d2005-11-23 15:43:50 -0800243 spin_unlock(&drv->klist_devices.k_lock);
Alan Sternc95a6b02005-05-06 15:38:33 -0400244
Alan Sternbf74ad52005-11-17 16:54:12 -0500245 if (dev->parent) /* Needed for USB */
246 down(&dev->parent->sem);
Alan Sternc95a6b02005-05-06 15:38:33 -0400247 down(&dev->sem);
248 if (dev->driver == drv)
249 __device_release_driver(dev);
250 up(&dev->sem);
Alan Sternbf74ad52005-11-17 16:54:12 -0500251 if (dev->parent)
252 up(&dev->parent->sem);
Alan Sternc95a6b02005-05-06 15:38:33 -0400253 put_device(dev);
254 }
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800255}
256
257
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -0800258EXPORT_SYMBOL_GPL(device_bind_driver);
259EXPORT_SYMBOL_GPL(device_release_driver);
260EXPORT_SYMBOL_GPL(device_attach);
261EXPORT_SYMBOL_GPL(driver_attach);
262