Fix bogus warning in sysdev_driver_register()
[safe/jmp/linux-2.6] / drivers / base / sys.c
1 /*
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
15 #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>
22 #include <linux/pm.h>
23 #include <linux/device.h>
24 #include <linux/mutex.h>
25
26 #include "base.h"
27
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)
30
31
32 static ssize_t
33 sysdev_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);
40         return -EIO;
41 }
42
43
44 static ssize_t
45 sysdev_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);
53         return -EIO;
54 }
55
56 static struct sysfs_ops sysfs_ops = {
57         .show   = sysdev_show,
58         .store  = sysdev_store,
59 };
60
61 static struct kobj_type ktype_sysdev = {
62         .sysfs_ops      = &sysfs_ops,
63 };
64
65
66 int sysdev_create_file(struct sys_device * s, struct sysdev_attribute * a)
67 {
68         return sysfs_create_file(&s->kobj, &a->attr);
69 }
70
71
72 void sysdev_remove_file(struct sys_device * s, struct sysdev_attribute * a)
73 {
74         sysfs_remove_file(&s->kobj, &a->attr);
75 }
76
77 EXPORT_SYMBOL_GPL(sysdev_create_file);
78 EXPORT_SYMBOL_GPL(sysdev_remove_file);
79
80 #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
84 static 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
95 static 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
106 static struct sysfs_ops sysfs_class_ops = {
107         .show   = sysdev_class_show,
108         .store  = sysdev_class_store,
109 };
110
111 static struct kobj_type ktype_sysdev_class = {
112         .sysfs_ops      = &sysfs_class_ops,
113 };
114
115 int 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 }
120 EXPORT_SYMBOL_GPL(sysdev_class_create_file);
121
122 void 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 }
127 EXPORT_SYMBOL_GPL(sysdev_class_remove_file);
128
129 static struct kset *system_kset;
130
131 int 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);
136         memset(&cls->kset.kobj, 0x00, sizeof(struct kobject));
137         cls->kset.kobj.parent = &system_kset->kobj;
138         cls->kset.kobj.ktype = &ktype_sysdev_class;
139         cls->kset.kobj.kset = system_kset;
140         kobject_set_name(&cls->kset.kobj, cls->name);
141         return kset_register(&cls->kset);
142 }
143
144 void 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
151 EXPORT_SYMBOL_GPL(sysdev_class_register);
152 EXPORT_SYMBOL_GPL(sysdev_class_unregister);
153
154 static DEFINE_MUTEX(sysdev_drivers_lock);
155
156 /**
157  *      sysdev_driver_register - Register auxillary driver
158  *      @cls:   Device class driver belongs to.
159  *      @drv:   Driver.
160  *
161  *      @drv is inserted into @cls->drivers to be
162  *      called on each operation on devices of that class. The refcount
163  *      of @cls is incremented.
164  */
165
166 int sysdev_driver_register(struct sysdev_class *cls, struct sysdev_driver *drv)
167 {
168         int err = 0;
169
170         if (!cls) {
171                 printk(KERN_WARNING "sysdev: invalid class passed to "
172                         "sysdev_driver_register!\n");
173                 WARN_ON(1);
174                 return -EINVAL;
175         }
176
177         /* Check whether this driver has already been added to a class. */
178         if (drv->entry.next && !list_empty(&drv->entry)) {
179                 printk(KERN_WARNING "sysdev: class %s: driver (%p) has already"
180                         " been registered to a class, something is wrong, but "
181                         "will forge on!\n", cls->name, drv);
182                 WARN_ON(1);
183         }
184
185         mutex_lock(&sysdev_drivers_lock);
186         if (cls && kset_get(&cls->kset)) {
187                 list_add_tail(&drv->entry, &cls->drivers);
188
189                 /* If devices of this class already exist, tell the driver */
190                 if (drv->add) {
191                         struct sys_device *dev;
192                         list_for_each_entry(dev, &cls->kset.list, kobj.entry)
193                                 drv->add(dev);
194                 }
195         } else {
196                 err = -EINVAL;
197                 printk(KERN_ERR "%s: invalid device class\n", __func__);
198                 WARN_ON(1);
199         }
200         mutex_unlock(&sysdev_drivers_lock);
201         return err;
202 }
203
204
205 /**
206  *      sysdev_driver_unregister - Remove an auxillary driver.
207  *      @cls:   Class driver belongs to.
208  *      @drv:   Driver.
209  */
210 void sysdev_driver_unregister(struct sysdev_class * cls,
211                               struct sysdev_driver * drv)
212 {
213         mutex_lock(&sysdev_drivers_lock);
214         list_del_init(&drv->entry);
215         if (cls) {
216                 if (drv->remove) {
217                         struct sys_device *dev;
218                         list_for_each_entry(dev, &cls->kset.list, kobj.entry)
219                                 drv->remove(dev);
220                 }
221                 kset_put(&cls->kset);
222         }
223         mutex_unlock(&sysdev_drivers_lock);
224 }
225
226 EXPORT_SYMBOL_GPL(sysdev_driver_register);
227 EXPORT_SYMBOL_GPL(sysdev_driver_unregister);
228
229
230
231 /**
232  *      sysdev_register - add a system device to the tree
233  *      @sysdev:        device in question
234  *
235  */
236 int sysdev_register(struct sys_device * sysdev)
237 {
238         int error;
239         struct sysdev_class * cls = sysdev->cls;
240
241         if (!cls)
242                 return -EINVAL;
243
244         pr_debug("Registering sys device '%s'\n", kobject_name(&sysdev->kobj));
245
246         /* initialize the kobject to 0, in case it had previously been used */
247         memset(&sysdev->kobj, 0x00, sizeof(struct kobject));
248
249         /* Make sure the kset is set */
250         sysdev->kobj.kset = &cls->kset;
251
252         /* Register the object */
253         error = kobject_init_and_add(&sysdev->kobj, &ktype_sysdev, NULL,
254                                      "%s%d", kobject_name(&cls->kset.kobj),
255                                      sysdev->id);
256
257         if (!error) {
258                 struct sysdev_driver * drv;
259
260                 mutex_lock(&sysdev_drivers_lock);
261                 /* Generic notification is implicit, because it's that
262                  * code that should have called us.
263                  */
264
265                 /* Notify class auxillary drivers */
266                 list_for_each_entry(drv, &cls->drivers, entry) {
267                         if (drv->add)
268                                 drv->add(sysdev);
269                 }
270                 mutex_unlock(&sysdev_drivers_lock);
271         }
272         kobject_uevent(&sysdev->kobj, KOBJ_ADD);
273         return error;
274 }
275
276 void sysdev_unregister(struct sys_device * sysdev)
277 {
278         struct sysdev_driver * drv;
279
280         mutex_lock(&sysdev_drivers_lock);
281         list_for_each_entry(drv, &sysdev->cls->drivers, entry) {
282                 if (drv->remove)
283                         drv->remove(sysdev);
284         }
285         mutex_unlock(&sysdev_drivers_lock);
286
287         kobject_put(&sysdev->kobj);
288 }
289
290
291
292 /**
293  *      sysdev_shutdown - Shut down all system devices.
294  *
295  *      Loop over each class of system devices, and the devices in each
296  *      of those classes. For each device, we call the shutdown method for
297  *      each driver registered for the device - the auxillaries,
298  *      and the class driver.
299  *
300  *      Note: The list is iterated in reverse order, so that we shut down
301  *      child devices before we shut down thier parents. The list ordering
302  *      is guaranteed by virtue of the fact that child devices are registered
303  *      after their parents.
304  */
305
306 void sysdev_shutdown(void)
307 {
308         struct sysdev_class * cls;
309
310         pr_debug("Shutting Down System Devices\n");
311
312         mutex_lock(&sysdev_drivers_lock);
313         list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) {
314                 struct sys_device * sysdev;
315
316                 pr_debug("Shutting down type '%s':\n",
317                          kobject_name(&cls->kset.kobj));
318
319                 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
320                         struct sysdev_driver * drv;
321                         pr_debug(" %s\n", kobject_name(&sysdev->kobj));
322
323                         /* Call auxillary drivers first */
324                         list_for_each_entry(drv, &cls->drivers, entry) {
325                                 if (drv->shutdown)
326                                         drv->shutdown(sysdev);
327                         }
328
329                         /* Now call the generic one */
330                         if (cls->shutdown)
331                                 cls->shutdown(sysdev);
332                 }
333         }
334         mutex_unlock(&sysdev_drivers_lock);
335 }
336
337 static void __sysdev_resume(struct sys_device *dev)
338 {
339         struct sysdev_class *cls = dev->cls;
340         struct sysdev_driver *drv;
341
342         /* First, call the class-specific one */
343         if (cls->resume)
344                 cls->resume(dev);
345
346         /* Call auxillary drivers next. */
347         list_for_each_entry(drv, &cls->drivers, entry) {
348                 if (drv->resume)
349                         drv->resume(dev);
350         }
351 }
352
353 /**
354  *      sysdev_suspend - Suspend all system devices.
355  *      @state:         Power state to enter.
356  *
357  *      We perform an almost identical operation as sys_device_shutdown()
358  *      above, though calling ->suspend() instead. Interrupts are disabled
359  *      when this called. Devices are responsible for both saving state and
360  *      quiescing or powering down the device.
361  *
362  *      This is only called by the device PM core, so we let them handle
363  *      all synchronization.
364  */
365
366 int sysdev_suspend(pm_message_t state)
367 {
368         struct sysdev_class * cls;
369         struct sys_device *sysdev, *err_dev;
370         struct sysdev_driver *drv, *err_drv;
371         int ret;
372
373         pr_debug("Suspending System Devices\n");
374
375         list_for_each_entry_reverse(cls, &system_kset->list, kset.kobj.entry) {
376                 pr_debug("Suspending type '%s':\n",
377                          kobject_name(&cls->kset.kobj));
378
379                 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
380                         pr_debug(" %s\n", kobject_name(&sysdev->kobj));
381
382                         /* Call auxillary drivers first */
383                         list_for_each_entry(drv, &cls->drivers, entry) {
384                                 if (drv->suspend) {
385                                         ret = drv->suspend(sysdev, state);
386                                         if (ret)
387                                                 goto aux_driver;
388                                 }
389                         }
390
391                         /* Now call the generic one */
392                         if (cls->suspend) {
393                                 ret = cls->suspend(sysdev, state);
394                                 if (ret)
395                                         goto cls_driver;
396                         }
397                 }
398         }
399         return 0;
400         /* resume current sysdev */
401 cls_driver:
402         drv = NULL;
403         printk(KERN_ERR "Class suspend failed for %s\n",
404                 kobject_name(&sysdev->kobj));
405
406 aux_driver:
407         if (drv)
408                 printk(KERN_ERR "Class driver suspend failed for %s\n",
409                                 kobject_name(&sysdev->kobj));
410         list_for_each_entry(err_drv, &cls->drivers, entry) {
411                 if (err_drv == drv)
412                         break;
413                 if (err_drv->resume)
414                         err_drv->resume(sysdev);
415         }
416
417         /* resume other sysdevs in current class */
418         list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
419                 if (err_dev == sysdev)
420                         break;
421                 pr_debug(" %s\n", kobject_name(&err_dev->kobj));
422                 __sysdev_resume(err_dev);
423         }
424
425         /* resume other classes */
426         list_for_each_entry_continue(cls, &system_kset->list, kset.kobj.entry) {
427                 list_for_each_entry(err_dev, &cls->kset.list, kobj.entry) {
428                         pr_debug(" %s\n", kobject_name(&err_dev->kobj));
429                         __sysdev_resume(err_dev);
430                 }
431         }
432         return ret;
433 }
434
435
436 /**
437  *      sysdev_resume - Bring system devices back to life.
438  *
439  *      Similar to sys_device_suspend(), but we iterate the list forwards
440  *      to guarantee that parent devices are resumed before their children.
441  *
442  *      Note: Interrupts are disabled when called.
443  */
444
445 int sysdev_resume(void)
446 {
447         struct sysdev_class * cls;
448
449         pr_debug("Resuming System Devices\n");
450
451         list_for_each_entry(cls, &system_kset->list, kset.kobj.entry) {
452                 struct sys_device * sysdev;
453
454                 pr_debug("Resuming type '%s':\n",
455                          kobject_name(&cls->kset.kobj));
456
457                 list_for_each_entry(sysdev, &cls->kset.list, kobj.entry) {
458                         pr_debug(" %s\n", kobject_name(&sysdev->kobj));
459
460                         __sysdev_resume(sysdev);
461                 }
462         }
463         return 0;
464 }
465
466
467 int __init system_bus_init(void)
468 {
469         system_kset = kset_create_and_add("system", NULL, &devices_kset->kobj);
470         if (!system_kset)
471                 return -ENOMEM;
472         return 0;
473 }
474
475 EXPORT_SYMBOL_GPL(sysdev_register);
476 EXPORT_SYMBOL_GPL(sysdev_unregister);