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 <linux/of_device.h>
23 #include <linux/genhd.h>
24 #include <linux/kallsyms.h>
25 #include <linux/mutex.h>
26 #include <linux/async.h>
27 #include <linux/pm_runtime.h>
28 #include <linux/netdevice.h>
31 #include "power/power.h"
33 #ifdef CONFIG_SYSFS_DEPRECATED
34 #ifdef CONFIG_SYSFS_DEPRECATED_V2
35 long sysfs_deprecated
= 1;
37 long sysfs_deprecated
= 0;
39 static __init
int sysfs_deprecated_setup(char *arg
)
41 return strict_strtol(arg
, 10, &sysfs_deprecated
);
43 early_param("sysfs.deprecated", sysfs_deprecated_setup
);
46 int (*platform_notify
)(struct device
*dev
) = NULL
;
47 int (*platform_notify_remove
)(struct device
*dev
) = NULL
;
48 static struct kobject
*dev_kobj
;
49 struct kobject
*sysfs_dev_char_kobj
;
50 struct kobject
*sysfs_dev_block_kobj
;
53 static inline int device_is_not_partition(struct device
*dev
)
55 return !(dev
->type
== &part_type
);
58 static inline int device_is_not_partition(struct device
*dev
)
65 * dev_driver_string - Return a device's driver name, if at all possible
66 * @dev: struct device to get the name of
68 * Will return the device's driver's name if it is bound to a device. If
69 * the device is not bound to a driver, it will return the name of the bus
70 * it is attached to. If it is not attached to a bus either, an empty
71 * string will be returned.
73 const char *dev_driver_string(const struct device
*dev
)
75 struct device_driver
*drv
;
77 /* dev->driver can change to NULL underneath us because of unbinding,
78 * so be careful about accessing it. dev->bus and dev->class should
79 * never change once they are set, so they don't need special care.
81 drv
= ACCESS_ONCE(dev
->driver
);
82 return drv
? drv
->name
:
83 (dev
->bus
? dev
->bus
->name
:
84 (dev
->class ? dev
->class->name
: ""));
86 EXPORT_SYMBOL(dev_driver_string
);
88 #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
90 static ssize_t
dev_attr_show(struct kobject
*kobj
, struct attribute
*attr
,
93 struct device_attribute
*dev_attr
= to_dev_attr(attr
);
94 struct device
*dev
= kobj_to_dev(kobj
);
98 ret
= dev_attr
->show(dev
, dev_attr
, buf
);
99 if (ret
>= (ssize_t
)PAGE_SIZE
) {
100 print_symbol("dev_attr_show: %s returned bad count\n",
101 (unsigned long)dev_attr
->show
);
106 static ssize_t
dev_attr_store(struct kobject
*kobj
, struct attribute
*attr
,
107 const char *buf
, size_t count
)
109 struct device_attribute
*dev_attr
= to_dev_attr(attr
);
110 struct device
*dev
= kobj_to_dev(kobj
);
114 ret
= dev_attr
->store(dev
, dev_attr
, buf
, count
);
118 static const struct sysfs_ops dev_sysfs_ops
= {
119 .show
= dev_attr_show
,
120 .store
= dev_attr_store
,
123 #define to_ext_attr(x) container_of(x, struct dev_ext_attribute, attr)
125 ssize_t
device_store_ulong(struct device
*dev
,
126 struct device_attribute
*attr
,
127 const char *buf
, size_t size
)
129 struct dev_ext_attribute
*ea
= to_ext_attr(attr
);
131 unsigned long new = simple_strtoul(buf
, &end
, 0);
134 *(unsigned long *)(ea
->var
) = new;
135 /* Always return full write size even if we didn't consume all */
138 EXPORT_SYMBOL_GPL(device_store_ulong
);
140 ssize_t
device_show_ulong(struct device
*dev
,
141 struct device_attribute
*attr
,
144 struct dev_ext_attribute
*ea
= to_ext_attr(attr
);
145 return snprintf(buf
, PAGE_SIZE
, "%lx\n", *(unsigned long *)(ea
->var
));
147 EXPORT_SYMBOL_GPL(device_show_ulong
);
149 ssize_t
device_store_int(struct device
*dev
,
150 struct device_attribute
*attr
,
151 const char *buf
, size_t size
)
153 struct dev_ext_attribute
*ea
= to_ext_attr(attr
);
155 long new = simple_strtol(buf
, &end
, 0);
156 if (end
== buf
|| new > INT_MAX
|| new < INT_MIN
)
158 *(int *)(ea
->var
) = new;
159 /* Always return full write size even if we didn't consume all */
162 EXPORT_SYMBOL_GPL(device_store_int
);
164 ssize_t
device_show_int(struct device
*dev
,
165 struct device_attribute
*attr
,
168 struct dev_ext_attribute
*ea
= to_ext_attr(attr
);
170 return snprintf(buf
, PAGE_SIZE
, "%d\n", *(int *)(ea
->var
));
172 EXPORT_SYMBOL_GPL(device_show_int
);
174 ssize_t
device_store_bool(struct device
*dev
, struct device_attribute
*attr
,
175 const char *buf
, size_t size
)
177 struct dev_ext_attribute
*ea
= to_ext_attr(attr
);
179 if (strtobool(buf
, ea
->var
) < 0)
184 EXPORT_SYMBOL_GPL(device_store_bool
);
186 ssize_t
device_show_bool(struct device
*dev
, struct device_attribute
*attr
,
189 struct dev_ext_attribute
*ea
= to_ext_attr(attr
);
191 return snprintf(buf
, PAGE_SIZE
, "%d\n", *(bool *)(ea
->var
));
193 EXPORT_SYMBOL_GPL(device_show_bool
);
196 * device_release - free device structure.
197 * @kobj: device's kobject.
199 * This is called once the reference count for the object
200 * reaches 0. We forward the call to the device's release
201 * method, which should handle actually freeing the structure.
203 static void device_release(struct kobject
*kobj
)
205 struct device
*dev
= kobj_to_dev(kobj
);
206 struct device_private
*p
= dev
->p
;
209 * Some platform devices are driven without driver attached
210 * and managed resources may have been acquired. Make sure
211 * all resources are released.
213 * Drivers still can add resources into device after device
214 * is deleted but alive, so release devres here to avoid
215 * possible memory leak.
217 devres_release_all(dev
);
221 else if (dev
->type
&& dev
->type
->release
)
222 dev
->type
->release(dev
);
223 else if (dev
->class && dev
->class->dev_release
)
224 dev
->class->dev_release(dev
);
226 WARN(1, KERN_ERR
"Device '%s' does not have a release() "
227 "function, it is broken and must be fixed.\n",
232 static const void *device_namespace(struct kobject
*kobj
)
234 struct device
*dev
= kobj_to_dev(kobj
);
235 const void *ns
= NULL
;
237 if (dev
->class && dev
->class->ns_type
)
238 ns
= dev
->class->namespace(dev
);
243 static struct kobj_type device_ktype
= {
244 .release
= device_release
,
245 .sysfs_ops
= &dev_sysfs_ops
,
246 .namespace = device_namespace
,
250 static int dev_uevent_filter(struct kset
*kset
, struct kobject
*kobj
)
252 struct kobj_type
*ktype
= get_ktype(kobj
);
254 if (ktype
== &device_ktype
) {
255 struct device
*dev
= kobj_to_dev(kobj
);
264 static const char *dev_uevent_name(struct kset
*kset
, struct kobject
*kobj
)
266 struct device
*dev
= kobj_to_dev(kobj
);
269 return dev
->bus
->name
;
271 return dev
->class->name
;
275 static int dev_uevent(struct kset
*kset
, struct kobject
*kobj
,
276 struct kobj_uevent_env
*env
)
278 struct device
*dev
= kobj_to_dev(kobj
);
281 /* add device node properties if present */
282 if (MAJOR(dev
->devt
)) {
287 add_uevent_var(env
, "MAJOR=%u", MAJOR(dev
->devt
));
288 add_uevent_var(env
, "MINOR=%u", MINOR(dev
->devt
));
289 name
= device_get_devnode(dev
, &mode
, &tmp
);
291 add_uevent_var(env
, "DEVNAME=%s", name
);
294 add_uevent_var(env
, "DEVMODE=%#o", mode
& 0777);
298 if (dev
->type
&& dev
->type
->name
)
299 add_uevent_var(env
, "DEVTYPE=%s", dev
->type
->name
);
302 add_uevent_var(env
, "DRIVER=%s", dev
->driver
->name
);
304 /* Add common DT information about the device */
305 of_device_uevent(dev
, env
);
307 /* have the bus specific function add its stuff */
308 if (dev
->bus
&& dev
->bus
->uevent
) {
309 retval
= dev
->bus
->uevent(dev
, env
);
311 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
312 dev_name(dev
), __func__
, retval
);
315 /* have the class specific function add its stuff */
316 if (dev
->class && dev
->class->dev_uevent
) {
317 retval
= dev
->class->dev_uevent(dev
, env
);
319 pr_debug("device: '%s': %s: class uevent() "
320 "returned %d\n", dev_name(dev
),
324 /* have the device type specific function add its stuff */
325 if (dev
->type
&& dev
->type
->uevent
) {
326 retval
= dev
->type
->uevent(dev
, env
);
328 pr_debug("device: '%s': %s: dev_type uevent() "
329 "returned %d\n", dev_name(dev
),
336 static const struct kset_uevent_ops device_uevent_ops
= {
337 .filter
= dev_uevent_filter
,
338 .name
= dev_uevent_name
,
339 .uevent
= dev_uevent
,
342 static ssize_t
show_uevent(struct device
*dev
, struct device_attribute
*attr
,
345 struct kobject
*top_kobj
;
347 struct kobj_uevent_env
*env
= NULL
;
352 /* search the kset, the device belongs to */
353 top_kobj
= &dev
->kobj
;
354 while (!top_kobj
->kset
&& top_kobj
->parent
)
355 top_kobj
= top_kobj
->parent
;
359 kset
= top_kobj
->kset
;
360 if (!kset
->uevent_ops
|| !kset
->uevent_ops
->uevent
)
364 if (kset
->uevent_ops
&& kset
->uevent_ops
->filter
)
365 if (!kset
->uevent_ops
->filter(kset
, &dev
->kobj
))
368 env
= kzalloc(sizeof(struct kobj_uevent_env
), GFP_KERNEL
);
372 /* let the kset specific function add its keys */
373 retval
= kset
->uevent_ops
->uevent(kset
, &dev
->kobj
, env
);
377 /* copy keys to file */
378 for (i
= 0; i
< env
->envp_idx
; i
++)
379 count
+= sprintf(&buf
[count
], "%s\n", env
->envp
[i
]);
385 static ssize_t
store_uevent(struct device
*dev
, struct device_attribute
*attr
,
386 const char *buf
, size_t count
)
388 enum kobject_action action
;
390 if (kobject_action_type(buf
, count
, &action
) == 0)
391 kobject_uevent(&dev
->kobj
, action
);
393 dev_err(dev
, "uevent: unknown action-string\n");
397 static struct device_attribute uevent_attr
=
398 __ATTR(uevent
, S_IRUGO
| S_IWUSR
, show_uevent
, store_uevent
);
400 static int device_add_attributes(struct device
*dev
,
401 struct device_attribute
*attrs
)
407 for (i
= 0; attr_name(attrs
[i
]); i
++) {
408 error
= device_create_file(dev
, &attrs
[i
]);
414 device_remove_file(dev
, &attrs
[i
]);
419 static void device_remove_attributes(struct device
*dev
,
420 struct device_attribute
*attrs
)
425 for (i
= 0; attr_name(attrs
[i
]); i
++)
426 device_remove_file(dev
, &attrs
[i
]);
429 static int device_add_bin_attributes(struct device
*dev
,
430 struct bin_attribute
*attrs
)
436 for (i
= 0; attr_name(attrs
[i
]); i
++) {
437 error
= device_create_bin_file(dev
, &attrs
[i
]);
443 device_remove_bin_file(dev
, &attrs
[i
]);
448 static void device_remove_bin_attributes(struct device
*dev
,
449 struct bin_attribute
*attrs
)
454 for (i
= 0; attr_name(attrs
[i
]); i
++)
455 device_remove_bin_file(dev
, &attrs
[i
]);
458 static int device_add_groups(struct device
*dev
,
459 const struct attribute_group
**groups
)
465 for (i
= 0; groups
[i
]; i
++) {
466 error
= sysfs_create_group(&dev
->kobj
, groups
[i
]);
469 sysfs_remove_group(&dev
->kobj
,
478 static void device_remove_groups(struct device
*dev
,
479 const struct attribute_group
**groups
)
484 for (i
= 0; groups
[i
]; i
++)
485 sysfs_remove_group(&dev
->kobj
, groups
[i
]);
488 static int device_add_attrs(struct device
*dev
)
490 struct class *class = dev
->class;
491 const struct device_type
*type
= dev
->type
;
495 error
= device_add_attributes(dev
, class->dev_attrs
);
498 error
= device_add_bin_attributes(dev
, class->dev_bin_attrs
);
500 goto err_remove_class_attrs
;
504 error
= device_add_groups(dev
, type
->groups
);
506 goto err_remove_class_bin_attrs
;
509 error
= device_add_groups(dev
, dev
->groups
);
511 goto err_remove_type_groups
;
515 err_remove_type_groups
:
517 device_remove_groups(dev
, type
->groups
);
518 err_remove_class_bin_attrs
:
520 device_remove_bin_attributes(dev
, class->dev_bin_attrs
);
521 err_remove_class_attrs
:
523 device_remove_attributes(dev
, class->dev_attrs
);
528 static void device_remove_attrs(struct device
*dev
)
530 struct class *class = dev
->class;
531 const struct device_type
*type
= dev
->type
;
533 device_remove_groups(dev
, dev
->groups
);
536 device_remove_groups(dev
, type
->groups
);
539 device_remove_attributes(dev
, class->dev_attrs
);
540 device_remove_bin_attributes(dev
, class->dev_bin_attrs
);
545 static ssize_t
show_dev(struct device
*dev
, struct device_attribute
*attr
,
548 return print_dev_t(buf
, dev
->devt
);
551 static struct device_attribute devt_attr
=
552 __ATTR(dev
, S_IRUGO
, show_dev
, NULL
);
555 struct kset
*devices_kset
;
558 * device_create_file - create sysfs attribute file for device.
560 * @attr: device attribute descriptor.
562 int device_create_file(struct device
*dev
,
563 const struct device_attribute
*attr
)
567 error
= sysfs_create_file(&dev
->kobj
, &attr
->attr
);
572 * device_remove_file - remove sysfs attribute file.
574 * @attr: device attribute descriptor.
576 void device_remove_file(struct device
*dev
,
577 const struct device_attribute
*attr
)
580 sysfs_remove_file(&dev
->kobj
, &attr
->attr
);
584 * device_create_bin_file - create sysfs binary attribute file for device.
586 * @attr: device binary attribute descriptor.
588 int device_create_bin_file(struct device
*dev
,
589 const struct bin_attribute
*attr
)
593 error
= sysfs_create_bin_file(&dev
->kobj
, attr
);
596 EXPORT_SYMBOL_GPL(device_create_bin_file
);
599 * device_remove_bin_file - remove sysfs binary attribute file
601 * @attr: device binary attribute descriptor.
603 void device_remove_bin_file(struct device
*dev
,
604 const struct bin_attribute
*attr
)
607 sysfs_remove_bin_file(&dev
->kobj
, attr
);
609 EXPORT_SYMBOL_GPL(device_remove_bin_file
);
612 * device_schedule_callback_owner - helper to schedule a callback for a device
614 * @func: callback function to invoke later.
615 * @owner: module owning the callback routine
617 * Attribute methods must not unregister themselves or their parent device
618 * (which would amount to the same thing). Attempts to do so will deadlock,
619 * since unregistration is mutually exclusive with driver callbacks.
621 * Instead methods can call this routine, which will attempt to allocate
622 * and schedule a workqueue request to call back @func with @dev as its
623 * argument in the workqueue's process context. @dev will be pinned until
626 * This routine is usually called via the inline device_schedule_callback(),
627 * which automatically sets @owner to THIS_MODULE.
629 * Returns 0 if the request was submitted, -ENOMEM if storage could not
630 * be allocated, -ENODEV if a reference to @owner isn't available.
632 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
633 * underlying sysfs routine (since it is intended for use by attribute
634 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
636 int device_schedule_callback_owner(struct device
*dev
,
637 void (*func
)(struct device
*), struct module
*owner
)
639 return sysfs_schedule_callback(&dev
->kobj
,
640 (void (*)(void *)) func
, dev
, owner
);
642 EXPORT_SYMBOL_GPL(device_schedule_callback_owner
);
644 static void klist_children_get(struct klist_node
*n
)
646 struct device_private
*p
= to_device_private_parent(n
);
647 struct device
*dev
= p
->device
;
652 static void klist_children_put(struct klist_node
*n
)
654 struct device_private
*p
= to_device_private_parent(n
);
655 struct device
*dev
= p
->device
;
661 * device_initialize - init device structure.
664 * This prepares the device for use by other layers by initializing
666 * It is the first half of device_register(), if called by
667 * that function, though it can also be called separately, so one
668 * may use @dev's fields. In particular, get_device()/put_device()
669 * may be used for reference counting of @dev after calling this
672 * All fields in @dev must be initialized by the caller to 0, except
673 * for those explicitly set to some other value. The simplest
674 * approach is to use kzalloc() to allocate the structure containing
677 * NOTE: Use put_device() to give up your reference instead of freeing
678 * @dev directly once you have called this function.
680 void device_initialize(struct device
*dev
)
682 dev
->kobj
.kset
= devices_kset
;
683 kobject_init(&dev
->kobj
, &device_ktype
);
684 INIT_LIST_HEAD(&dev
->dma_pools
);
685 mutex_init(&dev
->mutex
);
686 lockdep_set_novalidate_class(&dev
->mutex
);
687 spin_lock_init(&dev
->devres_lock
);
688 INIT_LIST_HEAD(&dev
->devres_head
);
690 set_dev_node(dev
, -1);
693 static struct kobject
*virtual_device_parent(struct device
*dev
)
695 static struct kobject
*virtual_dir
= NULL
;
698 virtual_dir
= kobject_create_and_add("virtual",
699 &devices_kset
->kobj
);
709 #define to_class_dir(obj) container_of(obj, struct class_dir, kobj)
711 static void class_dir_release(struct kobject
*kobj
)
713 struct class_dir
*dir
= to_class_dir(kobj
);
718 struct kobj_ns_type_operations
*class_dir_child_ns_type(struct kobject
*kobj
)
720 struct class_dir
*dir
= to_class_dir(kobj
);
721 return dir
->class->ns_type
;
724 static struct kobj_type class_dir_ktype
= {
725 .release
= class_dir_release
,
726 .sysfs_ops
= &kobj_sysfs_ops
,
727 .child_ns_type
= class_dir_child_ns_type
730 static struct kobject
*
731 class_dir_create_and_add(struct class *class, struct kobject
*parent_kobj
)
733 struct class_dir
*dir
;
736 dir
= kzalloc(sizeof(*dir
), GFP_KERNEL
);
741 kobject_init(&dir
->kobj
, &class_dir_ktype
);
743 dir
->kobj
.kset
= &class->p
->glue_dirs
;
745 retval
= kobject_add(&dir
->kobj
, parent_kobj
, "%s", class->name
);
747 kobject_put(&dir
->kobj
);
754 static struct kobject
*get_device_parent(struct device
*dev
,
755 struct device
*parent
)
758 static DEFINE_MUTEX(gdp_mutex
);
759 struct kobject
*kobj
= NULL
;
760 struct kobject
*parent_kobj
;
764 /* block disks show up in /sys/block */
765 if (sysfs_deprecated
&& dev
->class == &block_class
) {
766 if (parent
&& parent
->class == &block_class
)
767 return &parent
->kobj
;
768 return &block_class
.p
->subsys
.kobj
;
773 * If we have no parent, we live in "virtual".
774 * Class-devices with a non class-device as parent, live
775 * in a "glue" directory to prevent namespace collisions.
778 parent_kobj
= virtual_device_parent(dev
);
779 else if (parent
->class && !dev
->class->ns_type
)
780 return &parent
->kobj
;
782 parent_kobj
= &parent
->kobj
;
784 mutex_lock(&gdp_mutex
);
786 /* find our class-directory at the parent and reference it */
787 spin_lock(&dev
->class->p
->glue_dirs
.list_lock
);
788 list_for_each_entry(k
, &dev
->class->p
->glue_dirs
.list
, entry
)
789 if (k
->parent
== parent_kobj
) {
790 kobj
= kobject_get(k
);
793 spin_unlock(&dev
->class->p
->glue_dirs
.list_lock
);
795 mutex_unlock(&gdp_mutex
);
799 /* or create a new class-directory at the parent device */
800 k
= class_dir_create_and_add(dev
->class, parent_kobj
);
801 /* do not emit an uevent for this simple "glue" directory */
802 mutex_unlock(&gdp_mutex
);
806 /* subsystems can specify a default root directory for their devices */
807 if (!parent
&& dev
->bus
&& dev
->bus
->dev_root
)
808 return &dev
->bus
->dev_root
->kobj
;
811 return &parent
->kobj
;
815 static void cleanup_glue_dir(struct device
*dev
, struct kobject
*glue_dir
)
817 /* see if we live in a "glue" directory */
818 if (!glue_dir
|| !dev
->class ||
819 glue_dir
->kset
!= &dev
->class->p
->glue_dirs
)
822 kobject_put(glue_dir
);
825 static void cleanup_device_parent(struct device
*dev
)
827 cleanup_glue_dir(dev
, dev
->kobj
.parent
);
830 static int device_add_class_symlinks(struct device
*dev
)
837 error
= sysfs_create_link(&dev
->kobj
,
838 &dev
->class->p
->subsys
.kobj
,
843 if (dev
->parent
&& device_is_not_partition(dev
)) {
844 error
= sysfs_create_link(&dev
->kobj
, &dev
->parent
->kobj
,
851 /* /sys/block has directories and does not need symlinks */
852 if (sysfs_deprecated
&& dev
->class == &block_class
)
856 /* link in the class directory pointing to the device */
857 error
= sysfs_create_link(&dev
->class->p
->subsys
.kobj
,
858 &dev
->kobj
, dev_name(dev
));
865 sysfs_remove_link(&dev
->kobj
, "device");
868 sysfs_remove_link(&dev
->kobj
, "subsystem");
873 static void device_remove_class_symlinks(struct device
*dev
)
878 if (dev
->parent
&& device_is_not_partition(dev
))
879 sysfs_remove_link(&dev
->kobj
, "device");
880 sysfs_remove_link(&dev
->kobj
, "subsystem");
882 if (sysfs_deprecated
&& dev
->class == &block_class
)
885 sysfs_delete_link(&dev
->class->p
->subsys
.kobj
, &dev
->kobj
, dev_name(dev
));
889 * dev_set_name - set a device name
891 * @fmt: format string for the device's name
893 int dev_set_name(struct device
*dev
, const char *fmt
, ...)
898 va_start(vargs
, fmt
);
899 err
= kobject_set_name_vargs(&dev
->kobj
, fmt
, vargs
);
903 EXPORT_SYMBOL_GPL(dev_set_name
);
906 * device_to_dev_kobj - select a /sys/dev/ directory for the device
909 * By default we select char/ for new entries. Setting class->dev_obj
910 * to NULL prevents an entry from being created. class->dev_kobj must
911 * be set (or cleared) before any devices are registered to the class
912 * otherwise device_create_sys_dev_entry() and
913 * device_remove_sys_dev_entry() will disagree about the presence of
916 static struct kobject
*device_to_dev_kobj(struct device
*dev
)
918 struct kobject
*kobj
;
921 kobj
= dev
->class->dev_kobj
;
923 kobj
= sysfs_dev_char_kobj
;
928 static int device_create_sys_dev_entry(struct device
*dev
)
930 struct kobject
*kobj
= device_to_dev_kobj(dev
);
935 format_dev_t(devt_str
, dev
->devt
);
936 error
= sysfs_create_link(kobj
, &dev
->kobj
, devt_str
);
942 static void device_remove_sys_dev_entry(struct device
*dev
)
944 struct kobject
*kobj
= device_to_dev_kobj(dev
);
948 format_dev_t(devt_str
, dev
->devt
);
949 sysfs_remove_link(kobj
, devt_str
);
953 int device_private_init(struct device
*dev
)
955 dev
->p
= kzalloc(sizeof(*dev
->p
), GFP_KERNEL
);
958 dev
->p
->device
= dev
;
959 klist_init(&dev
->p
->klist_children
, klist_children_get
,
961 INIT_LIST_HEAD(&dev
->p
->deferred_probe
);
966 * device_add - add device to device hierarchy.
969 * This is part 2 of device_register(), though may be called
970 * separately _iff_ device_initialize() has been called separately.
972 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
973 * to the global and sibling lists for the device, then
974 * adds it to the other relevant subsystems of the driver model.
976 * Do not call this routine or device_register() more than once for
977 * any device structure. The driver model core is not designed to work
978 * with devices that get unregistered and then spring back to life.
979 * (Among other things, it's very hard to guarantee that all references
980 * to the previous incarnation of @dev have been dropped.) Allocate
981 * and register a fresh new struct device instead.
983 * NOTE: _Never_ directly free @dev after calling this function, even
984 * if it returned an error! Always use put_device() to give up your
987 int device_add(struct device
*dev
)
989 struct device
*parent
= NULL
;
990 struct kobject
*kobj
;
991 struct class_interface
*class_intf
;
994 dev
= get_device(dev
);
999 error
= device_private_init(dev
);
1005 * for statically allocated devices, which should all be converted
1006 * some day, we need to initialize the name. We prevent reading back
1007 * the name, and force the use of dev_name()
1009 if (dev
->init_name
) {
1010 dev_set_name(dev
, "%s", dev
->init_name
);
1011 dev
->init_name
= NULL
;
1014 /* subsystems can specify simple device enumeration */
1015 if (!dev_name(dev
) && dev
->bus
&& dev
->bus
->dev_name
)
1016 dev_set_name(dev
, "%s%u", dev
->bus
->dev_name
, dev
->id
);
1018 if (!dev_name(dev
)) {
1023 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
1025 parent
= get_device(dev
->parent
);
1026 kobj
= get_device_parent(dev
, parent
);
1028 dev
->kobj
.parent
= kobj
;
1030 /* use parent numa_node */
1032 set_dev_node(dev
, dev_to_node(parent
));
1034 /* first, register with generic layer. */
1035 /* we require the name to be set before, and pass NULL */
1036 error
= kobject_add(&dev
->kobj
, dev
->kobj
.parent
, NULL
);
1040 /* notify platform of device entry */
1041 if (platform_notify
)
1042 platform_notify(dev
);
1044 error
= device_create_file(dev
, &uevent_attr
);
1048 if (MAJOR(dev
->devt
)) {
1049 error
= device_create_file(dev
, &devt_attr
);
1051 goto ueventattrError
;
1053 error
= device_create_sys_dev_entry(dev
);
1057 devtmpfs_create_node(dev
);
1060 error
= device_add_class_symlinks(dev
);
1063 error
= device_add_attrs(dev
);
1066 error
= bus_add_device(dev
);
1069 error
= dpm_sysfs_add(dev
);
1074 /* Notify clients of device addition. This call must come
1075 * after dpm_sysfs_add() and before kobject_uevent().
1078 blocking_notifier_call_chain(&dev
->bus
->p
->bus_notifier
,
1079 BUS_NOTIFY_ADD_DEVICE
, dev
);
1081 kobject_uevent(&dev
->kobj
, KOBJ_ADD
);
1082 bus_probe_device(dev
);
1084 klist_add_tail(&dev
->p
->knode_parent
,
1085 &parent
->p
->klist_children
);
1088 mutex_lock(&dev
->class->p
->mutex
);
1089 /* tie the class to the device */
1090 klist_add_tail(&dev
->knode_class
,
1091 &dev
->class->p
->klist_devices
);
1093 /* notify any interfaces that the device is here */
1094 list_for_each_entry(class_intf
,
1095 &dev
->class->p
->interfaces
, node
)
1096 if (class_intf
->add_dev
)
1097 class_intf
->add_dev(dev
, class_intf
);
1098 mutex_unlock(&dev
->class->p
->mutex
);
1104 bus_remove_device(dev
);
1106 device_remove_attrs(dev
);
1108 device_remove_class_symlinks(dev
);
1110 if (MAJOR(dev
->devt
))
1111 devtmpfs_delete_node(dev
);
1112 if (MAJOR(dev
->devt
))
1113 device_remove_sys_dev_entry(dev
);
1115 if (MAJOR(dev
->devt
))
1116 device_remove_file(dev
, &devt_attr
);
1118 device_remove_file(dev
, &uevent_attr
);
1120 kobject_uevent(&dev
->kobj
, KOBJ_REMOVE
);
1121 kobject_del(&dev
->kobj
);
1123 cleanup_device_parent(dev
);
1133 * device_register - register a device with the system.
1134 * @dev: pointer to the device structure
1136 * This happens in two clean steps - initialize the device
1137 * and add it to the system. The two steps can be called
1138 * separately, but this is the easiest and most common.
1139 * I.e. you should only call the two helpers separately if
1140 * have a clearly defined need to use and refcount the device
1141 * before it is added to the hierarchy.
1143 * For more information, see the kerneldoc for device_initialize()
1146 * NOTE: _Never_ directly free @dev after calling this function, even
1147 * if it returned an error! Always use put_device() to give up the
1148 * reference initialized in this function instead.
1150 int device_register(struct device
*dev
)
1152 device_initialize(dev
);
1153 return device_add(dev
);
1157 * get_device - increment reference count for device.
1160 * This simply forwards the call to kobject_get(), though
1161 * we do take care to provide for the case that we get a NULL
1162 * pointer passed in.
1164 struct device
*get_device(struct device
*dev
)
1166 return dev
? kobj_to_dev(kobject_get(&dev
->kobj
)) : NULL
;
1170 * put_device - decrement reference count.
1171 * @dev: device in question.
1173 void put_device(struct device
*dev
)
1175 /* might_sleep(); */
1177 kobject_put(&dev
->kobj
);
1181 * device_del - delete device from system.
1184 * This is the first part of the device unregistration
1185 * sequence. This removes the device from the lists we control
1186 * from here, has it removed from the other driver model
1187 * subsystems it was added to in device_add(), and removes it
1188 * from the kobject hierarchy.
1190 * NOTE: this should be called manually _iff_ device_add() was
1191 * also called manually.
1193 void device_del(struct device
*dev
)
1195 struct device
*parent
= dev
->parent
;
1196 struct class_interface
*class_intf
;
1198 /* Notify clients of device removal. This call must come
1199 * before dpm_sysfs_remove().
1202 blocking_notifier_call_chain(&dev
->bus
->p
->bus_notifier
,
1203 BUS_NOTIFY_DEL_DEVICE
, dev
);
1204 dpm_sysfs_remove(dev
);
1206 klist_del(&dev
->p
->knode_parent
);
1207 if (MAJOR(dev
->devt
)) {
1208 devtmpfs_delete_node(dev
);
1209 device_remove_sys_dev_entry(dev
);
1210 device_remove_file(dev
, &devt_attr
);
1213 device_remove_class_symlinks(dev
);
1215 mutex_lock(&dev
->class->p
->mutex
);
1216 /* notify any interfaces that the device is now gone */
1217 list_for_each_entry(class_intf
,
1218 &dev
->class->p
->interfaces
, node
)
1219 if (class_intf
->remove_dev
)
1220 class_intf
->remove_dev(dev
, class_intf
);
1221 /* remove the device from the class list */
1222 klist_del(&dev
->knode_class
);
1223 mutex_unlock(&dev
->class->p
->mutex
);
1225 device_remove_file(dev
, &uevent_attr
);
1226 device_remove_attrs(dev
);
1227 bus_remove_device(dev
);
1228 device_pm_remove(dev
);
1229 driver_deferred_probe_del(dev
);
1231 /* Notify the platform of the removal, in case they
1232 * need to do anything...
1234 if (platform_notify_remove
)
1235 platform_notify_remove(dev
);
1236 kobject_uevent(&dev
->kobj
, KOBJ_REMOVE
);
1237 cleanup_device_parent(dev
);
1238 kobject_del(&dev
->kobj
);
1243 * device_unregister - unregister device from system.
1244 * @dev: device going away.
1246 * We do this in two parts, like we do device_register(). First,
1247 * we remove it from all the subsystems with device_del(), then
1248 * we decrement the reference count via put_device(). If that
1249 * is the final reference count, the device will be cleaned up
1250 * via device_release() above. Otherwise, the structure will
1251 * stick around until the final reference to the device is dropped.
1253 void device_unregister(struct device
*dev
)
1255 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
1260 static struct device
*next_device(struct klist_iter
*i
)
1262 struct klist_node
*n
= klist_next(i
);
1263 struct device
*dev
= NULL
;
1264 struct device_private
*p
;
1267 p
= to_device_private_parent(n
);
1274 * device_get_devnode - path of device node file
1276 * @mode: returned file access mode
1277 * @tmp: possibly allocated string
1279 * Return the relative path of a possible device node.
1280 * Non-default names may need to allocate a memory to compose
1281 * a name. This memory is returned in tmp and needs to be
1282 * freed by the caller.
1284 const char *device_get_devnode(struct device
*dev
,
1285 umode_t
*mode
, const char **tmp
)
1291 /* the device type may provide a specific name */
1292 if (dev
->type
&& dev
->type
->devnode
)
1293 *tmp
= dev
->type
->devnode(dev
, mode
);
1297 /* the class may provide a specific name */
1298 if (dev
->class && dev
->class->devnode
)
1299 *tmp
= dev
->class->devnode(dev
, mode
);
1303 /* return name without allocation, tmp == NULL */
1304 if (strchr(dev_name(dev
), '!') == NULL
)
1305 return dev_name(dev
);
1307 /* replace '!' in the name with '/' */
1308 *tmp
= kstrdup(dev_name(dev
), GFP_KERNEL
);
1311 while ((s
= strchr(*tmp
, '!')))
1317 * device_for_each_child - device child iterator.
1318 * @parent: parent struct device.
1319 * @data: data for the callback.
1320 * @fn: function to be called for each device.
1322 * Iterate over @parent's child devices, and call @fn for each,
1325 * We check the return of @fn each time. If it returns anything
1326 * other than 0, we break out and return that value.
1328 int device_for_each_child(struct device
*parent
, void *data
,
1329 int (*fn
)(struct device
*dev
, void *data
))
1331 struct klist_iter i
;
1332 struct device
*child
;
1338 klist_iter_init(&parent
->p
->klist_children
, &i
);
1339 while ((child
= next_device(&i
)) && !error
)
1340 error
= fn(child
, data
);
1341 klist_iter_exit(&i
);
1346 * device_find_child - device iterator for locating a particular device.
1347 * @parent: parent struct device
1348 * @data: Data to pass to match function
1349 * @match: Callback function to check device
1351 * This is similar to the device_for_each_child() function above, but it
1352 * returns a reference to a device that is 'found' for later use, as
1353 * determined by the @match callback.
1355 * The callback should return 0 if the device doesn't match and non-zero
1356 * if it does. If the callback returns non-zero and a reference to the
1357 * current device can be obtained, this function will return to the caller
1358 * and not iterate over any more devices.
1360 struct device
*device_find_child(struct device
*parent
, void *data
,
1361 int (*match
)(struct device
*dev
, void *data
))
1363 struct klist_iter i
;
1364 struct device
*child
;
1369 klist_iter_init(&parent
->p
->klist_children
, &i
);
1370 while ((child
= next_device(&i
)))
1371 if (match(child
, data
) && get_device(child
))
1373 klist_iter_exit(&i
);
1377 int __init
devices_init(void)
1379 devices_kset
= kset_create_and_add("devices", &device_uevent_ops
, NULL
);
1382 dev_kobj
= kobject_create_and_add("dev", NULL
);
1385 sysfs_dev_block_kobj
= kobject_create_and_add("block", dev_kobj
);
1386 if (!sysfs_dev_block_kobj
)
1387 goto block_kobj_err
;
1388 sysfs_dev_char_kobj
= kobject_create_and_add("char", dev_kobj
);
1389 if (!sysfs_dev_char_kobj
)
1395 kobject_put(sysfs_dev_block_kobj
);
1397 kobject_put(dev_kobj
);
1399 kset_unregister(devices_kset
);
1403 EXPORT_SYMBOL_GPL(device_for_each_child
);
1404 EXPORT_SYMBOL_GPL(device_find_child
);
1406 EXPORT_SYMBOL_GPL(device_initialize
);
1407 EXPORT_SYMBOL_GPL(device_add
);
1408 EXPORT_SYMBOL_GPL(device_register
);
1410 EXPORT_SYMBOL_GPL(device_del
);
1411 EXPORT_SYMBOL_GPL(device_unregister
);
1412 EXPORT_SYMBOL_GPL(get_device
);
1413 EXPORT_SYMBOL_GPL(put_device
);
1415 EXPORT_SYMBOL_GPL(device_create_file
);
1416 EXPORT_SYMBOL_GPL(device_remove_file
);
1418 struct root_device
{
1420 struct module
*owner
;
1423 static inline struct root_device
*to_root_device(struct device
*d
)
1425 return container_of(d
, struct root_device
, dev
);
1428 static void root_device_release(struct device
*dev
)
1430 kfree(to_root_device(dev
));
1434 * __root_device_register - allocate and register a root device
1435 * @name: root device name
1436 * @owner: owner module of the root device, usually THIS_MODULE
1438 * This function allocates a root device and registers it
1439 * using device_register(). In order to free the returned
1440 * device, use root_device_unregister().
1442 * Root devices are dummy devices which allow other devices
1443 * to be grouped under /sys/devices. Use this function to
1444 * allocate a root device and then use it as the parent of
1445 * any device which should appear under /sys/devices/{name}
1447 * The /sys/devices/{name} directory will also contain a
1448 * 'module' symlink which points to the @owner directory
1451 * Returns &struct device pointer on success, or ERR_PTR() on error.
1453 * Note: You probably want to use root_device_register().
1455 struct device
*__root_device_register(const char *name
, struct module
*owner
)
1457 struct root_device
*root
;
1460 root
= kzalloc(sizeof(struct root_device
), GFP_KERNEL
);
1462 return ERR_PTR(err
);
1464 err
= dev_set_name(&root
->dev
, "%s", name
);
1467 return ERR_PTR(err
);
1470 root
->dev
.release
= root_device_release
;
1472 err
= device_register(&root
->dev
);
1474 put_device(&root
->dev
);
1475 return ERR_PTR(err
);
1478 #ifdef CONFIG_MODULES /* gotta find a "cleaner" way to do this */
1480 struct module_kobject
*mk
= &owner
->mkobj
;
1482 err
= sysfs_create_link(&root
->dev
.kobj
, &mk
->kobj
, "module");
1484 device_unregister(&root
->dev
);
1485 return ERR_PTR(err
);
1487 root
->owner
= owner
;
1493 EXPORT_SYMBOL_GPL(__root_device_register
);
1496 * root_device_unregister - unregister and free a root device
1497 * @dev: device going away
1499 * This function unregisters and cleans up a device that was created by
1500 * root_device_register().
1502 void root_device_unregister(struct device
*dev
)
1504 struct root_device
*root
= to_root_device(dev
);
1507 sysfs_remove_link(&root
->dev
.kobj
, "module");
1509 device_unregister(dev
);
1511 EXPORT_SYMBOL_GPL(root_device_unregister
);
1514 static void device_create_release(struct device
*dev
)
1516 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
1521 * device_create_vargs - creates a device and registers it with sysfs
1522 * @class: pointer to the struct class that this device should be registered to
1523 * @parent: pointer to the parent struct device of this new device, if any
1524 * @devt: the dev_t for the char device to be added
1525 * @drvdata: the data to be added to the device for callbacks
1526 * @fmt: string for the device's name
1527 * @args: va_list for the device's name
1529 * This function can be used by char device classes. A struct device
1530 * will be created in sysfs, registered to the specified class.
1532 * A "dev" file will be created, showing the dev_t for the device, if
1533 * the dev_t is not 0,0.
1534 * If a pointer to a parent struct device is passed in, the newly created
1535 * struct device will be a child of that device in sysfs.
1536 * The pointer to the struct device will be returned from the call.
1537 * Any further sysfs files that might be required can be created using this
1540 * Returns &struct device pointer on success, or ERR_PTR() on error.
1542 * Note: the struct class passed to this function must have previously
1543 * been created with a call to class_create().
1545 struct device
*device_create_vargs(struct class *class, struct device
*parent
,
1546 dev_t devt
, void *drvdata
, const char *fmt
,
1549 struct device
*dev
= NULL
;
1550 int retval
= -ENODEV
;
1552 if (class == NULL
|| IS_ERR(class))
1555 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
1563 dev
->parent
= parent
;
1564 dev
->release
= device_create_release
;
1565 dev_set_drvdata(dev
, drvdata
);
1567 retval
= kobject_set_name_vargs(&dev
->kobj
, fmt
, args
);
1571 retval
= device_register(dev
);
1579 return ERR_PTR(retval
);
1581 EXPORT_SYMBOL_GPL(device_create_vargs
);
1584 * device_create - creates a device and registers it with sysfs
1585 * @class: pointer to the struct class that this device should be registered to
1586 * @parent: pointer to the parent struct device of this new device, if any
1587 * @devt: the dev_t for the char device to be added
1588 * @drvdata: the data to be added to the device for callbacks
1589 * @fmt: string for the device's name
1591 * This function can be used by char device classes. A struct device
1592 * will be created in sysfs, registered to the specified class.
1594 * A "dev" file will be created, showing the dev_t for the device, if
1595 * the dev_t is not 0,0.
1596 * If a pointer to a parent struct device is passed in, the newly created
1597 * struct device will be a child of that device in sysfs.
1598 * The pointer to the struct device will be returned from the call.
1599 * Any further sysfs files that might be required can be created using this
1602 * Returns &struct device pointer on success, or ERR_PTR() on error.
1604 * Note: the struct class passed to this function must have previously
1605 * been created with a call to class_create().
1607 struct device
*device_create(struct class *class, struct device
*parent
,
1608 dev_t devt
, void *drvdata
, const char *fmt
, ...)
1613 va_start(vargs
, fmt
);
1614 dev
= device_create_vargs(class, parent
, devt
, drvdata
, fmt
, vargs
);
1618 EXPORT_SYMBOL_GPL(device_create
);
1620 static int __match_devt(struct device
*dev
, void *data
)
1624 return dev
->devt
== *devt
;
1628 * device_destroy - removes a device that was created with device_create()
1629 * @class: pointer to the struct class that this device was registered with
1630 * @devt: the dev_t of the device that was previously registered
1632 * This call unregisters and cleans up a device that was created with a
1633 * call to device_create().
1635 void device_destroy(struct class *class, dev_t devt
)
1639 dev
= class_find_device(class, NULL
, &devt
, __match_devt
);
1642 device_unregister(dev
);
1645 EXPORT_SYMBOL_GPL(device_destroy
);
1648 * device_rename - renames a device
1649 * @dev: the pointer to the struct device to be renamed
1650 * @new_name: the new name of the device
1652 * It is the responsibility of the caller to provide mutual
1653 * exclusion between two different calls of device_rename
1654 * on the same device to ensure that new_name is valid and
1655 * won't conflict with other devices.
1657 * Note: Don't call this function. Currently, the networking layer calls this
1658 * function, but that will change. The following text from Kay Sievers offers
1661 * Renaming devices is racy at many levels, symlinks and other stuff are not
1662 * replaced atomically, and you get a "move" uevent, but it's not easy to
1663 * connect the event to the old and new device. Device nodes are not renamed at
1664 * all, there isn't even support for that in the kernel now.
1666 * In the meantime, during renaming, your target name might be taken by another
1667 * driver, creating conflicts. Or the old name is taken directly after you
1668 * renamed it -- then you get events for the same DEVPATH, before you even see
1669 * the "move" event. It's just a mess, and nothing new should ever rely on
1670 * kernel device renaming. Besides that, it's not even implemented now for
1671 * other things than (driver-core wise very simple) network devices.
1673 * We are currently about to change network renaming in udev to completely
1674 * disallow renaming of devices in the same namespace as the kernel uses,
1675 * because we can't solve the problems properly, that arise with swapping names
1676 * of multiple interfaces without races. Means, renaming of eth[0-9]* will only
1677 * be allowed to some other name than eth[0-9]*, for the aforementioned
1680 * Make up a "real" name in the driver before you register anything, or add
1681 * some other attributes for userspace to find the device, or use udev to add
1682 * symlinks -- but never rename kernel devices later, it's a complete mess. We
1683 * don't even want to get into that and try to implement the missing pieces in
1684 * the core. We really have other pieces to fix in the driver core mess. :)
1686 int device_rename(struct device
*dev
, const char *new_name
)
1688 char *old_class_name
= NULL
;
1689 char *new_class_name
= NULL
;
1690 char *old_device_name
= NULL
;
1693 dev
= get_device(dev
);
1697 pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev
),
1698 __func__
, new_name
);
1700 old_device_name
= kstrdup(dev_name(dev
), GFP_KERNEL
);
1701 if (!old_device_name
) {
1707 error
= sysfs_rename_link(&dev
->class->p
->subsys
.kobj
,
1708 &dev
->kobj
, old_device_name
, new_name
);
1713 error
= kobject_rename(&dev
->kobj
, new_name
);
1720 kfree(new_class_name
);
1721 kfree(old_class_name
);
1722 kfree(old_device_name
);
1726 EXPORT_SYMBOL_GPL(device_rename
);
1728 static int device_move_class_links(struct device
*dev
,
1729 struct device
*old_parent
,
1730 struct device
*new_parent
)
1735 sysfs_remove_link(&dev
->kobj
, "device");
1737 error
= sysfs_create_link(&dev
->kobj
, &new_parent
->kobj
,
1743 * device_move - moves a device to a new parent
1744 * @dev: the pointer to the struct device to be moved
1745 * @new_parent: the new parent of the device (can by NULL)
1746 * @dpm_order: how to reorder the dpm_list
1748 int device_move(struct device
*dev
, struct device
*new_parent
,
1749 enum dpm_order dpm_order
)
1752 struct device
*old_parent
;
1753 struct kobject
*new_parent_kobj
;
1755 dev
= get_device(dev
);
1760 new_parent
= get_device(new_parent
);
1761 new_parent_kobj
= get_device_parent(dev
, new_parent
);
1763 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev
),
1764 __func__
, new_parent
? dev_name(new_parent
) : "<NULL>");
1765 error
= kobject_move(&dev
->kobj
, new_parent_kobj
);
1767 cleanup_glue_dir(dev
, new_parent_kobj
);
1768 put_device(new_parent
);
1771 old_parent
= dev
->parent
;
1772 dev
->parent
= new_parent
;
1774 klist_remove(&dev
->p
->knode_parent
);
1776 klist_add_tail(&dev
->p
->knode_parent
,
1777 &new_parent
->p
->klist_children
);
1778 set_dev_node(dev
, dev_to_node(new_parent
));
1782 error
= device_move_class_links(dev
, old_parent
, new_parent
);
1784 /* We ignore errors on cleanup since we're hosed anyway... */
1785 device_move_class_links(dev
, new_parent
, old_parent
);
1786 if (!kobject_move(&dev
->kobj
, &old_parent
->kobj
)) {
1788 klist_remove(&dev
->p
->knode_parent
);
1789 dev
->parent
= old_parent
;
1791 klist_add_tail(&dev
->p
->knode_parent
,
1792 &old_parent
->p
->klist_children
);
1793 set_dev_node(dev
, dev_to_node(old_parent
));
1796 cleanup_glue_dir(dev
, new_parent_kobj
);
1797 put_device(new_parent
);
1801 switch (dpm_order
) {
1802 case DPM_ORDER_NONE
:
1804 case DPM_ORDER_DEV_AFTER_PARENT
:
1805 device_pm_move_after(dev
, new_parent
);
1807 case DPM_ORDER_PARENT_BEFORE_DEV
:
1808 device_pm_move_before(new_parent
, dev
);
1810 case DPM_ORDER_DEV_LAST
:
1811 device_pm_move_last(dev
);
1815 put_device(old_parent
);
1821 EXPORT_SYMBOL_GPL(device_move
);
1824 * device_shutdown - call ->shutdown() on each device to shutdown.
1826 void device_shutdown(void)
1830 spin_lock(&devices_kset
->list_lock
);
1832 * Walk the devices list backward, shutting down each in turn.
1833 * Beware that device unplug events may also start pulling
1834 * devices offline, even as the system is shutting down.
1836 while (!list_empty(&devices_kset
->list
)) {
1837 dev
= list_entry(devices_kset
->list
.prev
, struct device
,
1841 * hold reference count of device's parent to
1842 * prevent it from being freed because parent's
1843 * lock is to be held
1845 get_device(dev
->parent
);
1848 * Make sure the device is off the kset list, in the
1849 * event that dev->*->shutdown() doesn't remove it.
1851 list_del_init(&dev
->kobj
.entry
);
1852 spin_unlock(&devices_kset
->list_lock
);
1854 /* hold lock to avoid race with probe/release */
1856 device_lock(dev
->parent
);
1859 /* Don't allow any more runtime suspends */
1860 pm_runtime_get_noresume(dev
);
1861 pm_runtime_barrier(dev
);
1863 if (dev
->bus
&& dev
->bus
->shutdown
) {
1865 dev_info(dev
, "shutdown\n");
1866 dev
->bus
->shutdown(dev
);
1867 } else if (dev
->driver
&& dev
->driver
->shutdown
) {
1869 dev_info(dev
, "shutdown\n");
1870 dev
->driver
->shutdown(dev
);
1875 device_unlock(dev
->parent
);
1878 put_device(dev
->parent
);
1880 spin_lock(&devices_kset
->list_lock
);
1882 spin_unlock(&devices_kset
->list_lock
);
1883 async_synchronize_full();
1887 * Device logging functions
1890 #ifdef CONFIG_PRINTK
1892 create_syslog_header(const struct device
*dev
, char *hdr
, size_t hdrlen
)
1898 subsys
= dev
->class->name
;
1900 subsys
= dev
->bus
->name
;
1904 pos
+= snprintf(hdr
+ pos
, hdrlen
- pos
, "SUBSYSTEM=%s", subsys
);
1907 * Add device identifier DEVICE=:
1911 * +sound:card0 subsystem:devname
1913 if (MAJOR(dev
->devt
)) {
1916 if (strcmp(subsys
, "block") == 0)
1921 pos
+= snprintf(hdr
+ pos
, hdrlen
- pos
,
1923 c
, MAJOR(dev
->devt
), MINOR(dev
->devt
));
1924 } else if (strcmp(subsys
, "net") == 0) {
1925 struct net_device
*net
= to_net_dev(dev
);
1928 pos
+= snprintf(hdr
+ pos
, hdrlen
- pos
,
1929 "DEVICE=n%u", net
->ifindex
);
1932 pos
+= snprintf(hdr
+ pos
, hdrlen
- pos
,
1933 "DEVICE=+%s:%s", subsys
, dev_name(dev
));
1938 EXPORT_SYMBOL(create_syslog_header
);
1940 int dev_vprintk_emit(int level
, const struct device
*dev
,
1941 const char *fmt
, va_list args
)
1946 hdrlen
= create_syslog_header(dev
, hdr
, sizeof(hdr
));
1948 return vprintk_emit(0, level
, hdrlen
? hdr
: NULL
, hdrlen
, fmt
, args
);
1950 EXPORT_SYMBOL(dev_vprintk_emit
);
1952 int dev_printk_emit(int level
, const struct device
*dev
, const char *fmt
, ...)
1957 va_start(args
, fmt
);
1959 r
= dev_vprintk_emit(level
, dev
, fmt
, args
);
1965 EXPORT_SYMBOL(dev_printk_emit
);
1967 static int __dev_printk(const char *level
, const struct device
*dev
,
1968 struct va_format
*vaf
)
1971 return printk("%s(NULL device *): %pV", level
, vaf
);
1973 return dev_printk_emit(level
[1] - '0', dev
,
1975 dev_driver_string(dev
), dev_name(dev
), vaf
);
1978 int dev_printk(const char *level
, const struct device
*dev
,
1979 const char *fmt
, ...)
1981 struct va_format vaf
;
1985 va_start(args
, fmt
);
1990 r
= __dev_printk(level
, dev
, &vaf
);
1996 EXPORT_SYMBOL(dev_printk
);
1998 #define define_dev_printk_level(func, kern_level) \
1999 int func(const struct device *dev, const char *fmt, ...) \
2001 struct va_format vaf; \
2005 va_start(args, fmt); \
2010 r = __dev_printk(kern_level, dev, &vaf); \
2016 EXPORT_SYMBOL(func);
2018 define_dev_printk_level(dev_emerg
, KERN_EMERG
);
2019 define_dev_printk_level(dev_alert
, KERN_ALERT
);
2020 define_dev_printk_level(dev_crit
, KERN_CRIT
);
2021 define_dev_printk_level(dev_err
, KERN_ERR
);
2022 define_dev_printk_level(dev_warn
, KERN_WARNING
);
2023 define_dev_printk_level(dev_notice
, KERN_NOTICE
);
2024 define_dev_printk_level(_dev_info
, KERN_INFO
);