Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 6 | * Copyright (c) 2007 Greg Kroah-Hartman <gregkh@suse.de> |
| 7 | * Copyright (c) 2007 Novell Inc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 9 | * This file is released under the GPLv2 |
| 10 | * |
| 11 | */ |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/device.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/errno.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 16 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/init.h> |
| 18 | #include <linux/string.h> |
| 19 | #include "base.h" |
| 20 | #include "power/power.h" |
| 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #define to_bus_attr(_attr) container_of(_attr, struct bus_attribute, attr) |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 23 | #define to_bus(obj) container_of(obj, struct bus_type_private, subsys.kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | /* |
| 26 | * sysfs bindings for drivers |
| 27 | */ |
| 28 | |
| 29 | #define to_drv_attr(_attr) container_of(_attr, struct driver_attribute, attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 32 | static int __must_check bus_rescan_devices_helper(struct device *dev, |
| 33 | void *data); |
| 34 | |
Greg Kroah-Hartman | 5901d01 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 35 | static struct bus_type *bus_get(struct bus_type *bus) |
| 36 | { |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 37 | if (bus) { |
| 38 | kset_get(&bus->p->subsys); |
| 39 | return bus; |
| 40 | } |
| 41 | return NULL; |
Greg Kroah-Hartman | 5901d01 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 42 | } |
| 43 | |
Greg Kroah-Hartman | fc1ede5 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 44 | static void bus_put(struct bus_type *bus) |
| 45 | { |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 46 | if (bus) |
| 47 | kset_put(&bus->p->subsys); |
Greg Kroah-Hartman | fc1ede5 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 48 | } |
| 49 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 50 | static ssize_t drv_attr_show(struct kobject *kobj, struct attribute *attr, |
| 51 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 53 | struct driver_attribute *drv_attr = to_drv_attr(attr); |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 54 | struct driver_private *drv_priv = to_driver(kobj); |
Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 55 | ssize_t ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| 57 | if (drv_attr->show) |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 58 | ret = drv_attr->show(drv_priv->driver, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | return ret; |
| 60 | } |
| 61 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 62 | static ssize_t drv_attr_store(struct kobject *kobj, struct attribute *attr, |
| 63 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 65 | struct driver_attribute *drv_attr = to_drv_attr(attr); |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 66 | struct driver_private *drv_priv = to_driver(kobj); |
Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 67 | ssize_t ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | if (drv_attr->store) |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 70 | ret = drv_attr->store(drv_priv->driver, buf, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | return ret; |
| 72 | } |
| 73 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 74 | static const struct sysfs_ops driver_sysfs_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | .show = drv_attr_show, |
| 76 | .store = drv_attr_store, |
| 77 | }; |
| 78 | |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 79 | static void driver_release(struct kobject *kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 81 | struct driver_private *drv_priv = to_driver(kobj); |
| 82 | |
Harvey Harrison | 2b3a302 | 2008-03-04 16:41:05 -0800 | [diff] [blame] | 83 | pr_debug("driver: '%s': %s\n", kobject_name(kobj), __func__); |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 84 | kfree(drv_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Greg Kroah-Hartman | a1148fb | 2007-10-11 10:47:49 -0600 | [diff] [blame] | 87 | static struct kobj_type driver_ktype = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | .sysfs_ops = &driver_sysfs_ops, |
| 89 | .release = driver_release, |
| 90 | }; |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | /* |
| 93 | * sysfs bindings for buses |
| 94 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 95 | static ssize_t bus_attr_show(struct kobject *kobj, struct attribute *attr, |
| 96 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 98 | struct bus_attribute *bus_attr = to_bus_attr(attr); |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 99 | struct bus_type_private *bus_priv = to_bus(kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | ssize_t ret = 0; |
| 101 | |
| 102 | if (bus_attr->show) |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 103 | ret = bus_attr->show(bus_priv->bus, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | return ret; |
| 105 | } |
| 106 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 107 | static ssize_t bus_attr_store(struct kobject *kobj, struct attribute *attr, |
| 108 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 110 | struct bus_attribute *bus_attr = to_bus_attr(attr); |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 111 | struct bus_type_private *bus_priv = to_bus(kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | ssize_t ret = 0; |
| 113 | |
| 114 | if (bus_attr->store) |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 115 | ret = bus_attr->store(bus_priv->bus, buf, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | return ret; |
| 117 | } |
| 118 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 119 | static const struct sysfs_ops bus_sysfs_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | .show = bus_attr_show, |
| 121 | .store = bus_attr_store, |
| 122 | }; |
| 123 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 124 | int bus_create_file(struct bus_type *bus, struct bus_attribute *attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | { |
| 126 | int error; |
Greg Kroah-Hartman | 5901d01 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 127 | if (bus_get(bus)) { |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 128 | error = sysfs_create_file(&bus->p->subsys.kobj, &attr->attr); |
Greg Kroah-Hartman | fc1ede5 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 129 | bus_put(bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | } else |
| 131 | error = -EINVAL; |
| 132 | return error; |
| 133 | } |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 134 | EXPORT_SYMBOL_GPL(bus_create_file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 136 | void bus_remove_file(struct bus_type *bus, struct bus_attribute *attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | { |
Greg Kroah-Hartman | 5901d01 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 138 | if (bus_get(bus)) { |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 139 | sysfs_remove_file(&bus->p->subsys.kobj, &attr->attr); |
Greg Kroah-Hartman | fc1ede5 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 140 | bus_put(bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } |
| 142 | } |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 143 | EXPORT_SYMBOL_GPL(bus_remove_file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Kay Sievers | 80f03e3 | 2007-05-26 11:21:36 +0200 | [diff] [blame] | 145 | static struct kobj_type bus_ktype = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | .sysfs_ops = &bus_sysfs_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | }; |
| 148 | |
Kay Sievers | 80f03e3 | 2007-05-26 11:21:36 +0200 | [diff] [blame] | 149 | static 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 Revfy | 9cd4361 | 2009-12-31 14:52:51 +0100 | [diff] [blame] | 158 | static const struct kset_uevent_ops bus_uevent_ops = { |
Kay Sievers | 80f03e3 | 2007-05-26 11:21:36 +0200 | [diff] [blame] | 159 | .filter = bus_uevent_filter, |
| 160 | }; |
| 161 | |
Greg Kroah-Hartman | 59a5483 | 2007-10-29 23:22:26 -0500 | [diff] [blame] | 162 | static struct kset *bus_kset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Russell King | 2139bdd | 2006-02-07 12:58:20 -0800 | [diff] [blame] | 165 | #ifdef CONFIG_HOTPLUG |
Alan Stern | 2b08c8d | 2005-11-23 15:43:50 -0800 | [diff] [blame] | 166 | /* Manually detach a device from its associated driver. */ |
Greg Kroah-Hartman | 151ef38 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 167 | static ssize_t driver_unbind(struct device_driver *drv, |
| 168 | const char *buf, size_t count) |
| 169 | { |
Greg Kroah-Hartman | 5901d01 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 170 | struct bus_type *bus = bus_get(drv->bus); |
Greg Kroah-Hartman | 151ef38 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 171 | struct device *dev; |
| 172 | int err = -ENODEV; |
| 173 | |
Greg Kroah-Hartman | 1f9ffc0 | 2008-01-27 10:29:20 -0800 | [diff] [blame] | 174 | dev = bus_find_device_by_name(bus, NULL, buf); |
Alan Stern | 2b08c8d | 2005-11-23 15:43:50 -0800 | [diff] [blame] | 175 | if (dev && dev->driver == drv) { |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 176 | if (dev->parent) /* Needed for USB */ |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 177 | device_lock(dev->parent); |
Greg Kroah-Hartman | 151ef38 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 178 | device_release_driver(dev); |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 179 | if (dev->parent) |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 180 | device_unlock(dev->parent); |
Greg Kroah-Hartman | 151ef38 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 181 | err = count; |
| 182 | } |
Alan Stern | 2b08c8d | 2005-11-23 15:43:50 -0800 | [diff] [blame] | 183 | put_device(dev); |
Greg Kroah-Hartman | fc1ede5 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 184 | bus_put(bus); |
Alan Stern | 2b08c8d | 2005-11-23 15:43:50 -0800 | [diff] [blame] | 185 | return err; |
Greg Kroah-Hartman | 151ef38 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 186 | } |
| 187 | static DRIVER_ATTR(unbind, S_IWUSR, NULL, driver_unbind); |
| 188 | |
Greg Kroah-Hartman | afdce75 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 189 | /* |
| 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 | */ |
| 194 | static ssize_t driver_bind(struct device_driver *drv, |
| 195 | const char *buf, size_t count) |
| 196 | { |
Greg Kroah-Hartman | 5901d01 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 197 | struct bus_type *bus = bus_get(drv->bus); |
Greg Kroah-Hartman | afdce75 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 198 | struct device *dev; |
| 199 | int err = -ENODEV; |
| 200 | |
Greg Kroah-Hartman | 1f9ffc0 | 2008-01-27 10:29:20 -0800 | [diff] [blame] | 201 | dev = bus_find_device_by_name(bus, NULL, buf); |
Ming Lei | 49b420a | 2009-01-21 23:27:47 +0800 | [diff] [blame] | 202 | if (dev && dev->driver == NULL && driver_match_device(drv, dev)) { |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 203 | if (dev->parent) /* Needed for USB */ |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 204 | device_lock(dev->parent); |
| 205 | device_lock(dev); |
Greg Kroah-Hartman | afdce75 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 206 | err = driver_probe_device(drv, dev); |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 207 | device_unlock(dev); |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 208 | if (dev->parent) |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 209 | device_unlock(dev->parent); |
Ryan Wilson | 3722540 | 2006-03-22 16:26:25 -0500 | [diff] [blame] | 210 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 211 | if (err > 0) { |
| 212 | /* success */ |
Ryan Wilson | 3722540 | 2006-03-22 16:26:25 -0500 | [diff] [blame] | 213 | err = count; |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 214 | } else if (err == 0) { |
| 215 | /* driver didn't accept device */ |
Ryan Wilson | 3722540 | 2006-03-22 16:26:25 -0500 | [diff] [blame] | 216 | err = -ENODEV; |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 217 | } |
Greg Kroah-Hartman | afdce75 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 218 | } |
Alan Stern | 2b08c8d | 2005-11-23 15:43:50 -0800 | [diff] [blame] | 219 | put_device(dev); |
Greg Kroah-Hartman | fc1ede5 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 220 | bus_put(bus); |
Alan Stern | 2b08c8d | 2005-11-23 15:43:50 -0800 | [diff] [blame] | 221 | return err; |
Greg Kroah-Hartman | afdce75 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 222 | } |
| 223 | static DRIVER_ATTR(bind, S_IWUSR, NULL, driver_bind); |
| 224 | |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 225 | static ssize_t show_drivers_autoprobe(struct bus_type *bus, char *buf) |
| 226 | { |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 227 | return sprintf(buf, "%d\n", bus->p->drivers_autoprobe); |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | static ssize_t store_drivers_autoprobe(struct bus_type *bus, |
| 231 | const char *buf, size_t count) |
| 232 | { |
| 233 | if (buf[0] == '0') |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 234 | bus->p->drivers_autoprobe = 0; |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 235 | else |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 236 | bus->p->drivers_autoprobe = 1; |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 237 | return count; |
| 238 | } |
| 239 | |
| 240 | static ssize_t store_drivers_probe(struct bus_type *bus, |
| 241 | const char *buf, size_t count) |
| 242 | { |
| 243 | struct device *dev; |
| 244 | |
Greg Kroah-Hartman | 1f9ffc0 | 2008-01-27 10:29:20 -0800 | [diff] [blame] | 245 | dev = bus_find_device_by_name(bus, NULL, buf); |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 246 | if (!dev) |
| 247 | return -ENODEV; |
| 248 | if (bus_rescan_devices_helper(dev, NULL) != 0) |
| 249 | return -EINVAL; |
| 250 | return count; |
| 251 | } |
Russell King | 2139bdd | 2006-02-07 12:58:20 -0800 | [diff] [blame] | 252 | #endif |
Greg Kroah-Hartman | 151ef38 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 253 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 254 | static struct device *next_device(struct klist_iter *i) |
mochel@digitalimplant.org | 465c7a3 | 2005-03-21 11:49:14 -0800 | [diff] [blame] | 255 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 256 | struct klist_node *n = klist_next(i); |
Greg Kroah-Hartman | ae1b417 | 2008-12-16 12:26:21 -0800 | [diff] [blame] | 257 | 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.org | 465c7a3 | 2005-03-21 11:49:14 -0800 | [diff] [blame] | 265 | } |
| 266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 268 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 274 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 278 | * We check the return of @fn each time. If it returns anything |
| 279 | * other than 0, we break out and return that value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 281 | * 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 Chiang | 0fa1b0a | 2009-05-14 23:15:22 +0200 | [diff] [blame] | 283 | * to retain this data, it should do so, and increment the reference |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 284 | * count in the supplied callback. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 286 | int bus_for_each_dev(struct bus_type *bus, struct device *start, |
| 287 | void *data, int (*fn)(struct device *, void *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | { |
mochel@digitalimplant.org | 465c7a3 | 2005-03-21 11:49:14 -0800 | [diff] [blame] | 289 | struct klist_iter i; |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 290 | struct device *dev; |
mochel@digitalimplant.org | 465c7a3 | 2005-03-21 11:49:14 -0800 | [diff] [blame] | 291 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
mochel@digitalimplant.org | 465c7a3 | 2005-03-21 11:49:14 -0800 | [diff] [blame] | 293 | if (!bus) |
| 294 | return -EINVAL; |
| 295 | |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 296 | klist_iter_init_node(&bus->p->klist_devices, &i, |
Greg Kroah-Hartman | ae1b417 | 2008-12-16 12:26:21 -0800 | [diff] [blame] | 297 | (start ? &start->p->knode_bus : NULL)); |
mochel@digitalimplant.org | 465c7a3 | 2005-03-21 11:49:14 -0800 | [diff] [blame] | 298 | while ((dev = next_device(&i)) && !error) |
| 299 | error = fn(dev, data); |
| 300 | klist_iter_exit(&i); |
| 301 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | } |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 303 | EXPORT_SYMBOL_GPL(bus_for_each_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
Cornelia Huck | 0edb586 | 2005-06-22 16:59:51 +0200 | [diff] [blame] | 305 | /** |
| 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-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 320 | struct device *bus_find_device(struct bus_type *bus, |
| 321 | struct device *start, void *data, |
| 322 | int (*match)(struct device *dev, void *data)) |
Cornelia Huck | 0edb586 | 2005-06-22 16:59:51 +0200 | [diff] [blame] | 323 | { |
| 324 | struct klist_iter i; |
| 325 | struct device *dev; |
| 326 | |
| 327 | if (!bus) |
| 328 | return NULL; |
| 329 | |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 330 | klist_iter_init_node(&bus->p->klist_devices, &i, |
Greg Kroah-Hartman | ae1b417 | 2008-12-16 12:26:21 -0800 | [diff] [blame] | 331 | (start ? &start->p->knode_bus : NULL)); |
Cornelia Huck | 0edb586 | 2005-06-22 16:59:51 +0200 | [diff] [blame] | 332 | 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-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 338 | EXPORT_SYMBOL_GPL(bus_find_device); |
mochel@digitalimplant.org | 38fdac3 | 2005-03-21 12:00:18 -0800 | [diff] [blame] | 339 | |
Greg Kroah-Hartman | 1f9ffc0 | 2008-01-27 10:29:20 -0800 | [diff] [blame] | 340 | static int match_name(struct device *dev, void *data) |
| 341 | { |
| 342 | const char *name = data; |
| 343 | |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 344 | return sysfs_streq(name, dev_name(dev)); |
Greg Kroah-Hartman | 1f9ffc0 | 2008-01-27 10:29:20 -0800 | [diff] [blame] | 345 | } |
| 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 | */ |
| 357 | struct 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 | } |
| 362 | EXPORT_SYMBOL_GPL(bus_find_device_by_name); |
| 363 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 364 | static struct device_driver *next_driver(struct klist_iter *i) |
mochel@digitalimplant.org | 38fdac3 | 2005-03-21 12:00:18 -0800 | [diff] [blame] | 365 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 366 | struct klist_node *n = klist_next(i); |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 367 | 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.org | 38fdac3 | 2005-03-21 12:00:18 -0800 | [diff] [blame] | 374 | } |
| 375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 377 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 383 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 389 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 395 | int bus_for_each_drv(struct bus_type *bus, struct device_driver *start, |
| 396 | void *data, int (*fn)(struct device_driver *, void *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | { |
mochel@digitalimplant.org | 38fdac3 | 2005-03-21 12:00:18 -0800 | [diff] [blame] | 398 | struct klist_iter i; |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 399 | struct device_driver *drv; |
mochel@digitalimplant.org | 38fdac3 | 2005-03-21 12:00:18 -0800 | [diff] [blame] | 400 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
mochel@digitalimplant.org | 38fdac3 | 2005-03-21 12:00:18 -0800 | [diff] [blame] | 402 | if (!bus) |
| 403 | return -EINVAL; |
| 404 | |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 405 | klist_iter_init_node(&bus->p->klist_drivers, &i, |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 406 | start ? &start->p->knode_bus : NULL); |
mochel@digitalimplant.org | 38fdac3 | 2005-03-21 12:00:18 -0800 | [diff] [blame] | 407 | while ((drv = next_driver(&i)) && !error) |
| 408 | error = fn(drv, data); |
| 409 | klist_iter_exit(&i); |
| 410 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | } |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 412 | EXPORT_SYMBOL_GPL(bus_for_each_drv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
Andrew Morton | 4aca67e | 2007-02-13 22:39:26 -0800 | [diff] [blame] | 414 | static int device_add_attrs(struct bus_type *bus, struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | { |
| 416 | int error = 0; |
| 417 | int i; |
| 418 | |
Andrew Morton | 4aca67e | 2007-02-13 22:39:26 -0800 | [diff] [blame] | 419 | if (!bus->dev_attrs) |
| 420 | return 0; |
| 421 | |
| 422 | for (i = 0; attr_name(bus->dev_attrs[i]); i++) { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 423 | error = device_create_file(dev, &bus->dev_attrs[i]); |
Andrew Morton | 4aca67e | 2007-02-13 22:39:26 -0800 | [diff] [blame] | 424 | if (error) { |
| 425 | while (--i >= 0) |
| 426 | device_remove_file(dev, &bus->dev_attrs[i]); |
| 427 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | } |
| 429 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | } |
| 432 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 433 | static void device_remove_attrs(struct bus_type *bus, struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | { |
| 435 | int i; |
| 436 | |
| 437 | if (bus->dev_attrs) { |
| 438 | for (i = 0; attr_name(bus->dev_attrs[i]); i++) |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 439 | device_remove_file(dev, &bus->dev_attrs[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
| 441 | } |
| 442 | |
Kay Sievers | b9cafc7 | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 443 | #ifdef CONFIG_SYSFS_DEPRECATED |
| 444 | static int make_deprecated_bus_links(struct device *dev) |
| 445 | { |
| 446 | return sysfs_create_link(&dev->kobj, |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 447 | &dev->bus->p->subsys.kobj, "bus"); |
Kay Sievers | b9cafc7 | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | static void remove_deprecated_bus_links(struct device *dev) |
| 451 | { |
| 452 | sysfs_remove_link(&dev->kobj, "bus"); |
| 453 | } |
| 454 | #else |
| 455 | static inline int make_deprecated_bus_links(struct device *dev) { return 0; } |
| 456 | static inline void remove_deprecated_bus_links(struct device *dev) { } |
| 457 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
| 459 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 460 | * bus_add_device - add device to bus |
| 461 | * @dev: device being added |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | * |
Alan Stern | 2023c61 | 2009-07-30 15:27:18 -0400 | [diff] [blame] | 463 | * - Add device's bus attributes. |
| 464 | * - Create links to device's bus. |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 465 | * - Add the device to its bus's list of devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 467 | int bus_add_device(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 469 | struct bus_type *bus = bus_get(dev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | int error = 0; |
| 471 | |
| 472 | if (bus) { |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 473 | pr_debug("bus: '%s': add device %s\n", bus->name, dev_name(dev)); |
Greg Kroah-Hartman | d377e85 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 474 | error = device_add_attrs(bus, dev); |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 475 | if (error) |
Cornelia Huck | 513e733 | 2006-09-22 11:37:08 +0200 | [diff] [blame] | 476 | goto out_put; |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 477 | error = sysfs_create_link(&bus->p->devices_kset->kobj, |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 478 | &dev->kobj, dev_name(dev)); |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 479 | if (error) |
Cornelia Huck | 513e733 | 2006-09-22 11:37:08 +0200 | [diff] [blame] | 480 | goto out_id; |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 481 | error = sysfs_create_link(&dev->kobj, |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 482 | &dev->bus->p->subsys.kobj, "subsystem"); |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 483 | if (error) |
Cornelia Huck | 513e733 | 2006-09-22 11:37:08 +0200 | [diff] [blame] | 484 | goto out_subsys; |
Kay Sievers | b9cafc7 | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 485 | error = make_deprecated_bus_links(dev); |
Cornelia Huck | 513e733 | 2006-09-22 11:37:08 +0200 | [diff] [blame] | 486 | if (error) |
| 487 | goto out_deprecated; |
Alan Stern | 2023c61 | 2009-07-30 15:27:18 -0400 | [diff] [blame] | 488 | klist_add_tail(&dev->p->knode_bus, &bus->p->klist_devices); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | } |
Cornelia Huck | 513e733 | 2006-09-22 11:37:08 +0200 | [diff] [blame] | 490 | return 0; |
| 491 | |
| 492 | out_deprecated: |
| 493 | sysfs_remove_link(&dev->kobj, "subsystem"); |
| 494 | out_subsys: |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 495 | sysfs_remove_link(&bus->p->devices_kset->kobj, dev_name(dev)); |
Cornelia Huck | 513e733 | 2006-09-22 11:37:08 +0200 | [diff] [blame] | 496 | out_id: |
| 497 | device_remove_attrs(bus, dev); |
| 498 | out_put: |
Greg Kroah-Hartman | fc1ede5 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 499 | bus_put(dev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | return error; |
| 501 | } |
| 502 | |
| 503 | /** |
Alan Stern | 2023c61 | 2009-07-30 15:27:18 -0400 | [diff] [blame] | 504 | * bus_probe_device - probe drivers for a new device |
| 505 | * @dev: device to probe |
Kay Sievers | 53877d0 | 2006-04-04 20:42:26 +0200 | [diff] [blame] | 506 | * |
Alan Stern | 2023c61 | 2009-07-30 15:27:18 -0400 | [diff] [blame] | 507 | * - Automatically probe for a driver if the bus allows it. |
Kay Sievers | 53877d0 | 2006-04-04 20:42:26 +0200 | [diff] [blame] | 508 | */ |
Alan Stern | 2023c61 | 2009-07-30 15:27:18 -0400 | [diff] [blame] | 509 | void bus_probe_device(struct device *dev) |
Kay Sievers | 53877d0 | 2006-04-04 20:42:26 +0200 | [diff] [blame] | 510 | { |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 511 | struct bus_type *bus = dev->bus; |
Alan Stern | 2023c61 | 2009-07-30 15:27:18 -0400 | [diff] [blame] | 512 | int ret; |
Kay Sievers | 53877d0 | 2006-04-04 20:42:26 +0200 | [diff] [blame] | 513 | |
Alan Stern | 2023c61 | 2009-07-30 15:27:18 -0400 | [diff] [blame] | 514 | if (bus && bus->p->drivers_autoprobe) { |
| 515 | ret = device_attach(dev); |
Cornelia Huck | c6a4669 | 2007-02-05 16:15:26 -0800 | [diff] [blame] | 516 | WARN_ON(ret < 0); |
Kay Sievers | 53877d0 | 2006-04-04 20:42:26 +0200 | [diff] [blame] | 517 | } |
| 518 | } |
| 519 | |
| 520 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 521 | * bus_remove_device - remove device from bus |
| 522 | * @dev: device to be removed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 524 | * - Remove symlink from bus's directory. |
| 525 | * - Delete device from bus's list. |
| 526 | * - Detach from its driver. |
| 527 | * - Drop reference taken in bus_add_device(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 529 | void bus_remove_device(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | { |
| 531 | if (dev->bus) { |
Kay Sievers | b9d9c82 | 2006-06-15 15:31:56 +0200 | [diff] [blame] | 532 | sysfs_remove_link(&dev->kobj, "subsystem"); |
Kay Sievers | b9cafc7 | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 533 | remove_deprecated_bus_links(dev); |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 534 | sysfs_remove_link(&dev->bus->p->devices_kset->kobj, |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 535 | dev_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | device_remove_attrs(dev->bus, dev); |
Greg Kroah-Hartman | ae1b417 | 2008-12-16 12:26:21 -0800 | [diff] [blame] | 537 | if (klist_node_attached(&dev->p->knode_bus)) |
| 538 | klist_del(&dev->p->knode_bus); |
Greg Kroah-Hartman | 3f62e57 | 2008-03-13 17:07:03 -0400 | [diff] [blame] | 539 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 540 | pr_debug("bus: '%s': remove device %s\n", |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 541 | dev->bus->name, dev_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | device_release_driver(dev); |
Greg Kroah-Hartman | fc1ede5 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 543 | bus_put(dev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | } |
| 545 | } |
| 546 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 547 | static int driver_add_attrs(struct bus_type *bus, struct device_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | { |
| 549 | int error = 0; |
| 550 | int i; |
| 551 | |
| 552 | if (bus->drv_attrs) { |
| 553 | for (i = 0; attr_name(bus->drv_attrs[i]); i++) { |
| 554 | error = driver_create_file(drv, &bus->drv_attrs[i]); |
| 555 | if (error) |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 556 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | } |
| 558 | } |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 559 | done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | return error; |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 561 | err: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | while (--i >= 0) |
| 563 | driver_remove_file(drv, &bus->drv_attrs[i]); |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 564 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | } |
| 566 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 567 | static void driver_remove_attrs(struct bus_type *bus, |
| 568 | struct device_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | { |
| 570 | int i; |
| 571 | |
| 572 | if (bus->drv_attrs) { |
| 573 | for (i = 0; attr_name(bus->drv_attrs[i]); i++) |
| 574 | driver_remove_file(drv, &bus->drv_attrs[i]); |
| 575 | } |
| 576 | } |
| 577 | |
Greg Kroah-Hartman | 874c624 | 2005-12-13 15:17:34 -0800 | [diff] [blame] | 578 | #ifdef CONFIG_HOTPLUG |
| 579 | /* |
| 580 | * Thanks to drivers making their tables __devinit, we can't allow manual |
| 581 | * bind and unbind from userspace unless CONFIG_HOTPLUG is enabled. |
| 582 | */ |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 583 | static int __must_check add_bind_files(struct device_driver *drv) |
Greg Kroah-Hartman | 874c624 | 2005-12-13 15:17:34 -0800 | [diff] [blame] | 584 | { |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 585 | int ret; |
| 586 | |
| 587 | ret = driver_create_file(drv, &driver_attr_unbind); |
| 588 | if (ret == 0) { |
| 589 | ret = driver_create_file(drv, &driver_attr_bind); |
| 590 | if (ret) |
| 591 | driver_remove_file(drv, &driver_attr_unbind); |
| 592 | } |
| 593 | return ret; |
Greg Kroah-Hartman | 874c624 | 2005-12-13 15:17:34 -0800 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | static void remove_bind_files(struct device_driver *drv) |
| 597 | { |
| 598 | driver_remove_file(drv, &driver_attr_bind); |
| 599 | driver_remove_file(drv, &driver_attr_unbind); |
| 600 | } |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 601 | |
Kay Sievers | 8380770 | 2007-07-30 02:28:56 +0200 | [diff] [blame] | 602 | static BUS_ATTR(drivers_probe, S_IWUSR, NULL, store_drivers_probe); |
| 603 | static BUS_ATTR(drivers_autoprobe, S_IWUSR | S_IRUGO, |
| 604 | show_drivers_autoprobe, store_drivers_autoprobe); |
| 605 | |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 606 | static int add_probe_files(struct bus_type *bus) |
| 607 | { |
| 608 | int retval; |
| 609 | |
Kay Sievers | 8380770 | 2007-07-30 02:28:56 +0200 | [diff] [blame] | 610 | retval = bus_create_file(bus, &bus_attr_drivers_probe); |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 611 | if (retval) |
| 612 | goto out; |
| 613 | |
Kay Sievers | 8380770 | 2007-07-30 02:28:56 +0200 | [diff] [blame] | 614 | retval = bus_create_file(bus, &bus_attr_drivers_autoprobe); |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 615 | if (retval) |
Kay Sievers | 8380770 | 2007-07-30 02:28:56 +0200 | [diff] [blame] | 616 | bus_remove_file(bus, &bus_attr_drivers_probe); |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 617 | out: |
| 618 | return retval; |
| 619 | } |
| 620 | |
| 621 | static void remove_probe_files(struct bus_type *bus) |
| 622 | { |
Kay Sievers | 8380770 | 2007-07-30 02:28:56 +0200 | [diff] [blame] | 623 | bus_remove_file(bus, &bus_attr_drivers_autoprobe); |
| 624 | bus_remove_file(bus, &bus_attr_drivers_probe); |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 625 | } |
Greg Kroah-Hartman | 874c624 | 2005-12-13 15:17:34 -0800 | [diff] [blame] | 626 | #else |
Yoichi Yuasa | 35acfdd | 2006-07-15 01:30:11 +0900 | [diff] [blame] | 627 | static inline int add_bind_files(struct device_driver *drv) { return 0; } |
Greg Kroah-Hartman | 874c624 | 2005-12-13 15:17:34 -0800 | [diff] [blame] | 628 | static inline void remove_bind_files(struct device_driver *drv) {} |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 629 | static inline int add_probe_files(struct bus_type *bus) { return 0; } |
| 630 | static inline void remove_probe_files(struct bus_type *bus) {} |
Greg Kroah-Hartman | 874c624 | 2005-12-13 15:17:34 -0800 | [diff] [blame] | 631 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | |
Kay Sievers | 7ac1cf4 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 633 | static ssize_t driver_uevent_store(struct device_driver *drv, |
| 634 | const char *buf, size_t count) |
| 635 | { |
| 636 | enum kobject_action action; |
| 637 | |
| 638 | if (kobject_action_type(buf, count, &action) == 0) |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 639 | kobject_uevent(&drv->p->kobj, action); |
Kay Sievers | 7ac1cf4 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 640 | return count; |
| 641 | } |
| 642 | static DRIVER_ATTR(uevent, S_IWUSR, NULL, driver_uevent_store); |
| 643 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 645 | * bus_add_driver - Add a driver to the bus. |
| 646 | * @drv: driver. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | */ |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 648 | int bus_add_driver(struct device_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | { |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 650 | struct bus_type *bus; |
| 651 | struct driver_private *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | int error = 0; |
| 653 | |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 654 | bus = bus_get(drv->bus); |
Jeff Garzik | d9fd4d3b3 | 2006-10-04 07:48:03 -0400 | [diff] [blame] | 655 | if (!bus) |
Greg Kroah-Hartman | 4f6e194 | 2007-04-20 11:29:52 -0700 | [diff] [blame] | 656 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | |
Greg Kroah-Hartman | 7dc72b2 | 2007-11-28 23:49:41 -0800 | [diff] [blame] | 658 | pr_debug("bus: '%s': add driver %s\n", bus->name, drv->name); |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 659 | |
| 660 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); |
Cornelia Huck | 0763446 | 2008-02-18 17:04:25 +0100 | [diff] [blame] | 661 | if (!priv) { |
| 662 | error = -ENOMEM; |
| 663 | goto out_put_bus; |
| 664 | } |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 665 | klist_init(&priv->klist_devices, NULL, NULL); |
| 666 | priv->driver = drv; |
| 667 | drv->p = priv; |
Greg Kroah-Hartman | c8e90d8 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 668 | priv->kobj.kset = bus->p->drivers_kset; |
| 669 | error = kobject_init_and_add(&priv->kobj, &driver_ktype, NULL, |
| 670 | "%s", drv->name); |
Cornelia Huck | dc0afa8 | 2007-07-09 11:39:18 -0700 | [diff] [blame] | 671 | if (error) |
Cornelia Huck | 0763446 | 2008-02-18 17:04:25 +0100 | [diff] [blame] | 672 | goto out_unregister; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 674 | if (drv->bus->p->drivers_autoprobe) { |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 675 | error = driver_attach(drv); |
| 676 | if (error) |
| 677 | goto out_unregister; |
| 678 | } |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 679 | klist_add_tail(&priv->knode_bus, &bus->p->klist_drivers); |
Jeff Garzik | d9fd4d3b3 | 2006-10-04 07:48:03 -0400 | [diff] [blame] | 680 | module_add_driver(drv->owner, drv); |
| 681 | |
Kay Sievers | 7ac1cf4 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 682 | error = driver_create_file(drv, &driver_attr_uevent); |
| 683 | if (error) { |
| 684 | printk(KERN_ERR "%s: uevent attr (%s) failed\n", |
Harvey Harrison | 2b3a302 | 2008-03-04 16:41:05 -0800 | [diff] [blame] | 685 | __func__, drv->name); |
Kay Sievers | 7ac1cf4 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 686 | } |
Jeff Garzik | d9fd4d3b3 | 2006-10-04 07:48:03 -0400 | [diff] [blame] | 687 | error = driver_add_attrs(bus, drv); |
| 688 | if (error) { |
| 689 | /* How the hell do we get out of this pickle? Give up */ |
| 690 | printk(KERN_ERR "%s: driver_add_attrs(%s) failed\n", |
Harvey Harrison | 2b3a302 | 2008-03-04 16:41:05 -0800 | [diff] [blame] | 691 | __func__, drv->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | } |
Dmitry Torokhov | 1a6f2a7 | 2009-10-12 20:17:41 -0700 | [diff] [blame] | 693 | |
| 694 | if (!drv->suppress_bind_attrs) { |
| 695 | error = add_bind_files(drv); |
| 696 | if (error) { |
| 697 | /* Ditto */ |
| 698 | printk(KERN_ERR "%s: add_bind_files(%s) failed\n", |
| 699 | __func__, drv->name); |
| 700 | } |
Jeff Garzik | d9fd4d3b3 | 2006-10-04 07:48:03 -0400 | [diff] [blame] | 701 | } |
| 702 | |
Greg Kroah-Hartman | c8e90d8 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 703 | kobject_uevent(&priv->kobj, KOBJ_ADD); |
Kay Sievers | 5c8563d | 2009-05-28 14:24:07 -0700 | [diff] [blame] | 704 | return 0; |
Dmitry Torokhov | 1a6f2a7 | 2009-10-12 20:17:41 -0700 | [diff] [blame] | 705 | |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 706 | out_unregister: |
Phil Carmody | 99b28f1 | 2009-12-14 20:28:12 +0200 | [diff] [blame] | 707 | kobject_put(&priv->kobj); |
Kay Sievers | 5c8563d | 2009-05-28 14:24:07 -0700 | [diff] [blame] | 708 | kfree(drv->p); |
| 709 | drv->p = NULL; |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 710 | out_put_bus: |
Greg Kroah-Hartman | fc1ede5 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 711 | bus_put(bus); |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 712 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | } |
| 714 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 716 | * bus_remove_driver - delete driver from bus's knowledge. |
| 717 | * @drv: driver. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 719 | * Detach the driver from the devices it controls, and remove |
| 720 | * it from its bus's list of drivers. Finally, we drop the reference |
| 721 | * to the bus we took in bus_add_driver(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 723 | void bus_remove_driver(struct device_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | { |
Jeff Garzik | d9fd4d3b3 | 2006-10-04 07:48:03 -0400 | [diff] [blame] | 725 | if (!drv->bus) |
| 726 | return; |
| 727 | |
Dmitry Torokhov | 1a6f2a7 | 2009-10-12 20:17:41 -0700 | [diff] [blame] | 728 | if (!drv->suppress_bind_attrs) |
| 729 | remove_bind_files(drv); |
Jeff Garzik | d9fd4d3b3 | 2006-10-04 07:48:03 -0400 | [diff] [blame] | 730 | driver_remove_attrs(drv->bus, drv); |
Kay Sievers | 7ac1cf4 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 731 | driver_remove_file(drv, &driver_attr_uevent); |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 732 | klist_remove(&drv->p->knode_bus); |
Greg Kroah-Hartman | 7dc72b2 | 2007-11-28 23:49:41 -0800 | [diff] [blame] | 733 | pr_debug("bus: '%s': remove driver %s\n", drv->bus->name, drv->name); |
Jeff Garzik | d9fd4d3b3 | 2006-10-04 07:48:03 -0400 | [diff] [blame] | 734 | driver_detach(drv); |
| 735 | module_remove_driver(drv); |
Greg Kroah-Hartman | c10997f | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 736 | kobject_put(&drv->p->kobj); |
Greg Kroah-Hartman | fc1ede5 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 737 | bus_put(drv->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | } |
| 739 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | /* Helper for bus_rescan_devices's iter */ |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 741 | static int __must_check bus_rescan_devices_helper(struct device *dev, |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 742 | void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | { |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 744 | int ret = 0; |
| 745 | |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 746 | if (!dev->driver) { |
| 747 | if (dev->parent) /* Needed for USB */ |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 748 | device_lock(dev->parent); |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 749 | ret = device_attach(dev); |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 750 | if (dev->parent) |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 751 | device_unlock(dev->parent); |
Alan Stern | bf74ad5 | 2005-11-17 16:54:12 -0500 | [diff] [blame] | 752 | } |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 753 | return ret < 0 ? ret : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | } |
| 755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | /** |
Greg Kroah-Hartman | 23d3d60 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 757 | * bus_rescan_devices - rescan devices on the bus for possible drivers |
| 758 | * @bus: the bus to scan. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | * |
Greg Kroah-Hartman | 23d3d60 | 2005-06-22 16:09:05 -0700 | [diff] [blame] | 760 | * This function will look for devices on the bus with no driver |
| 761 | * attached and rescan it against existing drivers to see if it matches |
| 762 | * any by calling device_attach() for the unbound devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 764 | int bus_rescan_devices(struct bus_type *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | { |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 766 | return bus_for_each_dev(bus, NULL, NULL, bus_rescan_devices_helper); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | } |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 768 | EXPORT_SYMBOL_GPL(bus_rescan_devices); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
Moore, Eric | e935d5d | 2006-03-14 09:18:18 -0700 | [diff] [blame] | 770 | /** |
| 771 | * device_reprobe - remove driver for a device and probe for a new driver |
| 772 | * @dev: the device to reprobe |
| 773 | * |
| 774 | * This function detaches the attached driver (if any) for the given |
| 775 | * device and restarts the driver probing process. It is intended |
| 776 | * to use if probing criteria changed during a devices lifetime and |
| 777 | * driver attachment should change accordingly. |
| 778 | */ |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 779 | int device_reprobe(struct device *dev) |
Moore, Eric | e935d5d | 2006-03-14 09:18:18 -0700 | [diff] [blame] | 780 | { |
| 781 | if (dev->driver) { |
| 782 | if (dev->parent) /* Needed for USB */ |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 783 | device_lock(dev->parent); |
Moore, Eric | e935d5d | 2006-03-14 09:18:18 -0700 | [diff] [blame] | 784 | device_release_driver(dev); |
| 785 | if (dev->parent) |
Greg Kroah-Hartman | 8e9394c | 2010-02-17 10:57:05 -0800 | [diff] [blame] | 786 | device_unlock(dev->parent); |
Moore, Eric | e935d5d | 2006-03-14 09:18:18 -0700 | [diff] [blame] | 787 | } |
Andrew Morton | f86db39 | 2006-08-14 22:43:20 -0700 | [diff] [blame] | 788 | return bus_rescan_devices_helper(dev, NULL); |
Moore, Eric | e935d5d | 2006-03-14 09:18:18 -0700 | [diff] [blame] | 789 | } |
| 790 | EXPORT_SYMBOL_GPL(device_reprobe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 793 | * find_bus - locate bus by name. |
| 794 | * @name: name of bus. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 796 | * Call kset_find_obj() to iterate over list of buses to |
| 797 | * find a bus by name. Return bus if found. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 799 | * Note that kset_find_obj increments bus' reference count. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | */ |
Adrian Bunk | 7e4ef08 | 2006-06-26 22:26:56 +0200 | [diff] [blame] | 801 | #if 0 |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 802 | struct bus_type *find_bus(char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 804 | struct kobject *k = kset_find_obj(bus_kset, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | return k ? to_bus(k) : NULL; |
| 806 | } |
Adrian Bunk | 7e4ef08 | 2006-06-26 22:26:56 +0200 | [diff] [blame] | 807 | #endif /* 0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | |
| 809 | |
| 810 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 811 | * bus_add_attrs - Add default attributes for this bus. |
| 812 | * @bus: Bus that has just been registered. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | */ |
| 814 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 815 | static int bus_add_attrs(struct bus_type *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | { |
| 817 | int error = 0; |
| 818 | int i; |
| 819 | |
| 820 | if (bus->bus_attrs) { |
| 821 | for (i = 0; attr_name(bus->bus_attrs[i]); i++) { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 822 | error = bus_create_file(bus, &bus->bus_attrs[i]); |
Cornelia Huck | dc0afa8 | 2007-07-09 11:39:18 -0700 | [diff] [blame] | 823 | if (error) |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 824 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | } |
| 826 | } |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 827 | done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | return error; |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 829 | err: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | while (--i >= 0) |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 831 | bus_remove_file(bus, &bus->bus_attrs[i]); |
| 832 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | } |
| 834 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 835 | static void bus_remove_attrs(struct bus_type *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | { |
| 837 | int i; |
| 838 | |
| 839 | if (bus->bus_attrs) { |
| 840 | for (i = 0; attr_name(bus->bus_attrs[i]); i++) |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 841 | bus_remove_file(bus, &bus->bus_attrs[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | } |
| 843 | } |
| 844 | |
James Bottomley | 34bb61f | 2005-09-06 16:56:51 -0700 | [diff] [blame] | 845 | static void klist_devices_get(struct klist_node *n) |
| 846 | { |
Greg Kroah-Hartman | ae1b417 | 2008-12-16 12:26:21 -0800 | [diff] [blame] | 847 | struct device_private *dev_prv = to_device_private_bus(n); |
| 848 | struct device *dev = dev_prv->device; |
James Bottomley | 34bb61f | 2005-09-06 16:56:51 -0700 | [diff] [blame] | 849 | |
| 850 | get_device(dev); |
| 851 | } |
| 852 | |
| 853 | static void klist_devices_put(struct klist_node *n) |
| 854 | { |
Greg Kroah-Hartman | ae1b417 | 2008-12-16 12:26:21 -0800 | [diff] [blame] | 855 | struct device_private *dev_prv = to_device_private_bus(n); |
| 856 | struct device *dev = dev_prv->device; |
James Bottomley | 34bb61f | 2005-09-06 16:56:51 -0700 | [diff] [blame] | 857 | |
| 858 | put_device(dev); |
| 859 | } |
| 860 | |
Kay Sievers | 7ac1cf4 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 861 | static ssize_t bus_uevent_store(struct bus_type *bus, |
| 862 | const char *buf, size_t count) |
| 863 | { |
| 864 | enum kobject_action action; |
| 865 | |
| 866 | if (kobject_action_type(buf, count, &action) == 0) |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 867 | kobject_uevent(&bus->p->subsys.kobj, action); |
Kay Sievers | 7ac1cf4 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 868 | return count; |
| 869 | } |
| 870 | static BUS_ATTR(uevent, S_IWUSR, NULL, bus_uevent_store); |
| 871 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 873 | * bus_register - register a bus with the system. |
| 874 | * @bus: bus. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 876 | * Once we have that, we registered the bus with the kobject |
| 877 | * infrastructure, then register the children subsystems it has: |
| 878 | * the devices and drivers that belong to the bus. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 880 | int bus_register(struct bus_type *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | { |
| 882 | int retval; |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 883 | struct bus_type_private *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 885 | priv = kzalloc(sizeof(struct bus_type_private), GFP_KERNEL); |
| 886 | if (!priv) |
| 887 | return -ENOMEM; |
Benjamin Herrenschmidt | 116af37 | 2006-10-25 13:44:59 +1000 | [diff] [blame] | 888 | |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 889 | priv->bus = bus; |
| 890 | bus->p = priv; |
| 891 | |
| 892 | BLOCKING_INIT_NOTIFIER_HEAD(&priv->bus_notifier); |
| 893 | |
| 894 | retval = kobject_set_name(&priv->subsys.kobj, "%s", bus->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | if (retval) |
| 896 | goto out; |
| 897 | |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 898 | priv->subsys.kobj.kset = bus_kset; |
| 899 | priv->subsys.kobj.ktype = &bus_ktype; |
| 900 | priv->drivers_autoprobe = 1; |
Greg Kroah-Hartman | d6b05b8 | 2007-09-12 15:06:57 -0700 | [diff] [blame] | 901 | |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 902 | retval = kset_register(&priv->subsys); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | if (retval) |
| 904 | goto out; |
| 905 | |
Kay Sievers | 7ac1cf4 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 906 | retval = bus_create_file(bus, &bus_attr_uevent); |
| 907 | if (retval) |
| 908 | goto bus_uevent_fail; |
| 909 | |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 910 | priv->devices_kset = kset_create_and_add("devices", NULL, |
| 911 | &priv->subsys.kobj); |
| 912 | if (!priv->devices_kset) { |
Greg Kroah-Hartman | 3d89959 | 2007-11-01 13:31:26 -0700 | [diff] [blame] | 913 | retval = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | goto bus_devices_fail; |
Greg Kroah-Hartman | 3d89959 | 2007-11-01 13:31:26 -0700 | [diff] [blame] | 915 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 917 | priv->drivers_kset = kset_create_and_add("drivers", NULL, |
| 918 | &priv->subsys.kobj); |
| 919 | if (!priv->drivers_kset) { |
Greg Kroah-Hartman | 6dcec25 | 2007-11-01 13:31:26 -0700 | [diff] [blame] | 920 | retval = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | goto bus_drivers_fail; |
Greg Kroah-Hartman | 6dcec25 | 2007-11-01 13:31:26 -0700 | [diff] [blame] | 922 | } |
mochel@digitalimplant.org | 465c7a3 | 2005-03-21 11:49:14 -0800 | [diff] [blame] | 923 | |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 924 | klist_init(&priv->klist_devices, klist_devices_get, klist_devices_put); |
| 925 | klist_init(&priv->klist_drivers, NULL, NULL); |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 926 | |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 927 | retval = add_probe_files(bus); |
| 928 | if (retval) |
| 929 | goto bus_probe_files_fail; |
| 930 | |
Cornelia Huck | 1bb6881 | 2006-09-22 11:37:04 +0200 | [diff] [blame] | 931 | retval = bus_add_attrs(bus); |
| 932 | if (retval) |
| 933 | goto bus_attrs_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
Greg Kroah-Hartman | 7dc72b2 | 2007-11-28 23:49:41 -0800 | [diff] [blame] | 935 | pr_debug("bus: '%s': registered\n", bus->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | return 0; |
| 937 | |
Cornelia Huck | 1bb6881 | 2006-09-22 11:37:04 +0200 | [diff] [blame] | 938 | bus_attrs_fail: |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 939 | remove_probe_files(bus); |
| 940 | bus_probe_files_fail: |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 941 | kset_unregister(bus->p->drivers_kset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | bus_drivers_fail: |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 943 | kset_unregister(bus->p->devices_kset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | bus_devices_fail: |
Kay Sievers | 7ac1cf4 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 945 | bus_remove_file(bus, &bus_attr_uevent); |
| 946 | bus_uevent_fail: |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 947 | kset_unregister(&bus->p->subsys); |
| 948 | kfree(bus->p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | out: |
Dave Young | f48f3fe | 2009-02-14 21:23:22 +0800 | [diff] [blame] | 950 | bus->p = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | return retval; |
| 952 | } |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 953 | EXPORT_SYMBOL_GPL(bus_register); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 956 | * bus_unregister - remove a bus from the system |
| 957 | * @bus: bus. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 959 | * Unregister the child subsystems and the bus itself. |
| 960 | * Finally, we call bus_put() to release the refcount |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 962 | void bus_unregister(struct bus_type *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | { |
Greg Kroah-Hartman | 7dc72b2 | 2007-11-28 23:49:41 -0800 | [diff] [blame] | 964 | pr_debug("bus: '%s': unregistering\n", bus->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | bus_remove_attrs(bus); |
Kay Sievers | b8c5cec | 2007-02-16 17:33:36 +0100 | [diff] [blame] | 966 | remove_probe_files(bus); |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 967 | kset_unregister(bus->p->drivers_kset); |
| 968 | kset_unregister(bus->p->devices_kset); |
Kay Sievers | 7ac1cf4 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 969 | bus_remove_file(bus, &bus_attr_uevent); |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 970 | kset_unregister(&bus->p->subsys); |
| 971 | kfree(bus->p); |
Dave Young | f48f3fe | 2009-02-14 21:23:22 +0800 | [diff] [blame] | 972 | bus->p = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | } |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 974 | EXPORT_SYMBOL_GPL(bus_unregister); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | |
Benjamin Herrenschmidt | 116af37 | 2006-10-25 13:44:59 +1000 | [diff] [blame] | 976 | int bus_register_notifier(struct bus_type *bus, struct notifier_block *nb) |
| 977 | { |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 978 | return blocking_notifier_chain_register(&bus->p->bus_notifier, nb); |
Benjamin Herrenschmidt | 116af37 | 2006-10-25 13:44:59 +1000 | [diff] [blame] | 979 | } |
| 980 | EXPORT_SYMBOL_GPL(bus_register_notifier); |
| 981 | |
| 982 | int bus_unregister_notifier(struct bus_type *bus, struct notifier_block *nb) |
| 983 | { |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 984 | return blocking_notifier_chain_unregister(&bus->p->bus_notifier, nb); |
Benjamin Herrenschmidt | 116af37 | 2006-10-25 13:44:59 +1000 | [diff] [blame] | 985 | } |
| 986 | EXPORT_SYMBOL_GPL(bus_unregister_notifier); |
| 987 | |
Greg Kroah-Hartman | 0fed80f | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 988 | struct kset *bus_get_kset(struct bus_type *bus) |
| 989 | { |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 990 | return &bus->p->subsys; |
Greg Kroah-Hartman | 0fed80f | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 991 | } |
| 992 | EXPORT_SYMBOL_GPL(bus_get_kset); |
| 993 | |
Greg Kroah-Hartman | b249072 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 994 | struct klist *bus_get_device_klist(struct bus_type *bus) |
| 995 | { |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 996 | return &bus->p->klist_devices; |
Greg Kroah-Hartman | b249072 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 997 | } |
| 998 | EXPORT_SYMBOL_GPL(bus_get_device_klist); |
| 999 | |
Greg Kroah-Hartman | 99178b0 | 2008-08-26 11:00:57 -0500 | [diff] [blame] | 1000 | /* |
| 1001 | * Yes, this forcably breaks the klist abstraction temporarily. It |
| 1002 | * just wants to sort the klist, not change reference counts and |
| 1003 | * take/drop locks rapidly in the process. It does all this while |
| 1004 | * holding the lock for the list, so objects can't otherwise be |
| 1005 | * added/removed while we're swizzling. |
| 1006 | */ |
| 1007 | static void device_insertion_sort_klist(struct device *a, struct list_head *list, |
| 1008 | int (*compare)(const struct device *a, |
| 1009 | const struct device *b)) |
| 1010 | { |
| 1011 | struct list_head *pos; |
| 1012 | struct klist_node *n; |
Greg Kroah-Hartman | ae1b417 | 2008-12-16 12:26:21 -0800 | [diff] [blame] | 1013 | struct device_private *dev_prv; |
Greg Kroah-Hartman | 99178b0 | 2008-08-26 11:00:57 -0500 | [diff] [blame] | 1014 | struct device *b; |
| 1015 | |
| 1016 | list_for_each(pos, list) { |
| 1017 | n = container_of(pos, struct klist_node, n_node); |
Greg Kroah-Hartman | ae1b417 | 2008-12-16 12:26:21 -0800 | [diff] [blame] | 1018 | dev_prv = to_device_private_bus(n); |
| 1019 | b = dev_prv->device; |
Greg Kroah-Hartman | 99178b0 | 2008-08-26 11:00:57 -0500 | [diff] [blame] | 1020 | if (compare(a, b) <= 0) { |
Greg Kroah-Hartman | ae1b417 | 2008-12-16 12:26:21 -0800 | [diff] [blame] | 1021 | list_move_tail(&a->p->knode_bus.n_node, |
| 1022 | &b->p->knode_bus.n_node); |
Greg Kroah-Hartman | 99178b0 | 2008-08-26 11:00:57 -0500 | [diff] [blame] | 1023 | return; |
| 1024 | } |
| 1025 | } |
Greg Kroah-Hartman | ae1b417 | 2008-12-16 12:26:21 -0800 | [diff] [blame] | 1026 | list_move_tail(&a->p->knode_bus.n_node, list); |
Greg Kroah-Hartman | 99178b0 | 2008-08-26 11:00:57 -0500 | [diff] [blame] | 1027 | } |
| 1028 | |
| 1029 | void bus_sort_breadthfirst(struct bus_type *bus, |
| 1030 | int (*compare)(const struct device *a, |
| 1031 | const struct device *b)) |
| 1032 | { |
| 1033 | LIST_HEAD(sorted_devices); |
| 1034 | struct list_head *pos, *tmp; |
| 1035 | struct klist_node *n; |
Greg Kroah-Hartman | ae1b417 | 2008-12-16 12:26:21 -0800 | [diff] [blame] | 1036 | struct device_private *dev_prv; |
Greg Kroah-Hartman | 99178b0 | 2008-08-26 11:00:57 -0500 | [diff] [blame] | 1037 | struct device *dev; |
| 1038 | struct klist *device_klist; |
| 1039 | |
| 1040 | device_klist = bus_get_device_klist(bus); |
| 1041 | |
| 1042 | spin_lock(&device_klist->k_lock); |
| 1043 | list_for_each_safe(pos, tmp, &device_klist->k_list) { |
| 1044 | n = container_of(pos, struct klist_node, n_node); |
Greg Kroah-Hartman | ae1b417 | 2008-12-16 12:26:21 -0800 | [diff] [blame] | 1045 | dev_prv = to_device_private_bus(n); |
| 1046 | dev = dev_prv->device; |
Greg Kroah-Hartman | 99178b0 | 2008-08-26 11:00:57 -0500 | [diff] [blame] | 1047 | device_insertion_sort_klist(dev, &sorted_devices, compare); |
| 1048 | } |
| 1049 | list_splice(&sorted_devices, &device_klist->k_list); |
| 1050 | spin_unlock(&device_klist->k_lock); |
| 1051 | } |
| 1052 | EXPORT_SYMBOL_GPL(bus_sort_breadthfirst); |
| 1053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | int __init buses_init(void) |
| 1055 | { |
Greg Kroah-Hartman | 59a5483 | 2007-10-29 23:22:26 -0500 | [diff] [blame] | 1056 | bus_kset = kset_create_and_add("bus", &bus_uevent_ops, NULL); |
| 1057 | if (!bus_kset) |
| 1058 | return -ENOMEM; |
| 1059 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | } |