blob: 8980feec5d14e37bbbb947bcd91900d147582ff4 [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>
Rafael J. Wysocki2ed8d2b32009-03-16 22:34:06 +010025#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Adrian Bunkf67d1152006-01-19 17:30:17 +010027#include "base.h"
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#define to_sysdev(k) container_of(k, struct sys_device, kobj)
30#define to_sysdev_attr(a) container_of(a, struct sysdev_attribute, attr)
31
32
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
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600130static struct kset *system_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Zhenwen Xu60530af2009-03-03 18:36:02 +0800132int sysdev_class_register(struct sysdev_class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Dave Young9227c472009-05-11 14:18:55 +0800134 int retval;
135
Ben Dooks838ea8e2008-06-12 19:00:34 +0100136 pr_debug("Registering sysdev class '%s'\n", cls->name);
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 INIT_LIST_HEAD(&cls->drivers);
Greg Kroah-Hartmanef79df22008-03-09 03:37:16 +0530139 memset(&cls->kset.kobj, 0x00, sizeof(struct kobject));
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600140 cls->kset.kobj.parent = &system_kset->kobj;
Greg Kroah-Hartman3514fac2007-10-16 10:11:44 -0600141 cls->kset.kobj.ktype = &ktype_sysdev_class;
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600142 cls->kset.kobj.kset = system_kset;
Dave Young9227c472009-05-11 14:18:55 +0800143
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700144 retval = kobject_set_name(&cls->kset.kobj, "%s", cls->name);
Dave Young9227c472009-05-11 14:18:55 +0800145 if (retval)
146 return retval;
147
Andi Kleen38457ab2010-01-05 12:48:02 +0100148 retval = kset_register(&cls->kset);
149 if (!retval && cls->attrs)
150 retval = sysfs_create_files(&cls->kset.kobj,
151 (const struct attribute **)cls->attrs);
152 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Zhenwen Xu60530af2009-03-03 18:36:02 +0800155void sysdev_class_unregister(struct sysdev_class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 pr_debug("Unregistering sysdev class '%s'\n",
158 kobject_name(&cls->kset.kobj));
Andi Kleen38457ab2010-01-05 12:48:02 +0100159 if (cls->attrs)
160 sysfs_remove_files(&cls->kset.kobj,
161 (const struct attribute **)cls->attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 kset_unregister(&cls->kset);
163}
164
165EXPORT_SYMBOL_GPL(sysdev_class_register);
166EXPORT_SYMBOL_GPL(sysdev_class_unregister);
167
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700168static DEFINE_MUTEX(sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170/**
171 * sysdev_driver_register - Register auxillary driver
Akinobu Mita44b760a2007-08-19 16:51:14 +0900172 * @cls: Device class driver belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 * @drv: Driver.
174 *
Akinobu Mita44b760a2007-08-19 16:51:14 +0900175 * @drv is inserted into @cls->drivers to be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * called on each operation on devices of that class. The refcount
177 * of @cls is incremented.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 */
179
Akinobu Mita44b760a2007-08-19 16:51:14 +0900180int sysdev_driver_register(struct sysdev_class *cls, struct sysdev_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Akinobu Mita44b760a2007-08-19 16:51:14 +0900182 int err = 0;
183
Ben Dooksda009f32008-03-04 15:09:06 -0800184 if (!cls) {
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700185 WARN(1, KERN_WARNING "sysdev: invalid class passed to "
Ben Dooksda009f32008-03-04 15:09:06 -0800186 "sysdev_driver_register!\n");
Ben Dooksda009f32008-03-04 15:09:06 -0800187 return -EINVAL;
188 }
189
190 /* Check whether this driver has already been added to a class. */
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700191 if (drv->entry.next && !list_empty(&drv->entry))
192 WARN(1, KERN_WARNING "sysdev: class %s: driver (%p) has already"
Ben Dooksda009f32008-03-04 15:09:06 -0800193 " been registered to a class, something is wrong, but "
194 "will forge on!\n", cls->name, drv);
Ben Dooksda009f32008-03-04 15:09:06 -0800195
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700196 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (cls && kset_get(&cls->kset)) {
198 list_add_tail(&drv->entry, &cls->drivers);
199
200 /* If devices of this class already exist, tell the driver */
201 if (drv->add) {
202 struct sys_device *dev;
203 list_for_each_entry(dev, &cls->kset.list, kobj.entry)
204 drv->add(dev);
205 }
Akinobu Mita44b760a2007-08-19 16:51:14 +0900206 } else {
207 err = -EINVAL;
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700208 WARN(1, KERN_ERR "%s: invalid device class\n", __func__);
Akinobu Mita44b760a2007-08-19 16:51:14 +0900209 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700210 mutex_unlock(&sysdev_drivers_lock);
Akinobu Mita44b760a2007-08-19 16:51:14 +0900211 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214
215/**
216 * sysdev_driver_unregister - Remove an auxillary driver.
217 * @cls: Class driver belongs to.
218 * @drv: Driver.
219 */
Zhenwen Xu60530af2009-03-03 18:36:02 +0800220void sysdev_driver_unregister(struct sysdev_class *cls,
221 struct sysdev_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700223 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 list_del_init(&drv->entry);
225 if (cls) {
226 if (drv->remove) {
227 struct sys_device *dev;
228 list_for_each_entry(dev, &cls->kset.list, kobj.entry)
229 drv->remove(dev);
230 }
231 kset_put(&cls->kset);
232 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700233 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236EXPORT_SYMBOL_GPL(sysdev_driver_register);
237EXPORT_SYMBOL_GPL(sysdev_driver_unregister);
238
239
240
241/**
242 * sysdev_register - add a system device to the tree
243 * @sysdev: device in question
244 *
245 */
Zhenwen Xu60530af2009-03-03 18:36:02 +0800246int sysdev_register(struct sys_device *sysdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 int error;
Zhenwen Xu60530af2009-03-03 18:36:02 +0800249 struct sysdev_class *cls = sysdev->cls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 if (!cls)
252 return -EINVAL;
253
Ben Dooks838ea8e2008-06-12 19:00:34 +0100254 pr_debug("Registering sys device of class '%s'\n",
255 kobject_name(&cls->kset.kobj));
Greg Kroah-Hartman61030bf2007-12-17 15:54:39 -0400256
Greg Kroah-Hartmanef79df22008-03-09 03:37:16 +0530257 /* initialize the kobject to 0, in case it had previously been used */
258 memset(&sysdev->kobj, 0x00, sizeof(struct kobject));
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 /* Make sure the kset is set */
261 sysdev->kobj.kset = &cls->kset;
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /* Register the object */
Greg Kroah-Hartman61030bf2007-12-17 15:54:39 -0400264 error = kobject_init_and_add(&sysdev->kobj, &ktype_sysdev, NULL,
265 "%s%d", kobject_name(&cls->kset.kobj),
266 sysdev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 if (!error) {
Zhenwen Xu60530af2009-03-03 18:36:02 +0800269 struct sysdev_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Ben Dooks838ea8e2008-06-12 19:00:34 +0100271 pr_debug("Registering sys device '%s'\n",
272 kobject_name(&sysdev->kobj));
273
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700274 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* Generic notification is implicit, because it's that
276 * code that should have called us.
277 */
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /* Notify class auxillary drivers */
280 list_for_each_entry(drv, &cls->drivers, entry) {
281 if (drv->add)
282 drv->add(sysdev);
283 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700284 mutex_unlock(&sysdev_drivers_lock);
Xiaotian Feng79f03132009-07-24 17:31:41 +0800285 kobject_uevent(&sysdev->kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
Ben Dooks838ea8e2008-06-12 19:00:34 +0100287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return error;
289}
290
Zhenwen Xu60530af2009-03-03 18:36:02 +0800291void sysdev_unregister(struct sys_device *sysdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Zhenwen Xu60530af2009-03-03 18:36:02 +0800293 struct sysdev_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700295 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 list_for_each_entry(drv, &sysdev->cls->drivers, entry) {
297 if (drv->remove)
298 drv->remove(sysdev);
299 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700300 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800302 kobject_put(&sysdev->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
305
306
307/**
308 * sysdev_shutdown - Shut down all system devices.
309 *
310 * Loop over each class of system devices, and the devices in each
311 * of those classes. For each device, we call the shutdown method for
Akinobu Mita44b760a2007-08-19 16:51:14 +0900312 * each driver registered for the device - the auxillaries,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * and the class driver.
314 *
315 * Note: The list is iterated in reverse order, so that we shut down
Uwe Kleine-Koenigee6921f2009-01-12 23:35:46 +0100316 * child devices before we shut down their parents. The list ordering
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 * is guaranteed by virtue of the fact that child devices are registered
318 * after their parents.
319 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320void sysdev_shutdown(void)
321{
Zhenwen Xu60530af2009-03-03 18:36:02 +0800322 struct sysdev_class *cls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 pr_debug("Shutting Down System Devices\n");
325
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700326 mutex_lock(&sysdev_drivers_lock);
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600327 list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) {
Zhenwen Xu60530af2009-03-03 18:36:02 +0800328 struct sys_device *sysdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 pr_debug("Shutting down type '%s':\n",
331 kobject_name(&cls->kset.kobj));
332
333 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
Zhenwen Xu60530af2009-03-03 18:36:02 +0800334 struct sysdev_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
336
Akinobu Mita44b760a2007-08-19 16:51:14 +0900337 /* Call auxillary drivers first */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 list_for_each_entry(drv, &cls->drivers, entry) {
339 if (drv->shutdown)
340 drv->shutdown(sysdev);
341 }
342
343 /* Now call the generic one */
344 if (cls->shutdown)
345 cls->shutdown(sysdev);
346 }
347 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700348 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Shaohua Liceaeade2005-08-11 10:37:39 +0800351static void __sysdev_resume(struct sys_device *dev)
352{
353 struct sysdev_class *cls = dev->cls;
354 struct sysdev_driver *drv;
355
356 /* First, call the class-specific one */
357 if (cls->resume)
358 cls->resume(dev);
Rafael J. Wysocki62b01242009-04-18 13:45:13 +0200359 WARN_ONCE(!irqs_disabled(),
360 "Interrupts enabled after %pF\n", cls->resume);
Shaohua Liceaeade2005-08-11 10:37:39 +0800361
362 /* Call auxillary drivers next. */
363 list_for_each_entry(drv, &cls->drivers, entry) {
364 if (drv->resume)
365 drv->resume(dev);
Rafael J. Wysocki62b01242009-04-18 13:45:13 +0200366 WARN_ONCE(!irqs_disabled(),
367 "Interrupts enabled after %pF\n", drv->resume);
Shaohua Liceaeade2005-08-11 10:37:39 +0800368 }
Shaohua Liceaeade2005-08-11 10:37:39 +0800369}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371/**
372 * sysdev_suspend - Suspend all system devices.
373 * @state: Power state to enter.
374 *
Qinghuang Feng65151362008-10-13 18:05:04 +0800375 * We perform an almost identical operation as sysdev_shutdown()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 * above, though calling ->suspend() instead. Interrupts are disabled
377 * when this called. Devices are responsible for both saving state and
378 * quiescing or powering down the device.
379 *
380 * This is only called by the device PM core, so we let them handle
381 * all synchronization.
382 */
Pavel Machek438510f2005-04-16 15:25:24 -0700383int sysdev_suspend(pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Zhenwen Xu60530af2009-03-03 18:36:02 +0800385 struct sysdev_class *cls;
Shaohua Liceaeade2005-08-11 10:37:39 +0800386 struct sys_device *sysdev, *err_dev;
387 struct sysdev_driver *drv, *err_drv;
388 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Rafael J. Wysocki2ed8d2b32009-03-16 22:34:06 +0100390 pr_debug("Checking wake-up interrupts\n");
391
392 /* Return error code if there are any wake-up interrupts pending */
393 ret = check_wakeup_irqs();
394 if (ret)
395 return ret;
396
Rafael J. Wysocki62b01242009-04-18 13:45:13 +0200397 WARN_ONCE(!irqs_disabled(),
398 "Interrupts enabled while suspending system devices\n");
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 pr_debug("Suspending System Devices\n");
401
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600402 list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 pr_debug("Suspending type '%s':\n",
404 kobject_name(&cls->kset.kobj));
405
406 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
408
Akinobu Mita44b760a2007-08-19 16:51:14 +0900409 /* Call auxillary drivers first */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 list_for_each_entry(drv, &cls->drivers, entry) {
Shaohua Liceaeade2005-08-11 10:37:39 +0800411 if (drv->suspend) {
412 ret = drv->suspend(sysdev, state);
413 if (ret)
414 goto aux_driver;
415 }
Rafael J. Wysocki62b01242009-04-18 13:45:13 +0200416 WARN_ONCE(!irqs_disabled(),
417 "Interrupts enabled after %pF\n",
418 drv->suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
421 /* Now call the generic one */
Shaohua Liceaeade2005-08-11 10:37:39 +0800422 if (cls->suspend) {
423 ret = cls->suspend(sysdev, state);
424 if (ret)
425 goto cls_driver;
Rafael J. Wysocki62b01242009-04-18 13:45:13 +0200426 WARN_ONCE(!irqs_disabled(),
427 "Interrupts enabled after %pF\n",
428 cls->suspend);
Shaohua Liceaeade2005-08-11 10:37:39 +0800429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431 }
432 return 0;
Shaohua Liceaeade2005-08-11 10:37:39 +0800433 /* resume current sysdev */
434cls_driver:
435 drv = NULL;
436 printk(KERN_ERR "Class suspend failed for %s\n",
437 kobject_name(&sysdev->kobj));
438
439aux_driver:
440 if (drv)
441 printk(KERN_ERR "Class driver suspend failed for %s\n",
442 kobject_name(&sysdev->kobj));
443 list_for_each_entry(err_drv, &cls->drivers, entry) {
444 if (err_drv == drv)
445 break;
446 if (err_drv->resume)
447 err_drv->resume(sysdev);
448 }
Shaohua Liceaeade2005-08-11 10:37:39 +0800449
Shaohua Liceaeade2005-08-11 10:37:39 +0800450 /* resume other sysdevs in current class */
451 list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
452 if (err_dev == sysdev)
453 break;
454 pr_debug(" %s\n", kobject_name(&err_dev->kobj));
455 __sysdev_resume(err_dev);
456 }
457
458 /* resume other classes */
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600459 list_for_each_entry_continue(cls, &system_kset->list, kset.kobj.entry) {
Shaohua Liceaeade2005-08-11 10:37:39 +0800460 list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
461 pr_debug(" %s\n", kobject_name(&err_dev->kobj));
462 __sysdev_resume(err_dev);
463 }
464 }
465 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
Ingo Molnar0f99fed2009-02-22 22:07:03 +0100467EXPORT_SYMBOL_GPL(sysdev_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469/**
470 * sysdev_resume - Bring system devices back to life.
471 *
Qinghuang Feng65151362008-10-13 18:05:04 +0800472 * Similar to sysdev_suspend(), but we iterate the list forwards
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 * to guarantee that parent devices are resumed before their children.
474 *
475 * Note: Interrupts are disabled when called.
476 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477int sysdev_resume(void)
478{
Zhenwen Xu60530af2009-03-03 18:36:02 +0800479 struct sysdev_class *cls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Rafael J. Wysocki62b01242009-04-18 13:45:13 +0200481 WARN_ONCE(!irqs_disabled(),
482 "Interrupts enabled while resuming system devices\n");
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 pr_debug("Resuming System Devices\n");
485
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600486 list_for_each_entry(cls, &system_kset->list, kset.kobj.entry) {
Zhenwen Xu60530af2009-03-03 18:36:02 +0800487 struct sys_device *sysdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 pr_debug("Resuming type '%s':\n",
490 kobject_name(&cls->kset.kobj));
491
492 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
494
Shaohua Liceaeade2005-08-11 10:37:39 +0800495 __sysdev_resume(sysdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
497 }
498 return 0;
499}
Ingo Molnar0f99fed2009-02-22 22:07:03 +0100500EXPORT_SYMBOL_GPL(sysdev_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502int __init system_bus_init(void)
503{
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600504 system_kset = kset_create_and_add("system", NULL, &devices_kset->kobj);
505 if (!system_kset)
506 return -ENOMEM;
507 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
510EXPORT_SYMBOL_GPL(sysdev_register);
511EXPORT_SYMBOL_GPL(sysdev_unregister);
Andi Kleen98007942008-07-01 18:48:42 +0200512
513#define to_ext_attr(x) container_of(x, struct sysdev_ext_attribute, attr)
514
515ssize_t sysdev_store_ulong(struct sys_device *sysdev,
516 struct sysdev_attribute *attr,
517 const char *buf, size_t size)
518{
519 struct sysdev_ext_attribute *ea = to_ext_attr(attr);
520 char *end;
521 unsigned long new = simple_strtoul(buf, &end, 0);
522 if (end == buf)
523 return -EINVAL;
524 *(unsigned long *)(ea->var) = new;
Andi Kleen4e318d72008-10-13 12:03:03 +0200525 /* Always return full write size even if we didn't consume all */
526 return size;
Andi Kleen98007942008-07-01 18:48:42 +0200527}
528EXPORT_SYMBOL_GPL(sysdev_store_ulong);
529
530ssize_t sysdev_show_ulong(struct sys_device *sysdev,
531 struct sysdev_attribute *attr,
532 char *buf)
533{
534 struct sysdev_ext_attribute *ea = to_ext_attr(attr);
535 return snprintf(buf, PAGE_SIZE, "%lx\n", *(unsigned long *)(ea->var));
536}
537EXPORT_SYMBOL_GPL(sysdev_show_ulong);
538
539ssize_t sysdev_store_int(struct sys_device *sysdev,
540 struct sysdev_attribute *attr,
541 const char *buf, size_t size)
542{
543 struct sysdev_ext_attribute *ea = to_ext_attr(attr);
544 char *end;
545 long new = simple_strtol(buf, &end, 0);
546 if (end == buf || new > INT_MAX || new < INT_MIN)
547 return -EINVAL;
548 *(int *)(ea->var) = new;
Andi Kleen4e318d72008-10-13 12:03:03 +0200549 /* Always return full write size even if we didn't consume all */
550 return size;
Andi Kleen98007942008-07-01 18:48:42 +0200551}
552EXPORT_SYMBOL_GPL(sysdev_store_int);
553
554ssize_t sysdev_show_int(struct sys_device *sysdev,
555 struct sysdev_attribute *attr,
556 char *buf)
557{
558 struct sysdev_ext_attribute *ea = to_ext_attr(attr);
559 return snprintf(buf, PAGE_SIZE, "%d\n", *(int *)(ea->var));
560}
561EXPORT_SYMBOL_GPL(sysdev_show_int);
562