blob: 472810f8e6e7332f13127b31a299f5712e4ffbc9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070011#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 Torvalds1da177e2005-04-16 15:20:36 -070019#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
30static ssize_t
31drv_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 Torokhov4a0c20b2005-04-29 01:23:47 -050035 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37 if (drv_attr->show)
38 ret = drv_attr->show(drv, buf);
39 return ret;
40}
41
42static ssize_t
43drv_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 Torokhov4a0c20b2005-04-29 01:23:47 -050048 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 if (drv_attr->store)
51 ret = drv_attr->store(drv, buf, count);
52 return ret;
53}
54
55static struct sysfs_ops driver_sysfs_ops = {
56 .show = drv_attr_show,
57 .store = drv_attr_store,
58};
59
60
61static void driver_release(struct kobject * kobj)
62{
63 struct device_driver * drv = to_driver(kobj);
64 complete(&drv->unloaded);
65}
66
67static 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
78static ssize_t
79bus_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
90static ssize_t
91bus_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
103static struct sysfs_ops bus_sysfs_ops = {
104 .show = bus_attr_show,
105 .store = bus_attr_store,
106};
107
108int 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
119void 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
127static struct kobj_type ktype_bus = {
128 .sysfs_ops = &bus_sysfs_ops,
129
130};
131
Adrian Bunk7e4ef082006-06-26 22:26:56 +0200132static decl_subsys(bus, &ktype_bus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Russell King2139bdd2006-02-07 12:58:20 -0800135#ifdef CONFIG_HOTPLUG
136
Alan Stern2b08c8d2005-11-23 15:43:50 -0800137/* Manually detach a device from its associated driver. */
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700138static 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
147static 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 Stern2b08c8d2005-11-23 15:43:50 -0800155 if (dev && dev->driver == drv) {
Alan Sternbf74ad52005-11-17 16:54:12 -0500156 if (dev->parent) /* Needed for USB */
157 down(&dev->parent->sem);
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700158 device_release_driver(dev);
Alan Sternbf74ad52005-11-17 16:54:12 -0500159 if (dev->parent)
160 up(&dev->parent->sem);
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700161 err = count;
162 }
Alan Stern2b08c8d2005-11-23 15:43:50 -0800163 put_device(dev);
164 put_bus(bus);
165 return err;
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700166}
167static DRIVER_ATTR(unbind, S_IWUSR, NULL, driver_unbind);
168
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700169/*
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 */
174static 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 Stern2b08c8d2005-11-23 15:43:50 -0800182 if (dev && dev->driver == NULL) {
Alan Sternbf74ad52005-11-17 16:54:12 -0500183 if (dev->parent) /* Needed for USB */
184 down(&dev->parent->sem);
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700185 down(&dev->sem);
186 err = driver_probe_device(drv, dev);
187 up(&dev->sem);
Alan Sternbf74ad52005-11-17 16:54:12 -0500188 if (dev->parent)
189 up(&dev->parent->sem);
Ryan Wilson37225402006-03-22 16:26:25 -0500190
191 if (err > 0) /* success */
192 err = count;
193 else if (err == 0) /* driver didn't accept device */
194 err = -ENODEV;
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700195 }
Alan Stern2b08c8d2005-11-23 15:43:50 -0800196 put_device(dev);
197 put_bus(bus);
198 return err;
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700199}
200static DRIVER_ATTR(bind, S_IWUSR, NULL, driver_bind);
201
Russell King2139bdd2006-02-07 12:58:20 -0800202#endif
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700203
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800204static 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 Torvalds1da177e2005-04-16 15:20:36 -0700210/**
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
230int bus_for_each_dev(struct bus_type * bus, struct device * start,
231 void * data, int (*fn)(struct device *, void *))
232{
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800233 struct klist_iter i;
234 struct device * dev;
235 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800237 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 Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
Cornelia Huck0edb5862005-06-22 16:59:51 +0200248/**
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 */
263struct 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.org38fdac32005-03-21 12:00:18 -0800281
282
283static 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 Torvalds1da177e2005-04-16 15:20:36 -0700289/**
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
309int bus_for_each_drv(struct bus_type * bus, struct device_driver * start,
310 void * data, int (*fn)(struct device_driver *, void *))
311{
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800312 struct klist_iter i;
313 struct device_driver * drv;
314 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800316 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 Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327static int device_add_attrs(struct bus_type * bus, struct device * dev)
328{
329 int error = 0;
330 int i;
331
332 if (bus->dev_attrs) {
333 for (i = 0; attr_name(bus->dev_attrs[i]); i++) {
334 error = device_create_file(dev,&bus->dev_attrs[i]);
335 if (error)
336 goto Err;
337 }
338 }
339 Done:
340 return error;
341 Err:
342 while (--i >= 0)
343 device_remove_file(dev,&bus->dev_attrs[i]);
344 goto Done;
345}
346
347
348static void device_remove_attrs(struct bus_type * bus, struct device * dev)
349{
350 int i;
351
352 if (bus->dev_attrs) {
353 for (i = 0; attr_name(bus->dev_attrs[i]); i++)
354 device_remove_file(dev,&bus->dev_attrs[i]);
355 }
356}
357
Kay Sieversb9cafc72006-09-14 11:23:28 +0200358#ifdef CONFIG_SYSFS_DEPRECATED
359static int make_deprecated_bus_links(struct device *dev)
360{
361 return sysfs_create_link(&dev->kobj,
362 &dev->bus->subsys.kset.kobj, "bus");
363}
364
365static void remove_deprecated_bus_links(struct device *dev)
366{
367 sysfs_remove_link(&dev->kobj, "bus");
368}
369#else
370static inline int make_deprecated_bus_links(struct device *dev) { return 0; }
371static inline void remove_deprecated_bus_links(struct device *dev) { }
372#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374/**
375 * bus_add_device - add device to bus
376 * @dev: device being added
377 *
378 * - Add the device to its bus's list of devices.
Kay Sievers53877d02006-04-04 20:42:26 +0200379 * - Create link to device's bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 */
381int bus_add_device(struct device * dev)
382{
383 struct bus_type * bus = get_bus(dev->bus);
384 int error = 0;
385
386 if (bus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 pr_debug("bus %s: add device %s\n", bus->name, dev->bus_id);
Greg Kroah-Hartmand377e852005-06-22 16:09:05 -0700388 error = device_add_attrs(bus, dev);
Andrew Mortonf86db392006-08-14 22:43:20 -0700389 if (error)
Cornelia Huck513e7332006-09-22 11:37:08 +0200390 goto out_put;
Andrew Mortonf86db392006-08-14 22:43:20 -0700391 error = sysfs_create_link(&bus->devices.kobj,
392 &dev->kobj, dev->bus_id);
393 if (error)
Cornelia Huck513e7332006-09-22 11:37:08 +0200394 goto out_id;
Andrew Mortonf86db392006-08-14 22:43:20 -0700395 error = sysfs_create_link(&dev->kobj,
396 &dev->bus->subsys.kset.kobj, "subsystem");
397 if (error)
Cornelia Huck513e7332006-09-22 11:37:08 +0200398 goto out_subsys;
Kay Sieversb9cafc72006-09-14 11:23:28 +0200399 error = make_deprecated_bus_links(dev);
Cornelia Huck513e7332006-09-22 11:37:08 +0200400 if (error)
401 goto out_deprecated;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
Cornelia Huck513e7332006-09-22 11:37:08 +0200403 return 0;
404
405out_deprecated:
406 sysfs_remove_link(&dev->kobj, "subsystem");
407out_subsys:
408 sysfs_remove_link(&bus->devices.kobj, dev->bus_id);
409out_id:
410 device_remove_attrs(bus, dev);
411out_put:
412 put_bus(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return error;
414}
415
416/**
Kay Sievers53877d02006-04-04 20:42:26 +0200417 * bus_attach_device - add device to bus
418 * @dev: device tried to attach to a driver
419 *
Alan Sternf2eaae12006-09-18 16:22:34 -0400420 * - Add device to bus's list of devices.
Kay Sievers53877d02006-04-04 20:42:26 +0200421 * - Try to attach to driver.
422 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700423int bus_attach_device(struct device * dev)
Kay Sievers53877d02006-04-04 20:42:26 +0200424{
Andrew Mortonf86db392006-08-14 22:43:20 -0700425 struct bus_type *bus = dev->bus;
426 int ret = 0;
Kay Sievers53877d02006-04-04 20:42:26 +0200427
428 if (bus) {
Alan Sternf2eaae12006-09-18 16:22:34 -0400429 dev->is_registered = 1;
Andrew Mortonf86db392006-08-14 22:43:20 -0700430 ret = device_attach(dev);
431 if (ret >= 0) {
432 klist_add_tail(&dev->knode_bus, &bus->klist_devices);
433 ret = 0;
Alan Sternf2eaae12006-09-18 16:22:34 -0400434 } else
435 dev->is_registered = 0;
Kay Sievers53877d02006-04-04 20:42:26 +0200436 }
Andrew Mortonf86db392006-08-14 22:43:20 -0700437 return ret;
Kay Sievers53877d02006-04-04 20:42:26 +0200438}
439
440/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * bus_remove_device - remove device from bus
442 * @dev: device to be removed
443 *
444 * - Remove symlink from bus's directory.
445 * - Delete device from bus's list.
446 * - Detach from its driver.
447 * - Drop reference taken in bus_add_device().
448 */
449void bus_remove_device(struct device * dev)
450{
451 if (dev->bus) {
Kay Sieversb9d9c822006-06-15 15:31:56 +0200452 sysfs_remove_link(&dev->kobj, "subsystem");
Kay Sieversb9cafc72006-09-14 11:23:28 +0200453 remove_deprecated_bus_links(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 sysfs_remove_link(&dev->bus->devices.kobj, dev->bus_id);
455 device_remove_attrs(dev->bus, dev);
Alan Sternf70fa622006-10-05 17:03:24 -0400456 if (dev->is_registered) {
457 dev->is_registered = 0;
458 klist_del(&dev->knode_bus);
459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 pr_debug("bus %s: remove device %s\n", dev->bus->name, dev->bus_id);
461 device_release_driver(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 put_bus(dev->bus);
463 }
464}
465
466static int driver_add_attrs(struct bus_type * bus, struct device_driver * drv)
467{
468 int error = 0;
469 int i;
470
471 if (bus->drv_attrs) {
472 for (i = 0; attr_name(bus->drv_attrs[i]); i++) {
473 error = driver_create_file(drv, &bus->drv_attrs[i]);
474 if (error)
475 goto Err;
476 }
477 }
478 Done:
479 return error;
480 Err:
481 while (--i >= 0)
482 driver_remove_file(drv, &bus->drv_attrs[i]);
483 goto Done;
484}
485
486
487static void driver_remove_attrs(struct bus_type * bus, struct device_driver * drv)
488{
489 int i;
490
491 if (bus->drv_attrs) {
492 for (i = 0; attr_name(bus->drv_attrs[i]); i++)
493 driver_remove_file(drv, &bus->drv_attrs[i]);
494 }
495}
496
Greg Kroah-Hartman874c6242005-12-13 15:17:34 -0800497#ifdef CONFIG_HOTPLUG
498/*
499 * Thanks to drivers making their tables __devinit, we can't allow manual
500 * bind and unbind from userspace unless CONFIG_HOTPLUG is enabled.
501 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700502static int __must_check add_bind_files(struct device_driver *drv)
Greg Kroah-Hartman874c6242005-12-13 15:17:34 -0800503{
Andrew Mortonf86db392006-08-14 22:43:20 -0700504 int ret;
505
506 ret = driver_create_file(drv, &driver_attr_unbind);
507 if (ret == 0) {
508 ret = driver_create_file(drv, &driver_attr_bind);
509 if (ret)
510 driver_remove_file(drv, &driver_attr_unbind);
511 }
512 return ret;
Greg Kroah-Hartman874c6242005-12-13 15:17:34 -0800513}
514
515static void remove_bind_files(struct device_driver *drv)
516{
517 driver_remove_file(drv, &driver_attr_bind);
518 driver_remove_file(drv, &driver_attr_unbind);
519}
520#else
Yoichi Yuasa35acfdd2006-07-15 01:30:11 +0900521static inline int add_bind_files(struct device_driver *drv) { return 0; }
Greg Kroah-Hartman874c6242005-12-13 15:17:34 -0800522static inline void remove_bind_files(struct device_driver *drv) {}
523#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525/**
526 * bus_add_driver - Add a driver to the bus.
527 * @drv: driver.
528 *
529 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700530int bus_add_driver(struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 struct bus_type * bus = get_bus(drv->bus);
533 int error = 0;
534
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400535 if (!bus)
536 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400538 pr_debug("bus %s: add driver %s\n", bus->name, drv->name);
539 error = kobject_set_name(&drv->kobj, "%s", drv->name);
540 if (error)
541 goto out_put_bus;
542 drv->kobj.kset = &bus->drivers;
543 if ((error = kobject_register(&drv->kobj)))
544 goto out_put_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400546 error = driver_attach(drv);
547 if (error)
548 goto out_unregister;
549 klist_add_tail(&drv->knode_bus, &bus->klist_drivers);
550 module_add_driver(drv->owner, drv);
551
552 error = driver_add_attrs(bus, drv);
553 if (error) {
554 /* How the hell do we get out of this pickle? Give up */
555 printk(KERN_ERR "%s: driver_add_attrs(%s) failed\n",
556 __FUNCTION__, drv->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400558 error = add_bind_files(drv);
559 if (error) {
560 /* Ditto */
561 printk(KERN_ERR "%s: add_bind_files(%s) failed\n",
562 __FUNCTION__, drv->name);
563 }
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return error;
Andrew Mortonf86db392006-08-14 22:43:20 -0700566out_unregister:
567 kobject_unregister(&drv->kobj);
568out_put_bus:
569 put_bus(bus);
570 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573/**
574 * bus_remove_driver - delete driver from bus's knowledge.
575 * @drv: driver.
576 *
577 * Detach the driver from the devices it controls, and remove
578 * it from its bus's list of drivers. Finally, we drop the reference
579 * to the bus we took in bus_add_driver().
580 */
581
582void bus_remove_driver(struct device_driver * drv)
583{
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400584 if (!drv->bus)
585 return;
586
587 remove_bind_files(drv);
588 driver_remove_attrs(drv->bus, drv);
589 klist_remove(&drv->knode_bus);
590 pr_debug("bus %s: remove driver %s\n", drv->bus->name, drv->name);
591 driver_detach(drv);
592 module_remove_driver(drv);
593 kobject_unregister(&drv->kobj);
594 put_bus(drv->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
597
598/* Helper for bus_rescan_devices's iter */
Andrew Mortonf86db392006-08-14 22:43:20 -0700599static int __must_check bus_rescan_devices_helper(struct device *dev,
600 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Andrew Mortonf86db392006-08-14 22:43:20 -0700602 int ret = 0;
603
Alan Sternbf74ad52005-11-17 16:54:12 -0500604 if (!dev->driver) {
605 if (dev->parent) /* Needed for USB */
606 down(&dev->parent->sem);
Andrew Mortonf86db392006-08-14 22:43:20 -0700607 ret = device_attach(dev);
Alan Sternbf74ad52005-11-17 16:54:12 -0500608 if (dev->parent)
609 up(&dev->parent->sem);
Andrew Mortonf86db392006-08-14 22:43:20 -0700610 if (ret > 0)
611 ret = 0;
Alan Sternbf74ad52005-11-17 16:54:12 -0500612 }
Andrew Mortonf86db392006-08-14 22:43:20 -0700613 return ret < 0 ? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616/**
Greg Kroah-Hartman23d3d602005-06-22 16:09:05 -0700617 * bus_rescan_devices - rescan devices on the bus for possible drivers
618 * @bus: the bus to scan.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 *
Greg Kroah-Hartman23d3d602005-06-22 16:09:05 -0700620 * This function will look for devices on the bus with no driver
621 * attached and rescan it against existing drivers to see if it matches
622 * any by calling device_attach() for the unbound devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700624int bus_rescan_devices(struct bus_type * bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Andrew Mortonf86db392006-08-14 22:43:20 -0700626 return bus_for_each_dev(bus, NULL, NULL, bus_rescan_devices_helper);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
Moore, Erice935d5d2006-03-14 09:18:18 -0700629/**
630 * device_reprobe - remove driver for a device and probe for a new driver
631 * @dev: the device to reprobe
632 *
633 * This function detaches the attached driver (if any) for the given
634 * device and restarts the driver probing process. It is intended
635 * to use if probing criteria changed during a devices lifetime and
636 * driver attachment should change accordingly.
637 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700638int device_reprobe(struct device *dev)
Moore, Erice935d5d2006-03-14 09:18:18 -0700639{
640 if (dev->driver) {
641 if (dev->parent) /* Needed for USB */
642 down(&dev->parent->sem);
643 device_release_driver(dev);
644 if (dev->parent)
645 up(&dev->parent->sem);
646 }
Andrew Mortonf86db392006-08-14 22:43:20 -0700647 return bus_rescan_devices_helper(dev, NULL);
Moore, Erice935d5d2006-03-14 09:18:18 -0700648}
649EXPORT_SYMBOL_GPL(device_reprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Andrew Mortonf86db392006-08-14 22:43:20 -0700651struct bus_type *get_bus(struct bus_type *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Andrew Mortonf86db392006-08-14 22:43:20 -0700653 return bus ? container_of(subsys_get(&bus->subsys),
654 struct bus_type, subsys) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
657void put_bus(struct bus_type * bus)
658{
659 subsys_put(&bus->subsys);
660}
661
662
663/**
664 * find_bus - locate bus by name.
665 * @name: name of bus.
666 *
667 * Call kset_find_obj() to iterate over list of buses to
668 * find a bus by name. Return bus if found.
669 *
670 * Note that kset_find_obj increments bus' reference count.
671 */
Adrian Bunk7e4ef082006-06-26 22:26:56 +0200672#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673struct bus_type * find_bus(char * name)
674{
675 struct kobject * k = kset_find_obj(&bus_subsys.kset, name);
676 return k ? to_bus(k) : NULL;
677}
Adrian Bunk7e4ef082006-06-26 22:26:56 +0200678#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680
681/**
682 * bus_add_attrs - Add default attributes for this bus.
683 * @bus: Bus that has just been registered.
684 */
685
686static int bus_add_attrs(struct bus_type * bus)
687{
688 int error = 0;
689 int i;
690
691 if (bus->bus_attrs) {
692 for (i = 0; attr_name(bus->bus_attrs[i]); i++) {
693 if ((error = bus_create_file(bus,&bus->bus_attrs[i])))
694 goto Err;
695 }
696 }
697 Done:
698 return error;
699 Err:
700 while (--i >= 0)
701 bus_remove_file(bus,&bus->bus_attrs[i]);
702 goto Done;
703}
704
705static void bus_remove_attrs(struct bus_type * bus)
706{
707 int i;
708
709 if (bus->bus_attrs) {
710 for (i = 0; attr_name(bus->bus_attrs[i]); i++)
711 bus_remove_file(bus,&bus->bus_attrs[i]);
712 }
713}
714
James Bottomley34bb61f2005-09-06 16:56:51 -0700715static void klist_devices_get(struct klist_node *n)
716{
717 struct device *dev = container_of(n, struct device, knode_bus);
718
719 get_device(dev);
720}
721
722static void klist_devices_put(struct klist_node *n)
723{
724 struct device *dev = container_of(n, struct device, knode_bus);
725
726 put_device(dev);
727}
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729/**
730 * bus_register - register a bus with the system.
731 * @bus: bus.
732 *
733 * Once we have that, we registered the bus with the kobject
734 * infrastructure, then register the children subsystems it has:
735 * the devices and drivers that belong to the bus.
736 */
737int bus_register(struct bus_type * bus)
738{
739 int retval;
740
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000741 BLOCKING_INIT_NOTIFIER_HEAD(&bus->bus_notifier);
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 retval = kobject_set_name(&bus->subsys.kset.kobj, "%s", bus->name);
744 if (retval)
745 goto out;
746
747 subsys_set_kset(bus, bus_subsys);
748 retval = subsystem_register(&bus->subsys);
749 if (retval)
750 goto out;
751
752 kobject_set_name(&bus->devices.kobj, "devices");
753 bus->devices.subsys = &bus->subsys;
754 retval = kset_register(&bus->devices);
755 if (retval)
756 goto bus_devices_fail;
757
758 kobject_set_name(&bus->drivers.kobj, "drivers");
759 bus->drivers.subsys = &bus->subsys;
760 bus->drivers.ktype = &ktype_driver;
761 retval = kset_register(&bus->drivers);
762 if (retval)
763 goto bus_drivers_fail;
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800764
James Bottomley34bb61f2005-09-06 16:56:51 -0700765 klist_init(&bus->klist_devices, klist_devices_get, klist_devices_put);
Alan Stern81107bf2006-09-18 16:24:28 -0400766 klist_init(&bus->klist_drivers, NULL, NULL);
Cornelia Huck1bb68812006-09-22 11:37:04 +0200767 retval = bus_add_attrs(bus);
768 if (retval)
769 goto bus_attrs_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 pr_debug("bus type '%s' registered\n", bus->name);
772 return 0;
773
Cornelia Huck1bb68812006-09-22 11:37:04 +0200774bus_attrs_fail:
775 kset_unregister(&bus->drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776bus_drivers_fail:
777 kset_unregister(&bus->devices);
778bus_devices_fail:
779 subsystem_unregister(&bus->subsys);
780out:
781 return retval;
782}
783
784
785/**
786 * bus_unregister - remove a bus from the system
787 * @bus: bus.
788 *
789 * Unregister the child subsystems and the bus itself.
790 * Finally, we call put_bus() to release the refcount
791 */
792void bus_unregister(struct bus_type * bus)
793{
794 pr_debug("bus %s: unregistering\n", bus->name);
795 bus_remove_attrs(bus);
796 kset_unregister(&bus->drivers);
797 kset_unregister(&bus->devices);
798 subsystem_unregister(&bus->subsys);
799}
800
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000801int bus_register_notifier(struct bus_type *bus, struct notifier_block *nb)
802{
803 return blocking_notifier_chain_register(&bus->bus_notifier, nb);
804}
805EXPORT_SYMBOL_GPL(bus_register_notifier);
806
807int bus_unregister_notifier(struct bus_type *bus, struct notifier_block *nb)
808{
809 return blocking_notifier_chain_unregister(&bus->bus_notifier, nb);
810}
811EXPORT_SYMBOL_GPL(bus_unregister_notifier);
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813int __init buses_init(void)
814{
815 return subsystem_register(&bus_subsys);
816}
817
818
819EXPORT_SYMBOL_GPL(bus_for_each_dev);
Cornelia Huck0edb5862005-06-22 16:59:51 +0200820EXPORT_SYMBOL_GPL(bus_find_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821EXPORT_SYMBOL_GPL(bus_for_each_drv);
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823EXPORT_SYMBOL_GPL(bus_register);
824EXPORT_SYMBOL_GPL(bus_unregister);
825EXPORT_SYMBOL_GPL(bus_rescan_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827EXPORT_SYMBOL_GPL(bus_create_file);
828EXPORT_SYMBOL_GPL(bus_remove_file);