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/mutex.h>
24 #include <linux/async.h>
27 #include "power/power.h"
29 #ifdef CONFIG_SYSFS_DEPRECATED
30 #ifdef CONFIG_SYSFS_DEPRECATED_V2
31 long sysfs_deprecated
= 1;
33 long sysfs_deprecated
= 0;
35 static __init
int sysfs_deprecated_setup(char *arg
)
37 return strict_strtol(arg
, 10, &sysfs_deprecated
);
39 early_param("sysfs.deprecated", sysfs_deprecated_setup
);
42 int (*platform_notify
)(struct device
*dev
) = NULL
;
43 int (*platform_notify_remove
)(struct device
*dev
) = NULL
;
44 static struct kobject
*dev_kobj
;
45 struct kobject
*sysfs_dev_char_kobj
;
46 struct kobject
*sysfs_dev_block_kobj
;
49 static inline int device_is_not_partition(struct device
*dev
)
51 return !(dev
->type
== &part_type
);
54 static inline int device_is_not_partition(struct device
*dev
)
61 * dev_driver_string - Return a device's driver name, if at all possible
62 * @dev: struct device to get the name of
64 * Will return the device's driver's name if it is bound to a device. If
65 * the device is not bound to a device, it will return the name of the bus
66 * it is attached to. If it is not attached to a bus either, an empty
67 * string will be returned.
69 const char *dev_driver_string(const struct device
*dev
)
71 struct device_driver
*drv
;
73 /* dev->driver can change to NULL underneath us because of unbinding,
74 * so be careful about accessing it. dev->bus and dev->class should
75 * never change once they are set, so they don't need special care.
77 drv
= ACCESS_ONCE(dev
->driver
);
78 return drv
? drv
->name
:
79 (dev
->bus
? dev
->bus
->name
:
80 (dev
->class ? dev
->class->name
: ""));
82 EXPORT_SYMBOL(dev_driver_string
);
84 #define to_dev(obj) container_of(obj, struct device, kobj)
85 #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
87 static ssize_t
dev_attr_show(struct kobject
*kobj
, struct attribute
*attr
,
90 struct device_attribute
*dev_attr
= to_dev_attr(attr
);
91 struct device
*dev
= to_dev(kobj
);
95 ret
= dev_attr
->show(dev
, dev_attr
, buf
);
96 if (ret
>= (ssize_t
)PAGE_SIZE
) {
97 print_symbol("dev_attr_show: %s returned bad count\n",
98 (unsigned long)dev_attr
->show
);
103 static ssize_t
dev_attr_store(struct kobject
*kobj
, struct attribute
*attr
,
104 const char *buf
, size_t count
)
106 struct device_attribute
*dev_attr
= to_dev_attr(attr
);
107 struct device
*dev
= to_dev(kobj
);
111 ret
= dev_attr
->store(dev
, dev_attr
, buf
, count
);
115 static const struct sysfs_ops dev_sysfs_ops
= {
116 .show
= dev_attr_show
,
117 .store
= dev_attr_store
,
122 * device_release - free device structure.
123 * @kobj: device's kobject.
125 * This is called once the reference count for the object
126 * reaches 0. We forward the call to the device's release
127 * method, which should handle actually freeing the structure.
129 static void device_release(struct kobject
*kobj
)
131 struct device
*dev
= to_dev(kobj
);
132 struct device_private
*p
= dev
->p
;
136 else if (dev
->type
&& dev
->type
->release
)
137 dev
->type
->release(dev
);
138 else if (dev
->class && dev
->class->dev_release
)
139 dev
->class->dev_release(dev
);
141 WARN(1, KERN_ERR
"Device '%s' does not have a release() "
142 "function, it is broken and must be fixed.\n",
147 static const void *device_namespace(struct kobject
*kobj
)
149 struct device
*dev
= to_dev(kobj
);
150 const void *ns
= NULL
;
152 if (dev
->class && dev
->class->ns_type
)
153 ns
= dev
->class->namespace(dev
);
158 static struct kobj_type device_ktype
= {
159 .release
= device_release
,
160 .sysfs_ops
= &dev_sysfs_ops
,
161 .namespace = device_namespace
,
165 static int dev_uevent_filter(struct kset
*kset
, struct kobject
*kobj
)
167 struct kobj_type
*ktype
= get_ktype(kobj
);
169 if (ktype
== &device_ktype
) {
170 struct device
*dev
= to_dev(kobj
);
179 static const char *dev_uevent_name(struct kset
*kset
, struct kobject
*kobj
)
181 struct device
*dev
= to_dev(kobj
);
184 return dev
->bus
->name
;
186 return dev
->class->name
;
190 static int dev_uevent(struct kset
*kset
, struct kobject
*kobj
,
191 struct kobj_uevent_env
*env
)
193 struct device
*dev
= to_dev(kobj
);
196 /* add device node properties if present */
197 if (MAJOR(dev
->devt
)) {
202 add_uevent_var(env
, "MAJOR=%u", MAJOR(dev
->devt
));
203 add_uevent_var(env
, "MINOR=%u", MINOR(dev
->devt
));
204 name
= device_get_devnode(dev
, &mode
, &tmp
);
206 add_uevent_var(env
, "DEVNAME=%s", name
);
209 add_uevent_var(env
, "DEVMODE=%#o", mode
& 0777);
213 if (dev
->type
&& dev
->type
->name
)
214 add_uevent_var(env
, "DEVTYPE=%s", dev
->type
->name
);
217 add_uevent_var(env
, "DRIVER=%s", dev
->driver
->name
);
219 /* have the bus specific function add its stuff */
220 if (dev
->bus
&& dev
->bus
->uevent
) {
221 retval
= dev
->bus
->uevent(dev
, env
);
223 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
224 dev_name(dev
), __func__
, retval
);
227 /* have the class specific function add its stuff */
228 if (dev
->class && dev
->class->dev_uevent
) {
229 retval
= dev
->class->dev_uevent(dev
, env
);
231 pr_debug("device: '%s': %s: class uevent() "
232 "returned %d\n", dev_name(dev
),
236 /* have the device type specific function add its stuff */
237 if (dev
->type
&& dev
->type
->uevent
) {
238 retval
= dev
->type
->uevent(dev
, env
);
240 pr_debug("device: '%s': %s: dev_type uevent() "
241 "returned %d\n", dev_name(dev
),
248 static const struct kset_uevent_ops device_uevent_ops
= {
249 .filter
= dev_uevent_filter
,
250 .name
= dev_uevent_name
,
251 .uevent
= dev_uevent
,
254 static ssize_t
show_uevent(struct device
*dev
, struct device_attribute
*attr
,
257 struct kobject
*top_kobj
;
259 struct kobj_uevent_env
*env
= NULL
;
264 /* search the kset, the device belongs to */
265 top_kobj
= &dev
->kobj
;
266 while (!top_kobj
->kset
&& top_kobj
->parent
)
267 top_kobj
= top_kobj
->parent
;
271 kset
= top_kobj
->kset
;
272 if (!kset
->uevent_ops
|| !kset
->uevent_ops
->uevent
)
276 if (kset
->uevent_ops
&& kset
->uevent_ops
->filter
)
277 if (!kset
->uevent_ops
->filter(kset
, &dev
->kobj
))
280 env
= kzalloc(sizeof(struct kobj_uevent_env
), GFP_KERNEL
);
284 /* let the kset specific function add its keys */
285 retval
= kset
->uevent_ops
->uevent(kset
, &dev
->kobj
, env
);
289 /* copy keys to file */
290 for (i
= 0; i
< env
->envp_idx
; i
++)
291 count
+= sprintf(&buf
[count
], "%s\n", env
->envp
[i
]);
297 static ssize_t
store_uevent(struct device
*dev
, struct device_attribute
*attr
,
298 const char *buf
, size_t count
)
300 enum kobject_action action
;
302 if (kobject_action_type(buf
, count
, &action
) == 0)
303 kobject_uevent(&dev
->kobj
, action
);
305 dev_err(dev
, "uevent: unknown action-string\n");
309 static struct device_attribute uevent_attr
=
310 __ATTR(uevent
, S_IRUGO
| S_IWUSR
, show_uevent
, store_uevent
);
312 static int device_add_attributes(struct device
*dev
,
313 struct device_attribute
*attrs
)
319 for (i
= 0; attr_name(attrs
[i
]); i
++) {
320 error
= device_create_file(dev
, &attrs
[i
]);
326 device_remove_file(dev
, &attrs
[i
]);
331 static void device_remove_attributes(struct device
*dev
,
332 struct device_attribute
*attrs
)
337 for (i
= 0; attr_name(attrs
[i
]); i
++)
338 device_remove_file(dev
, &attrs
[i
]);
341 static int device_add_groups(struct device
*dev
,
342 const struct attribute_group
**groups
)
348 for (i
= 0; groups
[i
]; i
++) {
349 error
= sysfs_create_group(&dev
->kobj
, groups
[i
]);
352 sysfs_remove_group(&dev
->kobj
,
361 static void device_remove_groups(struct device
*dev
,
362 const struct attribute_group
**groups
)
367 for (i
= 0; groups
[i
]; i
++)
368 sysfs_remove_group(&dev
->kobj
, groups
[i
]);
371 static int device_add_attrs(struct device
*dev
)
373 struct class *class = dev
->class;
374 struct device_type
*type
= dev
->type
;
378 error
= device_add_attributes(dev
, class->dev_attrs
);
384 error
= device_add_groups(dev
, type
->groups
);
386 goto err_remove_class_attrs
;
389 error
= device_add_groups(dev
, dev
->groups
);
391 goto err_remove_type_groups
;
395 err_remove_type_groups
:
397 device_remove_groups(dev
, type
->groups
);
398 err_remove_class_attrs
:
400 device_remove_attributes(dev
, class->dev_attrs
);
405 static void device_remove_attrs(struct device
*dev
)
407 struct class *class = dev
->class;
408 struct device_type
*type
= dev
->type
;
410 device_remove_groups(dev
, dev
->groups
);
413 device_remove_groups(dev
, type
->groups
);
416 device_remove_attributes(dev
, class->dev_attrs
);
420 static ssize_t
show_dev(struct device
*dev
, struct device_attribute
*attr
,
423 return print_dev_t(buf
, dev
->devt
);
426 static struct device_attribute devt_attr
=
427 __ATTR(dev
, S_IRUGO
, show_dev
, NULL
);
429 /* kset to create /sys/devices/ */
430 struct kset
*devices_kset
;
433 * device_create_file - create sysfs attribute file for device.
435 * @attr: device attribute descriptor.
437 int device_create_file(struct device
*dev
,
438 const struct device_attribute
*attr
)
442 error
= sysfs_create_file(&dev
->kobj
, &attr
->attr
);
447 * device_remove_file - remove sysfs attribute file.
449 * @attr: device attribute descriptor.
451 void device_remove_file(struct device
*dev
,
452 const struct device_attribute
*attr
)
455 sysfs_remove_file(&dev
->kobj
, &attr
->attr
);
459 * device_create_bin_file - create sysfs binary attribute file for device.
461 * @attr: device binary attribute descriptor.
463 int device_create_bin_file(struct device
*dev
,
464 const struct bin_attribute
*attr
)
468 error
= sysfs_create_bin_file(&dev
->kobj
, attr
);
471 EXPORT_SYMBOL_GPL(device_create_bin_file
);
474 * device_remove_bin_file - remove sysfs binary attribute file
476 * @attr: device binary attribute descriptor.
478 void device_remove_bin_file(struct device
*dev
,
479 const struct bin_attribute
*attr
)
482 sysfs_remove_bin_file(&dev
->kobj
, attr
);
484 EXPORT_SYMBOL_GPL(device_remove_bin_file
);
487 * device_schedule_callback_owner - helper to schedule a callback for a device
489 * @func: callback function to invoke later.
490 * @owner: module owning the callback routine
492 * Attribute methods must not unregister themselves or their parent device
493 * (which would amount to the same thing). Attempts to do so will deadlock,
494 * since unregistration is mutually exclusive with driver callbacks.
496 * Instead methods can call this routine, which will attempt to allocate
497 * and schedule a workqueue request to call back @func with @dev as its
498 * argument in the workqueue's process context. @dev will be pinned until
501 * This routine is usually called via the inline device_schedule_callback(),
502 * which automatically sets @owner to THIS_MODULE.
504 * Returns 0 if the request was submitted, -ENOMEM if storage could not
505 * be allocated, -ENODEV if a reference to @owner isn't available.
507 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
508 * underlying sysfs routine (since it is intended for use by attribute
509 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
511 int device_schedule_callback_owner(struct device
*dev
,
512 void (*func
)(struct device
*), struct module
*owner
)
514 return sysfs_schedule_callback(&dev
->kobj
,
515 (void (*)(void *)) func
, dev
, owner
);
517 EXPORT_SYMBOL_GPL(device_schedule_callback_owner
);
519 static void klist_children_get(struct klist_node
*n
)
521 struct device_private
*p
= to_device_private_parent(n
);
522 struct device
*dev
= p
->device
;
527 static void klist_children_put(struct klist_node
*n
)
529 struct device_private
*p
= to_device_private_parent(n
);
530 struct device
*dev
= p
->device
;
536 * device_initialize - init device structure.
539 * This prepares the device for use by other layers by initializing
541 * It is the first half of device_register(), if called by
542 * that function, though it can also be called separately, so one
543 * may use @dev's fields. In particular, get_device()/put_device()
544 * may be used for reference counting of @dev after calling this
547 * NOTE: Use put_device() to give up your reference instead of freeing
548 * @dev directly once you have called this function.
550 void device_initialize(struct device
*dev
)
552 dev
->kobj
.kset
= devices_kset
;
553 kobject_init(&dev
->kobj
, &device_ktype
);
554 INIT_LIST_HEAD(&dev
->dma_pools
);
555 mutex_init(&dev
->mutex
);
556 lockdep_set_novalidate_class(&dev
->mutex
);
557 spin_lock_init(&dev
->devres_lock
);
558 INIT_LIST_HEAD(&dev
->devres_head
);
560 set_dev_node(dev
, -1);
563 static struct kobject
*virtual_device_parent(struct device
*dev
)
565 static struct kobject
*virtual_dir
= NULL
;
568 virtual_dir
= kobject_create_and_add("virtual",
569 &devices_kset
->kobj
);
579 #define to_class_dir(obj) container_of(obj, struct class_dir, kobj)
581 static void class_dir_release(struct kobject
*kobj
)
583 struct class_dir
*dir
= to_class_dir(kobj
);
588 struct kobj_ns_type_operations
*class_dir_child_ns_type(struct kobject
*kobj
)
590 struct class_dir
*dir
= to_class_dir(kobj
);
591 return dir
->class->ns_type
;
594 static struct kobj_type class_dir_ktype
= {
595 .release
= class_dir_release
,
596 .sysfs_ops
= &kobj_sysfs_ops
,
597 .child_ns_type
= class_dir_child_ns_type
600 static struct kobject
*
601 class_dir_create_and_add(struct class *class, struct kobject
*parent_kobj
)
603 struct class_dir
*dir
;
606 dir
= kzalloc(sizeof(*dir
), GFP_KERNEL
);
611 kobject_init(&dir
->kobj
, &class_dir_ktype
);
613 dir
->kobj
.kset
= &class->p
->class_dirs
;
615 retval
= kobject_add(&dir
->kobj
, parent_kobj
, "%s", class->name
);
617 kobject_put(&dir
->kobj
);
624 static struct kobject
*get_device_parent(struct device
*dev
,
625 struct device
*parent
)
628 static DEFINE_MUTEX(gdp_mutex
);
629 struct kobject
*kobj
= NULL
;
630 struct kobject
*parent_kobj
;
634 /* block disks show up in /sys/block */
635 if (sysfs_deprecated
&& dev
->class == &block_class
) {
636 if (parent
&& parent
->class == &block_class
)
637 return &parent
->kobj
;
638 return &block_class
.p
->class_subsys
.kobj
;
643 * If we have no parent, we live in "virtual".
644 * Class-devices with a non class-device as parent, live
645 * in a "glue" directory to prevent namespace collisions.
648 parent_kobj
= virtual_device_parent(dev
);
649 else if (parent
->class && !dev
->class->ns_type
)
650 return &parent
->kobj
;
652 parent_kobj
= &parent
->kobj
;
654 mutex_lock(&gdp_mutex
);
656 /* find our class-directory at the parent and reference it */
657 spin_lock(&dev
->class->p
->class_dirs
.list_lock
);
658 list_for_each_entry(k
, &dev
->class->p
->class_dirs
.list
, entry
)
659 if (k
->parent
== parent_kobj
) {
660 kobj
= kobject_get(k
);
663 spin_unlock(&dev
->class->p
->class_dirs
.list_lock
);
665 mutex_unlock(&gdp_mutex
);
669 /* or create a new class-directory at the parent device */
670 k
= class_dir_create_and_add(dev
->class, parent_kobj
);
671 /* do not emit an uevent for this simple "glue" directory */
672 mutex_unlock(&gdp_mutex
);
677 return &parent
->kobj
;
681 static void cleanup_glue_dir(struct device
*dev
, struct kobject
*glue_dir
)
683 /* see if we live in a "glue" directory */
684 if (!glue_dir
|| !dev
->class ||
685 glue_dir
->kset
!= &dev
->class->p
->class_dirs
)
688 kobject_put(glue_dir
);
691 static void cleanup_device_parent(struct device
*dev
)
693 cleanup_glue_dir(dev
, dev
->kobj
.parent
);
696 static void setup_parent(struct device
*dev
, struct device
*parent
)
698 struct kobject
*kobj
;
699 kobj
= get_device_parent(dev
, parent
);
701 dev
->kobj
.parent
= kobj
;
704 static int device_add_class_symlinks(struct device
*dev
)
711 error
= sysfs_create_link(&dev
->kobj
,
712 &dev
->class->p
->class_subsys
.kobj
,
717 if (dev
->parent
&& device_is_not_partition(dev
)) {
718 error
= sysfs_create_link(&dev
->kobj
, &dev
->parent
->kobj
,
725 /* /sys/block has directories and does not need symlinks */
726 if (sysfs_deprecated
&& dev
->class == &block_class
)
730 /* link in the class directory pointing to the device */
731 error
= sysfs_create_link(&dev
->class->p
->class_subsys
.kobj
,
732 &dev
->kobj
, dev_name(dev
));
739 sysfs_remove_link(&dev
->kobj
, "device");
742 sysfs_remove_link(&dev
->kobj
, "subsystem");
747 static void device_remove_class_symlinks(struct device
*dev
)
752 if (dev
->parent
&& device_is_not_partition(dev
))
753 sysfs_remove_link(&dev
->kobj
, "device");
754 sysfs_remove_link(&dev
->kobj
, "subsystem");
756 if (sysfs_deprecated
&& dev
->class == &block_class
)
759 sysfs_delete_link(&dev
->class->p
->class_subsys
.kobj
, &dev
->kobj
, dev_name(dev
));
763 * dev_set_name - set a device name
765 * @fmt: format string for the device's name
767 int dev_set_name(struct device
*dev
, const char *fmt
, ...)
772 va_start(vargs
, fmt
);
773 err
= kobject_set_name_vargs(&dev
->kobj
, fmt
, vargs
);
777 EXPORT_SYMBOL_GPL(dev_set_name
);
780 * device_to_dev_kobj - select a /sys/dev/ directory for the device
783 * By default we select char/ for new entries. Setting class->dev_obj
784 * to NULL prevents an entry from being created. class->dev_kobj must
785 * be set (or cleared) before any devices are registered to the class
786 * otherwise device_create_sys_dev_entry() and
787 * device_remove_sys_dev_entry() will disagree about the the presence
790 static struct kobject
*device_to_dev_kobj(struct device
*dev
)
792 struct kobject
*kobj
;
795 kobj
= dev
->class->dev_kobj
;
797 kobj
= sysfs_dev_char_kobj
;
802 static int device_create_sys_dev_entry(struct device
*dev
)
804 struct kobject
*kobj
= device_to_dev_kobj(dev
);
809 format_dev_t(devt_str
, dev
->devt
);
810 error
= sysfs_create_link(kobj
, &dev
->kobj
, devt_str
);
816 static void device_remove_sys_dev_entry(struct device
*dev
)
818 struct kobject
*kobj
= device_to_dev_kobj(dev
);
822 format_dev_t(devt_str
, dev
->devt
);
823 sysfs_remove_link(kobj
, devt_str
);
827 int device_private_init(struct device
*dev
)
829 dev
->p
= kzalloc(sizeof(*dev
->p
), GFP_KERNEL
);
832 dev
->p
->device
= dev
;
833 klist_init(&dev
->p
->klist_children
, klist_children_get
,
839 * device_add - add device to device hierarchy.
842 * This is part 2 of device_register(), though may be called
843 * separately _iff_ device_initialize() has been called separately.
845 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
846 * to the global and sibling lists for the device, then
847 * adds it to the other relevant subsystems of the driver model.
849 * NOTE: _Never_ directly free @dev after calling this function, even
850 * if it returned an error! Always use put_device() to give up your
853 int device_add(struct device
*dev
)
855 struct device
*parent
= NULL
;
856 struct class_interface
*class_intf
;
859 dev
= get_device(dev
);
864 error
= device_private_init(dev
);
870 * for statically allocated devices, which should all be converted
871 * some day, we need to initialize the name. We prevent reading back
872 * the name, and force the use of dev_name()
874 if (dev
->init_name
) {
875 dev_set_name(dev
, "%s", dev
->init_name
);
876 dev
->init_name
= NULL
;
879 if (!dev_name(dev
)) {
884 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
886 parent
= get_device(dev
->parent
);
887 setup_parent(dev
, parent
);
889 /* use parent numa_node */
891 set_dev_node(dev
, dev_to_node(parent
));
893 /* first, register with generic layer. */
894 /* we require the name to be set before, and pass NULL */
895 error
= kobject_add(&dev
->kobj
, dev
->kobj
.parent
, NULL
);
899 /* notify platform of device entry */
901 platform_notify(dev
);
903 error
= device_create_file(dev
, &uevent_attr
);
907 if (MAJOR(dev
->devt
)) {
908 error
= device_create_file(dev
, &devt_attr
);
910 goto ueventattrError
;
912 error
= device_create_sys_dev_entry(dev
);
916 devtmpfs_create_node(dev
);
919 error
= device_add_class_symlinks(dev
);
922 error
= device_add_attrs(dev
);
925 error
= bus_add_device(dev
);
928 error
= dpm_sysfs_add(dev
);
933 /* Notify clients of device addition. This call must come
934 * after dpm_sysf_add() and before kobject_uevent().
937 blocking_notifier_call_chain(&dev
->bus
->p
->bus_notifier
,
938 BUS_NOTIFY_ADD_DEVICE
, dev
);
940 kobject_uevent(&dev
->kobj
, KOBJ_ADD
);
941 bus_probe_device(dev
);
943 klist_add_tail(&dev
->p
->knode_parent
,
944 &parent
->p
->klist_children
);
947 mutex_lock(&dev
->class->p
->class_mutex
);
948 /* tie the class to the device */
949 klist_add_tail(&dev
->knode_class
,
950 &dev
->class->p
->class_devices
);
952 /* notify any interfaces that the device is here */
953 list_for_each_entry(class_intf
,
954 &dev
->class->p
->class_interfaces
, node
)
955 if (class_intf
->add_dev
)
956 class_intf
->add_dev(dev
, class_intf
);
957 mutex_unlock(&dev
->class->p
->class_mutex
);
963 bus_remove_device(dev
);
965 device_remove_attrs(dev
);
967 device_remove_class_symlinks(dev
);
969 if (MAJOR(dev
->devt
))
970 devtmpfs_delete_node(dev
);
971 if (MAJOR(dev
->devt
))
972 device_remove_sys_dev_entry(dev
);
974 if (MAJOR(dev
->devt
))
975 device_remove_file(dev
, &devt_attr
);
977 device_remove_file(dev
, &uevent_attr
);
979 kobject_uevent(&dev
->kobj
, KOBJ_REMOVE
);
980 kobject_del(&dev
->kobj
);
982 cleanup_device_parent(dev
);
992 * device_register - register a device with the system.
993 * @dev: pointer to the device structure
995 * This happens in two clean steps - initialize the device
996 * and add it to the system. The two steps can be called
997 * separately, but this is the easiest and most common.
998 * I.e. you should only call the two helpers separately if
999 * have a clearly defined need to use and refcount the device
1000 * before it is added to the hierarchy.
1002 * NOTE: _Never_ directly free @dev after calling this function, even
1003 * if it returned an error! Always use put_device() to give up the
1004 * reference initialized in this function instead.
1006 int device_register(struct device
*dev
)
1008 device_initialize(dev
);
1009 return device_add(dev
);
1013 * get_device - increment reference count for device.
1016 * This simply forwards the call to kobject_get(), though
1017 * we do take care to provide for the case that we get a NULL
1018 * pointer passed in.
1020 struct device
*get_device(struct device
*dev
)
1022 return dev
? to_dev(kobject_get(&dev
->kobj
)) : NULL
;
1026 * put_device - decrement reference count.
1027 * @dev: device in question.
1029 void put_device(struct device
*dev
)
1031 /* might_sleep(); */
1033 kobject_put(&dev
->kobj
);
1037 * device_del - delete device from system.
1040 * This is the first part of the device unregistration
1041 * sequence. This removes the device from the lists we control
1042 * from here, has it removed from the other driver model
1043 * subsystems it was added to in device_add(), and removes it
1044 * from the kobject hierarchy.
1046 * NOTE: this should be called manually _iff_ device_add() was
1047 * also called manually.
1049 void device_del(struct device
*dev
)
1051 struct device
*parent
= dev
->parent
;
1052 struct class_interface
*class_intf
;
1054 /* Notify clients of device removal. This call must come
1055 * before dpm_sysfs_remove().
1058 blocking_notifier_call_chain(&dev
->bus
->p
->bus_notifier
,
1059 BUS_NOTIFY_DEL_DEVICE
, dev
);
1060 device_pm_remove(dev
);
1061 dpm_sysfs_remove(dev
);
1063 klist_del(&dev
->p
->knode_parent
);
1064 if (MAJOR(dev
->devt
)) {
1065 devtmpfs_delete_node(dev
);
1066 device_remove_sys_dev_entry(dev
);
1067 device_remove_file(dev
, &devt_attr
);
1070 device_remove_class_symlinks(dev
);
1072 mutex_lock(&dev
->class->p
->class_mutex
);
1073 /* notify any interfaces that the device is now gone */
1074 list_for_each_entry(class_intf
,
1075 &dev
->class->p
->class_interfaces
, node
)
1076 if (class_intf
->remove_dev
)
1077 class_intf
->remove_dev(dev
, class_intf
);
1078 /* remove the device from the class list */
1079 klist_del(&dev
->knode_class
);
1080 mutex_unlock(&dev
->class->p
->class_mutex
);
1082 device_remove_file(dev
, &uevent_attr
);
1083 device_remove_attrs(dev
);
1084 bus_remove_device(dev
);
1087 * Some platform devices are driven without driver attached
1088 * and managed resources may have been acquired. Make sure
1089 * all resources are released.
1091 devres_release_all(dev
);
1093 /* Notify the platform of the removal, in case they
1094 * need to do anything...
1096 if (platform_notify_remove
)
1097 platform_notify_remove(dev
);
1098 kobject_uevent(&dev
->kobj
, KOBJ_REMOVE
);
1099 cleanup_device_parent(dev
);
1100 kobject_del(&dev
->kobj
);
1105 * device_unregister - unregister device from system.
1106 * @dev: device going away.
1108 * We do this in two parts, like we do device_register(). First,
1109 * we remove it from all the subsystems with device_del(), then
1110 * we decrement the reference count via put_device(). If that
1111 * is the final reference count, the device will be cleaned up
1112 * via device_release() above. Otherwise, the structure will
1113 * stick around until the final reference to the device is dropped.
1115 void device_unregister(struct device
*dev
)
1117 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
1122 static struct device
*next_device(struct klist_iter
*i
)
1124 struct klist_node
*n
= klist_next(i
);
1125 struct device
*dev
= NULL
;
1126 struct device_private
*p
;
1129 p
= to_device_private_parent(n
);
1136 * device_get_devnode - path of device node file
1138 * @mode: returned file access mode
1139 * @tmp: possibly allocated string
1141 * Return the relative path of a possible device node.
1142 * Non-default names may need to allocate a memory to compose
1143 * a name. This memory is returned in tmp and needs to be
1144 * freed by the caller.
1146 const char *device_get_devnode(struct device
*dev
,
1147 mode_t
*mode
, const char **tmp
)
1153 /* the device type may provide a specific name */
1154 if (dev
->type
&& dev
->type
->devnode
)
1155 *tmp
= dev
->type
->devnode(dev
, mode
);
1159 /* the class may provide a specific name */
1160 if (dev
->class && dev
->class->devnode
)
1161 *tmp
= dev
->class->devnode(dev
, mode
);
1165 /* return name without allocation, tmp == NULL */
1166 if (strchr(dev_name(dev
), '!') == NULL
)
1167 return dev_name(dev
);
1169 /* replace '!' in the name with '/' */
1170 *tmp
= kstrdup(dev_name(dev
), GFP_KERNEL
);
1173 while ((s
= strchr(*tmp
, '!')))
1179 * device_for_each_child - device child iterator.
1180 * @parent: parent struct device.
1181 * @data: data for the callback.
1182 * @fn: function to be called for each device.
1184 * Iterate over @parent's child devices, and call @fn for each,
1187 * We check the return of @fn each time. If it returns anything
1188 * other than 0, we break out and return that value.
1190 int device_for_each_child(struct device
*parent
, void *data
,
1191 int (*fn
)(struct device
*dev
, void *data
))
1193 struct klist_iter i
;
1194 struct device
*child
;
1200 klist_iter_init(&parent
->p
->klist_children
, &i
);
1201 while ((child
= next_device(&i
)) && !error
)
1202 error
= fn(child
, data
);
1203 klist_iter_exit(&i
);
1208 * device_find_child - device iterator for locating a particular device.
1209 * @parent: parent struct device
1210 * @data: Data to pass to match function
1211 * @match: Callback function to check device
1213 * This is similar to the device_for_each_child() function above, but it
1214 * returns a reference to a device that is 'found' for later use, as
1215 * determined by the @match callback.
1217 * The callback should return 0 if the device doesn't match and non-zero
1218 * if it does. If the callback returns non-zero and a reference to the
1219 * current device can be obtained, this function will return to the caller
1220 * and not iterate over any more devices.
1222 struct device
*device_find_child(struct device
*parent
, void *data
,
1223 int (*match
)(struct device
*dev
, void *data
))
1225 struct klist_iter i
;
1226 struct device
*child
;
1231 klist_iter_init(&parent
->p
->klist_children
, &i
);
1232 while ((child
= next_device(&i
)))
1233 if (match(child
, data
) && get_device(child
))
1235 klist_iter_exit(&i
);
1239 int __init
devices_init(void)
1241 devices_kset
= kset_create_and_add("devices", &device_uevent_ops
, NULL
);
1244 dev_kobj
= kobject_create_and_add("dev", NULL
);
1247 sysfs_dev_block_kobj
= kobject_create_and_add("block", dev_kobj
);
1248 if (!sysfs_dev_block_kobj
)
1249 goto block_kobj_err
;
1250 sysfs_dev_char_kobj
= kobject_create_and_add("char", dev_kobj
);
1251 if (!sysfs_dev_char_kobj
)
1257 kobject_put(sysfs_dev_block_kobj
);
1259 kobject_put(dev_kobj
);
1261 kset_unregister(devices_kset
);
1265 EXPORT_SYMBOL_GPL(device_for_each_child
);
1266 EXPORT_SYMBOL_GPL(device_find_child
);
1268 EXPORT_SYMBOL_GPL(device_initialize
);
1269 EXPORT_SYMBOL_GPL(device_add
);
1270 EXPORT_SYMBOL_GPL(device_register
);
1272 EXPORT_SYMBOL_GPL(device_del
);
1273 EXPORT_SYMBOL_GPL(device_unregister
);
1274 EXPORT_SYMBOL_GPL(get_device
);
1275 EXPORT_SYMBOL_GPL(put_device
);
1277 EXPORT_SYMBOL_GPL(device_create_file
);
1278 EXPORT_SYMBOL_GPL(device_remove_file
);
1283 struct module
*owner
;
1286 #define to_root_device(dev) container_of(dev, struct root_device, dev)
1288 static void root_device_release(struct device
*dev
)
1290 kfree(to_root_device(dev
));
1294 * __root_device_register - allocate and register a root device
1295 * @name: root device name
1296 * @owner: owner module of the root device, usually THIS_MODULE
1298 * This function allocates a root device and registers it
1299 * using device_register(). In order to free the returned
1300 * device, use root_device_unregister().
1302 * Root devices are dummy devices which allow other devices
1303 * to be grouped under /sys/devices. Use this function to
1304 * allocate a root device and then use it as the parent of
1305 * any device which should appear under /sys/devices/{name}
1307 * The /sys/devices/{name} directory will also contain a
1308 * 'module' symlink which points to the @owner directory
1311 * Returns &struct device pointer on success, or ERR_PTR() on error.
1313 * Note: You probably want to use root_device_register().
1315 struct device
*__root_device_register(const char *name
, struct module
*owner
)
1317 struct root_device
*root
;
1320 root
= kzalloc(sizeof(struct root_device
), GFP_KERNEL
);
1322 return ERR_PTR(err
);
1324 err
= dev_set_name(&root
->dev
, "%s", name
);
1327 return ERR_PTR(err
);
1330 root
->dev
.release
= root_device_release
;
1332 err
= device_register(&root
->dev
);
1334 put_device(&root
->dev
);
1335 return ERR_PTR(err
);
1338 #ifdef CONFIG_MODULES /* gotta find a "cleaner" way to do this */
1340 struct module_kobject
*mk
= &owner
->mkobj
;
1342 err
= sysfs_create_link(&root
->dev
.kobj
, &mk
->kobj
, "module");
1344 device_unregister(&root
->dev
);
1345 return ERR_PTR(err
);
1347 root
->owner
= owner
;
1353 EXPORT_SYMBOL_GPL(__root_device_register
);
1356 * root_device_unregister - unregister and free a root device
1357 * @dev: device going away
1359 * This function unregisters and cleans up a device that was created by
1360 * root_device_register().
1362 void root_device_unregister(struct device
*dev
)
1364 struct root_device
*root
= to_root_device(dev
);
1367 sysfs_remove_link(&root
->dev
.kobj
, "module");
1369 device_unregister(dev
);
1371 EXPORT_SYMBOL_GPL(root_device_unregister
);
1374 static void device_create_release(struct device
*dev
)
1376 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
1381 * device_create_vargs - creates a device and registers it with sysfs
1382 * @class: pointer to the struct class that this device should be registered to
1383 * @parent: pointer to the parent struct device of this new device, if any
1384 * @devt: the dev_t for the char device to be added
1385 * @drvdata: the data to be added to the device for callbacks
1386 * @fmt: string for the device's name
1387 * @args: va_list for the device's name
1389 * This function can be used by char device classes. A struct device
1390 * will be created in sysfs, registered to the specified class.
1392 * A "dev" file will be created, showing the dev_t for the device, if
1393 * the dev_t is not 0,0.
1394 * If a pointer to a parent struct device is passed in, the newly created
1395 * struct device will be a child of that device in sysfs.
1396 * The pointer to the struct device will be returned from the call.
1397 * Any further sysfs files that might be required can be created using this
1400 * Returns &struct device pointer on success, or ERR_PTR() on error.
1402 * Note: the struct class passed to this function must have previously
1403 * been created with a call to class_create().
1405 struct device
*device_create_vargs(struct class *class, struct device
*parent
,
1406 dev_t devt
, void *drvdata
, const char *fmt
,
1409 struct device
*dev
= NULL
;
1410 int retval
= -ENODEV
;
1412 if (class == NULL
|| IS_ERR(class))
1415 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
1423 dev
->parent
= parent
;
1424 dev
->release
= device_create_release
;
1425 dev_set_drvdata(dev
, drvdata
);
1427 retval
= kobject_set_name_vargs(&dev
->kobj
, fmt
, args
);
1431 retval
= device_register(dev
);
1439 return ERR_PTR(retval
);
1441 EXPORT_SYMBOL_GPL(device_create_vargs
);
1444 * device_create - creates a device and registers it with sysfs
1445 * @class: pointer to the struct class that this device should be registered to
1446 * @parent: pointer to the parent struct device of this new device, if any
1447 * @devt: the dev_t for the char device to be added
1448 * @drvdata: the data to be added to the device for callbacks
1449 * @fmt: string for the device's name
1451 * This function can be used by char device classes. A struct device
1452 * will be created in sysfs, registered to the specified class.
1454 * A "dev" file will be created, showing the dev_t for the device, if
1455 * the dev_t is not 0,0.
1456 * If a pointer to a parent struct device is passed in, the newly created
1457 * struct device will be a child of that device in sysfs.
1458 * The pointer to the struct device will be returned from the call.
1459 * Any further sysfs files that might be required can be created using this
1462 * Returns &struct device pointer on success, or ERR_PTR() on error.
1464 * Note: the struct class passed to this function must have previously
1465 * been created with a call to class_create().
1467 struct device
*device_create(struct class *class, struct device
*parent
,
1468 dev_t devt
, void *drvdata
, const char *fmt
, ...)
1473 va_start(vargs
, fmt
);
1474 dev
= device_create_vargs(class, parent
, devt
, drvdata
, fmt
, vargs
);
1478 EXPORT_SYMBOL_GPL(device_create
);
1480 static int __match_devt(struct device
*dev
, void *data
)
1484 return dev
->devt
== *devt
;
1488 * device_destroy - removes a device that was created with device_create()
1489 * @class: pointer to the struct class that this device was registered with
1490 * @devt: the dev_t of the device that was previously registered
1492 * This call unregisters and cleans up a device that was created with a
1493 * call to device_create().
1495 void device_destroy(struct class *class, dev_t devt
)
1499 dev
= class_find_device(class, NULL
, &devt
, __match_devt
);
1502 device_unregister(dev
);
1505 EXPORT_SYMBOL_GPL(device_destroy
);
1508 * device_rename - renames a device
1509 * @dev: the pointer to the struct device to be renamed
1510 * @new_name: the new name of the device
1512 * It is the responsibility of the caller to provide mutual
1513 * exclusion between two different calls of device_rename
1514 * on the same device to ensure that new_name is valid and
1515 * won't conflict with other devices.
1517 int device_rename(struct device
*dev
, const char *new_name
)
1519 char *old_class_name
= NULL
;
1520 char *new_class_name
= NULL
;
1521 char *old_device_name
= NULL
;
1524 dev
= get_device(dev
);
1528 pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev
),
1529 __func__
, new_name
);
1531 old_device_name
= kstrdup(dev_name(dev
), GFP_KERNEL
);
1532 if (!old_device_name
) {
1538 error
= sysfs_rename_link(&dev
->class->p
->class_subsys
.kobj
,
1539 &dev
->kobj
, old_device_name
, new_name
);
1544 error
= kobject_rename(&dev
->kobj
, new_name
);
1551 kfree(new_class_name
);
1552 kfree(old_class_name
);
1553 kfree(old_device_name
);
1557 EXPORT_SYMBOL_GPL(device_rename
);
1559 static int device_move_class_links(struct device
*dev
,
1560 struct device
*old_parent
,
1561 struct device
*new_parent
)
1566 sysfs_remove_link(&dev
->kobj
, "device");
1568 error
= sysfs_create_link(&dev
->kobj
, &new_parent
->kobj
,
1574 * device_move - moves a device to a new parent
1575 * @dev: the pointer to the struct device to be moved
1576 * @new_parent: the new parent of the device (can by NULL)
1577 * @dpm_order: how to reorder the dpm_list
1579 int device_move(struct device
*dev
, struct device
*new_parent
,
1580 enum dpm_order dpm_order
)
1583 struct device
*old_parent
;
1584 struct kobject
*new_parent_kobj
;
1586 dev
= get_device(dev
);
1591 new_parent
= get_device(new_parent
);
1592 new_parent_kobj
= get_device_parent(dev
, new_parent
);
1594 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev
),
1595 __func__
, new_parent
? dev_name(new_parent
) : "<NULL>");
1596 error
= kobject_move(&dev
->kobj
, new_parent_kobj
);
1598 cleanup_glue_dir(dev
, new_parent_kobj
);
1599 put_device(new_parent
);
1602 old_parent
= dev
->parent
;
1603 dev
->parent
= new_parent
;
1605 klist_remove(&dev
->p
->knode_parent
);
1607 klist_add_tail(&dev
->p
->knode_parent
,
1608 &new_parent
->p
->klist_children
);
1609 set_dev_node(dev
, dev_to_node(new_parent
));
1614 error
= device_move_class_links(dev
, old_parent
, new_parent
);
1616 /* We ignore errors on cleanup since we're hosed anyway... */
1617 device_move_class_links(dev
, new_parent
, old_parent
);
1618 if (!kobject_move(&dev
->kobj
, &old_parent
->kobj
)) {
1620 klist_remove(&dev
->p
->knode_parent
);
1621 dev
->parent
= old_parent
;
1623 klist_add_tail(&dev
->p
->knode_parent
,
1624 &old_parent
->p
->klist_children
);
1625 set_dev_node(dev
, dev_to_node(old_parent
));
1628 cleanup_glue_dir(dev
, new_parent_kobj
);
1629 put_device(new_parent
);
1632 switch (dpm_order
) {
1633 case DPM_ORDER_NONE
:
1635 case DPM_ORDER_DEV_AFTER_PARENT
:
1636 device_pm_move_after(dev
, new_parent
);
1638 case DPM_ORDER_PARENT_BEFORE_DEV
:
1639 device_pm_move_before(new_parent
, dev
);
1641 case DPM_ORDER_DEV_LAST
:
1642 device_pm_move_last(dev
);
1646 put_device(old_parent
);
1652 EXPORT_SYMBOL_GPL(device_move
);
1655 * device_shutdown - call ->shutdown() on each device to shutdown.
1657 void device_shutdown(void)
1661 spin_lock(&devices_kset
->list_lock
);
1663 * Walk the devices list backward, shutting down each in turn.
1664 * Beware that device unplug events may also start pulling
1665 * devices offline, even as the system is shutting down.
1667 while (!list_empty(&devices_kset
->list
)) {
1668 dev
= list_entry(devices_kset
->list
.prev
, struct device
,
1672 * Make sure the device is off the kset list, in the
1673 * event that dev->*->shutdown() doesn't remove it.
1675 list_del_init(&dev
->kobj
.entry
);
1676 spin_unlock(&devices_kset
->list_lock
);
1678 if (dev
->bus
&& dev
->bus
->shutdown
) {
1679 dev_dbg(dev
, "shutdown\n");
1680 dev
->bus
->shutdown(dev
);
1681 } else if (dev
->driver
&& dev
->driver
->shutdown
) {
1682 dev_dbg(dev
, "shutdown\n");
1683 dev
->driver
->shutdown(dev
);
1687 spin_lock(&devices_kset
->list_lock
);
1689 spin_unlock(&devices_kset
->list_lock
);
1690 async_synchronize_full();
1694 * Device logging functions
1697 #ifdef CONFIG_PRINTK
1699 static int __dev_printk(const char *level
, const struct device
*dev
,
1700 struct va_format
*vaf
)
1703 return printk("%s(NULL device *): %pV", level
, vaf
);
1705 return printk("%s%s %s: %pV",
1706 level
, dev_driver_string(dev
), dev_name(dev
), vaf
);
1709 int dev_printk(const char *level
, const struct device
*dev
,
1710 const char *fmt
, ...)
1712 struct va_format vaf
;
1716 va_start(args
, fmt
);
1721 r
= __dev_printk(level
, dev
, &vaf
);
1726 EXPORT_SYMBOL(dev_printk
);
1728 #define define_dev_printk_level(func, kern_level) \
1729 int func(const struct device *dev, const char *fmt, ...) \
1731 struct va_format vaf; \
1735 va_start(args, fmt); \
1740 r = __dev_printk(kern_level, dev, &vaf); \
1745 EXPORT_SYMBOL(func);
1747 define_dev_printk_level(dev_emerg
, KERN_EMERG
);
1748 define_dev_printk_level(dev_alert
, KERN_ALERT
);
1749 define_dev_printk_level(dev_crit
, KERN_CRIT
);
1750 define_dev_printk_level(dev_err
, KERN_ERR
);
1751 define_dev_printk_level(dev_warn
, KERN_WARNING
);
1752 define_dev_printk_level(dev_notice
, KERN_NOTICE
);
1753 define_dev_printk_level(_dev_info
, KERN_INFO
);