driver core: core: use DEVICE_ATTR_RO
[linux/fpc-iii.git] / drivers / base / core.c
blob921b94184dcc0f2b0e1101fb87996b5fe1f7fc04
1 /*
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/of.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>
30 #include "base.h"
31 #include "power/power.h"
33 #ifdef CONFIG_SYSFS_DEPRECATED
34 #ifdef CONFIG_SYSFS_DEPRECATED_V2
35 long sysfs_deprecated = 1;
36 #else
37 long sysfs_deprecated = 0;
38 #endif
39 static int __init sysfs_deprecated_setup(char *arg)
41 return kstrtol(arg, 10, &sysfs_deprecated);
43 early_param("sysfs.deprecated", sysfs_deprecated_setup);
44 #endif
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;
52 #ifdef CONFIG_BLOCK
53 static inline int device_is_not_partition(struct device *dev)
55 return !(dev->type == &part_type);
57 #else
58 static inline int device_is_not_partition(struct device *dev)
60 return 1;
62 #endif
64 /**
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,
91 char *buf)
93 struct device_attribute *dev_attr = to_dev_attr(attr);
94 struct device *dev = kobj_to_dev(kobj);
95 ssize_t ret = -EIO;
97 if (dev_attr->show)
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);
103 return ret;
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);
111 ssize_t ret = -EIO;
113 if (dev_attr->store)
114 ret = dev_attr->store(dev, dev_attr, buf, count);
115 return ret;
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);
130 char *end;
131 unsigned long new = simple_strtoul(buf, &end, 0);
132 if (end == buf)
133 return -EINVAL;
134 *(unsigned long *)(ea->var) = new;
135 /* Always return full write size even if we didn't consume all */
136 return size;
138 EXPORT_SYMBOL_GPL(device_store_ulong);
140 ssize_t device_show_ulong(struct device *dev,
141 struct device_attribute *attr,
142 char *buf)
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);
154 char *end;
155 long new = simple_strtol(buf, &end, 0);
156 if (end == buf || new > INT_MAX || new < INT_MIN)
157 return -EINVAL;
158 *(int *)(ea->var) = new;
159 /* Always return full write size even if we didn't consume all */
160 return size;
162 EXPORT_SYMBOL_GPL(device_store_int);
164 ssize_t device_show_int(struct device *dev,
165 struct device_attribute *attr,
166 char *buf)
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)
180 return -EINVAL;
182 return size;
184 EXPORT_SYMBOL_GPL(device_store_bool);
186 ssize_t device_show_bool(struct device *dev, struct device_attribute *attr,
187 char *buf)
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);
219 if (dev->release)
220 dev->release(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);
225 else
226 WARN(1, KERN_ERR "Device '%s' does not have a release() "
227 "function, it is broken and must be fixed.\n",
228 dev_name(dev));
229 kfree(p);
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);
240 return ns;
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);
256 if (dev->bus)
257 return 1;
258 if (dev->class)
259 return 1;
261 return 0;
264 static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
266 struct device *dev = kobj_to_dev(kobj);
268 if (dev->bus)
269 return dev->bus->name;
270 if (dev->class)
271 return dev->class->name;
272 return NULL;
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);
279 int retval = 0;
281 /* add device node properties if present */
282 if (MAJOR(dev->devt)) {
283 const char *tmp;
284 const char *name;
285 umode_t mode = 0;
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);
292 if (name) {
293 add_uevent_var(env, "DEVNAME=%s", name);
294 if (mode)
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));
300 kfree(tmp);
304 if (dev->type && dev->type->name)
305 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
307 if (dev->driver)
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);
316 if (retval)
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);
324 if (retval)
325 pr_debug("device: '%s': %s: class uevent() "
326 "returned %d\n", dev_name(dev),
327 __func__, retval);
330 /* have the device type specific function add its stuff */
331 if (dev->type && dev->type->uevent) {
332 retval = dev->type->uevent(dev, env);
333 if (retval)
334 pr_debug("device: '%s': %s: dev_type uevent() "
335 "returned %d\n", dev_name(dev),
336 __func__, retval);
339 return retval;
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,
349 char *buf)
351 struct kobject *top_kobj;
352 struct kset *kset;
353 struct kobj_uevent_env *env = NULL;
354 int i;
355 size_t count = 0;
356 int retval;
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;
362 if (!top_kobj->kset)
363 goto out;
365 kset = top_kobj->kset;
366 if (!kset->uevent_ops || !kset->uevent_ops->uevent)
367 goto out;
369 /* respect filter */
370 if (kset->uevent_ops && kset->uevent_ops->filter)
371 if (!kset->uevent_ops->filter(kset, &dev->kobj))
372 goto out;
374 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
375 if (!env)
376 return -ENOMEM;
378 /* let the kset specific function add its keys */
379 retval = kset->uevent_ops->uevent(kset, &dev->kobj, env);
380 if (retval)
381 goto out;
383 /* copy keys to file */
384 for (i = 0; i < env->envp_idx; i++)
385 count += sprintf(&buf[count], "%s\n", env->envp[i]);
386 out:
387 kfree(env);
388 return count;
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);
398 else
399 dev_err(dev, "uevent: unknown action-string\n");
400 return count;
402 static DEVICE_ATTR_RW(uevent);
404 static ssize_t online_show(struct device *dev, struct device_attribute *attr,
405 char *buf)
407 bool val;
409 lock_device_hotplug();
410 val = !dev->offline;
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)
418 bool val;
419 int ret;
421 ret = strtobool(buf, &val);
422 if (ret < 0)
423 return ret;
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)
435 int error = 0;
436 int i;
438 if (attrs) {
439 for (i = 0; attrs[i].attr.name; i++) {
440 error = device_create_file(dev, &attrs[i]);
441 if (error)
442 break;
444 if (error)
445 while (--i >= 0)
446 device_remove_file(dev, &attrs[i]);
448 return error;
451 static void device_remove_attributes(struct device *dev,
452 struct device_attribute *attrs)
454 int i;
456 if (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)
464 int error = 0;
465 int i;
467 if (attrs) {
468 for (i = 0; attrs[i].attr.name; i++) {
469 error = device_create_bin_file(dev, &attrs[i]);
470 if (error)
471 break;
473 if (error)
474 while (--i >= 0)
475 device_remove_bin_file(dev, &attrs[i]);
477 return error;
480 static void device_remove_bin_attributes(struct device *dev,
481 struct bin_attribute *attrs)
483 int i;
485 if (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;
505 int error;
507 if (class) {
508 error = device_add_groups(dev, class->dev_groups);
509 if (error)
510 return error;
511 error = device_add_attributes(dev, class->dev_attrs);
512 if (error)
513 goto err_remove_class_groups;
514 error = device_add_bin_attributes(dev, class->dev_bin_attrs);
515 if (error)
516 goto err_remove_class_attrs;
519 if (type) {
520 error = device_add_groups(dev, type->groups);
521 if (error)
522 goto err_remove_class_bin_attrs;
525 error = device_add_groups(dev, dev->groups);
526 if (error)
527 goto err_remove_type_groups;
529 if (device_supports_offline(dev) && !dev->offline_disabled) {
530 error = device_create_file(dev, &dev_attr_online);
531 if (error)
532 goto err_remove_type_groups;
535 return 0;
537 err_remove_type_groups:
538 if (type)
539 device_remove_groups(dev, type->groups);
540 err_remove_class_bin_attrs:
541 if (class)
542 device_remove_bin_attributes(dev, class->dev_bin_attrs);
543 err_remove_class_attrs:
544 if (class)
545 device_remove_attributes(dev, class->dev_attrs);
546 err_remove_class_groups:
547 if (class)
548 device_remove_groups(dev, class->dev_groups);
550 return error;
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);
561 if (type)
562 device_remove_groups(dev, type->groups);
564 if (class) {
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,
572 char *buf)
574 return print_dev_t(buf, dev->devt);
576 static DEVICE_ATTR_RO(dev);
578 /* /sys/devices/ */
579 struct kset *devices_kset;
582 * device_create_file - create sysfs attribute file for device.
583 * @dev: device.
584 * @attr: device attribute descriptor.
586 int device_create_file(struct device *dev,
587 const struct device_attribute *attr)
589 int error = 0;
591 if (dev) {
592 WARN(((attr->attr.mode & S_IWUGO) && !attr->store),
593 "Attribute %s: write permission without 'store'\n",
594 attr->attr.name);
595 WARN(((attr->attr.mode & S_IRUGO) && !attr->show),
596 "Attribute %s: read permission without 'show'\n",
597 attr->attr.name);
598 error = sysfs_create_file(&dev->kobj, &attr->attr);
601 return error;
603 EXPORT_SYMBOL_GPL(device_create_file);
606 * device_remove_file - remove sysfs attribute file.
607 * @dev: device.
608 * @attr: device attribute descriptor.
610 void device_remove_file(struct device *dev,
611 const struct device_attribute *attr)
613 if (dev)
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.
620 * @dev: device.
621 * @attr: device binary attribute descriptor.
623 int device_create_bin_file(struct device *dev,
624 const struct bin_attribute *attr)
626 int error = -EINVAL;
627 if (dev)
628 error = sysfs_create_bin_file(&dev->kobj, attr);
629 return error;
631 EXPORT_SYMBOL_GPL(device_create_bin_file);
634 * device_remove_bin_file - remove sysfs binary attribute file
635 * @dev: device.
636 * @attr: device binary attribute descriptor.
638 void device_remove_bin_file(struct device *dev,
639 const struct bin_attribute *attr)
641 if (dev)
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
648 * @dev: 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
659 * @func returns.
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;
684 get_device(dev);
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;
692 put_device(dev);
696 * device_initialize - init device structure.
697 * @dev: device.
699 * This prepares the device for use by other layers by initializing
700 * its fields.
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
705 * function.
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
710 * @dev.
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);
724 device_pm_init(dev);
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;
733 if (!virtual_dir)
734 virtual_dir = kobject_create_and_add("virtual",
735 &devices_kset->kobj);
737 return virtual_dir;
740 struct class_dir {
741 struct kobject kobj;
742 struct class *class;
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);
750 kfree(dir);
753 static const
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;
770 int retval;
772 dir = kzalloc(sizeof(*dir), GFP_KERNEL);
773 if (!dir)
774 return NULL;
776 dir->class = class;
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);
782 if (retval < 0) {
783 kobject_put(&dir->kobj);
784 return NULL;
786 return &dir->kobj;
790 static struct kobject *get_device_parent(struct device *dev,
791 struct device *parent)
793 if (dev->class) {
794 static DEFINE_MUTEX(gdp_mutex);
795 struct kobject *kobj = NULL;
796 struct kobject *parent_kobj;
797 struct kobject *k;
799 #ifdef CONFIG_BLOCK
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;
806 #endif
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.
813 if (parent == NULL)
814 parent_kobj = virtual_device_parent(dev);
815 else if (parent->class && !dev->class->ns_type)
816 return &parent->kobj;
817 else
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);
827 break;
829 spin_unlock(&dev->class->p->glue_dirs.list_lock);
830 if (kobj) {
831 mutex_unlock(&gdp_mutex);
832 return kobj;
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);
839 return k;
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;
846 if (parent)
847 return &parent->kobj;
848 return NULL;
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)
856 return;
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)
868 int error;
870 if (!dev->class)
871 return 0;
873 error = sysfs_create_link(&dev->kobj,
874 &dev->class->p->subsys.kobj,
875 "subsystem");
876 if (error)
877 goto out;
879 if (dev->parent && device_is_not_partition(dev)) {
880 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
881 "device");
882 if (error)
883 goto out_subsys;
886 #ifdef CONFIG_BLOCK
887 /* /sys/block has directories and does not need symlinks */
888 if (sysfs_deprecated && dev->class == &block_class)
889 return 0;
890 #endif
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));
895 if (error)
896 goto out_device;
898 return 0;
900 out_device:
901 sysfs_remove_link(&dev->kobj, "device");
903 out_subsys:
904 sysfs_remove_link(&dev->kobj, "subsystem");
905 out:
906 return error;
909 static void device_remove_class_symlinks(struct device *dev)
911 if (!dev->class)
912 return;
914 if (dev->parent && device_is_not_partition(dev))
915 sysfs_remove_link(&dev->kobj, "device");
916 sysfs_remove_link(&dev->kobj, "subsystem");
917 #ifdef CONFIG_BLOCK
918 if (sysfs_deprecated && dev->class == &block_class)
919 return;
920 #endif
921 sysfs_delete_link(&dev->class->p->subsys.kobj, &dev->kobj, dev_name(dev));
925 * dev_set_name - set a device name
926 * @dev: device
927 * @fmt: format string for the device's name
929 int dev_set_name(struct device *dev, const char *fmt, ...)
931 va_list vargs;
932 int err;
934 va_start(vargs, fmt);
935 err = kobject_set_name_vargs(&dev->kobj, fmt, vargs);
936 va_end(vargs);
937 return err;
939 EXPORT_SYMBOL_GPL(dev_set_name);
942 * device_to_dev_kobj - select a /sys/dev/ directory for the device
943 * @dev: 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
950 * the link.
952 static struct kobject *device_to_dev_kobj(struct device *dev)
954 struct kobject *kobj;
956 if (dev->class)
957 kobj = dev->class->dev_kobj;
958 else
959 kobj = sysfs_dev_char_kobj;
961 return kobj;
964 static int device_create_sys_dev_entry(struct device *dev)
966 struct kobject *kobj = device_to_dev_kobj(dev);
967 int error = 0;
968 char devt_str[15];
970 if (kobj) {
971 format_dev_t(devt_str, dev->devt);
972 error = sysfs_create_link(kobj, &dev->kobj, devt_str);
975 return error;
978 static void device_remove_sys_dev_entry(struct device *dev)
980 struct kobject *kobj = device_to_dev_kobj(dev);
981 char devt_str[15];
983 if (kobj) {
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);
992 if (!dev->p)
993 return -ENOMEM;
994 dev->p->device = dev;
995 klist_init(&dev->p->klist_children, klist_children_get,
996 klist_children_put);
997 INIT_LIST_HEAD(&dev->p->deferred_probe);
998 return 0;
1002 * device_add - add device to device hierarchy.
1003 * @dev: device.
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);
1031 if (!dev)
1032 goto done;
1034 if (!dev->p) {
1035 error = device_private_init(dev);
1036 if (error)
1037 goto done;
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)) {
1055 error = -EINVAL;
1056 goto name_error;
1059 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
1061 parent = get_device(dev->parent);
1062 kobj = get_device_parent(dev, parent);
1063 if (kobj)
1064 dev->kobj.parent = kobj;
1066 /* use parent numa_node */
1067 if (parent)
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);
1073 if (error)
1074 goto Error;
1076 /* notify platform of device entry */
1077 if (platform_notify)
1078 platform_notify(dev);
1080 error = device_create_file(dev, &dev_attr_uevent);
1081 if (error)
1082 goto attrError;
1084 if (MAJOR(dev->devt)) {
1085 error = device_create_file(dev, &dev_attr_dev);
1086 if (error)
1087 goto ueventattrError;
1089 error = device_create_sys_dev_entry(dev);
1090 if (error)
1091 goto devtattrError;
1093 devtmpfs_create_node(dev);
1096 error = device_add_class_symlinks(dev);
1097 if (error)
1098 goto SymlinkError;
1099 error = device_add_attrs(dev);
1100 if (error)
1101 goto AttrsError;
1102 error = bus_add_device(dev);
1103 if (error)
1104 goto BusError;
1105 error = dpm_sysfs_add(dev);
1106 if (error)
1107 goto DPMError;
1108 device_pm_add(dev);
1110 /* Notify clients of device addition. This call must come
1111 * after dpm_sysfs_add() and before kobject_uevent().
1113 if (dev->bus)
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);
1119 if (parent)
1120 klist_add_tail(&dev->p->knode_parent,
1121 &parent->p->klist_children);
1123 if (dev->class) {
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);
1136 done:
1137 put_device(dev);
1138 return error;
1139 DPMError:
1140 bus_remove_device(dev);
1141 BusError:
1142 device_remove_attrs(dev);
1143 AttrsError:
1144 device_remove_class_symlinks(dev);
1145 SymlinkError:
1146 if (MAJOR(dev->devt))
1147 devtmpfs_delete_node(dev);
1148 if (MAJOR(dev->devt))
1149 device_remove_sys_dev_entry(dev);
1150 devtattrError:
1151 if (MAJOR(dev->devt))
1152 device_remove_file(dev, &dev_attr_dev);
1153 ueventattrError:
1154 device_remove_file(dev, &dev_attr_uevent);
1155 attrError:
1156 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
1157 kobject_del(&dev->kobj);
1158 Error:
1159 cleanup_device_parent(dev);
1160 if (parent)
1161 put_device(parent);
1162 name_error:
1163 kfree(dev->p);
1164 dev->p = NULL;
1165 goto done;
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()
1181 * and device_add().
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.
1196 * @dev: 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(); */
1215 if (dev)
1216 kobject_put(&dev->kobj);
1218 EXPORT_SYMBOL_GPL(put_device);
1221 * device_del - delete device from system.
1222 * @dev: device.
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().
1241 if (dev->bus)
1242 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
1243 BUS_NOTIFY_DEL_DEVICE, dev);
1244 dpm_sysfs_remove(dev);
1245 if (parent)
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);
1252 if (dev->class) {
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);
1279 put_device(parent);
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__);
1297 device_del(dev);
1298 put_device(dev);
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;
1308 if (n) {
1309 p = to_device_private_parent(n);
1310 dev = p->device;
1312 return dev;
1316 * device_get_devnode - path of device node file
1317 * @dev: device
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,
1330 const char **tmp)
1332 char *s;
1334 *tmp = NULL;
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);
1339 if (*tmp)
1340 return *tmp;
1342 /* the class may provide a specific name */
1343 if (dev->class && dev->class->devnode)
1344 *tmp = dev->class->devnode(dev, mode);
1345 if (*tmp)
1346 return *tmp;
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);
1354 if (!*tmp)
1355 return NULL;
1356 while ((s = strchr(*tmp, '!')))
1357 s[0] = '/';
1358 return *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,
1368 * passing it @data.
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;
1378 int error = 0;
1380 if (!parent->p)
1381 return 0;
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);
1387 return error;
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;
1414 if (!parent)
1415 return NULL;
1417 klist_iter_init(&parent->p->klist_children, &i);
1418 while ((child = next_device(&i)))
1419 if (match(child, data) && get_device(child))
1420 break;
1421 klist_iter_exit(&i);
1422 return child;
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);
1429 if (!devices_kset)
1430 return -ENOMEM;
1431 dev_kobj = kobject_create_and_add("dev", NULL);
1432 if (!dev_kobj)
1433 goto dev_kobj_err;
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)
1439 goto char_kobj_err;
1441 return 0;
1443 char_kobj_err:
1444 kobject_put(sysfs_dev_block_kobj);
1445 block_kobj_err:
1446 kobject_put(dev_kobj);
1447 dev_kobj_err:
1448 kset_unregister(devices_kset);
1449 return -ENOMEM;
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)
1466 int ret;
1468 ret = device_for_each_child(dev, NULL, device_check_offline);
1469 if (ret)
1470 return ret;
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
1482 * is executed.
1484 * Call under device_hotplug_lock.
1486 int device_offline(struct device *dev)
1488 int ret;
1490 if (dev->offline_disabled)
1491 return -EPERM;
1493 ret = device_for_each_child(dev, NULL, device_check_offline);
1494 if (ret)
1495 return ret;
1497 device_lock(dev);
1498 if (device_supports_offline(dev)) {
1499 if (dev->offline) {
1500 ret = 1;
1501 } else {
1502 ret = dev->bus->offline(dev);
1503 if (!ret) {
1504 kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
1505 dev->offline = true;
1509 device_unlock(dev);
1511 return ret;
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)
1526 int ret = 0;
1528 device_lock(dev);
1529 if (device_supports_offline(dev)) {
1530 if (dev->offline) {
1531 ret = dev->bus->online(dev);
1532 if (!ret) {
1533 kobject_uevent(&dev->kobj, KOBJ_ONLINE);
1534 dev->offline = false;
1536 } else {
1537 ret = 1;
1540 device_unlock(dev);
1542 return ret;
1545 struct root_device {
1546 struct device dev;
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
1576 * in sysfs.
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;
1585 int err = -ENOMEM;
1587 root = kzalloc(sizeof(struct root_device), GFP_KERNEL);
1588 if (!root)
1589 return ERR_PTR(err);
1591 err = dev_set_name(&root->dev, "%s", name);
1592 if (err) {
1593 kfree(root);
1594 return ERR_PTR(err);
1597 root->dev.release = root_device_release;
1599 err = device_register(&root->dev);
1600 if (err) {
1601 put_device(&root->dev);
1602 return ERR_PTR(err);
1605 #ifdef CONFIG_MODULES /* gotta find a "cleaner" way to do this */
1606 if (owner) {
1607 struct module_kobject *mk = &owner->mkobj;
1609 err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module");
1610 if (err) {
1611 device_unregister(&root->dev);
1612 return ERR_PTR(err);
1614 root->owner = owner;
1616 #endif
1618 return &root->dev;
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);
1633 if (root->owner)
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__);
1644 kfree(dev);
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))
1657 goto error;
1659 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1660 if (!dev) {
1661 retval = -ENOMEM;
1662 goto error;
1665 dev->devt = devt;
1666 dev->class = class;
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);
1673 if (retval)
1674 goto error;
1676 retval = device_register(dev);
1677 if (retval)
1678 goto error;
1680 return dev;
1682 error:
1683 put_device(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
1705 * pointer.
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,
1714 va_list args)
1716 return device_create_groups_vargs(class, parent, devt, drvdata, NULL,
1717 fmt, args);
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
1738 * pointer.
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, ...)
1748 va_list vargs;
1749 struct device *dev;
1751 va_start(vargs, fmt);
1752 dev = device_create_vargs(class, parent, devt, drvdata, fmt, vargs);
1753 va_end(vargs);
1754 return dev;
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
1778 * pointer.
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,
1787 void *drvdata,
1788 const struct attribute_group **groups,
1789 const char *fmt, ...)
1791 va_list vargs;
1792 struct device *dev;
1794 va_start(vargs, fmt);
1795 dev = device_create_groups_vargs(class, parent, devt, drvdata, groups,
1796 fmt, vargs);
1797 va_end(vargs);
1798 return dev;
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)
1819 struct device *dev;
1821 dev = class_find_device(class, NULL, &devt, __match_devt);
1822 if (dev) {
1823 put_device(dev);
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
1841 * some insight:
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
1860 * reasons.
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;
1871 int error;
1873 dev = get_device(dev);
1874 if (!dev)
1875 return -EINVAL;
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) {
1882 error = -ENOMEM;
1883 goto out;
1886 if (dev->class) {
1887 error = sysfs_rename_link(&dev->class->p->subsys.kobj,
1888 &dev->kobj, old_device_name, new_name);
1889 if (error)
1890 goto out;
1893 error = kobject_rename(&dev->kobj, new_name);
1894 if (error)
1895 goto out;
1897 out:
1898 put_device(dev);
1900 kfree(old_device_name);
1902 return error;
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)
1910 int error = 0;
1912 if (old_parent)
1913 sysfs_remove_link(&dev->kobj, "device");
1914 if (new_parent)
1915 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1916 "device");
1917 return error;
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)
1929 int error;
1930 struct device *old_parent;
1931 struct kobject *new_parent_kobj;
1933 dev = get_device(dev);
1934 if (!dev)
1935 return -EINVAL;
1937 device_pm_lock();
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);
1944 if (error) {
1945 cleanup_glue_dir(dev, new_parent_kobj);
1946 put_device(new_parent);
1947 goto out;
1949 old_parent = dev->parent;
1950 dev->parent = new_parent;
1951 if (old_parent)
1952 klist_remove(&dev->p->knode_parent);
1953 if (new_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));
1959 if (dev->class) {
1960 error = device_move_class_links(dev, old_parent, new_parent);
1961 if (error) {
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)) {
1965 if (new_parent)
1966 klist_remove(&dev->p->knode_parent);
1967 dev->parent = old_parent;
1968 if (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);
1976 goto out;
1979 switch (dpm_order) {
1980 case DPM_ORDER_NONE:
1981 break;
1982 case DPM_ORDER_DEV_AFTER_PARENT:
1983 device_pm_move_after(dev, new_parent);
1984 break;
1985 case DPM_ORDER_PARENT_BEFORE_DEV:
1986 device_pm_move_before(new_parent, dev);
1987 break;
1988 case DPM_ORDER_DEV_LAST:
1989 device_pm_move_last(dev);
1990 break;
1993 put_device(old_parent);
1994 out:
1995 device_pm_unlock();
1996 put_device(dev);
1997 return error;
1999 EXPORT_SYMBOL_GPL(device_move);
2002 * device_shutdown - call ->shutdown() on each device to shutdown.
2004 void device_shutdown(void)
2006 struct device *dev;
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,
2016 kobj.entry);
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);
2024 get_device(dev);
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 */
2033 if (dev->parent)
2034 device_lock(dev->parent);
2035 device_lock(dev);
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) {
2042 if (initcall_debug)
2043 dev_info(dev, "shutdown\n");
2044 dev->bus->shutdown(dev);
2045 } else if (dev->driver && dev->driver->shutdown) {
2046 if (initcall_debug)
2047 dev_info(dev, "shutdown\n");
2048 dev->driver->shutdown(dev);
2051 device_unlock(dev);
2052 if (dev->parent)
2053 device_unlock(dev->parent);
2055 put_device(dev);
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
2069 static int
2070 create_syslog_header(const struct device *dev, char *hdr, size_t hdrlen)
2072 const char *subsys;
2073 size_t pos = 0;
2075 if (dev->class)
2076 subsys = dev->class->name;
2077 else if (dev->bus)
2078 subsys = dev->bus->name;
2079 else
2080 return 0;
2082 pos += snprintf(hdr + pos, hdrlen - pos, "SUBSYSTEM=%s", subsys);
2085 * Add device identifier DEVICE=:
2086 * b12:8 block dev_t
2087 * c127:3 char dev_t
2088 * n8 netdev ifindex
2089 * +sound:card0 subsystem:devname
2091 if (MAJOR(dev->devt)) {
2092 char c;
2094 if (strcmp(subsys, "block") == 0)
2095 c = 'b';
2096 else
2097 c = 'c';
2098 pos++;
2099 pos += snprintf(hdr + pos, hdrlen - pos,
2100 "DEVICE=%c%u:%u",
2101 c, MAJOR(dev->devt), MINOR(dev->devt));
2102 } else if (strcmp(subsys, "net") == 0) {
2103 struct net_device *net = to_net_dev(dev);
2105 pos++;
2106 pos += snprintf(hdr + pos, hdrlen - pos,
2107 "DEVICE=n%u", net->ifindex);
2108 } else {
2109 pos++;
2110 pos += snprintf(hdr + pos, hdrlen - pos,
2111 "DEVICE=+%s:%s", subsys, dev_name(dev));
2114 return pos;
2116 EXPORT_SYMBOL(create_syslog_header);
2118 int dev_vprintk_emit(int level, const struct device *dev,
2119 const char *fmt, va_list args)
2121 char hdr[128];
2122 size_t hdrlen;
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, ...)
2132 va_list args;
2133 int r;
2135 va_start(args, fmt);
2137 r = dev_vprintk_emit(level, dev, fmt, args);
2139 va_end(args);
2141 return r;
2143 EXPORT_SYMBOL(dev_printk_emit);
2145 static int __dev_printk(const char *level, const struct device *dev,
2146 struct va_format *vaf)
2148 if (!dev)
2149 return printk("%s(NULL device *): %pV", level, vaf);
2151 return dev_printk_emit(level[1] - '0', dev,
2152 "%s %s: %pV",
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;
2160 va_list args;
2161 int r;
2163 va_start(args, fmt);
2165 vaf.fmt = fmt;
2166 vaf.va = &args;
2168 r = __dev_printk(level, dev, &vaf);
2170 va_end(args);
2172 return r;
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; \
2180 va_list args; \
2181 int r; \
2183 va_start(args, fmt); \
2185 vaf.fmt = fmt; \
2186 vaf.va = &args; \
2188 r = __dev_printk(kern_level, dev, &vaf); \
2190 va_end(args); \
2192 return r; \
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);
2204 #endif