xref: /linux/drivers/base/bus.c (revision 74e9f5fa1570f956c96dd5d3f1053daedbbf01a0)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * bus.c - bus driver management
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * Copyright (c) 2002-3 Patrick Mochel
51da177e4SLinus Torvalds  * Copyright (c) 2002-3 Open Source Development Labs
61da177e4SLinus Torvalds  *
71da177e4SLinus Torvalds  * This file is released under the GPLv2
81da177e4SLinus Torvalds  *
91da177e4SLinus Torvalds  */
101da177e4SLinus Torvalds 
111da177e4SLinus Torvalds #include <linux/device.h>
121da177e4SLinus Torvalds #include <linux/module.h>
131da177e4SLinus Torvalds #include <linux/errno.h>
141da177e4SLinus Torvalds #include <linux/init.h>
151da177e4SLinus Torvalds #include <linux/string.h>
161da177e4SLinus Torvalds #include "base.h"
171da177e4SLinus Torvalds #include "power/power.h"
181da177e4SLinus Torvalds 
191da177e4SLinus Torvalds #define to_bus_attr(_attr) container_of(_attr, struct bus_attribute, attr)
201da177e4SLinus Torvalds #define to_bus(obj) container_of(obj, struct bus_type, subsys.kset.kobj)
211da177e4SLinus Torvalds 
221da177e4SLinus Torvalds /*
231da177e4SLinus Torvalds  * sysfs bindings for drivers
241da177e4SLinus Torvalds  */
251da177e4SLinus Torvalds 
261da177e4SLinus Torvalds #define to_drv_attr(_attr) container_of(_attr, struct driver_attribute, attr)
271da177e4SLinus Torvalds #define to_driver(obj) container_of(obj, struct device_driver, kobj)
281da177e4SLinus Torvalds 
291da177e4SLinus Torvalds 
30b8c5cec2SKay Sievers static int __must_check bus_rescan_devices_helper(struct device *dev,
31b8c5cec2SKay Sievers 						void *data);
32b8c5cec2SKay Sievers 
331da177e4SLinus Torvalds static ssize_t
341da177e4SLinus Torvalds drv_attr_show(struct kobject * kobj, struct attribute * attr, char * buf)
351da177e4SLinus Torvalds {
361da177e4SLinus Torvalds 	struct driver_attribute * drv_attr = to_drv_attr(attr);
371da177e4SLinus Torvalds 	struct device_driver * drv = to_driver(kobj);
384a0c20bfSDmitry Torokhov 	ssize_t ret = -EIO;
391da177e4SLinus Torvalds 
401da177e4SLinus Torvalds 	if (drv_attr->show)
411da177e4SLinus Torvalds 		ret = drv_attr->show(drv, buf);
421da177e4SLinus Torvalds 	return ret;
431da177e4SLinus Torvalds }
441da177e4SLinus Torvalds 
451da177e4SLinus Torvalds static ssize_t
461da177e4SLinus Torvalds drv_attr_store(struct kobject * kobj, struct attribute * attr,
471da177e4SLinus Torvalds 	       const char * buf, size_t count)
481da177e4SLinus Torvalds {
491da177e4SLinus Torvalds 	struct driver_attribute * drv_attr = to_drv_attr(attr);
501da177e4SLinus Torvalds 	struct device_driver * drv = to_driver(kobj);
514a0c20bfSDmitry Torokhov 	ssize_t ret = -EIO;
521da177e4SLinus Torvalds 
531da177e4SLinus Torvalds 	if (drv_attr->store)
541da177e4SLinus Torvalds 		ret = drv_attr->store(drv, buf, count);
551da177e4SLinus Torvalds 	return ret;
561da177e4SLinus Torvalds }
571da177e4SLinus Torvalds 
581da177e4SLinus Torvalds static struct sysfs_ops driver_sysfs_ops = {
591da177e4SLinus Torvalds 	.show	= drv_attr_show,
601da177e4SLinus Torvalds 	.store	= drv_attr_store,
611da177e4SLinus Torvalds };
621da177e4SLinus Torvalds 
631da177e4SLinus Torvalds 
641da177e4SLinus Torvalds static void driver_release(struct kobject * kobj)
651da177e4SLinus Torvalds {
66*74e9f5faSGreg Kroah-Hartman 	/*
67*74e9f5faSGreg Kroah-Hartman 	 * Yes this is an empty release function, it is this way because struct
68*74e9f5faSGreg Kroah-Hartman 	 * device is always a static object, not a dynamic one.  Yes, this is
69*74e9f5faSGreg Kroah-Hartman 	 * not nice and bad, but remember, drivers are code, reference counted
70*74e9f5faSGreg Kroah-Hartman 	 * by the module count, not a device, which is really data.  And yes,
71*74e9f5faSGreg Kroah-Hartman 	 * in the future I do want to have all drivers be created dynamically,
72*74e9f5faSGreg Kroah-Hartman 	 * and am working toward that goal, but it will take a bit longer...
73*74e9f5faSGreg Kroah-Hartman 	 *
74*74e9f5faSGreg Kroah-Hartman 	 * But do not let this example give _anyone_ the idea that they can
75*74e9f5faSGreg Kroah-Hartman 	 * create a release function without any code in it at all, to do that
76*74e9f5faSGreg Kroah-Hartman 	 * is almost always wrong.  If you have any questions about this,
77*74e9f5faSGreg Kroah-Hartman 	 * please send an email to <greg@kroah.com>
78*74e9f5faSGreg Kroah-Hartman 	 */
791da177e4SLinus Torvalds }
801da177e4SLinus Torvalds 
811da177e4SLinus Torvalds static struct kobj_type ktype_driver = {
821da177e4SLinus Torvalds 	.sysfs_ops	= &driver_sysfs_ops,
831da177e4SLinus Torvalds 	.release	= driver_release,
841da177e4SLinus Torvalds };
851da177e4SLinus Torvalds 
861da177e4SLinus Torvalds 
871da177e4SLinus Torvalds /*
881da177e4SLinus Torvalds  * sysfs bindings for buses
891da177e4SLinus Torvalds  */
901da177e4SLinus Torvalds 
911da177e4SLinus Torvalds 
921da177e4SLinus Torvalds static ssize_t
931da177e4SLinus Torvalds bus_attr_show(struct kobject * kobj, struct attribute * attr, char * buf)
941da177e4SLinus Torvalds {
951da177e4SLinus Torvalds 	struct bus_attribute * bus_attr = to_bus_attr(attr);
961da177e4SLinus Torvalds 	struct bus_type * bus = to_bus(kobj);
971da177e4SLinus Torvalds 	ssize_t ret = 0;
981da177e4SLinus Torvalds 
991da177e4SLinus Torvalds 	if (bus_attr->show)
1001da177e4SLinus Torvalds 		ret = bus_attr->show(bus, buf);
1011da177e4SLinus Torvalds 	return ret;
1021da177e4SLinus Torvalds }
1031da177e4SLinus Torvalds 
1041da177e4SLinus Torvalds static ssize_t
1051da177e4SLinus Torvalds bus_attr_store(struct kobject * kobj, struct attribute * attr,
1061da177e4SLinus Torvalds 	       const char * buf, size_t count)
1071da177e4SLinus Torvalds {
1081da177e4SLinus Torvalds 	struct bus_attribute * bus_attr = to_bus_attr(attr);
1091da177e4SLinus Torvalds 	struct bus_type * bus = to_bus(kobj);
1101da177e4SLinus Torvalds 	ssize_t ret = 0;
1111da177e4SLinus Torvalds 
1121da177e4SLinus Torvalds 	if (bus_attr->store)
1131da177e4SLinus Torvalds 		ret = bus_attr->store(bus, buf, count);
1141da177e4SLinus Torvalds 	return ret;
1151da177e4SLinus Torvalds }
1161da177e4SLinus Torvalds 
1171da177e4SLinus Torvalds static struct sysfs_ops bus_sysfs_ops = {
1181da177e4SLinus Torvalds 	.show	= bus_attr_show,
1191da177e4SLinus Torvalds 	.store	= bus_attr_store,
1201da177e4SLinus Torvalds };
1211da177e4SLinus Torvalds 
1221da177e4SLinus Torvalds int bus_create_file(struct bus_type * bus, struct bus_attribute * attr)
1231da177e4SLinus Torvalds {
1241da177e4SLinus Torvalds 	int error;
1251da177e4SLinus Torvalds 	if (get_bus(bus)) {
1261da177e4SLinus Torvalds 		error = sysfs_create_file(&bus->subsys.kset.kobj, &attr->attr);
1271da177e4SLinus Torvalds 		put_bus(bus);
1281da177e4SLinus Torvalds 	} else
1291da177e4SLinus Torvalds 		error = -EINVAL;
1301da177e4SLinus Torvalds 	return error;
1311da177e4SLinus Torvalds }
1321da177e4SLinus Torvalds 
1331da177e4SLinus Torvalds void bus_remove_file(struct bus_type * bus, struct bus_attribute * attr)
1341da177e4SLinus Torvalds {
1351da177e4SLinus Torvalds 	if (get_bus(bus)) {
1361da177e4SLinus Torvalds 		sysfs_remove_file(&bus->subsys.kset.kobj, &attr->attr);
1371da177e4SLinus Torvalds 		put_bus(bus);
1381da177e4SLinus Torvalds 	}
1391da177e4SLinus Torvalds }
1401da177e4SLinus Torvalds 
1411da177e4SLinus Torvalds static struct kobj_type ktype_bus = {
1421da177e4SLinus Torvalds 	.sysfs_ops	= &bus_sysfs_ops,
1431da177e4SLinus Torvalds 
1441da177e4SLinus Torvalds };
1451da177e4SLinus Torvalds 
1467e4ef085SAdrian Bunk static decl_subsys(bus, &ktype_bus, NULL);
1471da177e4SLinus Torvalds 
1481da177e4SLinus Torvalds 
1492139bdd5SRussell King #ifdef CONFIG_HOTPLUG
1502b08c8d0SAlan Stern /* Manually detach a device from its associated driver. */
151151ef38fSGreg Kroah-Hartman static int driver_helper(struct device *dev, void *data)
152151ef38fSGreg Kroah-Hartman {
153151ef38fSGreg Kroah-Hartman 	const char *name = data;
154151ef38fSGreg Kroah-Hartman 
155151ef38fSGreg Kroah-Hartman 	if (strcmp(name, dev->bus_id) == 0)
156151ef38fSGreg Kroah-Hartman 		return 1;
157151ef38fSGreg Kroah-Hartman 	return 0;
158151ef38fSGreg Kroah-Hartman }
159151ef38fSGreg Kroah-Hartman 
160151ef38fSGreg Kroah-Hartman static ssize_t driver_unbind(struct device_driver *drv,
161151ef38fSGreg Kroah-Hartman 			     const char *buf, size_t count)
162151ef38fSGreg Kroah-Hartman {
163151ef38fSGreg Kroah-Hartman 	struct bus_type *bus = get_bus(drv->bus);
164151ef38fSGreg Kroah-Hartman 	struct device *dev;
165151ef38fSGreg Kroah-Hartman 	int err = -ENODEV;
166151ef38fSGreg Kroah-Hartman 
167151ef38fSGreg Kroah-Hartman 	dev = bus_find_device(bus, NULL, (void *)buf, driver_helper);
1682b08c8d0SAlan Stern 	if (dev && dev->driver == drv) {
169bf74ad5bSAlan Stern 		if (dev->parent)	/* Needed for USB */
170bf74ad5bSAlan Stern 			down(&dev->parent->sem);
171151ef38fSGreg Kroah-Hartman 		device_release_driver(dev);
172bf74ad5bSAlan Stern 		if (dev->parent)
173bf74ad5bSAlan Stern 			up(&dev->parent->sem);
174151ef38fSGreg Kroah-Hartman 		err = count;
175151ef38fSGreg Kroah-Hartman 	}
1762b08c8d0SAlan Stern 	put_device(dev);
1772b08c8d0SAlan Stern 	put_bus(bus);
178151ef38fSGreg Kroah-Hartman 	return err;
179151ef38fSGreg Kroah-Hartman }
180151ef38fSGreg Kroah-Hartman static DRIVER_ATTR(unbind, S_IWUSR, NULL, driver_unbind);
181151ef38fSGreg Kroah-Hartman 
182afdce75fSGreg Kroah-Hartman /*
183afdce75fSGreg Kroah-Hartman  * Manually attach a device to a driver.
184afdce75fSGreg Kroah-Hartman  * Note: the driver must want to bind to the device,
185afdce75fSGreg Kroah-Hartman  * it is not possible to override the driver's id table.
186afdce75fSGreg Kroah-Hartman  */
187afdce75fSGreg Kroah-Hartman static ssize_t driver_bind(struct device_driver *drv,
188afdce75fSGreg Kroah-Hartman 			   const char *buf, size_t count)
189afdce75fSGreg Kroah-Hartman {
190afdce75fSGreg Kroah-Hartman 	struct bus_type *bus = get_bus(drv->bus);
191afdce75fSGreg Kroah-Hartman 	struct device *dev;
192afdce75fSGreg Kroah-Hartman 	int err = -ENODEV;
193afdce75fSGreg Kroah-Hartman 
194afdce75fSGreg Kroah-Hartman 	dev = bus_find_device(bus, NULL, (void *)buf, driver_helper);
1952b08c8d0SAlan Stern 	if (dev && dev->driver == NULL) {
196bf74ad5bSAlan Stern 		if (dev->parent)	/* Needed for USB */
197bf74ad5bSAlan Stern 			down(&dev->parent->sem);
198afdce75fSGreg Kroah-Hartman 		down(&dev->sem);
199afdce75fSGreg Kroah-Hartman 		err = driver_probe_device(drv, dev);
200afdce75fSGreg Kroah-Hartman 		up(&dev->sem);
201bf74ad5bSAlan Stern 		if (dev->parent)
202bf74ad5bSAlan Stern 			up(&dev->parent->sem);
20337225401SRyan Wilson 
20437225401SRyan Wilson 		if (err > 0) 		/* success */
20537225401SRyan Wilson 			err = count;
20637225401SRyan Wilson 		else if (err == 0)	/* driver didn't accept device */
20737225401SRyan Wilson 			err = -ENODEV;
208afdce75fSGreg Kroah-Hartman 	}
2092b08c8d0SAlan Stern 	put_device(dev);
2102b08c8d0SAlan Stern 	put_bus(bus);
211afdce75fSGreg Kroah-Hartman 	return err;
212afdce75fSGreg Kroah-Hartman }
213afdce75fSGreg Kroah-Hartman static DRIVER_ATTR(bind, S_IWUSR, NULL, driver_bind);
214afdce75fSGreg Kroah-Hartman 
215b8c5cec2SKay Sievers static ssize_t show_drivers_autoprobe(struct bus_type *bus, char *buf)
216b8c5cec2SKay Sievers {
217b8c5cec2SKay Sievers 	return sprintf(buf, "%d\n", bus->drivers_autoprobe);
218b8c5cec2SKay Sievers }
219b8c5cec2SKay Sievers 
220b8c5cec2SKay Sievers static ssize_t store_drivers_autoprobe(struct bus_type *bus,
221b8c5cec2SKay Sievers 				       const char *buf, size_t count)
222b8c5cec2SKay Sievers {
223b8c5cec2SKay Sievers 	if (buf[0] == '0')
224b8c5cec2SKay Sievers 		bus->drivers_autoprobe = 0;
225b8c5cec2SKay Sievers 	else
226b8c5cec2SKay Sievers 		bus->drivers_autoprobe = 1;
227b8c5cec2SKay Sievers 	return count;
228b8c5cec2SKay Sievers }
229b8c5cec2SKay Sievers 
230b8c5cec2SKay Sievers static ssize_t store_drivers_probe(struct bus_type *bus,
231b8c5cec2SKay Sievers 				   const char *buf, size_t count)
232b8c5cec2SKay Sievers {
233b8c5cec2SKay Sievers 	struct device *dev;
234b8c5cec2SKay Sievers 
235b8c5cec2SKay Sievers 	dev = bus_find_device(bus, NULL, (void *)buf, driver_helper);
236b8c5cec2SKay Sievers 	if (!dev)
237b8c5cec2SKay Sievers 		return -ENODEV;
238b8c5cec2SKay Sievers 	if (bus_rescan_devices_helper(dev, NULL) != 0)
239b8c5cec2SKay Sievers 		return -EINVAL;
240b8c5cec2SKay Sievers 	return count;
241b8c5cec2SKay Sievers }
2422139bdd5SRussell King #endif
243151ef38fSGreg Kroah-Hartman 
244465c7a3aSmochel@digitalimplant.org static struct device * next_device(struct klist_iter * i)
245465c7a3aSmochel@digitalimplant.org {
246465c7a3aSmochel@digitalimplant.org 	struct klist_node * n = klist_next(i);
247465c7a3aSmochel@digitalimplant.org 	return n ? container_of(n, struct device, knode_bus) : NULL;
248465c7a3aSmochel@digitalimplant.org }
249465c7a3aSmochel@digitalimplant.org 
2501da177e4SLinus Torvalds /**
2511da177e4SLinus Torvalds  *	bus_for_each_dev - device iterator.
2521da177e4SLinus Torvalds  *	@bus:	bus type.
2531da177e4SLinus Torvalds  *	@start:	device to start iterating from.
2541da177e4SLinus Torvalds  *	@data:	data for the callback.
2551da177e4SLinus Torvalds  *	@fn:	function to be called for each device.
2561da177e4SLinus Torvalds  *
2571da177e4SLinus Torvalds  *	Iterate over @bus's list of devices, and call @fn for each,
2581da177e4SLinus Torvalds  *	passing it @data. If @start is not NULL, we use that device to
2591da177e4SLinus Torvalds  *	begin iterating from.
2601da177e4SLinus Torvalds  *
2611da177e4SLinus Torvalds  *	We check the return of @fn each time. If it returns anything
2621da177e4SLinus Torvalds  *	other than 0, we break out and return that value.
2631da177e4SLinus Torvalds  *
2641da177e4SLinus Torvalds  *	NOTE: The device that returns a non-zero value is not retained
2651da177e4SLinus Torvalds  *	in any way, nor is its refcount incremented. If the caller needs
2661da177e4SLinus Torvalds  *	to retain this data, it should do, and increment the reference
2671da177e4SLinus Torvalds  *	count in the supplied callback.
2681da177e4SLinus Torvalds  */
2691da177e4SLinus Torvalds 
2701da177e4SLinus Torvalds int bus_for_each_dev(struct bus_type * bus, struct device * start,
2711da177e4SLinus Torvalds 		     void * data, int (*fn)(struct device *, void *))
2721da177e4SLinus Torvalds {
273465c7a3aSmochel@digitalimplant.org 	struct klist_iter i;
274465c7a3aSmochel@digitalimplant.org 	struct device * dev;
275465c7a3aSmochel@digitalimplant.org 	int error = 0;
2761da177e4SLinus Torvalds 
277465c7a3aSmochel@digitalimplant.org 	if (!bus)
278465c7a3aSmochel@digitalimplant.org 		return -EINVAL;
279465c7a3aSmochel@digitalimplant.org 
280465c7a3aSmochel@digitalimplant.org 	klist_iter_init_node(&bus->klist_devices, &i,
281465c7a3aSmochel@digitalimplant.org 			     (start ? &start->knode_bus : NULL));
282465c7a3aSmochel@digitalimplant.org 	while ((dev = next_device(&i)) && !error)
283465c7a3aSmochel@digitalimplant.org 		error = fn(dev, data);
284465c7a3aSmochel@digitalimplant.org 	klist_iter_exit(&i);
285465c7a3aSmochel@digitalimplant.org 	return error;
2861da177e4SLinus Torvalds }
2871da177e4SLinus Torvalds 
2880edb5860SCornelia Huck /**
2890edb5860SCornelia Huck  * bus_find_device - device iterator for locating a particular device.
2900edb5860SCornelia Huck  * @bus: bus type
2910edb5860SCornelia Huck  * @start: Device to begin with
2920edb5860SCornelia Huck  * @data: Data to pass to match function
2930edb5860SCornelia Huck  * @match: Callback function to check device
2940edb5860SCornelia Huck  *
2950edb5860SCornelia Huck  * This is similar to the bus_for_each_dev() function above, but it
2960edb5860SCornelia Huck  * returns a reference to a device that is 'found' for later use, as
2970edb5860SCornelia Huck  * determined by the @match callback.
2980edb5860SCornelia Huck  *
2990edb5860SCornelia Huck  * The callback should return 0 if the device doesn't match and non-zero
3000edb5860SCornelia Huck  * if it does.  If the callback returns non-zero, this function will
3010edb5860SCornelia Huck  * return to the caller and not iterate over any more devices.
3020edb5860SCornelia Huck  */
3030edb5860SCornelia Huck struct device * bus_find_device(struct bus_type *bus,
3040edb5860SCornelia Huck 				struct device *start, void *data,
3050edb5860SCornelia Huck 				int (*match)(struct device *, void *))
3060edb5860SCornelia Huck {
3070edb5860SCornelia Huck 	struct klist_iter i;
3080edb5860SCornelia Huck 	struct device *dev;
3090edb5860SCornelia Huck 
3100edb5860SCornelia Huck 	if (!bus)
3110edb5860SCornelia Huck 		return NULL;
3120edb5860SCornelia Huck 
3130edb5860SCornelia Huck 	klist_iter_init_node(&bus->klist_devices, &i,
3140edb5860SCornelia Huck 			     (start ? &start->knode_bus : NULL));
3150edb5860SCornelia Huck 	while ((dev = next_device(&i)))
3160edb5860SCornelia Huck 		if (match(dev, data) && get_device(dev))
3170edb5860SCornelia Huck 			break;
3180edb5860SCornelia Huck 	klist_iter_exit(&i);
3190edb5860SCornelia Huck 	return dev;
3200edb5860SCornelia Huck }
32138fdac3cSmochel@digitalimplant.org 
32238fdac3cSmochel@digitalimplant.org 
32338fdac3cSmochel@digitalimplant.org static struct device_driver * next_driver(struct klist_iter * i)
32438fdac3cSmochel@digitalimplant.org {
32538fdac3cSmochel@digitalimplant.org 	struct klist_node * n = klist_next(i);
32638fdac3cSmochel@digitalimplant.org 	return n ? container_of(n, struct device_driver, knode_bus) : NULL;
32738fdac3cSmochel@digitalimplant.org }
32838fdac3cSmochel@digitalimplant.org 
3291da177e4SLinus Torvalds /**
3301da177e4SLinus Torvalds  *	bus_for_each_drv - driver iterator
3311da177e4SLinus Torvalds  *	@bus:	bus we're dealing with.
3321da177e4SLinus Torvalds  *	@start:	driver to start iterating on.
3331da177e4SLinus Torvalds  *	@data:	data to pass to the callback.
3341da177e4SLinus Torvalds  *	@fn:	function to call for each driver.
3351da177e4SLinus Torvalds  *
3361da177e4SLinus Torvalds  *	This is nearly identical to the device iterator above.
3371da177e4SLinus Torvalds  *	We iterate over each driver that belongs to @bus, and call
3381da177e4SLinus Torvalds  *	@fn for each. If @fn returns anything but 0, we break out
3391da177e4SLinus Torvalds  *	and return it. If @start is not NULL, we use it as the head
3401da177e4SLinus Torvalds  *	of the list.
3411da177e4SLinus Torvalds  *
3421da177e4SLinus Torvalds  *	NOTE: we don't return the driver that returns a non-zero
3431da177e4SLinus Torvalds  *	value, nor do we leave the reference count incremented for that
3441da177e4SLinus Torvalds  *	driver. If the caller needs to know that info, it must set it
3451da177e4SLinus Torvalds  *	in the callback. It must also be sure to increment the refcount
3461da177e4SLinus Torvalds  *	so it doesn't disappear before returning to the caller.
3471da177e4SLinus Torvalds  */
3481da177e4SLinus Torvalds 
3491da177e4SLinus Torvalds int bus_for_each_drv(struct bus_type * bus, struct device_driver * start,
3501da177e4SLinus Torvalds 		     void * data, int (*fn)(struct device_driver *, void *))
3511da177e4SLinus Torvalds {
35238fdac3cSmochel@digitalimplant.org 	struct klist_iter i;
35338fdac3cSmochel@digitalimplant.org 	struct device_driver * drv;
35438fdac3cSmochel@digitalimplant.org 	int error = 0;
3551da177e4SLinus Torvalds 
35638fdac3cSmochel@digitalimplant.org 	if (!bus)
35738fdac3cSmochel@digitalimplant.org 		return -EINVAL;
35838fdac3cSmochel@digitalimplant.org 
35938fdac3cSmochel@digitalimplant.org 	klist_iter_init_node(&bus->klist_drivers, &i,
36038fdac3cSmochel@digitalimplant.org 			     start ? &start->knode_bus : NULL);
36138fdac3cSmochel@digitalimplant.org 	while ((drv = next_driver(&i)) && !error)
36238fdac3cSmochel@digitalimplant.org 		error = fn(drv, data);
36338fdac3cSmochel@digitalimplant.org 	klist_iter_exit(&i);
36438fdac3cSmochel@digitalimplant.org 	return error;
3651da177e4SLinus Torvalds }
3661da177e4SLinus Torvalds 
3671da177e4SLinus Torvalds static int device_add_attrs(struct bus_type *bus, struct device *dev)
3681da177e4SLinus Torvalds {
3691da177e4SLinus Torvalds 	int error = 0;
3701da177e4SLinus Torvalds 	int i;
3711da177e4SLinus Torvalds 
3724aca67e5SAndrew Morton 	if (!bus->dev_attrs)
3734aca67e5SAndrew Morton 		return 0;
3744aca67e5SAndrew Morton 
3751da177e4SLinus Torvalds 	for (i = 0; attr_name(bus->dev_attrs[i]); i++) {
3761da177e4SLinus Torvalds 		error = device_create_file(dev,&bus->dev_attrs[i]);
3774aca67e5SAndrew Morton 		if (error) {
3781da177e4SLinus Torvalds 			while (--i >= 0)
3791da177e4SLinus Torvalds 				device_remove_file(dev, &bus->dev_attrs[i]);
3804aca67e5SAndrew Morton 			break;
3811da177e4SLinus Torvalds 		}
3824aca67e5SAndrew Morton 	}
3834aca67e5SAndrew Morton 	return error;
3844aca67e5SAndrew Morton }
3851da177e4SLinus Torvalds 
3861da177e4SLinus Torvalds static void device_remove_attrs(struct bus_type * bus, struct device * dev)
3871da177e4SLinus Torvalds {
3881da177e4SLinus Torvalds 	int i;
3891da177e4SLinus Torvalds 
3901da177e4SLinus Torvalds 	if (bus->dev_attrs) {
3911da177e4SLinus Torvalds 		for (i = 0; attr_name(bus->dev_attrs[i]); i++)
3921da177e4SLinus Torvalds 			device_remove_file(dev,&bus->dev_attrs[i]);
3931da177e4SLinus Torvalds 	}
3941da177e4SLinus Torvalds }
3951da177e4SLinus Torvalds 
396b9cafc7dSKay Sievers #ifdef CONFIG_SYSFS_DEPRECATED
397b9cafc7dSKay Sievers static int make_deprecated_bus_links(struct device *dev)
398b9cafc7dSKay Sievers {
399b9cafc7dSKay Sievers 	return sysfs_create_link(&dev->kobj,
400b9cafc7dSKay Sievers 				 &dev->bus->subsys.kset.kobj, "bus");
401b9cafc7dSKay Sievers }
402b9cafc7dSKay Sievers 
403b9cafc7dSKay Sievers static void remove_deprecated_bus_links(struct device *dev)
404b9cafc7dSKay Sievers {
405b9cafc7dSKay Sievers 	sysfs_remove_link(&dev->kobj, "bus");
406b9cafc7dSKay Sievers }
407b9cafc7dSKay Sievers #else
408b9cafc7dSKay Sievers static inline int make_deprecated_bus_links(struct device *dev) { return 0; }
409b9cafc7dSKay Sievers static inline void remove_deprecated_bus_links(struct device *dev) { }
410b9cafc7dSKay Sievers #endif
4111da177e4SLinus Torvalds 
4121da177e4SLinus Torvalds /**
4131da177e4SLinus Torvalds  *	bus_add_device - add device to bus
4141da177e4SLinus Torvalds  *	@dev:	device being added
4151da177e4SLinus Torvalds  *
4161da177e4SLinus Torvalds  *	- Add the device to its bus's list of devices.
41753877d06SKay Sievers  *	- Create link to device's bus.
4181da177e4SLinus Torvalds  */
4191da177e4SLinus Torvalds int bus_add_device(struct device * dev)
4201da177e4SLinus Torvalds {
4211da177e4SLinus Torvalds 	struct bus_type * bus = get_bus(dev->bus);
4221da177e4SLinus Torvalds 	int error = 0;
4231da177e4SLinus Torvalds 
4241da177e4SLinus Torvalds 	if (bus) {
4251da177e4SLinus Torvalds 		pr_debug("bus %s: add device %s\n", bus->name, dev->bus_id);
426ca2b94baSHannes Reinecke 		error = device_add_attrs(bus, dev);
427f86db396SAndrew Morton 		if (error)
428513e7337SCornelia Huck 			goto out_put;
429f86db396SAndrew Morton 		error = sysfs_create_link(&bus->devices.kobj,
430f86db396SAndrew Morton 						&dev->kobj, dev->bus_id);
431f86db396SAndrew Morton 		if (error)
432513e7337SCornelia Huck 			goto out_id;
433f86db396SAndrew Morton 		error = sysfs_create_link(&dev->kobj,
434f86db396SAndrew Morton 				&dev->bus->subsys.kset.kobj, "subsystem");
435f86db396SAndrew Morton 		if (error)
436513e7337SCornelia Huck 			goto out_subsys;
437b9cafc7dSKay Sievers 		error = make_deprecated_bus_links(dev);
438513e7337SCornelia Huck 		if (error)
439513e7337SCornelia Huck 			goto out_deprecated;
4401da177e4SLinus Torvalds 	}
441513e7337SCornelia Huck 	return 0;
442513e7337SCornelia Huck 
443513e7337SCornelia Huck out_deprecated:
444513e7337SCornelia Huck 	sysfs_remove_link(&dev->kobj, "subsystem");
445513e7337SCornelia Huck out_subsys:
446513e7337SCornelia Huck 	sysfs_remove_link(&bus->devices.kobj, dev->bus_id);
447513e7337SCornelia Huck out_id:
448513e7337SCornelia Huck 	device_remove_attrs(bus, dev);
449513e7337SCornelia Huck out_put:
450513e7337SCornelia Huck 	put_bus(dev->bus);
4511da177e4SLinus Torvalds 	return error;
4521da177e4SLinus Torvalds }
4531da177e4SLinus Torvalds 
4541da177e4SLinus Torvalds /**
45553877d06SKay Sievers  *	bus_attach_device - add device to bus
45653877d06SKay Sievers  *	@dev:	device tried to attach to a driver
45753877d06SKay Sievers  *
458f2eaae19SAlan Stern  *	- Add device to bus's list of devices.
45953877d06SKay Sievers  *	- Try to attach to driver.
46053877d06SKay Sievers  */
461c6a46696SCornelia Huck void bus_attach_device(struct device * dev)
46253877d06SKay Sievers {
46353877d06SKay Sievers 	struct bus_type *bus = dev->bus;
464f86db396SAndrew Morton 	int ret = 0;
46553877d06SKay Sievers 
46653877d06SKay Sievers 	if (bus) {
467f2eaae19SAlan Stern 		dev->is_registered = 1;
468b8c5cec2SKay Sievers 		if (bus->drivers_autoprobe)
469f86db396SAndrew Morton 			ret = device_attach(dev);
470c6a46696SCornelia Huck 		WARN_ON(ret < 0);
471c6a46696SCornelia Huck 		if (ret >= 0)
47253877d06SKay Sievers 			klist_add_tail(&dev->knode_bus, &bus->klist_devices);
473c6a46696SCornelia Huck 		else
474f2eaae19SAlan Stern 			dev->is_registered = 0;
47553877d06SKay Sievers 	}
476f86db396SAndrew Morton }
47753877d06SKay Sievers 
47853877d06SKay Sievers /**
4791da177e4SLinus Torvalds  *	bus_remove_device - remove device from bus
4801da177e4SLinus Torvalds  *	@dev:	device to be removed
4811da177e4SLinus Torvalds  *
4821da177e4SLinus Torvalds  *	- Remove symlink from bus's directory.
4831da177e4SLinus Torvalds  *	- Delete device from bus's list.
4841da177e4SLinus Torvalds  *	- Detach from its driver.
4851da177e4SLinus Torvalds  *	- Drop reference taken in bus_add_device().
4861da177e4SLinus Torvalds  */
4871da177e4SLinus Torvalds void bus_remove_device(struct device * dev)
4881da177e4SLinus Torvalds {
4891da177e4SLinus Torvalds 	if (dev->bus) {
490b9d9c82bSKay Sievers 		sysfs_remove_link(&dev->kobj, "subsystem");
491b9cafc7dSKay Sievers 		remove_deprecated_bus_links(dev);
4921da177e4SLinus Torvalds 		sysfs_remove_link(&dev->bus->devices.kobj, dev->bus_id);
4931da177e4SLinus Torvalds 		device_remove_attrs(dev->bus, dev);
494f70fa629SAlan Stern 		if (dev->is_registered) {
495f2eaae19SAlan Stern 			dev->is_registered = 0;
496f2eaae19SAlan Stern 			klist_del(&dev->knode_bus);
497f70fa629SAlan Stern 		}
4981da177e4SLinus Torvalds 		pr_debug("bus %s: remove device %s\n", dev->bus->name, dev->bus_id);
4991da177e4SLinus Torvalds 		device_release_driver(dev);
5001da177e4SLinus Torvalds 		put_bus(dev->bus);
5011da177e4SLinus Torvalds 	}
5021da177e4SLinus Torvalds }
5031da177e4SLinus Torvalds 
5041da177e4SLinus Torvalds static int driver_add_attrs(struct bus_type * bus, struct device_driver * drv)
5051da177e4SLinus Torvalds {
5061da177e4SLinus Torvalds 	int error = 0;
5071da177e4SLinus Torvalds 	int i;
5081da177e4SLinus Torvalds 
5091da177e4SLinus Torvalds 	if (bus->drv_attrs) {
5101da177e4SLinus Torvalds 		for (i = 0; attr_name(bus->drv_attrs[i]); i++) {
5111da177e4SLinus Torvalds 			error = driver_create_file(drv, &bus->drv_attrs[i]);
5121da177e4SLinus Torvalds 			if (error)
5131da177e4SLinus Torvalds 				goto Err;
5141da177e4SLinus Torvalds 		}
5151da177e4SLinus Torvalds 	}
5161da177e4SLinus Torvalds  Done:
5171da177e4SLinus Torvalds 	return error;
5181da177e4SLinus Torvalds  Err:
5191da177e4SLinus Torvalds 	while (--i >= 0)
5201da177e4SLinus Torvalds 		driver_remove_file(drv, &bus->drv_attrs[i]);
5211da177e4SLinus Torvalds 	goto Done;
5221da177e4SLinus Torvalds }
5231da177e4SLinus Torvalds 
5241da177e4SLinus Torvalds 
5251da177e4SLinus Torvalds static void driver_remove_attrs(struct bus_type * bus, struct device_driver * drv)
5261da177e4SLinus Torvalds {
5271da177e4SLinus Torvalds 	int i;
5281da177e4SLinus Torvalds 
5291da177e4SLinus Torvalds 	if (bus->drv_attrs) {
5301da177e4SLinus Torvalds 		for (i = 0; attr_name(bus->drv_attrs[i]); i++)
5311da177e4SLinus Torvalds 			driver_remove_file(drv, &bus->drv_attrs[i]);
5321da177e4SLinus Torvalds 	}
5331da177e4SLinus Torvalds }
5341da177e4SLinus Torvalds 
535874c6241SGreg Kroah-Hartman #ifdef CONFIG_HOTPLUG
536874c6241SGreg Kroah-Hartman /*
537874c6241SGreg Kroah-Hartman  * Thanks to drivers making their tables __devinit, we can't allow manual
538874c6241SGreg Kroah-Hartman  * bind and unbind from userspace unless CONFIG_HOTPLUG is enabled.
539874c6241SGreg Kroah-Hartman  */
540f86db396SAndrew Morton static int __must_check add_bind_files(struct device_driver *drv)
541874c6241SGreg Kroah-Hartman {
542f86db396SAndrew Morton 	int ret;
543f86db396SAndrew Morton 
544f86db396SAndrew Morton 	ret = driver_create_file(drv, &driver_attr_unbind);
545f86db396SAndrew Morton 	if (ret == 0) {
546f86db396SAndrew Morton 		ret = driver_create_file(drv, &driver_attr_bind);
547f86db396SAndrew Morton 		if (ret)
548f86db396SAndrew Morton 			driver_remove_file(drv, &driver_attr_unbind);
549f86db396SAndrew Morton 	}
550f86db396SAndrew Morton 	return ret;
551874c6241SGreg Kroah-Hartman }
552874c6241SGreg Kroah-Hartman 
553874c6241SGreg Kroah-Hartman static void remove_bind_files(struct device_driver *drv)
554874c6241SGreg Kroah-Hartman {
555874c6241SGreg Kroah-Hartman 	driver_remove_file(drv, &driver_attr_bind);
556874c6241SGreg Kroah-Hartman 	driver_remove_file(drv, &driver_attr_unbind);
557874c6241SGreg Kroah-Hartman }
558b8c5cec2SKay Sievers 
559b8c5cec2SKay Sievers static int add_probe_files(struct bus_type *bus)
560b8c5cec2SKay Sievers {
561b8c5cec2SKay Sievers 	int retval;
562b8c5cec2SKay Sievers 
563b8c5cec2SKay Sievers 	bus->drivers_probe_attr.attr.name = "drivers_probe";
564b8c5cec2SKay Sievers 	bus->drivers_probe_attr.attr.mode = S_IWUSR;
565b8c5cec2SKay Sievers 	bus->drivers_probe_attr.attr.owner = bus->owner;
566b8c5cec2SKay Sievers 	bus->drivers_probe_attr.store = store_drivers_probe;
567b8c5cec2SKay Sievers 	retval = bus_create_file(bus, &bus->drivers_probe_attr);
568b8c5cec2SKay Sievers 	if (retval)
569b8c5cec2SKay Sievers 		goto out;
570b8c5cec2SKay Sievers 
571b8c5cec2SKay Sievers 	bus->drivers_autoprobe_attr.attr.name = "drivers_autoprobe";
572b8c5cec2SKay Sievers 	bus->drivers_autoprobe_attr.attr.mode = S_IWUSR | S_IRUGO;
573b8c5cec2SKay Sievers 	bus->drivers_autoprobe_attr.attr.owner = bus->owner;
574b8c5cec2SKay Sievers 	bus->drivers_autoprobe_attr.show = show_drivers_autoprobe;
575b8c5cec2SKay Sievers 	bus->drivers_autoprobe_attr.store = store_drivers_autoprobe;
576b8c5cec2SKay Sievers 	retval = bus_create_file(bus, &bus->drivers_autoprobe_attr);
577b8c5cec2SKay Sievers 	if (retval)
578b8c5cec2SKay Sievers 		bus_remove_file(bus, &bus->drivers_probe_attr);
579b8c5cec2SKay Sievers out:
580b8c5cec2SKay Sievers 	return retval;
581b8c5cec2SKay Sievers }
582b8c5cec2SKay Sievers 
583b8c5cec2SKay Sievers static void remove_probe_files(struct bus_type *bus)
584b8c5cec2SKay Sievers {
585b8c5cec2SKay Sievers 	bus_remove_file(bus, &bus->drivers_autoprobe_attr);
586b8c5cec2SKay Sievers 	bus_remove_file(bus, &bus->drivers_probe_attr);
587b8c5cec2SKay Sievers }
588874c6241SGreg Kroah-Hartman #else
58935acfdd7SYoichi Yuasa static inline int add_bind_files(struct device_driver *drv) { return 0; }
590874c6241SGreg Kroah-Hartman static inline void remove_bind_files(struct device_driver *drv) {}
591b8c5cec2SKay Sievers static inline int add_probe_files(struct bus_type *bus) { return 0; }
592b8c5cec2SKay Sievers static inline void remove_probe_files(struct bus_type *bus) {}
593874c6241SGreg Kroah-Hartman #endif
5941da177e4SLinus Torvalds 
5951da177e4SLinus Torvalds /**
5961da177e4SLinus Torvalds  *	bus_add_driver - Add a driver to the bus.
5971da177e4SLinus Torvalds  *	@drv:	driver.
5981da177e4SLinus Torvalds  *
5991da177e4SLinus Torvalds  */
6001da177e4SLinus Torvalds int bus_add_driver(struct device_driver *drv)
6011da177e4SLinus Torvalds {
6021da177e4SLinus Torvalds 	struct bus_type * bus = get_bus(drv->bus);
6031da177e4SLinus Torvalds 	int error = 0;
6041da177e4SLinus Torvalds 
605d9fd4d3bSJeff Garzik 	if (!bus)
606d9fd4d3bSJeff Garzik 		return 0;
607d9fd4d3bSJeff Garzik 
6081da177e4SLinus Torvalds 	pr_debug("bus %s: add driver %s\n", bus->name, drv->name);
6091da177e4SLinus Torvalds 	error = kobject_set_name(&drv->kobj, "%s", drv->name);
610f86db396SAndrew Morton 	if (error)
611f86db396SAndrew Morton 		goto out_put_bus;
6121da177e4SLinus Torvalds 	drv->kobj.kset = &bus->drivers;
613f86db396SAndrew Morton 	if ((error = kobject_register(&drv->kobj)))
614f86db396SAndrew Morton 		goto out_put_bus;
6151da177e4SLinus Torvalds 
616b8c5cec2SKay Sievers 	if (drv->bus->drivers_autoprobe) {
617f86db396SAndrew Morton 		error = driver_attach(drv);
618f86db396SAndrew Morton 		if (error)
619f86db396SAndrew Morton 			goto out_unregister;
620b8c5cec2SKay Sievers 	}
621d856f1e3SJames Bottomley 	klist_add_tail(&drv->knode_bus, &bus->klist_drivers);
6221da177e4SLinus Torvalds 	module_add_driver(drv->owner, drv);
6231da177e4SLinus Torvalds 
624f86db396SAndrew Morton 	error = driver_add_attrs(bus, drv);
625f86db396SAndrew Morton 	if (error) {
626f86db396SAndrew Morton 		/* How the hell do we get out of this pickle? Give up */
627f86db396SAndrew Morton 		printk(KERN_ERR "%s: driver_add_attrs(%s) failed\n",
628f86db396SAndrew Morton 			__FUNCTION__, drv->name);
629f86db396SAndrew Morton 	}
630f86db396SAndrew Morton 	error = add_bind_files(drv);
631f86db396SAndrew Morton 	if (error) {
632f86db396SAndrew Morton 		/* Ditto */
633f86db396SAndrew Morton 		printk(KERN_ERR "%s: add_bind_files(%s) failed\n",
634f86db396SAndrew Morton 			__FUNCTION__, drv->name);
635f86db396SAndrew Morton 	}
636d9fd4d3bSJeff Garzik 
6371da177e4SLinus Torvalds 	return error;
638f86db396SAndrew Morton out_unregister:
639f86db396SAndrew Morton 	kobject_unregister(&drv->kobj);
640f86db396SAndrew Morton out_put_bus:
641f86db396SAndrew Morton 	put_bus(bus);
642f86db396SAndrew Morton 	return error;
6431da177e4SLinus Torvalds }
6441da177e4SLinus Torvalds 
6451da177e4SLinus Torvalds /**
6461da177e4SLinus Torvalds  *	bus_remove_driver - delete driver from bus's knowledge.
6471da177e4SLinus Torvalds  *	@drv:	driver.
6481da177e4SLinus Torvalds  *
6491da177e4SLinus Torvalds  *	Detach the driver from the devices it controls, and remove
6501da177e4SLinus Torvalds  *	it from its bus's list of drivers. Finally, we drop the reference
6511da177e4SLinus Torvalds  *	to the bus we took in bus_add_driver().
6521da177e4SLinus Torvalds  */
6531da177e4SLinus Torvalds 
6541da177e4SLinus Torvalds void bus_remove_driver(struct device_driver * drv)
6551da177e4SLinus Torvalds {
656d9fd4d3bSJeff Garzik 	if (!drv->bus)
657d9fd4d3bSJeff Garzik 		return;
658d9fd4d3bSJeff Garzik 
659874c6241SGreg Kroah-Hartman 	remove_bind_files(drv);
6601da177e4SLinus Torvalds 	driver_remove_attrs(drv->bus, drv);
66138fdac3cSmochel@digitalimplant.org 	klist_remove(&drv->knode_bus);
6621da177e4SLinus Torvalds 	pr_debug("bus %s: remove driver %s\n", drv->bus->name, drv->name);
6631da177e4SLinus Torvalds 	driver_detach(drv);
6641da177e4SLinus Torvalds 	module_remove_driver(drv);
6651da177e4SLinus Torvalds 	kobject_unregister(&drv->kobj);
6661da177e4SLinus Torvalds 	put_bus(drv->bus);
6671da177e4SLinus Torvalds }
6681da177e4SLinus Torvalds 
6691da177e4SLinus Torvalds 
6701da177e4SLinus Torvalds /* Helper for bus_rescan_devices's iter */
671f86db396SAndrew Morton static int __must_check bus_rescan_devices_helper(struct device *dev,
672f86db396SAndrew Morton 						void *data)
6731da177e4SLinus Torvalds {
674f86db396SAndrew Morton 	int ret = 0;
675f86db396SAndrew Morton 
676bf74ad5bSAlan Stern 	if (!dev->driver) {
677bf74ad5bSAlan Stern 		if (dev->parent)	/* Needed for USB */
678bf74ad5bSAlan Stern 			down(&dev->parent->sem);
679f86db396SAndrew Morton 		ret = device_attach(dev);
680bf74ad5bSAlan Stern 		if (dev->parent)
681bf74ad5bSAlan Stern 			up(&dev->parent->sem);
682bf74ad5bSAlan Stern 	}
683f86db396SAndrew Morton 	return ret < 0 ? ret : 0;
6841da177e4SLinus Torvalds }
6851da177e4SLinus Torvalds 
6861da177e4SLinus Torvalds /**
6871da177e4SLinus Torvalds  * bus_rescan_devices - rescan devices on the bus for possible drivers
6881da177e4SLinus Torvalds  * @bus: the bus to scan.
6891da177e4SLinus Torvalds  *
6901da177e4SLinus Torvalds  * This function will look for devices on the bus with no driver
69123d3d602SGreg Kroah-Hartman  * attached and rescan it against existing drivers to see if it matches
69223d3d602SGreg Kroah-Hartman  * any by calling device_attach() for the unbound devices.
6931da177e4SLinus Torvalds  */
694f86db396SAndrew Morton int bus_rescan_devices(struct bus_type * bus)
6951da177e4SLinus Torvalds {
696f86db396SAndrew Morton 	return bus_for_each_dev(bus, NULL, NULL, bus_rescan_devices_helper);
6971da177e4SLinus Torvalds }
6981da177e4SLinus Torvalds 
699e935d5daSMoore, Eric /**
700e935d5daSMoore, Eric  * device_reprobe - remove driver for a device and probe for a new driver
701e935d5daSMoore, Eric  * @dev: the device to reprobe
702e935d5daSMoore, Eric  *
703e935d5daSMoore, Eric  * This function detaches the attached driver (if any) for the given
704e935d5daSMoore, Eric  * device and restarts the driver probing process.  It is intended
705e935d5daSMoore, Eric  * to use if probing criteria changed during a devices lifetime and
706e935d5daSMoore, Eric  * driver attachment should change accordingly.
707e935d5daSMoore, Eric  */
708f86db396SAndrew Morton int device_reprobe(struct device *dev)
709e935d5daSMoore, Eric {
710e935d5daSMoore, Eric 	if (dev->driver) {
711e935d5daSMoore, Eric 		if (dev->parent)        /* Needed for USB */
712e935d5daSMoore, Eric 			down(&dev->parent->sem);
713e935d5daSMoore, Eric 		device_release_driver(dev);
714e935d5daSMoore, Eric 		if (dev->parent)
715e935d5daSMoore, Eric 			up(&dev->parent->sem);
716e935d5daSMoore, Eric 	}
717f86db396SAndrew Morton 	return bus_rescan_devices_helper(dev, NULL);
718e935d5daSMoore, Eric }
719e935d5daSMoore, Eric EXPORT_SYMBOL_GPL(device_reprobe);
7201da177e4SLinus Torvalds 
7211da177e4SLinus Torvalds struct bus_type *get_bus(struct bus_type *bus)
7221da177e4SLinus Torvalds {
723f86db396SAndrew Morton 	return bus ? container_of(subsys_get(&bus->subsys),
724f86db396SAndrew Morton 				struct bus_type, subsys) : NULL;
7251da177e4SLinus Torvalds }
7261da177e4SLinus Torvalds 
7271da177e4SLinus Torvalds void put_bus(struct bus_type * bus)
7281da177e4SLinus Torvalds {
7291da177e4SLinus Torvalds 	subsys_put(&bus->subsys);
7301da177e4SLinus Torvalds }
7311da177e4SLinus Torvalds 
7321da177e4SLinus Torvalds 
7331da177e4SLinus Torvalds /**
7341da177e4SLinus Torvalds  *	find_bus - locate bus by name.
7351da177e4SLinus Torvalds  *	@name:	name of bus.
7361da177e4SLinus Torvalds  *
7371da177e4SLinus Torvalds  *	Call kset_find_obj() to iterate over list of buses to
7381da177e4SLinus Torvalds  *	find a bus by name. Return bus if found.
7391da177e4SLinus Torvalds  *
7401da177e4SLinus Torvalds  *	Note that kset_find_obj increments bus' reference count.
7411da177e4SLinus Torvalds  */
7427e4ef085SAdrian Bunk #if 0
7431da177e4SLinus Torvalds struct bus_type * find_bus(char * name)
7441da177e4SLinus Torvalds {
7451da177e4SLinus Torvalds 	struct kobject * k = kset_find_obj(&bus_subsys.kset, name);
7461da177e4SLinus Torvalds 	return k ? to_bus(k) : NULL;
7471da177e4SLinus Torvalds }
7487e4ef085SAdrian Bunk #endif  /*  0  */
7491da177e4SLinus Torvalds 
7501da177e4SLinus Torvalds 
7511da177e4SLinus Torvalds /**
7521da177e4SLinus Torvalds  *	bus_add_attrs - Add default attributes for this bus.
7531da177e4SLinus Torvalds  *	@bus:	Bus that has just been registered.
7541da177e4SLinus Torvalds  */
7551da177e4SLinus Torvalds 
7561da177e4SLinus Torvalds static int bus_add_attrs(struct bus_type * bus)
7571da177e4SLinus Torvalds {
7581da177e4SLinus Torvalds 	int error = 0;
7591da177e4SLinus Torvalds 	int i;
7601da177e4SLinus Torvalds 
7611da177e4SLinus Torvalds 	if (bus->bus_attrs) {
7621da177e4SLinus Torvalds 		for (i = 0; attr_name(bus->bus_attrs[i]); i++) {
7631da177e4SLinus Torvalds 			if ((error = bus_create_file(bus,&bus->bus_attrs[i])))
7641da177e4SLinus Torvalds 				goto Err;
7651da177e4SLinus Torvalds 		}
7661da177e4SLinus Torvalds 	}
7671da177e4SLinus Torvalds  Done:
7681da177e4SLinus Torvalds 	return error;
7691da177e4SLinus Torvalds  Err:
7701da177e4SLinus Torvalds 	while (--i >= 0)
7711da177e4SLinus Torvalds 		bus_remove_file(bus,&bus->bus_attrs[i]);
7721da177e4SLinus Torvalds 	goto Done;
7731da177e4SLinus Torvalds }
7741da177e4SLinus Torvalds 
7751da177e4SLinus Torvalds static void bus_remove_attrs(struct bus_type * bus)
7761da177e4SLinus Torvalds {
7771da177e4SLinus Torvalds 	int i;
7781da177e4SLinus Torvalds 
7791da177e4SLinus Torvalds 	if (bus->bus_attrs) {
7801da177e4SLinus Torvalds 		for (i = 0; attr_name(bus->bus_attrs[i]); i++)
7811da177e4SLinus Torvalds 			bus_remove_file(bus,&bus->bus_attrs[i]);
7821da177e4SLinus Torvalds 	}
7831da177e4SLinus Torvalds }
7841da177e4SLinus Torvalds 
78534bb61f9SJames Bottomley static void klist_devices_get(struct klist_node *n)
78634bb61f9SJames Bottomley {
78734bb61f9SJames Bottomley 	struct device *dev = container_of(n, struct device, knode_bus);
78834bb61f9SJames Bottomley 
78934bb61f9SJames Bottomley 	get_device(dev);
79034bb61f9SJames Bottomley }
79134bb61f9SJames Bottomley 
79234bb61f9SJames Bottomley static void klist_devices_put(struct klist_node *n)
79334bb61f9SJames Bottomley {
79434bb61f9SJames Bottomley 	struct device *dev = container_of(n, struct device, knode_bus);
79534bb61f9SJames Bottomley 
79634bb61f9SJames Bottomley 	put_device(dev);
79734bb61f9SJames Bottomley }
79834bb61f9SJames Bottomley 
7991da177e4SLinus Torvalds /**
8001da177e4SLinus Torvalds  *	bus_register - register a bus with the system.
8011da177e4SLinus Torvalds  *	@bus:	bus.
8021da177e4SLinus Torvalds  *
8031da177e4SLinus Torvalds  *	Once we have that, we registered the bus with the kobject
8041da177e4SLinus Torvalds  *	infrastructure, then register the children subsystems it has:
8051da177e4SLinus Torvalds  *	the devices and drivers that belong to the bus.
8061da177e4SLinus Torvalds  */
8071da177e4SLinus Torvalds int bus_register(struct bus_type * bus)
8081da177e4SLinus Torvalds {
8091da177e4SLinus Torvalds 	int retval;
8101da177e4SLinus Torvalds 
811116af378SBenjamin Herrenschmidt 	BLOCKING_INIT_NOTIFIER_HEAD(&bus->bus_notifier);
812116af378SBenjamin Herrenschmidt 
8131da177e4SLinus Torvalds 	retval = kobject_set_name(&bus->subsys.kset.kobj, "%s", bus->name);
8141da177e4SLinus Torvalds 	if (retval)
8151da177e4SLinus Torvalds 		goto out;
8161da177e4SLinus Torvalds 
8171da177e4SLinus Torvalds 	subsys_set_kset(bus, bus_subsys);
8181da177e4SLinus Torvalds 	retval = subsystem_register(&bus->subsys);
8191da177e4SLinus Torvalds 	if (retval)
8201da177e4SLinus Torvalds 		goto out;
8211da177e4SLinus Torvalds 
8221da177e4SLinus Torvalds 	kobject_set_name(&bus->devices.kobj, "devices");
8231da177e4SLinus Torvalds 	bus->devices.subsys = &bus->subsys;
8241da177e4SLinus Torvalds 	retval = kset_register(&bus->devices);
8251da177e4SLinus Torvalds 	if (retval)
8261da177e4SLinus Torvalds 		goto bus_devices_fail;
8271da177e4SLinus Torvalds 
8281da177e4SLinus Torvalds 	kobject_set_name(&bus->drivers.kobj, "drivers");
8291da177e4SLinus Torvalds 	bus->drivers.subsys = &bus->subsys;
8301da177e4SLinus Torvalds 	bus->drivers.ktype = &ktype_driver;
8311da177e4SLinus Torvalds 	retval = kset_register(&bus->drivers);
8321da177e4SLinus Torvalds 	if (retval)
8331da177e4SLinus Torvalds 		goto bus_drivers_fail;
834465c7a3aSmochel@digitalimplant.org 
83534bb61f9SJames Bottomley 	klist_init(&bus->klist_devices, klist_devices_get, klist_devices_put);
83681107bf5SAlan Stern 	klist_init(&bus->klist_drivers, NULL, NULL);
837b8c5cec2SKay Sievers 
838b8c5cec2SKay Sievers 	bus->drivers_autoprobe = 1;
839b8c5cec2SKay Sievers 	retval = add_probe_files(bus);
840b8c5cec2SKay Sievers 	if (retval)
841b8c5cec2SKay Sievers 		goto bus_probe_files_fail;
842b8c5cec2SKay Sievers 
8431bb6881aSCornelia Huck 	retval = bus_add_attrs(bus);
8441bb6881aSCornelia Huck 	if (retval)
8451bb6881aSCornelia Huck 		goto bus_attrs_fail;
8461da177e4SLinus Torvalds 
8471da177e4SLinus Torvalds 	pr_debug("bus type '%s' registered\n", bus->name);
8481da177e4SLinus Torvalds 	return 0;
8491da177e4SLinus Torvalds 
8501bb6881aSCornelia Huck bus_attrs_fail:
851b8c5cec2SKay Sievers 	remove_probe_files(bus);
852b8c5cec2SKay Sievers bus_probe_files_fail:
8531bb6881aSCornelia Huck 	kset_unregister(&bus->drivers);
8541da177e4SLinus Torvalds bus_drivers_fail:
8551da177e4SLinus Torvalds 	kset_unregister(&bus->devices);
8561da177e4SLinus Torvalds bus_devices_fail:
8571da177e4SLinus Torvalds 	subsystem_unregister(&bus->subsys);
8581da177e4SLinus Torvalds out:
8591da177e4SLinus Torvalds 	return retval;
8601da177e4SLinus Torvalds }
8611da177e4SLinus Torvalds 
8621da177e4SLinus Torvalds /**
8631da177e4SLinus Torvalds  *	bus_unregister - remove a bus from the system
8641da177e4SLinus Torvalds  *	@bus:	bus.
8651da177e4SLinus Torvalds  *
8661da177e4SLinus Torvalds  *	Unregister the child subsystems and the bus itself.
8671da177e4SLinus Torvalds  *	Finally, we call put_bus() to release the refcount
8681da177e4SLinus Torvalds  */
8691da177e4SLinus Torvalds void bus_unregister(struct bus_type * bus)
8701da177e4SLinus Torvalds {
8711da177e4SLinus Torvalds 	pr_debug("bus %s: unregistering\n", bus->name);
8721da177e4SLinus Torvalds 	bus_remove_attrs(bus);
873b8c5cec2SKay Sievers 	remove_probe_files(bus);
8741da177e4SLinus Torvalds 	kset_unregister(&bus->drivers);
8751da177e4SLinus Torvalds 	kset_unregister(&bus->devices);
8761da177e4SLinus Torvalds 	subsystem_unregister(&bus->subsys);
8771da177e4SLinus Torvalds }
8781da177e4SLinus Torvalds 
879116af378SBenjamin Herrenschmidt int bus_register_notifier(struct bus_type *bus, struct notifier_block *nb)
880116af378SBenjamin Herrenschmidt {
881116af378SBenjamin Herrenschmidt 	return blocking_notifier_chain_register(&bus->bus_notifier, nb);
882116af378SBenjamin Herrenschmidt }
883116af378SBenjamin Herrenschmidt EXPORT_SYMBOL_GPL(bus_register_notifier);
884116af378SBenjamin Herrenschmidt 
885116af378SBenjamin Herrenschmidt int bus_unregister_notifier(struct bus_type *bus, struct notifier_block *nb)
886116af378SBenjamin Herrenschmidt {
887116af378SBenjamin Herrenschmidt 	return blocking_notifier_chain_unregister(&bus->bus_notifier, nb);
888116af378SBenjamin Herrenschmidt }
889116af378SBenjamin Herrenschmidt EXPORT_SYMBOL_GPL(bus_unregister_notifier);
890116af378SBenjamin Herrenschmidt 
8911da177e4SLinus Torvalds int __init buses_init(void)
8921da177e4SLinus Torvalds {
8931da177e4SLinus Torvalds 	return subsystem_register(&bus_subsys);
8941da177e4SLinus Torvalds }
8951da177e4SLinus Torvalds 
8961da177e4SLinus Torvalds 
8971da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(bus_for_each_dev);
8980edb5860SCornelia Huck EXPORT_SYMBOL_GPL(bus_find_device);
8991da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(bus_for_each_drv);
9001da177e4SLinus Torvalds 
9011da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(bus_register);
9021da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(bus_unregister);
9031da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(bus_rescan_devices);
9041da177e4SLinus Torvalds 
9051da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(bus_create_file);
9061da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(bus_remove_file);
907