kset: convert /sys/devices to use kset_create
[safe/jmp/linux-2.6] / drivers / base / core.c
1 /*
2  * drivers/base/core.c - core driver model code (device registration, etc)
3  *
4  * Copyright (c) 2002-3 Patrick Mochel
5  * Copyright (c) 2002-3 Open Source Development Labs
6  * Copyright (c) 2006 Greg Kroah-Hartman <gregkh@suse.de>
7  * Copyright (c) 2006 Novell, Inc.
8  *
9  * This file is released under the GPLv2
10  *
11  */
12
13 #include <linux/device.h>
14 #include <linux/err.h>
15 #include <linux/init.h>
16 #include <linux/module.h>
17 #include <linux/slab.h>
18 #include <linux/string.h>
19 #include <linux/kdev_t.h>
20 #include <linux/notifier.h>
21
22 #include <asm/semaphore.h>
23
24 #include "base.h"
25 #include "power/power.h"
26
27 int (*platform_notify)(struct device * dev) = NULL;
28 int (*platform_notify_remove)(struct device * dev) = NULL;
29
30 /*
31  * sysfs bindings for devices.
32  */
33
34 /**
35  * dev_driver_string - Return a device's driver name, if at all possible
36  * @dev: struct device to get the name of
37  *
38  * Will return the device's driver's name if it is bound to a device.  If
39  * the device is not bound to a device, it will return the name of the bus
40  * it is attached to.  If it is not attached to a bus either, an empty
41  * string will be returned.
42  */
43 const char *dev_driver_string(struct device *dev)
44 {
45         return dev->driver ? dev->driver->name :
46                         (dev->bus ? dev->bus->name :
47                         (dev->class ? dev->class->name : ""));
48 }
49 EXPORT_SYMBOL(dev_driver_string);
50
51 #define to_dev(obj) container_of(obj, struct device, kobj)
52 #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
53
54 static ssize_t
55 dev_attr_show(struct kobject * kobj, struct attribute * attr, char * buf)
56 {
57         struct device_attribute * dev_attr = to_dev_attr(attr);
58         struct device * dev = to_dev(kobj);
59         ssize_t ret = -EIO;
60
61         if (dev_attr->show)
62                 ret = dev_attr->show(dev, dev_attr, buf);
63         return ret;
64 }
65
66 static ssize_t
67 dev_attr_store(struct kobject * kobj, struct attribute * attr,
68                const char * buf, size_t count)
69 {
70         struct device_attribute * dev_attr = to_dev_attr(attr);
71         struct device * dev = to_dev(kobj);
72         ssize_t ret = -EIO;
73
74         if (dev_attr->store)
75                 ret = dev_attr->store(dev, dev_attr, buf, count);
76         return ret;
77 }
78
79 static struct sysfs_ops dev_sysfs_ops = {
80         .show   = dev_attr_show,
81         .store  = dev_attr_store,
82 };
83
84
85 /**
86  *      device_release - free device structure.
87  *      @kobj:  device's kobject.
88  *
89  *      This is called once the reference count for the object
90  *      reaches 0. We forward the call to the device's release
91  *      method, which should handle actually freeing the structure.
92  */
93 static void device_release(struct kobject * kobj)
94 {
95         struct device * dev = to_dev(kobj);
96
97         if (dev->release)
98                 dev->release(dev);
99         else if (dev->type && dev->type->release)
100                 dev->type->release(dev);
101         else if (dev->class && dev->class->dev_release)
102                 dev->class->dev_release(dev);
103         else {
104                 printk(KERN_ERR "Device '%s' does not have a release() function, "
105                         "it is broken and must be fixed.\n",
106                         dev->bus_id);
107                 WARN_ON(1);
108         }
109 }
110
111 static struct kobj_type device_ktype = {
112         .release        = device_release,
113         .sysfs_ops      = &dev_sysfs_ops,
114 };
115
116
117 static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
118 {
119         struct kobj_type *ktype = get_ktype(kobj);
120
121         if (ktype == &device_ktype) {
122                 struct device *dev = to_dev(kobj);
123                 if (dev->uevent_suppress)
124                         return 0;
125                 if (dev->bus)
126                         return 1;
127                 if (dev->class)
128                         return 1;
129         }
130         return 0;
131 }
132
133 static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
134 {
135         struct device *dev = to_dev(kobj);
136
137         if (dev->bus)
138                 return dev->bus->name;
139         if (dev->class)
140                 return dev->class->name;
141         return NULL;
142 }
143
144 static int dev_uevent(struct kset *kset, struct kobject *kobj,
145                       struct kobj_uevent_env *env)
146 {
147         struct device *dev = to_dev(kobj);
148         int retval = 0;
149
150         /* add the major/minor if present */
151         if (MAJOR(dev->devt)) {
152                 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
153                 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
154         }
155
156         if (dev->type && dev->type->name)
157                 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
158
159         if (dev->driver)
160                 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
161
162 #ifdef CONFIG_SYSFS_DEPRECATED
163         if (dev->class) {
164                 struct device *parent = dev->parent;
165
166                 /* find first bus device in parent chain */
167                 while (parent && !parent->bus)
168                         parent = parent->parent;
169                 if (parent && parent->bus) {
170                         const char *path;
171
172                         path = kobject_get_path(&parent->kobj, GFP_KERNEL);
173                         if (path) {
174                                 add_uevent_var(env, "PHYSDEVPATH=%s", path);
175                                 kfree(path);
176                         }
177
178                         add_uevent_var(env, "PHYSDEVBUS=%s", parent->bus->name);
179
180                         if (parent->driver)
181                                 add_uevent_var(env, "PHYSDEVDRIVER=%s",
182                                                parent->driver->name);
183                 }
184         } else if (dev->bus) {
185                 add_uevent_var(env, "PHYSDEVBUS=%s", dev->bus->name);
186
187                 if (dev->driver)
188                         add_uevent_var(env, "PHYSDEVDRIVER=%s", dev->driver->name);
189         }
190 #endif
191
192         /* have the bus specific function add its stuff */
193         if (dev->bus && dev->bus->uevent) {
194                 retval = dev->bus->uevent(dev, env);
195                 if (retval)
196                         pr_debug ("%s: bus uevent() returned %d\n",
197                                   __FUNCTION__, retval);
198         }
199
200         /* have the class specific function add its stuff */
201         if (dev->class && dev->class->dev_uevent) {
202                 retval = dev->class->dev_uevent(dev, env);
203                 if (retval)
204                         pr_debug("%s: class uevent() returned %d\n",
205                                  __FUNCTION__, retval);
206         }
207
208         /* have the device type specific fuction add its stuff */
209         if (dev->type && dev->type->uevent) {
210                 retval = dev->type->uevent(dev, env);
211                 if (retval)
212                         pr_debug("%s: dev_type uevent() returned %d\n",
213                                  __FUNCTION__, retval);
214         }
215
216         return retval;
217 }
218
219 static struct kset_uevent_ops device_uevent_ops = {
220         .filter =       dev_uevent_filter,
221         .name =         dev_uevent_name,
222         .uevent =       dev_uevent,
223 };
224
225 static ssize_t show_uevent(struct device *dev, struct device_attribute *attr,
226                            char *buf)
227 {
228         struct kobject *top_kobj;
229         struct kset *kset;
230         struct kobj_uevent_env *env = NULL;
231         int i;
232         size_t count = 0;
233         int retval;
234
235         /* search the kset, the device belongs to */
236         top_kobj = &dev->kobj;
237         while (!top_kobj->kset && top_kobj->parent)
238                 top_kobj = top_kobj->parent;
239         if (!top_kobj->kset)
240                 goto out;
241
242         kset = top_kobj->kset;
243         if (!kset->uevent_ops || !kset->uevent_ops->uevent)
244                 goto out;
245
246         /* respect filter */
247         if (kset->uevent_ops && kset->uevent_ops->filter)
248                 if (!kset->uevent_ops->filter(kset, &dev->kobj))
249                         goto out;
250
251         env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
252         if (!env)
253                 return -ENOMEM;
254
255         /* let the kset specific function add its keys */
256         retval = kset->uevent_ops->uevent(kset, &dev->kobj, env);
257         if (retval)
258                 goto out;
259
260         /* copy keys to file */
261         for (i = 0; i < env->envp_idx; i++)
262                 count += sprintf(&buf[count], "%s\n", env->envp[i]);
263 out:
264         kfree(env);
265         return count;
266 }
267
268 static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
269                             const char *buf, size_t count)
270 {
271         enum kobject_action action;
272
273         if (kobject_action_type(buf, count, &action) == 0) {
274                 kobject_uevent(&dev->kobj, action);
275                 goto out;
276         }
277
278         dev_err(dev, "uevent: unsupported action-string; this will "
279                      "be ignored in a future kernel version\n");
280         kobject_uevent(&dev->kobj, KOBJ_ADD);
281 out:
282         return count;
283 }
284
285 static struct device_attribute uevent_attr =
286         __ATTR(uevent, S_IRUGO | S_IWUSR, show_uevent, store_uevent);
287
288 static int device_add_attributes(struct device *dev,
289                                  struct device_attribute *attrs)
290 {
291         int error = 0;
292         int i;
293
294         if (attrs) {
295                 for (i = 0; attr_name(attrs[i]); i++) {
296                         error = device_create_file(dev, &attrs[i]);
297                         if (error)
298                                 break;
299                 }
300                 if (error)
301                         while (--i >= 0)
302                                 device_remove_file(dev, &attrs[i]);
303         }
304         return error;
305 }
306
307 static void device_remove_attributes(struct device *dev,
308                                      struct device_attribute *attrs)
309 {
310         int i;
311
312         if (attrs)
313                 for (i = 0; attr_name(attrs[i]); i++)
314                         device_remove_file(dev, &attrs[i]);
315 }
316
317 static int device_add_groups(struct device *dev,
318                              struct attribute_group **groups)
319 {
320         int error = 0;
321         int i;
322
323         if (groups) {
324                 for (i = 0; groups[i]; i++) {
325                         error = sysfs_create_group(&dev->kobj, groups[i]);
326                         if (error) {
327                                 while (--i >= 0)
328                                         sysfs_remove_group(&dev->kobj, groups[i]);
329                                 break;
330                         }
331                 }
332         }
333         return error;
334 }
335
336 static void device_remove_groups(struct device *dev,
337                                  struct attribute_group **groups)
338 {
339         int i;
340
341         if (groups)
342                 for (i = 0; groups[i]; i++)
343                         sysfs_remove_group(&dev->kobj, groups[i]);
344 }
345
346 static int device_add_attrs(struct device *dev)
347 {
348         struct class *class = dev->class;
349         struct device_type *type = dev->type;
350         int error;
351
352         if (class) {
353                 error = device_add_attributes(dev, class->dev_attrs);
354                 if (error)
355                         return error;
356         }
357
358         if (type) {
359                 error = device_add_groups(dev, type->groups);
360                 if (error)
361                         goto err_remove_class_attrs;
362         }
363
364         error = device_add_groups(dev, dev->groups);
365         if (error)
366                 goto err_remove_type_groups;
367
368         return 0;
369
370  err_remove_type_groups:
371         if (type)
372                 device_remove_groups(dev, type->groups);
373  err_remove_class_attrs:
374         if (class)
375                 device_remove_attributes(dev, class->dev_attrs);
376
377         return error;
378 }
379
380 static void device_remove_attrs(struct device *dev)
381 {
382         struct class *class = dev->class;
383         struct device_type *type = dev->type;
384
385         device_remove_groups(dev, dev->groups);
386
387         if (type)
388                 device_remove_groups(dev, type->groups);
389
390         if (class)
391                 device_remove_attributes(dev, class->dev_attrs);
392 }
393
394
395 static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
396                         char *buf)
397 {
398         return print_dev_t(buf, dev->devt);
399 }
400
401 static struct device_attribute devt_attr =
402         __ATTR(dev, S_IRUGO, show_dev, NULL);
403
404 /* kset to create /sys/devices/  */
405 struct kset *devices_kset;
406
407
408 /**
409  *      device_create_file - create sysfs attribute file for device.
410  *      @dev:   device.
411  *      @attr:  device attribute descriptor.
412  */
413
414 int device_create_file(struct device * dev, struct device_attribute * attr)
415 {
416         int error = 0;
417         if (get_device(dev)) {
418                 error = sysfs_create_file(&dev->kobj, &attr->attr);
419                 put_device(dev);
420         }
421         return error;
422 }
423
424 /**
425  *      device_remove_file - remove sysfs attribute file.
426  *      @dev:   device.
427  *      @attr:  device attribute descriptor.
428  */
429
430 void device_remove_file(struct device * dev, struct device_attribute * attr)
431 {
432         if (get_device(dev)) {
433                 sysfs_remove_file(&dev->kobj, &attr->attr);
434                 put_device(dev);
435         }
436 }
437
438 /**
439  * device_create_bin_file - create sysfs binary attribute file for device.
440  * @dev: device.
441  * @attr: device binary attribute descriptor.
442  */
443 int device_create_bin_file(struct device *dev, struct bin_attribute *attr)
444 {
445         int error = -EINVAL;
446         if (dev)
447                 error = sysfs_create_bin_file(&dev->kobj, attr);
448         return error;
449 }
450 EXPORT_SYMBOL_GPL(device_create_bin_file);
451
452 /**
453  * device_remove_bin_file - remove sysfs binary attribute file
454  * @dev: device.
455  * @attr: device binary attribute descriptor.
456  */
457 void device_remove_bin_file(struct device *dev, struct bin_attribute *attr)
458 {
459         if (dev)
460                 sysfs_remove_bin_file(&dev->kobj, attr);
461 }
462 EXPORT_SYMBOL_GPL(device_remove_bin_file);
463
464 /**
465  * device_schedule_callback_owner - helper to schedule a callback for a device
466  * @dev: device.
467  * @func: callback function to invoke later.
468  * @owner: module owning the callback routine
469  *
470  * Attribute methods must not unregister themselves or their parent device
471  * (which would amount to the same thing).  Attempts to do so will deadlock,
472  * since unregistration is mutually exclusive with driver callbacks.
473  *
474  * Instead methods can call this routine, which will attempt to allocate
475  * and schedule a workqueue request to call back @func with @dev as its
476  * argument in the workqueue's process context.  @dev will be pinned until
477  * @func returns.
478  *
479  * This routine is usually called via the inline device_schedule_callback(),
480  * which automatically sets @owner to THIS_MODULE.
481  *
482  * Returns 0 if the request was submitted, -ENOMEM if storage could not
483  * be allocated, -ENODEV if a reference to @owner isn't available.
484  *
485  * NOTE: This routine won't work if CONFIG_SYSFS isn't set!  It uses an
486  * underlying sysfs routine (since it is intended for use by attribute
487  * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
488  */
489 int device_schedule_callback_owner(struct device *dev,
490                 void (*func)(struct device *), struct module *owner)
491 {
492         return sysfs_schedule_callback(&dev->kobj,
493                         (void (*)(void *)) func, dev, owner);
494 }
495 EXPORT_SYMBOL_GPL(device_schedule_callback_owner);
496
497 static void klist_children_get(struct klist_node *n)
498 {
499         struct device *dev = container_of(n, struct device, knode_parent);
500
501         get_device(dev);
502 }
503
504 static void klist_children_put(struct klist_node *n)
505 {
506         struct device *dev = container_of(n, struct device, knode_parent);
507
508         put_device(dev);
509 }
510
511
512 /**
513  *      device_initialize - init device structure.
514  *      @dev:   device.
515  *
516  *      This prepares the device for use by other layers,
517  *      including adding it to the device hierarchy.
518  *      It is the first half of device_register(), if called by
519  *      that, though it can also be called separately, so one
520  *      may use @dev's fields (e.g. the refcount).
521  */
522
523 void device_initialize(struct device *dev)
524 {
525         dev->kobj.kset = devices_kset;
526         dev->kobj.ktype = &device_ktype;
527         kobject_init(&dev->kobj);
528         klist_init(&dev->klist_children, klist_children_get,
529                    klist_children_put);
530         INIT_LIST_HEAD(&dev->dma_pools);
531         INIT_LIST_HEAD(&dev->node);
532         init_MUTEX(&dev->sem);
533         spin_lock_init(&dev->devres_lock);
534         INIT_LIST_HEAD(&dev->devres_head);
535         device_init_wakeup(dev, 0);
536         set_dev_node(dev, -1);
537 }
538
539 #ifdef CONFIG_SYSFS_DEPRECATED
540 static struct kobject * get_device_parent(struct device *dev,
541                                           struct device *parent)
542 {
543         /*
544          * Set the parent to the class, not the parent device
545          * for topmost devices in class hierarchy.
546          * This keeps sysfs from having a symlink to make old
547          * udevs happy
548          */
549         if (dev->class && (!parent || parent->class != dev->class))
550                 return &dev->class->subsys.kobj;
551         else if (parent)
552                 return &parent->kobj;
553
554         return NULL;
555 }
556 #else
557 static struct kobject *virtual_device_parent(struct device *dev)
558 {
559         static struct kobject *virtual_dir = NULL;
560
561         if (!virtual_dir)
562                 virtual_dir = kobject_create_and_add("virtual",
563                                                      &devices_kset->kobj);
564
565         return virtual_dir;
566 }
567
568 static struct kobject * get_device_parent(struct device *dev,
569                                           struct device *parent)
570 {
571         int retval;
572
573         if (dev->class) {
574                 struct kobject *kobj = NULL;
575                 struct kobject *parent_kobj;
576                 struct kobject *k;
577
578                 /*
579                  * If we have no parent, we live in "virtual".
580                  * Class-devices with a bus-device as parent, live
581                  * in a class-directory to prevent namespace collisions.
582                  */
583                 if (parent == NULL)
584                         parent_kobj = virtual_device_parent(dev);
585                 else if (parent->class)
586                         return &parent->kobj;
587                 else
588                         parent_kobj = &parent->kobj;
589
590                 /* find our class-directory at the parent and reference it */
591                 spin_lock(&dev->class->class_dirs.list_lock);
592                 list_for_each_entry(k, &dev->class->class_dirs.list, entry)
593                         if (k->parent == parent_kobj) {
594                                 kobj = kobject_get(k);
595                                 break;
596                         }
597                 spin_unlock(&dev->class->class_dirs.list_lock);
598                 if (kobj)
599                         return kobj;
600
601                 /* or create a new class-directory at the parent device */
602                 k = kobject_create();
603                 if (!k)
604                         return NULL;
605                 k->kset = &dev->class->class_dirs;
606                 retval = kobject_add_ng(k, parent_kobj, "%s", dev->class->name);
607                 if (retval < 0) {
608                         kobject_put(k);
609                         return NULL;
610                 }
611                 /* Do not emit a uevent, as it's not needed for this
612                  * "class glue" directory. */
613                 return k;
614         }
615
616         if (parent)
617                 return &parent->kobj;
618         return NULL;
619 }
620 #endif
621
622 static int setup_parent(struct device *dev, struct device *parent)
623 {
624         struct kobject *kobj;
625         kobj = get_device_parent(dev, parent);
626         if (IS_ERR(kobj))
627                 return PTR_ERR(kobj);
628         if (kobj)
629                 dev->kobj.parent = kobj;
630         return 0;
631 }
632
633 static int device_add_class_symlinks(struct device *dev)
634 {
635         int error;
636
637         if (!dev->class)
638                 return 0;
639         error = sysfs_create_link(&dev->kobj, &dev->class->subsys.kobj,
640                                   "subsystem");
641         if (error)
642                 goto out;
643         /*
644          * If this is not a "fake" compatible device, then create the
645          * symlink from the class to the device.
646          */
647         if (dev->kobj.parent != &dev->class->subsys.kobj) {
648                 error = sysfs_create_link(&dev->class->subsys.kobj, &dev->kobj,
649                                           dev->bus_id);
650                 if (error)
651                         goto out_subsys;
652         }
653         if (dev->parent) {
654 #ifdef CONFIG_SYSFS_DEPRECATED
655                 {
656                         struct device *parent = dev->parent;
657                         char *class_name;
658
659                         /*
660                          * In old sysfs stacked class devices had 'device'
661                          * link pointing to real device instead of parent
662                          */
663                         while (parent->class && !parent->bus && parent->parent)
664                                 parent = parent->parent;
665
666                         error = sysfs_create_link(&dev->kobj,
667                                                   &parent->kobj,
668                                                   "device");
669                         if (error)
670                                 goto out_busid;
671
672                         class_name = make_class_name(dev->class->name,
673                                                         &dev->kobj);
674                         if (class_name)
675                                 error = sysfs_create_link(&dev->parent->kobj,
676                                                         &dev->kobj, class_name);
677                         kfree(class_name);
678                         if (error)
679                                 goto out_device;
680                 }
681 #else
682                 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
683                                           "device");
684                 if (error)
685                         goto out_busid;
686 #endif
687         }
688         return 0;
689
690 #ifdef CONFIG_SYSFS_DEPRECATED
691 out_device:
692         if (dev->parent)
693                 sysfs_remove_link(&dev->kobj, "device");
694 #endif
695 out_busid:
696         if (dev->kobj.parent != &dev->class->subsys.kobj)
697                 sysfs_remove_link(&dev->class->subsys.kobj, dev->bus_id);
698 out_subsys:
699         sysfs_remove_link(&dev->kobj, "subsystem");
700 out:
701         return error;
702 }
703
704 static void device_remove_class_symlinks(struct device *dev)
705 {
706         if (!dev->class)
707                 return;
708         if (dev->parent) {
709 #ifdef CONFIG_SYSFS_DEPRECATED
710                 char *class_name;
711
712                 class_name = make_class_name(dev->class->name, &dev->kobj);
713                 if (class_name) {
714                         sysfs_remove_link(&dev->parent->kobj, class_name);
715                         kfree(class_name);
716                 }
717 #endif
718                 sysfs_remove_link(&dev->kobj, "device");
719         }
720         if (dev->kobj.parent != &dev->class->subsys.kobj)
721                 sysfs_remove_link(&dev->class->subsys.kobj, dev->bus_id);
722         sysfs_remove_link(&dev->kobj, "subsystem");
723 }
724
725 /**
726  *      device_add - add device to device hierarchy.
727  *      @dev:   device.
728  *
729  *      This is part 2 of device_register(), though may be called
730  *      separately _iff_ device_initialize() has been called separately.
731  *
732  *      This adds it to the kobject hierarchy via kobject_add(), adds it
733  *      to the global and sibling lists for the device, then
734  *      adds it to the other relevant subsystems of the driver model.
735  */
736 int device_add(struct device *dev)
737 {
738         struct device *parent = NULL;
739         struct class_interface *class_intf;
740         int error;
741
742         error = pm_sleep_lock();
743         if (error) {
744                 dev_warn(dev, "Suspicious %s during suspend\n", __FUNCTION__);
745                 dump_stack();
746                 return error;
747         }
748
749         dev = get_device(dev);
750         if (!dev || !strlen(dev->bus_id)) {
751                 error = -EINVAL;
752                 goto Error;
753         }
754
755         pr_debug("DEV: registering device: ID = '%s'\n", dev->bus_id);
756
757         parent = get_device(dev->parent);
758         error = setup_parent(dev, parent);
759         if (error)
760                 goto Error;
761
762         /* first, register with generic layer. */
763         kobject_set_name(&dev->kobj, "%s", dev->bus_id);
764         error = kobject_add(&dev->kobj);
765         if (error)
766                 goto Error;
767
768         /* notify platform of device entry */
769         if (platform_notify)
770                 platform_notify(dev);
771
772         /* notify clients of device entry (new way) */
773         if (dev->bus)
774                 blocking_notifier_call_chain(&dev->bus->bus_notifier,
775                                              BUS_NOTIFY_ADD_DEVICE, dev);
776
777         error = device_create_file(dev, &uevent_attr);
778         if (error)
779                 goto attrError;
780
781         if (MAJOR(dev->devt)) {
782                 error = device_create_file(dev, &devt_attr);
783                 if (error)
784                         goto ueventattrError;
785         }
786
787         error = device_add_class_symlinks(dev);
788         if (error)
789                 goto SymlinkError;
790         error = device_add_attrs(dev);
791         if (error)
792                 goto AttrsError;
793         error = dpm_sysfs_add(dev);
794         if (error)
795                 goto PMError;
796         device_pm_add(dev);
797         error = bus_add_device(dev);
798         if (error)
799                 goto BusError;
800         kobject_uevent(&dev->kobj, KOBJ_ADD);
801         bus_attach_device(dev);
802         if (parent)
803                 klist_add_tail(&dev->knode_parent, &parent->klist_children);
804
805         if (dev->class) {
806                 down(&dev->class->sem);
807                 /* tie the class to the device */
808                 list_add_tail(&dev->node, &dev->class->devices);
809
810                 /* notify any interfaces that the device is here */
811                 list_for_each_entry(class_intf, &dev->class->interfaces, node)
812                         if (class_intf->add_dev)
813                                 class_intf->add_dev(dev, class_intf);
814                 up(&dev->class->sem);
815         }
816  Done:
817         put_device(dev);
818         pm_sleep_unlock();
819         return error;
820  BusError:
821         device_pm_remove(dev);
822         dpm_sysfs_remove(dev);
823  PMError:
824         if (dev->bus)
825                 blocking_notifier_call_chain(&dev->bus->bus_notifier,
826                                              BUS_NOTIFY_DEL_DEVICE, dev);
827         device_remove_attrs(dev);
828  AttrsError:
829         device_remove_class_symlinks(dev);
830  SymlinkError:
831         if (MAJOR(dev->devt))
832                 device_remove_file(dev, &devt_attr);
833
834         if (dev->class) {
835                 sysfs_remove_link(&dev->kobj, "subsystem");
836                 /* If this is not a "fake" compatible device, remove the
837                  * symlink from the class to the device. */
838                 if (dev->kobj.parent != &dev->class->subsys.kobj)
839                         sysfs_remove_link(&dev->class->subsys.kobj,
840                                           dev->bus_id);
841                 if (parent) {
842 #ifdef CONFIG_SYSFS_DEPRECATED
843                         char *class_name = make_class_name(dev->class->name,
844                                                            &dev->kobj);
845                         if (class_name)
846                                 sysfs_remove_link(&dev->parent->kobj,
847                                                   class_name);
848                         kfree(class_name);
849 #endif
850                         sysfs_remove_link(&dev->kobj, "device");
851                 }
852         }
853  ueventattrError:
854         device_remove_file(dev, &uevent_attr);
855  attrError:
856         kobject_uevent(&dev->kobj, KOBJ_REMOVE);
857         kobject_del(&dev->kobj);
858  Error:
859         if (parent)
860                 put_device(parent);
861         goto Done;
862 }
863
864
865 /**
866  *      device_register - register a device with the system.
867  *      @dev:   pointer to the device structure
868  *
869  *      This happens in two clean steps - initialize the device
870  *      and add it to the system. The two steps can be called
871  *      separately, but this is the easiest and most common.
872  *      I.e. you should only call the two helpers separately if
873  *      have a clearly defined need to use and refcount the device
874  *      before it is added to the hierarchy.
875  */
876
877 int device_register(struct device *dev)
878 {
879         device_initialize(dev);
880         return device_add(dev);
881 }
882
883
884 /**
885  *      get_device - increment reference count for device.
886  *      @dev:   device.
887  *
888  *      This simply forwards the call to kobject_get(), though
889  *      we do take care to provide for the case that we get a NULL
890  *      pointer passed in.
891  */
892
893 struct device * get_device(struct device * dev)
894 {
895         return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
896 }
897
898
899 /**
900  *      put_device - decrement reference count.
901  *      @dev:   device in question.
902  */
903 void put_device(struct device * dev)
904 {
905         if (dev)
906                 kobject_put(&dev->kobj);
907 }
908
909
910 /**
911  *      device_del - delete device from system.
912  *      @dev:   device.
913  *
914  *      This is the first part of the device unregistration
915  *      sequence. This removes the device from the lists we control
916  *      from here, has it removed from the other driver model
917  *      subsystems it was added to in device_add(), and removes it
918  *      from the kobject hierarchy.
919  *
920  *      NOTE: this should be called manually _iff_ device_add() was
921  *      also called manually.
922  */
923
924 void device_del(struct device * dev)
925 {
926         struct device * parent = dev->parent;
927         struct class_interface *class_intf;
928
929         device_pm_remove(dev);
930         if (parent)
931                 klist_del(&dev->knode_parent);
932         if (MAJOR(dev->devt))
933                 device_remove_file(dev, &devt_attr);
934         if (dev->class) {
935                 sysfs_remove_link(&dev->kobj, "subsystem");
936                 /* If this is not a "fake" compatible device, remove the
937                  * symlink from the class to the device. */
938                 if (dev->kobj.parent != &dev->class->subsys.kobj)
939                         sysfs_remove_link(&dev->class->subsys.kobj,
940                                           dev->bus_id);
941                 if (parent) {
942 #ifdef CONFIG_SYSFS_DEPRECATED
943                         char *class_name = make_class_name(dev->class->name,
944                                                            &dev->kobj);
945                         if (class_name)
946                                 sysfs_remove_link(&dev->parent->kobj,
947                                                   class_name);
948                         kfree(class_name);
949 #endif
950                         sysfs_remove_link(&dev->kobj, "device");
951                 }
952
953                 down(&dev->class->sem);
954                 /* notify any interfaces that the device is now gone */
955                 list_for_each_entry(class_intf, &dev->class->interfaces, node)
956                         if (class_intf->remove_dev)
957                                 class_intf->remove_dev(dev, class_intf);
958                 /* remove the device from the class list */
959                 list_del_init(&dev->node);
960                 up(&dev->class->sem);
961
962                 /* If we live in a parent class-directory, unreference it */
963                 if (dev->kobj.parent->kset == &dev->class->class_dirs) {
964                         struct device *d;
965                         int other = 0;
966
967                         /*
968                          * if we are the last child of our class, delete
969                          * our class-directory at this parent
970                          */
971                         down(&dev->class->sem);
972                         list_for_each_entry(d, &dev->class->devices, node) {
973                                 if (d == dev)
974                                         continue;
975                                 if (d->kobj.parent == dev->kobj.parent) {
976                                         other = 1;
977                                         break;
978                                 }
979                         }
980                         if (!other)
981                                 kobject_del(dev->kobj.parent);
982
983                         kobject_put(dev->kobj.parent);
984                         up(&dev->class->sem);
985                 }
986         }
987         device_remove_file(dev, &uevent_attr);
988         device_remove_attrs(dev);
989         bus_remove_device(dev);
990
991         /*
992          * Some platform devices are driven without driver attached
993          * and managed resources may have been acquired.  Make sure
994          * all resources are released.
995          */
996         devres_release_all(dev);
997
998         /* Notify the platform of the removal, in case they
999          * need to do anything...
1000          */
1001         if (platform_notify_remove)
1002                 platform_notify_remove(dev);
1003         if (dev->bus)
1004                 blocking_notifier_call_chain(&dev->bus->bus_notifier,
1005                                              BUS_NOTIFY_DEL_DEVICE, dev);
1006         kobject_uevent(&dev->kobj, KOBJ_REMOVE);
1007         kobject_del(&dev->kobj);
1008         if (parent)
1009                 put_device(parent);
1010 }
1011
1012 /**
1013  *      device_unregister - unregister device from system.
1014  *      @dev:   device going away.
1015  *
1016  *      We do this in two parts, like we do device_register(). First,
1017  *      we remove it from all the subsystems with device_del(), then
1018  *      we decrement the reference count via put_device(). If that
1019  *      is the final reference count, the device will be cleaned up
1020  *      via device_release() above. Otherwise, the structure will
1021  *      stick around until the final reference to the device is dropped.
1022  */
1023 void device_unregister(struct device * dev)
1024 {
1025         pr_debug("DEV: Unregistering device. ID = '%s'\n", dev->bus_id);
1026         device_del(dev);
1027         put_device(dev);
1028 }
1029
1030
1031 static struct device * next_device(struct klist_iter * i)
1032 {
1033         struct klist_node * n = klist_next(i);
1034         return n ? container_of(n, struct device, knode_parent) : NULL;
1035 }
1036
1037 /**
1038  *      device_for_each_child - device child iterator.
1039  *      @parent: parent struct device.
1040  *      @data:  data for the callback.
1041  *      @fn:    function to be called for each device.
1042  *
1043  *      Iterate over @parent's child devices, and call @fn for each,
1044  *      passing it @data.
1045  *
1046  *      We check the return of @fn each time. If it returns anything
1047  *      other than 0, we break out and return that value.
1048  */
1049 int device_for_each_child(struct device * parent, void * data,
1050                      int (*fn)(struct device *, void *))
1051 {
1052         struct klist_iter i;
1053         struct device * child;
1054         int error = 0;
1055
1056         klist_iter_init(&parent->klist_children, &i);
1057         while ((child = next_device(&i)) && !error)
1058                 error = fn(child, data);
1059         klist_iter_exit(&i);
1060         return error;
1061 }
1062
1063 /**
1064  * device_find_child - device iterator for locating a particular device.
1065  * @parent: parent struct device
1066  * @data: Data to pass to match function
1067  * @match: Callback function to check device
1068  *
1069  * This is similar to the device_for_each_child() function above, but it
1070  * returns a reference to a device that is 'found' for later use, as
1071  * determined by the @match callback.
1072  *
1073  * The callback should return 0 if the device doesn't match and non-zero
1074  * if it does.  If the callback returns non-zero and a reference to the
1075  * current device can be obtained, this function will return to the caller
1076  * and not iterate over any more devices.
1077  */
1078 struct device * device_find_child(struct device *parent, void *data,
1079                                   int (*match)(struct device *, void *))
1080 {
1081         struct klist_iter i;
1082         struct device *child;
1083
1084         if (!parent)
1085                 return NULL;
1086
1087         klist_iter_init(&parent->klist_children, &i);
1088         while ((child = next_device(&i)))
1089                 if (match(child, data) && get_device(child))
1090                         break;
1091         klist_iter_exit(&i);
1092         return child;
1093 }
1094
1095 int __init devices_init(void)
1096 {
1097         devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
1098         if (!devices_kset)
1099                 return -ENOMEM;
1100         return 0;
1101 }
1102
1103 EXPORT_SYMBOL_GPL(device_for_each_child);
1104 EXPORT_SYMBOL_GPL(device_find_child);
1105
1106 EXPORT_SYMBOL_GPL(device_initialize);
1107 EXPORT_SYMBOL_GPL(device_add);
1108 EXPORT_SYMBOL_GPL(device_register);
1109
1110 EXPORT_SYMBOL_GPL(device_del);
1111 EXPORT_SYMBOL_GPL(device_unregister);
1112 EXPORT_SYMBOL_GPL(get_device);
1113 EXPORT_SYMBOL_GPL(put_device);
1114
1115 EXPORT_SYMBOL_GPL(device_create_file);
1116 EXPORT_SYMBOL_GPL(device_remove_file);
1117
1118
1119 static void device_create_release(struct device *dev)
1120 {
1121         pr_debug("%s called for %s\n", __FUNCTION__, dev->bus_id);
1122         kfree(dev);
1123 }
1124
1125 /**
1126  * device_create - creates a device and registers it with sysfs
1127  * @class: pointer to the struct class that this device should be registered to
1128  * @parent: pointer to the parent struct device of this new device, if any
1129  * @devt: the dev_t for the char device to be added
1130  * @fmt: string for the device's name
1131  *
1132  * This function can be used by char device classes.  A struct device
1133  * will be created in sysfs, registered to the specified class.
1134  *
1135  * A "dev" file will be created, showing the dev_t for the device, if
1136  * the dev_t is not 0,0.
1137  * If a pointer to a parent struct device is passed in, the newly created
1138  * struct device will be a child of that device in sysfs.
1139  * The pointer to the struct device will be returned from the call.
1140  * Any further sysfs files that might be required can be created using this
1141  * pointer.
1142  *
1143  * Note: the struct class passed to this function must have previously
1144  * been created with a call to class_create().
1145  */
1146 struct device *device_create(struct class *class, struct device *parent,
1147                              dev_t devt, const char *fmt, ...)
1148 {
1149         va_list args;
1150         struct device *dev = NULL;
1151         int retval = -ENODEV;
1152
1153         if (class == NULL || IS_ERR(class))
1154                 goto error;
1155
1156         dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1157         if (!dev) {
1158                 retval = -ENOMEM;
1159                 goto error;
1160         }
1161
1162         dev->devt = devt;
1163         dev->class = class;
1164         dev->parent = parent;
1165         dev->release = device_create_release;
1166
1167         va_start(args, fmt);
1168         vsnprintf(dev->bus_id, BUS_ID_SIZE, fmt, args);
1169         va_end(args);
1170         retval = device_register(dev);
1171         if (retval)
1172                 goto error;
1173
1174         return dev;
1175
1176 error:
1177         kfree(dev);
1178         return ERR_PTR(retval);
1179 }
1180 EXPORT_SYMBOL_GPL(device_create);
1181
1182 /**
1183  * find_device - finds a device that was created with device_create()
1184  * @class: pointer to the struct class that this device was registered with
1185  * @devt: the dev_t of the device that was previously registered
1186  */
1187 static struct device *find_device(struct class *class, dev_t devt)
1188 {
1189         struct device *dev = NULL;
1190         struct device *dev_tmp;
1191
1192         down(&class->sem);
1193         list_for_each_entry(dev_tmp, &class->devices, node) {
1194                 if (dev_tmp->devt == devt) {
1195                         dev = dev_tmp;
1196                         break;
1197                 }
1198         }
1199         up(&class->sem);
1200         return dev;
1201 }
1202
1203 /**
1204  * device_destroy - removes a device that was created with device_create()
1205  * @class: pointer to the struct class that this device was registered with
1206  * @devt: the dev_t of the device that was previously registered
1207  *
1208  * This call unregisters and cleans up a device that was created with a
1209  * call to device_create().
1210  */
1211 void device_destroy(struct class *class, dev_t devt)
1212 {
1213         struct device *dev;
1214
1215         dev = find_device(class, devt);
1216         if (dev)
1217                 device_unregister(dev);
1218 }
1219 EXPORT_SYMBOL_GPL(device_destroy);
1220
1221 #ifdef CONFIG_PM_SLEEP
1222 /**
1223  * destroy_suspended_device - asks the PM core to remove a suspended device
1224  * @class: pointer to the struct class that this device was registered with
1225  * @devt: the dev_t of the device that was previously registered
1226  *
1227  * This call notifies the PM core of the necessity to unregister a suspended
1228  * device created with a call to device_create() (devices cannot be
1229  * unregistered directly while suspended, since the PM core holds their
1230  * semaphores at that time).
1231  *
1232  * It can only be called within the scope of a system sleep transition.  In
1233  * practice this means it has to be directly or indirectly invoked either by
1234  * a suspend or resume method, or by the PM core (e.g. via
1235  * disable_nonboot_cpus() or enable_nonboot_cpus()).
1236  */
1237 void destroy_suspended_device(struct class *class, dev_t devt)
1238 {
1239         struct device *dev;
1240
1241         dev = find_device(class, devt);
1242         if (dev)
1243                 device_pm_schedule_removal(dev);
1244 }
1245 EXPORT_SYMBOL_GPL(destroy_suspended_device);
1246 #endif /* CONFIG_PM_SLEEP */
1247
1248 /**
1249  * device_rename - renames a device
1250  * @dev: the pointer to the struct device to be renamed
1251  * @new_name: the new name of the device
1252  */
1253 int device_rename(struct device *dev, char *new_name)
1254 {
1255         char *old_class_name = NULL;
1256         char *new_class_name = NULL;
1257         char *old_device_name = NULL;
1258         int error;
1259
1260         dev = get_device(dev);
1261         if (!dev)
1262                 return -EINVAL;
1263
1264         pr_debug("DEVICE: renaming '%s' to '%s'\n", dev->bus_id, new_name);
1265
1266 #ifdef CONFIG_SYSFS_DEPRECATED
1267         if ((dev->class) && (dev->parent))
1268                 old_class_name = make_class_name(dev->class->name, &dev->kobj);
1269 #endif
1270
1271         old_device_name = kmalloc(BUS_ID_SIZE, GFP_KERNEL);
1272         if (!old_device_name) {
1273                 error = -ENOMEM;
1274                 goto out;
1275         }
1276         strlcpy(old_device_name, dev->bus_id, BUS_ID_SIZE);
1277         strlcpy(dev->bus_id, new_name, BUS_ID_SIZE);
1278
1279         error = kobject_rename(&dev->kobj, new_name);
1280         if (error) {
1281                 strlcpy(dev->bus_id, old_device_name, BUS_ID_SIZE);
1282                 goto out;
1283         }
1284
1285 #ifdef CONFIG_SYSFS_DEPRECATED
1286         if (old_class_name) {
1287                 new_class_name = make_class_name(dev->class->name, &dev->kobj);
1288                 if (new_class_name) {
1289                         error = sysfs_create_link(&dev->parent->kobj,
1290                                                   &dev->kobj, new_class_name);
1291                         if (error)
1292                                 goto out;
1293                         sysfs_remove_link(&dev->parent->kobj, old_class_name);
1294                 }
1295         }
1296 #else
1297         if (dev->class) {
1298                 sysfs_remove_link(&dev->class->subsys.kobj, old_device_name);
1299                 error = sysfs_create_link(&dev->class->subsys.kobj, &dev->kobj,
1300                                           dev->bus_id);
1301                 if (error) {
1302                         dev_err(dev, "%s: sysfs_create_symlink failed (%d)\n",
1303                                 __FUNCTION__, error);
1304                 }
1305         }
1306 #endif
1307
1308 out:
1309         put_device(dev);
1310
1311         kfree(new_class_name);
1312         kfree(old_class_name);
1313         kfree(old_device_name);
1314
1315         return error;
1316 }
1317 EXPORT_SYMBOL_GPL(device_rename);
1318
1319 static int device_move_class_links(struct device *dev,
1320                                    struct device *old_parent,
1321                                    struct device *new_parent)
1322 {
1323         int error = 0;
1324 #ifdef CONFIG_SYSFS_DEPRECATED
1325         char *class_name;
1326
1327         class_name = make_class_name(dev->class->name, &dev->kobj);
1328         if (!class_name) {
1329                 error = -ENOMEM;
1330                 goto out;
1331         }
1332         if (old_parent) {
1333                 sysfs_remove_link(&dev->kobj, "device");
1334                 sysfs_remove_link(&old_parent->kobj, class_name);
1335         }
1336         if (new_parent) {
1337                 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1338                                           "device");
1339                 if (error)
1340                         goto out;
1341                 error = sysfs_create_link(&new_parent->kobj, &dev->kobj,
1342                                           class_name);
1343                 if (error)
1344                         sysfs_remove_link(&dev->kobj, "device");
1345         }
1346         else
1347                 error = 0;
1348 out:
1349         kfree(class_name);
1350         return error;
1351 #else
1352         if (old_parent)
1353                 sysfs_remove_link(&dev->kobj, "device");
1354         if (new_parent)
1355                 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1356                                           "device");
1357         return error;
1358 #endif
1359 }
1360
1361 /**
1362  * device_move - moves a device to a new parent
1363  * @dev: the pointer to the struct device to be moved
1364  * @new_parent: the new parent of the device (can by NULL)
1365  */
1366 int device_move(struct device *dev, struct device *new_parent)
1367 {
1368         int error;
1369         struct device *old_parent;
1370         struct kobject *new_parent_kobj;
1371
1372         dev = get_device(dev);
1373         if (!dev)
1374                 return -EINVAL;
1375
1376         new_parent = get_device(new_parent);
1377         new_parent_kobj = get_device_parent (dev, new_parent);
1378         if (IS_ERR(new_parent_kobj)) {
1379                 error = PTR_ERR(new_parent_kobj);
1380                 put_device(new_parent);
1381                 goto out;
1382         }
1383         pr_debug("DEVICE: moving '%s' to '%s'\n", dev->bus_id,
1384                  new_parent ? new_parent->bus_id : "<NULL>");
1385         error = kobject_move(&dev->kobj, new_parent_kobj);
1386         if (error) {
1387                 put_device(new_parent);
1388                 goto out;
1389         }
1390         old_parent = dev->parent;
1391         dev->parent = new_parent;
1392         if (old_parent)
1393                 klist_remove(&dev->knode_parent);
1394         if (new_parent)
1395                 klist_add_tail(&dev->knode_parent, &new_parent->klist_children);
1396         if (!dev->class)
1397                 goto out_put;
1398         error = device_move_class_links(dev, old_parent, new_parent);
1399         if (error) {
1400                 /* We ignore errors on cleanup since we're hosed anyway... */
1401                 device_move_class_links(dev, new_parent, old_parent);
1402                 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
1403                         if (new_parent)
1404                                 klist_remove(&dev->knode_parent);
1405                         if (old_parent)
1406                                 klist_add_tail(&dev->knode_parent,
1407                                                &old_parent->klist_children);
1408                 }
1409                 put_device(new_parent);
1410                 goto out;
1411         }
1412 out_put:
1413         put_device(old_parent);
1414 out:
1415         put_device(dev);
1416         return error;
1417 }
1418
1419 EXPORT_SYMBOL_GPL(device_move);