blob: 2cdf29464063d0f77ad4cc6cbde9afb3d57e4f28 [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>
Kay Sieversca22e562011-12-14 14:29:38 -080019#include <linux/mutex.h>
Greg Kroah-Hartman63967682013-08-27 10:24:15 -070020#include <linux/sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "base.h"
22#include "power/power.h"
23
Kay Sieversca22e562011-12-14 14:29:38 -080024/* /sys/devices/system */
H Hartley Sweeten97ec4482012-04-16 18:14:10 -070025static struct kset *system_kset;
Kay Sieversca22e562011-12-14 14:29:38 -080026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#define to_bus_attr(_attr) container_of(_attr, struct bus_attribute, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29/*
30 * sysfs bindings for drivers
31 */
32
33#define to_drv_attr(_attr) container_of(_attr, struct driver_attribute, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35
Kay Sieversb8c5cec2007-02-16 17:33:36 +010036static int __must_check bus_rescan_devices_helper(struct device *dev,
37 void *data);
38
Greg Kroah-Hartman5901d012007-09-13 02:53:13 -070039static struct bus_type *bus_get(struct bus_type *bus)
40{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070041 if (bus) {
42 kset_get(&bus->p->subsys);
43 return bus;
44 }
45 return NULL;
Greg Kroah-Hartman5901d012007-09-13 02:53:13 -070046}
47
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -070048static void bus_put(struct bus_type *bus)
49{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -070050 if (bus)
51 kset_put(&bus->p->subsys);
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -070052}
53
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080054static ssize_t drv_attr_show(struct kobject *kobj, struct attribute *attr,
55 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080057 struct driver_attribute *drv_attr = to_drv_attr(attr);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080058 struct driver_private *drv_priv = to_driver(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050059 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 if (drv_attr->show)
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080062 ret = drv_attr->show(drv_priv->driver, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 return ret;
64}
65
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080066static ssize_t drv_attr_store(struct kobject *kobj, struct attribute *attr,
67 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080069 struct driver_attribute *drv_attr = to_drv_attr(attr);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080070 struct driver_private *drv_priv = to_driver(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050071 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 if (drv_attr->store)
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080074 ret = drv_attr->store(drv_priv->driver, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return ret;
76}
77
Emese Revfy52cf25d2010-01-19 02:58:23 +010078static const struct sysfs_ops driver_sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 .show = drv_attr_show,
80 .store = drv_attr_store,
81};
82
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080083static void driver_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080085 struct driver_private *drv_priv = to_driver(kobj);
86
Harvey Harrison2b3a3022008-03-04 16:41:05 -080087 pr_debug("driver: '%s': %s\n", kobject_name(kobj), __func__);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080088 kfree(drv_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
Greg Kroah-Hartmana1148fb2007-10-11 10:47:49 -060091static struct kobj_type driver_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 .sysfs_ops = &driver_sysfs_ops,
93 .release = driver_release,
94};
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/*
97 * sysfs bindings for buses
98 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080099static ssize_t bus_attr_show(struct kobject *kobj, struct attribute *attr,
100 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800102 struct bus_attribute *bus_attr = to_bus_attr(attr);
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100103 struct subsys_private *subsys_priv = to_subsys_private(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 ssize_t ret = 0;
105
106 if (bus_attr->show)
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100107 ret = bus_attr->show(subsys_priv->bus, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 return ret;
109}
110
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800111static ssize_t bus_attr_store(struct kobject *kobj, struct attribute *attr,
112 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800114 struct bus_attribute *bus_attr = to_bus_attr(attr);
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100115 struct subsys_private *subsys_priv = to_subsys_private(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 ssize_t ret = 0;
117
118 if (bus_attr->store)
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100119 ret = bus_attr->store(subsys_priv->bus, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return ret;
121}
122
Emese Revfy52cf25d2010-01-19 02:58:23 +0100123static const struct sysfs_ops bus_sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 .show = bus_attr_show,
125 .store = bus_attr_store,
126};
127
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800128int bus_create_file(struct bus_type *bus, struct bus_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 int error;
Greg Kroah-Hartman5901d012007-09-13 02:53:13 -0700131 if (bus_get(bus)) {
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700132 error = sysfs_create_file(&bus->p->subsys.kobj, &attr->attr);
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700133 bus_put(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 } else
135 error = -EINVAL;
136 return error;
137}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800138EXPORT_SYMBOL_GPL(bus_create_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800140void bus_remove_file(struct bus_type *bus, struct bus_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Greg Kroah-Hartman5901d012007-09-13 02:53:13 -0700142 if (bus_get(bus)) {
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700143 sysfs_remove_file(&bus->p->subsys.kobj, &attr->attr);
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700144 bus_put(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
146}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800147EXPORT_SYMBOL_GPL(bus_remove_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Kay Sievers80f03e32007-05-26 11:21:36 +0200149static struct kobj_type bus_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 .sysfs_ops = &bus_sysfs_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151};
152
Kay Sievers80f03e32007-05-26 11:21:36 +0200153static int bus_uevent_filter(struct kset *kset, struct kobject *kobj)
154{
155 struct kobj_type *ktype = get_ktype(kobj);
156
157 if (ktype == &bus_ktype)
158 return 1;
159 return 0;
160}
161
Emese Revfy9cd43612009-12-31 14:52:51 +0100162static const struct kset_uevent_ops bus_uevent_ops = {
Kay Sievers80f03e32007-05-26 11:21:36 +0200163 .filter = bus_uevent_filter,
164};
165
Greg Kroah-Hartman59a54832007-10-29 23:22:26 -0500166static struct kset *bus_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Alan Stern2b08c8d2005-11-23 15:43:50 -0800168/* Manually detach a device from its associated driver. */
Greg Kroah-Hartman2581c9c2013-08-23 15:04:42 -0700169static ssize_t unbind_store(struct device_driver *drv, const char *buf,
170 size_t count)
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700171{
Greg Kroah-Hartman5901d012007-09-13 02:53:13 -0700172 struct bus_type *bus = bus_get(drv->bus);
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700173 struct device *dev;
174 int err = -ENODEV;
175
Greg Kroah-Hartman1f9ffc02008-01-27 10:29:20 -0800176 dev = bus_find_device_by_name(bus, NULL, buf);
Alan Stern2b08c8d2005-11-23 15:43:50 -0800177 if (dev && dev->driver == drv) {
Alan Sternbf74ad52005-11-17 16:54:12 -0500178 if (dev->parent) /* Needed for USB */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800179 device_lock(dev->parent);
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700180 device_release_driver(dev);
Alan Sternbf74ad52005-11-17 16:54:12 -0500181 if (dev->parent)
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800182 device_unlock(dev->parent);
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700183 err = count;
184 }
Alan Stern2b08c8d2005-11-23 15:43:50 -0800185 put_device(dev);
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700186 bus_put(bus);
Alan Stern2b08c8d2005-11-23 15:43:50 -0800187 return err;
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700188}
Greg Kroah-Hartman2581c9c2013-08-23 15:04:42 -0700189static DRIVER_ATTR_WO(unbind);
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700190
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700191/*
192 * Manually attach a device to a driver.
193 * Note: the driver must want to bind to the device,
194 * it is not possible to override the driver's id table.
195 */
Greg Kroah-Hartman2581c9c2013-08-23 15:04:42 -0700196static ssize_t bind_store(struct device_driver *drv, const char *buf,
197 size_t count)
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700198{
Greg Kroah-Hartman5901d012007-09-13 02:53:13 -0700199 struct bus_type *bus = bus_get(drv->bus);
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700200 struct device *dev;
201 int err = -ENODEV;
202
Greg Kroah-Hartman1f9ffc02008-01-27 10:29:20 -0800203 dev = bus_find_device_by_name(bus, NULL, buf);
Ming Lei49b420a2009-01-21 23:27:47 +0800204 if (dev && dev->driver == NULL && driver_match_device(drv, dev)) {
Alan Sternbf74ad52005-11-17 16:54:12 -0500205 if (dev->parent) /* Needed for USB */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800206 device_lock(dev->parent);
207 device_lock(dev);
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700208 err = driver_probe_device(drv, dev);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800209 device_unlock(dev);
Alan Sternbf74ad52005-11-17 16:54:12 -0500210 if (dev->parent)
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800211 device_unlock(dev->parent);
Ryan Wilson37225402006-03-22 16:26:25 -0500212
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800213 if (err > 0) {
214 /* success */
Ryan Wilson37225402006-03-22 16:26:25 -0500215 err = count;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800216 } else if (err == 0) {
217 /* driver didn't accept device */
Ryan Wilson37225402006-03-22 16:26:25 -0500218 err = -ENODEV;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800219 }
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700220 }
Alan Stern2b08c8d2005-11-23 15:43:50 -0800221 put_device(dev);
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700222 bus_put(bus);
Alan Stern2b08c8d2005-11-23 15:43:50 -0800223 return err;
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700224}
Greg Kroah-Hartman2581c9c2013-08-23 15:04:42 -0700225static DRIVER_ATTR_WO(bind);
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -0700226
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100227static ssize_t show_drivers_autoprobe(struct bus_type *bus, char *buf)
228{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700229 return sprintf(buf, "%d\n", bus->p->drivers_autoprobe);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100230}
231
232static ssize_t store_drivers_autoprobe(struct bus_type *bus,
233 const char *buf, size_t count)
234{
235 if (buf[0] == '0')
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700236 bus->p->drivers_autoprobe = 0;
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100237 else
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700238 bus->p->drivers_autoprobe = 1;
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100239 return count;
240}
241
242static ssize_t store_drivers_probe(struct bus_type *bus,
243 const char *buf, size_t count)
244{
245 struct device *dev;
246
Greg Kroah-Hartman1f9ffc02008-01-27 10:29:20 -0800247 dev = bus_find_device_by_name(bus, NULL, buf);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100248 if (!dev)
249 return -ENODEV;
250 if (bus_rescan_devices_helper(dev, NULL) != 0)
251 return -EINVAL;
252 return count;
253}
Greg Kroah-Hartman151ef382005-06-22 16:09:05 -0700254
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800255static struct device *next_device(struct klist_iter *i)
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800256{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800257 struct klist_node *n = klist_next(i);
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -0800258 struct device *dev = NULL;
259 struct device_private *dev_prv;
260
261 if (n) {
262 dev_prv = to_device_private_bus(n);
263 dev = dev_prv->device;
264 }
265 return dev;
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800269 * bus_for_each_dev - device iterator.
270 * @bus: bus type.
271 * @start: device to start iterating from.
272 * @data: data for the callback.
273 * @fn: function to be called for each device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800275 * Iterate over @bus's list of devices, and call @fn for each,
276 * passing it @data. If @start is not NULL, we use that device to
277 * begin iterating from.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800279 * We check the return of @fn each time. If it returns anything
280 * other than 0, we break out and return that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800282 * NOTE: The device that returns a non-zero value is not retained
283 * in any way, nor is its refcount incremented. If the caller needs
Alex Chiang0fa1b0a2009-05-14 23:15:22 +0200284 * to retain this data, it should do so, and increment the reference
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800285 * count in the supplied callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800287int bus_for_each_dev(struct bus_type *bus, struct device *start,
288 void *data, int (*fn)(struct device *, void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800290 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800291 struct device *dev;
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800292 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Bjorn Helgaas4fa3e782013-01-29 16:44:27 -0700294 if (!bus || !bus->p)
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800295 return -EINVAL;
296
Greg Kroah-Hartman7cd9c9b2012-04-19 19:17:30 -0700297 klist_iter_init_node(&bus->p->klist_devices, &i,
298 (start ? &start->p->knode_bus : NULL));
299 while ((dev = next_device(&i)) && !error)
300 error = fn(dev, data);
301 klist_iter_exit(&i);
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800302 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800304EXPORT_SYMBOL_GPL(bus_for_each_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Cornelia Huck0edb5862005-06-22 16:59:51 +0200306/**
307 * bus_find_device - device iterator for locating a particular device.
308 * @bus: bus type
309 * @start: Device to begin with
310 * @data: Data to pass to match function
311 * @match: Callback function to check device
312 *
313 * This is similar to the bus_for_each_dev() function above, but it
314 * returns a reference to a device that is 'found' for later use, as
315 * determined by the @match callback.
316 *
317 * The callback should return 0 if the device doesn't match and non-zero
318 * if it does. If the callback returns non-zero, this function will
319 * return to the caller and not iterate over any more devices.
320 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800321struct device *bus_find_device(struct bus_type *bus,
322 struct device *start, void *data,
323 int (*match)(struct device *dev, void *data))
Cornelia Huck0edb5862005-06-22 16:59:51 +0200324{
325 struct klist_iter i;
326 struct device *dev;
327
Bjorn Helgaas4fa3e782013-01-29 16:44:27 -0700328 if (!bus || !bus->p)
Cornelia Huck0edb5862005-06-22 16:59:51 +0200329 return NULL;
330
Greg Kroah-Hartman7cd9c9b2012-04-19 19:17:30 -0700331 klist_iter_init_node(&bus->p->klist_devices, &i,
332 (start ? &start->p->knode_bus : NULL));
Cornelia Huck0edb5862005-06-22 16:59:51 +0200333 while ((dev = next_device(&i)))
334 if (match(dev, data) && get_device(dev))
335 break;
336 klist_iter_exit(&i);
337 return dev;
338}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800339EXPORT_SYMBOL_GPL(bus_find_device);
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800340
Greg Kroah-Hartman1f9ffc02008-01-27 10:29:20 -0800341static int match_name(struct device *dev, void *data)
342{
343 const char *name = data;
344
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100345 return sysfs_streq(name, dev_name(dev));
Greg Kroah-Hartman1f9ffc02008-01-27 10:29:20 -0800346}
347
348/**
349 * bus_find_device_by_name - device iterator for locating a particular device of a specific name
350 * @bus: bus type
351 * @start: Device to begin with
352 * @name: name of the device to match
353 *
354 * This is similar to the bus_find_device() function above, but it handles
355 * searching by a name automatically, no need to write another strcmp matching
356 * function.
357 */
358struct device *bus_find_device_by_name(struct bus_type *bus,
359 struct device *start, const char *name)
360{
361 return bus_find_device(bus, start, (void *)name, match_name);
362}
363EXPORT_SYMBOL_GPL(bus_find_device_by_name);
364
Kay Sieversca22e562011-12-14 14:29:38 -0800365/**
366 * subsys_find_device_by_id - find a device with a specific enumeration number
367 * @subsys: subsystem
368 * @id: index 'id' in struct device
369 * @hint: device to check first
370 *
371 * Check the hint's next object and if it is a match return it directly,
372 * otherwise, fall back to a full list search. Either way a reference for
373 * the returned object is taken.
374 */
375struct device *subsys_find_device_by_id(struct bus_type *subsys, unsigned int id,
376 struct device *hint)
377{
378 struct klist_iter i;
379 struct device *dev;
380
381 if (!subsys)
382 return NULL;
383
384 if (hint) {
Greg Kroah-Hartman7cd9c9b2012-04-19 19:17:30 -0700385 klist_iter_init_node(&subsys->p->klist_devices, &i, &hint->p->knode_bus);
Kay Sieversca22e562011-12-14 14:29:38 -0800386 dev = next_device(&i);
387 if (dev && dev->id == id && get_device(dev)) {
388 klist_iter_exit(&i);
389 return dev;
390 }
391 klist_iter_exit(&i);
392 }
393
394 klist_iter_init_node(&subsys->p->klist_devices, &i, NULL);
395 while ((dev = next_device(&i))) {
396 if (dev->id == id && get_device(dev)) {
397 klist_iter_exit(&i);
398 return dev;
399 }
400 }
401 klist_iter_exit(&i);
402 return NULL;
403}
404EXPORT_SYMBOL_GPL(subsys_find_device_by_id);
405
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800406static struct device_driver *next_driver(struct klist_iter *i)
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800407{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800408 struct klist_node *n = klist_next(i);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800409 struct driver_private *drv_priv;
410
411 if (n) {
412 drv_priv = container_of(n, struct driver_private, knode_bus);
413 return drv_priv->driver;
414 }
415 return NULL;
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800419 * bus_for_each_drv - driver iterator
420 * @bus: bus we're dealing with.
421 * @start: driver to start iterating on.
422 * @data: data to pass to the callback.
423 * @fn: function to call for each driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800425 * This is nearly identical to the device iterator above.
426 * We iterate over each driver that belongs to @bus, and call
427 * @fn for each. If @fn returns anything but 0, we break out
428 * and return it. If @start is not NULL, we use it as the head
429 * of the list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800431 * NOTE: we don't return the driver that returns a non-zero
432 * value, nor do we leave the reference count incremented for that
433 * driver. If the caller needs to know that info, it must set it
434 * in the callback. It must also be sure to increment the refcount
435 * so it doesn't disappear before returning to the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800437int bus_for_each_drv(struct bus_type *bus, struct device_driver *start,
438 void *data, int (*fn)(struct device_driver *, void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800440 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800441 struct device_driver *drv;
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800442 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800444 if (!bus)
445 return -EINVAL;
446
Greg Kroah-Hartman7cd9c9b2012-04-19 19:17:30 -0700447 klist_iter_init_node(&bus->p->klist_drivers, &i,
448 start ? &start->p->knode_bus : NULL);
449 while ((drv = next_driver(&i)) && !error)
450 error = fn(drv, data);
451 klist_iter_exit(&i);
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800452 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800454EXPORT_SYMBOL_GPL(bus_for_each_drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Andrew Morton4aca67e2007-02-13 22:39:26 -0800456static int device_add_attrs(struct bus_type *bus, struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
458 int error = 0;
459 int i;
460
Andrew Morton4aca67e2007-02-13 22:39:26 -0800461 if (!bus->dev_attrs)
462 return 0;
463
Greg Kroah-Hartman3e1026b2013-08-22 10:25:34 -0700464 for (i = 0; bus->dev_attrs[i].attr.name; i++) {
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800465 error = device_create_file(dev, &bus->dev_attrs[i]);
Andrew Morton4aca67e2007-02-13 22:39:26 -0800466 if (error) {
467 while (--i >= 0)
468 device_remove_file(dev, &bus->dev_attrs[i]);
469 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800475static void device_remove_attrs(struct bus_type *bus, struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 int i;
478
479 if (bus->dev_attrs) {
Greg Kroah-Hartman3e1026b2013-08-22 10:25:34 -0700480 for (i = 0; bus->dev_attrs[i].attr.name; i++)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800481 device_remove_file(dev, &bus->dev_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483}
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800486 * bus_add_device - add device to bus
487 * @dev: device being added
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 *
Alan Stern2023c612009-07-30 15:27:18 -0400489 * - Add device's bus attributes.
490 * - Create links to device's bus.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800491 * - Add the device to its bus's list of devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800493int bus_add_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800495 struct bus_type *bus = bus_get(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 int error = 0;
497
498 if (bus) {
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100499 pr_debug("bus: '%s': add device %s\n", bus->name, dev_name(dev));
Greg Kroah-Hartmand377e852005-06-22 16:09:05 -0700500 error = device_add_attrs(bus, dev);
Andrew Mortonf86db392006-08-14 22:43:20 -0700501 if (error)
Cornelia Huck513e7332006-09-22 11:37:08 +0200502 goto out_put;
Greg Kroah-Hartmanfa6fdb32013-08-08 15:22:55 -0700503 error = device_add_groups(dev, bus->dev_groups);
504 if (error)
505 goto out_groups;
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700506 error = sysfs_create_link(&bus->p->devices_kset->kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100507 &dev->kobj, dev_name(dev));
Andrew Mortonf86db392006-08-14 22:43:20 -0700508 if (error)
Cornelia Huck513e7332006-09-22 11:37:08 +0200509 goto out_id;
Andrew Mortonf86db392006-08-14 22:43:20 -0700510 error = sysfs_create_link(&dev->kobj,
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700511 &dev->bus->p->subsys.kobj, "subsystem");
Andrew Mortonf86db392006-08-14 22:43:20 -0700512 if (error)
Cornelia Huck513e7332006-09-22 11:37:08 +0200513 goto out_subsys;
Alan Stern2023c612009-07-30 15:27:18 -0400514 klist_add_tail(&dev->p->knode_bus, &bus->p->klist_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
Cornelia Huck513e7332006-09-22 11:37:08 +0200516 return 0;
517
Cornelia Huck513e7332006-09-22 11:37:08 +0200518out_subsys:
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100519 sysfs_remove_link(&bus->p->devices_kset->kobj, dev_name(dev));
Greg Kroah-Hartmanfa6fdb32013-08-08 15:22:55 -0700520out_groups:
521 device_remove_groups(dev, bus->dev_groups);
Cornelia Huck513e7332006-09-22 11:37:08 +0200522out_id:
523 device_remove_attrs(bus, dev);
524out_put:
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700525 bus_put(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return error;
527}
528
529/**
Alan Stern2023c612009-07-30 15:27:18 -0400530 * bus_probe_device - probe drivers for a new device
531 * @dev: device to probe
Kay Sievers53877d02006-04-04 20:42:26 +0200532 *
Alan Stern2023c612009-07-30 15:27:18 -0400533 * - Automatically probe for a driver if the bus allows it.
Kay Sievers53877d02006-04-04 20:42:26 +0200534 */
Alan Stern2023c612009-07-30 15:27:18 -0400535void bus_probe_device(struct device *dev)
Kay Sievers53877d02006-04-04 20:42:26 +0200536{
Andrew Mortonf86db392006-08-14 22:43:20 -0700537 struct bus_type *bus = dev->bus;
Kay Sieversca22e562011-12-14 14:29:38 -0800538 struct subsys_interface *sif;
Alan Stern2023c612009-07-30 15:27:18 -0400539 int ret;
Kay Sievers53877d02006-04-04 20:42:26 +0200540
Kay Sieversca22e562011-12-14 14:29:38 -0800541 if (!bus)
542 return;
543
544 if (bus->p->drivers_autoprobe) {
Alan Stern2023c612009-07-30 15:27:18 -0400545 ret = device_attach(dev);
Cornelia Huckc6a46692007-02-05 16:15:26 -0800546 WARN_ON(ret < 0);
Kay Sievers53877d02006-04-04 20:42:26 +0200547 }
Kay Sieversca22e562011-12-14 14:29:38 -0800548
549 mutex_lock(&bus->p->mutex);
550 list_for_each_entry(sif, &bus->p->interfaces, node)
551 if (sif->add_dev)
552 sif->add_dev(dev, sif);
553 mutex_unlock(&bus->p->mutex);
Kay Sievers53877d02006-04-04 20:42:26 +0200554}
555
556/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800557 * bus_remove_device - remove device from bus
558 * @dev: device to be removed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 *
Kay Sieversca22e562011-12-14 14:29:38 -0800560 * - Remove device from all interfaces.
561 * - Remove symlink from bus' directory.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800562 * - Delete device from bus's list.
563 * - Detach from its driver.
564 * - Drop reference taken in bus_add_device().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800566void bus_remove_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Kay Sieversca22e562011-12-14 14:29:38 -0800568 struct bus_type *bus = dev->bus;
569 struct subsys_interface *sif;
Greg Kroah-Hartman3f62e572008-03-13 17:07:03 -0400570
Kay Sieversca22e562011-12-14 14:29:38 -0800571 if (!bus)
572 return;
573
574 mutex_lock(&bus->p->mutex);
575 list_for_each_entry(sif, &bus->p->interfaces, node)
576 if (sif->remove_dev)
577 sif->remove_dev(dev, sif);
578 mutex_unlock(&bus->p->mutex);
579
580 sysfs_remove_link(&dev->kobj, "subsystem");
581 sysfs_remove_link(&dev->bus->p->devices_kset->kobj,
582 dev_name(dev));
583 device_remove_attrs(dev->bus, dev);
Greg Kroah-Hartmanfa6fdb32013-08-08 15:22:55 -0700584 device_remove_groups(dev, dev->bus->dev_groups);
Kay Sieversca22e562011-12-14 14:29:38 -0800585 if (klist_node_attached(&dev->p->knode_bus))
586 klist_del(&dev->p->knode_bus);
587
588 pr_debug("bus: '%s': remove device %s\n",
589 dev->bus->name, dev_name(dev));
590 device_release_driver(dev);
591 bus_put(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800594static int driver_add_attrs(struct bus_type *bus, struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 int error = 0;
597 int i;
598
599 if (bus->drv_attrs) {
Greg Kroah-Hartman3e1026b2013-08-22 10:25:34 -0700600 for (i = 0; bus->drv_attrs[i].attr.name; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 error = driver_create_file(drv, &bus->drv_attrs[i]);
602 if (error)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800603 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605 }
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800606done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return error;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800608err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 while (--i >= 0)
610 driver_remove_file(drv, &bus->drv_attrs[i]);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800611 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800614static void driver_remove_attrs(struct bus_type *bus,
615 struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
617 int i;
618
619 if (bus->drv_attrs) {
Greg Kroah-Hartman3e1026b2013-08-22 10:25:34 -0700620 for (i = 0; bus->drv_attrs[i].attr.name; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 driver_remove_file(drv, &bus->drv_attrs[i]);
622 }
623}
624
Andrew Mortonf86db392006-08-14 22:43:20 -0700625static int __must_check add_bind_files(struct device_driver *drv)
Greg Kroah-Hartman874c6242005-12-13 15:17:34 -0800626{
Andrew Mortonf86db392006-08-14 22:43:20 -0700627 int ret;
628
629 ret = driver_create_file(drv, &driver_attr_unbind);
630 if (ret == 0) {
631 ret = driver_create_file(drv, &driver_attr_bind);
632 if (ret)
633 driver_remove_file(drv, &driver_attr_unbind);
634 }
635 return ret;
Greg Kroah-Hartman874c6242005-12-13 15:17:34 -0800636}
637
638static void remove_bind_files(struct device_driver *drv)
639{
640 driver_remove_file(drv, &driver_attr_bind);
641 driver_remove_file(drv, &driver_attr_unbind);
642}
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100643
Kay Sievers83807702007-07-30 02:28:56 +0200644static BUS_ATTR(drivers_probe, S_IWUSR, NULL, store_drivers_probe);
645static BUS_ATTR(drivers_autoprobe, S_IWUSR | S_IRUGO,
646 show_drivers_autoprobe, store_drivers_autoprobe);
647
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100648static int add_probe_files(struct bus_type *bus)
649{
650 int retval;
651
Kay Sievers83807702007-07-30 02:28:56 +0200652 retval = bus_create_file(bus, &bus_attr_drivers_probe);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100653 if (retval)
654 goto out;
655
Kay Sievers83807702007-07-30 02:28:56 +0200656 retval = bus_create_file(bus, &bus_attr_drivers_autoprobe);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100657 if (retval)
Kay Sievers83807702007-07-30 02:28:56 +0200658 bus_remove_file(bus, &bus_attr_drivers_probe);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100659out:
660 return retval;
661}
662
663static void remove_probe_files(struct bus_type *bus)
664{
Kay Sievers83807702007-07-30 02:28:56 +0200665 bus_remove_file(bus, &bus_attr_drivers_autoprobe);
666 bus_remove_file(bus, &bus_attr_drivers_probe);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100667}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Greg Kroah-Hartman2581c9c2013-08-23 15:04:42 -0700669static ssize_t uevent_store(struct device_driver *drv, const char *buf,
670 size_t count)
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200671{
672 enum kobject_action action;
673
674 if (kobject_action_type(buf, count, &action) == 0)
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800675 kobject_uevent(&drv->p->kobj, action);
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200676 return count;
677}
Greg Kroah-Hartman2581c9c2013-08-23 15:04:42 -0700678static DRIVER_ATTR_WO(uevent);
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800681 * bus_add_driver - Add a driver to the bus.
682 * @drv: driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700684int bus_add_driver(struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800686 struct bus_type *bus;
687 struct driver_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 int error = 0;
689
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800690 bus = bus_get(drv->bus);
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400691 if (!bus)
Greg Kroah-Hartman4f6e1942007-04-20 11:29:52 -0700692 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800694 pr_debug("bus: '%s': add driver %s\n", bus->name, drv->name);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800695
696 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Cornelia Huck07634462008-02-18 17:04:25 +0100697 if (!priv) {
698 error = -ENOMEM;
699 goto out_put_bus;
700 }
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800701 klist_init(&priv->klist_devices, NULL, NULL);
702 priv->driver = drv;
703 drv->p = priv;
Greg Kroah-Hartmanc8e90d82007-12-17 15:54:39 -0400704 priv->kobj.kset = bus->p->drivers_kset;
705 error = kobject_init_and_add(&priv->kobj, &driver_ktype, NULL,
706 "%s", drv->name);
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700707 if (error)
Cornelia Huck07634462008-02-18 17:04:25 +0100708 goto out_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Ming Lei190888a2012-11-19 23:35:17 +0800710 klist_add_tail(&priv->knode_bus, &bus->p->klist_drivers);
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700711 if (drv->bus->p->drivers_autoprobe) {
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100712 error = driver_attach(drv);
713 if (error)
714 goto out_unregister;
715 }
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400716 module_add_driver(drv->owner, drv);
717
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200718 error = driver_create_file(drv, &driver_attr_uevent);
719 if (error) {
720 printk(KERN_ERR "%s: uevent attr (%s) failed\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800721 __func__, drv->name);
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200722 }
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400723 error = driver_add_attrs(bus, drv);
724 if (error) {
725 /* How the hell do we get out of this pickle? Give up */
726 printk(KERN_ERR "%s: driver_add_attrs(%s) failed\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800727 __func__, drv->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
Greg Kroah-Hartmaned0617b2013-08-08 15:22:56 -0700729 error = driver_add_groups(drv, bus->drv_groups);
730 if (error)
731 printk(KERN_ERR "%s: driver_create_groups(%s) failed\n",
732 __func__, drv->name);
Dmitry Torokhov1a6f2a72009-10-12 20:17:41 -0700733
734 if (!drv->suppress_bind_attrs) {
735 error = add_bind_files(drv);
736 if (error) {
737 /* Ditto */
738 printk(KERN_ERR "%s: add_bind_files(%s) failed\n",
739 __func__, drv->name);
740 }
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400741 }
742
Kay Sievers5c8563d2009-05-28 14:24:07 -0700743 return 0;
Dmitry Torokhov1a6f2a72009-10-12 20:17:41 -0700744
Andrew Mortonf86db392006-08-14 22:43:20 -0700745out_unregister:
Phil Carmody99b28f12009-12-14 20:28:12 +0200746 kobject_put(&priv->kobj);
Kay Sievers5c8563d2009-05-28 14:24:07 -0700747 kfree(drv->p);
748 drv->p = NULL;
Andrew Mortonf86db392006-08-14 22:43:20 -0700749out_put_bus:
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700750 bus_put(bus);
Andrew Mortonf86db392006-08-14 22:43:20 -0700751 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800755 * bus_remove_driver - delete driver from bus's knowledge.
756 * @drv: driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800758 * Detach the driver from the devices it controls, and remove
759 * it from its bus's list of drivers. Finally, we drop the reference
760 * to the bus we took in bus_add_driver().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800762void bus_remove_driver(struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400764 if (!drv->bus)
765 return;
766
Dmitry Torokhov1a6f2a72009-10-12 20:17:41 -0700767 if (!drv->suppress_bind_attrs)
768 remove_bind_files(drv);
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400769 driver_remove_attrs(drv->bus, drv);
Greg Kroah-Hartmaned0617b2013-08-08 15:22:56 -0700770 driver_remove_groups(drv, drv->bus->drv_groups);
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200771 driver_remove_file(drv, &driver_attr_uevent);
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800772 klist_remove(&drv->p->knode_bus);
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800773 pr_debug("bus: '%s': remove driver %s\n", drv->bus->name, drv->name);
Jeff Garzikd9fd4d3b32006-10-04 07:48:03 -0400774 driver_detach(drv);
775 module_remove_driver(drv);
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800776 kobject_put(&drv->p->kobj);
Greg Kroah-Hartmanfc1ede52007-09-13 02:53:13 -0700777 bus_put(drv->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780/* Helper for bus_rescan_devices's iter */
Andrew Mortonf86db392006-08-14 22:43:20 -0700781static int __must_check bus_rescan_devices_helper(struct device *dev,
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800782 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Andrew Mortonf86db392006-08-14 22:43:20 -0700784 int ret = 0;
785
Alan Sternbf74ad52005-11-17 16:54:12 -0500786 if (!dev->driver) {
787 if (dev->parent) /* Needed for USB */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800788 device_lock(dev->parent);
Andrew Mortonf86db392006-08-14 22:43:20 -0700789 ret = device_attach(dev);
Alan Sternbf74ad52005-11-17 16:54:12 -0500790 if (dev->parent)
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800791 device_unlock(dev->parent);
Alan Sternbf74ad52005-11-17 16:54:12 -0500792 }
Andrew Mortonf86db392006-08-14 22:43:20 -0700793 return ret < 0 ? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796/**
Greg Kroah-Hartman23d3d602005-06-22 16:09:05 -0700797 * bus_rescan_devices - rescan devices on the bus for possible drivers
798 * @bus: the bus to scan.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 *
Greg Kroah-Hartman23d3d602005-06-22 16:09:05 -0700800 * This function will look for devices on the bus with no driver
801 * attached and rescan it against existing drivers to see if it matches
802 * any by calling device_attach() for the unbound devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800804int bus_rescan_devices(struct bus_type *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Andrew Mortonf86db392006-08-14 22:43:20 -0700806 return bus_for_each_dev(bus, NULL, NULL, bus_rescan_devices_helper);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800808EXPORT_SYMBOL_GPL(bus_rescan_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Moore, Erice935d5d2006-03-14 09:18:18 -0700810/**
811 * device_reprobe - remove driver for a device and probe for a new driver
812 * @dev: the device to reprobe
813 *
814 * This function detaches the attached driver (if any) for the given
815 * device and restarts the driver probing process. It is intended
816 * to use if probing criteria changed during a devices lifetime and
817 * driver attachment should change accordingly.
818 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700819int device_reprobe(struct device *dev)
Moore, Erice935d5d2006-03-14 09:18:18 -0700820{
821 if (dev->driver) {
822 if (dev->parent) /* Needed for USB */
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800823 device_lock(dev->parent);
Moore, Erice935d5d2006-03-14 09:18:18 -0700824 device_release_driver(dev);
825 if (dev->parent)
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800826 device_unlock(dev->parent);
Moore, Erice935d5d2006-03-14 09:18:18 -0700827 }
Andrew Mortonf86db392006-08-14 22:43:20 -0700828 return bus_rescan_devices_helper(dev, NULL);
Moore, Erice935d5d2006-03-14 09:18:18 -0700829}
830EXPORT_SYMBOL_GPL(device_reprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800833 * find_bus - locate bus by name.
834 * @name: name of bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800836 * Call kset_find_obj() to iterate over list of buses to
837 * find a bus by name. Return bus if found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800839 * Note that kset_find_obj increments bus' reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 */
Adrian Bunk7e4ef082006-06-26 22:26:56 +0200841#if 0
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800842struct bus_type *find_bus(char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800844 struct kobject *k = kset_find_obj(bus_kset, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 return k ? to_bus(k) : NULL;
846}
Adrian Bunk7e4ef082006-06-26 22:26:56 +0200847#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Greg Kroah-Hartman12478ba2013-08-08 15:22:57 -0700849static int bus_add_groups(struct bus_type *bus,
850 const struct attribute_group **groups)
851{
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -0700852 return sysfs_create_groups(&bus->p->subsys.kobj, groups);
Greg Kroah-Hartman12478ba2013-08-08 15:22:57 -0700853}
854
855static void bus_remove_groups(struct bus_type *bus,
856 const struct attribute_group **groups)
857{
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -0700858 sysfs_remove_groups(&bus->p->subsys.kobj, groups);
Greg Kroah-Hartman12478ba2013-08-08 15:22:57 -0700859}
860
James Bottomley34bb61f2005-09-06 16:56:51 -0700861static void klist_devices_get(struct klist_node *n)
862{
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -0800863 struct device_private *dev_prv = to_device_private_bus(n);
864 struct device *dev = dev_prv->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700865
866 get_device(dev);
867}
868
869static void klist_devices_put(struct klist_node *n)
870{
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -0800871 struct device_private *dev_prv = to_device_private_bus(n);
872 struct device *dev = dev_prv->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700873
874 put_device(dev);
875}
876
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200877static ssize_t bus_uevent_store(struct bus_type *bus,
878 const char *buf, size_t count)
879{
880 enum kobject_action action;
881
882 if (kobject_action_type(buf, count, &action) == 0)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700883 kobject_uevent(&bus->p->subsys.kobj, action);
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200884 return count;
885}
886static BUS_ATTR(uevent, S_IWUSR, NULL, bus_uevent_store);
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888/**
Michal Hockobe871b72013-03-12 17:21:19 +0100889 * bus_register - register a driver-core subsystem
Randy Dunlap78d79552012-01-21 11:02:28 -0800890 * @bus: bus to register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 *
Randy Dunlap78d79552012-01-21 11:02:28 -0800892 * Once we have that, we register the bus with the kobject
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800893 * infrastructure, then register the children subsystems it has:
Kay Sieversca22e562011-12-14 14:29:38 -0800894 * the devices and drivers that belong to the subsystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 */
Michal Hockobe871b72013-03-12 17:21:19 +0100896int bus_register(struct bus_type *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 int retval;
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100899 struct subsys_private *priv;
Michal Hockobe871b72013-03-12 17:21:19 +0100900 struct lock_class_key *key = &bus->lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100902 priv = kzalloc(sizeof(struct subsys_private), GFP_KERNEL);
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700903 if (!priv)
904 return -ENOMEM;
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000905
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700906 priv->bus = bus;
907 bus->p = priv;
908
909 BLOCKING_INIT_NOTIFIER_HEAD(&priv->bus_notifier);
910
911 retval = kobject_set_name(&priv->subsys.kobj, "%s", bus->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (retval)
913 goto out;
914
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700915 priv->subsys.kobj.kset = bus_kset;
916 priv->subsys.kobj.ktype = &bus_ktype;
917 priv->drivers_autoprobe = 1;
Greg Kroah-Hartmand6b05b82007-09-12 15:06:57 -0700918
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700919 retval = kset_register(&priv->subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (retval)
921 goto out;
922
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200923 retval = bus_create_file(bus, &bus_attr_uevent);
924 if (retval)
925 goto bus_uevent_fail;
926
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700927 priv->devices_kset = kset_create_and_add("devices", NULL,
928 &priv->subsys.kobj);
929 if (!priv->devices_kset) {
Greg Kroah-Hartman3d899592007-11-01 13:31:26 -0700930 retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 goto bus_devices_fail;
Greg Kroah-Hartman3d899592007-11-01 13:31:26 -0700932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700934 priv->drivers_kset = kset_create_and_add("drivers", NULL,
935 &priv->subsys.kobj);
936 if (!priv->drivers_kset) {
Greg Kroah-Hartman6dcec252007-11-01 13:31:26 -0700937 retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 goto bus_drivers_fail;
Greg Kroah-Hartman6dcec252007-11-01 13:31:26 -0700939 }
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800940
Kay Sieversca22e562011-12-14 14:29:38 -0800941 INIT_LIST_HEAD(&priv->interfaces);
942 __mutex_init(&priv->mutex, "subsys mutex", key);
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700943 klist_init(&priv->klist_devices, klist_devices_get, klist_devices_put);
944 klist_init(&priv->klist_drivers, NULL, NULL);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100945
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100946 retval = add_probe_files(bus);
947 if (retval)
948 goto bus_probe_files_fail;
949
Greg Kroah-Hartman12478ba2013-08-08 15:22:57 -0700950 retval = bus_add_groups(bus, bus->bus_groups);
951 if (retval)
952 goto bus_groups_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800954 pr_debug("bus: '%s': registered\n", bus->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return 0;
956
Greg Kroah-Hartman12478ba2013-08-08 15:22:57 -0700957bus_groups_fail:
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100958 remove_probe_files(bus);
959bus_probe_files_fail:
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700960 kset_unregister(bus->p->drivers_kset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961bus_drivers_fail:
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700962 kset_unregister(bus->p->devices_kset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963bus_devices_fail:
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200964 bus_remove_file(bus, &bus_attr_uevent);
965bus_uevent_fail:
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700966 kset_unregister(&bus->p->subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967out:
Jike Song600c20f2010-07-15 17:43:54 +0800968 kfree(bus->p);
Dave Youngf48f3fe2009-02-14 21:23:22 +0800969 bus->p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 return retval;
971}
Michal Hockobe871b72013-03-12 17:21:19 +0100972EXPORT_SYMBOL_GPL(bus_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800975 * bus_unregister - remove a bus from the system
976 * @bus: bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800978 * Unregister the child subsystems and the bus itself.
979 * Finally, we call bus_put() to release the refcount
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800981void bus_unregister(struct bus_type *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800983 pr_debug("bus: '%s': unregistering\n", bus->name);
Kay Sieversca22e562011-12-14 14:29:38 -0800984 if (bus->dev_root)
985 device_unregister(bus->dev_root);
Greg Kroah-Hartman12478ba2013-08-08 15:22:57 -0700986 bus_remove_groups(bus, bus->bus_groups);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100987 remove_probe_files(bus);
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700988 kset_unregister(bus->p->drivers_kset);
989 kset_unregister(bus->p->devices_kset);
Kay Sievers7ac1cf42007-08-12 20:43:55 +0200990 bus_remove_file(bus, &bus_attr_uevent);
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700991 kset_unregister(&bus->p->subsys);
992 kfree(bus->p);
Dave Youngf48f3fe2009-02-14 21:23:22 +0800993 bus->p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800995EXPORT_SYMBOL_GPL(bus_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000997int bus_register_notifier(struct bus_type *bus, struct notifier_block *nb)
998{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700999 return blocking_notifier_chain_register(&bus->p->bus_notifier, nb);
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +10001000}
1001EXPORT_SYMBOL_GPL(bus_register_notifier);
1002
1003int bus_unregister_notifier(struct bus_type *bus, struct notifier_block *nb)
1004{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -07001005 return blocking_notifier_chain_unregister(&bus->p->bus_notifier, nb);
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +10001006}
1007EXPORT_SYMBOL_GPL(bus_unregister_notifier);
1008
Greg Kroah-Hartman0fed80f2007-11-01 19:41:16 -07001009struct kset *bus_get_kset(struct bus_type *bus)
1010{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -07001011 return &bus->p->subsys;
Greg Kroah-Hartman0fed80f2007-11-01 19:41:16 -07001012}
1013EXPORT_SYMBOL_GPL(bus_get_kset);
1014
Greg Kroah-Hartmanb2490722007-11-01 19:41:16 -07001015struct klist *bus_get_device_klist(struct bus_type *bus)
1016{
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -07001017 return &bus->p->klist_devices;
Greg Kroah-Hartmanb2490722007-11-01 19:41:16 -07001018}
1019EXPORT_SYMBOL_GPL(bus_get_device_klist);
1020
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05001021/*
Robert P. J. Daydca25eb2010-11-21 08:15:01 -05001022 * Yes, this forcibly breaks the klist abstraction temporarily. It
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05001023 * just wants to sort the klist, not change reference counts and
1024 * take/drop locks rapidly in the process. It does all this while
1025 * holding the lock for the list, so objects can't otherwise be
1026 * added/removed while we're swizzling.
1027 */
1028static void device_insertion_sort_klist(struct device *a, struct list_head *list,
1029 int (*compare)(const struct device *a,
1030 const struct device *b))
1031{
1032 struct list_head *pos;
1033 struct klist_node *n;
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -08001034 struct device_private *dev_prv;
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05001035 struct device *b;
1036
1037 list_for_each(pos, list) {
1038 n = container_of(pos, struct klist_node, n_node);
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -08001039 dev_prv = to_device_private_bus(n);
1040 b = dev_prv->device;
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05001041 if (compare(a, b) <= 0) {
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -08001042 list_move_tail(&a->p->knode_bus.n_node,
1043 &b->p->knode_bus.n_node);
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05001044 return;
1045 }
1046 }
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -08001047 list_move_tail(&a->p->knode_bus.n_node, list);
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05001048}
1049
1050void bus_sort_breadthfirst(struct bus_type *bus,
1051 int (*compare)(const struct device *a,
1052 const struct device *b))
1053{
1054 LIST_HEAD(sorted_devices);
1055 struct list_head *pos, *tmp;
1056 struct klist_node *n;
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -08001057 struct device_private *dev_prv;
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05001058 struct device *dev;
1059 struct klist *device_klist;
1060
1061 device_klist = bus_get_device_klist(bus);
1062
1063 spin_lock(&device_klist->k_lock);
1064 list_for_each_safe(pos, tmp, &device_klist->k_list) {
1065 n = container_of(pos, struct klist_node, n_node);
Greg Kroah-Hartmanae1b4172008-12-16 12:26:21 -08001066 dev_prv = to_device_private_bus(n);
1067 dev = dev_prv->device;
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05001068 device_insertion_sort_klist(dev, &sorted_devices, compare);
1069 }
1070 list_splice(&sorted_devices, &device_klist->k_list);
1071 spin_unlock(&device_klist->k_lock);
1072}
1073EXPORT_SYMBOL_GPL(bus_sort_breadthfirst);
1074
Kay Sieversca22e562011-12-14 14:29:38 -08001075/**
1076 * subsys_dev_iter_init - initialize subsys device iterator
1077 * @iter: subsys iterator to initialize
1078 * @subsys: the subsys we wanna iterate over
1079 * @start: the device to start iterating from, if any
1080 * @type: device_type of the devices to iterate over, NULL for all
1081 *
1082 * Initialize subsys iterator @iter such that it iterates over devices
1083 * of @subsys. If @start is set, the list iteration will start there,
1084 * otherwise if it is NULL, the iteration starts at the beginning of
1085 * the list.
1086 */
Greg Kroah-Hartman7cd9c9b2012-04-19 19:17:30 -07001087void subsys_dev_iter_init(struct subsys_dev_iter *iter, struct bus_type *subsys,
1088 struct device *start, const struct device_type *type)
Kay Sieversca22e562011-12-14 14:29:38 -08001089{
1090 struct klist_node *start_knode = NULL;
1091
1092 if (start)
1093 start_knode = &start->p->knode_bus;
Greg Kroah-Hartman7cd9c9b2012-04-19 19:17:30 -07001094 klist_iter_init_node(&subsys->p->klist_devices, &iter->ki, start_knode);
1095 iter->type = type;
Kay Sieversca22e562011-12-14 14:29:38 -08001096}
1097EXPORT_SYMBOL_GPL(subsys_dev_iter_init);
1098
1099/**
1100 * subsys_dev_iter_next - iterate to the next device
1101 * @iter: subsys iterator to proceed
1102 *
1103 * Proceed @iter to the next device and return it. Returns NULL if
1104 * iteration is complete.
1105 *
1106 * The returned device is referenced and won't be released till
1107 * iterator is proceed to the next device or exited. The caller is
1108 * free to do whatever it wants to do with the device including
1109 * calling back into subsys code.
1110 */
1111struct device *subsys_dev_iter_next(struct subsys_dev_iter *iter)
1112{
1113 struct klist_node *knode;
1114 struct device *dev;
1115
1116 for (;;) {
1117 knode = klist_next(&iter->ki);
1118 if (!knode)
1119 return NULL;
1120 dev = container_of(knode, struct device_private, knode_bus)->device;
1121 if (!iter->type || iter->type == dev->type)
1122 return dev;
1123 }
1124}
1125EXPORT_SYMBOL_GPL(subsys_dev_iter_next);
1126
1127/**
1128 * subsys_dev_iter_exit - finish iteration
1129 * @iter: subsys iterator to finish
1130 *
1131 * Finish an iteration. Always call this function after iteration is
1132 * complete whether the iteration ran till the end or not.
1133 */
1134void subsys_dev_iter_exit(struct subsys_dev_iter *iter)
1135{
1136 klist_iter_exit(&iter->ki);
1137}
1138EXPORT_SYMBOL_GPL(subsys_dev_iter_exit);
1139
1140int subsys_interface_register(struct subsys_interface *sif)
1141{
1142 struct bus_type *subsys;
1143 struct subsys_dev_iter iter;
1144 struct device *dev;
1145
1146 if (!sif || !sif->subsys)
1147 return -ENODEV;
1148
1149 subsys = bus_get(sif->subsys);
1150 if (!subsys)
1151 return -EINVAL;
1152
1153 mutex_lock(&subsys->p->mutex);
1154 list_add_tail(&sif->node, &subsys->p->interfaces);
1155 if (sif->add_dev) {
1156 subsys_dev_iter_init(&iter, subsys, NULL, NULL);
1157 while ((dev = subsys_dev_iter_next(&iter)))
1158 sif->add_dev(dev, sif);
1159 subsys_dev_iter_exit(&iter);
1160 }
1161 mutex_unlock(&subsys->p->mutex);
1162
1163 return 0;
1164}
1165EXPORT_SYMBOL_GPL(subsys_interface_register);
1166
1167void subsys_interface_unregister(struct subsys_interface *sif)
1168{
Jonghwan Choi2b315942012-01-14 11:06:03 +09001169 struct bus_type *subsys;
Kay Sieversca22e562011-12-14 14:29:38 -08001170 struct subsys_dev_iter iter;
1171 struct device *dev;
1172
Jonghwan Choi2b315942012-01-14 11:06:03 +09001173 if (!sif || !sif->subsys)
Kay Sieversca22e562011-12-14 14:29:38 -08001174 return;
1175
Jonghwan Choi2b315942012-01-14 11:06:03 +09001176 subsys = sif->subsys;
1177
Kay Sieversca22e562011-12-14 14:29:38 -08001178 mutex_lock(&subsys->p->mutex);
1179 list_del_init(&sif->node);
1180 if (sif->remove_dev) {
1181 subsys_dev_iter_init(&iter, subsys, NULL, NULL);
1182 while ((dev = subsys_dev_iter_next(&iter)))
1183 sif->remove_dev(dev, sif);
1184 subsys_dev_iter_exit(&iter);
1185 }
1186 mutex_unlock(&subsys->p->mutex);
1187
1188 bus_put(subsys);
1189}
1190EXPORT_SYMBOL_GPL(subsys_interface_unregister);
1191
1192static void system_root_device_release(struct device *dev)
1193{
1194 kfree(dev);
1195}
Tejun Heod73ce002013-03-12 11:30:05 -07001196
1197static int subsys_register(struct bus_type *subsys,
1198 const struct attribute_group **groups,
1199 struct kobject *parent_of_root)
1200{
1201 struct device *dev;
1202 int err;
1203
1204 err = bus_register(subsys);
1205 if (err < 0)
1206 return err;
1207
1208 dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1209 if (!dev) {
1210 err = -ENOMEM;
1211 goto err_dev;
1212 }
1213
1214 err = dev_set_name(dev, "%s", subsys->name);
1215 if (err < 0)
1216 goto err_name;
1217
1218 dev->kobj.parent = parent_of_root;
1219 dev->groups = groups;
1220 dev->release = system_root_device_release;
1221
1222 err = device_register(dev);
1223 if (err < 0)
1224 goto err_dev_reg;
1225
1226 subsys->dev_root = dev;
1227 return 0;
1228
1229err_dev_reg:
1230 put_device(dev);
1231 dev = NULL;
1232err_name:
1233 kfree(dev);
1234err_dev:
1235 bus_unregister(subsys);
1236 return err;
1237}
1238
Kay Sieversca22e562011-12-14 14:29:38 -08001239/**
1240 * subsys_system_register - register a subsystem at /sys/devices/system/
Randy Dunlap78d79552012-01-21 11:02:28 -08001241 * @subsys: system subsystem
1242 * @groups: default attributes for the root device
Kay Sieversca22e562011-12-14 14:29:38 -08001243 *
1244 * All 'system' subsystems have a /sys/devices/system/<name> root device
1245 * with the name of the subsystem. The root device can carry subsystem-
1246 * wide attributes. All registered devices are below this single root
1247 * device and are named after the subsystem with a simple enumeration
1248 * number appended. The registered devices are not explicitely named;
1249 * only 'id' in the device needs to be set.
1250 *
1251 * Do not use this interface for anything new, it exists for compatibility
1252 * with bad ideas only. New subsystems should use plain subsystems; and
1253 * add the subsystem-wide attributes should be added to the subsystem
1254 * directory itself and not some create fake root-device placed in
1255 * /sys/devices/system/<name>.
1256 */
1257int subsys_system_register(struct bus_type *subsys,
1258 const struct attribute_group **groups)
1259{
Tejun Heod73ce002013-03-12 11:30:05 -07001260 return subsys_register(subsys, groups, &system_kset->kobj);
Kay Sieversca22e562011-12-14 14:29:38 -08001261}
1262EXPORT_SYMBOL_GPL(subsys_system_register);
1263
Tejun Heod73ce002013-03-12 11:30:05 -07001264/**
1265 * subsys_virtual_register - register a subsystem at /sys/devices/virtual/
1266 * @subsys: virtual subsystem
1267 * @groups: default attributes for the root device
1268 *
1269 * All 'virtual' subsystems have a /sys/devices/system/<name> root device
1270 * with the name of the subystem. The root device can carry subsystem-wide
1271 * attributes. All registered devices are below this single root device.
1272 * There's no restriction on device naming. This is for kernel software
1273 * constructs which need sysfs interface.
1274 */
1275int subsys_virtual_register(struct bus_type *subsys,
1276 const struct attribute_group **groups)
1277{
1278 struct kobject *virtual_dir;
1279
1280 virtual_dir = virtual_device_parent(NULL);
1281 if (!virtual_dir)
1282 return -ENOMEM;
1283
1284 return subsys_register(subsys, groups, virtual_dir);
1285}
Greg Kroah-Hartman1c04fc32013-05-10 09:14:04 -07001286EXPORT_SYMBOL_GPL(subsys_virtual_register);
Tejun Heod73ce002013-03-12 11:30:05 -07001287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288int __init buses_init(void)
1289{
Greg Kroah-Hartman59a54832007-10-29 23:22:26 -05001290 bus_kset = kset_create_and_add("bus", &bus_uevent_ops, NULL);
1291 if (!bus_kset)
1292 return -ENOMEM;
Kay Sieversca22e562011-12-14 14:29:38 -08001293
1294 system_kset = kset_create_and_add("system", NULL, &devices_kset->kobj);
1295 if (!system_kset)
1296 return -ENOMEM;
1297
Greg Kroah-Hartman59a54832007-10-29 23:22:26 -05001298 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}