blob: cbd36cf59a0f2e2af74ddc9255f64380299a6666 [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>
20#include <linux/slab.h>
21#include <linux/string.h>
Pavel Machek438510f2005-04-16 15:25:24 -070022#include <linux/pm.h>
Adrian Bunkf67d1152006-01-19 17:30:17 +010023#include <linux/device.h>
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -070024#include <linux/mutex.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
31
32static ssize_t
Zhenwen Xu60530af2009-03-03 18:36:02 +080033sysdev_show(struct kobject *kobj, struct attribute *attr, char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
Zhenwen Xu60530af2009-03-03 18:36:02 +080035 struct sys_device *sysdev = to_sysdev(kobj);
36 struct sysdev_attribute *sysdev_attr = to_sysdev_attr(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38 if (sysdev_attr->show)
Andi Kleen4a0b2b42008-07-01 18:48:41 +020039 return sysdev_attr->show(sysdev, sysdev_attr, buffer);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050040 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041}
42
43
44static ssize_t
Zhenwen Xu60530af2009-03-03 18:36:02 +080045sysdev_store(struct kobject *kobj, struct attribute *attr,
46 const char *buffer, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
Zhenwen Xu60530af2009-03-03 18:36:02 +080048 struct sys_device *sysdev = to_sysdev(kobj);
49 struct sysdev_attribute *sysdev_attr = to_sysdev_attr(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51 if (sysdev_attr->store)
Andi Kleen4a0b2b42008-07-01 18:48:41 +020052 return sysdev_attr->store(sysdev, sysdev_attr, buffer, count);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050053 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
55
56static struct sysfs_ops sysfs_ops = {
57 .show = sysdev_show,
58 .store = sysdev_store,
59};
60
61static struct kobj_type ktype_sysdev = {
62 .sysfs_ops = &sysfs_ops,
63};
64
65
Zhenwen Xu60530af2009-03-03 18:36:02 +080066int sysdev_create_file(struct sys_device *s, struct sysdev_attribute *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 return sysfs_create_file(&s->kobj, &a->attr);
69}
70
71
Zhenwen Xu60530af2009-03-03 18:36:02 +080072void sysdev_remove_file(struct sys_device *s, struct sysdev_attribute *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 sysfs_remove_file(&s->kobj, &a->attr);
75}
76
77EXPORT_SYMBOL_GPL(sysdev_create_file);
78EXPORT_SYMBOL_GPL(sysdev_remove_file);
79
Shaohua Li670dd902006-05-08 13:45:57 +080080#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
84static ssize_t sysdev_class_show(struct kobject *kobj, struct attribute *attr,
85 char *buffer)
86{
Zhenwen Xu60530af2009-03-03 18:36:02 +080087 struct sysdev_class *class = to_sysdev_class(kobj);
Shaohua Li670dd902006-05-08 13:45:57 +080088 struct sysdev_class_attribute *class_attr = to_sysdev_class_attr(attr);
89
90 if (class_attr->show)
91 return class_attr->show(class, buffer);
92 return -EIO;
93}
94
95static ssize_t sysdev_class_store(struct kobject *kobj, struct attribute *attr,
96 const char *buffer, size_t count)
97{
Zhenwen Xu60530af2009-03-03 18:36:02 +080098 struct sysdev_class *class = to_sysdev_class(kobj);
99 struct sysdev_class_attribute *class_attr = to_sysdev_class_attr(attr);
Shaohua Li670dd902006-05-08 13:45:57 +0800100
101 if (class_attr->store)
102 return class_attr->store(class, buffer, count);
103 return -EIO;
104}
105
106static struct sysfs_ops sysfs_class_ops = {
107 .show = sysdev_class_show,
108 .store = sysdev_class_store,
109};
110
111static struct kobj_type ktype_sysdev_class = {
112 .sysfs_ops = &sysfs_class_ops,
113};
114
115int 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}
120EXPORT_SYMBOL_GPL(sysdev_class_create_file);
121
122void 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}
127EXPORT_SYMBOL_GPL(sysdev_class_remove_file);
128
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600129static struct kset *system_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Zhenwen Xu60530af2009-03-03 18:36:02 +0800131int sysdev_class_register(struct sysdev_class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Ben Dooks838ea8e2008-06-12 19:00:34 +0100133 pr_debug("Registering sysdev class '%s'\n", cls->name);
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 INIT_LIST_HEAD(&cls->drivers);
Greg Kroah-Hartmanef79df22008-03-09 03:37:16 +0530136 memset(&cls->kset.kobj, 0x00, sizeof(struct kobject));
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600137 cls->kset.kobj.parent = &system_kset->kobj;
Greg Kroah-Hartman3514fac2007-10-16 10:11:44 -0600138 cls->kset.kobj.ktype = &ktype_sysdev_class;
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600139 cls->kset.kobj.kset = system_kset;
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100140 kobject_set_name(&cls->kset.kobj, cls->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 return kset_register(&cls->kset);
142}
143
Zhenwen Xu60530af2009-03-03 18:36:02 +0800144void sysdev_class_unregister(struct sysdev_class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 pr_debug("Unregistering sysdev class '%s'\n",
147 kobject_name(&cls->kset.kobj));
148 kset_unregister(&cls->kset);
149}
150
151EXPORT_SYMBOL_GPL(sysdev_class_register);
152EXPORT_SYMBOL_GPL(sysdev_class_unregister);
153
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700154static DEFINE_MUTEX(sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156/**
157 * sysdev_driver_register - Register auxillary driver
Akinobu Mita44b760a2007-08-19 16:51:14 +0900158 * @cls: Device class driver belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * @drv: Driver.
160 *
Akinobu Mita44b760a2007-08-19 16:51:14 +0900161 * @drv is inserted into @cls->drivers to be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * called on each operation on devices of that class. The refcount
163 * of @cls is incremented.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 */
165
Akinobu Mita44b760a2007-08-19 16:51:14 +0900166int sysdev_driver_register(struct sysdev_class *cls, struct sysdev_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Akinobu Mita44b760a2007-08-19 16:51:14 +0900168 int err = 0;
169
Ben Dooksda009f32008-03-04 15:09:06 -0800170 if (!cls) {
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700171 WARN(1, KERN_WARNING "sysdev: invalid class passed to "
Ben Dooksda009f32008-03-04 15:09:06 -0800172 "sysdev_driver_register!\n");
Ben Dooksda009f32008-03-04 15:09:06 -0800173 return -EINVAL;
174 }
175
176 /* Check whether this driver has already been added to a class. */
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700177 if (drv->entry.next && !list_empty(&drv->entry))
178 WARN(1, KERN_WARNING "sysdev: class %s: driver (%p) has already"
Ben Dooksda009f32008-03-04 15:09:06 -0800179 " been registered to a class, something is wrong, but "
180 "will forge on!\n", cls->name, drv);
Ben Dooksda009f32008-03-04 15:09:06 -0800181
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700182 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (cls && kset_get(&cls->kset)) {
184 list_add_tail(&drv->entry, &cls->drivers);
185
186 /* If devices of this class already exist, tell the driver */
187 if (drv->add) {
188 struct sys_device *dev;
189 list_for_each_entry(dev, &cls->kset.list, kobj.entry)
190 drv->add(dev);
191 }
Akinobu Mita44b760a2007-08-19 16:51:14 +0900192 } else {
193 err = -EINVAL;
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700194 WARN(1, KERN_ERR "%s: invalid device class\n", __func__);
Akinobu Mita44b760a2007-08-19 16:51:14 +0900195 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700196 mutex_unlock(&sysdev_drivers_lock);
Akinobu Mita44b760a2007-08-19 16:51:14 +0900197 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
200
201/**
202 * sysdev_driver_unregister - Remove an auxillary driver.
203 * @cls: Class driver belongs to.
204 * @drv: Driver.
205 */
Zhenwen Xu60530af2009-03-03 18:36:02 +0800206void sysdev_driver_unregister(struct sysdev_class *cls,
207 struct sysdev_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700209 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 list_del_init(&drv->entry);
211 if (cls) {
212 if (drv->remove) {
213 struct sys_device *dev;
214 list_for_each_entry(dev, &cls->kset.list, kobj.entry)
215 drv->remove(dev);
216 }
217 kset_put(&cls->kset);
218 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700219 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
222EXPORT_SYMBOL_GPL(sysdev_driver_register);
223EXPORT_SYMBOL_GPL(sysdev_driver_unregister);
224
225
226
227/**
228 * sysdev_register - add a system device to the tree
229 * @sysdev: device in question
230 *
231 */
Zhenwen Xu60530af2009-03-03 18:36:02 +0800232int sysdev_register(struct sys_device *sysdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 int error;
Zhenwen Xu60530af2009-03-03 18:36:02 +0800235 struct sysdev_class *cls = sysdev->cls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 if (!cls)
238 return -EINVAL;
239
Ben Dooks838ea8e2008-06-12 19:00:34 +0100240 pr_debug("Registering sys device of class '%s'\n",
241 kobject_name(&cls->kset.kobj));
Greg Kroah-Hartman61030bf2007-12-17 15:54:39 -0400242
Greg Kroah-Hartmanef79df22008-03-09 03:37:16 +0530243 /* initialize the kobject to 0, in case it had previously been used */
244 memset(&sysdev->kobj, 0x00, sizeof(struct kobject));
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /* Make sure the kset is set */
247 sysdev->kobj.kset = &cls->kset;
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 /* Register the object */
Greg Kroah-Hartman61030bf2007-12-17 15:54:39 -0400250 error = kobject_init_and_add(&sysdev->kobj, &ktype_sysdev, NULL,
251 "%s%d", kobject_name(&cls->kset.kobj),
252 sysdev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 if (!error) {
Zhenwen Xu60530af2009-03-03 18:36:02 +0800255 struct sysdev_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Ben Dooks838ea8e2008-06-12 19:00:34 +0100257 pr_debug("Registering sys device '%s'\n",
258 kobject_name(&sysdev->kobj));
259
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700260 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /* Generic notification is implicit, because it's that
262 * code that should have called us.
263 */
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 /* Notify class auxillary drivers */
266 list_for_each_entry(drv, &cls->drivers, entry) {
267 if (drv->add)
268 drv->add(sysdev);
269 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700270 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
Ben Dooks838ea8e2008-06-12 19:00:34 +0100272
Greg Kroah-Hartman61030bf2007-12-17 15:54:39 -0400273 kobject_uevent(&sysdev->kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return error;
275}
276
Zhenwen Xu60530af2009-03-03 18:36:02 +0800277void sysdev_unregister(struct sys_device *sysdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Zhenwen Xu60530af2009-03-03 18:36:02 +0800279 struct sysdev_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700281 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 list_for_each_entry(drv, &sysdev->cls->drivers, entry) {
283 if (drv->remove)
284 drv->remove(sysdev);
285 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700286 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800288 kobject_put(&sysdev->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
291
292
293/**
294 * sysdev_shutdown - Shut down all system devices.
295 *
296 * Loop over each class of system devices, and the devices in each
297 * of those classes. For each device, we call the shutdown method for
Akinobu Mita44b760a2007-08-19 16:51:14 +0900298 * each driver registered for the device - the auxillaries,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 * and the class driver.
300 *
301 * Note: The list is iterated in reverse order, so that we shut down
302 * child devices before we shut down thier parents. The list ordering
303 * is guaranteed by virtue of the fact that child devices are registered
304 * after their parents.
305 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306void sysdev_shutdown(void)
307{
Zhenwen Xu60530af2009-03-03 18:36:02 +0800308 struct sysdev_class *cls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 pr_debug("Shutting Down System Devices\n");
311
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700312 mutex_lock(&sysdev_drivers_lock);
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600313 list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) {
Zhenwen Xu60530af2009-03-03 18:36:02 +0800314 struct sys_device *sysdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 pr_debug("Shutting down type '%s':\n",
317 kobject_name(&cls->kset.kobj));
318
319 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
Zhenwen Xu60530af2009-03-03 18:36:02 +0800320 struct sysdev_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
322
Akinobu Mita44b760a2007-08-19 16:51:14 +0900323 /* Call auxillary drivers first */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 list_for_each_entry(drv, &cls->drivers, entry) {
325 if (drv->shutdown)
326 drv->shutdown(sysdev);
327 }
328
329 /* Now call the generic one */
330 if (cls->shutdown)
331 cls->shutdown(sysdev);
332 }
333 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700334 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Shaohua Liceaeade2005-08-11 10:37:39 +0800337static void __sysdev_resume(struct sys_device *dev)
338{
339 struct sysdev_class *cls = dev->cls;
340 struct sysdev_driver *drv;
341
342 /* First, call the class-specific one */
343 if (cls->resume)
344 cls->resume(dev);
345
346 /* Call auxillary drivers next. */
347 list_for_each_entry(drv, &cls->drivers, entry) {
348 if (drv->resume)
349 drv->resume(dev);
350 }
Shaohua Liceaeade2005-08-11 10:37:39 +0800351}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353/**
354 * sysdev_suspend - Suspend all system devices.
355 * @state: Power state to enter.
356 *
Qinghuang Feng65151362008-10-13 18:05:04 +0800357 * We perform an almost identical operation as sysdev_shutdown()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 * above, though calling ->suspend() instead. Interrupts are disabled
359 * when this called. Devices are responsible for both saving state and
360 * quiescing or powering down the device.
361 *
362 * This is only called by the device PM core, so we let them handle
363 * all synchronization.
364 */
Pavel Machek438510f2005-04-16 15:25:24 -0700365int sysdev_suspend(pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Zhenwen Xu60530af2009-03-03 18:36:02 +0800367 struct sysdev_class *cls;
Shaohua Liceaeade2005-08-11 10:37:39 +0800368 struct sys_device *sysdev, *err_dev;
369 struct sysdev_driver *drv, *err_drv;
370 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 pr_debug("Suspending System Devices\n");
373
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600374 list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 pr_debug("Suspending type '%s':\n",
376 kobject_name(&cls->kset.kobj));
377
378 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
380
Akinobu Mita44b760a2007-08-19 16:51:14 +0900381 /* Call auxillary drivers first */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 list_for_each_entry(drv, &cls->drivers, entry) {
Shaohua Liceaeade2005-08-11 10:37:39 +0800383 if (drv->suspend) {
384 ret = drv->suspend(sysdev, state);
385 if (ret)
386 goto aux_driver;
387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389
390 /* Now call the generic one */
Shaohua Liceaeade2005-08-11 10:37:39 +0800391 if (cls->suspend) {
392 ret = cls->suspend(sysdev, state);
393 if (ret)
394 goto cls_driver;
395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397 }
398 return 0;
Shaohua Liceaeade2005-08-11 10:37:39 +0800399 /* resume current sysdev */
400cls_driver:
401 drv = NULL;
402 printk(KERN_ERR "Class suspend failed for %s\n",
403 kobject_name(&sysdev->kobj));
404
405aux_driver:
406 if (drv)
407 printk(KERN_ERR "Class driver suspend failed for %s\n",
408 kobject_name(&sysdev->kobj));
409 list_for_each_entry(err_drv, &cls->drivers, entry) {
410 if (err_drv == drv)
411 break;
412 if (err_drv->resume)
413 err_drv->resume(sysdev);
414 }
Shaohua Liceaeade2005-08-11 10:37:39 +0800415
Shaohua Liceaeade2005-08-11 10:37:39 +0800416 /* resume other sysdevs in current class */
417 list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
418 if (err_dev == sysdev)
419 break;
420 pr_debug(" %s\n", kobject_name(&err_dev->kobj));
421 __sysdev_resume(err_dev);
422 }
423
424 /* resume other classes */
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600425 list_for_each_entry_continue(cls, &system_kset->list, kset.kobj.entry) {
Shaohua Liceaeade2005-08-11 10:37:39 +0800426 list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
427 pr_debug(" %s\n", kobject_name(&err_dev->kobj));
428 __sysdev_resume(err_dev);
429 }
430 }
431 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
Ingo Molnar0f99fed2009-02-22 22:07:03 +0100433EXPORT_SYMBOL_GPL(sysdev_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435/**
436 * sysdev_resume - Bring system devices back to life.
437 *
Qinghuang Feng65151362008-10-13 18:05:04 +0800438 * Similar to sysdev_suspend(), but we iterate the list forwards
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 * to guarantee that parent devices are resumed before their children.
440 *
441 * Note: Interrupts are disabled when called.
442 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443int sysdev_resume(void)
444{
Zhenwen Xu60530af2009-03-03 18:36:02 +0800445 struct sysdev_class *cls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 pr_debug("Resuming System Devices\n");
448
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600449 list_for_each_entry(cls, &system_kset->list, kset.kobj.entry) {
Zhenwen Xu60530af2009-03-03 18:36:02 +0800450 struct sys_device *sysdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 pr_debug("Resuming type '%s':\n",
453 kobject_name(&cls->kset.kobj));
454
455 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
457
Shaohua Liceaeade2005-08-11 10:37:39 +0800458 __sysdev_resume(sysdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
460 }
461 return 0;
462}
Ingo Molnar0f99fed2009-02-22 22:07:03 +0100463EXPORT_SYMBOL_GPL(sysdev_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465int __init system_bus_init(void)
466{
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600467 system_kset = kset_create_and_add("system", NULL, &devices_kset->kobj);
468 if (!system_kset)
469 return -ENOMEM;
470 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
473EXPORT_SYMBOL_GPL(sysdev_register);
474EXPORT_SYMBOL_GPL(sysdev_unregister);
Andi Kleen98007942008-07-01 18:48:42 +0200475
476#define to_ext_attr(x) container_of(x, struct sysdev_ext_attribute, attr)
477
478ssize_t sysdev_store_ulong(struct sys_device *sysdev,
479 struct sysdev_attribute *attr,
480 const char *buf, size_t size)
481{
482 struct sysdev_ext_attribute *ea = to_ext_attr(attr);
483 char *end;
484 unsigned long new = simple_strtoul(buf, &end, 0);
485 if (end == buf)
486 return -EINVAL;
487 *(unsigned long *)(ea->var) = new;
Andi Kleen4e318d72008-10-13 12:03:03 +0200488 /* Always return full write size even if we didn't consume all */
489 return size;
Andi Kleen98007942008-07-01 18:48:42 +0200490}
491EXPORT_SYMBOL_GPL(sysdev_store_ulong);
492
493ssize_t sysdev_show_ulong(struct sys_device *sysdev,
494 struct sysdev_attribute *attr,
495 char *buf)
496{
497 struct sysdev_ext_attribute *ea = to_ext_attr(attr);
498 return snprintf(buf, PAGE_SIZE, "%lx\n", *(unsigned long *)(ea->var));
499}
500EXPORT_SYMBOL_GPL(sysdev_show_ulong);
501
502ssize_t sysdev_store_int(struct sys_device *sysdev,
503 struct sysdev_attribute *attr,
504 const char *buf, size_t size)
505{
506 struct sysdev_ext_attribute *ea = to_ext_attr(attr);
507 char *end;
508 long new = simple_strtol(buf, &end, 0);
509 if (end == buf || new > INT_MAX || new < INT_MIN)
510 return -EINVAL;
511 *(int *)(ea->var) = new;
Andi Kleen4e318d72008-10-13 12:03:03 +0200512 /* Always return full write size even if we didn't consume all */
513 return size;
Andi Kleen98007942008-07-01 18:48:42 +0200514}
515EXPORT_SYMBOL_GPL(sysdev_store_int);
516
517ssize_t sysdev_show_int(struct sys_device *sysdev,
518 struct sysdev_attribute *attr,
519 char *buf)
520{
521 struct sysdev_ext_attribute *ea = to_ext_attr(attr);
522 return snprintf(buf, PAGE_SIZE, "%d\n", *(int *)(ea->var));
523}
524EXPORT_SYMBOL_GPL(sysdev_show_int);
525