Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * bus.c - bus driver management |
| 3 | * |
| 4 | * Copyright (c) 2002-3 Patrick Mochel |
| 5 | * Copyright (c) 2002-3 Open Source Development Labs |
| 6 | * |
| 7 | * This file is released under the GPLv2 |
| 8 | * |
| 9 | */ |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/device.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/errno.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/string.h> |
| 16 | #include "base.h" |
| 17 | #include "power/power.h" |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #define to_bus_attr(_attr) container_of(_attr, struct bus_attribute, attr) |
| 20 | #define to_bus(obj) container_of(obj, struct bus_type, subsys.kset.kobj) |
| 21 | |
| 22 | /* |
| 23 | * sysfs bindings for drivers |
| 24 | */ |
| 25 | |
| 26 | #define to_drv_attr(_attr) container_of(_attr, struct driver_attribute, attr) |
| 27 | #define to_driver(obj) container_of(obj, struct device_driver, kobj) |
| 28 | |
| 29 | |
| 30 | static ssize_t |
| 31 | drv_attr_show(struct kobject * kobj, struct attribute * attr, char * buf) |
| 32 | { |
| 33 | struct driver_attribute * drv_attr = to_drv_attr(attr); |
| 34 | struct device_driver * drv = to_driver(kobj); |
Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 35 | ssize_t ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
| 37 | if (drv_attr->show) |
| 38 | ret = drv_attr->show(drv, buf); |
| 39 | return ret; |
| 40 | } |
| 41 | |
| 42 | static ssize_t |
| 43 | drv_attr_store(struct kobject * kobj, struct attribute * attr, |
| 44 | const char * buf, size_t count) |
| 45 | { |
| 46 | struct driver_attribute * drv_attr = to_drv_attr(attr); |
| 47 | struct device_driver * drv = to_driver(kobj); |
Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 48 | ssize_t ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | if (drv_attr->store) |
| 51 | ret = drv_attr->store(drv, buf, count); |
| 52 | return ret; |
| 53 | } |
| 54 | |
| 55 | static struct sysfs_ops driver_sysfs_ops = { |
| 56 | .show = drv_attr_show, |
| 57 | .store = drv_attr_store, |
| 58 | }; |
| 59 | |
| 60 | |
| 61 | static void driver_release(struct kobject * kobj) |
| 62 | { |
| 63 | struct device_driver * drv = to_driver(kobj); |
| 64 | complete(&drv->unloaded); |
| 65 | } |
| 66 | |
| 67 | static struct kobj_type ktype_driver = { |
| 68 | .sysfs_ops = &driver_sysfs_ops, |
| 69 | .release = driver_release, |
| 70 | }; |
| 71 | |
| 72 | |
| 73 | /* |
| 74 | * sysfs bindings for buses |
| 75 | */ |
| 76 | |
| 77 | |
| 78 | static ssize_t |
| 79 | bus_attr_show(struct kobject * kobj, struct attribute * attr, char * buf) |
| 80 | { |
| 81 | struct bus_attribute * bus_attr = to_bus_attr(attr); |
| 82 | struct bus_type * bus = to_bus(kobj); |
| 83 | ssize_t ret = 0; |
| 84 | |
| 85 | if (bus_attr->show) |
| 86 | ret = bus_attr->show(bus, buf); |
| 87 | return ret; |
| 88 | } |
| 89 | |
| 90 | static ssize_t |
| 91 | bus_attr_store(struct kobject * kobj, struct attribute * attr, |
| 92 | const char * buf, size_t count) |
| 93 | { |
| 94 | struct bus_attribute * bus_attr = to_bus_attr(attr); |
| 95 | struct bus_type * bus = to_bus(kobj); |
| 96 | ssize_t ret = 0; |
| 97 | |
| 98 | if (bus_attr->store) |
| 99 | ret = bus_attr->store(bus, buf, count); |
| 100 | return ret; |
| 101 | } |
| 102 | |
| 103 | static struct sysfs_ops bus_sysfs_ops = { |
| 104 | .show = bus_attr_show, |
| 105 | .store = bus_attr_store, |
| 106 | }; |
| 107 | |
| 108 | int bus_create_file(struct bus_type * bus, struct bus_attribute * attr) |
| 109 | { |
| 110 | int error; |
| 111 | if (get_bus(bus)) { |
| 112 | error = sysfs_create_file(&bus->subsys.kset.kobj, &attr->attr); |
| 113 | put_bus(bus); |
| 114 | } else |
| 115 | error = -EINVAL; |
| 116 | return error; |
| 117 | } |
| 118 | |
| 119 | void bus_remove_file(struct bus_type * bus, struct bus_attribute * attr) |
| 120 | { |
| 121 | if (get_bus(bus)) { |
| 122 | sysfs_remove_file(&bus->subsys.kset.kobj, &attr->attr); |
| 123 | put_bus(bus); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | static struct kobj_type ktype_bus = { |
| 128 | .sysfs_ops = &bus_sysfs_ops, |
| 129 | |
| 130 | }; |
| 131 | |
Adrian Bunk | 7e4ef08 | 2006-06-26 22:26:56 +0200 | [diff] [blame] | 132 | static decl_subsys(bus, &ktype_bus, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Russell King | 2139bdd | 2006-02-07 12:58:20 -0800 | [diff] [blame] | 135 | #ifdef CONFIG_HOTPLUG |
| 136 | |
Alan Stern | 2b08c8d | 2005-11-23 15:43:50 -0800 | [diff] [blame] | 137 | /* Manually detach a device from its associated driver. */ |
Greg Kroah-Hartman | 151ef38 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 138 | static int driver_helper(struct device *dev, void *data) |
| 139 | { |
| 140 | const char *name = data; |
| 141 | |
| 142 | if (strcmp(name, dev->bus_id) == 0) |
| 143 | return 1; |
| 144 | return 0; |
| 145 | } |
| 146 | |
| 147 | static ssize_t driver_unbind(struct device_driver *drv, |
| 148 | const char *buf, size_t count) |
| 149 | { |
| 150 | struct bus_type *bus = get_bus(drv->bus); |
| 151 | struct device *dev; |
| 152 | int err = -ENODEV; |
| 153 | |
| 154 | dev = bus_find_device(bus, NULL, (void *)buf, driver_helper); |
Alan Stern | 2b08c8d | 2005-11-23 15:43:50 -0800 | [diff] [blame] | 155 | if (dev && dev->driver == drv) { |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 156 | if (dev->parent) /* Needed for USB */ |
| 157 | down(&dev->parent->sem); |
Greg Kroah-Hartman | 151ef38 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 158 | device_release_driver(dev); |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 159 | if (dev->parent) |
| 160 | up(&dev->parent->sem); |
Greg Kroah-Hartman | 151ef38 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 161 | err = count; |
| 162 | } |
Alan Stern | 2b08c8d | 2005-11-23 15:43:50 -0800 | [diff] [blame] | 163 | put_device(dev); |
| 164 | put_bus(bus); |
| 165 | return err; |
Greg Kroah-Hartman | 151ef38 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 166 | } |
| 167 | static DRIVER_ATTR(unbind, S_IWUSR, NULL, driver_unbind); |
| 168 | |
Greg Kroah-Hartman | afdce75 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 169 | /* |
| 170 | * Manually attach a device to a driver. |
| 171 | * Note: the driver must want to bind to the device, |
| 172 | * it is not possible to override the driver's id table. |
| 173 | */ |
| 174 | static ssize_t driver_bind(struct device_driver *drv, |
| 175 | const char *buf, size_t count) |
| 176 | { |
| 177 | struct bus_type *bus = get_bus(drv->bus); |
| 178 | struct device *dev; |
| 179 | int err = -ENODEV; |
| 180 | |
| 181 | dev = bus_find_device(bus, NULL, (void *)buf, driver_helper); |
Alan Stern | 2b08c8d | 2005-11-23 15:43:50 -0800 | [diff] [blame] | 182 | if (dev && dev->driver == NULL) { |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 183 | if (dev->parent) /* Needed for USB */ |
| 184 | down(&dev->parent->sem); |
Greg Kroah-Hartman | afdce75 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 185 | down(&dev->sem); |
| 186 | err = driver_probe_device(drv, dev); |
| 187 | up(&dev->sem); |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 188 | if (dev->parent) |
| 189 | up(&dev->parent->sem); |
Ryan Wilson | 3722540 | 2006-03-22 16:26:25 -0500 | [diff] [blame] | 190 | |
| 191 | if (err > 0) /* success */ |
| 192 | err = count; |
| 193 | else if (err == 0) /* driver didn't accept device */ |
| 194 | err = -ENODEV; |
Greg Kroah-Hartman | afdce75 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 195 | } |
Alan Stern | 2b08c8d | 2005-11-23 15:43:50 -0800 | [diff] [blame] | 196 | put_device(dev); |
| 197 | put_bus(bus); |
| 198 | return err; |
Greg Kroah-Hartman | afdce75 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 199 | } |
| 200 | static DRIVER_ATTR(bind, S_IWUSR, NULL, driver_bind); |
| 201 | |
Russell King | 2139bdd | 2006-02-07 12:58:20 -0800 | [diff] [blame] | 202 | #endif |
Greg Kroah-Hartman | 151ef38 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 203 | |
mochel@digitalimplant.org | 465c7a3 | 2005-03-21 11:49:14 -0800 | [diff] [blame] | 204 | static struct device * next_device(struct klist_iter * i) |
| 205 | { |
| 206 | struct klist_node * n = klist_next(i); |
| 207 | return n ? container_of(n, struct device, knode_bus) : NULL; |
| 208 | } |
| 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | /** |
| 211 | * bus_for_each_dev - device iterator. |
| 212 | * @bus: bus type. |
| 213 | * @start: device to start iterating from. |
| 214 | * @data: data for the callback. |
| 215 | * @fn: function to be called for each device. |
| 216 | * |
| 217 | * Iterate over @bus's list of devices, and call @fn for each, |
| 218 | * passing it @data. If @start is not NULL, we use that device to |
| 219 | * begin iterating from. |
| 220 | * |
| 221 | * We check the return of @fn each time. If it returns anything |
| 222 | * other than 0, we break out and return that value. |
| 223 | * |
| 224 | * NOTE: The device that returns a non-zero value is not retained |
| 225 | * in any way, nor is its refcount incremented. If the caller needs |
| 226 | * to retain this data, it should do, and increment the reference |
| 227 | * count in the supplied callback. |
| 228 | */ |
| 229 | |
| 230 | int bus_for_each_dev(struct bus_type * bus, struct device * start, |
| 231 | void * data, int (*fn)(struct device *, void *)) |
| 232 | { |
mochel@digitalimplant.org | 465c7a3 | 2005-03-21 11:49:14 -0800 | [diff] [blame] | 233 | struct klist_iter i; |
| 234 | struct device * dev; |
| 235 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
mochel@digitalimplant.org | 465c7a3 | 2005-03-21 11:49:14 -0800 | [diff] [blame] | 237 | if (!bus) |
| 238 | return -EINVAL; |
| 239 | |
| 240 | klist_iter_init_node(&bus->klist_devices, &i, |
| 241 | (start ? &start->knode_bus : NULL)); |
| 242 | while ((dev = next_device(&i)) && !error) |
| 243 | error = fn(dev, data); |
| 244 | klist_iter_exit(&i); |
| 245 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | } |
| 247 | |
Cornelia Huck | 0edb586 | 2005-06-22 16:59:51 +0200 | [diff] [blame] | 248 | /** |
| 249 | * bus_find_device - device iterator for locating a particular device. |
| 250 | * @bus: bus type |
| 251 | * @start: Device to begin with |
| 252 | * @data: Data to pass to match function |
| 253 | * @match: Callback function to check device |
| 254 | * |
| 255 | * This is similar to the bus_for_each_dev() function above, but it |
| 256 | * returns a reference to a device that is 'found' for later use, as |
| 257 | * determined by the @match callback. |
| 258 | * |
| 259 | * The callback should return 0 if the device doesn't match and non-zero |
| 260 | * if it does. If the callback returns non-zero, this function will |
| 261 | * return to the caller and not iterate over any more devices. |
| 262 | */ |
| 263 | struct device * bus_find_device(struct bus_type *bus, |
| 264 | struct device *start, void *data, |
| 265 | int (*match)(struct device *, void *)) |
| 266 | { |
| 267 | struct klist_iter i; |
| 268 | struct device *dev; |
| 269 | |
| 270 | if (!bus) |
| 271 | return NULL; |
| 272 | |
| 273 | klist_iter_init_node(&bus->klist_devices, &i, |
| 274 | (start ? &start->knode_bus : NULL)); |
| 275 | while ((dev = next_device(&i))) |
| 276 | if (match(dev, data) && get_device(dev)) |
| 277 | break; |
| 278 | klist_iter_exit(&i); |
| 279 | return dev; |
| 280 | } |
mochel@digitalimplant.org | 38fdac3 | 2005-03-21 12:00:18 -0800 | [diff] [blame] | 281 | |
| 282 | |
| 283 | static struct device_driver * next_driver(struct klist_iter * i) |
| 284 | { |
| 285 | struct klist_node * n = klist_next(i); |
| 286 | return n ? container_of(n, struct device_driver, knode_bus) : NULL; |
| 287 | } |
| 288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | /** |
| 290 | * bus_for_each_drv - driver iterator |
| 291 | * @bus: bus we're dealing with. |
| 292 | * @start: driver to start iterating on. |
| 293 | * @data: data to pass to the callback. |
| 294 | * @fn: function to call for each driver. |
| 295 | * |
| 296 | * This is nearly identical to the device iterator above. |
| 297 | * We iterate over each driver that belongs to @bus, and call |
| 298 | * @fn for each. If @fn returns anything but 0, we break out |
| 299 | * and return it. If @start is not NULL, we use it as the head |
| 300 | * of the list. |
| 301 | * |
| 302 | * NOTE: we don't return the driver that returns a non-zero |
| 303 | * value, nor do we leave the reference count incremented for that |
| 304 | * driver. If the caller needs to know that info, it must set it |
| 305 | * in the callback. It must also be sure to increment the refcount |
| 306 | * so it doesn't disappear before returning to the caller. |
| 307 | */ |
| 308 | |
| 309 | int bus_for_each_drv(struct bus_type * bus, struct device_driver * start, |
| 310 | void * data, int (*fn)(struct device_driver *, void *)) |
| 311 | { |
mochel@digitalimplant.org | 38fdac3 | 2005-03-21 12:00:18 -0800 | [diff] [blame] | 312 | struct klist_iter i; |
| 313 | struct device_driver * drv; |
| 314 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
mochel@digitalimplant.org | 38fdac3 | 2005-03-21 12:00:18 -0800 | [diff] [blame] | 316 | if (!bus) |
| 317 | return -EINVAL; |
| 318 | |
| 319 | klist_iter_init_node(&bus->klist_drivers, &i, |
| 320 | start ? &start->knode_bus : NULL); |
| 321 | while ((drv = next_driver(&i)) && !error) |
| 322 | error = fn(drv, data); |
| 323 | klist_iter_exit(&i); |
| 324 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | } |
| 326 | |
Andrew Morton | 4aca67e | 2007-02-13 22:39:26 -0800 | [diff] [blame] | 327 | static int device_add_attrs(struct bus_type *bus, struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | { |
| 329 | int error = 0; |
| 330 | int i; |
| 331 | |
Andrew Morton | 4aca67e | 2007-02-13 22:39:26 -0800 | [diff] [blame] | 332 | if (!bus->dev_attrs) |
| 333 | return 0; |
| 334 | |
| 335 | for (i = 0; attr_name(bus->dev_attrs[i]); i++) { |
| 336 | error = device_create_file(dev,&bus->dev_attrs[i]); |
| 337 | if (error) { |
| 338 | while (--i >= 0) |
| 339 | device_remove_file(dev, &bus->dev_attrs[i]); |
| 340 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
| 342 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } |
| 345 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | static void device_remove_attrs(struct bus_type * bus, struct device * dev) |
| 347 | { |
| 348 | int i; |
| 349 | |
| 350 | if (bus->dev_attrs) { |
| 351 | for (i = 0; attr_name(bus->dev_attrs[i]); i++) |
| 352 | device_remove_file(dev,&bus->dev_attrs[i]); |
| 353 | } |
| 354 | } |
| 355 | |
Kay Sievers | b9cafc7 | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 356 | #ifdef CONFIG_SYSFS_DEPRECATED |
| 357 | static int make_deprecated_bus_links(struct device *dev) |
| 358 | { |
| 359 | return sysfs_create_link(&dev->kobj, |
| 360 | &dev->bus->subsys.kset.kobj, "bus"); |
| 361 | } |
| 362 | |
| 363 | static void remove_deprecated_bus_links(struct device *dev) |
| 364 | { |
| 365 | sysfs_remove_link(&dev->kobj, "bus"); |
| 366 | } |
| 367 | #else |
| 368 | static inline int make_deprecated_bus_links(struct device *dev) { return 0; } |
| 369 | static inline void remove_deprecated_bus_links(struct device *dev) { } |
| 370 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | |
| 372 | /** |
| 373 | * bus_add_device - add device to bus |
| 374 | * @dev: device being added |
| 375 | * |
| 376 | * - Add the device to its bus's list of devices. |
Kay Sievers | 53877d0 | 2006-04-04 20:42:26 +0200 | [diff] [blame] | 377 | * - Create link to device's bus. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | */ |
| 379 | int bus_add_device(struct device * dev) |
| 380 | { |
| 381 | struct bus_type * bus = get_bus(dev->bus); |
| 382 | int error = 0; |
| 383 | |
| 384 | if (bus) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | pr_debug("bus %s: add device %s\n", bus->name, dev->bus_id); |
Greg Kroah-Hartman | d377e85 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 386 | error = device_add_attrs(bus, dev); |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 387 | if (error) |
Cornelia Huck | 513e733 | 2006-09-22 11:37:08 +0200 | [diff] [blame] | 388 | goto out_put; |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 389 | error = sysfs_create_link(&bus->devices.kobj, |
| 390 | &dev->kobj, dev->bus_id); |
| 391 | if (error) |
Cornelia Huck | 513e733 | 2006-09-22 11:37:08 +0200 | [diff] [blame] | 392 | goto out_id; |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 393 | error = sysfs_create_link(&dev->kobj, |
| 394 | &dev->bus->subsys.kset.kobj, "subsystem"); |
| 395 | if (error) |
Cornelia Huck | 513e733 | 2006-09-22 11:37:08 +0200 | [diff] [blame] | 396 | goto out_subsys; |
Kay Sievers | b9cafc7 | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 397 | error = make_deprecated_bus_links(dev); |
Cornelia Huck | 513e733 | 2006-09-22 11:37:08 +0200 | [diff] [blame] | 398 | if (error) |
| 399 | goto out_deprecated; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | } |
Cornelia Huck | 513e733 | 2006-09-22 11:37:08 +0200 | [diff] [blame] | 401 | return 0; |
| 402 | |
| 403 | out_deprecated: |
| 404 | sysfs_remove_link(&dev->kobj, "subsystem"); |
| 405 | out_subsys: |
| 406 | sysfs_remove_link(&bus->devices.kobj, dev->bus_id); |
| 407 | out_id: |
| 408 | device_remove_attrs(bus, dev); |
| 409 | out_put: |
| 410 | put_bus(dev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | return error; |
| 412 | } |
| 413 | |
| 414 | /** |
Kay Sievers | 53877d0 | 2006-04-04 20:42:26 +0200 | [diff] [blame] | 415 | * bus_attach_device - add device to bus |
| 416 | * @dev: device tried to attach to a driver |
| 417 | * |
Alan Stern | f2eaae1 | 2006-09-18 16:22:34 -0400 | [diff] [blame] | 418 | * - Add device to bus's list of devices. |
Kay Sievers | 53877d0 | 2006-04-04 20:42:26 +0200 | [diff] [blame] | 419 | * - Try to attach to driver. |
| 420 | */ |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 421 | int bus_attach_device(struct device * dev) |
Kay Sievers | 53877d0 | 2006-04-04 20:42:26 +0200 | [diff] [blame] | 422 | { |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 423 | struct bus_type *bus = dev->bus; |
| 424 | int ret = 0; |
Kay Sievers | 53877d0 | 2006-04-04 20:42:26 +0200 | [diff] [blame] | 425 | |
| 426 | if (bus) { |
Alan Stern | f2eaae1 | 2006-09-18 16:22:34 -0400 | [diff] [blame] | 427 | dev->is_registered = 1; |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 428 | ret = device_attach(dev); |
| 429 | if (ret >= 0) { |
| 430 | klist_add_tail(&dev->knode_bus, &bus->klist_devices); |
| 431 | ret = 0; |
Alan Stern | f2eaae1 | 2006-09-18 16:22:34 -0400 | [diff] [blame] | 432 | } else |
| 433 | dev->is_registered = 0; |
Kay Sievers | 53877d0 | 2006-04-04 20:42:26 +0200 | [diff] [blame] | 434 | } |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 435 | return ret; |
Kay Sievers | 53877d0 | 2006-04-04 20:42:26 +0200 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | * bus_remove_device - remove device from bus |
| 440 | * @dev: device to be removed |
| 441 | * |
| 442 | * - Remove symlink from bus's directory. |
| 443 | * - Delete device from bus's list. |
| 444 | * - Detach from its driver. |
| 445 | * - Drop reference taken in bus_add_device(). |
| 446 | */ |
| 447 | void bus_remove_device(struct device * dev) |
| 448 | { |
| 449 | if (dev->bus) { |
Kay Sievers | b9d9c82 | 2006-06-15 15:31:56 +0200 | [diff] [blame] | 450 | sysfs_remove_link(&dev->kobj, "subsystem"); |
Kay Sievers | b9cafc7 | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 451 | remove_deprecated_bus_links(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | sysfs_remove_link(&dev->bus->devices.kobj, dev->bus_id); |
| 453 | device_remove_attrs(dev->bus, dev); |
Alan Stern | f70fa62 | 2006-10-05 17:03:24 -0400 | [diff] [blame] | 454 | if (dev->is_registered) { |
| 455 | dev->is_registered = 0; |
| 456 | klist_del(&dev->knode_bus); |
| 457 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | pr_debug("bus %s: remove device %s\n", dev->bus->name, dev->bus_id); |
| 459 | device_release_driver(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | put_bus(dev->bus); |
| 461 | } |
| 462 | } |
| 463 | |
| 464 | static int driver_add_attrs(struct bus_type * bus, struct device_driver * drv) |
| 465 | { |
| 466 | int error = 0; |
| 467 | int i; |
| 468 | |
| 469 | if (bus->drv_attrs) { |
| 470 | for (i = 0; attr_name(bus->drv_attrs[i]); i++) { |
| 471 | error = driver_create_file(drv, &bus->drv_attrs[i]); |
| 472 | if (error) |
| 473 | goto Err; |
| 474 | } |
| 475 | } |
| 476 | Done: |
| 477 | return error; |
| 478 | Err: |
| 479 | while (--i >= 0) |
| 480 | driver_remove_file(drv, &bus->drv_attrs[i]); |
| 481 | goto Done; |
| 482 | } |
| 483 | |
| 484 | |
| 485 | static void driver_remove_attrs(struct bus_type * bus, struct device_driver * drv) |
| 486 | { |
| 487 | int i; |
| 488 | |
| 489 | if (bus->drv_attrs) { |
| 490 | for (i = 0; attr_name(bus->drv_attrs[i]); i++) |
| 491 | driver_remove_file(drv, &bus->drv_attrs[i]); |
| 492 | } |
| 493 | } |
| 494 | |
Greg Kroah-Hartman | 874c624 | 2005-12-13 15:17:34 -0800 | [diff] [blame] | 495 | #ifdef CONFIG_HOTPLUG |
| 496 | /* |
| 497 | * Thanks to drivers making their tables __devinit, we can't allow manual |
| 498 | * bind and unbind from userspace unless CONFIG_HOTPLUG is enabled. |
| 499 | */ |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 500 | static int __must_check add_bind_files(struct device_driver *drv) |
Greg Kroah-Hartman | 874c624 | 2005-12-13 15:17:34 -0800 | [diff] [blame] | 501 | { |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 502 | int ret; |
| 503 | |
| 504 | ret = driver_create_file(drv, &driver_attr_unbind); |
| 505 | if (ret == 0) { |
| 506 | ret = driver_create_file(drv, &driver_attr_bind); |
| 507 | if (ret) |
| 508 | driver_remove_file(drv, &driver_attr_unbind); |
| 509 | } |
| 510 | return ret; |
Greg Kroah-Hartman | 874c624 | 2005-12-13 15:17:34 -0800 | [diff] [blame] | 511 | } |
| 512 | |
| 513 | static void remove_bind_files(struct device_driver *drv) |
| 514 | { |
| 515 | driver_remove_file(drv, &driver_attr_bind); |
| 516 | driver_remove_file(drv, &driver_attr_unbind); |
| 517 | } |
| 518 | #else |
Yoichi Yuasa | 35acfdd | 2006-07-15 01:30:11 +0900 | [diff] [blame] | 519 | static inline int add_bind_files(struct device_driver *drv) { return 0; } |
Greg Kroah-Hartman | 874c624 | 2005-12-13 15:17:34 -0800 | [diff] [blame] | 520 | static inline void remove_bind_files(struct device_driver *drv) {} |
| 521 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | |
| 523 | /** |
| 524 | * bus_add_driver - Add a driver to the bus. |
| 525 | * @drv: driver. |
| 526 | * |
| 527 | */ |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 528 | int bus_add_driver(struct device_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | { |
| 530 | struct bus_type * bus = get_bus(drv->bus); |
| 531 | int error = 0; |
| 532 | |
Jeff Garzik | d9fd4d3b3 | 2006-10-04 07:48:03 -0400 | [diff] [blame] | 533 | if (!bus) |
| 534 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | |
Jeff Garzik | d9fd4d3b3 | 2006-10-04 07:48:03 -0400 | [diff] [blame] | 536 | pr_debug("bus %s: add driver %s\n", bus->name, drv->name); |
| 537 | error = kobject_set_name(&drv->kobj, "%s", drv->name); |
| 538 | if (error) |
| 539 | goto out_put_bus; |
| 540 | drv->kobj.kset = &bus->drivers; |
| 541 | if ((error = kobject_register(&drv->kobj))) |
| 542 | goto out_put_bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
Jeff Garzik | d9fd4d3b3 | 2006-10-04 07:48:03 -0400 | [diff] [blame] | 544 | error = driver_attach(drv); |
| 545 | if (error) |
| 546 | goto out_unregister; |
| 547 | klist_add_tail(&drv->knode_bus, &bus->klist_drivers); |
| 548 | module_add_driver(drv->owner, drv); |
| 549 | |
| 550 | error = driver_add_attrs(bus, drv); |
| 551 | if (error) { |
| 552 | /* How the hell do we get out of this pickle? Give up */ |
| 553 | printk(KERN_ERR "%s: driver_add_attrs(%s) failed\n", |
| 554 | __FUNCTION__, drv->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | } |
Jeff Garzik | d9fd4d3b3 | 2006-10-04 07:48:03 -0400 | [diff] [blame] | 556 | error = add_bind_files(drv); |
| 557 | if (error) { |
| 558 | /* Ditto */ |
| 559 | printk(KERN_ERR "%s: add_bind_files(%s) failed\n", |
| 560 | __FUNCTION__, drv->name); |
| 561 | } |
| 562 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | return error; |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 564 | out_unregister: |
| 565 | kobject_unregister(&drv->kobj); |
| 566 | out_put_bus: |
| 567 | put_bus(bus); |
| 568 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | } |
| 570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | /** |
| 572 | * bus_remove_driver - delete driver from bus's knowledge. |
| 573 | * @drv: driver. |
| 574 | * |
| 575 | * Detach the driver from the devices it controls, and remove |
| 576 | * it from its bus's list of drivers. Finally, we drop the reference |
| 577 | * to the bus we took in bus_add_driver(). |
| 578 | */ |
| 579 | |
| 580 | void bus_remove_driver(struct device_driver * drv) |
| 581 | { |
Jeff Garzik | d9fd4d3b3 | 2006-10-04 07:48:03 -0400 | [diff] [blame] | 582 | if (!drv->bus) |
| 583 | return; |
| 584 | |
| 585 | remove_bind_files(drv); |
| 586 | driver_remove_attrs(drv->bus, drv); |
| 587 | klist_remove(&drv->knode_bus); |
| 588 | pr_debug("bus %s: remove driver %s\n", drv->bus->name, drv->name); |
| 589 | driver_detach(drv); |
| 590 | module_remove_driver(drv); |
| 591 | kobject_unregister(&drv->kobj); |
| 592 | put_bus(drv->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | |
| 596 | /* Helper for bus_rescan_devices's iter */ |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 597 | static int __must_check bus_rescan_devices_helper(struct device *dev, |
| 598 | void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | { |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 600 | int ret = 0; |
| 601 | |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 602 | if (!dev->driver) { |
| 603 | if (dev->parent) /* Needed for USB */ |
| 604 | down(&dev->parent->sem); |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 605 | ret = device_attach(dev); |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 606 | if (dev->parent) |
| 607 | up(&dev->parent->sem); |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 608 | if (ret > 0) |
| 609 | ret = 0; |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 610 | } |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 611 | return ret < 0 ? ret : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | } |
| 613 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | /** |
Greg Kroah-Hartman | 23d3d60 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 615 | * bus_rescan_devices - rescan devices on the bus for possible drivers |
| 616 | * @bus: the bus to scan. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | * |
Greg Kroah-Hartman | 23d3d60 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 618 | * This function will look for devices on the bus with no driver |
| 619 | * attached and rescan it against existing drivers to see if it matches |
| 620 | * any by calling device_attach() for the unbound devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | */ |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 622 | int bus_rescan_devices(struct bus_type * bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | { |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 624 | return bus_for_each_dev(bus, NULL, NULL, bus_rescan_devices_helper); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | } |
| 626 | |
Moore, Eric | e935d5d | 2006-03-14 09:18:18 -0700 | [diff] [blame] | 627 | /** |
| 628 | * device_reprobe - remove driver for a device and probe for a new driver |
| 629 | * @dev: the device to reprobe |
| 630 | * |
| 631 | * This function detaches the attached driver (if any) for the given |
| 632 | * device and restarts the driver probing process. It is intended |
| 633 | * to use if probing criteria changed during a devices lifetime and |
| 634 | * driver attachment should change accordingly. |
| 635 | */ |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 636 | int device_reprobe(struct device *dev) |
Moore, Eric | e935d5d | 2006-03-14 09:18:18 -0700 | [diff] [blame] | 637 | { |
| 638 | if (dev->driver) { |
| 639 | if (dev->parent) /* Needed for USB */ |
| 640 | down(&dev->parent->sem); |
| 641 | device_release_driver(dev); |
| 642 | if (dev->parent) |
| 643 | up(&dev->parent->sem); |
| 644 | } |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 645 | return bus_rescan_devices_helper(dev, NULL); |
Moore, Eric | e935d5d | 2006-03-14 09:18:18 -0700 | [diff] [blame] | 646 | } |
| 647 | EXPORT_SYMBOL_GPL(device_reprobe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 649 | struct bus_type *get_bus(struct bus_type *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | { |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 651 | return bus ? container_of(subsys_get(&bus->subsys), |
| 652 | struct bus_type, subsys) : NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | void put_bus(struct bus_type * bus) |
| 656 | { |
| 657 | subsys_put(&bus->subsys); |
| 658 | } |
| 659 | |
| 660 | |
| 661 | /** |
| 662 | * find_bus - locate bus by name. |
| 663 | * @name: name of bus. |
| 664 | * |
| 665 | * Call kset_find_obj() to iterate over list of buses to |
| 666 | * find a bus by name. Return bus if found. |
| 667 | * |
| 668 | * Note that kset_find_obj increments bus' reference count. |
| 669 | */ |
Adrian Bunk | 7e4ef08 | 2006-06-26 22:26:56 +0200 | [diff] [blame] | 670 | #if 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | struct bus_type * find_bus(char * name) |
| 672 | { |
| 673 | struct kobject * k = kset_find_obj(&bus_subsys.kset, name); |
| 674 | return k ? to_bus(k) : NULL; |
| 675 | } |
Adrian Bunk | 7e4ef08 | 2006-06-26 22:26:56 +0200 | [diff] [blame] | 676 | #endif /* 0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | |
| 678 | |
| 679 | /** |
| 680 | * bus_add_attrs - Add default attributes for this bus. |
| 681 | * @bus: Bus that has just been registered. |
| 682 | */ |
| 683 | |
| 684 | static int bus_add_attrs(struct bus_type * bus) |
| 685 | { |
| 686 | int error = 0; |
| 687 | int i; |
| 688 | |
| 689 | if (bus->bus_attrs) { |
| 690 | for (i = 0; attr_name(bus->bus_attrs[i]); i++) { |
| 691 | if ((error = bus_create_file(bus,&bus->bus_attrs[i]))) |
| 692 | goto Err; |
| 693 | } |
| 694 | } |
| 695 | Done: |
| 696 | return error; |
| 697 | Err: |
| 698 | while (--i >= 0) |
| 699 | bus_remove_file(bus,&bus->bus_attrs[i]); |
| 700 | goto Done; |
| 701 | } |
| 702 | |
| 703 | static void bus_remove_attrs(struct bus_type * bus) |
| 704 | { |
| 705 | int i; |
| 706 | |
| 707 | if (bus->bus_attrs) { |
| 708 | for (i = 0; attr_name(bus->bus_attrs[i]); i++) |
| 709 | bus_remove_file(bus,&bus->bus_attrs[i]); |
| 710 | } |
| 711 | } |
| 712 | |
James Bottomley | 34bb61f | 2005-09-06 16:56:51 -0700 | [diff] [blame] | 713 | static void klist_devices_get(struct klist_node *n) |
| 714 | { |
| 715 | struct device *dev = container_of(n, struct device, knode_bus); |
| 716 | |
| 717 | get_device(dev); |
| 718 | } |
| 719 | |
| 720 | static void klist_devices_put(struct klist_node *n) |
| 721 | { |
| 722 | struct device *dev = container_of(n, struct device, knode_bus); |
| 723 | |
| 724 | put_device(dev); |
| 725 | } |
| 726 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | /** |
| 728 | * bus_register - register a bus with the system. |
| 729 | * @bus: bus. |
| 730 | * |
| 731 | * Once we have that, we registered the bus with the kobject |
| 732 | * infrastructure, then register the children subsystems it has: |
| 733 | * the devices and drivers that belong to the bus. |
| 734 | */ |
| 735 | int bus_register(struct bus_type * bus) |
| 736 | { |
| 737 | int retval; |
| 738 | |
Benjamin Herrenschmidt | 116af37 | 2006-10-25 13:44:59 +1000 | [diff] [blame] | 739 | BLOCKING_INIT_NOTIFIER_HEAD(&bus->bus_notifier); |
| 740 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | retval = kobject_set_name(&bus->subsys.kset.kobj, "%s", bus->name); |
| 742 | if (retval) |
| 743 | goto out; |
| 744 | |
| 745 | subsys_set_kset(bus, bus_subsys); |
| 746 | retval = subsystem_register(&bus->subsys); |
| 747 | if (retval) |
| 748 | goto out; |
| 749 | |
| 750 | kobject_set_name(&bus->devices.kobj, "devices"); |
| 751 | bus->devices.subsys = &bus->subsys; |
| 752 | retval = kset_register(&bus->devices); |
| 753 | if (retval) |
| 754 | goto bus_devices_fail; |
| 755 | |
| 756 | kobject_set_name(&bus->drivers.kobj, "drivers"); |
| 757 | bus->drivers.subsys = &bus->subsys; |
| 758 | bus->drivers.ktype = &ktype_driver; |
| 759 | retval = kset_register(&bus->drivers); |
| 760 | if (retval) |
| 761 | goto bus_drivers_fail; |
mochel@digitalimplant.org | 465c7a3 | 2005-03-21 11:49:14 -0800 | [diff] [blame] | 762 | |
James Bottomley | 34bb61f | 2005-09-06 16:56:51 -0700 | [diff] [blame] | 763 | klist_init(&bus->klist_devices, klist_devices_get, klist_devices_put); |
Alan Stern | 81107bf | 2006-09-18 16:24:28 -0400 | [diff] [blame] | 764 | klist_init(&bus->klist_drivers, NULL, NULL); |
Cornelia Huck | 1bb6881 | 2006-09-22 11:37:04 +0200 | [diff] [blame] | 765 | retval = bus_add_attrs(bus); |
| 766 | if (retval) |
| 767 | goto bus_attrs_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | |
| 769 | pr_debug("bus type '%s' registered\n", bus->name); |
| 770 | return 0; |
| 771 | |
Cornelia Huck | 1bb6881 | 2006-09-22 11:37:04 +0200 | [diff] [blame] | 772 | bus_attrs_fail: |
| 773 | kset_unregister(&bus->drivers); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | bus_drivers_fail: |
| 775 | kset_unregister(&bus->devices); |
| 776 | bus_devices_fail: |
| 777 | subsystem_unregister(&bus->subsys); |
| 778 | out: |
| 779 | return retval; |
| 780 | } |
| 781 | |
| 782 | |
| 783 | /** |
| 784 | * bus_unregister - remove a bus from the system |
| 785 | * @bus: bus. |
| 786 | * |
| 787 | * Unregister the child subsystems and the bus itself. |
| 788 | * Finally, we call put_bus() to release the refcount |
| 789 | */ |
| 790 | void bus_unregister(struct bus_type * bus) |
| 791 | { |
| 792 | pr_debug("bus %s: unregistering\n", bus->name); |
| 793 | bus_remove_attrs(bus); |
| 794 | kset_unregister(&bus->drivers); |
| 795 | kset_unregister(&bus->devices); |
| 796 | subsystem_unregister(&bus->subsys); |
| 797 | } |
| 798 | |
Benjamin Herrenschmidt | 116af37 | 2006-10-25 13:44:59 +1000 | [diff] [blame] | 799 | int bus_register_notifier(struct bus_type *bus, struct notifier_block *nb) |
| 800 | { |
| 801 | return blocking_notifier_chain_register(&bus->bus_notifier, nb); |
| 802 | } |
| 803 | EXPORT_SYMBOL_GPL(bus_register_notifier); |
| 804 | |
| 805 | int bus_unregister_notifier(struct bus_type *bus, struct notifier_block *nb) |
| 806 | { |
| 807 | return blocking_notifier_chain_unregister(&bus->bus_notifier, nb); |
| 808 | } |
| 809 | EXPORT_SYMBOL_GPL(bus_unregister_notifier); |
| 810 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | int __init buses_init(void) |
| 812 | { |
| 813 | return subsystem_register(&bus_subsys); |
| 814 | } |
| 815 | |
| 816 | |
| 817 | EXPORT_SYMBOL_GPL(bus_for_each_dev); |
Cornelia Huck | 0edb586 | 2005-06-22 16:59:51 +0200 | [diff] [blame] | 818 | EXPORT_SYMBOL_GPL(bus_find_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | EXPORT_SYMBOL_GPL(bus_for_each_drv); |
| 820 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | EXPORT_SYMBOL_GPL(bus_register); |
| 822 | EXPORT_SYMBOL_GPL(bus_unregister); |
| 823 | EXPORT_SYMBOL_GPL(bus_rescan_devices); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | |
| 825 | EXPORT_SYMBOL_GPL(bus_create_file); |
| 826 | EXPORT_SYMBOL_GPL(bus_remove_file); |