2 * drivers/base/core.c - core driver model code (device registration, etc)
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.
9 * This file is released under the GPLv2
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>
22 #include <asm/semaphore.h>
25 #include "power/power.h"
27 int (*platform_notify
)(struct device
* dev
) = NULL
;
28 int (*platform_notify_remove
)(struct device
* dev
) = NULL
;
31 * sysfs bindings for devices.
35 * dev_driver_string - Return a device's driver name, if at all possible
36 * @dev: struct device to get the name of
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.
43 const char *dev_driver_string(struct device
*dev
)
45 return dev
->driver
? dev
->driver
->name
:
46 (dev
->bus
? dev
->bus
->name
:
47 (dev
->class ? dev
->class->name
: ""));
49 EXPORT_SYMBOL(dev_driver_string
);
51 #define to_dev(obj) container_of(obj, struct device, kobj)
52 #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
55 dev_attr_show(struct kobject
* kobj
, struct attribute
* attr
, char * buf
)
57 struct device_attribute
* dev_attr
= to_dev_attr(attr
);
58 struct device
* dev
= to_dev(kobj
);
62 ret
= dev_attr
->show(dev
, dev_attr
, buf
);
67 dev_attr_store(struct kobject
* kobj
, struct attribute
* attr
,
68 const char * buf
, size_t count
)
70 struct device_attribute
* dev_attr
= to_dev_attr(attr
);
71 struct device
* dev
= to_dev(kobj
);
75 ret
= dev_attr
->store(dev
, dev_attr
, buf
, count
);
79 static struct sysfs_ops dev_sysfs_ops
= {
80 .show
= dev_attr_show
,
81 .store
= dev_attr_store
,
86 * device_release - free device structure.
87 * @kobj: device's kobject.
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.
93 static void device_release(struct kobject
* kobj
)
95 struct device
* dev
= to_dev(kobj
);
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
);
104 printk(KERN_ERR
"Device '%s' does not have a release() function, "
105 "it is broken and must be fixed.\n",
111 static struct kobj_type device_ktype
= {
112 .release
= device_release
,
113 .sysfs_ops
= &dev_sysfs_ops
,
117 static int dev_uevent_filter(struct kset
*kset
, struct kobject
*kobj
)
119 struct kobj_type
*ktype
= get_ktype(kobj
);
121 if (ktype
== &device_ktype
) {
122 struct device
*dev
= to_dev(kobj
);
123 if (dev
->uevent_suppress
)
133 static const char *dev_uevent_name(struct kset
*kset
, struct kobject
*kobj
)
135 struct device
*dev
= to_dev(kobj
);
138 return dev
->bus
->name
;
140 return dev
->class->name
;
144 static int dev_uevent(struct kset
*kset
, struct kobject
*kobj
,
145 struct kobj_uevent_env
*env
)
147 struct device
*dev
= to_dev(kobj
);
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
));
156 if (dev
->type
&& dev
->type
->name
)
157 add_uevent_var(env
, "DEVTYPE=%s", dev
->type
->name
);
160 add_uevent_var(env
, "DRIVER=%s", dev
->driver
->name
);
162 #ifdef CONFIG_SYSFS_DEPRECATED
164 struct device
*parent
= dev
->parent
;
166 /* find first bus device in parent chain */
167 while (parent
&& !parent
->bus
)
168 parent
= parent
->parent
;
169 if (parent
&& parent
->bus
) {
172 path
= kobject_get_path(&parent
->kobj
, GFP_KERNEL
);
174 add_uevent_var(env
, "PHYSDEVPATH=%s", path
);
178 add_uevent_var(env
, "PHYSDEVBUS=%s", parent
->bus
->name
);
181 add_uevent_var(env
, "PHYSDEVDRIVER=%s",
182 parent
->driver
->name
);
184 } else if (dev
->bus
) {
185 add_uevent_var(env
, "PHYSDEVBUS=%s", dev
->bus
->name
);
188 add_uevent_var(env
, "PHYSDEVDRIVER=%s", dev
->driver
->name
);
192 /* have the bus specific function add its stuff */
193 if (dev
->bus
&& dev
->bus
->uevent
) {
194 retval
= dev
->bus
->uevent(dev
, env
);
196 pr_debug ("%s: bus uevent() returned %d\n",
197 __FUNCTION__
, retval
);
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
);
204 pr_debug("%s: class uevent() returned %d\n",
205 __FUNCTION__
, retval
);
208 /* have the device type specific fuction add its stuff */
209 if (dev
->type
&& dev
->type
->uevent
) {
210 retval
= dev
->type
->uevent(dev
, env
);
212 pr_debug("%s: dev_type uevent() returned %d\n",
213 __FUNCTION__
, retval
);
219 static struct kset_uevent_ops device_uevent_ops
= {
220 .filter
= dev_uevent_filter
,
221 .name
= dev_uevent_name
,
222 .uevent
= dev_uevent
,
225 static ssize_t
show_uevent(struct device
*dev
, struct device_attribute
*attr
,
228 struct kobject
*top_kobj
;
230 struct kobj_uevent_env
*env
= NULL
;
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
;
242 kset
= top_kobj
->kset
;
243 if (!kset
->uevent_ops
|| !kset
->uevent_ops
->uevent
)
247 if (kset
->uevent_ops
&& kset
->uevent_ops
->filter
)
248 if (!kset
->uevent_ops
->filter(kset
, &dev
->kobj
))
251 env
= kzalloc(sizeof(struct kobj_uevent_env
), GFP_KERNEL
);
255 /* let the kset specific function add its keys */
256 retval
= kset
->uevent_ops
->uevent(kset
, &dev
->kobj
, env
);
260 /* copy keys to file */
261 for (i
= 0; i
< env
->envp_idx
; i
++)
262 count
+= sprintf(&buf
[count
], "%s\n", env
->envp
[i
]);
268 static ssize_t
store_uevent(struct device
*dev
, struct device_attribute
*attr
,
269 const char *buf
, size_t count
)
271 enum kobject_action action
;
273 if (kobject_action_type(buf
, count
, &action
) == 0) {
274 kobject_uevent(&dev
->kobj
, action
);
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
);
285 static struct device_attribute uevent_attr
=
286 __ATTR(uevent
, S_IRUGO
| S_IWUSR
, show_uevent
, store_uevent
);
288 static int device_add_attributes(struct device
*dev
,
289 struct device_attribute
*attrs
)
295 for (i
= 0; attr_name(attrs
[i
]); i
++) {
296 error
= device_create_file(dev
, &attrs
[i
]);
302 device_remove_file(dev
, &attrs
[i
]);
307 static void device_remove_attributes(struct device
*dev
,
308 struct device_attribute
*attrs
)
313 for (i
= 0; attr_name(attrs
[i
]); i
++)
314 device_remove_file(dev
, &attrs
[i
]);
317 static int device_add_groups(struct device
*dev
,
318 struct attribute_group
**groups
)
324 for (i
= 0; groups
[i
]; i
++) {
325 error
= sysfs_create_group(&dev
->kobj
, groups
[i
]);
328 sysfs_remove_group(&dev
->kobj
, groups
[i
]);
336 static void device_remove_groups(struct device
*dev
,
337 struct attribute_group
**groups
)
342 for (i
= 0; groups
[i
]; i
++)
343 sysfs_remove_group(&dev
->kobj
, groups
[i
]);
346 static int device_add_attrs(struct device
*dev
)
348 struct class *class = dev
->class;
349 struct device_type
*type
= dev
->type
;
353 error
= device_add_attributes(dev
, class->dev_attrs
);
359 error
= device_add_groups(dev
, type
->groups
);
361 goto err_remove_class_attrs
;
364 error
= device_add_groups(dev
, dev
->groups
);
366 goto err_remove_type_groups
;
370 err_remove_type_groups
:
372 device_remove_groups(dev
, type
->groups
);
373 err_remove_class_attrs
:
375 device_remove_attributes(dev
, class->dev_attrs
);
380 static void device_remove_attrs(struct device
*dev
)
382 struct class *class = dev
->class;
383 struct device_type
*type
= dev
->type
;
385 device_remove_groups(dev
, dev
->groups
);
388 device_remove_groups(dev
, type
->groups
);
391 device_remove_attributes(dev
, class->dev_attrs
);
395 static ssize_t
show_dev(struct device
*dev
, struct device_attribute
*attr
,
398 return print_dev_t(buf
, dev
->devt
);
401 static struct device_attribute devt_attr
=
402 __ATTR(dev
, S_IRUGO
, show_dev
, NULL
);
405 * devices_subsys - structure to be registered with kobject core.
408 decl_subsys(devices
, &device_ktype
, &device_uevent_ops
);
412 * device_create_file - create sysfs attribute file for device.
414 * @attr: device attribute descriptor.
417 int device_create_file(struct device
* dev
, struct device_attribute
* attr
)
420 if (get_device(dev
)) {
421 error
= sysfs_create_file(&dev
->kobj
, &attr
->attr
);
428 * device_remove_file - remove sysfs attribute file.
430 * @attr: device attribute descriptor.
433 void device_remove_file(struct device
* dev
, struct device_attribute
* attr
)
435 if (get_device(dev
)) {
436 sysfs_remove_file(&dev
->kobj
, &attr
->attr
);
442 * device_create_bin_file - create sysfs binary attribute file for device.
444 * @attr: device binary attribute descriptor.
446 int device_create_bin_file(struct device
*dev
, struct bin_attribute
*attr
)
450 error
= sysfs_create_bin_file(&dev
->kobj
, attr
);
453 EXPORT_SYMBOL_GPL(device_create_bin_file
);
456 * device_remove_bin_file - remove sysfs binary attribute file
458 * @attr: device binary attribute descriptor.
460 void device_remove_bin_file(struct device
*dev
, struct bin_attribute
*attr
)
463 sysfs_remove_bin_file(&dev
->kobj
, attr
);
465 EXPORT_SYMBOL_GPL(device_remove_bin_file
);
468 * device_schedule_callback_owner - helper to schedule a callback for a device
470 * @func: callback function to invoke later.
471 * @owner: module owning the callback routine
473 * Attribute methods must not unregister themselves or their parent device
474 * (which would amount to the same thing). Attempts to do so will deadlock,
475 * since unregistration is mutually exclusive with driver callbacks.
477 * Instead methods can call this routine, which will attempt to allocate
478 * and schedule a workqueue request to call back @func with @dev as its
479 * argument in the workqueue's process context. @dev will be pinned until
482 * This routine is usually called via the inline device_schedule_callback(),
483 * which automatically sets @owner to THIS_MODULE.
485 * Returns 0 if the request was submitted, -ENOMEM if storage could not
486 * be allocated, -ENODEV if a reference to @owner isn't available.
488 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
489 * underlying sysfs routine (since it is intended for use by attribute
490 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
492 int device_schedule_callback_owner(struct device
*dev
,
493 void (*func
)(struct device
*), struct module
*owner
)
495 return sysfs_schedule_callback(&dev
->kobj
,
496 (void (*)(void *)) func
, dev
, owner
);
498 EXPORT_SYMBOL_GPL(device_schedule_callback_owner
);
500 static void klist_children_get(struct klist_node
*n
)
502 struct device
*dev
= container_of(n
, struct device
, knode_parent
);
507 static void klist_children_put(struct klist_node
*n
)
509 struct device
*dev
= container_of(n
, struct device
, knode_parent
);
516 * device_initialize - init device structure.
519 * This prepares the device for use by other layers,
520 * including adding it to the device hierarchy.
521 * It is the first half of device_register(), if called by
522 * that, though it can also be called separately, so one
523 * may use @dev's fields (e.g. the refcount).
526 void device_initialize(struct device
*dev
)
528 kobj_set_kset_s(dev
, devices_subsys
);
529 kobject_init(&dev
->kobj
);
530 klist_init(&dev
->klist_children
, klist_children_get
,
532 INIT_LIST_HEAD(&dev
->dma_pools
);
533 INIT_LIST_HEAD(&dev
->node
);
534 init_MUTEX(&dev
->sem
);
535 spin_lock_init(&dev
->devres_lock
);
536 INIT_LIST_HEAD(&dev
->devres_head
);
537 device_init_wakeup(dev
, 0);
538 set_dev_node(dev
, -1);
541 #ifdef CONFIG_SYSFS_DEPRECATED
542 static struct kobject
* get_device_parent(struct device
*dev
,
543 struct device
*parent
)
546 * Set the parent to the class, not the parent device
547 * for topmost devices in class hierarchy.
548 * This keeps sysfs from having a symlink to make old
551 if (dev
->class && (!parent
|| parent
->class != dev
->class))
552 return &dev
->class->subsys
.kobj
;
554 return &parent
->kobj
;
559 static struct kobject
*virtual_device_parent(struct device
*dev
)
561 static struct kobject
*virtual_dir
= NULL
;
564 virtual_dir
= kobject_add_dir(&devices_subsys
.kobj
, "virtual");
569 static struct kobject
* get_device_parent(struct device
*dev
,
570 struct device
*parent
)
573 struct kobject
*kobj
= NULL
;
574 struct kobject
*parent_kobj
;
578 * If we have no parent, we live in "virtual".
579 * Class-devices with a bus-device as parent, live
580 * in a class-directory to prevent namespace collisions.
583 parent_kobj
= virtual_device_parent(dev
);
584 else if (parent
->class)
585 return &parent
->kobj
;
587 parent_kobj
= &parent
->kobj
;
589 /* find our class-directory at the parent and reference it */
590 spin_lock(&dev
->class->class_dirs
.list_lock
);
591 list_for_each_entry(k
, &dev
->class->class_dirs
.list
, entry
)
592 if (k
->parent
== parent_kobj
) {
593 kobj
= kobject_get(k
);
596 spin_unlock(&dev
->class->class_dirs
.list_lock
);
600 /* or create a new class-directory at the parent device */
601 return kobject_kset_add_dir(&dev
->class->class_dirs
,
602 parent_kobj
, dev
->class->name
);
606 return &parent
->kobj
;
611 static int setup_parent(struct device
*dev
, struct device
*parent
)
613 struct kobject
*kobj
;
614 kobj
= get_device_parent(dev
, parent
);
616 return PTR_ERR(kobj
);
618 dev
->kobj
.parent
= kobj
;
622 static int device_add_class_symlinks(struct device
*dev
)
628 error
= sysfs_create_link(&dev
->kobj
, &dev
->class->subsys
.kobj
,
633 * If this is not a "fake" compatible device, then create the
634 * symlink from the class to the device.
636 if (dev
->kobj
.parent
!= &dev
->class->subsys
.kobj
) {
637 error
= sysfs_create_link(&dev
->class->subsys
.kobj
, &dev
->kobj
,
643 #ifdef CONFIG_SYSFS_DEPRECATED
645 struct device
*parent
= dev
->parent
;
649 * In old sysfs stacked class devices had 'device'
650 * link pointing to real device instead of parent
652 while (parent
->class && !parent
->bus
&& parent
->parent
)
653 parent
= parent
->parent
;
655 error
= sysfs_create_link(&dev
->kobj
,
661 class_name
= make_class_name(dev
->class->name
,
664 error
= sysfs_create_link(&dev
->parent
->kobj
,
665 &dev
->kobj
, class_name
);
671 error
= sysfs_create_link(&dev
->kobj
, &dev
->parent
->kobj
,
679 #ifdef CONFIG_SYSFS_DEPRECATED
682 sysfs_remove_link(&dev
->kobj
, "device");
685 if (dev
->kobj
.parent
!= &dev
->class->subsys
.kobj
)
686 sysfs_remove_link(&dev
->class->subsys
.kobj
, dev
->bus_id
);
688 sysfs_remove_link(&dev
->kobj
, "subsystem");
693 static void device_remove_class_symlinks(struct device
*dev
)
698 #ifdef CONFIG_SYSFS_DEPRECATED
701 class_name
= make_class_name(dev
->class->name
, &dev
->kobj
);
703 sysfs_remove_link(&dev
->parent
->kobj
, class_name
);
707 sysfs_remove_link(&dev
->kobj
, "device");
709 if (dev
->kobj
.parent
!= &dev
->class->subsys
.kobj
)
710 sysfs_remove_link(&dev
->class->subsys
.kobj
, dev
->bus_id
);
711 sysfs_remove_link(&dev
->kobj
, "subsystem");
715 * device_add - add device to device hierarchy.
718 * This is part 2 of device_register(), though may be called
719 * separately _iff_ device_initialize() has been called separately.
721 * This adds it to the kobject hierarchy via kobject_add(), adds it
722 * to the global and sibling lists for the device, then
723 * adds it to the other relevant subsystems of the driver model.
725 int device_add(struct device
*dev
)
727 struct device
*parent
= NULL
;
728 struct class_interface
*class_intf
;
731 dev
= get_device(dev
);
732 if (!dev
|| !strlen(dev
->bus_id
))
735 pr_debug("DEV: registering device: ID = '%s'\n", dev
->bus_id
);
737 parent
= get_device(dev
->parent
);
738 error
= setup_parent(dev
, parent
);
742 /* first, register with generic layer. */
743 kobject_set_name(&dev
->kobj
, "%s", dev
->bus_id
);
744 error
= kobject_add(&dev
->kobj
);
748 /* notify platform of device entry */
750 platform_notify(dev
);
752 /* notify clients of device entry (new way) */
754 blocking_notifier_call_chain(&dev
->bus
->bus_notifier
,
755 BUS_NOTIFY_ADD_DEVICE
, dev
);
757 error
= device_create_file(dev
, &uevent_attr
);
761 if (MAJOR(dev
->devt
)) {
762 error
= device_create_file(dev
, &devt_attr
);
764 goto ueventattrError
;
767 error
= device_add_class_symlinks(dev
);
770 error
= device_add_attrs(dev
);
773 error
= device_pm_add(dev
);
776 error
= bus_add_device(dev
);
779 kobject_uevent(&dev
->kobj
, KOBJ_ADD
);
780 bus_attach_device(dev
);
782 klist_add_tail(&dev
->knode_parent
, &parent
->klist_children
);
785 down(&dev
->class->sem
);
786 /* tie the class to the device */
787 list_add_tail(&dev
->node
, &dev
->class->devices
);
789 /* notify any interfaces that the device is here */
790 list_for_each_entry(class_intf
, &dev
->class->interfaces
, node
)
791 if (class_intf
->add_dev
)
792 class_intf
->add_dev(dev
, class_intf
);
793 up(&dev
->class->sem
);
799 device_pm_remove(dev
);
802 blocking_notifier_call_chain(&dev
->bus
->bus_notifier
,
803 BUS_NOTIFY_DEL_DEVICE
, dev
);
804 device_remove_attrs(dev
);
806 device_remove_class_symlinks(dev
);
808 if (MAJOR(dev
->devt
))
809 device_remove_file(dev
, &devt_attr
);
812 sysfs_remove_link(&dev
->kobj
, "subsystem");
813 /* If this is not a "fake" compatible device, remove the
814 * symlink from the class to the device. */
815 if (dev
->kobj
.parent
!= &dev
->class->subsys
.kobj
)
816 sysfs_remove_link(&dev
->class->subsys
.kobj
,
819 #ifdef CONFIG_SYSFS_DEPRECATED
820 char *class_name
= make_class_name(dev
->class->name
,
823 sysfs_remove_link(&dev
->parent
->kobj
,
827 sysfs_remove_link(&dev
->kobj
, "device");
831 device_remove_file(dev
, &uevent_attr
);
833 kobject_uevent(&dev
->kobj
, KOBJ_REMOVE
);
834 kobject_del(&dev
->kobj
);
843 * device_register - register a device with the system.
844 * @dev: pointer to the device structure
846 * This happens in two clean steps - initialize the device
847 * and add it to the system. The two steps can be called
848 * separately, but this is the easiest and most common.
849 * I.e. you should only call the two helpers separately if
850 * have a clearly defined need to use and refcount the device
851 * before it is added to the hierarchy.
854 int device_register(struct device
*dev
)
856 device_initialize(dev
);
857 return device_add(dev
);
862 * get_device - increment reference count for device.
865 * This simply forwards the call to kobject_get(), though
866 * we do take care to provide for the case that we get a NULL
870 struct device
* get_device(struct device
* dev
)
872 return dev
? to_dev(kobject_get(&dev
->kobj
)) : NULL
;
877 * put_device - decrement reference count.
878 * @dev: device in question.
880 void put_device(struct device
* dev
)
883 kobject_put(&dev
->kobj
);
888 * device_del - delete device from system.
891 * This is the first part of the device unregistration
892 * sequence. This removes the device from the lists we control
893 * from here, has it removed from the other driver model
894 * subsystems it was added to in device_add(), and removes it
895 * from the kobject hierarchy.
897 * NOTE: this should be called manually _iff_ device_add() was
898 * also called manually.
901 void device_del(struct device
* dev
)
903 struct device
* parent
= dev
->parent
;
904 struct class_interface
*class_intf
;
907 klist_del(&dev
->knode_parent
);
908 if (MAJOR(dev
->devt
))
909 device_remove_file(dev
, &devt_attr
);
911 sysfs_remove_link(&dev
->kobj
, "subsystem");
912 /* If this is not a "fake" compatible device, remove the
913 * symlink from the class to the device. */
914 if (dev
->kobj
.parent
!= &dev
->class->subsys
.kobj
)
915 sysfs_remove_link(&dev
->class->subsys
.kobj
,
918 #ifdef CONFIG_SYSFS_DEPRECATED
919 char *class_name
= make_class_name(dev
->class->name
,
922 sysfs_remove_link(&dev
->parent
->kobj
,
926 sysfs_remove_link(&dev
->kobj
, "device");
929 down(&dev
->class->sem
);
930 /* notify any interfaces that the device is now gone */
931 list_for_each_entry(class_intf
, &dev
->class->interfaces
, node
)
932 if (class_intf
->remove_dev
)
933 class_intf
->remove_dev(dev
, class_intf
);
934 /* remove the device from the class list */
935 list_del_init(&dev
->node
);
936 up(&dev
->class->sem
);
938 /* If we live in a parent class-directory, unreference it */
939 if (dev
->kobj
.parent
->kset
== &dev
->class->class_dirs
) {
944 * if we are the last child of our class, delete
945 * our class-directory at this parent
947 down(&dev
->class->sem
);
948 list_for_each_entry(d
, &dev
->class->devices
, node
) {
951 if (d
->kobj
.parent
== dev
->kobj
.parent
) {
957 kobject_del(dev
->kobj
.parent
);
959 kobject_put(dev
->kobj
.parent
);
960 up(&dev
->class->sem
);
963 device_remove_file(dev
, &uevent_attr
);
964 device_remove_attrs(dev
);
965 bus_remove_device(dev
);
968 * Some platform devices are driven without driver attached
969 * and managed resources may have been acquired. Make sure
970 * all resources are released.
972 devres_release_all(dev
);
974 /* Notify the platform of the removal, in case they
975 * need to do anything...
977 if (platform_notify_remove
)
978 platform_notify_remove(dev
);
980 blocking_notifier_call_chain(&dev
->bus
->bus_notifier
,
981 BUS_NOTIFY_DEL_DEVICE
, dev
);
982 device_pm_remove(dev
);
983 kobject_uevent(&dev
->kobj
, KOBJ_REMOVE
);
984 kobject_del(&dev
->kobj
);
990 * device_unregister - unregister device from system.
991 * @dev: device going away.
993 * We do this in two parts, like we do device_register(). First,
994 * we remove it from all the subsystems with device_del(), then
995 * we decrement the reference count via put_device(). If that
996 * is the final reference count, the device will be cleaned up
997 * via device_release() above. Otherwise, the structure will
998 * stick around until the final reference to the device is dropped.
1000 void device_unregister(struct device
* dev
)
1002 pr_debug("DEV: Unregistering device. ID = '%s'\n", dev
->bus_id
);
1008 static struct device
* next_device(struct klist_iter
* i
)
1010 struct klist_node
* n
= klist_next(i
);
1011 return n
? container_of(n
, struct device
, knode_parent
) : NULL
;
1015 * device_for_each_child - device child iterator.
1016 * @parent: parent struct device.
1017 * @data: data for the callback.
1018 * @fn: function to be called for each device.
1020 * Iterate over @parent's child devices, and call @fn for each,
1023 * We check the return of @fn each time. If it returns anything
1024 * other than 0, we break out and return that value.
1026 int device_for_each_child(struct device
* parent
, void * data
,
1027 int (*fn
)(struct device
*, void *))
1029 struct klist_iter i
;
1030 struct device
* child
;
1033 klist_iter_init(&parent
->klist_children
, &i
);
1034 while ((child
= next_device(&i
)) && !error
)
1035 error
= fn(child
, data
);
1036 klist_iter_exit(&i
);
1041 * device_find_child - device iterator for locating a particular device.
1042 * @parent: parent struct device
1043 * @data: Data to pass to match function
1044 * @match: Callback function to check device
1046 * This is similar to the device_for_each_child() function above, but it
1047 * returns a reference to a device that is 'found' for later use, as
1048 * determined by the @match callback.
1050 * The callback should return 0 if the device doesn't match and non-zero
1051 * if it does. If the callback returns non-zero and a reference to the
1052 * current device can be obtained, this function will return to the caller
1053 * and not iterate over any more devices.
1055 struct device
* device_find_child(struct device
*parent
, void *data
,
1056 int (*match
)(struct device
*, void *))
1058 struct klist_iter i
;
1059 struct device
*child
;
1064 klist_iter_init(&parent
->klist_children
, &i
);
1065 while ((child
= next_device(&i
)))
1066 if (match(child
, data
) && get_device(child
))
1068 klist_iter_exit(&i
);
1072 int __init
devices_init(void)
1074 return subsystem_register(&devices_subsys
);
1077 EXPORT_SYMBOL_GPL(device_for_each_child
);
1078 EXPORT_SYMBOL_GPL(device_find_child
);
1080 EXPORT_SYMBOL_GPL(device_initialize
);
1081 EXPORT_SYMBOL_GPL(device_add
);
1082 EXPORT_SYMBOL_GPL(device_register
);
1084 EXPORT_SYMBOL_GPL(device_del
);
1085 EXPORT_SYMBOL_GPL(device_unregister
);
1086 EXPORT_SYMBOL_GPL(get_device
);
1087 EXPORT_SYMBOL_GPL(put_device
);
1089 EXPORT_SYMBOL_GPL(device_create_file
);
1090 EXPORT_SYMBOL_GPL(device_remove_file
);
1093 static void device_create_release(struct device
*dev
)
1095 pr_debug("%s called for %s\n", __FUNCTION__
, dev
->bus_id
);
1100 * device_create - creates a device and registers it with sysfs
1101 * @class: pointer to the struct class that this device should be registered to
1102 * @parent: pointer to the parent struct device of this new device, if any
1103 * @devt: the dev_t for the char device to be added
1104 * @fmt: string for the device's name
1106 * This function can be used by char device classes. A struct device
1107 * will be created in sysfs, registered to the specified class.
1109 * A "dev" file will be created, showing the dev_t for the device, if
1110 * the dev_t is not 0,0.
1111 * If a pointer to a parent struct device is passed in, the newly created
1112 * struct device will be a child of that device in sysfs.
1113 * The pointer to the struct device will be returned from the call.
1114 * Any further sysfs files that might be required can be created using this
1117 * Note: the struct class passed to this function must have previously
1118 * been created with a call to class_create().
1120 struct device
*device_create(struct class *class, struct device
*parent
,
1121 dev_t devt
, const char *fmt
, ...)
1124 struct device
*dev
= NULL
;
1125 int retval
= -ENODEV
;
1127 if (class == NULL
|| IS_ERR(class))
1130 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
1138 dev
->parent
= parent
;
1139 dev
->release
= device_create_release
;
1141 va_start(args
, fmt
);
1142 vsnprintf(dev
->bus_id
, BUS_ID_SIZE
, fmt
, args
);
1144 retval
= device_register(dev
);
1152 return ERR_PTR(retval
);
1154 EXPORT_SYMBOL_GPL(device_create
);
1157 * device_destroy - removes a device that was created with device_create()
1158 * @class: pointer to the struct class that this device was registered with
1159 * @devt: the dev_t of the device that was previously registered
1161 * This call unregisters and cleans up a device that was created with a
1162 * call to device_create().
1164 void device_destroy(struct class *class, dev_t devt
)
1166 struct device
*dev
= NULL
;
1167 struct device
*dev_tmp
;
1170 list_for_each_entry(dev_tmp
, &class->devices
, node
) {
1171 if (dev_tmp
->devt
== devt
) {
1179 device_unregister(dev
);
1181 EXPORT_SYMBOL_GPL(device_destroy
);
1184 * device_rename - renames a device
1185 * @dev: the pointer to the struct device to be renamed
1186 * @new_name: the new name of the device
1188 int device_rename(struct device
*dev
, char *new_name
)
1190 char *old_class_name
= NULL
;
1191 char *new_class_name
= NULL
;
1192 char *old_device_name
= NULL
;
1195 dev
= get_device(dev
);
1199 pr_debug("DEVICE: renaming '%s' to '%s'\n", dev
->bus_id
, new_name
);
1201 #ifdef CONFIG_SYSFS_DEPRECATED
1202 if ((dev
->class) && (dev
->parent
))
1203 old_class_name
= make_class_name(dev
->class->name
, &dev
->kobj
);
1206 old_device_name
= kmalloc(BUS_ID_SIZE
, GFP_KERNEL
);
1207 if (!old_device_name
) {
1211 strlcpy(old_device_name
, dev
->bus_id
, BUS_ID_SIZE
);
1212 strlcpy(dev
->bus_id
, new_name
, BUS_ID_SIZE
);
1214 error
= kobject_rename(&dev
->kobj
, new_name
);
1216 strlcpy(dev
->bus_id
, old_device_name
, BUS_ID_SIZE
);
1220 #ifdef CONFIG_SYSFS_DEPRECATED
1221 if (old_class_name
) {
1222 new_class_name
= make_class_name(dev
->class->name
, &dev
->kobj
);
1223 if (new_class_name
) {
1224 error
= sysfs_create_link(&dev
->parent
->kobj
,
1225 &dev
->kobj
, new_class_name
);
1228 sysfs_remove_link(&dev
->parent
->kobj
, old_class_name
);
1234 sysfs_remove_link(&dev
->class->subsys
.kobj
, old_device_name
);
1235 error
= sysfs_create_link(&dev
->class->subsys
.kobj
, &dev
->kobj
,
1238 /* Uh... how to unravel this if restoring can fail? */
1239 dev_err(dev
, "%s: sysfs_create_symlink failed (%d)\n",
1240 __FUNCTION__
, error
);
1246 kfree(new_class_name
);
1247 kfree(old_class_name
);
1248 kfree(old_device_name
);
1252 EXPORT_SYMBOL_GPL(device_rename
);
1254 static int device_move_class_links(struct device
*dev
,
1255 struct device
*old_parent
,
1256 struct device
*new_parent
)
1259 #ifdef CONFIG_SYSFS_DEPRECATED
1262 class_name
= make_class_name(dev
->class->name
, &dev
->kobj
);
1268 sysfs_remove_link(&dev
->kobj
, "device");
1269 sysfs_remove_link(&old_parent
->kobj
, class_name
);
1272 error
= sysfs_create_link(&dev
->kobj
, &new_parent
->kobj
,
1276 error
= sysfs_create_link(&new_parent
->kobj
, &dev
->kobj
,
1279 sysfs_remove_link(&dev
->kobj
, "device");
1288 sysfs_remove_link(&dev
->kobj
, "device");
1290 error
= sysfs_create_link(&dev
->kobj
, &new_parent
->kobj
,
1297 * device_move - moves a device to a new parent
1298 * @dev: the pointer to the struct device to be moved
1299 * @new_parent: the new parent of the device (can by NULL)
1301 int device_move(struct device
*dev
, struct device
*new_parent
)
1304 struct device
*old_parent
;
1305 struct kobject
*new_parent_kobj
;
1307 dev
= get_device(dev
);
1311 new_parent
= get_device(new_parent
);
1312 new_parent_kobj
= get_device_parent (dev
, new_parent
);
1313 if (IS_ERR(new_parent_kobj
)) {
1314 error
= PTR_ERR(new_parent_kobj
);
1315 put_device(new_parent
);
1318 pr_debug("DEVICE: moving '%s' to '%s'\n", dev
->bus_id
,
1319 new_parent
? new_parent
->bus_id
: "<NULL>");
1320 error
= kobject_move(&dev
->kobj
, new_parent_kobj
);
1322 put_device(new_parent
);
1325 old_parent
= dev
->parent
;
1326 dev
->parent
= new_parent
;
1328 klist_remove(&dev
->knode_parent
);
1330 klist_add_tail(&dev
->knode_parent
, &new_parent
->klist_children
);
1333 error
= device_move_class_links(dev
, old_parent
, new_parent
);
1335 /* We ignore errors on cleanup since we're hosed anyway... */
1336 device_move_class_links(dev
, new_parent
, old_parent
);
1337 if (!kobject_move(&dev
->kobj
, &old_parent
->kobj
)) {
1339 klist_remove(&dev
->knode_parent
);
1341 klist_add_tail(&dev
->knode_parent
,
1342 &old_parent
->klist_children
);
1344 put_device(new_parent
);
1348 put_device(old_parent
);
1354 EXPORT_SYMBOL_GPL(device_move
);