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>
21 #include <linux/genhd.h>
22 #include <linux/kallsyms.h>
23 #include <linux/semaphore.h>
24 #include <linux/mutex.h>
25 #include <linux/async.h>
28 #include "power/power.h"
30 int (*platform_notify
)(struct device
*dev
) = NULL
;
31 int (*platform_notify_remove
)(struct device
*dev
) = NULL
;
32 static struct kobject
*dev_kobj
;
33 struct kobject
*sysfs_dev_char_kobj
;
34 struct kobject
*sysfs_dev_block_kobj
;
37 static inline int device_is_not_partition(struct device
*dev
)
39 return !(dev
->type
== &part_type
);
42 static inline int device_is_not_partition(struct device
*dev
)
49 * dev_driver_string - Return a device's driver name, if at all possible
50 * @dev: struct device to get the name of
52 * Will return the device's driver's name if it is bound to a device. If
53 * the device is not bound to a device, it will return the name of the bus
54 * it is attached to. If it is not attached to a bus either, an empty
55 * string will be returned.
57 const char *dev_driver_string(const struct device
*dev
)
59 struct device_driver
*drv
;
61 /* dev->driver can change to NULL underneath us because of unbinding,
62 * so be careful about accessing it. dev->bus and dev->class should
63 * never change once they are set, so they don't need special care.
65 drv
= ACCESS_ONCE(dev
->driver
);
66 return drv
? drv
->name
:
67 (dev
->bus
? dev
->bus
->name
:
68 (dev
->class ? dev
->class->name
: ""));
70 EXPORT_SYMBOL(dev_driver_string
);
72 #define to_dev(obj) container_of(obj, struct device, kobj)
73 #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
75 static ssize_t
dev_attr_show(struct kobject
*kobj
, struct attribute
*attr
,
78 struct device_attribute
*dev_attr
= to_dev_attr(attr
);
79 struct device
*dev
= to_dev(kobj
);
83 ret
= dev_attr
->show(dev
, dev_attr
, buf
);
84 if (ret
>= (ssize_t
)PAGE_SIZE
) {
85 print_symbol("dev_attr_show: %s returned bad count\n",
86 (unsigned long)dev_attr
->show
);
91 static ssize_t
dev_attr_store(struct kobject
*kobj
, struct attribute
*attr
,
92 const char *buf
, size_t count
)
94 struct device_attribute
*dev_attr
= to_dev_attr(attr
);
95 struct device
*dev
= to_dev(kobj
);
99 ret
= dev_attr
->store(dev
, dev_attr
, buf
, count
);
103 static const struct sysfs_ops dev_sysfs_ops
= {
104 .show
= dev_attr_show
,
105 .store
= dev_attr_store
,
110 * device_release - free device structure.
111 * @kobj: device's kobject.
113 * This is called once the reference count for the object
114 * reaches 0. We forward the call to the device's release
115 * method, which should handle actually freeing the structure.
117 static void device_release(struct kobject
*kobj
)
119 struct device
*dev
= to_dev(kobj
);
120 struct device_private
*p
= dev
->p
;
124 else if (dev
->type
&& dev
->type
->release
)
125 dev
->type
->release(dev
);
126 else if (dev
->class && dev
->class->dev_release
)
127 dev
->class->dev_release(dev
);
129 WARN(1, KERN_ERR
"Device '%s' does not have a release() "
130 "function, it is broken and must be fixed.\n",
135 static struct kobj_type device_ktype
= {
136 .release
= device_release
,
137 .sysfs_ops
= &dev_sysfs_ops
,
141 static int dev_uevent_filter(struct kset
*kset
, struct kobject
*kobj
)
143 struct kobj_type
*ktype
= get_ktype(kobj
);
145 if (ktype
== &device_ktype
) {
146 struct device
*dev
= to_dev(kobj
);
155 static const char *dev_uevent_name(struct kset
*kset
, struct kobject
*kobj
)
157 struct device
*dev
= to_dev(kobj
);
160 return dev
->bus
->name
;
162 return dev
->class->name
;
166 static int dev_uevent(struct kset
*kset
, struct kobject
*kobj
,
167 struct kobj_uevent_env
*env
)
169 struct device
*dev
= to_dev(kobj
);
172 /* add device node properties if present */
173 if (MAJOR(dev
->devt
)) {
178 add_uevent_var(env
, "MAJOR=%u", MAJOR(dev
->devt
));
179 add_uevent_var(env
, "MINOR=%u", MINOR(dev
->devt
));
180 name
= device_get_devnode(dev
, &mode
, &tmp
);
182 add_uevent_var(env
, "DEVNAME=%s", name
);
185 add_uevent_var(env
, "DEVMODE=%#o", mode
& 0777);
189 if (dev
->type
&& dev
->type
->name
)
190 add_uevent_var(env
, "DEVTYPE=%s", dev
->type
->name
);
193 add_uevent_var(env
, "DRIVER=%s", dev
->driver
->name
);
195 #ifdef CONFIG_SYSFS_DEPRECATED
197 struct device
*parent
= dev
->parent
;
199 /* find first bus device in parent chain */
200 while (parent
&& !parent
->bus
)
201 parent
= parent
->parent
;
202 if (parent
&& parent
->bus
) {
205 path
= kobject_get_path(&parent
->kobj
, GFP_KERNEL
);
207 add_uevent_var(env
, "PHYSDEVPATH=%s", path
);
211 add_uevent_var(env
, "PHYSDEVBUS=%s", parent
->bus
->name
);
214 add_uevent_var(env
, "PHYSDEVDRIVER=%s",
215 parent
->driver
->name
);
217 } else if (dev
->bus
) {
218 add_uevent_var(env
, "PHYSDEVBUS=%s", dev
->bus
->name
);
221 add_uevent_var(env
, "PHYSDEVDRIVER=%s",
226 /* have the bus specific function add its stuff */
227 if (dev
->bus
&& dev
->bus
->uevent
) {
228 retval
= dev
->bus
->uevent(dev
, env
);
230 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
231 dev_name(dev
), __func__
, retval
);
234 /* have the class specific function add its stuff */
235 if (dev
->class && dev
->class->dev_uevent
) {
236 retval
= dev
->class->dev_uevent(dev
, env
);
238 pr_debug("device: '%s': %s: class uevent() "
239 "returned %d\n", dev_name(dev
),
243 /* have the device type specific fuction add its stuff */
244 if (dev
->type
&& dev
->type
->uevent
) {
245 retval
= dev
->type
->uevent(dev
, env
);
247 pr_debug("device: '%s': %s: dev_type uevent() "
248 "returned %d\n", dev_name(dev
),
255 static const struct kset_uevent_ops device_uevent_ops
= {
256 .filter
= dev_uevent_filter
,
257 .name
= dev_uevent_name
,
258 .uevent
= dev_uevent
,
261 static ssize_t
show_uevent(struct device
*dev
, struct device_attribute
*attr
,
264 struct kobject
*top_kobj
;
266 struct kobj_uevent_env
*env
= NULL
;
271 /* search the kset, the device belongs to */
272 top_kobj
= &dev
->kobj
;
273 while (!top_kobj
->kset
&& top_kobj
->parent
)
274 top_kobj
= top_kobj
->parent
;
278 kset
= top_kobj
->kset
;
279 if (!kset
->uevent_ops
|| !kset
->uevent_ops
->uevent
)
283 if (kset
->uevent_ops
&& kset
->uevent_ops
->filter
)
284 if (!kset
->uevent_ops
->filter(kset
, &dev
->kobj
))
287 env
= kzalloc(sizeof(struct kobj_uevent_env
), GFP_KERNEL
);
291 /* let the kset specific function add its keys */
292 retval
= kset
->uevent_ops
->uevent(kset
, &dev
->kobj
, env
);
296 /* copy keys to file */
297 for (i
= 0; i
< env
->envp_idx
; i
++)
298 count
+= sprintf(&buf
[count
], "%s\n", env
->envp
[i
]);
304 static ssize_t
store_uevent(struct device
*dev
, struct device_attribute
*attr
,
305 const char *buf
, size_t count
)
307 enum kobject_action action
;
309 if (kobject_action_type(buf
, count
, &action
) == 0)
310 kobject_uevent(&dev
->kobj
, action
);
312 dev_err(dev
, "uevent: unknown action-string\n");
316 static struct device_attribute uevent_attr
=
317 __ATTR(uevent
, S_IRUGO
| S_IWUSR
, show_uevent
, store_uevent
);
319 static int device_add_attributes(struct device
*dev
,
320 struct device_attribute
*attrs
)
326 for (i
= 0; attr_name(attrs
[i
]); i
++) {
327 error
= device_create_file(dev
, &attrs
[i
]);
333 device_remove_file(dev
, &attrs
[i
]);
338 static void device_remove_attributes(struct device
*dev
,
339 struct device_attribute
*attrs
)
344 for (i
= 0; attr_name(attrs
[i
]); i
++)
345 device_remove_file(dev
, &attrs
[i
]);
348 static int device_add_groups(struct device
*dev
,
349 const struct attribute_group
**groups
)
355 for (i
= 0; groups
[i
]; i
++) {
356 error
= sysfs_create_group(&dev
->kobj
, groups
[i
]);
359 sysfs_remove_group(&dev
->kobj
,
368 static void device_remove_groups(struct device
*dev
,
369 const struct attribute_group
**groups
)
374 for (i
= 0; groups
[i
]; i
++)
375 sysfs_remove_group(&dev
->kobj
, groups
[i
]);
378 static int device_add_attrs(struct device
*dev
)
380 struct class *class = dev
->class;
381 struct device_type
*type
= dev
->type
;
385 error
= device_add_attributes(dev
, class->dev_attrs
);
391 error
= device_add_groups(dev
, type
->groups
);
393 goto err_remove_class_attrs
;
396 error
= device_add_groups(dev
, dev
->groups
);
398 goto err_remove_type_groups
;
402 err_remove_type_groups
:
404 device_remove_groups(dev
, type
->groups
);
405 err_remove_class_attrs
:
407 device_remove_attributes(dev
, class->dev_attrs
);
412 static void device_remove_attrs(struct device
*dev
)
414 struct class *class = dev
->class;
415 struct device_type
*type
= dev
->type
;
417 device_remove_groups(dev
, dev
->groups
);
420 device_remove_groups(dev
, type
->groups
);
423 device_remove_attributes(dev
, class->dev_attrs
);
427 static ssize_t
show_dev(struct device
*dev
, struct device_attribute
*attr
,
430 return print_dev_t(buf
, dev
->devt
);
433 static struct device_attribute devt_attr
=
434 __ATTR(dev
, S_IRUGO
, show_dev
, NULL
);
436 /* kset to create /sys/devices/ */
437 struct kset
*devices_kset
;
440 * device_create_file - create sysfs attribute file for device.
442 * @attr: device attribute descriptor.
444 int device_create_file(struct device
*dev
,
445 const struct device_attribute
*attr
)
449 error
= sysfs_create_file(&dev
->kobj
, &attr
->attr
);
454 * device_remove_file - remove sysfs attribute file.
456 * @attr: device attribute descriptor.
458 void device_remove_file(struct device
*dev
,
459 const struct device_attribute
*attr
)
462 sysfs_remove_file(&dev
->kobj
, &attr
->attr
);
466 * device_create_bin_file - create sysfs binary attribute file for device.
468 * @attr: device binary attribute descriptor.
470 int device_create_bin_file(struct device
*dev
,
471 const struct bin_attribute
*attr
)
475 error
= sysfs_create_bin_file(&dev
->kobj
, attr
);
478 EXPORT_SYMBOL_GPL(device_create_bin_file
);
481 * device_remove_bin_file - remove sysfs binary attribute file
483 * @attr: device binary attribute descriptor.
485 void device_remove_bin_file(struct device
*dev
,
486 const struct bin_attribute
*attr
)
489 sysfs_remove_bin_file(&dev
->kobj
, attr
);
491 EXPORT_SYMBOL_GPL(device_remove_bin_file
);
494 * device_schedule_callback_owner - helper to schedule a callback for a device
496 * @func: callback function to invoke later.
497 * @owner: module owning the callback routine
499 * Attribute methods must not unregister themselves or their parent device
500 * (which would amount to the same thing). Attempts to do so will deadlock,
501 * since unregistration is mutually exclusive with driver callbacks.
503 * Instead methods can call this routine, which will attempt to allocate
504 * and schedule a workqueue request to call back @func with @dev as its
505 * argument in the workqueue's process context. @dev will be pinned until
508 * This routine is usually called via the inline device_schedule_callback(),
509 * which automatically sets @owner to THIS_MODULE.
511 * Returns 0 if the request was submitted, -ENOMEM if storage could not
512 * be allocated, -ENODEV if a reference to @owner isn't available.
514 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
515 * underlying sysfs routine (since it is intended for use by attribute
516 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
518 int device_schedule_callback_owner(struct device
*dev
,
519 void (*func
)(struct device
*), struct module
*owner
)
521 return sysfs_schedule_callback(&dev
->kobj
,
522 (void (*)(void *)) func
, dev
, owner
);
524 EXPORT_SYMBOL_GPL(device_schedule_callback_owner
);
526 static void klist_children_get(struct klist_node
*n
)
528 struct device_private
*p
= to_device_private_parent(n
);
529 struct device
*dev
= p
->device
;
534 static void klist_children_put(struct klist_node
*n
)
536 struct device_private
*p
= to_device_private_parent(n
);
537 struct device
*dev
= p
->device
;
543 * device_initialize - init device structure.
546 * This prepares the device for use by other layers by initializing
548 * It is the first half of device_register(), if called by
549 * that function, though it can also be called separately, so one
550 * may use @dev's fields. In particular, get_device()/put_device()
551 * may be used for reference counting of @dev after calling this
554 * NOTE: Use put_device() to give up your reference instead of freeing
555 * @dev directly once you have called this function.
557 void device_initialize(struct device
*dev
)
559 dev
->kobj
.kset
= devices_kset
;
560 kobject_init(&dev
->kobj
, &device_ktype
);
561 INIT_LIST_HEAD(&dev
->dma_pools
);
562 init_MUTEX(&dev
->sem
);
563 spin_lock_init(&dev
->devres_lock
);
564 INIT_LIST_HEAD(&dev
->devres_head
);
565 device_init_wakeup(dev
, 0);
567 set_dev_node(dev
, -1);
570 #ifdef CONFIG_SYSFS_DEPRECATED
571 static struct kobject
*get_device_parent(struct device
*dev
,
572 struct device
*parent
)
574 /* class devices without a parent live in /sys/class/<classname>/ */
575 if (dev
->class && (!parent
|| parent
->class != dev
->class))
576 return &dev
->class->p
->class_subsys
.kobj
;
577 /* all other devices keep their parent */
579 return &parent
->kobj
;
584 static inline void cleanup_device_parent(struct device
*dev
) {}
585 static inline void cleanup_glue_dir(struct device
*dev
,
586 struct kobject
*glue_dir
) {}
588 static struct kobject
*virtual_device_parent(struct device
*dev
)
590 static struct kobject
*virtual_dir
= NULL
;
593 virtual_dir
= kobject_create_and_add("virtual",
594 &devices_kset
->kobj
);
599 static struct kobject
*get_device_parent(struct device
*dev
,
600 struct device
*parent
)
605 static DEFINE_MUTEX(gdp_mutex
);
606 struct kobject
*kobj
= NULL
;
607 struct kobject
*parent_kobj
;
611 * If we have no parent, we live in "virtual".
612 * Class-devices with a non class-device as parent, live
613 * in a "glue" directory to prevent namespace collisions.
616 parent_kobj
= virtual_device_parent(dev
);
617 else if (parent
->class)
618 return &parent
->kobj
;
620 parent_kobj
= &parent
->kobj
;
622 mutex_lock(&gdp_mutex
);
624 /* find our class-directory at the parent and reference it */
625 spin_lock(&dev
->class->p
->class_dirs
.list_lock
);
626 list_for_each_entry(k
, &dev
->class->p
->class_dirs
.list
, entry
)
627 if (k
->parent
== parent_kobj
) {
628 kobj
= kobject_get(k
);
631 spin_unlock(&dev
->class->p
->class_dirs
.list_lock
);
633 mutex_unlock(&gdp_mutex
);
637 /* or create a new class-directory at the parent device */
638 k
= kobject_create();
640 mutex_unlock(&gdp_mutex
);
643 k
->kset
= &dev
->class->p
->class_dirs
;
644 retval
= kobject_add(k
, parent_kobj
, "%s", dev
->class->name
);
646 mutex_unlock(&gdp_mutex
);
650 /* do not emit an uevent for this simple "glue" directory */
651 mutex_unlock(&gdp_mutex
);
656 return &parent
->kobj
;
660 static void cleanup_glue_dir(struct device
*dev
, struct kobject
*glue_dir
)
662 /* see if we live in a "glue" directory */
663 if (!glue_dir
|| !dev
->class ||
664 glue_dir
->kset
!= &dev
->class->p
->class_dirs
)
667 kobject_put(glue_dir
);
670 static void cleanup_device_parent(struct device
*dev
)
672 cleanup_glue_dir(dev
, dev
->kobj
.parent
);
676 static void setup_parent(struct device
*dev
, struct device
*parent
)
678 struct kobject
*kobj
;
679 kobj
= get_device_parent(dev
, parent
);
681 dev
->kobj
.parent
= kobj
;
684 static int device_add_class_symlinks(struct device
*dev
)
691 error
= sysfs_create_link(&dev
->kobj
,
692 &dev
->class->p
->class_subsys
.kobj
,
697 #ifdef CONFIG_SYSFS_DEPRECATED
698 /* stacked class devices need a symlink in the class directory */
699 if (dev
->kobj
.parent
!= &dev
->class->p
->class_subsys
.kobj
&&
700 device_is_not_partition(dev
)) {
701 error
= sysfs_create_link(&dev
->class->p
->class_subsys
.kobj
,
702 &dev
->kobj
, dev_name(dev
));
707 if (dev
->parent
&& device_is_not_partition(dev
)) {
708 struct device
*parent
= dev
->parent
;
712 * stacked class devices have the 'device' link
713 * pointing to the bus device instead of the parent
715 while (parent
->class && !parent
->bus
&& parent
->parent
)
716 parent
= parent
->parent
;
718 error
= sysfs_create_link(&dev
->kobj
,
724 class_name
= make_class_name(dev
->class->name
,
727 error
= sysfs_create_link(&dev
->parent
->kobj
,
728 &dev
->kobj
, class_name
);
736 if (dev
->parent
&& device_is_not_partition(dev
))
737 sysfs_remove_link(&dev
->kobj
, "device");
739 if (dev
->kobj
.parent
!= &dev
->class->p
->class_subsys
.kobj
&&
740 device_is_not_partition(dev
))
741 sysfs_remove_link(&dev
->class->p
->class_subsys
.kobj
,
744 /* link in the class directory pointing to the device */
745 error
= sysfs_create_link(&dev
->class->p
->class_subsys
.kobj
,
746 &dev
->kobj
, dev_name(dev
));
750 if (dev
->parent
&& device_is_not_partition(dev
)) {
751 error
= sysfs_create_link(&dev
->kobj
, &dev
->parent
->kobj
,
759 sysfs_remove_link(&dev
->class->p
->class_subsys
.kobj
, dev_name(dev
));
763 sysfs_remove_link(&dev
->kobj
, "subsystem");
768 static void device_remove_class_symlinks(struct device
*dev
)
773 #ifdef CONFIG_SYSFS_DEPRECATED
774 if (dev
->parent
&& device_is_not_partition(dev
)) {
777 class_name
= make_class_name(dev
->class->name
, &dev
->kobj
);
779 sysfs_remove_link(&dev
->parent
->kobj
, class_name
);
782 sysfs_remove_link(&dev
->kobj
, "device");
785 if (dev
->kobj
.parent
!= &dev
->class->p
->class_subsys
.kobj
&&
786 device_is_not_partition(dev
))
787 sysfs_remove_link(&dev
->class->p
->class_subsys
.kobj
,
790 if (dev
->parent
&& device_is_not_partition(dev
))
791 sysfs_remove_link(&dev
->kobj
, "device");
793 sysfs_remove_link(&dev
->class->p
->class_subsys
.kobj
, dev_name(dev
));
796 sysfs_remove_link(&dev
->kobj
, "subsystem");
800 * dev_set_name - set a device name
802 * @fmt: format string for the device's name
804 int dev_set_name(struct device
*dev
, const char *fmt
, ...)
809 va_start(vargs
, fmt
);
810 err
= kobject_set_name_vargs(&dev
->kobj
, fmt
, vargs
);
814 EXPORT_SYMBOL_GPL(dev_set_name
);
817 * device_to_dev_kobj - select a /sys/dev/ directory for the device
820 * By default we select char/ for new entries. Setting class->dev_obj
821 * to NULL prevents an entry from being created. class->dev_kobj must
822 * be set (or cleared) before any devices are registered to the class
823 * otherwise device_create_sys_dev_entry() and
824 * device_remove_sys_dev_entry() will disagree about the the presence
827 static struct kobject
*device_to_dev_kobj(struct device
*dev
)
829 struct kobject
*kobj
;
832 kobj
= dev
->class->dev_kobj
;
834 kobj
= sysfs_dev_char_kobj
;
839 static int device_create_sys_dev_entry(struct device
*dev
)
841 struct kobject
*kobj
= device_to_dev_kobj(dev
);
846 format_dev_t(devt_str
, dev
->devt
);
847 error
= sysfs_create_link(kobj
, &dev
->kobj
, devt_str
);
853 static void device_remove_sys_dev_entry(struct device
*dev
)
855 struct kobject
*kobj
= device_to_dev_kobj(dev
);
859 format_dev_t(devt_str
, dev
->devt
);
860 sysfs_remove_link(kobj
, devt_str
);
864 int device_private_init(struct device
*dev
)
866 dev
->p
= kzalloc(sizeof(*dev
->p
), GFP_KERNEL
);
869 dev
->p
->device
= dev
;
870 klist_init(&dev
->p
->klist_children
, klist_children_get
,
876 * device_add - add device to device hierarchy.
879 * This is part 2 of device_register(), though may be called
880 * separately _iff_ device_initialize() has been called separately.
882 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
883 * to the global and sibling lists for the device, then
884 * adds it to the other relevant subsystems of the driver model.
886 * NOTE: _Never_ directly free @dev after calling this function, even
887 * if it returned an error! Always use put_device() to give up your
890 int device_add(struct device
*dev
)
892 struct device
*parent
= NULL
;
893 struct class_interface
*class_intf
;
896 dev
= get_device(dev
);
901 error
= device_private_init(dev
);
907 * for statically allocated devices, which should all be converted
908 * some day, we need to initialize the name. We prevent reading back
909 * the name, and force the use of dev_name()
911 if (dev
->init_name
) {
912 dev_set_name(dev
, "%s", dev
->init_name
);
913 dev
->init_name
= NULL
;
916 if (!dev_name(dev
)) {
921 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
923 parent
= get_device(dev
->parent
);
924 setup_parent(dev
, parent
);
926 /* use parent numa_node */
928 set_dev_node(dev
, dev_to_node(parent
));
930 /* first, register with generic layer. */
931 /* we require the name to be set before, and pass NULL */
932 error
= kobject_add(&dev
->kobj
, dev
->kobj
.parent
, NULL
);
936 /* notify platform of device entry */
938 platform_notify(dev
);
940 error
= device_create_file(dev
, &uevent_attr
);
944 if (MAJOR(dev
->devt
)) {
945 error
= device_create_file(dev
, &devt_attr
);
947 goto ueventattrError
;
949 error
= device_create_sys_dev_entry(dev
);
953 devtmpfs_create_node(dev
);
956 error
= device_add_class_symlinks(dev
);
959 error
= device_add_attrs(dev
);
962 error
= bus_add_device(dev
);
965 error
= dpm_sysfs_add(dev
);
970 /* Notify clients of device addition. This call must come
971 * after dpm_sysf_add() and before kobject_uevent().
974 blocking_notifier_call_chain(&dev
->bus
->p
->bus_notifier
,
975 BUS_NOTIFY_ADD_DEVICE
, dev
);
977 kobject_uevent(&dev
->kobj
, KOBJ_ADD
);
978 bus_probe_device(dev
);
980 klist_add_tail(&dev
->p
->knode_parent
,
981 &parent
->p
->klist_children
);
984 mutex_lock(&dev
->class->p
->class_mutex
);
985 /* tie the class to the device */
986 klist_add_tail(&dev
->knode_class
,
987 &dev
->class->p
->class_devices
);
989 /* notify any interfaces that the device is here */
990 list_for_each_entry(class_intf
,
991 &dev
->class->p
->class_interfaces
, node
)
992 if (class_intf
->add_dev
)
993 class_intf
->add_dev(dev
, class_intf
);
994 mutex_unlock(&dev
->class->p
->class_mutex
);
1000 bus_remove_device(dev
);
1002 device_remove_attrs(dev
);
1004 device_remove_class_symlinks(dev
);
1006 if (MAJOR(dev
->devt
))
1007 devtmpfs_delete_node(dev
);
1008 if (MAJOR(dev
->devt
))
1009 device_remove_sys_dev_entry(dev
);
1011 if (MAJOR(dev
->devt
))
1012 device_remove_file(dev
, &devt_attr
);
1014 device_remove_file(dev
, &uevent_attr
);
1016 kobject_uevent(&dev
->kobj
, KOBJ_REMOVE
);
1017 kobject_del(&dev
->kobj
);
1019 cleanup_device_parent(dev
);
1029 * device_register - register a device with the system.
1030 * @dev: pointer to the device structure
1032 * This happens in two clean steps - initialize the device
1033 * and add it to the system. The two steps can be called
1034 * separately, but this is the easiest and most common.
1035 * I.e. you should only call the two helpers separately if
1036 * have a clearly defined need to use and refcount the device
1037 * before it is added to the hierarchy.
1039 * NOTE: _Never_ directly free @dev after calling this function, even
1040 * if it returned an error! Always use put_device() to give up the
1041 * reference initialized in this function instead.
1043 int device_register(struct device
*dev
)
1045 device_initialize(dev
);
1046 return device_add(dev
);
1050 * get_device - increment reference count for device.
1053 * This simply forwards the call to kobject_get(), though
1054 * we do take care to provide for the case that we get a NULL
1055 * pointer passed in.
1057 struct device
*get_device(struct device
*dev
)
1059 return dev
? to_dev(kobject_get(&dev
->kobj
)) : NULL
;
1063 * put_device - decrement reference count.
1064 * @dev: device in question.
1066 void put_device(struct device
*dev
)
1068 /* might_sleep(); */
1070 kobject_put(&dev
->kobj
);
1074 * device_del - delete device from system.
1077 * This is the first part of the device unregistration
1078 * sequence. This removes the device from the lists we control
1079 * from here, has it removed from the other driver model
1080 * subsystems it was added to in device_add(), and removes it
1081 * from the kobject hierarchy.
1083 * NOTE: this should be called manually _iff_ device_add() was
1084 * also called manually.
1086 void device_del(struct device
*dev
)
1088 struct device
*parent
= dev
->parent
;
1089 struct class_interface
*class_intf
;
1091 /* Notify clients of device removal. This call must come
1092 * before dpm_sysfs_remove().
1095 blocking_notifier_call_chain(&dev
->bus
->p
->bus_notifier
,
1096 BUS_NOTIFY_DEL_DEVICE
, dev
);
1097 device_pm_remove(dev
);
1098 dpm_sysfs_remove(dev
);
1100 klist_del(&dev
->p
->knode_parent
);
1101 if (MAJOR(dev
->devt
)) {
1102 devtmpfs_delete_node(dev
);
1103 device_remove_sys_dev_entry(dev
);
1104 device_remove_file(dev
, &devt_attr
);
1107 device_remove_class_symlinks(dev
);
1109 mutex_lock(&dev
->class->p
->class_mutex
);
1110 /* notify any interfaces that the device is now gone */
1111 list_for_each_entry(class_intf
,
1112 &dev
->class->p
->class_interfaces
, node
)
1113 if (class_intf
->remove_dev
)
1114 class_intf
->remove_dev(dev
, class_intf
);
1115 /* remove the device from the class list */
1116 klist_del(&dev
->knode_class
);
1117 mutex_unlock(&dev
->class->p
->class_mutex
);
1119 device_remove_file(dev
, &uevent_attr
);
1120 device_remove_attrs(dev
);
1121 bus_remove_device(dev
);
1124 * Some platform devices are driven without driver attached
1125 * and managed resources may have been acquired. Make sure
1126 * all resources are released.
1128 devres_release_all(dev
);
1130 /* Notify the platform of the removal, in case they
1131 * need to do anything...
1133 if (platform_notify_remove
)
1134 platform_notify_remove(dev
);
1135 kobject_uevent(&dev
->kobj
, KOBJ_REMOVE
);
1136 cleanup_device_parent(dev
);
1137 kobject_del(&dev
->kobj
);
1142 * device_unregister - unregister device from system.
1143 * @dev: device going away.
1145 * We do this in two parts, like we do device_register(). First,
1146 * we remove it from all the subsystems with device_del(), then
1147 * we decrement the reference count via put_device(). If that
1148 * is the final reference count, the device will be cleaned up
1149 * via device_release() above. Otherwise, the structure will
1150 * stick around until the final reference to the device is dropped.
1152 void device_unregister(struct device
*dev
)
1154 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
1159 static struct device
*next_device(struct klist_iter
*i
)
1161 struct klist_node
*n
= klist_next(i
);
1162 struct device
*dev
= NULL
;
1163 struct device_private
*p
;
1166 p
= to_device_private_parent(n
);
1173 * device_get_devnode - path of device node file
1175 * @mode: returned file access mode
1176 * @tmp: possibly allocated string
1178 * Return the relative path of a possible device node.
1179 * Non-default names may need to allocate a memory to compose
1180 * a name. This memory is returned in tmp and needs to be
1181 * freed by the caller.
1183 const char *device_get_devnode(struct device
*dev
,
1184 mode_t
*mode
, const char **tmp
)
1190 /* the device type may provide a specific name */
1191 if (dev
->type
&& dev
->type
->devnode
)
1192 *tmp
= dev
->type
->devnode(dev
, mode
);
1196 /* the class may provide a specific name */
1197 if (dev
->class && dev
->class->devnode
)
1198 *tmp
= dev
->class->devnode(dev
, mode
);
1202 /* return name without allocation, tmp == NULL */
1203 if (strchr(dev_name(dev
), '!') == NULL
)
1204 return dev_name(dev
);
1206 /* replace '!' in the name with '/' */
1207 *tmp
= kstrdup(dev_name(dev
), GFP_KERNEL
);
1210 while ((s
= strchr(*tmp
, '!')))
1216 * device_for_each_child - device child iterator.
1217 * @parent: parent struct device.
1218 * @data: data for the callback.
1219 * @fn: function to be called for each device.
1221 * Iterate over @parent's child devices, and call @fn for each,
1224 * We check the return of @fn each time. If it returns anything
1225 * other than 0, we break out and return that value.
1227 int device_for_each_child(struct device
*parent
, void *data
,
1228 int (*fn
)(struct device
*dev
, void *data
))
1230 struct klist_iter i
;
1231 struct device
*child
;
1237 klist_iter_init(&parent
->p
->klist_children
, &i
);
1238 while ((child
= next_device(&i
)) && !error
)
1239 error
= fn(child
, data
);
1240 klist_iter_exit(&i
);
1245 * device_find_child - device iterator for locating a particular device.
1246 * @parent: parent struct device
1247 * @data: Data to pass to match function
1248 * @match: Callback function to check device
1250 * This is similar to the device_for_each_child() function above, but it
1251 * returns a reference to a device that is 'found' for later use, as
1252 * determined by the @match callback.
1254 * The callback should return 0 if the device doesn't match and non-zero
1255 * if it does. If the callback returns non-zero and a reference to the
1256 * current device can be obtained, this function will return to the caller
1257 * and not iterate over any more devices.
1259 struct device
*device_find_child(struct device
*parent
, void *data
,
1260 int (*match
)(struct device
*dev
, void *data
))
1262 struct klist_iter i
;
1263 struct device
*child
;
1268 klist_iter_init(&parent
->p
->klist_children
, &i
);
1269 while ((child
= next_device(&i
)))
1270 if (match(child
, data
) && get_device(child
))
1272 klist_iter_exit(&i
);
1276 int __init
devices_init(void)
1278 devices_kset
= kset_create_and_add("devices", &device_uevent_ops
, NULL
);
1281 dev_kobj
= kobject_create_and_add("dev", NULL
);
1284 sysfs_dev_block_kobj
= kobject_create_and_add("block", dev_kobj
);
1285 if (!sysfs_dev_block_kobj
)
1286 goto block_kobj_err
;
1287 sysfs_dev_char_kobj
= kobject_create_and_add("char", dev_kobj
);
1288 if (!sysfs_dev_char_kobj
)
1294 kobject_put(sysfs_dev_block_kobj
);
1296 kobject_put(dev_kobj
);
1298 kset_unregister(devices_kset
);
1302 EXPORT_SYMBOL_GPL(device_for_each_child
);
1303 EXPORT_SYMBOL_GPL(device_find_child
);
1305 EXPORT_SYMBOL_GPL(device_initialize
);
1306 EXPORT_SYMBOL_GPL(device_add
);
1307 EXPORT_SYMBOL_GPL(device_register
);
1309 EXPORT_SYMBOL_GPL(device_del
);
1310 EXPORT_SYMBOL_GPL(device_unregister
);
1311 EXPORT_SYMBOL_GPL(get_device
);
1312 EXPORT_SYMBOL_GPL(put_device
);
1314 EXPORT_SYMBOL_GPL(device_create_file
);
1315 EXPORT_SYMBOL_GPL(device_remove_file
);
1320 struct module
*owner
;
1323 #define to_root_device(dev) container_of(dev, struct root_device, dev)
1325 static void root_device_release(struct device
*dev
)
1327 kfree(to_root_device(dev
));
1331 * __root_device_register - allocate and register a root device
1332 * @name: root device name
1333 * @owner: owner module of the root device, usually THIS_MODULE
1335 * This function allocates a root device and registers it
1336 * using device_register(). In order to free the returned
1337 * device, use root_device_unregister().
1339 * Root devices are dummy devices which allow other devices
1340 * to be grouped under /sys/devices. Use this function to
1341 * allocate a root device and then use it as the parent of
1342 * any device which should appear under /sys/devices/{name}
1344 * The /sys/devices/{name} directory will also contain a
1345 * 'module' symlink which points to the @owner directory
1348 * Returns &struct device pointer on success, or ERR_PTR() on error.
1350 * Note: You probably want to use root_device_register().
1352 struct device
*__root_device_register(const char *name
, struct module
*owner
)
1354 struct root_device
*root
;
1357 root
= kzalloc(sizeof(struct root_device
), GFP_KERNEL
);
1359 return ERR_PTR(err
);
1361 err
= dev_set_name(&root
->dev
, "%s", name
);
1364 return ERR_PTR(err
);
1367 root
->dev
.release
= root_device_release
;
1369 err
= device_register(&root
->dev
);
1371 put_device(&root
->dev
);
1372 return ERR_PTR(err
);
1375 #ifdef CONFIG_MODULE /* gotta find a "cleaner" way to do this */
1377 struct module_kobject
*mk
= &owner
->mkobj
;
1379 err
= sysfs_create_link(&root
->dev
.kobj
, &mk
->kobj
, "module");
1381 device_unregister(&root
->dev
);
1382 return ERR_PTR(err
);
1384 root
->owner
= owner
;
1390 EXPORT_SYMBOL_GPL(__root_device_register
);
1393 * root_device_unregister - unregister and free a root device
1394 * @dev: device going away
1396 * This function unregisters and cleans up a device that was created by
1397 * root_device_register().
1399 void root_device_unregister(struct device
*dev
)
1401 struct root_device
*root
= to_root_device(dev
);
1404 sysfs_remove_link(&root
->dev
.kobj
, "module");
1406 device_unregister(dev
);
1408 EXPORT_SYMBOL_GPL(root_device_unregister
);
1411 static void device_create_release(struct device
*dev
)
1413 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
1418 * device_create_vargs - creates a device and registers it with sysfs
1419 * @class: pointer to the struct class that this device should be registered to
1420 * @parent: pointer to the parent struct device of this new device, if any
1421 * @devt: the dev_t for the char device to be added
1422 * @drvdata: the data to be added to the device for callbacks
1423 * @fmt: string for the device's name
1424 * @args: va_list for the device's name
1426 * This function can be used by char device classes. A struct device
1427 * will be created in sysfs, registered to the specified class.
1429 * A "dev" file will be created, showing the dev_t for the device, if
1430 * the dev_t is not 0,0.
1431 * If a pointer to a parent struct device is passed in, the newly created
1432 * struct device will be a child of that device in sysfs.
1433 * The pointer to the struct device will be returned from the call.
1434 * Any further sysfs files that might be required can be created using this
1437 * Returns &struct device pointer on success, or ERR_PTR() on error.
1439 * Note: the struct class passed to this function must have previously
1440 * been created with a call to class_create().
1442 struct device
*device_create_vargs(struct class *class, struct device
*parent
,
1443 dev_t devt
, void *drvdata
, const char *fmt
,
1446 struct device
*dev
= NULL
;
1447 int retval
= -ENODEV
;
1449 if (class == NULL
|| IS_ERR(class))
1452 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
1460 dev
->parent
= parent
;
1461 dev
->release
= device_create_release
;
1462 dev_set_drvdata(dev
, drvdata
);
1464 retval
= kobject_set_name_vargs(&dev
->kobj
, fmt
, args
);
1468 retval
= device_register(dev
);
1476 return ERR_PTR(retval
);
1478 EXPORT_SYMBOL_GPL(device_create_vargs
);
1481 * device_create - creates a device and registers it with sysfs
1482 * @class: pointer to the struct class that this device should be registered to
1483 * @parent: pointer to the parent struct device of this new device, if any
1484 * @devt: the dev_t for the char device to be added
1485 * @drvdata: the data to be added to the device for callbacks
1486 * @fmt: string for the device's name
1488 * This function can be used by char device classes. A struct device
1489 * will be created in sysfs, registered to the specified class.
1491 * A "dev" file will be created, showing the dev_t for the device, if
1492 * the dev_t is not 0,0.
1493 * If a pointer to a parent struct device is passed in, the newly created
1494 * struct device will be a child of that device in sysfs.
1495 * The pointer to the struct device will be returned from the call.
1496 * Any further sysfs files that might be required can be created using this
1499 * Returns &struct device pointer on success, or ERR_PTR() on error.
1501 * Note: the struct class passed to this function must have previously
1502 * been created with a call to class_create().
1504 struct device
*device_create(struct class *class, struct device
*parent
,
1505 dev_t devt
, void *drvdata
, const char *fmt
, ...)
1510 va_start(vargs
, fmt
);
1511 dev
= device_create_vargs(class, parent
, devt
, drvdata
, fmt
, vargs
);
1515 EXPORT_SYMBOL_GPL(device_create
);
1517 static int __match_devt(struct device
*dev
, void *data
)
1521 return dev
->devt
== *devt
;
1525 * device_destroy - removes a device that was created with device_create()
1526 * @class: pointer to the struct class that this device was registered with
1527 * @devt: the dev_t of the device that was previously registered
1529 * This call unregisters and cleans up a device that was created with a
1530 * call to device_create().
1532 void device_destroy(struct class *class, dev_t devt
)
1536 dev
= class_find_device(class, NULL
, &devt
, __match_devt
);
1539 device_unregister(dev
);
1542 EXPORT_SYMBOL_GPL(device_destroy
);
1545 * device_rename - renames a device
1546 * @dev: the pointer to the struct device to be renamed
1547 * @new_name: the new name of the device
1549 * It is the responsibility of the caller to provide mutual
1550 * exclusion between two different calls of device_rename
1551 * on the same device to ensure that new_name is valid and
1552 * won't conflict with other devices.
1554 int device_rename(struct device
*dev
, char *new_name
)
1556 char *old_class_name
= NULL
;
1557 char *new_class_name
= NULL
;
1558 char *old_device_name
= NULL
;
1561 dev
= get_device(dev
);
1565 pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev
),
1566 __func__
, new_name
);
1568 #ifdef CONFIG_SYSFS_DEPRECATED
1569 if ((dev
->class) && (dev
->parent
))
1570 old_class_name
= make_class_name(dev
->class->name
, &dev
->kobj
);
1573 old_device_name
= kstrdup(dev_name(dev
), GFP_KERNEL
);
1574 if (!old_device_name
) {
1579 error
= kobject_rename(&dev
->kobj
, new_name
);
1583 #ifdef CONFIG_SYSFS_DEPRECATED
1584 if (old_class_name
) {
1585 new_class_name
= make_class_name(dev
->class->name
, &dev
->kobj
);
1586 if (new_class_name
) {
1587 error
= sysfs_rename_link(&dev
->parent
->kobj
,
1595 error
= sysfs_rename_link(&dev
->class->p
->class_subsys
.kobj
,
1596 &dev
->kobj
, old_device_name
, new_name
);
1603 kfree(new_class_name
);
1604 kfree(old_class_name
);
1605 kfree(old_device_name
);
1609 EXPORT_SYMBOL_GPL(device_rename
);
1611 static int device_move_class_links(struct device
*dev
,
1612 struct device
*old_parent
,
1613 struct device
*new_parent
)
1616 #ifdef CONFIG_SYSFS_DEPRECATED
1619 class_name
= make_class_name(dev
->class->name
, &dev
->kobj
);
1625 sysfs_remove_link(&dev
->kobj
, "device");
1626 sysfs_remove_link(&old_parent
->kobj
, class_name
);
1629 error
= sysfs_create_link(&dev
->kobj
, &new_parent
->kobj
,
1633 error
= sysfs_create_link(&new_parent
->kobj
, &dev
->kobj
,
1636 sysfs_remove_link(&dev
->kobj
, "device");
1644 sysfs_remove_link(&dev
->kobj
, "device");
1646 error
= sysfs_create_link(&dev
->kobj
, &new_parent
->kobj
,
1653 * device_move - moves a device to a new parent
1654 * @dev: the pointer to the struct device to be moved
1655 * @new_parent: the new parent of the device (can by NULL)
1656 * @dpm_order: how to reorder the dpm_list
1658 int device_move(struct device
*dev
, struct device
*new_parent
,
1659 enum dpm_order dpm_order
)
1662 struct device
*old_parent
;
1663 struct kobject
*new_parent_kobj
;
1665 dev
= get_device(dev
);
1670 new_parent
= get_device(new_parent
);
1671 new_parent_kobj
= get_device_parent(dev
, new_parent
);
1673 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev
),
1674 __func__
, new_parent
? dev_name(new_parent
) : "<NULL>");
1675 error
= kobject_move(&dev
->kobj
, new_parent_kobj
);
1677 cleanup_glue_dir(dev
, new_parent_kobj
);
1678 put_device(new_parent
);
1681 old_parent
= dev
->parent
;
1682 dev
->parent
= new_parent
;
1684 klist_remove(&dev
->p
->knode_parent
);
1686 klist_add_tail(&dev
->p
->knode_parent
,
1687 &new_parent
->p
->klist_children
);
1688 set_dev_node(dev
, dev_to_node(new_parent
));
1693 error
= device_move_class_links(dev
, old_parent
, new_parent
);
1695 /* We ignore errors on cleanup since we're hosed anyway... */
1696 device_move_class_links(dev
, new_parent
, old_parent
);
1697 if (!kobject_move(&dev
->kobj
, &old_parent
->kobj
)) {
1699 klist_remove(&dev
->p
->knode_parent
);
1700 dev
->parent
= old_parent
;
1702 klist_add_tail(&dev
->p
->knode_parent
,
1703 &old_parent
->p
->klist_children
);
1704 set_dev_node(dev
, dev_to_node(old_parent
));
1707 cleanup_glue_dir(dev
, new_parent_kobj
);
1708 put_device(new_parent
);
1711 switch (dpm_order
) {
1712 case DPM_ORDER_NONE
:
1714 case DPM_ORDER_DEV_AFTER_PARENT
:
1715 device_pm_move_after(dev
, new_parent
);
1717 case DPM_ORDER_PARENT_BEFORE_DEV
:
1718 device_pm_move_before(new_parent
, dev
);
1720 case DPM_ORDER_DEV_LAST
:
1721 device_pm_move_last(dev
);
1725 put_device(old_parent
);
1731 EXPORT_SYMBOL_GPL(device_move
);
1734 * device_shutdown - call ->shutdown() on each device to shutdown.
1736 void device_shutdown(void)
1738 struct device
*dev
, *devn
;
1740 list_for_each_entry_safe_reverse(dev
, devn
, &devices_kset
->list
,
1742 if (dev
->bus
&& dev
->bus
->shutdown
) {
1743 dev_dbg(dev
, "shutdown\n");
1744 dev
->bus
->shutdown(dev
);
1745 } else if (dev
->driver
&& dev
->driver
->shutdown
) {
1746 dev_dbg(dev
, "shutdown\n");
1747 dev
->driver
->shutdown(dev
);
1750 async_synchronize_full();