blob: acde9b5ee1314b10577e00a38064cb25ea3118f7 [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
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
Emese Revfy52cf25d2010-01-19 02:58:23 +010056static const struct sysfs_ops sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 .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)
Andi Kleenc9be0a32010-01-05 12:47:58 +010091 return class_attr->show(class, class_attr, buffer);
Shaohua Li670dd902006-05-08 13:45:57 +080092 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)
Andi Kleenc9be0a32010-01-05 12:47:58 +0100102 return class_attr->store(class, class_attr, buffer, count);
Shaohua Li670dd902006-05-08 13:45:57 +0800103 return -EIO;
104}
105
Emese Revfy52cf25d2010-01-19 02:58:23 +0100106static const struct sysfs_ops sysfs_class_ops = {
Shaohua Li670dd902006-05-08 13:45:57 +0800107 .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{
Dave Young9227c472009-05-11 14:18:55 +0800133 int retval;
134
Ben Dooks838ea8e2008-06-12 19:00:34 +0100135 pr_debug("Registering sysdev class '%s'\n", cls->name);
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 INIT_LIST_HEAD(&cls->drivers);
Greg Kroah-Hartmanef79df22008-03-09 03:37:16 +0530138 memset(&cls->kset.kobj, 0x00, sizeof(struct kobject));
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600139 cls->kset.kobj.parent = &system_kset->kobj;
Greg Kroah-Hartman3514fac2007-10-16 10:11:44 -0600140 cls->kset.kobj.ktype = &ktype_sysdev_class;
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600141 cls->kset.kobj.kset = system_kset;
Dave Young9227c472009-05-11 14:18:55 +0800142
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700143 retval = kobject_set_name(&cls->kset.kobj, "%s", cls->name);
Dave Young9227c472009-05-11 14:18:55 +0800144 if (retval)
145 return retval;
146
Andi Kleen38457ab2010-01-05 12:48:02 +0100147 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 Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
Zhenwen Xu60530af2009-03-03 18:36:02 +0800154void sysdev_class_unregister(struct sysdev_class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 pr_debug("Unregistering sysdev class '%s'\n",
157 kobject_name(&cls->kset.kobj));
Andi Kleen38457ab2010-01-05 12:48:02 +0100158 if (cls->attrs)
159 sysfs_remove_files(&cls->kset.kobj,
160 (const struct attribute **)cls->attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 kset_unregister(&cls->kset);
162}
163
164EXPORT_SYMBOL_GPL(sysdev_class_register);
165EXPORT_SYMBOL_GPL(sysdev_class_unregister);
166
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700167static DEFINE_MUTEX(sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Borislav Petkovf4203e32011-02-01 17:19:56 +0100169/*
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 */
174static 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
195kset_put:
196 kset_put(&cls->kset);
197}
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300200 * sysdev_driver_register - Register auxiliary driver
Akinobu Mita44b760a2007-08-19 16:51:14 +0900201 * @cls: Device class driver belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 * @drv: Driver.
203 *
Akinobu Mita44b760a2007-08-19 16:51:14 +0900204 * @drv is inserted into @cls->drivers to be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 * called on each operation on devices of that class. The refcount
206 * of @cls is incremented.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 */
Akinobu Mita44b760a2007-08-19 16:51:14 +0900208int sysdev_driver_register(struct sysdev_class *cls, struct sysdev_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Borislav Petkovf4203e32011-02-01 17:19:56 +0100210 struct sys_device *dev = NULL;
Akinobu Mita44b760a2007-08-19 16:51:14 +0900211 int err = 0;
212
Ben Dooksda009f32008-03-04 15:09:06 -0800213 if (!cls) {
Borislav Petkov345279b2011-02-01 17:19:57 +0100214 WARN(1, KERN_WARNING "sysdev: invalid class passed to %s!\n",
215 __func__);
Ben Dooksda009f32008-03-04 15:09:06 -0800216 return -EINVAL;
217 }
218
219 /* Check whether this driver has already been added to a class. */
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700220 if (drv->entry.next && !list_empty(&drv->entry))
221 WARN(1, KERN_WARNING "sysdev: class %s: driver (%p) has already"
Ben Dooksda009f32008-03-04 15:09:06 -0800222 " been registered to a class, something is wrong, but "
223 "will forge on!\n", cls->name, drv);
Ben Dooksda009f32008-03-04 15:09:06 -0800224
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700225 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 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 Petkovf4203e32011-02-01 17:19:56 +0100231 list_for_each_entry(dev, &cls->kset.list, kobj.entry) {
232 err = drv->add(dev);
233 if (err)
234 goto unwind;
235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
Akinobu Mita44b760a2007-08-19 16:51:14 +0900237 } else {
238 err = -EINVAL;
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700239 WARN(1, KERN_ERR "%s: invalid device class\n", __func__);
Akinobu Mita44b760a2007-08-19 16:51:14 +0900240 }
Borislav Petkovf4203e32011-02-01 17:19:56 +0100241
242 goto unlock;
243
244unwind:
245 __sysdev_driver_remove(cls, drv, dev);
246
247unlock:
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700248 mutex_unlock(&sysdev_drivers_lock);
Akinobu Mita44b760a2007-08-19 16:51:14 +0900249 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300253 * sysdev_driver_unregister - Remove an auxiliary driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 * @cls: Class driver belongs to.
255 * @drv: Driver.
256 */
Zhenwen Xu60530af2009-03-03 18:36:02 +0800257void sysdev_driver_unregister(struct sysdev_class *cls,
258 struct sysdev_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700260 mutex_lock(&sysdev_drivers_lock);
Borislav Petkovf4203e32011-02-01 17:19:56 +0100261 __sysdev_driver_remove(cls, drv, NULL);
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700262 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264EXPORT_SYMBOL_GPL(sysdev_driver_register);
265EXPORT_SYMBOL_GPL(sysdev_driver_unregister);
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/**
268 * sysdev_register - add a system device to the tree
269 * @sysdev: device in question
270 *
271 */
Zhenwen Xu60530af2009-03-03 18:36:02 +0800272int sysdev_register(struct sys_device *sysdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274 int error;
Zhenwen Xu60530af2009-03-03 18:36:02 +0800275 struct sysdev_class *cls = sysdev->cls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 if (!cls)
278 return -EINVAL;
279
Ben Dooks838ea8e2008-06-12 19:00:34 +0100280 pr_debug("Registering sys device of class '%s'\n",
281 kobject_name(&cls->kset.kobj));
Greg Kroah-Hartman61030bf2007-12-17 15:54:39 -0400282
Greg Kroah-Hartmanef79df22008-03-09 03:37:16 +0530283 /* initialize the kobject to 0, in case it had previously been used */
284 memset(&sysdev->kobj, 0x00, sizeof(struct kobject));
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /* Make sure the kset is set */
287 sysdev->kobj.kset = &cls->kset;
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /* Register the object */
Greg Kroah-Hartman61030bf2007-12-17 15:54:39 -0400290 error = kobject_init_and_add(&sysdev->kobj, &ktype_sysdev, NULL,
291 "%s%d", kobject_name(&cls->kset.kobj),
292 sysdev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 if (!error) {
Zhenwen Xu60530af2009-03-03 18:36:02 +0800295 struct sysdev_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Ben Dooks838ea8e2008-06-12 19:00:34 +0100297 pr_debug("Registering sys device '%s'\n",
298 kobject_name(&sysdev->kobj));
299
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700300 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /* Generic notification is implicit, because it's that
302 * code that should have called us.
303 */
304
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300305 /* Notify class auxiliary drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 list_for_each_entry(drv, &cls->drivers, entry) {
307 if (drv->add)
308 drv->add(sysdev);
309 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700310 mutex_unlock(&sysdev_drivers_lock);
Xiaotian Feng79f03132009-07-24 17:31:41 +0800311 kobject_uevent(&sysdev->kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
Ben Dooks838ea8e2008-06-12 19:00:34 +0100313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return error;
315}
316
Zhenwen Xu60530af2009-03-03 18:36:02 +0800317void sysdev_unregister(struct sys_device *sysdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Zhenwen Xu60530af2009-03-03 18:36:02 +0800319 struct sysdev_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700321 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 list_for_each_entry(drv, &sysdev->cls->drivers, entry) {
323 if (drv->remove)
324 drv->remove(sysdev);
325 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700326 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800328 kobject_put(&sysdev->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
331
Rafael J. Wysockid47d81c2011-03-23 22:16:41 +0100332#ifndef CONFIG_ARCH_NO_SYSDEV_OPS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333/**
334 * sysdev_shutdown - Shut down all system devices.
335 *
336 * Loop over each class of system devices, and the devices in each
337 * of those classes. For each device, we call the shutdown method for
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300338 * each driver registered for the device - the auxiliaries,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 * and the class driver.
340 *
341 * Note: The list is iterated in reverse order, so that we shut down
Uwe Kleine-Koenigee6921f2009-01-12 23:35:46 +0100342 * child devices before we shut down their parents. The list ordering
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 * is guaranteed by virtue of the fact that child devices are registered
344 * after their parents.
345 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346void sysdev_shutdown(void)
347{
Zhenwen Xu60530af2009-03-03 18:36:02 +0800348 struct sysdev_class *cls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 pr_debug("Shutting Down System Devices\n");
351
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700352 mutex_lock(&sysdev_drivers_lock);
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600353 list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) {
Zhenwen Xu60530af2009-03-03 18:36:02 +0800354 struct sys_device *sysdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 pr_debug("Shutting down type '%s':\n",
357 kobject_name(&cls->kset.kobj));
358
359 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
Zhenwen Xu60530af2009-03-03 18:36:02 +0800360 struct sysdev_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
362
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300363 /* Call auxiliary drivers first */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 list_for_each_entry(drv, &cls->drivers, entry) {
365 if (drv->shutdown)
366 drv->shutdown(sysdev);
367 }
368
369 /* Now call the generic one */
370 if (cls->shutdown)
371 cls->shutdown(sysdev);
372 }
373 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700374 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
Shaohua Liceaeade2005-08-11 10:37:39 +0800377static void __sysdev_resume(struct sys_device *dev)
378{
379 struct sysdev_class *cls = dev->cls;
380 struct sysdev_driver *drv;
381
382 /* First, call the class-specific one */
383 if (cls->resume)
384 cls->resume(dev);
Rafael J. Wysocki62b01242009-04-18 13:45:13 +0200385 WARN_ONCE(!irqs_disabled(),
386 "Interrupts enabled after %pF\n", cls->resume);
Shaohua Liceaeade2005-08-11 10:37:39 +0800387
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300388 /* Call auxiliary drivers next. */
Shaohua Liceaeade2005-08-11 10:37:39 +0800389 list_for_each_entry(drv, &cls->drivers, entry) {
390 if (drv->resume)
391 drv->resume(dev);
Rafael J. Wysocki62b01242009-04-18 13:45:13 +0200392 WARN_ONCE(!irqs_disabled(),
393 "Interrupts enabled after %pF\n", drv->resume);
Shaohua Liceaeade2005-08-11 10:37:39 +0800394 }
Shaohua Liceaeade2005-08-11 10:37:39 +0800395}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397/**
398 * sysdev_suspend - Suspend all system devices.
399 * @state: Power state to enter.
400 *
Qinghuang Feng65151362008-10-13 18:05:04 +0800401 * We perform an almost identical operation as sysdev_shutdown()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 * above, though calling ->suspend() instead. Interrupts are disabled
403 * when this called. Devices are responsible for both saving state and
404 * quiescing or powering down the device.
405 *
406 * This is only called by the device PM core, so we let them handle
407 * all synchronization.
408 */
Pavel Machek438510f2005-04-16 15:25:24 -0700409int sysdev_suspend(pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Zhenwen Xu60530af2009-03-03 18:36:02 +0800411 struct sysdev_class *cls;
Shaohua Liceaeade2005-08-11 10:37:39 +0800412 struct sys_device *sysdev, *err_dev;
413 struct sysdev_driver *drv, *err_drv;
414 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100416 pr_debug("Checking wake-up interrupts\n");
417
418 /* Return error code if there are any wake-up interrupts pending */
419 ret = check_wakeup_irqs();
420 if (ret)
421 return ret;
422
Rafael J. Wysocki62b01242009-04-18 13:45:13 +0200423 WARN_ONCE(!irqs_disabled(),
424 "Interrupts enabled while suspending system devices\n");
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 pr_debug("Suspending System Devices\n");
427
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600428 list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 pr_debug("Suspending type '%s':\n",
430 kobject_name(&cls->kset.kobj));
431
432 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
434
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300435 /* Call auxiliary drivers first */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 list_for_each_entry(drv, &cls->drivers, entry) {
Shaohua Liceaeade2005-08-11 10:37:39 +0800437 if (drv->suspend) {
438 ret = drv->suspend(sysdev, state);
439 if (ret)
440 goto aux_driver;
441 }
Rafael J. Wysocki62b01242009-04-18 13:45:13 +0200442 WARN_ONCE(!irqs_disabled(),
443 "Interrupts enabled after %pF\n",
444 drv->suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
446
447 /* Now call the generic one */
Shaohua Liceaeade2005-08-11 10:37:39 +0800448 if (cls->suspend) {
449 ret = cls->suspend(sysdev, state);
450 if (ret)
451 goto cls_driver;
Rafael J. Wysocki62b01242009-04-18 13:45:13 +0200452 WARN_ONCE(!irqs_disabled(),
453 "Interrupts enabled after %pF\n",
454 cls->suspend);
Shaohua Liceaeade2005-08-11 10:37:39 +0800455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457 }
458 return 0;
Shaohua Liceaeade2005-08-11 10:37:39 +0800459 /* resume current sysdev */
460cls_driver:
461 drv = NULL;
Mark Brown5abd9352010-10-20 11:22:42 -0700462 printk(KERN_ERR "Class suspend failed for %s: %d\n",
463 kobject_name(&sysdev->kobj), ret);
Shaohua Liceaeade2005-08-11 10:37:39 +0800464
465aux_driver:
466 if (drv)
Mark Brown5abd9352010-10-20 11:22:42 -0700467 printk(KERN_ERR "Class driver suspend failed for %s: %d\n",
468 kobject_name(&sysdev->kobj), ret);
Shaohua Liceaeade2005-08-11 10:37:39 +0800469 list_for_each_entry(err_drv, &cls->drivers, entry) {
470 if (err_drv == drv)
471 break;
472 if (err_drv->resume)
473 err_drv->resume(sysdev);
474 }
Shaohua Liceaeade2005-08-11 10:37:39 +0800475
Shaohua Liceaeade2005-08-11 10:37:39 +0800476 /* resume other sysdevs in current class */
477 list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
478 if (err_dev == sysdev)
479 break;
480 pr_debug(" %s\n", kobject_name(&err_dev->kobj));
481 __sysdev_resume(err_dev);
482 }
483
484 /* resume other classes */
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600485 list_for_each_entry_continue(cls, &system_kset->list, kset.kobj.entry) {
Shaohua Liceaeade2005-08-11 10:37:39 +0800486 list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
487 pr_debug(" %s\n", kobject_name(&err_dev->kobj));
488 __sysdev_resume(err_dev);
489 }
490 }
491 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
Ingo Molnar0f99fed2009-02-22 22:07:03 +0100493EXPORT_SYMBOL_GPL(sysdev_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495/**
496 * sysdev_resume - Bring system devices back to life.
497 *
Qinghuang Feng65151362008-10-13 18:05:04 +0800498 * Similar to sysdev_suspend(), but we iterate the list forwards
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 * to guarantee that parent devices are resumed before their children.
500 *
501 * Note: Interrupts are disabled when called.
502 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503int sysdev_resume(void)
504{
Zhenwen Xu60530af2009-03-03 18:36:02 +0800505 struct sysdev_class *cls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Rafael J. Wysocki62b01242009-04-18 13:45:13 +0200507 WARN_ONCE(!irqs_disabled(),
508 "Interrupts enabled while resuming system devices\n");
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 pr_debug("Resuming System Devices\n");
511
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600512 list_for_each_entry(cls, &system_kset->list, kset.kobj.entry) {
Zhenwen Xu60530af2009-03-03 18:36:02 +0800513 struct sys_device *sysdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 pr_debug("Resuming type '%s':\n",
516 kobject_name(&cls->kset.kobj));
517
518 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
520
Shaohua Liceaeade2005-08-11 10:37:39 +0800521 __sysdev_resume(sysdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523 }
524 return 0;
525}
Ingo Molnar0f99fed2009-02-22 22:07:03 +0100526EXPORT_SYMBOL_GPL(sysdev_resume);
Rafael J. Wysockid47d81c2011-03-23 22:16:41 +0100527#endif /* CONFIG_ARCH_NO_SYSDEV_OPS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529int __init system_bus_init(void)
530{
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600531 system_kset = kset_create_and_add("system", NULL, &devices_kset->kobj);
532 if (!system_kset)
533 return -ENOMEM;
534 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
537EXPORT_SYMBOL_GPL(sysdev_register);
538EXPORT_SYMBOL_GPL(sysdev_unregister);
Andi Kleen98007942008-07-01 18:48:42 +0200539
540#define to_ext_attr(x) container_of(x, struct sysdev_ext_attribute, attr)
541
542ssize_t sysdev_store_ulong(struct sys_device *sysdev,
543 struct sysdev_attribute *attr,
544 const char *buf, size_t size)
545{
546 struct sysdev_ext_attribute *ea = to_ext_attr(attr);
547 char *end;
548 unsigned long new = simple_strtoul(buf, &end, 0);
549 if (end == buf)
550 return -EINVAL;
551 *(unsigned long *)(ea->var) = new;
Andi Kleen4e318d72008-10-13 12:03:03 +0200552 /* Always return full write size even if we didn't consume all */
553 return size;
Andi Kleen98007942008-07-01 18:48:42 +0200554}
555EXPORT_SYMBOL_GPL(sysdev_store_ulong);
556
557ssize_t sysdev_show_ulong(struct sys_device *sysdev,
558 struct sysdev_attribute *attr,
559 char *buf)
560{
561 struct sysdev_ext_attribute *ea = to_ext_attr(attr);
562 return snprintf(buf, PAGE_SIZE, "%lx\n", *(unsigned long *)(ea->var));
563}
564EXPORT_SYMBOL_GPL(sysdev_show_ulong);
565
566ssize_t sysdev_store_int(struct sys_device *sysdev,
567 struct sysdev_attribute *attr,
568 const char *buf, size_t size)
569{
570 struct sysdev_ext_attribute *ea = to_ext_attr(attr);
571 char *end;
572 long new = simple_strtol(buf, &end, 0);
573 if (end == buf || new > INT_MAX || new < INT_MIN)
574 return -EINVAL;
575 *(int *)(ea->var) = new;
Andi Kleen4e318d72008-10-13 12:03:03 +0200576 /* Always return full write size even if we didn't consume all */
577 return size;
Andi Kleen98007942008-07-01 18:48:42 +0200578}
579EXPORT_SYMBOL_GPL(sysdev_store_int);
580
581ssize_t sysdev_show_int(struct sys_device *sysdev,
582 struct sysdev_attribute *attr,
583 char *buf)
584{
585 struct sysdev_ext_attribute *ea = to_ext_attr(attr);
586 return snprintf(buf, PAGE_SIZE, "%d\n", *(int *)(ea->var));
587}
588EXPORT_SYMBOL_GPL(sysdev_show_int);
589