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