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 int __init
sysfs_deprecated_setup(char *arg
)
41 return kstrtol(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
)) {
286 kuid_t uid
= GLOBAL_ROOT_UID
;
287 kgid_t gid
= GLOBAL_ROOT_GID
;
289 add_uevent_var(env
, "MAJOR=%u", MAJOR(dev
->devt
));
290 add_uevent_var(env
, "MINOR=%u", MINOR(dev
->devt
));
291 name
= device_get_devnode(dev
, &mode
, &uid
, &gid
, &tmp
);
293 add_uevent_var(env
, "DEVNAME=%s", name
);
295 add_uevent_var(env
, "DEVMODE=%#o", mode
& 0777);
296 if (!uid_eq(uid
, GLOBAL_ROOT_UID
))
297 add_uevent_var(env
, "DEVUID=%u", from_kuid(&init_user_ns
, uid
));
298 if (!gid_eq(gid
, GLOBAL_ROOT_GID
))
299 add_uevent_var(env
, "DEVGID=%u", from_kgid(&init_user_ns
, gid
));
304 if (dev
->type
&& dev
->type
->name
)
305 add_uevent_var(env
, "DEVTYPE=%s", dev
->type
->name
);
308 add_uevent_var(env
, "DRIVER=%s", dev
->driver
->name
);
310 /* Add common DT information about the device */
311 of_device_uevent(dev
, env
);
313 /* have the bus specific function add its stuff */
314 if (dev
->bus
&& dev
->bus
->uevent
) {
315 retval
= dev
->bus
->uevent(dev
, env
);
317 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
318 dev_name(dev
), __func__
, retval
);
321 /* have the class specific function add its stuff */
322 if (dev
->class && dev
->class->dev_uevent
) {
323 retval
= dev
->class->dev_uevent(dev
, env
);
325 pr_debug("device: '%s': %s: class uevent() "
326 "returned %d\n", dev_name(dev
),
330 /* have the device type specific function add its stuff */
331 if (dev
->type
&& dev
->type
->uevent
) {
332 retval
= dev
->type
->uevent(dev
, env
);
334 pr_debug("device: '%s': %s: dev_type uevent() "
335 "returned %d\n", dev_name(dev
),
342 static const struct kset_uevent_ops device_uevent_ops
= {
343 .filter
= dev_uevent_filter
,
344 .name
= dev_uevent_name
,
345 .uevent
= dev_uevent
,
348 static ssize_t
uevent_show(struct device
*dev
, struct device_attribute
*attr
,
351 struct kobject
*top_kobj
;
353 struct kobj_uevent_env
*env
= NULL
;
358 /* search the kset, the device belongs to */
359 top_kobj
= &dev
->kobj
;
360 while (!top_kobj
->kset
&& top_kobj
->parent
)
361 top_kobj
= top_kobj
->parent
;
365 kset
= top_kobj
->kset
;
366 if (!kset
->uevent_ops
|| !kset
->uevent_ops
->uevent
)
370 if (kset
->uevent_ops
&& kset
->uevent_ops
->filter
)
371 if (!kset
->uevent_ops
->filter(kset
, &dev
->kobj
))
374 env
= kzalloc(sizeof(struct kobj_uevent_env
), GFP_KERNEL
);
378 /* let the kset specific function add its keys */
379 retval
= kset
->uevent_ops
->uevent(kset
, &dev
->kobj
, env
);
383 /* copy keys to file */
384 for (i
= 0; i
< env
->envp_idx
; i
++)
385 count
+= sprintf(&buf
[count
], "%s\n", env
->envp
[i
]);
391 static ssize_t
uevent_store(struct device
*dev
, struct device_attribute
*attr
,
392 const char *buf
, size_t count
)
394 enum kobject_action action
;
396 if (kobject_action_type(buf
, count
, &action
) == 0)
397 kobject_uevent(&dev
->kobj
, action
);
399 dev_err(dev
, "uevent: unknown action-string\n");
402 static DEVICE_ATTR_RW(uevent
);
404 static ssize_t
online_show(struct device
*dev
, struct device_attribute
*attr
,
409 lock_device_hotplug();
411 unlock_device_hotplug();
412 return sprintf(buf
, "%u\n", val
);
415 static ssize_t
online_store(struct device
*dev
, struct device_attribute
*attr
,
416 const char *buf
, size_t count
)
421 ret
= strtobool(buf
, &val
);
425 lock_device_hotplug();
426 ret
= val
? device_online(dev
) : device_offline(dev
);
427 unlock_device_hotplug();
428 return ret
< 0 ? ret
: count
;
430 static DEVICE_ATTR_RW(online
);
432 static int device_add_attributes(struct device
*dev
,
433 struct device_attribute
*attrs
)
439 for (i
= 0; attrs
[i
].attr
.name
; i
++) {
440 error
= device_create_file(dev
, &attrs
[i
]);
446 device_remove_file(dev
, &attrs
[i
]);
451 static void device_remove_attributes(struct device
*dev
,
452 struct device_attribute
*attrs
)
457 for (i
= 0; attrs
[i
].attr
.name
; i
++)
458 device_remove_file(dev
, &attrs
[i
]);
461 static int device_add_bin_attributes(struct device
*dev
,
462 struct bin_attribute
*attrs
)
468 for (i
= 0; attrs
[i
].attr
.name
; i
++) {
469 error
= device_create_bin_file(dev
, &attrs
[i
]);
475 device_remove_bin_file(dev
, &attrs
[i
]);
480 static void device_remove_bin_attributes(struct device
*dev
,
481 struct bin_attribute
*attrs
)
486 for (i
= 0; attrs
[i
].attr
.name
; i
++)
487 device_remove_bin_file(dev
, &attrs
[i
]);
490 int device_add_groups(struct device
*dev
, const struct attribute_group
**groups
)
492 return sysfs_create_groups(&dev
->kobj
, groups
);
495 void device_remove_groups(struct device
*dev
,
496 const struct attribute_group
**groups
)
498 sysfs_remove_groups(&dev
->kobj
, groups
);
501 static int device_add_attrs(struct device
*dev
)
503 struct class *class = dev
->class;
504 const struct device_type
*type
= dev
->type
;
508 error
= device_add_groups(dev
, class->dev_groups
);
511 error
= device_add_attributes(dev
, class->dev_attrs
);
513 goto err_remove_class_groups
;
514 error
= device_add_bin_attributes(dev
, class->dev_bin_attrs
);
516 goto err_remove_class_attrs
;
520 error
= device_add_groups(dev
, type
->groups
);
522 goto err_remove_class_bin_attrs
;
525 error
= device_add_groups(dev
, dev
->groups
);
527 goto err_remove_type_groups
;
529 if (device_supports_offline(dev
) && !dev
->offline_disabled
) {
530 error
= device_create_file(dev
, &dev_attr_online
);
532 goto err_remove_type_groups
;
537 err_remove_type_groups
:
539 device_remove_groups(dev
, type
->groups
);
540 err_remove_class_bin_attrs
:
542 device_remove_bin_attributes(dev
, class->dev_bin_attrs
);
543 err_remove_class_attrs
:
545 device_remove_attributes(dev
, class->dev_attrs
);
546 err_remove_class_groups
:
548 device_remove_groups(dev
, class->dev_groups
);
553 static void device_remove_attrs(struct device
*dev
)
555 struct class *class = dev
->class;
556 const struct device_type
*type
= dev
->type
;
558 device_remove_file(dev
, &dev_attr_online
);
559 device_remove_groups(dev
, dev
->groups
);
562 device_remove_groups(dev
, type
->groups
);
565 device_remove_attributes(dev
, class->dev_attrs
);
566 device_remove_bin_attributes(dev
, class->dev_bin_attrs
);
567 device_remove_groups(dev
, class->dev_groups
);
571 static ssize_t
dev_show(struct device
*dev
, struct device_attribute
*attr
,
574 return print_dev_t(buf
, dev
->devt
);
576 static DEVICE_ATTR_RO(dev
);
579 struct kset
*devices_kset
;
582 * device_create_file - create sysfs attribute file for device.
584 * @attr: device attribute descriptor.
586 int device_create_file(struct device
*dev
,
587 const struct device_attribute
*attr
)
592 WARN(((attr
->attr
.mode
& S_IWUGO
) && !attr
->store
),
593 "Attribute %s: write permission without 'store'\n",
595 WARN(((attr
->attr
.mode
& S_IRUGO
) && !attr
->show
),
596 "Attribute %s: read permission without 'show'\n",
598 error
= sysfs_create_file(&dev
->kobj
, &attr
->attr
);
603 EXPORT_SYMBOL_GPL(device_create_file
);
606 * device_remove_file - remove sysfs attribute file.
608 * @attr: device attribute descriptor.
610 void device_remove_file(struct device
*dev
,
611 const struct device_attribute
*attr
)
614 sysfs_remove_file(&dev
->kobj
, &attr
->attr
);
616 EXPORT_SYMBOL_GPL(device_remove_file
);
619 * device_create_bin_file - create sysfs binary attribute file for device.
621 * @attr: device binary attribute descriptor.
623 int device_create_bin_file(struct device
*dev
,
624 const struct bin_attribute
*attr
)
628 error
= sysfs_create_bin_file(&dev
->kobj
, attr
);
631 EXPORT_SYMBOL_GPL(device_create_bin_file
);
634 * device_remove_bin_file - remove sysfs binary attribute file
636 * @attr: device binary attribute descriptor.
638 void device_remove_bin_file(struct device
*dev
,
639 const struct bin_attribute
*attr
)
642 sysfs_remove_bin_file(&dev
->kobj
, attr
);
644 EXPORT_SYMBOL_GPL(device_remove_bin_file
);
647 * device_schedule_callback_owner - helper to schedule a callback for a device
649 * @func: callback function to invoke later.
650 * @owner: module owning the callback routine
652 * Attribute methods must not unregister themselves or their parent device
653 * (which would amount to the same thing). Attempts to do so will deadlock,
654 * since unregistration is mutually exclusive with driver callbacks.
656 * Instead methods can call this routine, which will attempt to allocate
657 * and schedule a workqueue request to call back @func with @dev as its
658 * argument in the workqueue's process context. @dev will be pinned until
661 * This routine is usually called via the inline device_schedule_callback(),
662 * which automatically sets @owner to THIS_MODULE.
664 * Returns 0 if the request was submitted, -ENOMEM if storage could not
665 * be allocated, -ENODEV if a reference to @owner isn't available.
667 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
668 * underlying sysfs routine (since it is intended for use by attribute
669 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
671 int device_schedule_callback_owner(struct device
*dev
,
672 void (*func
)(struct device
*), struct module
*owner
)
674 return sysfs_schedule_callback(&dev
->kobj
,
675 (void (*)(void *)) func
, dev
, owner
);
677 EXPORT_SYMBOL_GPL(device_schedule_callback_owner
);
679 static void klist_children_get(struct klist_node
*n
)
681 struct device_private
*p
= to_device_private_parent(n
);
682 struct device
*dev
= p
->device
;
687 static void klist_children_put(struct klist_node
*n
)
689 struct device_private
*p
= to_device_private_parent(n
);
690 struct device
*dev
= p
->device
;
696 * device_initialize - init device structure.
699 * This prepares the device for use by other layers by initializing
701 * It is the first half of device_register(), if called by
702 * that function, though it can also be called separately, so one
703 * may use @dev's fields. In particular, get_device()/put_device()
704 * may be used for reference counting of @dev after calling this
707 * All fields in @dev must be initialized by the caller to 0, except
708 * for those explicitly set to some other value. The simplest
709 * approach is to use kzalloc() to allocate the structure containing
712 * NOTE: Use put_device() to give up your reference instead of freeing
713 * @dev directly once you have called this function.
715 void device_initialize(struct device
*dev
)
717 dev
->kobj
.kset
= devices_kset
;
718 kobject_init(&dev
->kobj
, &device_ktype
);
719 INIT_LIST_HEAD(&dev
->dma_pools
);
720 mutex_init(&dev
->mutex
);
721 lockdep_set_novalidate_class(&dev
->mutex
);
722 spin_lock_init(&dev
->devres_lock
);
723 INIT_LIST_HEAD(&dev
->devres_head
);
725 set_dev_node(dev
, -1);
727 EXPORT_SYMBOL_GPL(device_initialize
);
729 struct kobject
*virtual_device_parent(struct device
*dev
)
731 static struct kobject
*virtual_dir
= NULL
;
734 virtual_dir
= kobject_create_and_add("virtual",
735 &devices_kset
->kobj
);
745 #define to_class_dir(obj) container_of(obj, struct class_dir, kobj)
747 static void class_dir_release(struct kobject
*kobj
)
749 struct class_dir
*dir
= to_class_dir(kobj
);
754 struct kobj_ns_type_operations
*class_dir_child_ns_type(struct kobject
*kobj
)
756 struct class_dir
*dir
= to_class_dir(kobj
);
757 return dir
->class->ns_type
;
760 static struct kobj_type class_dir_ktype
= {
761 .release
= class_dir_release
,
762 .sysfs_ops
= &kobj_sysfs_ops
,
763 .child_ns_type
= class_dir_child_ns_type
766 static struct kobject
*
767 class_dir_create_and_add(struct class *class, struct kobject
*parent_kobj
)
769 struct class_dir
*dir
;
772 dir
= kzalloc(sizeof(*dir
), GFP_KERNEL
);
777 kobject_init(&dir
->kobj
, &class_dir_ktype
);
779 dir
->kobj
.kset
= &class->p
->glue_dirs
;
781 retval
= kobject_add(&dir
->kobj
, parent_kobj
, "%s", class->name
);
783 kobject_put(&dir
->kobj
);
790 static struct kobject
*get_device_parent(struct device
*dev
,
791 struct device
*parent
)
794 static DEFINE_MUTEX(gdp_mutex
);
795 struct kobject
*kobj
= NULL
;
796 struct kobject
*parent_kobj
;
800 /* block disks show up in /sys/block */
801 if (sysfs_deprecated
&& dev
->class == &block_class
) {
802 if (parent
&& parent
->class == &block_class
)
803 return &parent
->kobj
;
804 return &block_class
.p
->subsys
.kobj
;
809 * If we have no parent, we live in "virtual".
810 * Class-devices with a non class-device as parent, live
811 * in a "glue" directory to prevent namespace collisions.
814 parent_kobj
= virtual_device_parent(dev
);
815 else if (parent
->class && !dev
->class->ns_type
)
816 return &parent
->kobj
;
818 parent_kobj
= &parent
->kobj
;
820 mutex_lock(&gdp_mutex
);
822 /* find our class-directory at the parent and reference it */
823 spin_lock(&dev
->class->p
->glue_dirs
.list_lock
);
824 list_for_each_entry(k
, &dev
->class->p
->glue_dirs
.list
, entry
)
825 if (k
->parent
== parent_kobj
) {
826 kobj
= kobject_get(k
);
829 spin_unlock(&dev
->class->p
->glue_dirs
.list_lock
);
831 mutex_unlock(&gdp_mutex
);
835 /* or create a new class-directory at the parent device */
836 k
= class_dir_create_and_add(dev
->class, parent_kobj
);
837 /* do not emit an uevent for this simple "glue" directory */
838 mutex_unlock(&gdp_mutex
);
842 /* subsystems can specify a default root directory for their devices */
843 if (!parent
&& dev
->bus
&& dev
->bus
->dev_root
)
844 return &dev
->bus
->dev_root
->kobj
;
847 return &parent
->kobj
;
851 static void cleanup_glue_dir(struct device
*dev
, struct kobject
*glue_dir
)
853 /* see if we live in a "glue" directory */
854 if (!glue_dir
|| !dev
->class ||
855 glue_dir
->kset
!= &dev
->class->p
->glue_dirs
)
858 kobject_put(glue_dir
);
861 static void cleanup_device_parent(struct device
*dev
)
863 cleanup_glue_dir(dev
, dev
->kobj
.parent
);
866 static int device_add_class_symlinks(struct device
*dev
)
873 error
= sysfs_create_link(&dev
->kobj
,
874 &dev
->class->p
->subsys
.kobj
,
879 if (dev
->parent
&& device_is_not_partition(dev
)) {
880 error
= sysfs_create_link(&dev
->kobj
, &dev
->parent
->kobj
,
887 /* /sys/block has directories and does not need symlinks */
888 if (sysfs_deprecated
&& dev
->class == &block_class
)
892 /* link in the class directory pointing to the device */
893 error
= sysfs_create_link(&dev
->class->p
->subsys
.kobj
,
894 &dev
->kobj
, dev_name(dev
));
901 sysfs_remove_link(&dev
->kobj
, "device");
904 sysfs_remove_link(&dev
->kobj
, "subsystem");
909 static void device_remove_class_symlinks(struct device
*dev
)
914 if (dev
->parent
&& device_is_not_partition(dev
))
915 sysfs_remove_link(&dev
->kobj
, "device");
916 sysfs_remove_link(&dev
->kobj
, "subsystem");
918 if (sysfs_deprecated
&& dev
->class == &block_class
)
921 sysfs_delete_link(&dev
->class->p
->subsys
.kobj
, &dev
->kobj
, dev_name(dev
));
925 * dev_set_name - set a device name
927 * @fmt: format string for the device's name
929 int dev_set_name(struct device
*dev
, const char *fmt
, ...)
934 va_start(vargs
, fmt
);
935 err
= kobject_set_name_vargs(&dev
->kobj
, fmt
, vargs
);
939 EXPORT_SYMBOL_GPL(dev_set_name
);
942 * device_to_dev_kobj - select a /sys/dev/ directory for the device
945 * By default we select char/ for new entries. Setting class->dev_obj
946 * to NULL prevents an entry from being created. class->dev_kobj must
947 * be set (or cleared) before any devices are registered to the class
948 * otherwise device_create_sys_dev_entry() and
949 * device_remove_sys_dev_entry() will disagree about the presence of
952 static struct kobject
*device_to_dev_kobj(struct device
*dev
)
954 struct kobject
*kobj
;
957 kobj
= dev
->class->dev_kobj
;
959 kobj
= sysfs_dev_char_kobj
;
964 static int device_create_sys_dev_entry(struct device
*dev
)
966 struct kobject
*kobj
= device_to_dev_kobj(dev
);
971 format_dev_t(devt_str
, dev
->devt
);
972 error
= sysfs_create_link(kobj
, &dev
->kobj
, devt_str
);
978 static void device_remove_sys_dev_entry(struct device
*dev
)
980 struct kobject
*kobj
= device_to_dev_kobj(dev
);
984 format_dev_t(devt_str
, dev
->devt
);
985 sysfs_remove_link(kobj
, devt_str
);
989 int device_private_init(struct device
*dev
)
991 dev
->p
= kzalloc(sizeof(*dev
->p
), GFP_KERNEL
);
994 dev
->p
->device
= dev
;
995 klist_init(&dev
->p
->klist_children
, klist_children_get
,
997 INIT_LIST_HEAD(&dev
->p
->deferred_probe
);
1002 * device_add - add device to device hierarchy.
1005 * This is part 2 of device_register(), though may be called
1006 * separately _iff_ device_initialize() has been called separately.
1008 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
1009 * to the global and sibling lists for the device, then
1010 * adds it to the other relevant subsystems of the driver model.
1012 * Do not call this routine or device_register() more than once for
1013 * any device structure. The driver model core is not designed to work
1014 * with devices that get unregistered and then spring back to life.
1015 * (Among other things, it's very hard to guarantee that all references
1016 * to the previous incarnation of @dev have been dropped.) Allocate
1017 * and register a fresh new struct device instead.
1019 * NOTE: _Never_ directly free @dev after calling this function, even
1020 * if it returned an error! Always use put_device() to give up your
1021 * reference instead.
1023 int device_add(struct device
*dev
)
1025 struct device
*parent
= NULL
;
1026 struct kobject
*kobj
;
1027 struct class_interface
*class_intf
;
1028 int error
= -EINVAL
;
1030 dev
= get_device(dev
);
1035 error
= device_private_init(dev
);
1041 * for statically allocated devices, which should all be converted
1042 * some day, we need to initialize the name. We prevent reading back
1043 * the name, and force the use of dev_name()
1045 if (dev
->init_name
) {
1046 dev_set_name(dev
, "%s", dev
->init_name
);
1047 dev
->init_name
= NULL
;
1050 /* subsystems can specify simple device enumeration */
1051 if (!dev_name(dev
) && dev
->bus
&& dev
->bus
->dev_name
)
1052 dev_set_name(dev
, "%s%u", dev
->bus
->dev_name
, dev
->id
);
1054 if (!dev_name(dev
)) {
1059 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
1061 parent
= get_device(dev
->parent
);
1062 kobj
= get_device_parent(dev
, parent
);
1064 dev
->kobj
.parent
= kobj
;
1066 /* use parent numa_node */
1068 set_dev_node(dev
, dev_to_node(parent
));
1070 /* first, register with generic layer. */
1071 /* we require the name to be set before, and pass NULL */
1072 error
= kobject_add(&dev
->kobj
, dev
->kobj
.parent
, NULL
);
1076 /* notify platform of device entry */
1077 if (platform_notify
)
1078 platform_notify(dev
);
1080 error
= device_create_file(dev
, &dev_attr_uevent
);
1084 if (MAJOR(dev
->devt
)) {
1085 error
= device_create_file(dev
, &dev_attr_dev
);
1087 goto ueventattrError
;
1089 error
= device_create_sys_dev_entry(dev
);
1093 devtmpfs_create_node(dev
);
1096 error
= device_add_class_symlinks(dev
);
1099 error
= device_add_attrs(dev
);
1102 error
= bus_add_device(dev
);
1105 error
= dpm_sysfs_add(dev
);
1110 /* Notify clients of device addition. This call must come
1111 * after dpm_sysfs_add() and before kobject_uevent().
1114 blocking_notifier_call_chain(&dev
->bus
->p
->bus_notifier
,
1115 BUS_NOTIFY_ADD_DEVICE
, dev
);
1117 kobject_uevent(&dev
->kobj
, KOBJ_ADD
);
1118 bus_probe_device(dev
);
1120 klist_add_tail(&dev
->p
->knode_parent
,
1121 &parent
->p
->klist_children
);
1124 mutex_lock(&dev
->class->p
->mutex
);
1125 /* tie the class to the device */
1126 klist_add_tail(&dev
->knode_class
,
1127 &dev
->class->p
->klist_devices
);
1129 /* notify any interfaces that the device is here */
1130 list_for_each_entry(class_intf
,
1131 &dev
->class->p
->interfaces
, node
)
1132 if (class_intf
->add_dev
)
1133 class_intf
->add_dev(dev
, class_intf
);
1134 mutex_unlock(&dev
->class->p
->mutex
);
1140 bus_remove_device(dev
);
1142 device_remove_attrs(dev
);
1144 device_remove_class_symlinks(dev
);
1146 if (MAJOR(dev
->devt
))
1147 devtmpfs_delete_node(dev
);
1148 if (MAJOR(dev
->devt
))
1149 device_remove_sys_dev_entry(dev
);
1151 if (MAJOR(dev
->devt
))
1152 device_remove_file(dev
, &dev_attr_dev
);
1154 device_remove_file(dev
, &dev_attr_uevent
);
1156 kobject_uevent(&dev
->kobj
, KOBJ_REMOVE
);
1157 kobject_del(&dev
->kobj
);
1159 cleanup_device_parent(dev
);
1167 EXPORT_SYMBOL_GPL(device_add
);
1170 * device_register - register a device with the system.
1171 * @dev: pointer to the device structure
1173 * This happens in two clean steps - initialize the device
1174 * and add it to the system. The two steps can be called
1175 * separately, but this is the easiest and most common.
1176 * I.e. you should only call the two helpers separately if
1177 * have a clearly defined need to use and refcount the device
1178 * before it is added to the hierarchy.
1180 * For more information, see the kerneldoc for device_initialize()
1183 * NOTE: _Never_ directly free @dev after calling this function, even
1184 * if it returned an error! Always use put_device() to give up the
1185 * reference initialized in this function instead.
1187 int device_register(struct device
*dev
)
1189 device_initialize(dev
);
1190 return device_add(dev
);
1192 EXPORT_SYMBOL_GPL(device_register
);
1195 * get_device - increment reference count for device.
1198 * This simply forwards the call to kobject_get(), though
1199 * we do take care to provide for the case that we get a NULL
1200 * pointer passed in.
1202 struct device
*get_device(struct device
*dev
)
1204 return dev
? kobj_to_dev(kobject_get(&dev
->kobj
)) : NULL
;
1206 EXPORT_SYMBOL_GPL(get_device
);
1209 * put_device - decrement reference count.
1210 * @dev: device in question.
1212 void put_device(struct device
*dev
)
1214 /* might_sleep(); */
1216 kobject_put(&dev
->kobj
);
1218 EXPORT_SYMBOL_GPL(put_device
);
1221 * device_del - delete device from system.
1224 * This is the first part of the device unregistration
1225 * sequence. This removes the device from the lists we control
1226 * from here, has it removed from the other driver model
1227 * subsystems it was added to in device_add(), and removes it
1228 * from the kobject hierarchy.
1230 * NOTE: this should be called manually _iff_ device_add() was
1231 * also called manually.
1233 void device_del(struct device
*dev
)
1235 struct device
*parent
= dev
->parent
;
1236 struct class_interface
*class_intf
;
1238 /* Notify clients of device removal. This call must come
1239 * before dpm_sysfs_remove().
1242 blocking_notifier_call_chain(&dev
->bus
->p
->bus_notifier
,
1243 BUS_NOTIFY_DEL_DEVICE
, dev
);
1244 dpm_sysfs_remove(dev
);
1246 klist_del(&dev
->p
->knode_parent
);
1247 if (MAJOR(dev
->devt
)) {
1248 devtmpfs_delete_node(dev
);
1249 device_remove_sys_dev_entry(dev
);
1250 device_remove_file(dev
, &dev_attr_dev
);
1253 device_remove_class_symlinks(dev
);
1255 mutex_lock(&dev
->class->p
->mutex
);
1256 /* notify any interfaces that the device is now gone */
1257 list_for_each_entry(class_intf
,
1258 &dev
->class->p
->interfaces
, node
)
1259 if (class_intf
->remove_dev
)
1260 class_intf
->remove_dev(dev
, class_intf
);
1261 /* remove the device from the class list */
1262 klist_del(&dev
->knode_class
);
1263 mutex_unlock(&dev
->class->p
->mutex
);
1265 device_remove_file(dev
, &dev_attr_uevent
);
1266 device_remove_attrs(dev
);
1267 bus_remove_device(dev
);
1268 device_pm_remove(dev
);
1269 driver_deferred_probe_del(dev
);
1271 /* Notify the platform of the removal, in case they
1272 * need to do anything...
1274 if (platform_notify_remove
)
1275 platform_notify_remove(dev
);
1276 kobject_uevent(&dev
->kobj
, KOBJ_REMOVE
);
1277 cleanup_device_parent(dev
);
1278 kobject_del(&dev
->kobj
);
1281 EXPORT_SYMBOL_GPL(device_del
);
1284 * device_unregister - unregister device from system.
1285 * @dev: device going away.
1287 * We do this in two parts, like we do device_register(). First,
1288 * we remove it from all the subsystems with device_del(), then
1289 * we decrement the reference count via put_device(). If that
1290 * is the final reference count, the device will be cleaned up
1291 * via device_release() above. Otherwise, the structure will
1292 * stick around until the final reference to the device is dropped.
1294 void device_unregister(struct device
*dev
)
1296 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
1300 EXPORT_SYMBOL_GPL(device_unregister
);
1302 static struct device
*next_device(struct klist_iter
*i
)
1304 struct klist_node
*n
= klist_next(i
);
1305 struct device
*dev
= NULL
;
1306 struct device_private
*p
;
1309 p
= to_device_private_parent(n
);
1316 * device_get_devnode - path of device node file
1318 * @mode: returned file access mode
1319 * @uid: returned file owner
1320 * @gid: returned file group
1321 * @tmp: possibly allocated string
1323 * Return the relative path of a possible device node.
1324 * Non-default names may need to allocate a memory to compose
1325 * a name. This memory is returned in tmp and needs to be
1326 * freed by the caller.
1328 const char *device_get_devnode(struct device
*dev
,
1329 umode_t
*mode
, kuid_t
*uid
, kgid_t
*gid
,
1336 /* the device type may provide a specific name */
1337 if (dev
->type
&& dev
->type
->devnode
)
1338 *tmp
= dev
->type
->devnode(dev
, mode
, uid
, gid
);
1342 /* the class may provide a specific name */
1343 if (dev
->class && dev
->class->devnode
)
1344 *tmp
= dev
->class->devnode(dev
, mode
);
1348 /* return name without allocation, tmp == NULL */
1349 if (strchr(dev_name(dev
), '!') == NULL
)
1350 return dev_name(dev
);
1352 /* replace '!' in the name with '/' */
1353 *tmp
= kstrdup(dev_name(dev
), GFP_KERNEL
);
1356 while ((s
= strchr(*tmp
, '!')))
1362 * device_for_each_child - device child iterator.
1363 * @parent: parent struct device.
1364 * @fn: function to be called for each device.
1365 * @data: data for the callback.
1367 * Iterate over @parent's child devices, and call @fn for each,
1370 * We check the return of @fn each time. If it returns anything
1371 * other than 0, we break out and return that value.
1373 int device_for_each_child(struct device
*parent
, void *data
,
1374 int (*fn
)(struct device
*dev
, void *data
))
1376 struct klist_iter i
;
1377 struct device
*child
;
1383 klist_iter_init(&parent
->p
->klist_children
, &i
);
1384 while ((child
= next_device(&i
)) && !error
)
1385 error
= fn(child
, data
);
1386 klist_iter_exit(&i
);
1389 EXPORT_SYMBOL_GPL(device_for_each_child
);
1392 * device_find_child - device iterator for locating a particular device.
1393 * @parent: parent struct device
1394 * @match: Callback function to check device
1395 * @data: Data to pass to match function
1397 * This is similar to the device_for_each_child() function above, but it
1398 * returns a reference to a device that is 'found' for later use, as
1399 * determined by the @match callback.
1401 * The callback should return 0 if the device doesn't match and non-zero
1402 * if it does. If the callback returns non-zero and a reference to the
1403 * current device can be obtained, this function will return to the caller
1404 * and not iterate over any more devices.
1406 * NOTE: you will need to drop the reference with put_device() after use.
1408 struct device
*device_find_child(struct device
*parent
, void *data
,
1409 int (*match
)(struct device
*dev
, void *data
))
1411 struct klist_iter i
;
1412 struct device
*child
;
1417 klist_iter_init(&parent
->p
->klist_children
, &i
);
1418 while ((child
= next_device(&i
)))
1419 if (match(child
, data
) && get_device(child
))
1421 klist_iter_exit(&i
);
1424 EXPORT_SYMBOL_GPL(device_find_child
);
1426 int __init
devices_init(void)
1428 devices_kset
= kset_create_and_add("devices", &device_uevent_ops
, NULL
);
1431 dev_kobj
= kobject_create_and_add("dev", NULL
);
1434 sysfs_dev_block_kobj
= kobject_create_and_add("block", dev_kobj
);
1435 if (!sysfs_dev_block_kobj
)
1436 goto block_kobj_err
;
1437 sysfs_dev_char_kobj
= kobject_create_and_add("char", dev_kobj
);
1438 if (!sysfs_dev_char_kobj
)
1444 kobject_put(sysfs_dev_block_kobj
);
1446 kobject_put(dev_kobj
);
1448 kset_unregister(devices_kset
);
1452 static DEFINE_MUTEX(device_hotplug_lock
);
1454 void lock_device_hotplug(void)
1456 mutex_lock(&device_hotplug_lock
);
1459 void unlock_device_hotplug(void)
1461 mutex_unlock(&device_hotplug_lock
);
1464 static int device_check_offline(struct device
*dev
, void *not_used
)
1468 ret
= device_for_each_child(dev
, NULL
, device_check_offline
);
1472 return device_supports_offline(dev
) && !dev
->offline
? -EBUSY
: 0;
1476 * device_offline - Prepare the device for hot-removal.
1477 * @dev: Device to be put offline.
1479 * Execute the device bus type's .offline() callback, if present, to prepare
1480 * the device for a subsequent hot-removal. If that succeeds, the device must
1481 * not be used until either it is removed or its bus type's .online() callback
1484 * Call under device_hotplug_lock.
1486 int device_offline(struct device
*dev
)
1490 if (dev
->offline_disabled
)
1493 ret
= device_for_each_child(dev
, NULL
, device_check_offline
);
1498 if (device_supports_offline(dev
)) {
1502 ret
= dev
->bus
->offline(dev
);
1504 kobject_uevent(&dev
->kobj
, KOBJ_OFFLINE
);
1505 dev
->offline
= true;
1515 * device_online - Put the device back online after successful device_offline().
1516 * @dev: Device to be put back online.
1518 * If device_offline() has been successfully executed for @dev, but the device
1519 * has not been removed subsequently, execute its bus type's .online() callback
1520 * to indicate that the device can be used again.
1522 * Call under device_hotplug_lock.
1524 int device_online(struct device
*dev
)
1529 if (device_supports_offline(dev
)) {
1531 ret
= dev
->bus
->online(dev
);
1533 kobject_uevent(&dev
->kobj
, KOBJ_ONLINE
);
1534 dev
->offline
= false;
1545 struct root_device
{
1547 struct module
*owner
;
1550 static inline struct root_device
*to_root_device(struct device
*d
)
1552 return container_of(d
, struct root_device
, dev
);
1555 static void root_device_release(struct device
*dev
)
1557 kfree(to_root_device(dev
));
1561 * __root_device_register - allocate and register a root device
1562 * @name: root device name
1563 * @owner: owner module of the root device, usually THIS_MODULE
1565 * This function allocates a root device and registers it
1566 * using device_register(). In order to free the returned
1567 * device, use root_device_unregister().
1569 * Root devices are dummy devices which allow other devices
1570 * to be grouped under /sys/devices. Use this function to
1571 * allocate a root device and then use it as the parent of
1572 * any device which should appear under /sys/devices/{name}
1574 * The /sys/devices/{name} directory will also contain a
1575 * 'module' symlink which points to the @owner directory
1578 * Returns &struct device pointer on success, or ERR_PTR() on error.
1580 * Note: You probably want to use root_device_register().
1582 struct device
*__root_device_register(const char *name
, struct module
*owner
)
1584 struct root_device
*root
;
1587 root
= kzalloc(sizeof(struct root_device
), GFP_KERNEL
);
1589 return ERR_PTR(err
);
1591 err
= dev_set_name(&root
->dev
, "%s", name
);
1594 return ERR_PTR(err
);
1597 root
->dev
.release
= root_device_release
;
1599 err
= device_register(&root
->dev
);
1601 put_device(&root
->dev
);
1602 return ERR_PTR(err
);
1605 #ifdef CONFIG_MODULES /* gotta find a "cleaner" way to do this */
1607 struct module_kobject
*mk
= &owner
->mkobj
;
1609 err
= sysfs_create_link(&root
->dev
.kobj
, &mk
->kobj
, "module");
1611 device_unregister(&root
->dev
);
1612 return ERR_PTR(err
);
1614 root
->owner
= owner
;
1620 EXPORT_SYMBOL_GPL(__root_device_register
);
1623 * root_device_unregister - unregister and free a root device
1624 * @dev: device going away
1626 * This function unregisters and cleans up a device that was created by
1627 * root_device_register().
1629 void root_device_unregister(struct device
*dev
)
1631 struct root_device
*root
= to_root_device(dev
);
1634 sysfs_remove_link(&root
->dev
.kobj
, "module");
1636 device_unregister(dev
);
1638 EXPORT_SYMBOL_GPL(root_device_unregister
);
1641 static void device_create_release(struct device
*dev
)
1643 pr_debug("device: '%s': %s\n", dev_name(dev
), __func__
);
1647 static struct device
*
1648 device_create_groups_vargs(struct class *class, struct device
*parent
,
1649 dev_t devt
, void *drvdata
,
1650 const struct attribute_group
**groups
,
1651 const char *fmt
, va_list args
)
1653 struct device
*dev
= NULL
;
1654 int retval
= -ENODEV
;
1656 if (class == NULL
|| IS_ERR(class))
1659 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
1667 dev
->parent
= parent
;
1668 dev
->groups
= groups
;
1669 dev
->release
= device_create_release
;
1670 dev_set_drvdata(dev
, drvdata
);
1672 retval
= kobject_set_name_vargs(&dev
->kobj
, fmt
, args
);
1676 retval
= device_register(dev
);
1684 return ERR_PTR(retval
);
1688 * device_create_vargs - creates a device and registers it with sysfs
1689 * @class: pointer to the struct class that this device should be registered to
1690 * @parent: pointer to the parent struct device of this new device, if any
1691 * @devt: the dev_t for the char device to be added
1692 * @drvdata: the data to be added to the device for callbacks
1693 * @fmt: string for the device's name
1694 * @args: va_list for the device's name
1696 * This function can be used by char device classes. A struct device
1697 * will be created in sysfs, registered to the specified class.
1699 * A "dev" file will be created, showing the dev_t for the device, if
1700 * the dev_t is not 0,0.
1701 * If a pointer to a parent struct device is passed in, the newly created
1702 * struct device will be a child of that device in sysfs.
1703 * The pointer to the struct device will be returned from the call.
1704 * Any further sysfs files that might be required can be created using this
1707 * Returns &struct device pointer on success, or ERR_PTR() on error.
1709 * Note: the struct class passed to this function must have previously
1710 * been created with a call to class_create().
1712 struct device
*device_create_vargs(struct class *class, struct device
*parent
,
1713 dev_t devt
, void *drvdata
, const char *fmt
,
1716 return device_create_groups_vargs(class, parent
, devt
, drvdata
, NULL
,
1719 EXPORT_SYMBOL_GPL(device_create_vargs
);
1722 * device_create - creates a device and registers it with sysfs
1723 * @class: pointer to the struct class that this device should be registered to
1724 * @parent: pointer to the parent struct device of this new device, if any
1725 * @devt: the dev_t for the char device to be added
1726 * @drvdata: the data to be added to the device for callbacks
1727 * @fmt: string for the device's name
1729 * This function can be used by char device classes. A struct device
1730 * will be created in sysfs, registered to the specified class.
1732 * A "dev" file will be created, showing the dev_t for the device, if
1733 * the dev_t is not 0,0.
1734 * If a pointer to a parent struct device is passed in, the newly created
1735 * struct device will be a child of that device in sysfs.
1736 * The pointer to the struct device will be returned from the call.
1737 * Any further sysfs files that might be required can be created using this
1740 * Returns &struct device pointer on success, or ERR_PTR() on error.
1742 * Note: the struct class passed to this function must have previously
1743 * been created with a call to class_create().
1745 struct device
*device_create(struct class *class, struct device
*parent
,
1746 dev_t devt
, void *drvdata
, const char *fmt
, ...)
1751 va_start(vargs
, fmt
);
1752 dev
= device_create_vargs(class, parent
, devt
, drvdata
, fmt
, vargs
);
1756 EXPORT_SYMBOL_GPL(device_create
);
1759 * device_create_with_groups - creates a device and registers it with sysfs
1760 * @class: pointer to the struct class that this device should be registered to
1761 * @parent: pointer to the parent struct device of this new device, if any
1762 * @devt: the dev_t for the char device to be added
1763 * @drvdata: the data to be added to the device for callbacks
1764 * @groups: NULL-terminated list of attribute groups to be created
1765 * @fmt: string for the device's name
1767 * This function can be used by char device classes. A struct device
1768 * will be created in sysfs, registered to the specified class.
1769 * Additional attributes specified in the groups parameter will also
1770 * be created automatically.
1772 * A "dev" file will be created, showing the dev_t for the device, if
1773 * the dev_t is not 0,0.
1774 * If a pointer to a parent struct device is passed in, the newly created
1775 * struct device will be a child of that device in sysfs.
1776 * The pointer to the struct device will be returned from the call.
1777 * Any further sysfs files that might be required can be created using this
1780 * Returns &struct device pointer on success, or ERR_PTR() on error.
1782 * Note: the struct class passed to this function must have previously
1783 * been created with a call to class_create().
1785 struct device
*device_create_with_groups(struct class *class,
1786 struct device
*parent
, dev_t devt
,
1788 const struct attribute_group
**groups
,
1789 const char *fmt
, ...)
1794 va_start(vargs
, fmt
);
1795 dev
= device_create_groups_vargs(class, parent
, devt
, drvdata
, groups
,
1800 EXPORT_SYMBOL_GPL(device_create_with_groups
);
1802 static int __match_devt(struct device
*dev
, const void *data
)
1804 const dev_t
*devt
= data
;
1806 return dev
->devt
== *devt
;
1810 * device_destroy - removes a device that was created with device_create()
1811 * @class: pointer to the struct class that this device was registered with
1812 * @devt: the dev_t of the device that was previously registered
1814 * This call unregisters and cleans up a device that was created with a
1815 * call to device_create().
1817 void device_destroy(struct class *class, dev_t devt
)
1821 dev
= class_find_device(class, NULL
, &devt
, __match_devt
);
1824 device_unregister(dev
);
1827 EXPORT_SYMBOL_GPL(device_destroy
);
1830 * device_rename - renames a device
1831 * @dev: the pointer to the struct device to be renamed
1832 * @new_name: the new name of the device
1834 * It is the responsibility of the caller to provide mutual
1835 * exclusion between two different calls of device_rename
1836 * on the same device to ensure that new_name is valid and
1837 * won't conflict with other devices.
1839 * Note: Don't call this function. Currently, the networking layer calls this
1840 * function, but that will change. The following text from Kay Sievers offers
1843 * Renaming devices is racy at many levels, symlinks and other stuff are not
1844 * replaced atomically, and you get a "move" uevent, but it's not easy to
1845 * connect the event to the old and new device. Device nodes are not renamed at
1846 * all, there isn't even support for that in the kernel now.
1848 * In the meantime, during renaming, your target name might be taken by another
1849 * driver, creating conflicts. Or the old name is taken directly after you
1850 * renamed it -- then you get events for the same DEVPATH, before you even see
1851 * the "move" event. It's just a mess, and nothing new should ever rely on
1852 * kernel device renaming. Besides that, it's not even implemented now for
1853 * other things than (driver-core wise very simple) network devices.
1855 * We are currently about to change network renaming in udev to completely
1856 * disallow renaming of devices in the same namespace as the kernel uses,
1857 * because we can't solve the problems properly, that arise with swapping names
1858 * of multiple interfaces without races. Means, renaming of eth[0-9]* will only
1859 * be allowed to some other name than eth[0-9]*, for the aforementioned
1862 * Make up a "real" name in the driver before you register anything, or add
1863 * some other attributes for userspace to find the device, or use udev to add
1864 * symlinks -- but never rename kernel devices later, it's a complete mess. We
1865 * don't even want to get into that and try to implement the missing pieces in
1866 * the core. We really have other pieces to fix in the driver core mess. :)
1868 int device_rename(struct device
*dev
, const char *new_name
)
1870 char *old_device_name
= NULL
;
1873 dev
= get_device(dev
);
1877 pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev
),
1878 __func__
, new_name
);
1880 old_device_name
= kstrdup(dev_name(dev
), GFP_KERNEL
);
1881 if (!old_device_name
) {
1887 error
= sysfs_rename_link(&dev
->class->p
->subsys
.kobj
,
1888 &dev
->kobj
, old_device_name
, new_name
);
1893 error
= kobject_rename(&dev
->kobj
, new_name
);
1900 kfree(old_device_name
);
1904 EXPORT_SYMBOL_GPL(device_rename
);
1906 static int device_move_class_links(struct device
*dev
,
1907 struct device
*old_parent
,
1908 struct device
*new_parent
)
1913 sysfs_remove_link(&dev
->kobj
, "device");
1915 error
= sysfs_create_link(&dev
->kobj
, &new_parent
->kobj
,
1921 * device_move - moves a device to a new parent
1922 * @dev: the pointer to the struct device to be moved
1923 * @new_parent: the new parent of the device (can by NULL)
1924 * @dpm_order: how to reorder the dpm_list
1926 int device_move(struct device
*dev
, struct device
*new_parent
,
1927 enum dpm_order dpm_order
)
1930 struct device
*old_parent
;
1931 struct kobject
*new_parent_kobj
;
1933 dev
= get_device(dev
);
1938 new_parent
= get_device(new_parent
);
1939 new_parent_kobj
= get_device_parent(dev
, new_parent
);
1941 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev
),
1942 __func__
, new_parent
? dev_name(new_parent
) : "<NULL>");
1943 error
= kobject_move(&dev
->kobj
, new_parent_kobj
);
1945 cleanup_glue_dir(dev
, new_parent_kobj
);
1946 put_device(new_parent
);
1949 old_parent
= dev
->parent
;
1950 dev
->parent
= new_parent
;
1952 klist_remove(&dev
->p
->knode_parent
);
1954 klist_add_tail(&dev
->p
->knode_parent
,
1955 &new_parent
->p
->klist_children
);
1956 set_dev_node(dev
, dev_to_node(new_parent
));
1960 error
= device_move_class_links(dev
, old_parent
, new_parent
);
1962 /* We ignore errors on cleanup since we're hosed anyway... */
1963 device_move_class_links(dev
, new_parent
, old_parent
);
1964 if (!kobject_move(&dev
->kobj
, &old_parent
->kobj
)) {
1966 klist_remove(&dev
->p
->knode_parent
);
1967 dev
->parent
= old_parent
;
1969 klist_add_tail(&dev
->p
->knode_parent
,
1970 &old_parent
->p
->klist_children
);
1971 set_dev_node(dev
, dev_to_node(old_parent
));
1974 cleanup_glue_dir(dev
, new_parent_kobj
);
1975 put_device(new_parent
);
1979 switch (dpm_order
) {
1980 case DPM_ORDER_NONE
:
1982 case DPM_ORDER_DEV_AFTER_PARENT
:
1983 device_pm_move_after(dev
, new_parent
);
1985 case DPM_ORDER_PARENT_BEFORE_DEV
:
1986 device_pm_move_before(new_parent
, dev
);
1988 case DPM_ORDER_DEV_LAST
:
1989 device_pm_move_last(dev
);
1993 put_device(old_parent
);
1999 EXPORT_SYMBOL_GPL(device_move
);
2002 * device_shutdown - call ->shutdown() on each device to shutdown.
2004 void device_shutdown(void)
2008 spin_lock(&devices_kset
->list_lock
);
2010 * Walk the devices list backward, shutting down each in turn.
2011 * Beware that device unplug events may also start pulling
2012 * devices offline, even as the system is shutting down.
2014 while (!list_empty(&devices_kset
->list
)) {
2015 dev
= list_entry(devices_kset
->list
.prev
, struct device
,
2019 * hold reference count of device's parent to
2020 * prevent it from being freed because parent's
2021 * lock is to be held
2023 get_device(dev
->parent
);
2026 * Make sure the device is off the kset list, in the
2027 * event that dev->*->shutdown() doesn't remove it.
2029 list_del_init(&dev
->kobj
.entry
);
2030 spin_unlock(&devices_kset
->list_lock
);
2032 /* hold lock to avoid race with probe/release */
2034 device_lock(dev
->parent
);
2037 /* Don't allow any more runtime suspends */
2038 pm_runtime_get_noresume(dev
);
2039 pm_runtime_barrier(dev
);
2041 if (dev
->bus
&& dev
->bus
->shutdown
) {
2043 dev_info(dev
, "shutdown\n");
2044 dev
->bus
->shutdown(dev
);
2045 } else if (dev
->driver
&& dev
->driver
->shutdown
) {
2047 dev_info(dev
, "shutdown\n");
2048 dev
->driver
->shutdown(dev
);
2053 device_unlock(dev
->parent
);
2056 put_device(dev
->parent
);
2058 spin_lock(&devices_kset
->list_lock
);
2060 spin_unlock(&devices_kset
->list_lock
);
2061 async_synchronize_full();
2065 * Device logging functions
2068 #ifdef CONFIG_PRINTK
2070 create_syslog_header(const struct device
*dev
, char *hdr
, size_t hdrlen
)
2076 subsys
= dev
->class->name
;
2078 subsys
= dev
->bus
->name
;
2082 pos
+= snprintf(hdr
+ pos
, hdrlen
- pos
, "SUBSYSTEM=%s", subsys
);
2085 * Add device identifier DEVICE=:
2089 * +sound:card0 subsystem:devname
2091 if (MAJOR(dev
->devt
)) {
2094 if (strcmp(subsys
, "block") == 0)
2099 pos
+= snprintf(hdr
+ pos
, hdrlen
- pos
,
2101 c
, MAJOR(dev
->devt
), MINOR(dev
->devt
));
2102 } else if (strcmp(subsys
, "net") == 0) {
2103 struct net_device
*net
= to_net_dev(dev
);
2106 pos
+= snprintf(hdr
+ pos
, hdrlen
- pos
,
2107 "DEVICE=n%u", net
->ifindex
);
2110 pos
+= snprintf(hdr
+ pos
, hdrlen
- pos
,
2111 "DEVICE=+%s:%s", subsys
, dev_name(dev
));
2116 EXPORT_SYMBOL(create_syslog_header
);
2118 int dev_vprintk_emit(int level
, const struct device
*dev
,
2119 const char *fmt
, va_list args
)
2124 hdrlen
= create_syslog_header(dev
, hdr
, sizeof(hdr
));
2126 return vprintk_emit(0, level
, hdrlen
? hdr
: NULL
, hdrlen
, fmt
, args
);
2128 EXPORT_SYMBOL(dev_vprintk_emit
);
2130 int dev_printk_emit(int level
, const struct device
*dev
, const char *fmt
, ...)
2135 va_start(args
, fmt
);
2137 r
= dev_vprintk_emit(level
, dev
, fmt
, args
);
2143 EXPORT_SYMBOL(dev_printk_emit
);
2145 static int __dev_printk(const char *level
, const struct device
*dev
,
2146 struct va_format
*vaf
)
2149 return printk("%s(NULL device *): %pV", level
, vaf
);
2151 return dev_printk_emit(level
[1] - '0', dev
,
2153 dev_driver_string(dev
), dev_name(dev
), vaf
);
2156 int dev_printk(const char *level
, const struct device
*dev
,
2157 const char *fmt
, ...)
2159 struct va_format vaf
;
2163 va_start(args
, fmt
);
2168 r
= __dev_printk(level
, dev
, &vaf
);
2174 EXPORT_SYMBOL(dev_printk
);
2176 #define define_dev_printk_level(func, kern_level) \
2177 int func(const struct device *dev, const char *fmt, ...) \
2179 struct va_format vaf; \
2183 va_start(args, fmt); \
2188 r = __dev_printk(kern_level, dev, &vaf); \
2194 EXPORT_SYMBOL(func);
2196 define_dev_printk_level(dev_emerg
, KERN_EMERG
);
2197 define_dev_printk_level(dev_alert
, KERN_ALERT
);
2198 define_dev_printk_level(dev_crit
, KERN_CRIT
);
2199 define_dev_printk_level(dev_err
, KERN_ERR
);
2200 define_dev_printk_level(dev_warn
, KERN_WARNING
);
2201 define_dev_printk_level(dev_notice
, KERN_NOTICE
);
2202 define_dev_printk_level(_dev_info
, KERN_INFO
);