2 * sys.c - pseudo-bus for system 'devices' (cpus, PICs, timers, etc)
4 * Copyright (c) 2002-3 Patrick Mochel
5 * 2002-3 Open Source Development Lab
7 * This file is released under the GPLv2
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.
15 #include <linux/config.h>
16 #include <linux/sysdev.h>
17 #include <linux/err.h>
18 #include <linux/module.h>
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/slab.h>
22 #include <linux/string.h>
24 #include <asm/semaphore.h>
26 extern struct subsystem devices_subsys;
28 #define to_sysdev(k) container_of(k, struct sys_device, kobj)
29 #define to_sysdev_attr(a) container_of(a, struct sysdev_attribute, attr)
33 sysdev_show(struct kobject * kobj, struct attribute * attr, char * buffer)
35 struct sys_device * sysdev = to_sysdev(kobj);
36 struct sysdev_attribute * sysdev_attr = to_sysdev_attr(attr);
38 if (sysdev_attr->show)
39 return sysdev_attr->show(sysdev, buffer);
45 sysdev_store(struct kobject * kobj, struct attribute * attr,
46 const char * buffer, size_t count)
48 struct sys_device * sysdev = to_sysdev(kobj);
49 struct sysdev_attribute * sysdev_attr = to_sysdev_attr(attr);
51 if (sysdev_attr->store)
52 return sysdev_attr->store(sysdev, buffer, count);
56 static struct sysfs_ops sysfs_ops = {
58 .store = sysdev_store,
61 static struct kobj_type ktype_sysdev = {
62 .sysfs_ops = &sysfs_ops,
66 int sysdev_create_file(struct sys_device * s, struct sysdev_attribute * a)
68 return sysfs_create_file(&s->kobj, &a->attr);
72 void sysdev_remove_file(struct sys_device * s, struct sysdev_attribute * a)
74 sysfs_remove_file(&s->kobj, &a->attr);
77 EXPORT_SYMBOL_GPL(sysdev_create_file);
78 EXPORT_SYMBOL_GPL(sysdev_remove_file);
81 * declare system_subsys
83 static decl_subsys(system, &ktype_sysdev, NULL);
85 int sysdev_class_register(struct sysdev_class * cls)
87 pr_debug("Registering sysdev class '%s'\n",
88 kobject_name(&cls->kset.kobj));
89 INIT_LIST_HEAD(&cls->drivers);
90 cls->kset.subsys = &system_subsys;
91 kset_set_kset_s(cls, system_subsys);
92 return kset_register(&cls->kset);
95 void sysdev_class_unregister(struct sysdev_class * cls)
97 pr_debug("Unregistering sysdev class '%s'\n",
98 kobject_name(&cls->kset.kobj));
99 kset_unregister(&cls->kset);
102 EXPORT_SYMBOL_GPL(sysdev_class_register);
103 EXPORT_SYMBOL_GPL(sysdev_class_unregister);
106 static LIST_HEAD(sysdev_drivers);
107 static DECLARE_MUTEX(sysdev_drivers_lock);
110 * sysdev_driver_register - Register auxillary driver
111 * @cls: Device class driver belongs to.
114 * If @cls is valid, then @drv is inserted into @cls->drivers to be
115 * called on each operation on devices of that class. The refcount
116 * of @cls is incremented.
117 * Otherwise, @drv is inserted into sysdev_drivers, and called for
121 int sysdev_driver_register(struct sysdev_class * cls,
122 struct sysdev_driver * drv)
124 down(&sysdev_drivers_lock);
125 if (cls && kset_get(&cls->kset)) {
126 list_add_tail(&drv->entry, &cls->drivers);
128 /* If devices of this class already exist, tell the driver */
130 struct sys_device *dev;
131 list_for_each_entry(dev, &cls->kset.list, kobj.entry)
135 list_add_tail(&drv->entry, &sysdev_drivers);
136 up(&sysdev_drivers_lock);
142 * sysdev_driver_unregister - Remove an auxillary driver.
143 * @cls: Class driver belongs to.
146 void sysdev_driver_unregister(struct sysdev_class * cls,
147 struct sysdev_driver * drv)
149 down(&sysdev_drivers_lock);
150 list_del_init(&drv->entry);
153 struct sys_device *dev;
154 list_for_each_entry(dev, &cls->kset.list, kobj.entry)
157 kset_put(&cls->kset);
159 up(&sysdev_drivers_lock);
162 EXPORT_SYMBOL_GPL(sysdev_driver_register);
163 EXPORT_SYMBOL_GPL(sysdev_driver_unregister);
168 * sysdev_register - add a system device to the tree
169 * @sysdev: device in question
172 int sysdev_register(struct sys_device * sysdev)
175 struct sysdev_class * cls = sysdev->cls;
180 /* Make sure the kset is set */
181 sysdev->kobj.kset = &cls->kset;
183 /* But make sure we point to the right type for sysfs translation */
184 sysdev->kobj.ktype = &ktype_sysdev;
185 error = kobject_set_name(&sysdev->kobj, "%s%d",
186 kobject_name(&cls->kset.kobj), sysdev->id);
190 pr_debug("Registering sys device '%s'\n", kobject_name(&sysdev->kobj));
192 /* Register the object */
193 error = kobject_register(&sysdev->kobj);
196 struct sysdev_driver * drv;
198 down(&sysdev_drivers_lock);
199 /* Generic notification is implicit, because it's that
200 * code that should have called us.
203 /* Notify global drivers */
204 list_for_each_entry(drv, &sysdev_drivers, entry) {
209 /* Notify class auxillary drivers */
210 list_for_each_entry(drv, &cls->drivers, entry) {
214 up(&sysdev_drivers_lock);
219 void sysdev_unregister(struct sys_device * sysdev)
221 struct sysdev_driver * drv;
223 down(&sysdev_drivers_lock);
224 list_for_each_entry(drv, &sysdev_drivers, entry) {
229 list_for_each_entry(drv, &sysdev->cls->drivers, entry) {
233 up(&sysdev_drivers_lock);
235 kobject_unregister(&sysdev->kobj);
241 * sysdev_shutdown - Shut down all system devices.
243 * Loop over each class of system devices, and the devices in each
244 * of those classes. For each device, we call the shutdown method for
245 * each driver registered for the device - the globals, the auxillaries,
246 * and the class driver.
248 * Note: The list is iterated in reverse order, so that we shut down
249 * child devices before we shut down thier parents. The list ordering
250 * is guaranteed by virtue of the fact that child devices are registered
251 * after their parents.
254 void sysdev_shutdown(void)
256 struct sysdev_class * cls;
258 pr_debug("Shutting Down System Devices\n");
260 down(&sysdev_drivers_lock);
261 list_for_each_entry_reverse(cls, &system_subsys.kset.list,
263 struct sys_device * sysdev;
265 pr_debug("Shutting down type '%s':\n",
266 kobject_name(&cls->kset.kobj));
268 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
269 struct sysdev_driver * drv;
270 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
272 /* Call global drivers first. */
273 list_for_each_entry(drv, &sysdev_drivers, entry) {
275 drv->shutdown(sysdev);
278 /* Call auxillary drivers next. */
279 list_for_each_entry(drv, &cls->drivers, entry) {
281 drv->shutdown(sysdev);
284 /* Now call the generic one */
286 cls->shutdown(sysdev);
289 up(&sysdev_drivers_lock);
292 static void __sysdev_resume(struct sys_device *dev)
294 struct sysdev_class *cls = dev->cls;
295 struct sysdev_driver *drv;
297 /* First, call the class-specific one */
301 /* Call auxillary drivers next. */
302 list_for_each_entry(drv, &cls->drivers, entry) {
307 /* Call global drivers. */
308 list_for_each_entry(drv, &sysdev_drivers, entry) {
315 * sysdev_suspend - Suspend all system devices.
316 * @state: Power state to enter.
318 * We perform an almost identical operation as sys_device_shutdown()
319 * above, though calling ->suspend() instead. Interrupts are disabled
320 * when this called. Devices are responsible for both saving state and
321 * quiescing or powering down the device.
323 * This is only called by the device PM core, so we let them handle
324 * all synchronization.
327 int sysdev_suspend(pm_message_t state)
329 struct sysdev_class * cls;
330 struct sys_device *sysdev, *err_dev;
331 struct sysdev_driver *drv, *err_drv;
334 pr_debug("Suspending System Devices\n");
336 list_for_each_entry_reverse(cls, &system_subsys.kset.list,
339 pr_debug("Suspending type '%s':\n",
340 kobject_name(&cls->kset.kobj));
342 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
343 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
345 /* Call global drivers first. */
346 list_for_each_entry(drv, &sysdev_drivers, entry) {
348 ret = drv->suspend(sysdev, state);
354 /* Call auxillary drivers next. */
355 list_for_each_entry(drv, &cls->drivers, entry) {
357 ret = drv->suspend(sysdev, state);
363 /* Now call the generic one */
365 ret = cls->suspend(sysdev, state);
372 /* resume current sysdev */
375 printk(KERN_ERR "Class suspend failed for %s\n",
376 kobject_name(&sysdev->kobj));
380 printk(KERN_ERR "Class driver suspend failed for %s\n",
381 kobject_name(&sysdev->kobj));
382 list_for_each_entry(err_drv, &cls->drivers, entry) {
386 err_drv->resume(sysdev);
392 printk(KERN_ERR "sysdev driver suspend failed for %s\n",
393 kobject_name(&sysdev->kobj));
394 list_for_each_entry(err_drv, &sysdev_drivers, entry) {
398 err_drv->resume(sysdev);
400 /* resume other sysdevs in current class */
401 list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
402 if (err_dev == sysdev)
404 pr_debug(" %s\n", kobject_name(&err_dev->kobj));
405 __sysdev_resume(err_dev);
408 /* resume other classes */
409 list_for_each_entry_continue(cls, &system_subsys.kset.list,
411 list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
412 pr_debug(" %s\n", kobject_name(&err_dev->kobj));
413 __sysdev_resume(err_dev);
421 * sysdev_resume - Bring system devices back to life.
423 * Similar to sys_device_suspend(), but we iterate the list forwards
424 * to guarantee that parent devices are resumed before their children.
426 * Note: Interrupts are disabled when called.
429 int sysdev_resume(void)
431 struct sysdev_class * cls;
433 pr_debug("Resuming System Devices\n");
435 list_for_each_entry(cls, &system_subsys.kset.list, kset.kobj.entry) {
436 struct sys_device * sysdev;
438 pr_debug("Resuming type '%s':\n",
439 kobject_name(&cls->kset.kobj));
441 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
442 pr_debug(" %s\n", kobject_name(&sysdev->kobj));
444 __sysdev_resume(sysdev);
451 int __init system_bus_init(void)
453 system_subsys.kset.kobj.parent = &devices_subsys.kset.kobj;
454 return subsystem_register(&system_subsys);
457 EXPORT_SYMBOL_GPL(sysdev_register);
458 EXPORT_SYMBOL_GPL(sysdev_unregister);