blob: 33c270a64db708d62f0c759110109acdb64751cc [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
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -08006 * Copyright (c) 2007 Greg Kroah-Hartman <gregkh@suse.de>
7 * Copyright (c) 2007 Novell Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This file is released under the GPLv2
10 *
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/device.h>
14#include <linux/module.h>
15#include <linux/errno.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
18#include <linux/string.h>
19#include "base.h"
20#include "power/power.h"
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#define to_bus_attr(_attr) container_of(_attr, struct bus_attribute, attr)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070023#define to_bus(obj) container_of(obj, struct bus_type_private, subsys.kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25/*
26 * sysfs bindings for drivers
27 */
28
29#define to_drv_attr(_attr) container_of(_attr, struct driver_attribute, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31
Kay Sieversb8c5cec2007-02-16 17:33:36 +010032static int __must_check bus_rescan_devices_helper(struct device *dev,
33 void *data);
34
Greg Kroah-Hartman5901d012007-09-13 02:53:13 -070035static struct bus_type *bus_get(struct bus_type *bus)
36{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070037 if (bus) {
38 kset_get(&bus->p->subsys);
39 return bus;
40 }
41 return NULL;
Greg Kroah-Hartman5901d012007-09-13 02:53:13 -070042}
43
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -070044static void bus_put(struct bus_type *bus)
45{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070046 if (bus)
47 kset_put(&bus->p->subsys);
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -070048}
49
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080050static ssize_t drv_attr_show(struct kobject *kobj, struct attribute *attr,
51 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080053 struct driver_attribute *drv_attr = to_drv_attr(attr);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080054 struct driver_private *drv_priv = to_driver(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050055 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57 if (drv_attr->show)
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080058 ret = drv_attr->show(drv_priv->driver, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return ret;
60}
61
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080062static ssize_t drv_attr_store(struct kobject *kobj, struct attribute *attr,
63 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080065 struct driver_attribute *drv_attr = to_drv_attr(attr);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080066 struct driver_private *drv_priv = to_driver(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050067 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 if (drv_attr->store)
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080070 ret = drv_attr->store(drv_priv->driver, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return ret;
72}
73
Emese Revfy52cf25d2010-01-19 02:58:23 +010074static const struct sysfs_ops driver_sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 .show = drv_attr_show,
76 .store = drv_attr_store,
77};
78
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080079static void driver_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080081 struct driver_private *drv_priv = to_driver(kobj);
82
Harvey Harrison2b3a3022008-03-04 16:41:05 -080083 pr_debug("driver: '%s': %s\n", kobject_name(kobj), __func__);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080084 kfree(drv_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Greg Kroah-Hartmana1148fb2007-10-11 10:47:49 -060087static struct kobj_type driver_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 .sysfs_ops = &driver_sysfs_ops,
89 .release = driver_release,
90};
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*
93 * sysfs bindings for buses
94 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080095static ssize_t bus_attr_show(struct kobject *kobj, struct attribute *attr,
96 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080098 struct bus_attribute *bus_attr = to_bus_attr(attr);
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070099 struct bus_type_private *bus_priv = to_bus(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 ssize_t ret = 0;
101
102 if (bus_attr->show)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700103 ret = bus_attr->show(bus_priv->bus, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return ret;
105}
106
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800107static ssize_t bus_attr_store(struct kobject *kobj, struct attribute *attr,
108 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800110 struct bus_attribute *bus_attr = to_bus_attr(attr);
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700111 struct bus_type_private *bus_priv = to_bus(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 ssize_t ret = 0;
113
114 if (bus_attr->store)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700115 ret = bus_attr->store(bus_priv->bus, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return ret;
117}
118
Emese Revfy52cf25d2010-01-19 02:58:23 +0100119static const struct sysfs_ops bus_sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 .show = bus_attr_show,
121 .store = bus_attr_store,
122};
123
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800124int bus_create_file(struct bus_type *bus, struct bus_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 int error;
Greg Kroah-Hartman5901d012007-09-13 02:53:13 -0700127 if (bus_get(bus)) {
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700128 error = sysfs_create_file(&bus->p->subsys.kobj, &attr->attr);
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700129 bus_put(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 } else
131 error = -EINVAL;
132 return error;
133}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800134EXPORT_SYMBOL_GPL(bus_create_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800136void bus_remove_file(struct bus_type *bus, struct bus_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Greg Kroah-Hartman5901d012007-09-13 02:53:13 -0700138 if (bus_get(bus)) {
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700139 sysfs_remove_file(&bus->p->subsys.kobj, &attr->attr);
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700140 bus_put(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800143EXPORT_SYMBOL_GPL(bus_remove_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Kay Sievers80f03e32007-05-26 11:21:36 +0200145static struct kobj_type bus_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 .sysfs_ops = &bus_sysfs_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
Kay Sievers80f03e32007-05-26 11:21:36 +0200149static int bus_uevent_filter(struct kset *kset, struct kobject *kobj)
150{
151 struct kobj_type *ktype = get_ktype(kobj);
152
153 if (ktype == &bus_ktype)
154 return 1;
155 return 0;
156}
157
Emese Revfy9cd43612009-12-31 14:52:51 +0100158static const struct kset_uevent_ops bus_uevent_ops = {
Kay Sievers80f03e32007-05-26 11:21:36 +0200159 .filter = bus_uevent_filter,
160};
161
Greg Kroah-Hartman59a54832007-10-29 23:22:26 -0500162static struct kset *bus_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Russell King2139bdd2006-02-07 12:58:20 -0800165#ifdef CONFIG_HOTPLUG
Alan Stern2b08c8d2005-11-23 15:43:50 -0800166/* Manually detach a device from its associated driver. */
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700167static ssize_t driver_unbind(struct device_driver *drv,
168 const char *buf, size_t count)
169{
Greg Kroah-Hartman5901d012007-09-13 02:53:13 -0700170 struct bus_type *bus = bus_get(drv->bus);
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700171 struct device *dev;
172 int err = -ENODEV;
173
Greg Kroah-Hartman1f9ffc02008-01-27 10:29:20 -0800174 dev = bus_find_device_by_name(bus, NULL, buf);
Alan Stern2b08c8d2005-11-23 15:43:50 -0800175 if (dev && dev->driver == drv) {
Alan Sternbf74ad52005-11-17 16:54:12 -0500176 if (dev->parent) /* Needed for USB */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800177 device_lock(dev->parent);
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700178 device_release_driver(dev);
Alan Sternbf74ad52005-11-17 16:54:12 -0500179 if (dev->parent)
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800180 device_unlock(dev->parent);
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700181 err = count;
182 }
Alan Stern2b08c8d2005-11-23 15:43:50 -0800183 put_device(dev);
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700184 bus_put(bus);
Alan Stern2b08c8d2005-11-23 15:43:50 -0800185 return err;
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700186}
187static DRIVER_ATTR(unbind, S_IWUSR, NULL, driver_unbind);
188
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700189/*
190 * Manually attach a device to a driver.
191 * Note: the driver must want to bind to the device,
192 * it is not possible to override the driver's id table.
193 */
194static ssize_t driver_bind(struct device_driver *drv,
195 const char *buf, size_t count)
196{
Greg Kroah-Hartman5901d012007-09-13 02:53:13 -0700197 struct bus_type *bus = bus_get(drv->bus);
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700198 struct device *dev;
199 int err = -ENODEV;
200
Greg Kroah-Hartman1f9ffc02008-01-27 10:29:20 -0800201 dev = bus_find_device_by_name(bus, NULL, buf);
Ming Lei49b420a2009-01-21 23:27:47 +0800202 if (dev && dev->driver == NULL && driver_match_device(drv, dev)) {
Alan Sternbf74ad52005-11-17 16:54:12 -0500203 if (dev->parent) /* Needed for USB */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800204 device_lock(dev->parent);
205 device_lock(dev);
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700206 err = driver_probe_device(drv, dev);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800207 device_unlock(dev);
Alan Sternbf74ad52005-11-17 16:54:12 -0500208 if (dev->parent)
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800209 device_unlock(dev->parent);
Ryan Wilson37225402006-03-22 16:26:25 -0500210
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800211 if (err > 0) {
212 /* success */
Ryan Wilson37225402006-03-22 16:26:25 -0500213 err = count;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800214 } else if (err == 0) {
215 /* driver didn't accept device */
Ryan Wilson37225402006-03-22 16:26:25 -0500216 err = -ENODEV;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800217 }
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700218 }
Alan Stern2b08c8d2005-11-23 15:43:50 -0800219 put_device(dev);
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700220 bus_put(bus);
Alan Stern2b08c8d2005-11-23 15:43:50 -0800221 return err;
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700222}
223static DRIVER_ATTR(bind, S_IWUSR, NULL, driver_bind);
224
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100225static ssize_t show_drivers_autoprobe(struct bus_type *bus, char *buf)
226{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700227 return sprintf(buf, "%d\n", bus->p->drivers_autoprobe);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100228}
229
230static ssize_t store_drivers_autoprobe(struct bus_type *bus,
231 const char *buf, size_t count)
232{
233 if (buf[0] == '0')
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700234 bus->p->drivers_autoprobe = 0;
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100235 else
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700236 bus->p->drivers_autoprobe = 1;
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100237 return count;
238}
239
240static ssize_t store_drivers_probe(struct bus_type *bus,
241 const char *buf, size_t count)
242{
243 struct device *dev;
244
Greg Kroah-Hartman1f9ffc02008-01-27 10:29:20 -0800245 dev = bus_find_device_by_name(bus, NULL, buf);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100246 if (!dev)
247 return -ENODEV;
248 if (bus_rescan_devices_helper(dev, NULL) != 0)
249 return -EINVAL;
250 return count;
251}
Russell King2139bdd2006-02-07 12:58:20 -0800252#endif
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700253
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800254static struct device *next_device(struct klist_iter *i)
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800255{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800256 struct klist_node *n = klist_next(i);
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -0800257 struct device *dev = NULL;
258 struct device_private *dev_prv;
259
260 if (n) {
261 dev_prv = to_device_private_bus(n);
262 dev = dev_prv->device;
263 }
264 return dev;
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800265}
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800268 * bus_for_each_dev - device iterator.
269 * @bus: bus type.
270 * @start: device to start iterating from.
271 * @data: data for the callback.
272 * @fn: function to be called for each device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800274 * Iterate over @bus's list of devices, and call @fn for each,
275 * passing it @data. If @start is not NULL, we use that device to
276 * begin iterating from.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800278 * We check the return of @fn each time. If it returns anything
279 * other than 0, we break out and return that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800281 * NOTE: The device that returns a non-zero value is not retained
282 * in any way, nor is its refcount incremented. If the caller needs
Alex Chiang0fa1b0a2009-05-14 23:15:22 +0200283 * to retain this data, it should do so, and increment the reference
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800284 * count in the supplied callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800286int bus_for_each_dev(struct bus_type *bus, struct device *start,
287 void *data, int (*fn)(struct device *, void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800289 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800290 struct device *dev;
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800291 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800293 if (!bus)
294 return -EINVAL;
295
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700296 klist_iter_init_node(&bus->p->klist_devices, &i,
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -0800297 (start ? &start->p->knode_bus : NULL));
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800298 while ((dev = next_device(&i)) && !error)
299 error = fn(dev, data);
300 klist_iter_exit(&i);
301 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800303EXPORT_SYMBOL_GPL(bus_for_each_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Cornelia Huck0edb5862005-06-22 16:59:51 +0200305/**
306 * bus_find_device - device iterator for locating a particular device.
307 * @bus: bus type
308 * @start: Device to begin with
309 * @data: Data to pass to match function
310 * @match: Callback function to check device
311 *
312 * This is similar to the bus_for_each_dev() function above, but it
313 * returns a reference to a device that is 'found' for later use, as
314 * determined by the @match callback.
315 *
316 * The callback should return 0 if the device doesn't match and non-zero
317 * if it does. If the callback returns non-zero, this function will
318 * return to the caller and not iterate over any more devices.
319 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800320struct device *bus_find_device(struct bus_type *bus,
321 struct device *start, void *data,
322 int (*match)(struct device *dev, void *data))
Cornelia Huck0edb5862005-06-22 16:59:51 +0200323{
324 struct klist_iter i;
325 struct device *dev;
326
327 if (!bus)
328 return NULL;
329
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700330 klist_iter_init_node(&bus->p->klist_devices, &i,
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -0800331 (start ? &start->p->knode_bus : NULL));
Cornelia Huck0edb5862005-06-22 16:59:51 +0200332 while ((dev = next_device(&i)))
333 if (match(dev, data) && get_device(dev))
334 break;
335 klist_iter_exit(&i);
336 return dev;
337}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800338EXPORT_SYMBOL_GPL(bus_find_device);
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800339
Greg Kroah-Hartman1f9ffc02008-01-27 10:29:20 -0800340static int match_name(struct device *dev, void *data)
341{
342 const char *name = data;
343
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100344 return sysfs_streq(name, dev_name(dev));
Greg Kroah-Hartman1f9ffc02008-01-27 10:29:20 -0800345}
346
347/**
348 * bus_find_device_by_name - device iterator for locating a particular device of a specific name
349 * @bus: bus type
350 * @start: Device to begin with
351 * @name: name of the device to match
352 *
353 * This is similar to the bus_find_device() function above, but it handles
354 * searching by a name automatically, no need to write another strcmp matching
355 * function.
356 */
357struct device *bus_find_device_by_name(struct bus_type *bus,
358 struct device *start, const char *name)
359{
360 return bus_find_device(bus, start, (void *)name, match_name);
361}
362EXPORT_SYMBOL_GPL(bus_find_device_by_name);
363
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800364static struct device_driver *next_driver(struct klist_iter *i)
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800365{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800366 struct klist_node *n = klist_next(i);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800367 struct driver_private *drv_priv;
368
369 if (n) {
370 drv_priv = container_of(n, struct driver_private, knode_bus);
371 return drv_priv->driver;
372 }
373 return NULL;
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800377 * bus_for_each_drv - driver iterator
378 * @bus: bus we're dealing with.
379 * @start: driver to start iterating on.
380 * @data: data to pass to the callback.
381 * @fn: function to call for each driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800383 * This is nearly identical to the device iterator above.
384 * We iterate over each driver that belongs to @bus, and call
385 * @fn for each. If @fn returns anything but 0, we break out
386 * and return it. If @start is not NULL, we use it as the head
387 * of the list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800389 * NOTE: we don't return the driver that returns a non-zero
390 * value, nor do we leave the reference count incremented for that
391 * driver. If the caller needs to know that info, it must set it
392 * in the callback. It must also be sure to increment the refcount
393 * so it doesn't disappear before returning to the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800395int bus_for_each_drv(struct bus_type *bus, struct device_driver *start,
396 void *data, int (*fn)(struct device_driver *, void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800398 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800399 struct device_driver *drv;
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800400 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800402 if (!bus)
403 return -EINVAL;
404
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700405 klist_iter_init_node(&bus->p->klist_drivers, &i,
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800406 start ? &start->p->knode_bus : NULL);
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800407 while ((drv = next_driver(&i)) && !error)
408 error = fn(drv, data);
409 klist_iter_exit(&i);
410 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800412EXPORT_SYMBOL_GPL(bus_for_each_drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Andrew Morton4aca67e2007-02-13 22:39:26 -0800414static int device_add_attrs(struct bus_type *bus, struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
416 int error = 0;
417 int i;
418
Andrew Morton4aca67e2007-02-13 22:39:26 -0800419 if (!bus->dev_attrs)
420 return 0;
421
422 for (i = 0; attr_name(bus->dev_attrs[i]); i++) {
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800423 error = device_create_file(dev, &bus->dev_attrs[i]);
Andrew Morton4aca67e2007-02-13 22:39:26 -0800424 if (error) {
425 while (--i >= 0)
426 device_remove_file(dev, &bus->dev_attrs[i]);
427 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800433static void device_remove_attrs(struct bus_type *bus, struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 int i;
436
437 if (bus->dev_attrs) {
438 for (i = 0; attr_name(bus->dev_attrs[i]); i++)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800439 device_remove_file(dev, &bus->dev_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441}
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800444 * bus_add_device - add device to bus
445 * @dev: device being added
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 *
Alan Stern2023c612009-07-30 15:27:18 -0400447 * - Add device's bus attributes.
448 * - Create links to device's bus.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800449 * - Add the device to its bus's list of devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800451int bus_add_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800453 struct bus_type *bus = bus_get(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 int error = 0;
455
456 if (bus) {
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100457 pr_debug("bus: '%s': add device %s\n", bus->name, dev_name(dev));
Greg Kroah-Hartmand377e852005-06-22 16:09:05 -0700458 error = device_add_attrs(bus, dev);
Andrew Mortonf86db392006-08-14 22:43:20 -0700459 if (error)
Cornelia Huck513e7332006-09-22 11:37:08 +0200460 goto out_put;
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700461 error = sysfs_create_link(&bus->p->devices_kset->kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100462 &dev->kobj, dev_name(dev));
Andrew Mortonf86db392006-08-14 22:43:20 -0700463 if (error)
Cornelia Huck513e7332006-09-22 11:37:08 +0200464 goto out_id;
Andrew Mortonf86db392006-08-14 22:43:20 -0700465 error = sysfs_create_link(&dev->kobj,
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700466 &dev->bus->p->subsys.kobj, "subsystem");
Andrew Mortonf86db392006-08-14 22:43:20 -0700467 if (error)
Cornelia Huck513e7332006-09-22 11:37:08 +0200468 goto out_subsys;
Alan Stern2023c612009-07-30 15:27:18 -0400469 klist_add_tail(&dev->p->knode_bus, &bus->p->klist_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
Cornelia Huck513e7332006-09-22 11:37:08 +0200471 return 0;
472
Cornelia Huck513e7332006-09-22 11:37:08 +0200473out_subsys:
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100474 sysfs_remove_link(&bus->p->devices_kset->kobj, dev_name(dev));
Cornelia Huck513e7332006-09-22 11:37:08 +0200475out_id:
476 device_remove_attrs(bus, dev);
477out_put:
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700478 bus_put(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return error;
480}
481
482/**
Alan Stern2023c612009-07-30 15:27:18 -0400483 * bus_probe_device - probe drivers for a new device
484 * @dev: device to probe
Kay Sievers53877d02006-04-04 20:42:26 +0200485 *
Alan Stern2023c612009-07-30 15:27:18 -0400486 * - Automatically probe for a driver if the bus allows it.
Kay Sievers53877d02006-04-04 20:42:26 +0200487 */
Alan Stern2023c612009-07-30 15:27:18 -0400488void bus_probe_device(struct device *dev)
Kay Sievers53877d02006-04-04 20:42:26 +0200489{
Andrew Mortonf86db392006-08-14 22:43:20 -0700490 struct bus_type *bus = dev->bus;
Alan Stern2023c612009-07-30 15:27:18 -0400491 int ret;
Kay Sievers53877d02006-04-04 20:42:26 +0200492
Alan Stern2023c612009-07-30 15:27:18 -0400493 if (bus && bus->p->drivers_autoprobe) {
494 ret = device_attach(dev);
Cornelia Huckc6a46692007-02-05 16:15:26 -0800495 WARN_ON(ret < 0);
Kay Sievers53877d02006-04-04 20:42:26 +0200496 }
497}
498
499/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800500 * bus_remove_device - remove device from bus
501 * @dev: device to be removed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800503 * - Remove symlink from bus's directory.
504 * - Delete device from bus's list.
505 * - Detach from its driver.
506 * - Drop reference taken in bus_add_device().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800508void bus_remove_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 if (dev->bus) {
Kay Sieversb9d9c822006-06-15 15:31:56 +0200511 sysfs_remove_link(&dev->kobj, "subsystem");
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800512 sysfs_remove_link(&dev->bus->p->devices_kset->kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100513 dev_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 device_remove_attrs(dev->bus, dev);
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -0800515 if (klist_node_attached(&dev->p->knode_bus))
516 klist_del(&dev->p->knode_bus);
Greg Kroah-Hartman3f62e572008-03-13 17:07:03 -0400517
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800518 pr_debug("bus: '%s': remove device %s\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100519 dev->bus->name, dev_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 device_release_driver(dev);
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700521 bus_put(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523}
524
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800525static int driver_add_attrs(struct bus_type *bus, struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
527 int error = 0;
528 int i;
529
530 if (bus->drv_attrs) {
531 for (i = 0; attr_name(bus->drv_attrs[i]); i++) {
532 error = driver_create_file(drv, &bus->drv_attrs[i]);
533 if (error)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800534 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536 }
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800537done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return error;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800539err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 while (--i >= 0)
541 driver_remove_file(drv, &bus->drv_attrs[i]);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800542 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800545static void driver_remove_attrs(struct bus_type *bus,
546 struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 int i;
549
550 if (bus->drv_attrs) {
551 for (i = 0; attr_name(bus->drv_attrs[i]); i++)
552 driver_remove_file(drv, &bus->drv_attrs[i]);
553 }
554}
555
Greg Kroah-Hartman874c6242005-12-13 15:17:34 -0800556#ifdef CONFIG_HOTPLUG
557/*
558 * Thanks to drivers making their tables __devinit, we can't allow manual
559 * bind and unbind from userspace unless CONFIG_HOTPLUG is enabled.
560 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700561static int __must_check add_bind_files(struct device_driver *drv)
Greg Kroah-Hartman874c6242005-12-13 15:17:34 -0800562{
Andrew Mortonf86db392006-08-14 22:43:20 -0700563 int ret;
564
565 ret = driver_create_file(drv, &driver_attr_unbind);
566 if (ret == 0) {
567 ret = driver_create_file(drv, &driver_attr_bind);
568 if (ret)
569 driver_remove_file(drv, &driver_attr_unbind);
570 }
571 return ret;
Greg Kroah-Hartman874c6242005-12-13 15:17:34 -0800572}
573
574static void remove_bind_files(struct device_driver *drv)
575{
576 driver_remove_file(drv, &driver_attr_bind);
577 driver_remove_file(drv, &driver_attr_unbind);
578}
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100579
Kay Sievers83807702007-07-30 02:28:56 +0200580static BUS_ATTR(drivers_probe, S_IWUSR, NULL, store_drivers_probe);
581static BUS_ATTR(drivers_autoprobe, S_IWUSR | S_IRUGO,
582 show_drivers_autoprobe, store_drivers_autoprobe);
583
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100584static int add_probe_files(struct bus_type *bus)
585{
586 int retval;
587
Kay Sievers83807702007-07-30 02:28:56 +0200588 retval = bus_create_file(bus, &bus_attr_drivers_probe);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100589 if (retval)
590 goto out;
591
Kay Sievers83807702007-07-30 02:28:56 +0200592 retval = bus_create_file(bus, &bus_attr_drivers_autoprobe);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100593 if (retval)
Kay Sievers83807702007-07-30 02:28:56 +0200594 bus_remove_file(bus, &bus_attr_drivers_probe);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100595out:
596 return retval;
597}
598
599static void remove_probe_files(struct bus_type *bus)
600{
Kay Sievers83807702007-07-30 02:28:56 +0200601 bus_remove_file(bus, &bus_attr_drivers_autoprobe);
602 bus_remove_file(bus, &bus_attr_drivers_probe);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100603}
Greg Kroah-Hartman874c6242005-12-13 15:17:34 -0800604#else
Yoichi Yuasa35acfdd2006-07-15 01:30:11 +0900605static inline int add_bind_files(struct device_driver *drv) { return 0; }
Greg Kroah-Hartman874c6242005-12-13 15:17:34 -0800606static inline void remove_bind_files(struct device_driver *drv) {}
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100607static inline int add_probe_files(struct bus_type *bus) { return 0; }
608static inline void remove_probe_files(struct bus_type *bus) {}
Greg Kroah-Hartman874c6242005-12-13 15:17:34 -0800609#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200611static ssize_t driver_uevent_store(struct device_driver *drv,
612 const char *buf, size_t count)
613{
614 enum kobject_action action;
615
616 if (kobject_action_type(buf, count, &action) == 0)
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800617 kobject_uevent(&drv->p->kobj, action);
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200618 return count;
619}
620static DRIVER_ATTR(uevent, S_IWUSR, NULL, driver_uevent_store);
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800623 * bus_add_driver - Add a driver to the bus.
624 * @drv: driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700626int bus_add_driver(struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800628 struct bus_type *bus;
629 struct driver_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 int error = 0;
631
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800632 bus = bus_get(drv->bus);
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400633 if (!bus)
Greg Kroah-Hartman4f6e1942007-04-20 11:29:52 -0700634 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800636 pr_debug("bus: '%s': add driver %s\n", bus->name, drv->name);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800637
638 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Cornelia Huck07634462008-02-18 17:04:25 +0100639 if (!priv) {
640 error = -ENOMEM;
641 goto out_put_bus;
642 }
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800643 klist_init(&priv->klist_devices, NULL, NULL);
644 priv->driver = drv;
645 drv->p = priv;
Greg Kroah-Hartmanc8e90d82007-12-17 15:54:39 -0400646 priv->kobj.kset = bus->p->drivers_kset;
647 error = kobject_init_and_add(&priv->kobj, &driver_ktype, NULL,
648 "%s", drv->name);
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700649 if (error)
Cornelia Huck07634462008-02-18 17:04:25 +0100650 goto out_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700652 if (drv->bus->p->drivers_autoprobe) {
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100653 error = driver_attach(drv);
654 if (error)
655 goto out_unregister;
656 }
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800657 klist_add_tail(&priv->knode_bus, &bus->p->klist_drivers);
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400658 module_add_driver(drv->owner, drv);
659
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200660 error = driver_create_file(drv, &driver_attr_uevent);
661 if (error) {
662 printk(KERN_ERR "%s: uevent attr (%s) failed\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800663 __func__, drv->name);
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200664 }
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400665 error = driver_add_attrs(bus, drv);
666 if (error) {
667 /* How the hell do we get out of this pickle? Give up */
668 printk(KERN_ERR "%s: driver_add_attrs(%s) failed\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800669 __func__, drv->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
Dmitry Torokhov1a6f2a72009-10-12 20:17:41 -0700671
672 if (!drv->suppress_bind_attrs) {
673 error = add_bind_files(drv);
674 if (error) {
675 /* Ditto */
676 printk(KERN_ERR "%s: add_bind_files(%s) failed\n",
677 __func__, drv->name);
678 }
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400679 }
680
Greg Kroah-Hartmanc8e90d82007-12-17 15:54:39 -0400681 kobject_uevent(&priv->kobj, KOBJ_ADD);
Kay Sievers5c8563d2009-05-28 14:24:07 -0700682 return 0;
Dmitry Torokhov1a6f2a72009-10-12 20:17:41 -0700683
Andrew Mortonf86db392006-08-14 22:43:20 -0700684out_unregister:
Phil Carmody99b28f12009-12-14 20:28:12 +0200685 kobject_put(&priv->kobj);
Kay Sievers5c8563d2009-05-28 14:24:07 -0700686 kfree(drv->p);
687 drv->p = NULL;
Andrew Mortonf86db392006-08-14 22:43:20 -0700688out_put_bus:
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700689 bus_put(bus);
Andrew Mortonf86db392006-08-14 22:43:20 -0700690 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800694 * bus_remove_driver - delete driver from bus's knowledge.
695 * @drv: driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800697 * Detach the driver from the devices it controls, and remove
698 * it from its bus's list of drivers. Finally, we drop the reference
699 * to the bus we took in bus_add_driver().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800701void bus_remove_driver(struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400703 if (!drv->bus)
704 return;
705
Dmitry Torokhov1a6f2a72009-10-12 20:17:41 -0700706 if (!drv->suppress_bind_attrs)
707 remove_bind_files(drv);
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400708 driver_remove_attrs(drv->bus, drv);
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200709 driver_remove_file(drv, &driver_attr_uevent);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800710 klist_remove(&drv->p->knode_bus);
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800711 pr_debug("bus: '%s': remove driver %s\n", drv->bus->name, drv->name);
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400712 driver_detach(drv);
713 module_remove_driver(drv);
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800714 kobject_put(&drv->p->kobj);
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700715 bus_put(drv->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718/* Helper for bus_rescan_devices's iter */
Andrew Mortonf86db392006-08-14 22:43:20 -0700719static int __must_check bus_rescan_devices_helper(struct device *dev,
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800720 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Andrew Mortonf86db392006-08-14 22:43:20 -0700722 int ret = 0;
723
Alan Sternbf74ad52005-11-17 16:54:12 -0500724 if (!dev->driver) {
725 if (dev->parent) /* Needed for USB */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800726 device_lock(dev->parent);
Andrew Mortonf86db392006-08-14 22:43:20 -0700727 ret = device_attach(dev);
Alan Sternbf74ad52005-11-17 16:54:12 -0500728 if (dev->parent)
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800729 device_unlock(dev->parent);
Alan Sternbf74ad52005-11-17 16:54:12 -0500730 }
Andrew Mortonf86db392006-08-14 22:43:20 -0700731 return ret < 0 ? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734/**
Greg Kroah-Hartman23d3d602005-06-22 16:09:05 -0700735 * bus_rescan_devices - rescan devices on the bus for possible drivers
736 * @bus: the bus to scan.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 *
Greg Kroah-Hartman23d3d602005-06-22 16:09:05 -0700738 * This function will look for devices on the bus with no driver
739 * attached and rescan it against existing drivers to see if it matches
740 * any by calling device_attach() for the unbound devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800742int bus_rescan_devices(struct bus_type *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Andrew Mortonf86db392006-08-14 22:43:20 -0700744 return bus_for_each_dev(bus, NULL, NULL, bus_rescan_devices_helper);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800746EXPORT_SYMBOL_GPL(bus_rescan_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Moore, Erice935d5d2006-03-14 09:18:18 -0700748/**
749 * device_reprobe - remove driver for a device and probe for a new driver
750 * @dev: the device to reprobe
751 *
752 * This function detaches the attached driver (if any) for the given
753 * device and restarts the driver probing process. It is intended
754 * to use if probing criteria changed during a devices lifetime and
755 * driver attachment should change accordingly.
756 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700757int device_reprobe(struct device *dev)
Moore, Erice935d5d2006-03-14 09:18:18 -0700758{
759 if (dev->driver) {
760 if (dev->parent) /* Needed for USB */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800761 device_lock(dev->parent);
Moore, Erice935d5d2006-03-14 09:18:18 -0700762 device_release_driver(dev);
763 if (dev->parent)
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800764 device_unlock(dev->parent);
Moore, Erice935d5d2006-03-14 09:18:18 -0700765 }
Andrew Mortonf86db392006-08-14 22:43:20 -0700766 return bus_rescan_devices_helper(dev, NULL);
Moore, Erice935d5d2006-03-14 09:18:18 -0700767}
768EXPORT_SYMBOL_GPL(device_reprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800771 * find_bus - locate bus by name.
772 * @name: name of bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800774 * Call kset_find_obj() to iterate over list of buses to
775 * find a bus by name. Return bus if found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800777 * Note that kset_find_obj increments bus' reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 */
Adrian Bunk7e4ef082006-06-26 22:26:56 +0200779#if 0
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800780struct bus_type *find_bus(char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800782 struct kobject *k = kset_find_obj(bus_kset, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 return k ? to_bus(k) : NULL;
784}
Adrian Bunk7e4ef082006-06-26 22:26:56 +0200785#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787
788/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800789 * bus_add_attrs - Add default attributes for this bus.
790 * @bus: Bus that has just been registered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 */
792
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800793static int bus_add_attrs(struct bus_type *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
795 int error = 0;
796 int i;
797
798 if (bus->bus_attrs) {
799 for (i = 0; attr_name(bus->bus_attrs[i]); i++) {
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800800 error = bus_create_file(bus, &bus->bus_attrs[i]);
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700801 if (error)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800802 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
804 }
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800805done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 return error;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800807err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 while (--i >= 0)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800809 bus_remove_file(bus, &bus->bus_attrs[i]);
810 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800813static void bus_remove_attrs(struct bus_type *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 int i;
816
817 if (bus->bus_attrs) {
818 for (i = 0; attr_name(bus->bus_attrs[i]); i++)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800819 bus_remove_file(bus, &bus->bus_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821}
822
James Bottomley34bb61f2005-09-06 16:56:51 -0700823static void klist_devices_get(struct klist_node *n)
824{
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -0800825 struct device_private *dev_prv = to_device_private_bus(n);
826 struct device *dev = dev_prv->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700827
828 get_device(dev);
829}
830
831static void klist_devices_put(struct klist_node *n)
832{
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -0800833 struct device_private *dev_prv = to_device_private_bus(n);
834 struct device *dev = dev_prv->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700835
836 put_device(dev);
837}
838
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200839static ssize_t bus_uevent_store(struct bus_type *bus,
840 const char *buf, size_t count)
841{
842 enum kobject_action action;
843
844 if (kobject_action_type(buf, count, &action) == 0)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700845 kobject_uevent(&bus->p->subsys.kobj, action);
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200846 return count;
847}
848static BUS_ATTR(uevent, S_IWUSR, NULL, bus_uevent_store);
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800851 * bus_register - register a bus with the system.
852 * @bus: bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800854 * Once we have that, we registered the bus with the kobject
855 * infrastructure, then register the children subsystems it has:
856 * the devices and drivers that belong to the bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800858int bus_register(struct bus_type *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
860 int retval;
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700861 struct bus_type_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700863 priv = kzalloc(sizeof(struct bus_type_private), GFP_KERNEL);
864 if (!priv)
865 return -ENOMEM;
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000866
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700867 priv->bus = bus;
868 bus->p = priv;
869
870 BLOCKING_INIT_NOTIFIER_HEAD(&priv->bus_notifier);
871
872 retval = kobject_set_name(&priv->subsys.kobj, "%s", bus->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (retval)
874 goto out;
875
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700876 priv->subsys.kobj.kset = bus_kset;
877 priv->subsys.kobj.ktype = &bus_ktype;
878 priv->drivers_autoprobe = 1;
Greg Kroah-Hartmand6b05b82007-09-12 15:06:57 -0700879
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700880 retval = kset_register(&priv->subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (retval)
882 goto out;
883
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200884 retval = bus_create_file(bus, &bus_attr_uevent);
885 if (retval)
886 goto bus_uevent_fail;
887
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700888 priv->devices_kset = kset_create_and_add("devices", NULL,
889 &priv->subsys.kobj);
890 if (!priv->devices_kset) {
Greg Kroah-Hartman3d899592007-11-01 13:31:26 -0700891 retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 goto bus_devices_fail;
Greg Kroah-Hartman3d899592007-11-01 13:31:26 -0700893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700895 priv->drivers_kset = kset_create_and_add("drivers", NULL,
896 &priv->subsys.kobj);
897 if (!priv->drivers_kset) {
Greg Kroah-Hartman6dcec252007-11-01 13:31:26 -0700898 retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 goto bus_drivers_fail;
Greg Kroah-Hartman6dcec252007-11-01 13:31:26 -0700900 }
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800901
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700902 klist_init(&priv->klist_devices, klist_devices_get, klist_devices_put);
903 klist_init(&priv->klist_drivers, NULL, NULL);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100904
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100905 retval = add_probe_files(bus);
906 if (retval)
907 goto bus_probe_files_fail;
908
Cornelia Huck1bb68812006-09-22 11:37:04 +0200909 retval = bus_add_attrs(bus);
910 if (retval)
911 goto bus_attrs_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800913 pr_debug("bus: '%s': registered\n", bus->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 return 0;
915
Cornelia Huck1bb68812006-09-22 11:37:04 +0200916bus_attrs_fail:
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100917 remove_probe_files(bus);
918bus_probe_files_fail:
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700919 kset_unregister(bus->p->drivers_kset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920bus_drivers_fail:
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700921 kset_unregister(bus->p->devices_kset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922bus_devices_fail:
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200923 bus_remove_file(bus, &bus_attr_uevent);
924bus_uevent_fail:
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700925 kset_unregister(&bus->p->subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926out:
Jike Song600c20f2010-07-15 17:43:54 +0800927 kfree(bus->p);
Dave Youngf48f3fe2009-02-14 21:23:22 +0800928 bus->p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return retval;
930}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800931EXPORT_SYMBOL_GPL(bus_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800934 * bus_unregister - remove a bus from the system
935 * @bus: bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800937 * Unregister the child subsystems and the bus itself.
938 * Finally, we call bus_put() to release the refcount
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800940void bus_unregister(struct bus_type *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800942 pr_debug("bus: '%s': unregistering\n", bus->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 bus_remove_attrs(bus);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100944 remove_probe_files(bus);
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700945 kset_unregister(bus->p->drivers_kset);
946 kset_unregister(bus->p->devices_kset);
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200947 bus_remove_file(bus, &bus_attr_uevent);
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700948 kset_unregister(&bus->p->subsys);
949 kfree(bus->p);
Dave Youngf48f3fe2009-02-14 21:23:22 +0800950 bus->p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800952EXPORT_SYMBOL_GPL(bus_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000954int bus_register_notifier(struct bus_type *bus, struct notifier_block *nb)
955{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700956 return blocking_notifier_chain_register(&bus->p->bus_notifier, nb);
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000957}
958EXPORT_SYMBOL_GPL(bus_register_notifier);
959
960int bus_unregister_notifier(struct bus_type *bus, struct notifier_block *nb)
961{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700962 return blocking_notifier_chain_unregister(&bus->p->bus_notifier, nb);
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000963}
964EXPORT_SYMBOL_GPL(bus_unregister_notifier);
965
Greg Kroah-Hartman0fed80f2007-11-01 19:41:16 -0700966struct kset *bus_get_kset(struct bus_type *bus)
967{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700968 return &bus->p->subsys;
Greg Kroah-Hartman0fed80f2007-11-01 19:41:16 -0700969}
970EXPORT_SYMBOL_GPL(bus_get_kset);
971
Greg Kroah-Hartmanb2490722007-11-01 19:41:16 -0700972struct klist *bus_get_device_klist(struct bus_type *bus)
973{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700974 return &bus->p->klist_devices;
Greg Kroah-Hartmanb2490722007-11-01 19:41:16 -0700975}
976EXPORT_SYMBOL_GPL(bus_get_device_klist);
977
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -0500978/*
979 * Yes, this forcably breaks the klist abstraction temporarily. It
980 * just wants to sort the klist, not change reference counts and
981 * take/drop locks rapidly in the process. It does all this while
982 * holding the lock for the list, so objects can't otherwise be
983 * added/removed while we're swizzling.
984 */
985static void device_insertion_sort_klist(struct device *a, struct list_head *list,
986 int (*compare)(const struct device *a,
987 const struct device *b))
988{
989 struct list_head *pos;
990 struct klist_node *n;
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -0800991 struct device_private *dev_prv;
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -0500992 struct device *b;
993
994 list_for_each(pos, list) {
995 n = container_of(pos, struct klist_node, n_node);
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -0800996 dev_prv = to_device_private_bus(n);
997 b = dev_prv->device;
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -0500998 if (compare(a, b) <= 0) {
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -0800999 list_move_tail(&a->p->knode_bus.n_node,
1000 &b->p->knode_bus.n_node);
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05001001 return;
1002 }
1003 }
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -08001004 list_move_tail(&a->p->knode_bus.n_node, list);
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05001005}
1006
1007void bus_sort_breadthfirst(struct bus_type *bus,
1008 int (*compare)(const struct device *a,
1009 const struct device *b))
1010{
1011 LIST_HEAD(sorted_devices);
1012 struct list_head *pos, *tmp;
1013 struct klist_node *n;
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -08001014 struct device_private *dev_prv;
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05001015 struct device *dev;
1016 struct klist *device_klist;
1017
1018 device_klist = bus_get_device_klist(bus);
1019
1020 spin_lock(&device_klist->k_lock);
1021 list_for_each_safe(pos, tmp, &device_klist->k_list) {
1022 n = container_of(pos, struct klist_node, n_node);
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -08001023 dev_prv = to_device_private_bus(n);
1024 dev = dev_prv->device;
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05001025 device_insertion_sort_klist(dev, &sorted_devices, compare);
1026 }
1027 list_splice(&sorted_devices, &device_klist->k_list);
1028 spin_unlock(&device_klist->k_lock);
1029}
1030EXPORT_SYMBOL_GPL(bus_sort_breadthfirst);
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032int __init buses_init(void)
1033{
Greg Kroah-Hartman59a54832007-10-29 23:22:26 -05001034 bus_kset = kset_create_and_add("bus", &bus_uevent_ops, NULL);
1035 if (!bus_kset)
1036 return -ENOMEM;
1037 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}