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>
25 #include <linux/pm_runtime.h>
28 #include "power/power.h"
30 #ifdef CONFIG_SYSFS_DEPRECATED
31 #ifdef CONFIG_SYSFS_DEPRECATED_V2
32 long sysfs_deprecated
= 1;
34 long sysfs_deprecated
= 0;
36 static __init
int sysfs_deprecated_setup(char *arg
)
38 return strict_strtol(arg
, 10, &sysfs_deprecated
);
40 early_param("sysfs.deprecated", sysfs_deprecated_setup
);
43 int (*platform_notify
)(struct device
*dev
) = NULL
;
44 int (*platform_notify_remove
)(struct device
*dev
) = NULL
;
45 static struct kobject
*dev_kobj
;
46 struct kobject
*sysfs_dev_char_kobj
;
47 struct kobject
*sysfs_dev_block_kobj
;
50 static inline int device_is_not_partition(struct device
*dev
)
52 return !(dev
->type
== &part_type
);
55 static inline int device_is_not_partition(struct device
*dev
)
62 * dev_driver_string - Return a device's driver name, if at all possible
63 * @dev: struct device to get the name of
65 * Will return the device's driver's name if it is bound to a device. If
66 * the device is not bound to a device, it will return the name of the bus
67 * it is attached to. If it is not attached to a bus either, an empty
68 * string will be returned.
70 const char *dev_driver_string(const struct device
*dev
)
72 struct device_driver
*drv
;
74 /* dev->driver can change to NULL underneath us because of unbinding,
75 * so be careful about accessing it. dev->bus and dev->class should
76 * never change once they are set, so they don't need special care.
78 drv
= ACCESS_ONCE(dev
->driver
);
79 return drv
? drv
->name
:
80 (dev
->bus
? dev
->bus
->name
:
81 (dev
->class ? dev
->class->name
: ""));
83 EXPORT_SYMBOL(dev_driver_string
);
85 #define to_dev(obj) container_of(obj, struct device, kobj)
86 #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
88 static ssize_t
dev_attr_show(struct kobject
*kobj
, struct attribute
*attr
,
91 struct device_attribute
*dev_attr
= to_dev_attr(attr
);
92 struct device
*dev
= to_dev(kobj
);
96 ret
= dev_attr
->show(dev
, dev_attr
, buf
);
97 if (ret
>= (ssize_t
)PAGE_SIZE
) {
98 print_symbol("dev_attr_show: %s returned bad count\n",
99 (unsigned long)dev_attr
->show
);
104 static ssize_t
dev_attr_store(struct kobject
*kobj
, struct attribute
*attr
,
105 const char *buf
, size_t count
)
107 struct device_attribute
*dev_attr
= to_dev_attr(attr
);
108 struct device
*dev
= to_dev(kobj
);
112 ret
= dev_attr
->store(dev
, dev_attr
, buf
, count
);
116 static const struct sysfs_ops dev_sysfs_ops
= {
117 .show
= dev_attr_show
,
118 .store
= dev_attr_store
,
121 #define to_ext_attr(x) container_of(x, struct dev_ext_attribute, attr)
123 ssize_t
device_store_ulong(struct device
*dev
,
124 struct device_attribute
*attr
,
125 const char *buf
, size_t size
)
127 struct dev_ext_attribute
*ea
= to_ext_attr(attr
);
129 unsigned long new = simple_strtoul(buf
, &end
, 0);
132 *(unsigned long *)(ea
->var
) = new;
133 /* Always return full write size even if we didn't consume all */
136 EXPORT_SYMBOL_GPL(device_store_ulong
);
138 ssize_t
device_show_ulong(struct device
*dev
,
139 struct device_attribute
*attr
,
142 struct dev_ext_attribute
*ea
= to_ext_attr(attr
);
143 return snprintf(buf
, PAGE_SIZE
, "%lx\n", *(unsigned long *)(ea
->var
));
145 EXPORT_SYMBOL_GPL(device_show_ulong
);
147 ssize_t
device_store_int(struct device
*dev
,
148 struct device_attribute
*attr
,
149 const char *buf
, size_t size
)
151 struct dev_ext_attribute
*ea
= to_ext_attr(attr
);
153 long new = simple_strtol(buf
, &end
, 0);
154 if (end
== buf
|| new > INT_MAX
|| new < INT_MIN
)
156 *(int *)(ea
->var
) = new;
157 /* Always return full write size even if we didn't consume all */
160 EXPORT_SYMBOL_GPL(device_store_int
);
162 ssize_t
device_show_int(struct device
*dev
,
163 struct device_attribute
*attr
,
166 struct dev_ext_attribute
*ea
= to_ext_attr(attr
);
168 return snprintf(buf
, PAGE_SIZE
, "%d\n", *(int *)(ea
->var
));
170 EXPORT_SYMBOL_GPL(device_show_int
);
173 * device_release - free device structure.
174 * @kobj: device's kobject.
176 * This is called once the reference count for the object
177 * reaches 0. We forward the call to the device's release
178 * method, which should handle actually freeing the structure.
180 static void device_release(struct kobject
*kobj
)
182 struct device
*dev
= to_dev(kobj
);
183 struct device_private
*p
= dev
->p
;
187 else if (dev
->type
&& dev
->type
->release
)
188 dev
->type
->release(dev
);
189 else if (dev
->class && dev
->class->dev_release
)
190 dev
->class->dev_release(dev
);
192 WARN(1, KERN_ERR
"Device '%s' does not have a release() "
193 "function, it is broken and must be fixed.\n",
198 static const void *device_namespace(struct kobject
*kobj
)
200 struct device
*dev
= to_dev(kobj
);
201 const void *ns
= NULL
;
203 if (dev
->class && dev
->class->ns_type
)
204 ns
= dev
->class->namespace(dev
);
209 static struct kobj_type device_ktype
= {
210 .release
= device_release
,
211 .sysfs_ops
= &dev_sysfs_ops
,
212 .namespace = device_namespace
,
216 static int dev_uevent_filter(struct kset
*kset
, struct kobject
*kobj
)
218 struct kobj_type
*ktype
= get_ktype(kobj
);
220 if (ktype
== &device_ktype
) {
221 struct device
*dev
= to_dev(kobj
);
230 static const char *dev_uevent_name(struct kset
*kset
, struct kobject
*kobj
)
232 struct device
*dev
= to_dev(kobj
);
235 return dev
->bus
->name
;
237 return dev
->class->name
;
241 static int dev_uevent(struct kset
*kset
, struct kobject
*kobj
,
242 struct kobj_uevent_env
*env
)
244 struct device
*dev
= to_dev(kobj
);
247 /* add device node properties if present */
248 if (MAJOR(dev
->devt
)) {
253 add_uevent_var(env
, "MAJOR=%u", MAJOR(dev
->devt
));
254 add_uevent_var(env
, "MINOR=%u", MINOR(dev
->devt
));
255 name
= device_get_devnode(dev
, &mode
, &tmp
);
257 add_uevent_var(env
, "DEVNAME=%s", name
);
260 add_uevent_var(env
, "DEVMODE=%#o", mode
& 0777);
264 if (dev
->type
&& dev
->type
->name
)
265 add_uevent_var(env
, "DEVTYPE=%s", dev
->type
->name
);
268 add_uevent_var(env
, "DRIVER=%s", dev
->driver
->name
);
270 /* have the bus specific function add its stuff */
271 if (dev
->bus
&& dev
->bus
->uevent
) {
272 retval
= dev
->bus
->uevent(dev
, env
);
274 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
275 dev_name(dev
), __func__
, retval
);
278 /* have the class specific function add its stuff */
279 if (dev
->class && dev
->class->dev_uevent
) {
280 retval
= dev
->class->dev_uevent(dev
, env
);
282 pr_debug("device: '%s': %s: class uevent() "
283 "returned %d\n", dev_name(dev
),
287 /* have the device type specific function add its stuff */
288 if (dev
->type
&& dev
->type
->uevent
) {
289 retval
= dev
->type
->uevent(dev
, env
);
291 pr_debug("device: '%s': %s: dev_type uevent() "
292 "returned %d\n", dev_name(dev
),
299 static const struct kset_uevent_ops device_uevent_ops
= {
300 .filter
= dev_uevent_filter
,
301 .name
= dev_uevent_name
,
302 .uevent
= dev_uevent
,
305 static ssize_t
show_uevent(struct device
*dev
, struct device_attribute
*attr
,
308 struct kobject
*top_kobj
;
310 struct kobj_uevent_env
*env
= NULL
;
315 /* search the kset, the device belongs to */
316 top_kobj
= &dev
->kobj
;
317 while (!top_kobj
->kset
&& top_kobj
->parent
)
318 top_kobj
= top_kobj
->parent
;
322 kset
= top_kobj
->kset
;
323 if (!kset
->uevent_ops
|| !kset
->uevent_ops
->uevent
)
327 if (kset
->uevent_ops
&& kset
->uevent_ops
->filter
)
328 if (!kset
->uevent_ops
->filter(kset
, &dev
->kobj
))
331 env
= kzalloc(sizeof(struct kobj_uevent_env
), GFP_KERNEL
);
335 /* let the kset specific function add its keys */
336 retval
= kset
->uevent_ops
->uevent(kset
, &dev
->kobj
, env
);
340 /* copy keys to file */
341 for (i
= 0; i
< env
->envp_idx
; i
++)
342 count
+= sprintf(&buf
[count
], "%s\n", env
->envp
[i
]);
348 static ssize_t
store_uevent(struct device
*dev
, struct device_attribute
*attr
,
349 const char *buf
, size_t count
)
351 enum kobject_action action
;
353 if (kobject_action_type(buf
, count
, &action
) == 0)
354 kobject_uevent(&dev
->kobj
, action
);
356 dev_err(dev
, "uevent: unknown action-string\n");
360 static struct device_attribute uevent_attr
=
361 __ATTR(uevent
, S_IRUGO
| S_IWUSR
, show_uevent
, store_uevent
);
363 static int device_add_attributes(struct device
*dev
,
364 struct device_attribute
*attrs
)
370 for (i
= 0; attr_name(attrs
[i
]); i
++) {
371 error
= device_create_file(dev
, &attrs
[i
]);
377 device_remove_file(dev
, &attrs
[i
]);
382 static void device_remove_attributes(struct device
*dev
,
383 struct device_attribute
*attrs
)
388 for (i
= 0; attr_name(attrs
[i
]); i
++)
389 device_remove_file(dev
, &attrs
[i
]);
392 static int device_add_bin_attributes(struct device
*dev
,
393 struct bin_attribute
*attrs
)
399 for (i
= 0; attr_name(attrs
[i
]); i
++) {
400 error
= device_create_bin_file(dev
, &attrs
[i
]);
406 device_remove_bin_file(dev
, &attrs
[i
]);
411 static void device_remove_bin_attributes(struct device
*dev
,
412 struct bin_attribute
*attrs
)
417 for (i
= 0; attr_name(attrs
[i
]); i
++)
418 device_remove_bin_file(dev
, &attrs
[i
]);
421 static int device_add_groups(struct device
*dev
,
422 const struct attribute_group
**groups
)
428 for (i
= 0; groups
[i
]; i
++) {
429 error
= sysfs_create_group(&dev
->kobj
, groups
[i
]);
432 sysfs_remove_group(&dev
->kobj
,
441 static void device_remove_groups(struct device
*dev
,
442 const struct attribute_group
**groups
)
447 for (i
= 0; groups
[i
]; i
++)
448 sysfs_remove_group(&dev
->kobj
, groups
[i
]);
451 static int device_add_attrs(struct device
*dev
)
453 struct class *class = dev
->class;
454 const struct device_type
*type
= dev
->type
;
458 error
= device_add_attributes(dev
, class->dev_attrs
);
461 error
= device_add_bin_attributes(dev
, class->dev_bin_attrs
);
463 goto err_remove_class_attrs
;
467 error
= device_add_groups(dev
, type
->groups
);
469 goto err_remove_class_bin_attrs
;
472 error
= device_add_groups(dev
, dev
->groups
);
474 goto err_remove_type_groups
;
478 err_remove_type_groups
:
480 device_remove_groups(dev
, type
->groups
);
481 err_remove_class_bin_attrs
:
483 device_remove_bin_attributes(dev
, class->dev_bin_attrs
);
484 err_remove_class_attrs
:
486 device_remove_attributes(dev
, class->dev_attrs
);
491 static void device_remove_attrs(struct device
*dev
)
493 struct class *class = dev
->class;
494 const struct device_type
*type
= dev
->type
;
496 device_remove_groups(dev
, dev
->groups
);
499 device_remove_groups(dev
, type
->groups
);
502 device_remove_attributes(dev
, class->dev_attrs
);
503 device_remove_bin_attributes(dev
, class->dev_bin_attrs
);
508 static ssize_t
show_dev(struct device
*dev
, struct device_attribute
*attr
,
511 return print_dev_t(buf
, dev
->devt
);
514 static struct device_attribute devt_attr
=
515 __ATTR(dev
, S_IRUGO
, show_dev
, NULL
);
518 struct kset
*devices_kset
;
521 * device_create_file - create sysfs attribute file for device.
523 * @attr: device attribute descriptor.
525 int device_create_file(struct device
*dev
,
526 const struct device_attribute
*attr
)
530 error
= sysfs_create_file(&dev
->kobj
, &attr
->attr
);
535 * device_remove_file - remove sysfs attribute file.
537 * @attr: device attribute descriptor.
539 void device_remove_file(struct device
*dev
,
540 const struct device_attribute
*attr
)
543 sysfs_remove_file(&dev
->kobj
, &attr
->attr
);
547 * device_create_bin_file - create sysfs binary attribute file for device.
549 * @attr: device binary attribute descriptor.
551 int device_create_bin_file(struct device
*dev
,
552 const struct bin_attribute
*attr
)
556 error
= sysfs_create_bin_file(&dev
->kobj
, attr
);
559 EXPORT_SYMBOL_GPL(device_create_bin_file
);
562 * device_remove_bin_file - remove sysfs binary attribute file
564 * @attr: device binary attribute descriptor.
566 void device_remove_bin_file(struct device
*dev
,
567 const struct bin_attribute
*attr
)
570 sysfs_remove_bin_file(&dev
->kobj
, attr
);
572 EXPORT_SYMBOL_GPL(device_remove_bin_file
);
575 * device_schedule_callback_owner - helper to schedule a callback for a device
577 * @func: callback function to invoke later.
578 * @owner: module owning the callback routine
580 * Attribute methods must not unregister themselves or their parent device
581 * (which would amount to the same thing). Attempts to do so will deadlock,
582 * since unregistration is mutually exclusive with driver callbacks.
584 * Instead methods can call this routine, which will attempt to allocate
585 * and schedule a workqueue request to call back @func with @dev as its
586 * argument in the workqueue's process context. @dev will be pinned until
589 * This routine is usually called via the inline device_schedule_callback(),
590 * which automatically sets @owner to THIS_MODULE.
592 * Returns 0 if the request was submitted, -ENOMEM if storage could not
593 * be allocated, -ENODEV if a reference to @owner isn't available.
595 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
596 * underlying sysfs routine (since it is intended for use by attribute
597 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
599 int device_schedule_callback_owner(struct device
*dev
,
600 void (*func
)(struct device
*), struct module
*owner
)
602 return sysfs_schedule_callback(&dev
->kobj
,
603 (void (*)(void *)) func
, dev
, owner
);
605 EXPORT_SYMBOL_GPL(device_schedule_callback_owner
);
607 static void klist_children_get(struct klist_node
*n
)
609 struct device_private
*p
= to_device_private_parent(n
);
610 struct device
*dev
= p
->device
;
615 static void klist_children_put(struct klist_node
*n
)
617 struct device_private
*p
= to_device_private_parent(n
);
618 struct device
*dev
= p
->device
;
624 * device_initialize - init device structure.
627 * This prepares the device for use by other layers by initializing
629 * It is the first half of device_register(), if called by
630 * that function, though it can also be called separately, so one
631 * may use @dev's fields. In particular, get_device()/put_device()
632 * may be used for reference counting of @dev after calling this
635 * NOTE: Use put_device() to give up your reference instead of freeing
636 * @dev directly once you have called this function.
638 void device_initialize(struct device
*dev
)
640 dev
->kobj
.kset
= devices_kset
;
641 kobject_init(&dev
->kobj
, &device_ktype
);
642 INIT_LIST_HEAD(&dev
->dma_pools
);
643 mutex_init(&dev
->mutex
);
644 lockdep_set_novalidate_class(&dev
->mutex
);
645 spin_lock_init(&dev
->devres_lock
);
646 INIT_LIST_HEAD(&dev
->devres_head
);
648 set_dev_node(dev
, -1);
651 static struct kobject
*virtual_device_parent(struct device
*dev
)
653 static struct kobject
*virtual_dir
= NULL
;
656 virtual_dir
= kobject_create_and_add("virtual",
657 &devices_kset
->kobj
);
667 #define to_class_dir(obj) container_of(obj, struct class_dir, kobj)
669 static void class_dir_release(struct kobject
*kobj
)
671 struct class_dir
*dir
= to_class_dir(kobj
);
676 struct kobj_ns_type_operations
*class_dir_child_ns_type(struct kobject
*kobj
)
678 struct class_dir
*dir
= to_class_dir(kobj
);
679 return dir
->class->ns_type
;
682 static struct kobj_type class_dir_ktype
= {
683 .release
= class_dir_release
,
684 .sysfs_ops
= &kobj_sysfs_ops
,
685 .child_ns_type
= class_dir_child_ns_type
688 static struct kobject
*
689 class_dir_create_and_add(struct class *class, struct kobject
*parent_kobj
)
691 struct class_dir
*dir
;
694 dir
= kzalloc(sizeof(*dir
), GFP_KERNEL
);
699 kobject_init(&dir
->kobj
, &class_dir_ktype
);
701 dir
->kobj
.kset
= &class->p
->glue_dirs
;
703 retval
= kobject_add(&dir
->kobj
, parent_kobj
, "%s", class->name
);
705 kobject_put(&dir
->kobj
);
712 static struct kobject
*get_device_parent(struct device
*dev
,
713 struct device
*parent
)
716 static DEFINE_MUTEX(gdp_mutex
);
717 struct kobject
*kobj
= NULL
;
718 struct kobject
*parent_kobj
;
722 /* block disks show up in /sys/block */
723 if (sysfs_deprecated
&& dev
->class == &block_class
) {
724 if (parent
&& parent
->class == &block_class
)
725 return &parent
->kobj
;
726 return &block_class
.p
->subsys
.kobj
;
731 * If we have no parent, we live in "virtual".
732 * Class-devices with a non class-device as parent, live
733 * in a "glue" directory to prevent namespace collisions.
736 parent_kobj
= virtual_device_parent(dev
);
737 else if (parent
->class && !dev
->class->ns_type
)
738 return &parent
->kobj
;
740 parent_kobj
= &parent
->kobj
;
742 mutex_lock(&gdp_mutex
);
744 /* find our class-directory at the parent and reference it */
745 spin_lock(&dev
->class->p
->glue_dirs
.list_lock
);
746 list_for_each_entry(k
, &dev
->class->p
->glue_dirs
.list
, entry
)
747 if (k
->parent
== parent_kobj
) {
748 kobj
= kobject_get(k
);
751 spin_unlock(&dev
->class->p
->glue_dirs
.list_lock
);
753 mutex_unlock(&gdp_mutex
);
757 /* or create a new class-directory at the parent device */
758 k
= class_dir_create_and_add(dev
->class, parent_kobj
);
759 /* do not emit an uevent for this simple "glue" directory */
760 mutex_unlock(&gdp_mutex
);
764 /* subsystems can specify a default root directory for their devices */
765 if (!parent
&& dev
->bus
&& dev
->bus
->dev_root
)
766 return &dev
->bus
->dev_root
->kobj
;
769 return &parent
->kobj
;
773 static void cleanup_glue_dir(struct device
*dev
, struct kobject
*glue_dir
)
775 /* see if we live in a "glue" directory */
776 if (!glue_dir
|| !dev
->class ||
777 glue_dir
->kset
!= &dev
->class->p
->glue_dirs
)
780 kobject_put(glue_dir
);
783 static void cleanup_device_parent(struct device
*dev
)
785 cleanup_glue_dir(dev
, dev
->kobj
.parent
);
788 static int device_add_class_symlinks(struct device
*dev
)
795 error
= sysfs_create_link(&dev
->kobj
,
796 &dev
->class->p
->subsys
.kobj
,
801 if (dev
->parent
&& device_is_not_partition(dev
)) {
802 error
= sysfs_create_link(&dev
->kobj
, &dev
->parent
->kobj
,
809 /* /sys/block has directories and does not need symlinks */
810 if (sysfs_deprecated
&& dev
->class == &block_class
)
814 /* link in the class directory pointing to the device */
815 error
= sysfs_create_link(&dev
->class->p
->subsys
.kobj
,
816 &dev
->kobj
, dev_name(dev
));
823 sysfs_remove_link(&dev
->kobj
, "device");
826 sysfs_remove_link(&dev
->kobj
, "subsystem");
831 static void device_remove_class_symlinks(struct device
*dev
)
836 if (dev
->parent
&& device_is_not_partition(dev
))
837 sysfs_remove_link(&dev
->kobj
, "device");
838 sysfs_remove_link(&dev
->kobj
, "subsystem");
840 if (sysfs_deprecated
&& dev
->class == &block_class
)
843 sysfs_delete_link(&dev
->class->p
->subsys
.kobj
, &dev
->kobj
, dev_name(dev
));
847 * dev_set_name - set a device name
849 * @fmt: format string for the device's name
851 int dev_set_name(struct device
*dev
, const char *fmt
, ...)
856 va_start(vargs
, fmt
);
857 err
= kobject_set_name_vargs(&dev
->kobj
, fmt
, vargs
);
861 EXPORT_SYMBOL_GPL(dev_set_name
);
864 * device_to_dev_kobj - select a /sys/dev/ directory for the device
867 * By default we select char/ for new entries. Setting class->dev_obj
868 * to NULL prevents an entry from being created. class->dev_kobj must
869 * be set (or cleared) before any devices are registered to the class
870 * otherwise device_create_sys_dev_entry() and
871 * device_remove_sys_dev_entry() will disagree about the the presence
874 static struct kobject
*device_to_dev_kobj(struct device
*dev
)
876 struct kobject
*kobj
;
879 kobj
= dev
->class->dev_kobj
;
881 kobj
= sysfs_dev_char_kobj
;
886 static int device_create_sys_dev_entry(struct device
*dev
)
888 struct kobject
*kobj
= device_to_dev_kobj(dev
);
893 format_dev_t(devt_str
, dev
->devt
);
894 error
= sysfs_create_link(kobj
, &dev
->kobj
, devt_str
);
900 static void device_remove_sys_dev_entry(struct device
*dev
)
902 struct kobject
*kobj
= device_to_dev_kobj(dev
);
906 format_dev_t(devt_str
, dev
->devt
);
907 sysfs_remove_link(kobj
, devt_str
);
911 int device_private_init(struct device
*dev
)
913 dev
->p
= kzalloc(sizeof(*dev
->p
), GFP_KERNEL
);
916 dev
->p
->device
= dev
;
917 klist_init(&dev
->p
->klist_children
, klist_children_get
,
923 * device_add - add device to device hierarchy.
926 * This is part 2 of device_register(), though may be called
927 * separately _iff_ device_initialize() has been called separately.
929 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
930 * to the global and sibling lists for the device, then
931 * adds it to the other relevant subsystems of the driver model.
933 * NOTE: _Never_ directly free @dev after calling this function, even
934 * if it returned an error! Always use put_device() to give up your
937 int device_add(struct device
*dev
)
939 struct device
*parent
= NULL
;
940 struct kobject
*kobj
;
941 struct class_interface
*class_intf
;
944 dev
= get_device(dev
);
949 error
= device_private_init(dev
);
955 * for statically allocated devices, which should all be converted
956 * some day, we need to initialize the name. We prevent reading back
957 * the name, and force the use of dev_name()
959 if (dev
->init_name
) {
960 dev_set_name(dev
, "%s", dev
->init_name
);
961 dev
->init_name
= NULL
;
964 /* subsystems can specify simple device enumeration */
965 if (!dev_name(dev
) && dev
->bus
&& dev
->bus
->dev_name
)
966 dev_set_name(dev
, "%s%u", dev
->bus
->dev_name
, dev
->id
);
968 if (!dev_name(dev
)) {
973 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
975 parent
= get_device(dev
->parent
);
976 kobj
= get_device_parent(dev
, parent
);
978 dev
->kobj
.parent
= kobj
;
980 /* use parent numa_node */
982 set_dev_node(dev
, dev_to_node(parent
));
984 /* first, register with generic layer. */
985 /* we require the name to be set before, and pass NULL */
986 error
= kobject_add(&dev
->kobj
, dev
->kobj
.parent
, NULL
);
990 /* notify platform of device entry */
992 platform_notify(dev
);
994 error
= device_create_file(dev
, &uevent_attr
);
998 if (MAJOR(dev
->devt
)) {
999 error
= device_create_file(dev
, &devt_attr
);
1001 goto ueventattrError
;
1003 error
= device_create_sys_dev_entry(dev
);
1007 devtmpfs_create_node(dev
);
1010 error
= device_add_class_symlinks(dev
);
1013 error
= device_add_attrs(dev
);
1016 error
= bus_add_device(dev
);
1019 error
= dpm_sysfs_add(dev
);
1024 /* Notify clients of device addition. This call must come
1025 * after dpm_sysf_add() and before kobject_uevent().
1028 blocking_notifier_call_chain(&dev
->bus
->p
->bus_notifier
,
1029 BUS_NOTIFY_ADD_DEVICE
, dev
);
1031 kobject_uevent(&dev
->kobj
, KOBJ_ADD
);
1032 bus_probe_device(dev
);
1034 klist_add_tail(&dev
->p
->knode_parent
,
1035 &parent
->p
->klist_children
);
1038 mutex_lock(&dev
->class->p
->mutex
);
1039 /* tie the class to the device */
1040 klist_add_tail(&dev
->knode_class
,
1041 &dev
->class->p
->klist_devices
);
1043 /* notify any interfaces that the device is here */
1044 list_for_each_entry(class_intf
,
1045 &dev
->class->p
->interfaces
, node
)
1046 if (class_intf
->add_dev
)
1047 class_intf
->add_dev(dev
, class_intf
);
1048 mutex_unlock(&dev
->class->p
->mutex
);
1054 bus_remove_device(dev
);
1056 device_remove_attrs(dev
);
1058 device_remove_class_symlinks(dev
);
1060 if (MAJOR(dev
->devt
))
1061 devtmpfs_delete_node(dev
);
1062 if (MAJOR(dev
->devt
))
1063 device_remove_sys_dev_entry(dev
);
1065 if (MAJOR(dev
->devt
))
1066 device_remove_file(dev
, &devt_attr
);
1068 device_remove_file(dev
, &uevent_attr
);
1070 kobject_uevent(&dev
->kobj
, KOBJ_REMOVE
);
1071 kobject_del(&dev
->kobj
);
1073 cleanup_device_parent(dev
);
1083 * device_register - register a device with the system.
1084 * @dev: pointer to the device structure
1086 * This happens in two clean steps - initialize the device
1087 * and add it to the system. The two steps can be called
1088 * separately, but this is the easiest and most common.
1089 * I.e. you should only call the two helpers separately if
1090 * have a clearly defined need to use and refcount the device
1091 * before it is added to the hierarchy.
1093 * NOTE: _Never_ directly free @dev after calling this function, even
1094 * if it returned an error! Always use put_device() to give up the
1095 * reference initialized in this function instead.
1097 int device_register(struct device
*dev
)
1099 device_initialize(dev
);
1100 return device_add(dev
);
1104 * get_device - increment reference count for device.
1107 * This simply forwards the call to kobject_get(), though
1108 * we do take care to provide for the case that we get a NULL
1109 * pointer passed in.
1111 struct device
*get_device(struct device
*dev
)
1113 return dev
? to_dev(kobject_get(&dev
->kobj
)) : NULL
;
1117 * put_device - decrement reference count.
1118 * @dev: device in question.
1120 void put_device(struct device
*dev
)
1122 /* might_sleep(); */
1124 kobject_put(&dev
->kobj
);
1128 * device_del - delete device from system.
1131 * This is the first part of the device unregistration
1132 * sequence. This removes the device from the lists we control
1133 * from here, has it removed from the other driver model
1134 * subsystems it was added to in device_add(), and removes it
1135 * from the kobject hierarchy.
1137 * NOTE: this should be called manually _iff_ device_add() was
1138 * also called manually.
1140 void device_del(struct device
*dev
)
1142 struct device
*parent
= dev
->parent
;
1143 struct class_interface
*class_intf
;
1145 /* Notify clients of device removal. This call must come
1146 * before dpm_sysfs_remove().
1149 blocking_notifier_call_chain(&dev
->bus
->p
->bus_notifier
,
1150 BUS_NOTIFY_DEL_DEVICE
, dev
);
1151 device_pm_remove(dev
);
1152 dpm_sysfs_remove(dev
);
1154 klist_del(&dev
->p
->knode_parent
);
1155 if (MAJOR(dev
->devt
)) {
1156 devtmpfs_delete_node(dev
);
1157 device_remove_sys_dev_entry(dev
);
1158 device_remove_file(dev
, &devt_attr
);
1161 device_remove_class_symlinks(dev
);
1163 mutex_lock(&dev
->class->p
->mutex
);
1164 /* notify any interfaces that the device is now gone */
1165 list_for_each_entry(class_intf
,
1166 &dev
->class->p
->interfaces
, node
)
1167 if (class_intf
->remove_dev
)
1168 class_intf
->remove_dev(dev
, class_intf
);
1169 /* remove the device from the class list */
1170 klist_del(&dev
->knode_class
);
1171 mutex_unlock(&dev
->class->p
->mutex
);
1173 device_remove_file(dev
, &uevent_attr
);
1174 device_remove_attrs(dev
);
1175 bus_remove_device(dev
);
1178 * Some platform devices are driven without driver attached
1179 * and managed resources may have been acquired. Make sure
1180 * all resources are released.
1182 devres_release_all(dev
);
1184 /* Notify the platform of the removal, in case they
1185 * need to do anything...
1187 if (platform_notify_remove
)
1188 platform_notify_remove(dev
);
1189 kobject_uevent(&dev
->kobj
, KOBJ_REMOVE
);
1190 cleanup_device_parent(dev
);
1191 kobject_del(&dev
->kobj
);
1196 * device_unregister - unregister device from system.
1197 * @dev: device going away.
1199 * We do this in two parts, like we do device_register(). First,
1200 * we remove it from all the subsystems with device_del(), then
1201 * we decrement the reference count via put_device(). If that
1202 * is the final reference count, the device will be cleaned up
1203 * via device_release() above. Otherwise, the structure will
1204 * stick around until the final reference to the device is dropped.
1206 void device_unregister(struct device
*dev
)
1208 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
1213 static struct device
*next_device(struct klist_iter
*i
)
1215 struct klist_node
*n
= klist_next(i
);
1216 struct device
*dev
= NULL
;
1217 struct device_private
*p
;
1220 p
= to_device_private_parent(n
);
1227 * device_get_devnode - path of device node file
1229 * @mode: returned file access mode
1230 * @tmp: possibly allocated string
1232 * Return the relative path of a possible device node.
1233 * Non-default names may need to allocate a memory to compose
1234 * a name. This memory is returned in tmp and needs to be
1235 * freed by the caller.
1237 const char *device_get_devnode(struct device
*dev
,
1238 umode_t
*mode
, const char **tmp
)
1244 /* the device type may provide a specific name */
1245 if (dev
->type
&& dev
->type
->devnode
)
1246 *tmp
= dev
->type
->devnode(dev
, mode
);
1250 /* the class may provide a specific name */
1251 if (dev
->class && dev
->class->devnode
)
1252 *tmp
= dev
->class->devnode(dev
, mode
);
1256 /* return name without allocation, tmp == NULL */
1257 if (strchr(dev_name(dev
), '!') == NULL
)
1258 return dev_name(dev
);
1260 /* replace '!' in the name with '/' */
1261 *tmp
= kstrdup(dev_name(dev
), GFP_KERNEL
);
1264 while ((s
= strchr(*tmp
, '!')))
1270 * device_for_each_child - device child iterator.
1271 * @parent: parent struct device.
1272 * @data: data for the callback.
1273 * @fn: function to be called for each device.
1275 * Iterate over @parent's child devices, and call @fn for each,
1278 * We check the return of @fn each time. If it returns anything
1279 * other than 0, we break out and return that value.
1281 int device_for_each_child(struct device
*parent
, void *data
,
1282 int (*fn
)(struct device
*dev
, void *data
))
1284 struct klist_iter i
;
1285 struct device
*child
;
1291 klist_iter_init(&parent
->p
->klist_children
, &i
);
1292 while ((child
= next_device(&i
)) && !error
)
1293 error
= fn(child
, data
);
1294 klist_iter_exit(&i
);
1299 * device_find_child - device iterator for locating a particular device.
1300 * @parent: parent struct device
1301 * @data: Data to pass to match function
1302 * @match: Callback function to check device
1304 * This is similar to the device_for_each_child() function above, but it
1305 * returns a reference to a device that is 'found' for later use, as
1306 * determined by the @match callback.
1308 * The callback should return 0 if the device doesn't match and non-zero
1309 * if it does. If the callback returns non-zero and a reference to the
1310 * current device can be obtained, this function will return to the caller
1311 * and not iterate over any more devices.
1313 struct device
*device_find_child(struct device
*parent
, void *data
,
1314 int (*match
)(struct device
*dev
, void *data
))
1316 struct klist_iter i
;
1317 struct device
*child
;
1322 klist_iter_init(&parent
->p
->klist_children
, &i
);
1323 while ((child
= next_device(&i
)))
1324 if (match(child
, data
) && get_device(child
))
1326 klist_iter_exit(&i
);
1330 int __init
devices_init(void)
1332 devices_kset
= kset_create_and_add("devices", &device_uevent_ops
, NULL
);
1335 dev_kobj
= kobject_create_and_add("dev", NULL
);
1338 sysfs_dev_block_kobj
= kobject_create_and_add("block", dev_kobj
);
1339 if (!sysfs_dev_block_kobj
)
1340 goto block_kobj_err
;
1341 sysfs_dev_char_kobj
= kobject_create_and_add("char", dev_kobj
);
1342 if (!sysfs_dev_char_kobj
)
1348 kobject_put(sysfs_dev_block_kobj
);
1350 kobject_put(dev_kobj
);
1352 kset_unregister(devices_kset
);
1356 EXPORT_SYMBOL_GPL(device_for_each_child
);
1357 EXPORT_SYMBOL_GPL(device_find_child
);
1359 EXPORT_SYMBOL_GPL(device_initialize
);
1360 EXPORT_SYMBOL_GPL(device_add
);
1361 EXPORT_SYMBOL_GPL(device_register
);
1363 EXPORT_SYMBOL_GPL(device_del
);
1364 EXPORT_SYMBOL_GPL(device_unregister
);
1365 EXPORT_SYMBOL_GPL(get_device
);
1366 EXPORT_SYMBOL_GPL(put_device
);
1368 EXPORT_SYMBOL_GPL(device_create_file
);
1369 EXPORT_SYMBOL_GPL(device_remove_file
);
1371 struct root_device
{
1373 struct module
*owner
;
1376 inline struct root_device
*to_root_device(struct device
*d
)
1378 return container_of(d
, struct root_device
, dev
);
1381 static void root_device_release(struct device
*dev
)
1383 kfree(to_root_device(dev
));
1387 * __root_device_register - allocate and register a root device
1388 * @name: root device name
1389 * @owner: owner module of the root device, usually THIS_MODULE
1391 * This function allocates a root device and registers it
1392 * using device_register(). In order to free the returned
1393 * device, use root_device_unregister().
1395 * Root devices are dummy devices which allow other devices
1396 * to be grouped under /sys/devices. Use this function to
1397 * allocate a root device and then use it as the parent of
1398 * any device which should appear under /sys/devices/{name}
1400 * The /sys/devices/{name} directory will also contain a
1401 * 'module' symlink which points to the @owner directory
1404 * Returns &struct device pointer on success, or ERR_PTR() on error.
1406 * Note: You probably want to use root_device_register().
1408 struct device
*__root_device_register(const char *name
, struct module
*owner
)
1410 struct root_device
*root
;
1413 root
= kzalloc(sizeof(struct root_device
), GFP_KERNEL
);
1415 return ERR_PTR(err
);
1417 err
= dev_set_name(&root
->dev
, "%s", name
);
1420 return ERR_PTR(err
);
1423 root
->dev
.release
= root_device_release
;
1425 err
= device_register(&root
->dev
);
1427 put_device(&root
->dev
);
1428 return ERR_PTR(err
);
1431 #ifdef CONFIG_MODULES /* gotta find a "cleaner" way to do this */
1433 struct module_kobject
*mk
= &owner
->mkobj
;
1435 err
= sysfs_create_link(&root
->dev
.kobj
, &mk
->kobj
, "module");
1437 device_unregister(&root
->dev
);
1438 return ERR_PTR(err
);
1440 root
->owner
= owner
;
1446 EXPORT_SYMBOL_GPL(__root_device_register
);
1449 * root_device_unregister - unregister and free a root device
1450 * @dev: device going away
1452 * This function unregisters and cleans up a device that was created by
1453 * root_device_register().
1455 void root_device_unregister(struct device
*dev
)
1457 struct root_device
*root
= to_root_device(dev
);
1460 sysfs_remove_link(&root
->dev
.kobj
, "module");
1462 device_unregister(dev
);
1464 EXPORT_SYMBOL_GPL(root_device_unregister
);
1467 static void device_create_release(struct device
*dev
)
1469 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
1474 * device_create_vargs - creates a device and registers it with sysfs
1475 * @class: pointer to the struct class that this device should be registered to
1476 * @parent: pointer to the parent struct device of this new device, if any
1477 * @devt: the dev_t for the char device to be added
1478 * @drvdata: the data to be added to the device for callbacks
1479 * @fmt: string for the device's name
1480 * @args: va_list for the device's name
1482 * This function can be used by char device classes. A struct device
1483 * will be created in sysfs, registered to the specified class.
1485 * A "dev" file will be created, showing the dev_t for the device, if
1486 * the dev_t is not 0,0.
1487 * If a pointer to a parent struct device is passed in, the newly created
1488 * struct device will be a child of that device in sysfs.
1489 * The pointer to the struct device will be returned from the call.
1490 * Any further sysfs files that might be required can be created using this
1493 * Returns &struct device pointer on success, or ERR_PTR() on error.
1495 * Note: the struct class passed to this function must have previously
1496 * been created with a call to class_create().
1498 struct device
*device_create_vargs(struct class *class, struct device
*parent
,
1499 dev_t devt
, void *drvdata
, const char *fmt
,
1502 struct device
*dev
= NULL
;
1503 int retval
= -ENODEV
;
1505 if (class == NULL
|| IS_ERR(class))
1508 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
1516 dev
->parent
= parent
;
1517 dev
->release
= device_create_release
;
1518 dev_set_drvdata(dev
, drvdata
);
1520 retval
= kobject_set_name_vargs(&dev
->kobj
, fmt
, args
);
1524 retval
= device_register(dev
);
1532 return ERR_PTR(retval
);
1534 EXPORT_SYMBOL_GPL(device_create_vargs
);
1537 * device_create - creates a device and registers it with sysfs
1538 * @class: pointer to the struct class that this device should be registered to
1539 * @parent: pointer to the parent struct device of this new device, if any
1540 * @devt: the dev_t for the char device to be added
1541 * @drvdata: the data to be added to the device for callbacks
1542 * @fmt: string for the device's name
1544 * This function can be used by char device classes. A struct device
1545 * will be created in sysfs, registered to the specified class.
1547 * A "dev" file will be created, showing the dev_t for the device, if
1548 * the dev_t is not 0,0.
1549 * If a pointer to a parent struct device is passed in, the newly created
1550 * struct device will be a child of that device in sysfs.
1551 * The pointer to the struct device will be returned from the call.
1552 * Any further sysfs files that might be required can be created using this
1555 * Returns &struct device pointer on success, or ERR_PTR() on error.
1557 * Note: the struct class passed to this function must have previously
1558 * been created with a call to class_create().
1560 struct device
*device_create(struct class *class, struct device
*parent
,
1561 dev_t devt
, void *drvdata
, const char *fmt
, ...)
1566 va_start(vargs
, fmt
);
1567 dev
= device_create_vargs(class, parent
, devt
, drvdata
, fmt
, vargs
);
1571 EXPORT_SYMBOL_GPL(device_create
);
1573 static int __match_devt(struct device
*dev
, void *data
)
1577 return dev
->devt
== *devt
;
1581 * device_destroy - removes a device that was created with device_create()
1582 * @class: pointer to the struct class that this device was registered with
1583 * @devt: the dev_t of the device that was previously registered
1585 * This call unregisters and cleans up a device that was created with a
1586 * call to device_create().
1588 void device_destroy(struct class *class, dev_t devt
)
1592 dev
= class_find_device(class, NULL
, &devt
, __match_devt
);
1595 device_unregister(dev
);
1598 EXPORT_SYMBOL_GPL(device_destroy
);
1601 * device_rename - renames a device
1602 * @dev: the pointer to the struct device to be renamed
1603 * @new_name: the new name of the device
1605 * It is the responsibility of the caller to provide mutual
1606 * exclusion between two different calls of device_rename
1607 * on the same device to ensure that new_name is valid and
1608 * won't conflict with other devices.
1610 * Note: Don't call this function. Currently, the networking layer calls this
1611 * function, but that will change. The following text from Kay Sievers offers
1614 * Renaming devices is racy at many levels, symlinks and other stuff are not
1615 * replaced atomically, and you get a "move" uevent, but it's not easy to
1616 * connect the event to the old and new device. Device nodes are not renamed at
1617 * all, there isn't even support for that in the kernel now.
1619 * In the meantime, during renaming, your target name might be taken by another
1620 * driver, creating conflicts. Or the old name is taken directly after you
1621 * renamed it -- then you get events for the same DEVPATH, before you even see
1622 * the "move" event. It's just a mess, and nothing new should ever rely on
1623 * kernel device renaming. Besides that, it's not even implemented now for
1624 * other things than (driver-core wise very simple) network devices.
1626 * We are currently about to change network renaming in udev to completely
1627 * disallow renaming of devices in the same namespace as the kernel uses,
1628 * because we can't solve the problems properly, that arise with swapping names
1629 * of multiple interfaces without races. Means, renaming of eth[0-9]* will only
1630 * be allowed to some other name than eth[0-9]*, for the aforementioned
1633 * Make up a "real" name in the driver before you register anything, or add
1634 * some other attributes for userspace to find the device, or use udev to add
1635 * symlinks -- but never rename kernel devices later, it's a complete mess. We
1636 * don't even want to get into that and try to implement the missing pieces in
1637 * the core. We really have other pieces to fix in the driver core mess. :)
1639 int device_rename(struct device
*dev
, const char *new_name
)
1641 char *old_class_name
= NULL
;
1642 char *new_class_name
= NULL
;
1643 char *old_device_name
= NULL
;
1646 dev
= get_device(dev
);
1650 pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev
),
1651 __func__
, new_name
);
1653 old_device_name
= kstrdup(dev_name(dev
), GFP_KERNEL
);
1654 if (!old_device_name
) {
1660 error
= sysfs_rename_link(&dev
->class->p
->subsys
.kobj
,
1661 &dev
->kobj
, old_device_name
, new_name
);
1666 error
= kobject_rename(&dev
->kobj
, new_name
);
1673 kfree(new_class_name
);
1674 kfree(old_class_name
);
1675 kfree(old_device_name
);
1679 EXPORT_SYMBOL_GPL(device_rename
);
1681 static int device_move_class_links(struct device
*dev
,
1682 struct device
*old_parent
,
1683 struct device
*new_parent
)
1688 sysfs_remove_link(&dev
->kobj
, "device");
1690 error
= sysfs_create_link(&dev
->kobj
, &new_parent
->kobj
,
1696 * device_move - moves a device to a new parent
1697 * @dev: the pointer to the struct device to be moved
1698 * @new_parent: the new parent of the device (can by NULL)
1699 * @dpm_order: how to reorder the dpm_list
1701 int device_move(struct device
*dev
, struct device
*new_parent
,
1702 enum dpm_order dpm_order
)
1705 struct device
*old_parent
;
1706 struct kobject
*new_parent_kobj
;
1708 dev
= get_device(dev
);
1713 new_parent
= get_device(new_parent
);
1714 new_parent_kobj
= get_device_parent(dev
, new_parent
);
1716 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev
),
1717 __func__
, new_parent
? dev_name(new_parent
) : "<NULL>");
1718 error
= kobject_move(&dev
->kobj
, new_parent_kobj
);
1720 cleanup_glue_dir(dev
, new_parent_kobj
);
1721 put_device(new_parent
);
1724 old_parent
= dev
->parent
;
1725 dev
->parent
= new_parent
;
1727 klist_remove(&dev
->p
->knode_parent
);
1729 klist_add_tail(&dev
->p
->knode_parent
,
1730 &new_parent
->p
->klist_children
);
1731 set_dev_node(dev
, dev_to_node(new_parent
));
1736 error
= device_move_class_links(dev
, old_parent
, new_parent
);
1738 /* We ignore errors on cleanup since we're hosed anyway... */
1739 device_move_class_links(dev
, new_parent
, old_parent
);
1740 if (!kobject_move(&dev
->kobj
, &old_parent
->kobj
)) {
1742 klist_remove(&dev
->p
->knode_parent
);
1743 dev
->parent
= old_parent
;
1745 klist_add_tail(&dev
->p
->knode_parent
,
1746 &old_parent
->p
->klist_children
);
1747 set_dev_node(dev
, dev_to_node(old_parent
));
1750 cleanup_glue_dir(dev
, new_parent_kobj
);
1751 put_device(new_parent
);
1754 switch (dpm_order
) {
1755 case DPM_ORDER_NONE
:
1757 case DPM_ORDER_DEV_AFTER_PARENT
:
1758 device_pm_move_after(dev
, new_parent
);
1760 case DPM_ORDER_PARENT_BEFORE_DEV
:
1761 device_pm_move_before(new_parent
, dev
);
1763 case DPM_ORDER_DEV_LAST
:
1764 device_pm_move_last(dev
);
1768 put_device(old_parent
);
1774 EXPORT_SYMBOL_GPL(device_move
);
1777 * device_shutdown - call ->shutdown() on each device to shutdown.
1779 void device_shutdown(void)
1783 spin_lock(&devices_kset
->list_lock
);
1785 * Walk the devices list backward, shutting down each in turn.
1786 * Beware that device unplug events may also start pulling
1787 * devices offline, even as the system is shutting down.
1789 while (!list_empty(&devices_kset
->list
)) {
1790 dev
= list_entry(devices_kset
->list
.prev
, struct device
,
1794 * Make sure the device is off the kset list, in the
1795 * event that dev->*->shutdown() doesn't remove it.
1797 list_del_init(&dev
->kobj
.entry
);
1798 spin_unlock(&devices_kset
->list_lock
);
1800 /* Don't allow any more runtime suspends */
1801 pm_runtime_get_noresume(dev
);
1802 pm_runtime_barrier(dev
);
1804 if (dev
->bus
&& dev
->bus
->shutdown
) {
1805 dev_dbg(dev
, "shutdown\n");
1806 dev
->bus
->shutdown(dev
);
1807 } else if (dev
->driver
&& dev
->driver
->shutdown
) {
1808 dev_dbg(dev
, "shutdown\n");
1809 dev
->driver
->shutdown(dev
);
1813 spin_lock(&devices_kset
->list_lock
);
1815 spin_unlock(&devices_kset
->list_lock
);
1816 async_synchronize_full();
1820 * Device logging functions
1823 #ifdef CONFIG_PRINTK
1825 int __dev_printk(const char *level
, const struct device
*dev
,
1826 struct va_format
*vaf
)
1829 return printk("%s(NULL device *): %pV", level
, vaf
);
1831 return printk("%s%s %s: %pV",
1832 level
, dev_driver_string(dev
), dev_name(dev
), vaf
);
1834 EXPORT_SYMBOL(__dev_printk
);
1836 int dev_printk(const char *level
, const struct device
*dev
,
1837 const char *fmt
, ...)
1839 struct va_format vaf
;
1843 va_start(args
, fmt
);
1848 r
= __dev_printk(level
, dev
, &vaf
);
1853 EXPORT_SYMBOL(dev_printk
);
1855 #define define_dev_printk_level(func, kern_level) \
1856 int func(const struct device *dev, const char *fmt, ...) \
1858 struct va_format vaf; \
1862 va_start(args, fmt); \
1867 r = __dev_printk(kern_level, dev, &vaf); \
1872 EXPORT_SYMBOL(func);
1874 define_dev_printk_level(dev_emerg
, KERN_EMERG
);
1875 define_dev_printk_level(dev_alert
, KERN_ALERT
);
1876 define_dev_printk_level(dev_crit
, KERN_CRIT
);
1877 define_dev_printk_level(dev_err
, KERN_ERR
);
1878 define_dev_printk_level(dev_warn
, KERN_WARNING
);
1879 define_dev_printk_level(dev_notice
, KERN_NOTICE
);
1880 define_dev_printk_level(_dev_info
, KERN_INFO
);