mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 1 | /* |
| 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 Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 38 | * |
| 39 | * This function must be called with @dev->sem held. |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 40 | */ |
| 41 | void device_bind_driver(struct device * dev) |
| 42 | { |
| 43 | pr_debug("bound device '%s' to driver '%s'\n", |
| 44 | dev->bus_id, dev->driver->name); |
James Bottomley | d856f1e | 2005-08-19 09:14:01 -0400 | [diff] [blame^] | 45 | klist_add_tail(&dev->knode_driver, &dev->driver->klist_devices); |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 46 | sysfs_create_link(&dev->driver->kobj, &dev->kobj, |
| 47 | kobject_name(&dev->kobj)); |
| 48 | sysfs_create_link(&dev->kobj, &dev->driver->kobj, "driver"); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * driver_probe_device - attempt to bind device & driver. |
| 53 | * @drv: driver. |
| 54 | * @dev: device. |
| 55 | * |
| 56 | * First, we call the bus's match function, if one present, which |
| 57 | * should compare the device IDs the driver supports with the |
| 58 | * device IDs of the device. Note we don't do this ourselves |
| 59 | * because we don't know the format of the ID structures, nor what |
| 60 | * is to be considered a match and what is not. |
| 61 | * |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 62 | * |
| 63 | * This function returns 1 if a match is found, an error if one |
| 64 | * occurs (that is not -ENODEV or -ENXIO), and 0 otherwise. |
| 65 | * |
| 66 | * This function must be called with @dev->sem held. |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 67 | */ |
Greg Kroah-Hartman | afdce75 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 68 | int driver_probe_device(struct device_driver * drv, struct device * dev) |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 69 | { |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 70 | int ret = 0; |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 71 | |
| 72 | if (drv->bus->match && !drv->bus->match(dev, drv)) |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 73 | goto Done; |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 74 | |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 75 | pr_debug("%s: Matched Device %s with Driver %s\n", |
| 76 | drv->bus->name, dev->bus_id, drv->name); |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 77 | dev->driver = drv; |
| 78 | if (drv->probe) { |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 79 | ret = drv->probe(dev); |
| 80 | if (ret) { |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 81 | dev->driver = NULL; |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 82 | goto ProbeFailed; |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 83 | } |
| 84 | } |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 85 | device_bind_driver(dev); |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 86 | ret = 1; |
| 87 | pr_debug("%s: Bound Device %s to Driver %s\n", |
| 88 | drv->bus->name, dev->bus_id, drv->name); |
| 89 | goto Done; |
| 90 | |
| 91 | ProbeFailed: |
| 92 | if (ret == -ENODEV || ret == -ENXIO) { |
| 93 | /* Driver matched, but didn't support device |
| 94 | * or device not found. |
| 95 | * Not an error; keep going. |
| 96 | */ |
| 97 | ret = 0; |
| 98 | } else { |
| 99 | /* driver matched but the probe failed */ |
| 100 | printk(KERN_WARNING |
| 101 | "%s: probe of %s failed with error %d\n", |
| 102 | drv->name, dev->bus_id, ret); |
| 103 | } |
| 104 | Done: |
| 105 | return ret; |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 106 | } |
| 107 | |
mochel@digitalimplant.org | 2287c322 | 2005-03-24 10:50:24 -0800 | [diff] [blame] | 108 | static int __device_attach(struct device_driver * drv, void * data) |
| 109 | { |
| 110 | struct device * dev = data; |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 111 | return driver_probe_device(drv, dev); |
mochel@digitalimplant.org | 2287c322 | 2005-03-24 10:50:24 -0800 | [diff] [blame] | 112 | } |
| 113 | |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 114 | /** |
| 115 | * device_attach - try to attach device to a driver. |
| 116 | * @dev: device. |
| 117 | * |
| 118 | * Walk the list of drivers that the bus has and call |
| 119 | * driver_probe_device() for each pair. If a compatible |
| 120 | * pair is found, break out and return. |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 121 | * |
Hannes Reinecke | ca2b94b | 2005-05-18 10:42:23 +0200 | [diff] [blame] | 122 | * Returns 1 if the device was bound to a driver; |
| 123 | * 0 if no matching device was found; error code otherwise. |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 124 | */ |
| 125 | int device_attach(struct device * dev) |
| 126 | { |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 127 | int ret = 0; |
| 128 | |
| 129 | down(&dev->sem); |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 130 | if (dev->driver) { |
| 131 | device_bind_driver(dev); |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 132 | ret = 1; |
| 133 | } else |
| 134 | ret = bus_for_each_drv(dev->bus, NULL, dev, __device_attach); |
| 135 | up(&dev->sem); |
| 136 | return ret; |
mochel@digitalimplant.org | 2287c322 | 2005-03-24 10:50:24 -0800 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | static int __driver_attach(struct device * dev, void * data) |
| 140 | { |
| 141 | struct device_driver * drv = data; |
mochel@digitalimplant.org | 2287c322 | 2005-03-24 10:50:24 -0800 | [diff] [blame] | 142 | |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 143 | /* |
| 144 | * Lock device and try to bind to it. We drop the error |
| 145 | * here and always return 0, because we need to keep trying |
| 146 | * to bind to devices and some drivers will return an error |
| 147 | * simply if it didn't support the device. |
| 148 | * |
| 149 | * driver_probe_device() will spit a warning if there |
| 150 | * is an error. |
| 151 | */ |
| 152 | |
| 153 | down(&dev->sem); |
| 154 | if (!dev->driver) |
| 155 | driver_probe_device(drv, dev); |
| 156 | up(&dev->sem); |
| 157 | |
| 158 | |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 159 | return 0; |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * driver_attach - try to bind driver to devices. |
| 164 | * @drv: driver. |
| 165 | * |
| 166 | * Walk the list of devices that the bus has on it and try to |
| 167 | * match the driver with each one. If driver_probe_device() |
| 168 | * returns 0 and the @dev->driver is set, we've found a |
| 169 | * compatible pair. |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 170 | */ |
| 171 | void driver_attach(struct device_driver * drv) |
| 172 | { |
mochel@digitalimplant.org | 2287c322 | 2005-03-24 10:50:24 -0800 | [diff] [blame] | 173 | bus_for_each_dev(drv->bus, NULL, drv, __driver_attach); |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | /** |
| 177 | * device_release_driver - manually detach device from driver. |
| 178 | * @dev: device. |
| 179 | * |
| 180 | * Manually detach device from driver. |
Alan Stern | c95a6b0 | 2005-05-06 15:38:33 -0400 | [diff] [blame] | 181 | * |
| 182 | * __device_release_driver() must be called with @dev->sem held. |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 183 | */ |
Alan Stern | c95a6b0 | 2005-05-06 15:38:33 -0400 | [diff] [blame] | 184 | |
| 185 | static void __device_release_driver(struct device * dev) |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 186 | { |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 187 | struct device_driver * drv; |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 188 | |
Alan Stern | c95a6b0 | 2005-05-06 15:38:33 -0400 | [diff] [blame] | 189 | drv = dev->driver; |
| 190 | if (drv) { |
| 191 | get_driver(drv); |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 192 | sysfs_remove_link(&drv->kobj, kobject_name(&dev->kobj)); |
| 193 | sysfs_remove_link(&dev->kobj, "driver"); |
Alan Stern | c95a6b0 | 2005-05-06 15:38:33 -0400 | [diff] [blame] | 194 | klist_remove(&dev->knode_driver); |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 195 | |
| 196 | if (drv->remove) |
| 197 | drv->remove(dev); |
| 198 | dev->driver = NULL; |
Alan Stern | c95a6b0 | 2005-05-06 15:38:33 -0400 | [diff] [blame] | 199 | put_driver(drv); |
Patrick Mochel | 0d3e5a2 | 2005-04-05 23:46:33 -0700 | [diff] [blame] | 200 | } |
Alan Stern | c95a6b0 | 2005-05-06 15:38:33 -0400 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | void device_release_driver(struct device * dev) |
| 204 | { |
| 205 | /* |
| 206 | * If anyone calls device_release_driver() recursively from |
| 207 | * within their ->remove callback for the same device, they |
| 208 | * will deadlock right here. |
| 209 | */ |
| 210 | down(&dev->sem); |
| 211 | __device_release_driver(dev); |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 212 | up(&dev->sem); |
| 213 | } |
| 214 | |
mochel@digitalimplant.org | 94e7b1c | 2005-03-21 12:25:36 -0800 | [diff] [blame] | 215 | |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 216 | /** |
| 217 | * driver_detach - detach driver from all devices it controls. |
| 218 | * @drv: driver. |
| 219 | */ |
| 220 | void driver_detach(struct device_driver * drv) |
| 221 | { |
Alan Stern | c95a6b0 | 2005-05-06 15:38:33 -0400 | [diff] [blame] | 222 | struct device * dev; |
| 223 | |
| 224 | for (;;) { |
| 225 | spin_lock_irq(&drv->klist_devices.k_lock); |
| 226 | if (list_empty(&drv->klist_devices.k_list)) { |
| 227 | spin_unlock_irq(&drv->klist_devices.k_lock); |
| 228 | break; |
| 229 | } |
| 230 | dev = list_entry(drv->klist_devices.k_list.prev, |
| 231 | struct device, knode_driver.n_node); |
| 232 | get_device(dev); |
| 233 | spin_unlock_irq(&drv->klist_devices.k_lock); |
| 234 | |
| 235 | down(&dev->sem); |
| 236 | if (dev->driver == drv) |
| 237 | __device_release_driver(dev); |
| 238 | up(&dev->sem); |
| 239 | put_device(dev); |
| 240 | } |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | |
mochel@digitalimplant.org | 07e4a3e | 2005-03-21 10:52:54 -0800 | [diff] [blame] | 244 | EXPORT_SYMBOL_GPL(device_bind_driver); |
| 245 | EXPORT_SYMBOL_GPL(device_release_driver); |
| 246 | EXPORT_SYMBOL_GPL(device_attach); |
| 247 | EXPORT_SYMBOL_GPL(driver_attach); |
| 248 | |