2 * bus.c - bus driver management
4 * Copyright (c) 2002-3 Patrick Mochel
5 * Copyright (c) 2002-3 Open Source Development Labs
7 * This file is released under the GPLv2
11 #include <linux/config.h>
12 #include <linux/device.h>
13 #include <linux/module.h>
14 #include <linux/errno.h>
15 #include <linux/init.h>
16 #include <linux/string.h>
18 #include "power/power.h"
20 #define to_dev(node) container_of(node, struct device, bus_list)
21 #define to_drv(node) container_of(node, struct device_driver, kobj.entry)
23 #define to_bus_attr(_attr) container_of(_attr, struct bus_attribute, attr)
24 #define to_bus(obj) container_of(obj, struct bus_type, subsys.kset.kobj)
27 * sysfs bindings for drivers
30 #define to_drv_attr(_attr) container_of(_attr, struct driver_attribute, attr)
31 #define to_driver(obj) container_of(obj, struct device_driver, kobj)
35 drv_attr_show(struct kobject
* kobj
, struct attribute
* attr
, char * buf
)
37 struct driver_attribute
* drv_attr
= to_drv_attr(attr
);
38 struct device_driver
* drv
= to_driver(kobj
);
42 ret
= drv_attr
->show(drv
, buf
);
47 drv_attr_store(struct kobject
* kobj
, struct attribute
* attr
,
48 const char * buf
, size_t count
)
50 struct driver_attribute
* drv_attr
= to_drv_attr(attr
);
51 struct device_driver
* drv
= to_driver(kobj
);
55 ret
= drv_attr
->store(drv
, buf
, count
);
59 static struct sysfs_ops driver_sysfs_ops
= {
60 .show
= drv_attr_show
,
61 .store
= drv_attr_store
,
65 static void driver_release(struct kobject
* kobj
)
67 struct device_driver
* drv
= to_driver(kobj
);
71 static struct kobj_type ktype_driver
= {
72 .sysfs_ops
= &driver_sysfs_ops
,
73 .release
= driver_release
,
78 * sysfs bindings for buses
83 bus_attr_show(struct kobject
* kobj
, struct attribute
* attr
, char * buf
)
85 struct bus_attribute
* bus_attr
= to_bus_attr(attr
);
86 struct bus_type
* bus
= to_bus(kobj
);
90 ret
= bus_attr
->show(bus
, buf
);
95 bus_attr_store(struct kobject
* kobj
, struct attribute
* attr
,
96 const char * buf
, size_t count
)
98 struct bus_attribute
* bus_attr
= to_bus_attr(attr
);
99 struct bus_type
* bus
= to_bus(kobj
);
103 ret
= bus_attr
->store(bus
, buf
, count
);
107 static struct sysfs_ops bus_sysfs_ops
= {
108 .show
= bus_attr_show
,
109 .store
= bus_attr_store
,
112 int bus_create_file(struct bus_type
* bus
, struct bus_attribute
* attr
)
116 error
= sysfs_create_file(&bus
->subsys
.kset
.kobj
, &attr
->attr
);
123 void bus_remove_file(struct bus_type
* bus
, struct bus_attribute
* attr
)
126 sysfs_remove_file(&bus
->subsys
.kset
.kobj
, &attr
->attr
);
131 static struct kobj_type ktype_bus
= {
132 .sysfs_ops
= &bus_sysfs_ops
,
136 decl_subsys(bus
, &ktype_bus
, NULL
);
139 * bus_for_each_dev - device iterator.
141 * @start: device to start iterating from.
142 * @data: data for the callback.
143 * @fn: function to be called for each device.
145 * Iterate over @bus's list of devices, and call @fn for each,
146 * passing it @data. If @start is not NULL, we use that device to
147 * begin iterating from.
149 * We check the return of @fn each time. If it returns anything
150 * other than 0, we break out and return that value.
152 * NOTE: The device that returns a non-zero value is not retained
153 * in any way, nor is its refcount incremented. If the caller needs
154 * to retain this data, it should do, and increment the reference
155 * count in the supplied callback.
157 int bus_for_each_dev(struct bus_type
* bus
, struct device
* start
,
158 void * data
, int (*fn
)(struct device
*, void *))
161 struct list_head
* head
;
165 if (!(bus
= get_bus(bus
)))
168 head
= &bus
->devices
.list
;
169 dev
= list_prepare_entry(start
, head
, bus_list
);
171 down_read(&bus
->subsys
.rwsem
);
172 list_for_each_entry_continue(dev
, head
, bus_list
) {
174 error
= fn(dev
, data
);
179 up_read(&bus
->subsys
.rwsem
);
186 * bus_for_each_drv - driver iterator
187 * @bus: bus we're dealing with.
188 * @start: driver to start iterating on.
189 * @data: data to pass to the callback.
190 * @fn: function to call for each driver.
192 * This is nearly identical to the device iterator above.
193 * We iterate over each driver that belongs to @bus, and call
194 * @fn for each. If @fn returns anything but 0, we break out
195 * and return it. If @start is not NULL, we use it as the head
198 * NOTE: we don't return the driver that returns a non-zero
199 * value, nor do we leave the reference count incremented for that
200 * driver. If the caller needs to know that info, it must set it
201 * in the callback. It must also be sure to increment the refcount
202 * so it doesn't disappear before returning to the caller.
205 int bus_for_each_drv(struct bus_type
* bus
, struct device_driver
* start
,
206 void * data
, int (*fn
)(struct device_driver
*, void *))
208 struct list_head
* head
;
209 struct device_driver
*drv
;
212 if(!(bus
= get_bus(bus
)))
215 head
= &bus
->drivers
.list
;
216 drv
= list_prepare_entry(start
, head
, kobj
.entry
);
218 down_read(&bus
->subsys
.rwsem
);
219 list_for_each_entry_continue(drv
, head
, kobj
.entry
) {
221 error
= fn(drv
, data
);
226 up_read(&bus
->subsys
.rwsem
);
232 * device_bind_driver - bind a driver to one device.
235 * Allow manual attachment of a driver to a deivce.
236 * Caller must have already set @dev->driver.
238 * Note that this does not modify the bus reference count
239 * nor take the bus's rwsem. Please verify those are accounted
240 * for before calling this. (It is ok to call with no other effort
241 * from a driver's probe() method.)
244 void device_bind_driver(struct device
* dev
)
246 pr_debug("bound device '%s' to driver '%s'\n",
247 dev
->bus_id
, dev
->driver
->name
);
248 list_add_tail(&dev
->driver_list
, &dev
->driver
->devices
);
249 sysfs_create_link(&dev
->driver
->kobj
, &dev
->kobj
,
250 kobject_name(&dev
->kobj
));
255 * bus_match - check compatibility between device & driver.
259 * First, we call the bus's match function, which should compare
260 * the device IDs the driver supports with the device IDs of the
261 * device. Note we don't do this ourselves because we don't know
262 * the format of the ID structures, nor what is to be considered
263 * a match and what is not.
265 * If we find a match, we call @drv->probe(@dev) if it exists, and
266 * call attach() above.
268 static int bus_match(struct device
* dev
, struct device_driver
* drv
)
271 if (dev
->bus
->match(dev
, drv
)) {
274 if ((error
= drv
->probe(dev
))) {
280 device_bind_driver(dev
);
289 * device_attach - try to attach device to a driver.
292 * Walk the list of drivers that the bus has and call bus_match()
293 * for each pair. If a compatible pair is found, break out and return.
295 static int device_attach(struct device
* dev
)
297 struct bus_type
* bus
= dev
->bus
;
298 struct list_head
* entry
;
303 device_bind_driver(dev
);
308 list_for_each(entry
, &bus
->drivers
.list
) {
309 struct device_driver
* drv
= to_drv(entry
);
310 error
= bus_match(dev
, drv
);
313 /* success, driver matched */
315 if (error
!= -ENODEV
)
316 /* driver matched but the probe failed */
318 "%s: probe of %s failed with error %d\n",
319 drv
->name
, dev
->bus_id
, error
);
329 * driver_attach - try to bind driver to devices.
332 * Walk the list of devices that the bus has on it and try to match
333 * the driver with each one.
334 * If bus_match() returns 0 and the @dev->driver is set, we've found
337 * Note that we ignore the -ENODEV error from bus_match(), since it's
338 * perfectly valid for a driver not to bind to any devices.
340 void driver_attach(struct device_driver
* drv
)
342 struct bus_type
* bus
= drv
->bus
;
343 struct list_head
* entry
;
350 list_for_each(entry
, &bus
->devices
.list
) {
351 struct device
* dev
= container_of(entry
, struct device
, bus_list
);
354 error
= bus_match(dev
, drv
);
355 if (error
&& (error
!= -ENODEV
))
356 /* driver matched but the probe failed */
358 "%s: probe of %s failed with error %d\n",
359 drv
->name
, dev
->bus_id
, error
);
369 * device_release_driver - manually detach device from driver.
372 * Manually detach device from driver.
373 * Note that this is called without incrementing the bus
374 * reference count nor taking the bus's rwsem. Be sure that
375 * those are accounted for before calling this function.
378 void device_release_driver(struct device
* dev
)
380 struct device_driver
* drv
= dev
->driver
;
382 sysfs_remove_link(&drv
->kobj
, kobject_name(&dev
->kobj
));
383 list_del_init(&dev
->driver_list
);
384 device_detach_shutdown(dev
);
394 * driver_detach - detach driver from all devices it controls.
398 static void driver_detach(struct device_driver
* drv
)
400 struct list_head
* entry
, * next
;
401 list_for_each_safe(entry
, next
, &drv
->devices
) {
402 struct device
* dev
= container_of(entry
, struct device
, driver_list
);
406 device_release_driver(dev
);
410 static int device_add_attrs(struct bus_type
* bus
, struct device
* dev
)
415 if (bus
->dev_attrs
) {
416 for (i
= 0; attr_name(bus
->dev_attrs
[i
]); i
++) {
417 error
= device_create_file(dev
,&bus
->dev_attrs
[i
]);
426 device_remove_file(dev
,&bus
->dev_attrs
[i
]);
431 static void device_remove_attrs(struct bus_type
* bus
, struct device
* dev
)
435 if (bus
->dev_attrs
) {
436 for (i
= 0; attr_name(bus
->dev_attrs
[i
]); i
++)
437 device_remove_file(dev
,&bus
->dev_attrs
[i
]);
443 * bus_add_device - add device to bus
444 * @dev: device being added
446 * - Add the device to its bus's list of devices.
447 * - Try to attach to driver.
448 * - Create link to device's physical location.
450 int bus_add_device(struct device
* dev
)
452 struct bus_type
* bus
= get_bus(dev
->bus
);
457 down_write(&dev
->bus
->subsys
.rwsem
);
458 pr_debug("bus %s: add device %s\n", bus
->name
, dev
->bus_id
);
459 list_add_tail(&dev
->bus_list
, &dev
->bus
->devices
.list
);
462 up_write(&dev
->bus
->subsys
.rwsem
);
463 device_add_attrs(bus
, dev
);
464 sysfs_create_link(&bus
->devices
.kobj
, &dev
->kobj
, dev
->bus_id
);
472 * bus_remove_device - remove device from bus
473 * @dev: device to be removed
475 * - Remove symlink from bus's directory.
476 * - Delete device from bus's list.
477 * - Detach from its driver.
478 * - Drop reference taken in bus_add_device().
480 void bus_remove_device(struct device
* dev
)
483 sysfs_remove_link(&dev
->bus
->devices
.kobj
, dev
->bus_id
);
484 device_remove_attrs(dev
->bus
, dev
);
485 down_write(&dev
->bus
->subsys
.rwsem
);
486 pr_debug("bus %s: remove device %s\n", dev
->bus
->name
, dev
->bus_id
);
487 device_release_driver(dev
);
488 list_del_init(&dev
->bus_list
);
489 up_write(&dev
->bus
->subsys
.rwsem
);
494 static int driver_add_attrs(struct bus_type
* bus
, struct device_driver
* drv
)
499 if (bus
->drv_attrs
) {
500 for (i
= 0; attr_name(bus
->drv_attrs
[i
]); i
++) {
501 error
= driver_create_file(drv
, &bus
->drv_attrs
[i
]);
510 driver_remove_file(drv
, &bus
->drv_attrs
[i
]);
515 static void driver_remove_attrs(struct bus_type
* bus
, struct device_driver
* drv
)
519 if (bus
->drv_attrs
) {
520 for (i
= 0; attr_name(bus
->drv_attrs
[i
]); i
++)
521 driver_remove_file(drv
, &bus
->drv_attrs
[i
]);
527 * bus_add_driver - Add a driver to the bus.
531 int bus_add_driver(struct device_driver
* drv
)
533 struct bus_type
* bus
= get_bus(drv
->bus
);
538 pr_debug("bus %s: add driver %s\n", bus
->name
, drv
->name
);
539 error
= kobject_set_name(&drv
->kobj
, drv
->name
);
544 drv
->kobj
.kset
= &bus
->drivers
;
545 if ((error
= kobject_register(&drv
->kobj
))) {
551 down_write(&bus
->subsys
.rwsem
);
555 up_write(&bus
->subsys
.rwsem
);
557 driver_add_attrs(bus
, drv
);
564 * bus_remove_driver - delete driver from bus's knowledge.
567 * Detach the driver from the devices it controls, and remove
568 * it from its bus's list of drivers. Finally, we drop the reference
569 * to the bus we took in bus_add_driver().
572 void bus_remove_driver(struct device_driver
* drv
)
575 driver_remove_attrs(drv
->bus
, drv
);
576 down_write(&drv
->bus
->subsys
.rwsem
);
577 pr_debug("bus %s: remove driver %s\n", drv
->bus
->name
, drv
->name
);
582 up_write(&drv
->bus
->subsys
.rwsem
);
583 kobject_unregister(&drv
->kobj
);
591 /* Helper for bus_rescan_devices's iter */
592 static int bus_rescan_devices_helper(struct device
*dev
, void *data
)
596 if (!dev
->driver
&& device_attach(dev
))
606 * bus_rescan_devices - rescan devices on the bus for possible drivers
607 * @bus: the bus to scan.
609 * This function will look for devices on the bus with no driver
610 * attached and rescan it against existing drivers to see if it
611 * matches any. Calls device_attach(). Returns the number of devices
612 * that were sucessfully bound to a driver.
614 int bus_rescan_devices(struct bus_type
* bus
)
618 bus_for_each_dev(bus
, NULL
, &count
, bus_rescan_devices_helper
);
624 struct bus_type
* get_bus(struct bus_type
* bus
)
626 return bus
? container_of(subsys_get(&bus
->subsys
), struct bus_type
, subsys
) : NULL
;
629 void put_bus(struct bus_type
* bus
)
631 subsys_put(&bus
->subsys
);
636 * find_bus - locate bus by name.
637 * @name: name of bus.
639 * Call kset_find_obj() to iterate over list of buses to
640 * find a bus by name. Return bus if found.
642 * Note that kset_find_obj increments bus' reference count.
645 struct bus_type
* find_bus(char * name
)
647 struct kobject
* k
= kset_find_obj(&bus_subsys
.kset
, name
);
648 return k
? to_bus(k
) : NULL
;
653 * bus_add_attrs - Add default attributes for this bus.
654 * @bus: Bus that has just been registered.
657 static int bus_add_attrs(struct bus_type
* bus
)
662 if (bus
->bus_attrs
) {
663 for (i
= 0; attr_name(bus
->bus_attrs
[i
]); i
++) {
664 if ((error
= bus_create_file(bus
,&bus
->bus_attrs
[i
])))
672 bus_remove_file(bus
,&bus
->bus_attrs
[i
]);
676 static void bus_remove_attrs(struct bus_type
* bus
)
680 if (bus
->bus_attrs
) {
681 for (i
= 0; attr_name(bus
->bus_attrs
[i
]); i
++)
682 bus_remove_file(bus
,&bus
->bus_attrs
[i
]);
687 * bus_register - register a bus with the system.
690 * Once we have that, we registered the bus with the kobject
691 * infrastructure, then register the children subsystems it has:
692 * the devices and drivers that belong to the bus.
694 int bus_register(struct bus_type
* bus
)
698 retval
= kobject_set_name(&bus
->subsys
.kset
.kobj
, bus
->name
);
702 subsys_set_kset(bus
, bus_subsys
);
703 retval
= subsystem_register(&bus
->subsys
);
707 kobject_set_name(&bus
->devices
.kobj
, "devices");
708 bus
->devices
.subsys
= &bus
->subsys
;
709 retval
= kset_register(&bus
->devices
);
711 goto bus_devices_fail
;
713 kobject_set_name(&bus
->drivers
.kobj
, "drivers");
714 bus
->drivers
.subsys
= &bus
->subsys
;
715 bus
->drivers
.ktype
= &ktype_driver
;
716 retval
= kset_register(&bus
->drivers
);
718 goto bus_drivers_fail
;
721 pr_debug("bus type '%s' registered\n", bus
->name
);
725 kset_unregister(&bus
->devices
);
727 subsystem_unregister(&bus
->subsys
);
734 * bus_unregister - remove a bus from the system
737 * Unregister the child subsystems and the bus itself.
738 * Finally, we call put_bus() to release the refcount
740 void bus_unregister(struct bus_type
* bus
)
742 pr_debug("bus %s: unregistering\n", bus
->name
);
743 bus_remove_attrs(bus
);
744 kset_unregister(&bus
->drivers
);
745 kset_unregister(&bus
->devices
);
746 subsystem_unregister(&bus
->subsys
);
749 int __init
buses_init(void)
751 return subsystem_register(&bus_subsys
);
755 EXPORT_SYMBOL(bus_for_each_dev
);
756 EXPORT_SYMBOL(bus_for_each_drv
);
758 EXPORT_SYMBOL(device_bind_driver
);
759 EXPORT_SYMBOL(device_release_driver
);
761 EXPORT_SYMBOL(bus_add_device
);
762 EXPORT_SYMBOL(bus_remove_device
);
763 EXPORT_SYMBOL(bus_register
);
764 EXPORT_SYMBOL(bus_unregister
);
765 EXPORT_SYMBOL(bus_rescan_devices
);
766 EXPORT_SYMBOL(get_bus
);
767 EXPORT_SYMBOL(put_bus
);
768 EXPORT_SYMBOL(find_bus
);
770 EXPORT_SYMBOL(bus_create_file
);
771 EXPORT_SYMBOL(bus_remove_file
);