blob: 7693c95848e63b34d0caea3bb10a5f948c8ecf6c [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
33sysdev_show(struct kobject * kobj, struct attribute * attr, char * buffer)
34{
35 struct sys_device * sysdev = to_sysdev(kobj);
36 struct sysdev_attribute * sysdev_attr = to_sysdev_attr(attr);
37
38 if (sysdev_attr->show)
39 return sysdev_attr->show(sysdev, buffer);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050040 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041}
42
43
44static ssize_t
45sysdev_store(struct kobject * kobj, struct attribute * attr,
46 const char * buffer, size_t count)
47{
48 struct sys_device * sysdev = to_sysdev(kobj);
49 struct sysdev_attribute * sysdev_attr = to_sysdev_attr(attr);
50
51 if (sysdev_attr->store)
52 return sysdev_attr->store(sysdev, 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
66int sysdev_create_file(struct sys_device * s, struct sysdev_attribute * a)
67{
68 return sysfs_create_file(&s->kobj, &a->attr);
69}
70
71
72void sysdev_remove_file(struct sys_device * s, struct sysdev_attribute * a)
73{
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{
87 struct sysdev_class * class = to_sysdev_class(kobj);
88 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{
98 struct sysdev_class * class = to_sysdev_class(kobj);
99 struct sysdev_class_attribute * class_attr = to_sysdev_class_attr(attr);
100
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/*
130 * declare system_subsys
131 */
Greg Kroah-Hartman3514fac2007-10-16 10:11:44 -0600132static decl_subsys(system, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134int sysdev_class_register(struct sysdev_class * cls)
135{
136 pr_debug("Registering sysdev class '%s'\n",
137 kobject_name(&cls->kset.kobj));
138 INIT_LIST_HEAD(&cls->drivers);
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700139 cls->kset.kobj.parent = &system_subsys.kobj;
Greg Kroah-Hartman3514fac2007-10-16 10:11:44 -0600140 cls->kset.kobj.ktype = &ktype_sysdev_class;
Greg Kroah-Hartman27f20e52007-09-12 15:06:57 -0700141 cls->kset.kobj.kset = &system_subsys;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return kset_register(&cls->kset);
143}
144
145void sysdev_class_unregister(struct sysdev_class * cls)
146{
147 pr_debug("Unregistering sysdev class '%s'\n",
148 kobject_name(&cls->kset.kobj));
149 kset_unregister(&cls->kset);
150}
151
152EXPORT_SYMBOL_GPL(sysdev_class_register);
153EXPORT_SYMBOL_GPL(sysdev_class_unregister);
154
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700155static DEFINE_MUTEX(sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157/**
158 * sysdev_driver_register - Register auxillary driver
Akinobu Mita44b760a2007-08-19 16:51:14 +0900159 * @cls: Device class driver belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 * @drv: Driver.
161 *
Akinobu Mita44b760a2007-08-19 16:51:14 +0900162 * @drv is inserted into @cls->drivers to be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 * called on each operation on devices of that class. The refcount
164 * of @cls is incremented.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 */
166
Akinobu Mita44b760a2007-08-19 16:51:14 +0900167int sysdev_driver_register(struct sysdev_class *cls, struct sysdev_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Akinobu Mita44b760a2007-08-19 16:51:14 +0900169 int err = 0;
170
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700171 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (cls && kset_get(&cls->kset)) {
173 list_add_tail(&drv->entry, &cls->drivers);
174
175 /* If devices of this class already exist, tell the driver */
176 if (drv->add) {
177 struct sys_device *dev;
178 list_for_each_entry(dev, &cls->kset.list, kobj.entry)
179 drv->add(dev);
180 }
Akinobu Mita44b760a2007-08-19 16:51:14 +0900181 } else {
182 err = -EINVAL;
183 printk(KERN_ERR "%s: invalid device class\n", __FUNCTION__);
184 WARN_ON(1);
185 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700186 mutex_unlock(&sysdev_drivers_lock);
Akinobu Mita44b760a2007-08-19 16:51:14 +0900187 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
190
191/**
192 * sysdev_driver_unregister - Remove an auxillary driver.
193 * @cls: Class driver belongs to.
194 * @drv: Driver.
195 */
196void sysdev_driver_unregister(struct sysdev_class * cls,
197 struct sysdev_driver * drv)
198{
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700199 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 list_del_init(&drv->entry);
201 if (cls) {
202 if (drv->remove) {
203 struct sys_device *dev;
204 list_for_each_entry(dev, &cls->kset.list, kobj.entry)
205 drv->remove(dev);
206 }
207 kset_put(&cls->kset);
208 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700209 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
212EXPORT_SYMBOL_GPL(sysdev_driver_register);
213EXPORT_SYMBOL_GPL(sysdev_driver_unregister);
214
215
216
217/**
218 * sysdev_register - add a system device to the tree
219 * @sysdev: device in question
220 *
221 */
222int sysdev_register(struct sys_device * sysdev)
223{
224 int error;
225 struct sysdev_class * cls = sysdev->cls;
226
227 if (!cls)
228 return -EINVAL;
229
230 /* Make sure the kset is set */
231 sysdev->kobj.kset = &cls->kset;
232
233 /* But make sure we point to the right type for sysfs translation */
234 sysdev->kobj.ktype = &ktype_sysdev;
235 error = kobject_set_name(&sysdev->kobj, "%s%d",
236 kobject_name(&cls->kset.kobj), sysdev->id);
237 if (error)
238 return error;
239
240 pr_debug("Registering sys device '%s'\n", kobject_name(&sysdev->kobj));
241
242 /* Register the object */
243 error = kobject_register(&sysdev->kobj);
244
245 if (!error) {
246 struct sysdev_driver * drv;
247
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700248 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 /* Generic notification is implicit, because it's that
250 * code that should have called us.
251 */
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /* Notify class auxillary drivers */
254 list_for_each_entry(drv, &cls->drivers, entry) {
255 if (drv->add)
256 drv->add(sysdev);
257 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700258 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
260 return error;
261}
262
263void sysdev_unregister(struct sys_device * sysdev)
264{
265 struct sysdev_driver * drv;
266
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700267 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 list_for_each_entry(drv, &sysdev->cls->drivers, entry) {
269 if (drv->remove)
270 drv->remove(sysdev);
271 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700272 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 kobject_unregister(&sysdev->kobj);
275}
276
277
278
279/**
280 * sysdev_shutdown - Shut down all system devices.
281 *
282 * Loop over each class of system devices, and the devices in each
283 * of those classes. For each device, we call the shutdown method for
Akinobu Mita44b760a2007-08-19 16:51:14 +0900284 * each driver registered for the device - the auxillaries,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * and the class driver.
286 *
287 * Note: The list is iterated in reverse order, so that we shut down
288 * child devices before we shut down thier parents. The list ordering
289 * is guaranteed by virtue of the fact that child devices are registered
290 * after their parents.
291 */
292
293void sysdev_shutdown(void)
294{
295 struct sysdev_class * cls;
296
297 pr_debug("Shutting Down System Devices\n");
298
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700299 mutex_lock(&sysdev_drivers_lock);
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700300 list_for_each_entry_reverse(cls, &system_subsys.list,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 kset.kobj.entry) {
302 struct sys_device * sysdev;
303
304 pr_debug("Shutting down type '%s':\n",
305 kobject_name(&cls->kset.kobj));
306
307 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
308 struct sysdev_driver * drv;
309 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
310
Akinobu Mita44b760a2007-08-19 16:51:14 +0900311 /* Call auxillary drivers first */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 list_for_each_entry(drv, &cls->drivers, entry) {
313 if (drv->shutdown)
314 drv->shutdown(sysdev);
315 }
316
317 /* Now call the generic one */
318 if (cls->shutdown)
319 cls->shutdown(sysdev);
320 }
321 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700322 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
Shaohua Liceaeade2005-08-11 10:37:39 +0800325static void __sysdev_resume(struct sys_device *dev)
326{
327 struct sysdev_class *cls = dev->cls;
328 struct sysdev_driver *drv;
329
330 /* First, call the class-specific one */
331 if (cls->resume)
332 cls->resume(dev);
333
334 /* Call auxillary drivers next. */
335 list_for_each_entry(drv, &cls->drivers, entry) {
336 if (drv->resume)
337 drv->resume(dev);
338 }
Shaohua Liceaeade2005-08-11 10:37:39 +0800339}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341/**
342 * sysdev_suspend - Suspend all system devices.
343 * @state: Power state to enter.
344 *
345 * We perform an almost identical operation as sys_device_shutdown()
346 * above, though calling ->suspend() instead. Interrupts are disabled
347 * when this called. Devices are responsible for both saving state and
348 * quiescing or powering down the device.
349 *
350 * This is only called by the device PM core, so we let them handle
351 * all synchronization.
352 */
353
Pavel Machek438510f2005-04-16 15:25:24 -0700354int sysdev_suspend(pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 struct sysdev_class * cls;
Shaohua Liceaeade2005-08-11 10:37:39 +0800357 struct sys_device *sysdev, *err_dev;
358 struct sysdev_driver *drv, *err_drv;
359 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 pr_debug("Suspending System Devices\n");
362
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700363 list_for_each_entry_reverse(cls, &system_subsys.list,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 kset.kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 pr_debug("Suspending type '%s':\n",
367 kobject_name(&cls->kset.kobj));
368
369 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
371
Akinobu Mita44b760a2007-08-19 16:51:14 +0900372 /* Call auxillary drivers first */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 list_for_each_entry(drv, &cls->drivers, entry) {
Shaohua Liceaeade2005-08-11 10:37:39 +0800374 if (drv->suspend) {
375 ret = drv->suspend(sysdev, state);
376 if (ret)
377 goto aux_driver;
378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380
381 /* Now call the generic one */
Shaohua Liceaeade2005-08-11 10:37:39 +0800382 if (cls->suspend) {
383 ret = cls->suspend(sysdev, state);
384 if (ret)
385 goto cls_driver;
386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388 }
389 return 0;
Shaohua Liceaeade2005-08-11 10:37:39 +0800390 /* resume current sysdev */
391cls_driver:
392 drv = NULL;
393 printk(KERN_ERR "Class suspend failed for %s\n",
394 kobject_name(&sysdev->kobj));
395
396aux_driver:
397 if (drv)
398 printk(KERN_ERR "Class driver suspend failed for %s\n",
399 kobject_name(&sysdev->kobj));
400 list_for_each_entry(err_drv, &cls->drivers, entry) {
401 if (err_drv == drv)
402 break;
403 if (err_drv->resume)
404 err_drv->resume(sysdev);
405 }
Shaohua Liceaeade2005-08-11 10:37:39 +0800406
Shaohua Liceaeade2005-08-11 10:37:39 +0800407 /* resume other sysdevs in current class */
408 list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
409 if (err_dev == sysdev)
410 break;
411 pr_debug(" %s\n", kobject_name(&err_dev->kobj));
412 __sysdev_resume(err_dev);
413 }
414
415 /* resume other classes */
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700416 list_for_each_entry_continue(cls, &system_subsys.list,
Shaohua Liceaeade2005-08-11 10:37:39 +0800417 kset.kobj.entry) {
418 list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
419 pr_debug(" %s\n", kobject_name(&err_dev->kobj));
420 __sysdev_resume(err_dev);
421 }
422 }
423 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
426
427/**
428 * sysdev_resume - Bring system devices back to life.
429 *
430 * Similar to sys_device_suspend(), but we iterate the list forwards
431 * to guarantee that parent devices are resumed before their children.
432 *
433 * Note: Interrupts are disabled when called.
434 */
435
436int sysdev_resume(void)
437{
438 struct sysdev_class * cls;
439
440 pr_debug("Resuming System Devices\n");
441
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700442 list_for_each_entry(cls, &system_subsys.list, kset.kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 struct sys_device * sysdev;
444
445 pr_debug("Resuming type '%s':\n",
446 kobject_name(&cls->kset.kobj));
447
448 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
450
Shaohua Liceaeade2005-08-11 10:37:39 +0800451 __sysdev_resume(sysdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453 }
454 return 0;
455}
456
457
458int __init system_bus_init(void)
459{
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -0600460 system_subsys.kobj.parent = &devices_kset->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return subsystem_register(&system_subsys);
462}
463
464EXPORT_SYMBOL_GPL(sysdev_register);
465EXPORT_SYMBOL_GPL(sysdev_unregister);