Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * sys.c - pseudo-bus for system 'devices' (cpus, PICs, timers, etc) |
| 3 | * |
| 4 | * Copyright (c) 2002-3 Patrick Mochel |
| 5 | * 2002-3 Open Source Development Lab |
| 6 | * |
| 7 | * This file is released under the GPLv2 |
| 8 | * |
| 9 | * This exports a 'system' bus type. |
| 10 | * By default, a 'sys' bus gets added to the root of the system. There will |
| 11 | * always be core system devices. Devices can use sysdev_register() to |
| 12 | * add themselves as children of the system bus. |
| 13 | */ |
| 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/sysdev.h> |
| 16 | #include <linux/err.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/slab.h> |
| 21 | #include <linux/string.h> |
Pavel Machek | 438510f | 2005-04-16 15:25:24 -0700 | [diff] [blame] | 22 | #include <linux/pm.h> |
Adrian Bunk | f67d115 | 2006-01-19 17:30:17 +0100 | [diff] [blame] | 23 | #include <linux/device.h> |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 24 | #include <linux/mutex.h> |
Rafael J. Wysocki | 2ed8d2b | 2009-03-16 22:34:06 +0100 | [diff] [blame] | 25 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Adrian Bunk | f67d115 | 2006-01-19 17:30:17 +0100 | [diff] [blame] | 27 | #include "base.h" |
| 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #define to_sysdev(k) container_of(k, struct sys_device, kobj) |
| 30 | #define to_sysdev_attr(a) container_of(a, struct sysdev_attribute, attr) |
| 31 | |
| 32 | |
| 33 | static ssize_t |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 34 | sysdev_show(struct kobject *kobj, struct attribute *attr, char *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 36 | struct sys_device *sysdev = to_sysdev(kobj); |
| 37 | struct sysdev_attribute *sysdev_attr = to_sysdev_attr(attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | if (sysdev_attr->show) |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 40 | return sysdev_attr->show(sysdev, sysdev_attr, buffer); |
Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 41 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | |
| 45 | static ssize_t |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 46 | sysdev_store(struct kobject *kobj, struct attribute *attr, |
| 47 | const char *buffer, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 49 | struct sys_device *sysdev = to_sysdev(kobj); |
| 50 | struct sysdev_attribute *sysdev_attr = to_sysdev_attr(attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | if (sysdev_attr->store) |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 53 | return sysdev_attr->store(sysdev, sysdev_attr, buffer, count); |
Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 54 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | static struct sysfs_ops sysfs_ops = { |
| 58 | .show = sysdev_show, |
| 59 | .store = sysdev_store, |
| 60 | }; |
| 61 | |
| 62 | static struct kobj_type ktype_sysdev = { |
| 63 | .sysfs_ops = &sysfs_ops, |
| 64 | }; |
| 65 | |
| 66 | |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 67 | int sysdev_create_file(struct sys_device *s, struct sysdev_attribute *a) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
| 69 | return sysfs_create_file(&s->kobj, &a->attr); |
| 70 | } |
| 71 | |
| 72 | |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 73 | void sysdev_remove_file(struct sys_device *s, struct sysdev_attribute *a) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
| 75 | sysfs_remove_file(&s->kobj, &a->attr); |
| 76 | } |
| 77 | |
| 78 | EXPORT_SYMBOL_GPL(sysdev_create_file); |
| 79 | EXPORT_SYMBOL_GPL(sysdev_remove_file); |
| 80 | |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 81 | #define to_sysdev_class(k) container_of(k, struct sysdev_class, kset.kobj) |
| 82 | #define to_sysdev_class_attr(a) container_of(a, \ |
| 83 | struct sysdev_class_attribute, attr) |
| 84 | |
| 85 | static ssize_t sysdev_class_show(struct kobject *kobj, struct attribute *attr, |
| 86 | char *buffer) |
| 87 | { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 88 | struct sysdev_class *class = to_sysdev_class(kobj); |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 89 | struct sysdev_class_attribute *class_attr = to_sysdev_class_attr(attr); |
| 90 | |
| 91 | if (class_attr->show) |
| 92 | return class_attr->show(class, buffer); |
| 93 | return -EIO; |
| 94 | } |
| 95 | |
| 96 | static ssize_t sysdev_class_store(struct kobject *kobj, struct attribute *attr, |
| 97 | const char *buffer, size_t count) |
| 98 | { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 99 | struct sysdev_class *class = to_sysdev_class(kobj); |
| 100 | struct sysdev_class_attribute *class_attr = to_sysdev_class_attr(attr); |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 101 | |
| 102 | if (class_attr->store) |
| 103 | return class_attr->store(class, buffer, count); |
| 104 | return -EIO; |
| 105 | } |
| 106 | |
| 107 | static struct sysfs_ops sysfs_class_ops = { |
| 108 | .show = sysdev_class_show, |
| 109 | .store = sysdev_class_store, |
| 110 | }; |
| 111 | |
| 112 | static struct kobj_type ktype_sysdev_class = { |
| 113 | .sysfs_ops = &sysfs_class_ops, |
| 114 | }; |
| 115 | |
| 116 | int sysdev_class_create_file(struct sysdev_class *c, |
| 117 | struct sysdev_class_attribute *a) |
| 118 | { |
| 119 | return sysfs_create_file(&c->kset.kobj, &a->attr); |
| 120 | } |
| 121 | EXPORT_SYMBOL_GPL(sysdev_class_create_file); |
| 122 | |
| 123 | void sysdev_class_remove_file(struct sysdev_class *c, |
| 124 | struct sysdev_class_attribute *a) |
| 125 | { |
| 126 | sysfs_remove_file(&c->kset.kobj, &a->attr); |
| 127 | } |
| 128 | EXPORT_SYMBOL_GPL(sysdev_class_remove_file); |
| 129 | |
Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 130 | static struct kset *system_kset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 132 | int sysdev_class_register(struct sysdev_class *cls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | { |
Ben Dooks | 838ea8e | 2008-06-12 19:00:34 +0100 | [diff] [blame] | 134 | pr_debug("Registering sysdev class '%s'\n", cls->name); |
| 135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | INIT_LIST_HEAD(&cls->drivers); |
Greg Kroah-Hartman | ef79df2 | 2008-03-09 03:37:16 +0530 | [diff] [blame] | 137 | memset(&cls->kset.kobj, 0x00, sizeof(struct kobject)); |
Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 138 | cls->kset.kobj.parent = &system_kset->kobj; |
Greg Kroah-Hartman | 3514fac | 2007-10-16 10:11:44 -0600 | [diff] [blame] | 139 | cls->kset.kobj.ktype = &ktype_sysdev_class; |
Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 140 | cls->kset.kobj.kset = system_kset; |
Kay Sievers | af5ca3f | 2007-12-20 02:09:39 +0100 | [diff] [blame] | 141 | kobject_set_name(&cls->kset.kobj, cls->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | return kset_register(&cls->kset); |
| 143 | } |
| 144 | |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 145 | void sysdev_class_unregister(struct sysdev_class *cls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | { |
| 147 | pr_debug("Unregistering sysdev class '%s'\n", |
| 148 | kobject_name(&cls->kset.kobj)); |
| 149 | kset_unregister(&cls->kset); |
| 150 | } |
| 151 | |
| 152 | EXPORT_SYMBOL_GPL(sysdev_class_register); |
| 153 | EXPORT_SYMBOL_GPL(sysdev_class_unregister); |
| 154 | |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 155 | static DEFINE_MUTEX(sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
| 157 | /** |
| 158 | * sysdev_driver_register - Register auxillary driver |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 159 | * @cls: Device class driver belongs to. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | * @drv: Driver. |
| 161 | * |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 162 | * @drv is inserted into @cls->drivers to be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | * called on each operation on devices of that class. The refcount |
| 164 | * of @cls is incremented. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | */ |
| 166 | |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 167 | int sysdev_driver_register(struct sysdev_class *cls, struct sysdev_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | { |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 169 | int err = 0; |
| 170 | |
Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 171 | if (!cls) { |
Arjan van de Ven | f810a5c | 2008-07-25 19:45:39 -0700 | [diff] [blame] | 172 | WARN(1, KERN_WARNING "sysdev: invalid class passed to " |
Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 173 | "sysdev_driver_register!\n"); |
Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 174 | return -EINVAL; |
| 175 | } |
| 176 | |
| 177 | /* Check whether this driver has already been added to a class. */ |
Arjan van de Ven | f810a5c | 2008-07-25 19:45:39 -0700 | [diff] [blame] | 178 | if (drv->entry.next && !list_empty(&drv->entry)) |
| 179 | WARN(1, KERN_WARNING "sysdev: class %s: driver (%p) has already" |
Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 180 | " been registered to a class, something is wrong, but " |
| 181 | "will forge on!\n", cls->name, drv); |
Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 182 | |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 183 | mutex_lock(&sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | if (cls && kset_get(&cls->kset)) { |
| 185 | list_add_tail(&drv->entry, &cls->drivers); |
| 186 | |
| 187 | /* If devices of this class already exist, tell the driver */ |
| 188 | if (drv->add) { |
| 189 | struct sys_device *dev; |
| 190 | list_for_each_entry(dev, &cls->kset.list, kobj.entry) |
| 191 | drv->add(dev); |
| 192 | } |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 193 | } else { |
| 194 | err = -EINVAL; |
Arjan van de Ven | f810a5c | 2008-07-25 19:45:39 -0700 | [diff] [blame] | 195 | WARN(1, KERN_ERR "%s: invalid device class\n", __func__); |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 196 | } |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 197 | mutex_unlock(&sysdev_drivers_lock); |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 198 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | |
| 202 | /** |
| 203 | * sysdev_driver_unregister - Remove an auxillary driver. |
| 204 | * @cls: Class driver belongs to. |
| 205 | * @drv: Driver. |
| 206 | */ |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 207 | void sysdev_driver_unregister(struct sysdev_class *cls, |
| 208 | struct sysdev_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | { |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 210 | mutex_lock(&sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | list_del_init(&drv->entry); |
| 212 | if (cls) { |
| 213 | if (drv->remove) { |
| 214 | struct sys_device *dev; |
| 215 | list_for_each_entry(dev, &cls->kset.list, kobj.entry) |
| 216 | drv->remove(dev); |
| 217 | } |
| 218 | kset_put(&cls->kset); |
| 219 | } |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 220 | mutex_unlock(&sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | EXPORT_SYMBOL_GPL(sysdev_driver_register); |
| 224 | EXPORT_SYMBOL_GPL(sysdev_driver_unregister); |
| 225 | |
| 226 | |
| 227 | |
| 228 | /** |
| 229 | * sysdev_register - add a system device to the tree |
| 230 | * @sysdev: device in question |
| 231 | * |
| 232 | */ |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 233 | int sysdev_register(struct sys_device *sysdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | { |
| 235 | int error; |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 236 | struct sysdev_class *cls = sysdev->cls; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
| 238 | if (!cls) |
| 239 | return -EINVAL; |
| 240 | |
Ben Dooks | 838ea8e | 2008-06-12 19:00:34 +0100 | [diff] [blame] | 241 | pr_debug("Registering sys device of class '%s'\n", |
| 242 | kobject_name(&cls->kset.kobj)); |
Greg Kroah-Hartman | 61030bf | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 243 | |
Greg Kroah-Hartman | ef79df2 | 2008-03-09 03:37:16 +0530 | [diff] [blame] | 244 | /* initialize the kobject to 0, in case it had previously been used */ |
| 245 | memset(&sysdev->kobj, 0x00, sizeof(struct kobject)); |
| 246 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | /* Make sure the kset is set */ |
| 248 | sysdev->kobj.kset = &cls->kset; |
| 249 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | /* Register the object */ |
Greg Kroah-Hartman | 61030bf | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 251 | error = kobject_init_and_add(&sysdev->kobj, &ktype_sysdev, NULL, |
| 252 | "%s%d", kobject_name(&cls->kset.kobj), |
| 253 | sysdev->id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
| 255 | if (!error) { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 256 | struct sysdev_driver *drv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
Ben Dooks | 838ea8e | 2008-06-12 19:00:34 +0100 | [diff] [blame] | 258 | pr_debug("Registering sys device '%s'\n", |
| 259 | kobject_name(&sysdev->kobj)); |
| 260 | |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 261 | mutex_lock(&sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | /* Generic notification is implicit, because it's that |
| 263 | * code that should have called us. |
| 264 | */ |
| 265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | /* Notify class auxillary drivers */ |
| 267 | list_for_each_entry(drv, &cls->drivers, entry) { |
| 268 | if (drv->add) |
| 269 | drv->add(sysdev); |
| 270 | } |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 271 | mutex_unlock(&sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
Ben Dooks | 838ea8e | 2008-06-12 19:00:34 +0100 | [diff] [blame] | 273 | |
Greg Kroah-Hartman | 61030bf | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 274 | kobject_uevent(&sysdev->kobj, KOBJ_ADD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | return error; |
| 276 | } |
| 277 | |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 278 | void sysdev_unregister(struct sys_device *sysdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 280 | struct sysdev_driver *drv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 282 | mutex_lock(&sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | list_for_each_entry(drv, &sysdev->cls->drivers, entry) { |
| 284 | if (drv->remove) |
| 285 | drv->remove(sysdev); |
| 286 | } |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 287 | mutex_unlock(&sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | |
Greg Kroah-Hartman | c10997f | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 289 | kobject_put(&sysdev->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | |
| 293 | |
| 294 | /** |
| 295 | * sysdev_shutdown - Shut down all system devices. |
| 296 | * |
| 297 | * Loop over each class of system devices, and the devices in each |
| 298 | * of those classes. For each device, we call the shutdown method for |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 299 | * each driver registered for the device - the auxillaries, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | * and the class driver. |
| 301 | * |
| 302 | * Note: The list is iterated in reverse order, so that we shut down |
| 303 | * child devices before we shut down thier parents. The list ordering |
| 304 | * is guaranteed by virtue of the fact that child devices are registered |
| 305 | * after their parents. |
| 306 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | void sysdev_shutdown(void) |
| 308 | { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 309 | struct sysdev_class *cls; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
| 311 | pr_debug("Shutting Down System Devices\n"); |
| 312 | |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 313 | mutex_lock(&sysdev_drivers_lock); |
Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 314 | list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 315 | struct sys_device *sysdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
| 317 | pr_debug("Shutting down type '%s':\n", |
| 318 | kobject_name(&cls->kset.kobj)); |
| 319 | |
| 320 | list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 321 | struct sysdev_driver *drv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | pr_debug(" %s\n", kobject_name(&sysdev->kobj)); |
| 323 | |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 324 | /* Call auxillary drivers first */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | list_for_each_entry(drv, &cls->drivers, entry) { |
| 326 | if (drv->shutdown) |
| 327 | drv->shutdown(sysdev); |
| 328 | } |
| 329 | |
| 330 | /* Now call the generic one */ |
| 331 | if (cls->shutdown) |
| 332 | cls->shutdown(sysdev); |
| 333 | } |
| 334 | } |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 335 | mutex_unlock(&sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | } |
| 337 | |
Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 338 | static void __sysdev_resume(struct sys_device *dev) |
| 339 | { |
| 340 | struct sysdev_class *cls = dev->cls; |
| 341 | struct sysdev_driver *drv; |
| 342 | |
| 343 | /* First, call the class-specific one */ |
| 344 | if (cls->resume) |
| 345 | cls->resume(dev); |
| 346 | |
| 347 | /* Call auxillary drivers next. */ |
| 348 | list_for_each_entry(drv, &cls->drivers, entry) { |
| 349 | if (drv->resume) |
| 350 | drv->resume(dev); |
| 351 | } |
Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 352 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
| 354 | /** |
| 355 | * sysdev_suspend - Suspend all system devices. |
| 356 | * @state: Power state to enter. |
| 357 | * |
Qinghuang Feng | 6515136 | 2008-10-13 18:05:04 +0800 | [diff] [blame] | 358 | * We perform an almost identical operation as sysdev_shutdown() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | * above, though calling ->suspend() instead. Interrupts are disabled |
| 360 | * when this called. Devices are responsible for both saving state and |
| 361 | * quiescing or powering down the device. |
| 362 | * |
| 363 | * This is only called by the device PM core, so we let them handle |
| 364 | * all synchronization. |
| 365 | */ |
Pavel Machek | 438510f | 2005-04-16 15:25:24 -0700 | [diff] [blame] | 366 | int sysdev_suspend(pm_message_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 368 | struct sysdev_class *cls; |
Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 369 | struct sys_device *sysdev, *err_dev; |
| 370 | struct sysdev_driver *drv, *err_drv; |
| 371 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | |
Rafael J. Wysocki | 2ed8d2b | 2009-03-16 22:34:06 +0100 | [diff] [blame] | 373 | pr_debug("Checking wake-up interrupts\n"); |
| 374 | |
| 375 | /* Return error code if there are any wake-up interrupts pending */ |
| 376 | ret = check_wakeup_irqs(); |
| 377 | if (ret) |
| 378 | return ret; |
| 379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | pr_debug("Suspending System Devices\n"); |
| 381 | |
Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 382 | list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | pr_debug("Suspending type '%s':\n", |
| 384 | kobject_name(&cls->kset.kobj)); |
| 385 | |
| 386 | list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | pr_debug(" %s\n", kobject_name(&sysdev->kobj)); |
| 388 | |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 389 | /* Call auxillary drivers first */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | list_for_each_entry(drv, &cls->drivers, entry) { |
Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 391 | if (drv->suspend) { |
| 392 | ret = drv->suspend(sysdev, state); |
| 393 | if (ret) |
| 394 | goto aux_driver; |
| 395 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | /* Now call the generic one */ |
Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 399 | if (cls->suspend) { |
| 400 | ret = cls->suspend(sysdev, state); |
| 401 | if (ret) |
| 402 | goto cls_driver; |
| 403 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | } |
| 405 | } |
| 406 | return 0; |
Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 407 | /* resume current sysdev */ |
| 408 | cls_driver: |
| 409 | drv = NULL; |
| 410 | printk(KERN_ERR "Class suspend failed for %s\n", |
| 411 | kobject_name(&sysdev->kobj)); |
| 412 | |
| 413 | aux_driver: |
| 414 | if (drv) |
| 415 | printk(KERN_ERR "Class driver suspend failed for %s\n", |
| 416 | kobject_name(&sysdev->kobj)); |
| 417 | list_for_each_entry(err_drv, &cls->drivers, entry) { |
| 418 | if (err_drv == drv) |
| 419 | break; |
| 420 | if (err_drv->resume) |
| 421 | err_drv->resume(sysdev); |
| 422 | } |
Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 423 | |
Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 424 | /* resume other sysdevs in current class */ |
| 425 | list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) { |
| 426 | if (err_dev == sysdev) |
| 427 | break; |
| 428 | pr_debug(" %s\n", kobject_name(&err_dev->kobj)); |
| 429 | __sysdev_resume(err_dev); |
| 430 | } |
| 431 | |
| 432 | /* resume other classes */ |
Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 433 | list_for_each_entry_continue(cls, &system_kset->list, kset.kobj.entry) { |
Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 434 | list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) { |
| 435 | pr_debug(" %s\n", kobject_name(&err_dev->kobj)); |
| 436 | __sysdev_resume(err_dev); |
| 437 | } |
| 438 | } |
| 439 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
Ingo Molnar | 0f99fed | 2009-02-22 22:07:03 +0100 | [diff] [blame] | 441 | EXPORT_SYMBOL_GPL(sysdev_suspend); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
| 443 | /** |
| 444 | * sysdev_resume - Bring system devices back to life. |
| 445 | * |
Qinghuang Feng | 6515136 | 2008-10-13 18:05:04 +0800 | [diff] [blame] | 446 | * Similar to sysdev_suspend(), but we iterate the list forwards |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | * to guarantee that parent devices are resumed before their children. |
| 448 | * |
| 449 | * Note: Interrupts are disabled when called. |
| 450 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | int sysdev_resume(void) |
| 452 | { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 453 | struct sysdev_class *cls; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | |
| 455 | pr_debug("Resuming System Devices\n"); |
| 456 | |
Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 457 | list_for_each_entry(cls, &system_kset->list, kset.kobj.entry) { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 458 | struct sys_device *sysdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | |
| 460 | pr_debug("Resuming type '%s':\n", |
| 461 | kobject_name(&cls->kset.kobj)); |
| 462 | |
| 463 | list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | pr_debug(" %s\n", kobject_name(&sysdev->kobj)); |
| 465 | |
Shaohua Li | ceaeade | 2005-08-11 10:37:39 +0800 | [diff] [blame] | 466 | __sysdev_resume(sysdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | } |
| 468 | } |
| 469 | return 0; |
| 470 | } |
Ingo Molnar | 0f99fed | 2009-02-22 22:07:03 +0100 | [diff] [blame] | 471 | EXPORT_SYMBOL_GPL(sysdev_resume); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
| 473 | int __init system_bus_init(void) |
| 474 | { |
Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 475 | system_kset = kset_create_and_add("system", NULL, &devices_kset->kobj); |
| 476 | if (!system_kset) |
| 477 | return -ENOMEM; |
| 478 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | } |
| 480 | |
| 481 | EXPORT_SYMBOL_GPL(sysdev_register); |
| 482 | EXPORT_SYMBOL_GPL(sysdev_unregister); |
Andi Kleen | 9800794 | 2008-07-01 18:48:42 +0200 | [diff] [blame] | 483 | |
| 484 | #define to_ext_attr(x) container_of(x, struct sysdev_ext_attribute, attr) |
| 485 | |
| 486 | ssize_t sysdev_store_ulong(struct sys_device *sysdev, |
| 487 | struct sysdev_attribute *attr, |
| 488 | const char *buf, size_t size) |
| 489 | { |
| 490 | struct sysdev_ext_attribute *ea = to_ext_attr(attr); |
| 491 | char *end; |
| 492 | unsigned long new = simple_strtoul(buf, &end, 0); |
| 493 | if (end == buf) |
| 494 | return -EINVAL; |
| 495 | *(unsigned long *)(ea->var) = new; |
Andi Kleen | 4e318d7 | 2008-10-13 12:03:03 +0200 | [diff] [blame] | 496 | /* Always return full write size even if we didn't consume all */ |
| 497 | return size; |
Andi Kleen | 9800794 | 2008-07-01 18:48:42 +0200 | [diff] [blame] | 498 | } |
| 499 | EXPORT_SYMBOL_GPL(sysdev_store_ulong); |
| 500 | |
| 501 | ssize_t sysdev_show_ulong(struct sys_device *sysdev, |
| 502 | struct sysdev_attribute *attr, |
| 503 | char *buf) |
| 504 | { |
| 505 | struct sysdev_ext_attribute *ea = to_ext_attr(attr); |
| 506 | return snprintf(buf, PAGE_SIZE, "%lx\n", *(unsigned long *)(ea->var)); |
| 507 | } |
| 508 | EXPORT_SYMBOL_GPL(sysdev_show_ulong); |
| 509 | |
| 510 | ssize_t sysdev_store_int(struct sys_device *sysdev, |
| 511 | struct sysdev_attribute *attr, |
| 512 | const char *buf, size_t size) |
| 513 | { |
| 514 | struct sysdev_ext_attribute *ea = to_ext_attr(attr); |
| 515 | char *end; |
| 516 | long new = simple_strtol(buf, &end, 0); |
| 517 | if (end == buf || new > INT_MAX || new < INT_MIN) |
| 518 | return -EINVAL; |
| 519 | *(int *)(ea->var) = new; |
Andi Kleen | 4e318d7 | 2008-10-13 12:03:03 +0200 | [diff] [blame] | 520 | /* Always return full write size even if we didn't consume all */ |
| 521 | return size; |
Andi Kleen | 9800794 | 2008-07-01 18:48:42 +0200 | [diff] [blame] | 522 | } |
| 523 | EXPORT_SYMBOL_GPL(sysdev_store_int); |
| 524 | |
| 525 | ssize_t sysdev_show_int(struct sys_device *sysdev, |
| 526 | struct sysdev_attribute *attr, |
| 527 | char *buf) |
| 528 | { |
| 529 | struct sysdev_ext_attribute *ea = to_ext_attr(attr); |
| 530 | return snprintf(buf, PAGE_SIZE, "%d\n", *(int *)(ea->var)); |
| 531 | } |
| 532 | EXPORT_SYMBOL_GPL(sysdev_show_int); |
| 533 | |