blob: 35e09f092bd94dd65651cba845ce81d5a4d95fc5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070015#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 Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/string.h>
Pavel Machek438510f2005-04-16 15:25:24 -070021#include <linux/pm.h>
Adrian Bunkf67d1152006-01-19 17:30:17 +010022#include <linux/device.h>
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -070023#include <linux/mutex.h>
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +010024#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Adrian Bunkf67d1152006-01-19 17:30:17 +010026#include "base.h"
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#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 Mucklef132c6c2012-06-06 18:30:57 -070031extern struct kset *system_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33static ssize_t
Zhenwen Xu60530af2009-03-03 18:36:02 +080034sysdev_show(struct kobject *kobj, struct attribute *attr, char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Zhenwen Xu60530af2009-03-03 18:36:02 +080036 struct sys_device *sysdev = to_sysdev(kobj);
37 struct sysdev_attribute *sysdev_attr = to_sysdev_attr(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39 if (sysdev_attr->show)
Andi Kleen4a0b2b42008-07-01 18:48:41 +020040 return sysdev_attr->show(sysdev, sysdev_attr, buffer);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050041 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042}
43
44
45static ssize_t
Zhenwen Xu60530af2009-03-03 18:36:02 +080046sysdev_store(struct kobject *kobj, struct attribute *attr,
47 const char *buffer, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
Zhenwen Xu60530af2009-03-03 18:36:02 +080049 struct sys_device *sysdev = to_sysdev(kobj);
50 struct sysdev_attribute *sysdev_attr = to_sysdev_attr(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 if (sysdev_attr->store)
Andi Kleen4a0b2b42008-07-01 18:48:41 +020053 return sysdev_attr->store(sysdev, sysdev_attr, buffer, count);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050054 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
Emese Revfy52cf25d2010-01-19 02:58:23 +010057static const struct sysfs_ops sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 .show = sysdev_show,
59 .store = sysdev_store,
60};
61
62static struct kobj_type ktype_sysdev = {
63 .sysfs_ops = &sysfs_ops,
64};
65
66
Zhenwen Xu60530af2009-03-03 18:36:02 +080067int sysdev_create_file(struct sys_device *s, struct sysdev_attribute *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 return sysfs_create_file(&s->kobj, &a->attr);
70}
71
72
Zhenwen Xu60530af2009-03-03 18:36:02 +080073void sysdev_remove_file(struct sys_device *s, struct sysdev_attribute *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 sysfs_remove_file(&s->kobj, &a->attr);
76}
77
78EXPORT_SYMBOL_GPL(sysdev_create_file);
79EXPORT_SYMBOL_GPL(sysdev_remove_file);
80
Shaohua Li670dd902006-05-08 13:45:57 +080081#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
85static ssize_t sysdev_class_show(struct kobject *kobj, struct attribute *attr,
86 char *buffer)
87{
Zhenwen Xu60530af2009-03-03 18:36:02 +080088 struct sysdev_class *class = to_sysdev_class(kobj);
Shaohua Li670dd902006-05-08 13:45:57 +080089 struct sysdev_class_attribute *class_attr = to_sysdev_class_attr(attr);
90
91 if (class_attr->show)
Andi Kleenc9be0a32010-01-05 12:47:58 +010092 return class_attr->show(class, class_attr, buffer);
Shaohua Li670dd902006-05-08 13:45:57 +080093 return -EIO;
94}
95
96static ssize_t sysdev_class_store(struct kobject *kobj, struct attribute *attr,
97 const char *buffer, size_t count)
98{
Zhenwen Xu60530af2009-03-03 18:36:02 +080099 struct sysdev_class *class = to_sysdev_class(kobj);
100 struct sysdev_class_attribute *class_attr = to_sysdev_class_attr(attr);
Shaohua Li670dd902006-05-08 13:45:57 +0800101
102 if (class_attr->store)
Andi Kleenc9be0a32010-01-05 12:47:58 +0100103 return class_attr->store(class, class_attr, buffer, count);
Shaohua Li670dd902006-05-08 13:45:57 +0800104 return -EIO;
105}
106
Emese Revfy52cf25d2010-01-19 02:58:23 +0100107static const struct sysfs_ops sysfs_class_ops = {
Shaohua Li670dd902006-05-08 13:45:57 +0800108 .show = sysdev_class_show,
109 .store = sysdev_class_store,
110};
111
112static struct kobj_type ktype_sysdev_class = {
113 .sysfs_ops = &sysfs_class_ops,
114};
115
116int 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}
121EXPORT_SYMBOL_GPL(sysdev_class_create_file);
122
123void 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}
128EXPORT_SYMBOL_GPL(sysdev_class_remove_file);
129
Zhenwen Xu60530af2009-03-03 18:36:02 +0800130int sysdev_class_register(struct sysdev_class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Dave Young9227c472009-05-11 14:18:55 +0800132 int retval;
133
Ben Dooks838ea8e2008-06-12 19:00:34 +0100134 pr_debug("Registering sysdev class '%s'\n", cls->name);
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 INIT_LIST_HEAD(&cls->drivers);
Greg Kroah-Hartmanef79df22008-03-09 03:37:16 +0530137 memset(&cls->kset.kobj, 0x00, sizeof(struct kobject));
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600138 cls->kset.kobj.parent = &system_kset->kobj;
Greg Kroah-Hartman3514fac2007-10-16 10:11:44 -0600139 cls->kset.kobj.ktype = &ktype_sysdev_class;
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600140 cls->kset.kobj.kset = system_kset;
Dave Young9227c472009-05-11 14:18:55 +0800141
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700142 retval = kobject_set_name(&cls->kset.kobj, "%s", cls->name);
Dave Young9227c472009-05-11 14:18:55 +0800143 if (retval)
144 return retval;
145
Andi Kleen38457ab2010-01-05 12:48:02 +0100146 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 Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Zhenwen Xu60530af2009-03-03 18:36:02 +0800153void sysdev_class_unregister(struct sysdev_class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 pr_debug("Unregistering sysdev class '%s'\n",
156 kobject_name(&cls->kset.kobj));
Andi Kleen38457ab2010-01-05 12:48:02 +0100157 if (cls->attrs)
158 sysfs_remove_files(&cls->kset.kobj,
159 (const struct attribute **)cls->attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 kset_unregister(&cls->kset);
161}
162
163EXPORT_SYMBOL_GPL(sysdev_class_register);
164EXPORT_SYMBOL_GPL(sysdev_class_unregister);
165
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700166static DEFINE_MUTEX(sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Borislav Petkovf4203e32011-02-01 17:19:56 +0100168/*
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 */
173static 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
194kset_put:
195 kset_put(&cls->kset);
196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300199 * sysdev_driver_register - Register auxiliary driver
Akinobu Mita44b760a2007-08-19 16:51:14 +0900200 * @cls: Device class driver belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 * @drv: Driver.
202 *
Akinobu Mita44b760a2007-08-19 16:51:14 +0900203 * @drv is inserted into @cls->drivers to be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 * called on each operation on devices of that class. The refcount
205 * of @cls is incremented.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 */
Akinobu Mita44b760a2007-08-19 16:51:14 +0900207int sysdev_driver_register(struct sysdev_class *cls, struct sysdev_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Borislav Petkovf4203e32011-02-01 17:19:56 +0100209 struct sys_device *dev = NULL;
Akinobu Mita44b760a2007-08-19 16:51:14 +0900210 int err = 0;
211
Ben Dooksda009f32008-03-04 15:09:06 -0800212 if (!cls) {
Borislav Petkov345279b2011-02-01 17:19:57 +0100213 WARN(1, KERN_WARNING "sysdev: invalid class passed to %s!\n",
214 __func__);
Ben Dooksda009f32008-03-04 15:09:06 -0800215 return -EINVAL;
216 }
217
218 /* Check whether this driver has already been added to a class. */
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700219 if (drv->entry.next && !list_empty(&drv->entry))
220 WARN(1, KERN_WARNING "sysdev: class %s: driver (%p) has already"
Ben Dooksda009f32008-03-04 15:09:06 -0800221 " been registered to a class, something is wrong, but "
222 "will forge on!\n", cls->name, drv);
Ben Dooksda009f32008-03-04 15:09:06 -0800223
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700224 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 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 Petkovf4203e32011-02-01 17:19:56 +0100230 list_for_each_entry(dev, &cls->kset.list, kobj.entry) {
231 err = drv->add(dev);
232 if (err)
233 goto unwind;
234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
Akinobu Mita44b760a2007-08-19 16:51:14 +0900236 } else {
237 err = -EINVAL;
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700238 WARN(1, KERN_ERR "%s: invalid device class\n", __func__);
Akinobu Mita44b760a2007-08-19 16:51:14 +0900239 }
Borislav Petkovf4203e32011-02-01 17:19:56 +0100240
241 goto unlock;
242
243unwind:
244 __sysdev_driver_remove(cls, drv, dev);
245
246unlock:
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700247 mutex_unlock(&sysdev_drivers_lock);
Akinobu Mita44b760a2007-08-19 16:51:14 +0900248 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300252 * sysdev_driver_unregister - Remove an auxiliary driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 * @cls: Class driver belongs to.
254 * @drv: Driver.
255 */
Zhenwen Xu60530af2009-03-03 18:36:02 +0800256void sysdev_driver_unregister(struct sysdev_class *cls,
257 struct sysdev_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700259 mutex_lock(&sysdev_drivers_lock);
Borislav Petkovf4203e32011-02-01 17:19:56 +0100260 __sysdev_driver_remove(cls, drv, NULL);
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700261 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263EXPORT_SYMBOL_GPL(sysdev_driver_register);
264EXPORT_SYMBOL_GPL(sysdev_driver_unregister);
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266/**
267 * sysdev_register - add a system device to the tree
268 * @sysdev: device in question
269 *
270 */
Zhenwen Xu60530af2009-03-03 18:36:02 +0800271int sysdev_register(struct sys_device *sysdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 int error;
Zhenwen Xu60530af2009-03-03 18:36:02 +0800274 struct sysdev_class *cls = sysdev->cls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (!cls)
277 return -EINVAL;
278
Ben Dooks838ea8e2008-06-12 19:00:34 +0100279 pr_debug("Registering sys device of class '%s'\n",
280 kobject_name(&cls->kset.kobj));
Greg Kroah-Hartman61030bf2007-12-17 15:54:39 -0400281
Greg Kroah-Hartmanef79df22008-03-09 03:37:16 +0530282 /* initialize the kobject to 0, in case it had previously been used */
283 memset(&sysdev->kobj, 0x00, sizeof(struct kobject));
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 /* Make sure the kset is set */
286 sysdev->kobj.kset = &cls->kset;
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* Register the object */
Greg Kroah-Hartman61030bf2007-12-17 15:54:39 -0400289 error = kobject_init_and_add(&sysdev->kobj, &ktype_sysdev, NULL,
290 "%s%d", kobject_name(&cls->kset.kobj),
291 sysdev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 if (!error) {
Zhenwen Xu60530af2009-03-03 18:36:02 +0800294 struct sysdev_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Ben Dooks838ea8e2008-06-12 19:00:34 +0100296 pr_debug("Registering sys device '%s'\n",
297 kobject_name(&sysdev->kobj));
298
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700299 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 /* Generic notification is implicit, because it's that
301 * code that should have called us.
302 */
303
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300304 /* Notify class auxiliary drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 list_for_each_entry(drv, &cls->drivers, entry) {
306 if (drv->add)
307 drv->add(sysdev);
308 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700309 mutex_unlock(&sysdev_drivers_lock);
Xiaotian Feng79f03132009-07-24 17:31:41 +0800310 kobject_uevent(&sysdev->kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
Ben Dooks838ea8e2008-06-12 19:00:34 +0100312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return error;
314}
315
Zhenwen Xu60530af2009-03-03 18:36:02 +0800316void sysdev_unregister(struct sys_device *sysdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Zhenwen Xu60530af2009-03-03 18:36:02 +0800318 struct sysdev_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700320 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 list_for_each_entry(drv, &sysdev->cls->drivers, entry) {
322 if (drv->remove)
323 drv->remove(sysdev);
324 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700325 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800327 kobject_put(&sysdev->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Rafael J. Wysocki2e711c02011-04-26 19:15:07 +0200330EXPORT_SYMBOL_GPL(sysdev_register);
331EXPORT_SYMBOL_GPL(sysdev_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Andi Kleen98007942008-07-01 18:48:42 +0200333#define to_ext_attr(x) container_of(x, struct sysdev_ext_attribute, attr)
334
335ssize_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 Kleen4e318d72008-10-13 12:03:03 +0200345 /* Always return full write size even if we didn't consume all */
346 return size;
Andi Kleen98007942008-07-01 18:48:42 +0200347}
348EXPORT_SYMBOL_GPL(sysdev_store_ulong);
349
350ssize_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}
357EXPORT_SYMBOL_GPL(sysdev_show_ulong);
358
359ssize_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 Kleen4e318d72008-10-13 12:03:03 +0200369 /* Always return full write size even if we didn't consume all */
370 return size;
Andi Kleen98007942008-07-01 18:48:42 +0200371}
372EXPORT_SYMBOL_GPL(sysdev_store_int);
373
374ssize_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}
381EXPORT_SYMBOL_GPL(sysdev_show_int);
382