blob: 8e13fd9421635753f7b634ba4177b5df003a074f [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
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600129static struct kset *system_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131int sysdev_class_register(struct sysdev_class * cls)
132{
133 pr_debug("Registering sysdev class '%s'\n",
134 kobject_name(&cls->kset.kobj));
135 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
144void sysdev_class_unregister(struct sysdev_class * cls)
145{
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
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700170 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (cls && kset_get(&cls->kset)) {
172 list_add_tail(&drv->entry, &cls->drivers);
173
174 /* If devices of this class already exist, tell the driver */
175 if (drv->add) {
176 struct sys_device *dev;
177 list_for_each_entry(dev, &cls->kset.list, kobj.entry)
178 drv->add(dev);
179 }
Akinobu Mita44b760a2007-08-19 16:51:14 +0900180 } else {
181 err = -EINVAL;
182 printk(KERN_ERR "%s: invalid device class\n", __FUNCTION__);
183 WARN_ON(1);
184 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700185 mutex_unlock(&sysdev_drivers_lock);
Akinobu Mita44b760a2007-08-19 16:51:14 +0900186 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
189
190/**
191 * sysdev_driver_unregister - Remove an auxillary driver.
192 * @cls: Class driver belongs to.
193 * @drv: Driver.
194 */
195void sysdev_driver_unregister(struct sysdev_class * cls,
196 struct sysdev_driver * drv)
197{
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700198 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 list_del_init(&drv->entry);
200 if (cls) {
201 if (drv->remove) {
202 struct sys_device *dev;
203 list_for_each_entry(dev, &cls->kset.list, kobj.entry)
204 drv->remove(dev);
205 }
206 kset_put(&cls->kset);
207 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700208 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
211EXPORT_SYMBOL_GPL(sysdev_driver_register);
212EXPORT_SYMBOL_GPL(sysdev_driver_unregister);
213
214
215
216/**
217 * sysdev_register - add a system device to the tree
218 * @sysdev: device in question
219 *
220 */
221int sysdev_register(struct sys_device * sysdev)
222{
223 int error;
224 struct sysdev_class * cls = sysdev->cls;
225
226 if (!cls)
227 return -EINVAL;
228
Greg Kroah-Hartman61030bf2007-12-17 15:54:39 -0400229 pr_debug("Registering sys device '%s'\n", kobject_name(&sysdev->kobj));
230
Greg Kroah-Hartmanef79df22008-03-09 03:37:16 +0530231 /* initialize the kobject to 0, in case it had previously been used */
232 memset(&sysdev->kobj, 0x00, sizeof(struct kobject));
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /* Make sure the kset is set */
235 sysdev->kobj.kset = &cls->kset;
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 /* Register the object */
Greg Kroah-Hartman61030bf2007-12-17 15:54:39 -0400238 error = kobject_init_and_add(&sysdev->kobj, &ktype_sysdev, NULL,
239 "%s%d", kobject_name(&cls->kset.kobj),
240 sysdev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 if (!error) {
243 struct sysdev_driver * drv;
244
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700245 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /* Generic notification is implicit, because it's that
247 * code that should have called us.
248 */
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /* Notify class auxillary drivers */
251 list_for_each_entry(drv, &cls->drivers, entry) {
252 if (drv->add)
253 drv->add(sysdev);
254 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700255 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
Greg Kroah-Hartman61030bf2007-12-17 15:54:39 -0400257 kobject_uevent(&sysdev->kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return error;
259}
260
261void sysdev_unregister(struct sys_device * sysdev)
262{
263 struct sysdev_driver * drv;
264
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700265 mutex_lock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 list_for_each_entry(drv, &sysdev->cls->drivers, entry) {
267 if (drv->remove)
268 drv->remove(sysdev);
269 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700270 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800272 kobject_put(&sysdev->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
275
276
277/**
278 * sysdev_shutdown - Shut down all system devices.
279 *
280 * Loop over each class of system devices, and the devices in each
281 * of those classes. For each device, we call the shutdown method for
Akinobu Mita44b760a2007-08-19 16:51:14 +0900282 * each driver registered for the device - the auxillaries,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 * and the class driver.
284 *
285 * Note: The list is iterated in reverse order, so that we shut down
286 * child devices before we shut down thier parents. The list ordering
287 * is guaranteed by virtue of the fact that child devices are registered
288 * after their parents.
289 */
290
291void sysdev_shutdown(void)
292{
293 struct sysdev_class * cls;
294
295 pr_debug("Shutting Down System Devices\n");
296
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700297 mutex_lock(&sysdev_drivers_lock);
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600298 list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 struct sys_device * sysdev;
300
301 pr_debug("Shutting down type '%s':\n",
302 kobject_name(&cls->kset.kobj));
303
304 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
305 struct sysdev_driver * drv;
306 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
307
Akinobu Mita44b760a2007-08-19 16:51:14 +0900308 /* Call auxillary drivers first */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 list_for_each_entry(drv, &cls->drivers, entry) {
310 if (drv->shutdown)
311 drv->shutdown(sysdev);
312 }
313
314 /* Now call the generic one */
315 if (cls->shutdown)
316 cls->shutdown(sysdev);
317 }
318 }
Matthias Kaehlcke9f3f7762007-05-23 14:19:42 -0700319 mutex_unlock(&sysdev_drivers_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
Shaohua Liceaeade2005-08-11 10:37:39 +0800322static void __sysdev_resume(struct sys_device *dev)
323{
324 struct sysdev_class *cls = dev->cls;
325 struct sysdev_driver *drv;
326
327 /* First, call the class-specific one */
328 if (cls->resume)
329 cls->resume(dev);
330
331 /* Call auxillary drivers next. */
332 list_for_each_entry(drv, &cls->drivers, entry) {
333 if (drv->resume)
334 drv->resume(dev);
335 }
Shaohua Liceaeade2005-08-11 10:37:39 +0800336}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338/**
339 * sysdev_suspend - Suspend all system devices.
340 * @state: Power state to enter.
341 *
342 * We perform an almost identical operation as sys_device_shutdown()
343 * above, though calling ->suspend() instead. Interrupts are disabled
344 * when this called. Devices are responsible for both saving state and
345 * quiescing or powering down the device.
346 *
347 * This is only called by the device PM core, so we let them handle
348 * all synchronization.
349 */
350
Pavel Machek438510f2005-04-16 15:25:24 -0700351int sysdev_suspend(pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 struct sysdev_class * cls;
Shaohua Liceaeade2005-08-11 10:37:39 +0800354 struct sys_device *sysdev, *err_dev;
355 struct sysdev_driver *drv, *err_drv;
356 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 pr_debug("Suspending System Devices\n");
359
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600360 list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 pr_debug("Suspending type '%s':\n",
362 kobject_name(&cls->kset.kobj));
363
364 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
366
Akinobu Mita44b760a2007-08-19 16:51:14 +0900367 /* Call auxillary drivers first */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 list_for_each_entry(drv, &cls->drivers, entry) {
Shaohua Liceaeade2005-08-11 10:37:39 +0800369 if (drv->suspend) {
370 ret = drv->suspend(sysdev, state);
371 if (ret)
372 goto aux_driver;
373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375
376 /* Now call the generic one */
Shaohua Liceaeade2005-08-11 10:37:39 +0800377 if (cls->suspend) {
378 ret = cls->suspend(sysdev, state);
379 if (ret)
380 goto cls_driver;
381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383 }
384 return 0;
Shaohua Liceaeade2005-08-11 10:37:39 +0800385 /* resume current sysdev */
386cls_driver:
387 drv = NULL;
388 printk(KERN_ERR "Class suspend failed for %s\n",
389 kobject_name(&sysdev->kobj));
390
391aux_driver:
392 if (drv)
393 printk(KERN_ERR "Class driver suspend failed for %s\n",
394 kobject_name(&sysdev->kobj));
395 list_for_each_entry(err_drv, &cls->drivers, entry) {
396 if (err_drv == drv)
397 break;
398 if (err_drv->resume)
399 err_drv->resume(sysdev);
400 }
Shaohua Liceaeade2005-08-11 10:37:39 +0800401
Shaohua Liceaeade2005-08-11 10:37:39 +0800402 /* resume other sysdevs in current class */
403 list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
404 if (err_dev == sysdev)
405 break;
406 pr_debug(" %s\n", kobject_name(&err_dev->kobj));
407 __sysdev_resume(err_dev);
408 }
409
410 /* resume other classes */
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600411 list_for_each_entry_continue(cls, &system_kset->list, kset.kobj.entry) {
Shaohua Liceaeade2005-08-11 10:37:39 +0800412 list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
413 pr_debug(" %s\n", kobject_name(&err_dev->kobj));
414 __sysdev_resume(err_dev);
415 }
416 }
417 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
420
421/**
422 * sysdev_resume - Bring system devices back to life.
423 *
424 * Similar to sys_device_suspend(), but we iterate the list forwards
425 * to guarantee that parent devices are resumed before their children.
426 *
427 * Note: Interrupts are disabled when called.
428 */
429
430int sysdev_resume(void)
431{
432 struct sysdev_class * cls;
433
434 pr_debug("Resuming System Devices\n");
435
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600436 list_for_each_entry(cls, &system_kset->list, kset.kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 struct sys_device * sysdev;
438
439 pr_debug("Resuming type '%s':\n",
440 kobject_name(&cls->kset.kobj));
441
442 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
444
Shaohua Liceaeade2005-08-11 10:37:39 +0800445 __sysdev_resume(sysdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
447 }
448 return 0;
449}
450
451
452int __init system_bus_init(void)
453{
Greg Kroah-Hartmanaade4042007-11-01 09:29:06 -0600454 system_kset = kset_create_and_add("system", NULL, &devices_kset->kobj);
455 if (!system_kset)
456 return -ENOMEM;
457 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460EXPORT_SYMBOL_GPL(sysdev_register);
461EXPORT_SYMBOL_GPL(sysdev_unregister);