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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/string.h> |
Pavel Machek | 438510f | 2005-04-16 15:25:24 -0700 | [diff] [blame] | 21 | #include <linux/pm.h> |
Adrian Bunk | f67d115 | 2006-01-19 17:30:17 +0100 | [diff] [blame] | 22 | #include <linux/device.h> |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 23 | #include <linux/mutex.h> |
Rafael J. Wysocki | 2ed8d2b | 2009-03-16 22:34:06 +0100 | [diff] [blame] | 24 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Adrian Bunk | f67d115 | 2006-01-19 17:30:17 +0100 | [diff] [blame] | 26 | #include "base.h" |
| 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #define to_sysdev(k) container_of(k, struct sys_device, kobj) |
| 29 | #define to_sysdev_attr(a) container_of(a, struct sysdev_attribute, attr) |
| 30 | |
| 31 | |
| 32 | static ssize_t |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 33 | sysdev_show(struct kobject *kobj, struct attribute *attr, char *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 35 | struct sys_device *sysdev = to_sysdev(kobj); |
| 36 | struct sysdev_attribute *sysdev_attr = to_sysdev_attr(attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | if (sysdev_attr->show) |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 39 | return sysdev_attr->show(sysdev, sysdev_attr, buffer); |
Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 40 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | |
| 44 | static ssize_t |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 45 | sysdev_store(struct kobject *kobj, struct attribute *attr, |
| 46 | const char *buffer, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 48 | struct sys_device *sysdev = to_sysdev(kobj); |
| 49 | struct sysdev_attribute *sysdev_attr = to_sysdev_attr(attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | if (sysdev_attr->store) |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 52 | return sysdev_attr->store(sysdev, sysdev_attr, buffer, count); |
Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 53 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | } |
| 55 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 56 | static const struct sysfs_ops sysfs_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | .show = sysdev_show, |
| 58 | .store = sysdev_store, |
| 59 | }; |
| 60 | |
| 61 | static struct kobj_type ktype_sysdev = { |
| 62 | .sysfs_ops = &sysfs_ops, |
| 63 | }; |
| 64 | |
| 65 | |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 66 | int sysdev_create_file(struct sys_device *s, struct sysdev_attribute *a) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | { |
| 68 | return sysfs_create_file(&s->kobj, &a->attr); |
| 69 | } |
| 70 | |
| 71 | |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 72 | void sysdev_remove_file(struct sys_device *s, struct sysdev_attribute *a) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | { |
| 74 | sysfs_remove_file(&s->kobj, &a->attr); |
| 75 | } |
| 76 | |
| 77 | EXPORT_SYMBOL_GPL(sysdev_create_file); |
| 78 | EXPORT_SYMBOL_GPL(sysdev_remove_file); |
| 79 | |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 80 | #define to_sysdev_class(k) container_of(k, struct sysdev_class, kset.kobj) |
| 81 | #define to_sysdev_class_attr(a) container_of(a, \ |
| 82 | struct sysdev_class_attribute, attr) |
| 83 | |
| 84 | static ssize_t sysdev_class_show(struct kobject *kobj, struct attribute *attr, |
| 85 | char *buffer) |
| 86 | { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 87 | struct sysdev_class *class = to_sysdev_class(kobj); |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 88 | struct sysdev_class_attribute *class_attr = to_sysdev_class_attr(attr); |
| 89 | |
| 90 | if (class_attr->show) |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 91 | return class_attr->show(class, class_attr, buffer); |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 92 | return -EIO; |
| 93 | } |
| 94 | |
| 95 | static ssize_t sysdev_class_store(struct kobject *kobj, struct attribute *attr, |
| 96 | const char *buffer, size_t count) |
| 97 | { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 98 | struct sysdev_class *class = to_sysdev_class(kobj); |
| 99 | struct sysdev_class_attribute *class_attr = to_sysdev_class_attr(attr); |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 100 | |
| 101 | if (class_attr->store) |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 102 | return class_attr->store(class, class_attr, buffer, count); |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 103 | return -EIO; |
| 104 | } |
| 105 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 106 | static const struct sysfs_ops sysfs_class_ops = { |
Shaohua Li | 670dd90 | 2006-05-08 13:45:57 +0800 | [diff] [blame] | 107 | .show = sysdev_class_show, |
| 108 | .store = sysdev_class_store, |
| 109 | }; |
| 110 | |
| 111 | static struct kobj_type ktype_sysdev_class = { |
| 112 | .sysfs_ops = &sysfs_class_ops, |
| 113 | }; |
| 114 | |
| 115 | int sysdev_class_create_file(struct sysdev_class *c, |
| 116 | struct sysdev_class_attribute *a) |
| 117 | { |
| 118 | return sysfs_create_file(&c->kset.kobj, &a->attr); |
| 119 | } |
| 120 | EXPORT_SYMBOL_GPL(sysdev_class_create_file); |
| 121 | |
| 122 | void sysdev_class_remove_file(struct sysdev_class *c, |
| 123 | struct sysdev_class_attribute *a) |
| 124 | { |
| 125 | sysfs_remove_file(&c->kset.kobj, &a->attr); |
| 126 | } |
| 127 | EXPORT_SYMBOL_GPL(sysdev_class_remove_file); |
| 128 | |
Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 129 | static struct kset *system_kset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 131 | int sysdev_class_register(struct sysdev_class *cls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { |
Dave Young | 9227c47 | 2009-05-11 14:18:55 +0800 | [diff] [blame] | 133 | int retval; |
| 134 | |
Ben Dooks | 838ea8e | 2008-06-12 19:00:34 +0100 | [diff] [blame] | 135 | pr_debug("Registering sysdev class '%s'\n", cls->name); |
| 136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | INIT_LIST_HEAD(&cls->drivers); |
Greg Kroah-Hartman | ef79df2 | 2008-03-09 03:37:16 +0530 | [diff] [blame] | 138 | memset(&cls->kset.kobj, 0x00, sizeof(struct kobject)); |
Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 139 | cls->kset.kobj.parent = &system_kset->kobj; |
Greg Kroah-Hartman | 3514fac | 2007-10-16 10:11:44 -0600 | [diff] [blame] | 140 | cls->kset.kobj.ktype = &ktype_sysdev_class; |
Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 141 | cls->kset.kobj.kset = system_kset; |
Dave Young | 9227c47 | 2009-05-11 14:18:55 +0800 | [diff] [blame] | 142 | |
Greg Kroah-Hartman | acc0e90 | 2009-06-02 15:39:55 -0700 | [diff] [blame] | 143 | retval = kobject_set_name(&cls->kset.kobj, "%s", cls->name); |
Dave Young | 9227c47 | 2009-05-11 14:18:55 +0800 | [diff] [blame] | 144 | if (retval) |
| 145 | return retval; |
| 146 | |
Andi Kleen | 38457ab | 2010-01-05 12:48:02 +0100 | [diff] [blame] | 147 | retval = kset_register(&cls->kset); |
| 148 | if (!retval && cls->attrs) |
| 149 | retval = sysfs_create_files(&cls->kset.kobj, |
| 150 | (const struct attribute **)cls->attrs); |
| 151 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 154 | void sysdev_class_unregister(struct sysdev_class *cls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
| 156 | pr_debug("Unregistering sysdev class '%s'\n", |
| 157 | kobject_name(&cls->kset.kobj)); |
Andi Kleen | 38457ab | 2010-01-05 12:48:02 +0100 | [diff] [blame] | 158 | if (cls->attrs) |
| 159 | sysfs_remove_files(&cls->kset.kobj, |
| 160 | (const struct attribute **)cls->attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | kset_unregister(&cls->kset); |
| 162 | } |
| 163 | |
| 164 | EXPORT_SYMBOL_GPL(sysdev_class_register); |
| 165 | EXPORT_SYMBOL_GPL(sysdev_class_unregister); |
| 166 | |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 167 | static DEFINE_MUTEX(sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
Borislav Petkov | f4203e3 | 2011-02-01 17:19:56 +0100 | [diff] [blame] | 169 | /* |
| 170 | * @dev != NULL means that we're unwinding because some drv->add() |
| 171 | * failed for some reason. You need to grab sysdev_drivers_lock before |
| 172 | * calling this. |
| 173 | */ |
| 174 | static void __sysdev_driver_remove(struct sysdev_class *cls, |
| 175 | struct sysdev_driver *drv, |
| 176 | struct sys_device *from_dev) |
| 177 | { |
| 178 | struct sys_device *dev = from_dev; |
| 179 | |
| 180 | list_del_init(&drv->entry); |
| 181 | if (!cls) |
| 182 | return; |
| 183 | |
| 184 | if (!drv->remove) |
| 185 | goto kset_put; |
| 186 | |
| 187 | if (dev) |
| 188 | list_for_each_entry_continue_reverse(dev, &cls->kset.list, |
| 189 | kobj.entry) |
| 190 | drv->remove(dev); |
| 191 | else |
| 192 | list_for_each_entry(dev, &cls->kset.list, kobj.entry) |
| 193 | drv->remove(dev); |
| 194 | |
| 195 | kset_put: |
| 196 | kset_put(&cls->kset); |
| 197 | } |
| 198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | /** |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 200 | * sysdev_driver_register - Register auxiliary driver |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 201 | * @cls: Device class driver belongs to. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | * @drv: Driver. |
| 203 | * |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 204 | * @drv is inserted into @cls->drivers to be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | * called on each operation on devices of that class. The refcount |
| 206 | * of @cls is incremented. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | */ |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 208 | int sysdev_driver_register(struct sysdev_class *cls, struct sysdev_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | { |
Borislav Petkov | f4203e3 | 2011-02-01 17:19:56 +0100 | [diff] [blame] | 210 | struct sys_device *dev = NULL; |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 211 | int err = 0; |
| 212 | |
Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 213 | if (!cls) { |
Borislav Petkov | 345279b | 2011-02-01 17:19:57 +0100 | [diff] [blame] | 214 | WARN(1, KERN_WARNING "sysdev: invalid class passed to %s!\n", |
| 215 | __func__); |
Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 216 | return -EINVAL; |
| 217 | } |
| 218 | |
| 219 | /* 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] | 220 | if (drv->entry.next && !list_empty(&drv->entry)) |
| 221 | WARN(1, KERN_WARNING "sysdev: class %s: driver (%p) has already" |
Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 222 | " been registered to a class, something is wrong, but " |
| 223 | "will forge on!\n", cls->name, drv); |
Ben Dooks | da009f3 | 2008-03-04 15:09:06 -0800 | [diff] [blame] | 224 | |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 225 | mutex_lock(&sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | if (cls && kset_get(&cls->kset)) { |
| 227 | list_add_tail(&drv->entry, &cls->drivers); |
| 228 | |
| 229 | /* If devices of this class already exist, tell the driver */ |
| 230 | if (drv->add) { |
Borislav Petkov | f4203e3 | 2011-02-01 17:19:56 +0100 | [diff] [blame] | 231 | list_for_each_entry(dev, &cls->kset.list, kobj.entry) { |
| 232 | err = drv->add(dev); |
| 233 | if (err) |
| 234 | goto unwind; |
| 235 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | } |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 237 | } else { |
| 238 | err = -EINVAL; |
Arjan van de Ven | f810a5c | 2008-07-25 19:45:39 -0700 | [diff] [blame] | 239 | WARN(1, KERN_ERR "%s: invalid device class\n", __func__); |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 240 | } |
Borislav Petkov | f4203e3 | 2011-02-01 17:19:56 +0100 | [diff] [blame] | 241 | |
| 242 | goto unlock; |
| 243 | |
| 244 | unwind: |
| 245 | __sysdev_driver_remove(cls, drv, dev); |
| 246 | |
| 247 | unlock: |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 248 | mutex_unlock(&sysdev_drivers_lock); |
Akinobu Mita | 44b760a | 2007-08-19 16:51:14 +0900 | [diff] [blame] | 249 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
| 251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | /** |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 253 | * sysdev_driver_unregister - Remove an auxiliary driver. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | * @cls: Class driver belongs to. |
| 255 | * @drv: Driver. |
| 256 | */ |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 257 | void sysdev_driver_unregister(struct sysdev_class *cls, |
| 258 | struct sysdev_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | { |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 260 | mutex_lock(&sysdev_drivers_lock); |
Borislav Petkov | f4203e3 | 2011-02-01 17:19:56 +0100 | [diff] [blame] | 261 | __sysdev_driver_remove(cls, drv, NULL); |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 262 | mutex_unlock(&sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | EXPORT_SYMBOL_GPL(sysdev_driver_register); |
| 265 | EXPORT_SYMBOL_GPL(sysdev_driver_unregister); |
| 266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | /** |
| 268 | * sysdev_register - add a system device to the tree |
| 269 | * @sysdev: device in question |
| 270 | * |
| 271 | */ |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 272 | int sysdev_register(struct sys_device *sysdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | { |
| 274 | int error; |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 275 | struct sysdev_class *cls = sysdev->cls; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
| 277 | if (!cls) |
| 278 | return -EINVAL; |
| 279 | |
Ben Dooks | 838ea8e | 2008-06-12 19:00:34 +0100 | [diff] [blame] | 280 | pr_debug("Registering sys device of class '%s'\n", |
| 281 | kobject_name(&cls->kset.kobj)); |
Greg Kroah-Hartman | 61030bf | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 282 | |
Greg Kroah-Hartman | ef79df2 | 2008-03-09 03:37:16 +0530 | [diff] [blame] | 283 | /* initialize the kobject to 0, in case it had previously been used */ |
| 284 | memset(&sysdev->kobj, 0x00, sizeof(struct kobject)); |
| 285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | /* Make sure the kset is set */ |
| 287 | sysdev->kobj.kset = &cls->kset; |
| 288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | /* Register the object */ |
Greg Kroah-Hartman | 61030bf | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 290 | error = kobject_init_and_add(&sysdev->kobj, &ktype_sysdev, NULL, |
| 291 | "%s%d", kobject_name(&cls->kset.kobj), |
| 292 | sysdev->id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
| 294 | if (!error) { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 295 | struct sysdev_driver *drv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
Ben Dooks | 838ea8e | 2008-06-12 19:00:34 +0100 | [diff] [blame] | 297 | pr_debug("Registering sys device '%s'\n", |
| 298 | kobject_name(&sysdev->kobj)); |
| 299 | |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 300 | mutex_lock(&sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | /* Generic notification is implicit, because it's that |
| 302 | * code that should have called us. |
| 303 | */ |
| 304 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 305 | /* Notify class auxiliary drivers */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | list_for_each_entry(drv, &cls->drivers, entry) { |
| 307 | if (drv->add) |
| 308 | drv->add(sysdev); |
| 309 | } |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 310 | mutex_unlock(&sysdev_drivers_lock); |
Xiaotian Feng | 79f0313 | 2009-07-24 17:31:41 +0800 | [diff] [blame] | 311 | kobject_uevent(&sysdev->kobj, KOBJ_ADD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | } |
Ben Dooks | 838ea8e | 2008-06-12 19:00:34 +0100 | [diff] [blame] | 313 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | return error; |
| 315 | } |
| 316 | |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 317 | void sysdev_unregister(struct sys_device *sysdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | { |
Zhenwen Xu | 60530af | 2009-03-03 18:36:02 +0800 | [diff] [blame] | 319 | struct sysdev_driver *drv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 321 | mutex_lock(&sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | list_for_each_entry(drv, &sysdev->cls->drivers, entry) { |
| 323 | if (drv->remove) |
| 324 | drv->remove(sysdev); |
| 325 | } |
Matthias Kaehlcke | 9f3f776 | 2007-05-23 14:19:42 -0700 | [diff] [blame] | 326 | mutex_unlock(&sysdev_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
Greg Kroah-Hartman | c10997f | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 328 | kobject_put(&sysdev->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | } |
| 330 | |
Rafael J. Wysocki | 2e711c0 | 2011-04-26 19:15:07 +0200 | [diff] [blame] | 331 | EXPORT_SYMBOL_GPL(sysdev_register); |
| 332 | EXPORT_SYMBOL_GPL(sysdev_unregister); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
| 334 | int __init system_bus_init(void) |
| 335 | { |
Greg Kroah-Hartman | aade404 | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 336 | system_kset = kset_create_and_add("system", NULL, &devices_kset->kobj); |
| 337 | if (!system_kset) |
| 338 | return -ENOMEM; |
| 339 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | } |
| 341 | |
Andi Kleen | 9800794 | 2008-07-01 18:48:42 +0200 | [diff] [blame] | 342 | #define to_ext_attr(x) container_of(x, struct sysdev_ext_attribute, attr) |
| 343 | |
| 344 | ssize_t sysdev_store_ulong(struct sys_device *sysdev, |
| 345 | struct sysdev_attribute *attr, |
| 346 | const char *buf, size_t size) |
| 347 | { |
| 348 | struct sysdev_ext_attribute *ea = to_ext_attr(attr); |
| 349 | char *end; |
| 350 | unsigned long new = simple_strtoul(buf, &end, 0); |
| 351 | if (end == buf) |
| 352 | return -EINVAL; |
| 353 | *(unsigned long *)(ea->var) = new; |
Andi Kleen | 4e318d7 | 2008-10-13 12:03:03 +0200 | [diff] [blame] | 354 | /* Always return full write size even if we didn't consume all */ |
| 355 | return size; |
Andi Kleen | 9800794 | 2008-07-01 18:48:42 +0200 | [diff] [blame] | 356 | } |
| 357 | EXPORT_SYMBOL_GPL(sysdev_store_ulong); |
| 358 | |
| 359 | ssize_t sysdev_show_ulong(struct sys_device *sysdev, |
| 360 | struct sysdev_attribute *attr, |
| 361 | char *buf) |
| 362 | { |
| 363 | struct sysdev_ext_attribute *ea = to_ext_attr(attr); |
| 364 | return snprintf(buf, PAGE_SIZE, "%lx\n", *(unsigned long *)(ea->var)); |
| 365 | } |
| 366 | EXPORT_SYMBOL_GPL(sysdev_show_ulong); |
| 367 | |
| 368 | ssize_t sysdev_store_int(struct sys_device *sysdev, |
| 369 | struct sysdev_attribute *attr, |
| 370 | const char *buf, size_t size) |
| 371 | { |
| 372 | struct sysdev_ext_attribute *ea = to_ext_attr(attr); |
| 373 | char *end; |
| 374 | long new = simple_strtol(buf, &end, 0); |
| 375 | if (end == buf || new > INT_MAX || new < INT_MIN) |
| 376 | return -EINVAL; |
| 377 | *(int *)(ea->var) = new; |
Andi Kleen | 4e318d7 | 2008-10-13 12:03:03 +0200 | [diff] [blame] | 378 | /* Always return full write size even if we didn't consume all */ |
| 379 | return size; |
Andi Kleen | 9800794 | 2008-07-01 18:48:42 +0200 | [diff] [blame] | 380 | } |
| 381 | EXPORT_SYMBOL_GPL(sysdev_store_int); |
| 382 | |
| 383 | ssize_t sysdev_show_int(struct sys_device *sysdev, |
| 384 | struct sysdev_attribute *attr, |
| 385 | char *buf) |
| 386 | { |
| 387 | struct sysdev_ext_attribute *ea = to_ext_attr(attr); |
| 388 | return snprintf(buf, PAGE_SIZE, "%d\n", *(int *)(ea->var)); |
| 389 | } |
| 390 | EXPORT_SYMBOL_GPL(sysdev_show_int); |
| 391 | |