blob: d8b3d89db043e7e9ead44cb8b4a00946f4980fa6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/base/core.c - core driver model code (device registration, etc)
3 *
4 * Copyright (c) 2002-3 Patrick Mochel
5 * Copyright (c) 2002-3 Open Source Development Labs
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -07006 * Copyright (c) 2006 Greg Kroah-Hartman <gregkh@suse.de>
7 * Copyright (c) 2006 Novell, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This file is released under the GPLv2
10 *
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#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>
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -070019#include <linux/kdev_t.h>
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +100020#include <linux/notifier.h>
Kay Sieversda231fd2007-11-21 17:29:15 +010021#include <linux/genhd.h>
Andrew Morton815d2d52008-03-04 15:09:07 -080022#include <linux/kallsyms.h>
Dave Youngf75b1c62008-05-28 09:28:39 -070023#include <linux/mutex.h>
Shaohua Li401097e2009-05-12 13:37:57 -070024#include <linux/async.h>
Peter Chenaf8db152011-11-15 21:52:29 +010025#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include "base.h"
28#include "power/power.h"
29
Andi Kleene52eec12010-09-08 16:54:17 +020030#ifdef CONFIG_SYSFS_DEPRECATED
31#ifdef CONFIG_SYSFS_DEPRECATED_V2
32long sysfs_deprecated = 1;
33#else
34long sysfs_deprecated = 0;
35#endif
36static __init int sysfs_deprecated_setup(char *arg)
37{
38 return strict_strtol(arg, 10, &sysfs_deprecated);
39}
40early_param("sysfs.deprecated", sysfs_deprecated_setup);
41#endif
42
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080043int (*platform_notify)(struct device *dev) = NULL;
44int (*platform_notify_remove)(struct device *dev) = NULL;
Dan Williamse105b8b2008-04-21 10:51:07 -070045static struct kobject *dev_kobj;
46struct kobject *sysfs_dev_char_kobj;
47struct kobject *sysfs_dev_block_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -080049#ifdef CONFIG_BLOCK
50static inline int device_is_not_partition(struct device *dev)
51{
52 return !(dev->type == &part_type);
53}
54#else
55static inline int device_is_not_partition(struct device *dev)
56{
57 return 1;
58}
59#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Alan Stern3e956372006-06-16 17:10:48 -040061/**
62 * dev_driver_string - Return a device's driver name, if at all possible
63 * @dev: struct device to get the name of
64 *
65 * Will return the device's driver's name if it is bound to a device. If
66 * the device is not bound to a device, it will return the name of the bus
67 * it is attached to. If it is not attached to a bus either, an empty
68 * string will be returned.
69 */
Jean Delvarebf9ca692008-07-30 12:29:21 -070070const char *dev_driver_string(const struct device *dev)
Alan Stern3e956372006-06-16 17:10:48 -040071{
Alan Stern35899722009-12-04 11:06:57 -050072 struct device_driver *drv;
73
74 /* dev->driver can change to NULL underneath us because of unbinding,
75 * so be careful about accessing it. dev->bus and dev->class should
76 * never change once they are set, so they don't need special care.
77 */
78 drv = ACCESS_ONCE(dev->driver);
79 return drv ? drv->name :
Jean Delvarea456b702007-03-09 16:33:10 +010080 (dev->bus ? dev->bus->name :
81 (dev->class ? dev->class->name : ""));
Alan Stern3e956372006-06-16 17:10:48 -040082}
Matthew Wilcox310a9222006-09-23 23:35:04 -060083EXPORT_SYMBOL(dev_driver_string);
Alan Stern3e956372006-06-16 17:10:48 -040084
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define to_dev(obj) container_of(obj, struct device, kobj)
86#define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
87
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080088static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
89 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080091 struct device_attribute *dev_attr = to_dev_attr(attr);
92 struct device *dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050093 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 if (dev_attr->show)
Yani Ioannou54b6f352005-05-17 06:39:34 -040096 ret = dev_attr->show(dev, dev_attr, buf);
Andrew Morton815d2d52008-03-04 15:09:07 -080097 if (ret >= (ssize_t)PAGE_SIZE) {
98 print_symbol("dev_attr_show: %s returned bad count\n",
99 (unsigned long)dev_attr->show);
100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return ret;
102}
103
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800104static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
105 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800107 struct device_attribute *dev_attr = to_dev_attr(attr);
108 struct device *dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -0500109 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 if (dev_attr->store)
Yani Ioannou54b6f352005-05-17 06:39:34 -0400112 ret = dev_attr->store(dev, dev_attr, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return ret;
114}
115
Emese Revfy52cf25d2010-01-19 02:58:23 +0100116static const struct sysfs_ops dev_sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .show = dev_attr_show,
118 .store = dev_attr_store,
119};
120
121
122/**
123 * device_release - free device structure.
124 * @kobj: device's kobject.
125 *
126 * This is called once the reference count for the object
127 * reaches 0. We forward the call to the device's release
128 * method, which should handle actually freeing the structure.
129 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800130static void device_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800132 struct device *dev = to_dev(kobj);
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800133 struct device_private *p = dev->p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 if (dev->release)
136 dev->release(dev);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200137 else if (dev->type && dev->type->release)
138 dev->type->release(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700139 else if (dev->class && dev->class->dev_release)
140 dev->class->dev_release(dev);
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700141 else
142 WARN(1, KERN_ERR "Device '%s' does not have a release() "
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800143 "function, it is broken and must be fixed.\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100144 dev_name(dev));
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800145 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700148static const void *device_namespace(struct kobject *kobj)
149{
150 struct device *dev = to_dev(kobj);
151 const void *ns = NULL;
152
153 if (dev->class && dev->class->ns_type)
154 ns = dev->class->namespace(dev);
155
156 return ns;
157}
158
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600159static struct kobj_type device_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 .release = device_release,
161 .sysfs_ops = &dev_sysfs_ops,
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700162 .namespace = device_namespace,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163};
164
165
Kay Sievers312c0042005-11-16 09:00:00 +0100166static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 struct kobj_type *ktype = get_ktype(kobj);
169
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600170 if (ktype == &device_ktype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 struct device *dev = to_dev(kobj);
172 if (dev->bus)
173 return 1;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700174 if (dev->class)
175 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177 return 0;
178}
179
Kay Sievers312c0042005-11-16 09:00:00 +0100180static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 struct device *dev = to_dev(kobj);
183
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700184 if (dev->bus)
185 return dev->bus->name;
186 if (dev->class)
187 return dev->class->name;
188 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
Kay Sievers7eff2e72007-08-14 15:15:12 +0200191static int dev_uevent(struct kset *kset, struct kobject *kobj,
192 struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
194 struct device *dev = to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 int retval = 0;
196
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200197 /* add device node properties if present */
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700198 if (MAJOR(dev->devt)) {
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200199 const char *tmp;
200 const char *name;
Kay Sieverse454cea2009-09-18 23:01:12 +0200201 mode_t mode = 0;
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200202
Kay Sievers7eff2e72007-08-14 15:15:12 +0200203 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
204 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
Kay Sieverse454cea2009-09-18 23:01:12 +0200205 name = device_get_devnode(dev, &mode, &tmp);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200206 if (name) {
207 add_uevent_var(env, "DEVNAME=%s", name);
208 kfree(tmp);
Kay Sieverse454cea2009-09-18 23:01:12 +0200209 if (mode)
210 add_uevent_var(env, "DEVMODE=%#o", mode & 0777);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200211 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700212 }
213
Kay Sievers414264f2007-03-12 21:08:57 +0100214 if (dev->type && dev->type->name)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200215 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
Kay Sievers414264f2007-03-12 21:08:57 +0100216
Kay Sievers239378f2006-10-07 21:54:55 +0200217 if (dev->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200218 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200219
Kay Sievers7eff2e72007-08-14 15:15:12 +0200220 /* have the bus specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100221 if (dev->bus && dev->bus->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200222 retval = dev->bus->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200223 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800224 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100225 dev_name(dev), __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
Kay Sievers7eff2e72007-08-14 15:15:12 +0200228 /* have the class specific function add its stuff */
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700229 if (dev->class && dev->class->dev_uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200230 retval = dev->class->dev_uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200231 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800232 pr_debug("device: '%s': %s: class uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100233 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800234 __func__, retval);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200235 }
236
Stefan Weileef35c22010-08-06 21:11:15 +0200237 /* have the device type specific function add its stuff */
Kay Sieversf9f852d2006-10-07 21:54:55 +0200238 if (dev->type && dev->type->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200239 retval = dev->type->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200240 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800241 pr_debug("device: '%s': %s: dev_type uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100242 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800243 __func__, retval);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700244 }
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return retval;
247}
248
Emese Revfy9cd43612009-12-31 14:52:51 +0100249static const struct kset_uevent_ops device_uevent_ops = {
Kay Sievers312c0042005-11-16 09:00:00 +0100250 .filter = dev_uevent_filter,
251 .name = dev_uevent_name,
252 .uevent = dev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253};
254
Kay Sievers16574dc2007-04-06 01:40:38 +0200255static ssize_t show_uevent(struct device *dev, struct device_attribute *attr,
256 char *buf)
257{
258 struct kobject *top_kobj;
259 struct kset *kset;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200260 struct kobj_uevent_env *env = NULL;
Kay Sievers16574dc2007-04-06 01:40:38 +0200261 int i;
262 size_t count = 0;
263 int retval;
264
265 /* search the kset, the device belongs to */
266 top_kobj = &dev->kobj;
Kay Sievers5c5daf62007-08-12 20:43:55 +0200267 while (!top_kobj->kset && top_kobj->parent)
268 top_kobj = top_kobj->parent;
Kay Sievers16574dc2007-04-06 01:40:38 +0200269 if (!top_kobj->kset)
270 goto out;
Kay Sievers5c5daf62007-08-12 20:43:55 +0200271
Kay Sievers16574dc2007-04-06 01:40:38 +0200272 kset = top_kobj->kset;
273 if (!kset->uevent_ops || !kset->uevent_ops->uevent)
274 goto out;
275
276 /* respect filter */
277 if (kset->uevent_ops && kset->uevent_ops->filter)
278 if (!kset->uevent_ops->filter(kset, &dev->kobj))
279 goto out;
280
Kay Sievers7eff2e72007-08-14 15:15:12 +0200281 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
282 if (!env)
Greg Kroah-Hartmanc7308c82007-05-02 14:14:11 +0200283 return -ENOMEM;
284
Kay Sievers16574dc2007-04-06 01:40:38 +0200285 /* let the kset specific function add its keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200286 retval = kset->uevent_ops->uevent(kset, &dev->kobj, env);
Kay Sievers16574dc2007-04-06 01:40:38 +0200287 if (retval)
288 goto out;
289
290 /* copy keys to file */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200291 for (i = 0; i < env->envp_idx; i++)
292 count += sprintf(&buf[count], "%s\n", env->envp[i]);
Kay Sievers16574dc2007-04-06 01:40:38 +0200293out:
Kay Sievers7eff2e72007-08-14 15:15:12 +0200294 kfree(env);
Kay Sievers16574dc2007-04-06 01:40:38 +0200295 return count;
296}
297
Kay Sieversa7fd6702005-10-01 14:49:43 +0200298static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
299 const char *buf, size_t count)
300{
Kay Sievers60a96a52007-07-08 22:29:26 +0200301 enum kobject_action action;
302
Kay Sievers3f5468c2010-01-14 22:54:37 +0100303 if (kobject_action_type(buf, count, &action) == 0)
Kay Sievers60a96a52007-07-08 22:29:26 +0200304 kobject_uevent(&dev->kobj, action);
Kay Sievers3f5468c2010-01-14 22:54:37 +0100305 else
306 dev_err(dev, "uevent: unknown action-string\n");
Kay Sieversa7fd6702005-10-01 14:49:43 +0200307 return count;
308}
309
Tejun Heoad6a1e12007-06-14 03:45:17 +0900310static struct device_attribute uevent_attr =
311 __ATTR(uevent, S_IRUGO | S_IWUSR, show_uevent, store_uevent);
312
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500313static int device_add_attributes(struct device *dev,
314 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700315{
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700316 int error = 0;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500317 int i;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700318
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500319 if (attrs) {
320 for (i = 0; attr_name(attrs[i]); i++) {
321 error = device_create_file(dev, &attrs[i]);
322 if (error)
323 break;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700324 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500325 if (error)
326 while (--i >= 0)
327 device_remove_file(dev, &attrs[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700328 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700329 return error;
330}
331
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500332static void device_remove_attributes(struct device *dev,
333 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700334{
335 int i;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500336
337 if (attrs)
338 for (i = 0; attr_name(attrs[i]); i++)
339 device_remove_file(dev, &attrs[i]);
340}
341
Stefan Achatzc97415a2010-11-26 19:57:29 +0000342static int device_add_bin_attributes(struct device *dev,
343 struct bin_attribute *attrs)
344{
345 int error = 0;
346 int i;
347
348 if (attrs) {
349 for (i = 0; attr_name(attrs[i]); i++) {
350 error = device_create_bin_file(dev, &attrs[i]);
351 if (error)
352 break;
353 }
354 if (error)
355 while (--i >= 0)
356 device_remove_bin_file(dev, &attrs[i]);
357 }
358 return error;
359}
360
361static void device_remove_bin_attributes(struct device *dev,
362 struct bin_attribute *attrs)
363{
364 int i;
365
366 if (attrs)
367 for (i = 0; attr_name(attrs[i]); i++)
368 device_remove_bin_file(dev, &attrs[i]);
369}
370
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500371static int device_add_groups(struct device *dev,
David Brownella4dbd672009-06-24 10:06:31 -0700372 const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500373{
374 int error = 0;
375 int i;
376
377 if (groups) {
378 for (i = 0; groups[i]; i++) {
379 error = sysfs_create_group(&dev->kobj, groups[i]);
380 if (error) {
381 while (--i >= 0)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800382 sysfs_remove_group(&dev->kobj,
383 groups[i]);
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500384 break;
385 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700386 }
387 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500388 return error;
389}
390
391static void device_remove_groups(struct device *dev,
David Brownella4dbd672009-06-24 10:06:31 -0700392 const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500393{
394 int i;
395
396 if (groups)
397 for (i = 0; groups[i]; i++)
398 sysfs_remove_group(&dev->kobj, groups[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700399}
400
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700401static int device_add_attrs(struct device *dev)
402{
403 struct class *class = dev->class;
Stephen Hemmingeraed65af2011-03-28 09:12:52 -0700404 const struct device_type *type = dev->type;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500405 int error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700406
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500407 if (class) {
408 error = device_add_attributes(dev, class->dev_attrs);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200409 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500410 return error;
Stefan Achatzc97415a2010-11-26 19:57:29 +0000411 error = device_add_bin_attributes(dev, class->dev_bin_attrs);
412 if (error)
413 goto err_remove_class_attrs;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700414 }
Kay Sieversf9f852d2006-10-07 21:54:55 +0200415
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500416 if (type) {
417 error = device_add_groups(dev, type->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200418 if (error)
Stefan Achatzc97415a2010-11-26 19:57:29 +0000419 goto err_remove_class_bin_attrs;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200420 }
421
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500422 error = device_add_groups(dev, dev->groups);
423 if (error)
424 goto err_remove_type_groups;
425
426 return 0;
427
428 err_remove_type_groups:
429 if (type)
430 device_remove_groups(dev, type->groups);
Stefan Achatzc97415a2010-11-26 19:57:29 +0000431 err_remove_class_bin_attrs:
432 if (class)
433 device_remove_bin_attributes(dev, class->dev_bin_attrs);
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500434 err_remove_class_attrs:
435 if (class)
436 device_remove_attributes(dev, class->dev_attrs);
437
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700438 return error;
439}
440
441static void device_remove_attrs(struct device *dev)
442{
443 struct class *class = dev->class;
Stephen Hemmingeraed65af2011-03-28 09:12:52 -0700444 const struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700445
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500446 device_remove_groups(dev, dev->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200447
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500448 if (type)
449 device_remove_groups(dev, type->groups);
450
Stefan Achatzc97415a2010-11-26 19:57:29 +0000451 if (class) {
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500452 device_remove_attributes(dev, class->dev_attrs);
Stefan Achatzc97415a2010-11-26 19:57:29 +0000453 device_remove_bin_attributes(dev, class->dev_bin_attrs);
454 }
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700455}
456
457
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700458static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
459 char *buf)
460{
461 return print_dev_t(buf, dev->devt);
462}
463
Tejun Heoad6a1e12007-06-14 03:45:17 +0900464static struct device_attribute devt_attr =
465 __ATTR(dev, S_IRUGO, show_dev, NULL);
466
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600467/* kset to create /sys/devices/ */
468struct kset *devices_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800471 * device_create_file - create sysfs attribute file for device.
472 * @dev: device.
473 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 */
Phil Carmody26579ab2009-12-18 15:34:19 +0200475int device_create_file(struct device *dev,
476 const struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
478 int error = 0;
Cornelia Huck0c98b192008-01-31 10:39:38 +0100479 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 error = sysfs_create_file(&dev->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return error;
482}
483
484/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800485 * device_remove_file - remove sysfs attribute file.
486 * @dev: device.
487 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 */
Phil Carmody26579ab2009-12-18 15:34:19 +0200489void device_remove_file(struct device *dev,
490 const struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Cornelia Huck0c98b192008-01-31 10:39:38 +0100492 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 sysfs_remove_file(&dev->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700496/**
497 * device_create_bin_file - create sysfs binary attribute file for device.
498 * @dev: device.
499 * @attr: device binary attribute descriptor.
500 */
Phil Carmody66ecb922009-12-18 15:34:20 +0200501int device_create_bin_file(struct device *dev,
502 const struct bin_attribute *attr)
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700503{
504 int error = -EINVAL;
505 if (dev)
506 error = sysfs_create_bin_file(&dev->kobj, attr);
507 return error;
508}
509EXPORT_SYMBOL_GPL(device_create_bin_file);
510
511/**
512 * device_remove_bin_file - remove sysfs binary attribute file
513 * @dev: device.
514 * @attr: device binary attribute descriptor.
515 */
Phil Carmody66ecb922009-12-18 15:34:20 +0200516void device_remove_bin_file(struct device *dev,
517 const struct bin_attribute *attr)
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700518{
519 if (dev)
520 sysfs_remove_bin_file(&dev->kobj, attr);
521}
522EXPORT_SYMBOL_GPL(device_remove_bin_file);
523
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400524/**
Alan Stern523ded72007-04-26 00:12:04 -0700525 * device_schedule_callback_owner - helper to schedule a callback for a device
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400526 * @dev: device.
527 * @func: callback function to invoke later.
Alan Stern523ded72007-04-26 00:12:04 -0700528 * @owner: module owning the callback routine
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400529 *
530 * Attribute methods must not unregister themselves or their parent device
531 * (which would amount to the same thing). Attempts to do so will deadlock,
532 * since unregistration is mutually exclusive with driver callbacks.
533 *
534 * Instead methods can call this routine, which will attempt to allocate
535 * and schedule a workqueue request to call back @func with @dev as its
536 * argument in the workqueue's process context. @dev will be pinned until
537 * @func returns.
538 *
Alan Stern523ded72007-04-26 00:12:04 -0700539 * This routine is usually called via the inline device_schedule_callback(),
540 * which automatically sets @owner to THIS_MODULE.
541 *
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400542 * Returns 0 if the request was submitted, -ENOMEM if storage could not
Alan Stern523ded72007-04-26 00:12:04 -0700543 * be allocated, -ENODEV if a reference to @owner isn't available.
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400544 *
545 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
546 * underlying sysfs routine (since it is intended for use by attribute
547 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
548 */
Alan Stern523ded72007-04-26 00:12:04 -0700549int device_schedule_callback_owner(struct device *dev,
550 void (*func)(struct device *), struct module *owner)
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400551{
552 return sysfs_schedule_callback(&dev->kobj,
Alan Stern523ded72007-04-26 00:12:04 -0700553 (void (*)(void *)) func, dev, owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400554}
Alan Stern523ded72007-04-26 00:12:04 -0700555EXPORT_SYMBOL_GPL(device_schedule_callback_owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400556
James Bottomley34bb61f2005-09-06 16:56:51 -0700557static void klist_children_get(struct klist_node *n)
558{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800559 struct device_private *p = to_device_private_parent(n);
560 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700561
562 get_device(dev);
563}
564
565static void klist_children_put(struct klist_node *n)
566{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800567 struct device_private *p = to_device_private_parent(n);
568 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700569
570 put_device(dev);
571}
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800574 * device_initialize - init device structure.
575 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 *
Cornelia Huck57394112008-09-03 18:26:40 +0200577 * This prepares the device for use by other layers by initializing
578 * its fields.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800579 * It is the first half of device_register(), if called by
Cornelia Huck57394112008-09-03 18:26:40 +0200580 * that function, though it can also be called separately, so one
581 * may use @dev's fields. In particular, get_device()/put_device()
582 * may be used for reference counting of @dev after calling this
583 * function.
584 *
585 * NOTE: Use put_device() to give up your reference instead of freeing
586 * @dev directly once you have called this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588void device_initialize(struct device *dev)
589{
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600590 dev->kobj.kset = devices_kset;
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700591 kobject_init(&dev->kobj, &device_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 INIT_LIST_HEAD(&dev->dma_pools);
Thomas Gleixner31427882010-01-29 20:39:02 +0000593 mutex_init(&dev->mutex);
Peter Zijlstra1704f472010-03-19 01:37:42 +0100594 lockdep_set_novalidate_class(&dev->mutex);
Tejun Heo9ac78492007-01-20 16:00:26 +0900595 spin_lock_init(&dev->devres_lock);
596 INIT_LIST_HEAD(&dev->devres_head);
Alan Stern3b98aea2008-08-07 13:06:12 -0400597 device_pm_init(dev);
Christoph Hellwig87348132006-12-06 20:32:33 -0800598 set_dev_node(dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Kay Sievers86406242007-03-14 03:25:56 +0100601static struct kobject *virtual_device_parent(struct device *dev)
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700602{
Kay Sievers86406242007-03-14 03:25:56 +0100603 static struct kobject *virtual_dir = NULL;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700604
Kay Sievers86406242007-03-14 03:25:56 +0100605 if (!virtual_dir)
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -0800606 virtual_dir = kobject_create_and_add("virtual",
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600607 &devices_kset->kobj);
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700608
Kay Sievers86406242007-03-14 03:25:56 +0100609 return virtual_dir;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700610}
611
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700612struct class_dir {
613 struct kobject kobj;
614 struct class *class;
615};
616
617#define to_class_dir(obj) container_of(obj, struct class_dir, kobj)
618
619static void class_dir_release(struct kobject *kobj)
620{
621 struct class_dir *dir = to_class_dir(kobj);
622 kfree(dir);
623}
624
625static const
626struct kobj_ns_type_operations *class_dir_child_ns_type(struct kobject *kobj)
627{
628 struct class_dir *dir = to_class_dir(kobj);
629 return dir->class->ns_type;
630}
631
632static struct kobj_type class_dir_ktype = {
633 .release = class_dir_release,
634 .sysfs_ops = &kobj_sysfs_ops,
635 .child_ns_type = class_dir_child_ns_type
636};
637
638static struct kobject *
639class_dir_create_and_add(struct class *class, struct kobject *parent_kobj)
640{
641 struct class_dir *dir;
642 int retval;
643
644 dir = kzalloc(sizeof(*dir), GFP_KERNEL);
645 if (!dir)
646 return NULL;
647
648 dir->class = class;
649 kobject_init(&dir->kobj, &class_dir_ktype);
650
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100651 dir->kobj.kset = &class->p->glue_dirs;
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700652
653 retval = kobject_add(&dir->kobj, parent_kobj, "%s", class->name);
654 if (retval < 0) {
655 kobject_put(&dir->kobj);
656 return NULL;
657 }
658 return &dir->kobj;
659}
660
661
Kay Sieversda231fd2007-11-21 17:29:15 +0100662static struct kobject *get_device_parent(struct device *dev,
663 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100664{
Kay Sievers86406242007-03-14 03:25:56 +0100665 if (dev->class) {
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900666 static DEFINE_MUTEX(gdp_mutex);
Kay Sievers86406242007-03-14 03:25:56 +0100667 struct kobject *kobj = NULL;
668 struct kobject *parent_kobj;
669 struct kobject *k;
670
Randy Dunlapead454f2010-09-24 14:36:49 -0700671#ifdef CONFIG_BLOCK
Kay Sievers39aba962010-09-04 22:33:14 -0700672 /* block disks show up in /sys/block */
Andi Kleene52eec12010-09-08 16:54:17 +0200673 if (sysfs_deprecated && dev->class == &block_class) {
Kay Sievers39aba962010-09-04 22:33:14 -0700674 if (parent && parent->class == &block_class)
675 return &parent->kobj;
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100676 return &block_class.p->subsys.kobj;
Kay Sievers39aba962010-09-04 22:33:14 -0700677 }
Randy Dunlapead454f2010-09-24 14:36:49 -0700678#endif
Andi Kleene52eec12010-09-08 16:54:17 +0200679
Kay Sievers86406242007-03-14 03:25:56 +0100680 /*
681 * If we have no parent, we live in "virtual".
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100682 * Class-devices with a non class-device as parent, live
683 * in a "glue" directory to prevent namespace collisions.
Kay Sievers86406242007-03-14 03:25:56 +0100684 */
685 if (parent == NULL)
686 parent_kobj = virtual_device_parent(dev);
Eric W. Biederman24b14422010-07-24 22:43:35 -0700687 else if (parent->class && !dev->class->ns_type)
Kay Sievers86406242007-03-14 03:25:56 +0100688 return &parent->kobj;
689 else
690 parent_kobj = &parent->kobj;
691
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900692 mutex_lock(&gdp_mutex);
693
Kay Sievers86406242007-03-14 03:25:56 +0100694 /* find our class-directory at the parent and reference it */
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100695 spin_lock(&dev->class->p->glue_dirs.list_lock);
696 list_for_each_entry(k, &dev->class->p->glue_dirs.list, entry)
Kay Sievers86406242007-03-14 03:25:56 +0100697 if (k->parent == parent_kobj) {
698 kobj = kobject_get(k);
699 break;
700 }
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100701 spin_unlock(&dev->class->p->glue_dirs.list_lock);
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900702 if (kobj) {
703 mutex_unlock(&gdp_mutex);
Kay Sievers86406242007-03-14 03:25:56 +0100704 return kobj;
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900705 }
Kay Sievers86406242007-03-14 03:25:56 +0100706
707 /* or create a new class-directory at the parent device */
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700708 k = class_dir_create_and_add(dev->class, parent_kobj);
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100709 /* do not emit an uevent for this simple "glue" directory */
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900710 mutex_unlock(&gdp_mutex);
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800711 return k;
Kay Sievers86406242007-03-14 03:25:56 +0100712 }
713
714 if (parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100715 return &parent->kobj;
716 return NULL;
717}
Kay Sieversda231fd2007-11-21 17:29:15 +0100718
Cornelia Huck63b69712008-01-21 16:09:44 +0100719static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
Kay Sieversda231fd2007-11-21 17:29:15 +0100720{
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100721 /* see if we live in a "glue" directory */
Cornelia Huckc1fe5392008-02-27 15:38:23 +0100722 if (!glue_dir || !dev->class ||
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100723 glue_dir->kset != &dev->class->p->glue_dirs)
Kay Sieversda231fd2007-11-21 17:29:15 +0100724 return;
725
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100726 kobject_put(glue_dir);
Kay Sieversda231fd2007-11-21 17:29:15 +0100727}
Cornelia Huck63b69712008-01-21 16:09:44 +0100728
729static void cleanup_device_parent(struct device *dev)
730{
731 cleanup_glue_dir(dev, dev->kobj.parent);
732}
Kay Sievers86406242007-03-14 03:25:56 +0100733
Cornelia Huck63b69712008-01-21 16:09:44 +0100734static void setup_parent(struct device *dev, struct device *parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100735{
736 struct kobject *kobj;
737 kobj = get_device_parent(dev, parent);
Cornelia Huckc744aea2007-01-08 20:16:44 +0100738 if (kobj)
739 dev->kobj.parent = kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100740}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100741
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700742static int device_add_class_symlinks(struct device *dev)
743{
744 int error;
745
746 if (!dev->class)
747 return 0;
Kay Sieversda231fd2007-11-21 17:29:15 +0100748
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700749 error = sysfs_create_link(&dev->kobj,
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100750 &dev->class->p->subsys.kobj,
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700751 "subsystem");
752 if (error)
753 goto out;
Kay Sieversda231fd2007-11-21 17:29:15 +0100754
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800755 if (dev->parent && device_is_not_partition(dev)) {
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700756 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
757 "device");
758 if (error)
Kay Sievers39aba962010-09-04 22:33:14 -0700759 goto out_subsys;
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700760 }
Kay Sievers39aba962010-09-04 22:33:14 -0700761
Randy Dunlapead454f2010-09-24 14:36:49 -0700762#ifdef CONFIG_BLOCK
Kay Sievers39aba962010-09-04 22:33:14 -0700763 /* /sys/block has directories and does not need symlinks */
Andi Kleene52eec12010-09-08 16:54:17 +0200764 if (sysfs_deprecated && dev->class == &block_class)
Kay Sievers39aba962010-09-04 22:33:14 -0700765 return 0;
Randy Dunlapead454f2010-09-24 14:36:49 -0700766#endif
Kay Sievers39aba962010-09-04 22:33:14 -0700767
768 /* link in the class directory pointing to the device */
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100769 error = sysfs_create_link(&dev->class->p->subsys.kobj,
Kay Sievers39aba962010-09-04 22:33:14 -0700770 &dev->kobj, dev_name(dev));
771 if (error)
772 goto out_device;
773
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700774 return 0;
775
Kay Sievers39aba962010-09-04 22:33:14 -0700776out_device:
777 sysfs_remove_link(&dev->kobj, "device");
Kay Sieversda231fd2007-11-21 17:29:15 +0100778
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700779out_subsys:
780 sysfs_remove_link(&dev->kobj, "subsystem");
781out:
782 return error;
783}
784
785static void device_remove_class_symlinks(struct device *dev)
786{
787 if (!dev->class)
788 return;
Kay Sieversda231fd2007-11-21 17:29:15 +0100789
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800790 if (dev->parent && device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +0100791 sysfs_remove_link(&dev->kobj, "device");
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700792 sysfs_remove_link(&dev->kobj, "subsystem");
Randy Dunlapead454f2010-09-24 14:36:49 -0700793#ifdef CONFIG_BLOCK
Andi Kleene52eec12010-09-08 16:54:17 +0200794 if (sysfs_deprecated && dev->class == &block_class)
Kay Sievers39aba962010-09-04 22:33:14 -0700795 return;
Randy Dunlapead454f2010-09-24 14:36:49 -0700796#endif
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100797 sysfs_delete_link(&dev->class->p->subsys.kobj, &dev->kobj, dev_name(dev));
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700798}
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800/**
Stephen Rothwell413c2392008-05-30 10:16:40 +1000801 * dev_set_name - set a device name
802 * @dev: device
Randy Dunlap46232362008-06-04 21:40:43 -0700803 * @fmt: format string for the device's name
Stephen Rothwell413c2392008-05-30 10:16:40 +1000804 */
805int dev_set_name(struct device *dev, const char *fmt, ...)
806{
807 va_list vargs;
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100808 int err;
Stephen Rothwell413c2392008-05-30 10:16:40 +1000809
810 va_start(vargs, fmt);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100811 err = kobject_set_name_vargs(&dev->kobj, fmt, vargs);
Stephen Rothwell413c2392008-05-30 10:16:40 +1000812 va_end(vargs);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100813 return err;
Stephen Rothwell413c2392008-05-30 10:16:40 +1000814}
815EXPORT_SYMBOL_GPL(dev_set_name);
816
817/**
Dan Williamse105b8b2008-04-21 10:51:07 -0700818 * device_to_dev_kobj - select a /sys/dev/ directory for the device
819 * @dev: device
820 *
821 * By default we select char/ for new entries. Setting class->dev_obj
822 * to NULL prevents an entry from being created. class->dev_kobj must
823 * be set (or cleared) before any devices are registered to the class
824 * otherwise device_create_sys_dev_entry() and
825 * device_remove_sys_dev_entry() will disagree about the the presence
826 * of the link.
827 */
828static struct kobject *device_to_dev_kobj(struct device *dev)
829{
830 struct kobject *kobj;
831
832 if (dev->class)
833 kobj = dev->class->dev_kobj;
834 else
835 kobj = sysfs_dev_char_kobj;
836
837 return kobj;
838}
839
840static int device_create_sys_dev_entry(struct device *dev)
841{
842 struct kobject *kobj = device_to_dev_kobj(dev);
843 int error = 0;
844 char devt_str[15];
845
846 if (kobj) {
847 format_dev_t(devt_str, dev->devt);
848 error = sysfs_create_link(kobj, &dev->kobj, devt_str);
849 }
850
851 return error;
852}
853
854static void device_remove_sys_dev_entry(struct device *dev)
855{
856 struct kobject *kobj = device_to_dev_kobj(dev);
857 char devt_str[15];
858
859 if (kobj) {
860 format_dev_t(devt_str, dev->devt);
861 sysfs_remove_link(kobj, devt_str);
862 }
863}
864
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700865int device_private_init(struct device *dev)
866{
867 dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL);
868 if (!dev->p)
869 return -ENOMEM;
870 dev->p->device = dev;
871 klist_init(&dev->p->klist_children, klist_children_get,
872 klist_children_put);
873 return 0;
874}
875
Dan Williamse105b8b2008-04-21 10:51:07 -0700876/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800877 * device_add - add device to device hierarchy.
878 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800880 * This is part 2 of device_register(), though may be called
881 * separately _iff_ device_initialize() has been called separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 *
Cornelia Huck57394112008-09-03 18:26:40 +0200883 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800884 * to the global and sibling lists for the device, then
885 * adds it to the other relevant subsystems of the driver model.
Cornelia Huck57394112008-09-03 18:26:40 +0200886 *
887 * NOTE: _Never_ directly free @dev after calling this function, even
888 * if it returned an error! Always use put_device() to give up your
889 * reference instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 */
891int device_add(struct device *dev)
892{
893 struct device *parent = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200894 struct class_interface *class_intf;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700895 int error = -EINVAL;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +0100896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 dev = get_device(dev);
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700898 if (!dev)
899 goto done;
900
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800901 if (!dev->p) {
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700902 error = device_private_init(dev);
903 if (error)
904 goto done;
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800905 }
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800906
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100907 /*
908 * for statically allocated devices, which should all be converted
909 * some day, we need to initialize the name. We prevent reading back
910 * the name, and force the use of dev_name()
911 */
912 if (dev->init_name) {
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700913 dev_set_name(dev, "%s", dev->init_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100914 dev->init_name = NULL;
915 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700916
Thomas Gleixnere6309e72009-12-10 19:32:49 +0000917 if (!dev_name(dev)) {
918 error = -EINVAL;
Kay Sievers5c8563d2009-05-28 14:24:07 -0700919 goto name_error;
Thomas Gleixnere6309e72009-12-10 19:32:49 +0000920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100922 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 parent = get_device(dev->parent);
Cornelia Huck63b69712008-01-21 16:09:44 +0100925 setup_parent(dev, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Yinghai Lu0d358f22008-02-19 03:20:41 -0800927 /* use parent numa_node */
928 if (parent)
929 set_dev_node(dev, dev_to_node(parent));
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 /* first, register with generic layer. */
Kay Sievers8a577ff2009-04-18 15:05:45 -0700932 /* we require the name to be set before, and pass NULL */
933 error = kobject_add(&dev->kobj, dev->kobj.parent, NULL);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100934 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 goto Error;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200936
Brian Walsh37022642006-08-14 22:43:19 -0700937 /* notify platform of device entry */
938 if (platform_notify)
939 platform_notify(dev);
940
Tejun Heoad6a1e12007-06-14 03:45:17 +0900941 error = device_create_file(dev, &uevent_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200942 if (error)
943 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200944
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700945 if (MAJOR(dev->devt)) {
Tejun Heoad6a1e12007-06-14 03:45:17 +0900946 error = device_create_file(dev, &devt_attr);
947 if (error)
Cornelia Hucka306eea2006-09-22 11:37:13 +0200948 goto ueventattrError;
Dan Williamse105b8b2008-04-21 10:51:07 -0700949
950 error = device_create_sys_dev_entry(dev);
951 if (error)
952 goto devtattrError;
Kay Sievers2b2af542009-04-30 15:23:42 +0200953
954 devtmpfs_create_node(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700955 }
956
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700957 error = device_add_class_symlinks(dev);
958 if (error)
959 goto SymlinkError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700960 error = device_add_attrs(dev);
961 if (error)
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700962 goto AttrsError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700963 error = bus_add_device(dev);
964 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 goto BusError;
Alan Stern3b98aea2008-08-07 13:06:12 -0400966 error = dpm_sysfs_add(dev);
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +0100967 if (error)
Alan Stern3b98aea2008-08-07 13:06:12 -0400968 goto DPMError;
969 device_pm_add(dev);
Alan Sternec0676ee2008-12-05 14:10:31 -0500970
971 /* Notify clients of device addition. This call must come
972 * after dpm_sysf_add() and before kobject_uevent().
973 */
974 if (dev->bus)
975 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
976 BUS_NOTIFY_ADD_DEVICE, dev);
977
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +0200978 kobject_uevent(&dev->kobj, KOBJ_ADD);
Alan Stern2023c612009-07-30 15:27:18 -0400979 bus_probe_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800981 klist_add_tail(&dev->p->knode_parent,
982 &parent->p->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700984 if (dev->class) {
Dave Youngf75b1c62008-05-28 09:28:39 -0700985 mutex_lock(&dev->class->p->class_mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200986 /* tie the class to the device */
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200987 klist_add_tail(&dev->knode_class,
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100988 &dev->class->p->klist_devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200989
990 /* notify any interfaces that the device is here */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -0700991 list_for_each_entry(class_intf,
992 &dev->class->p->class_interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200993 if (class_intf->add_dev)
994 class_intf->add_dev(dev, class_intf);
Dave Youngf75b1c62008-05-28 09:28:39 -0700995 mutex_unlock(&dev->class->p->class_mutex);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700996 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700997done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 put_device(dev);
999 return error;
Alan Stern3b98aea2008-08-07 13:06:12 -04001000 DPMError:
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +01001001 bus_remove_device(dev);
1002 BusError:
James Simmons82f0cf92007-02-21 17:44:51 +00001003 device_remove_attrs(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001004 AttrsError:
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001005 device_remove_class_symlinks(dev);
1006 SymlinkError:
Tejun Heoad6a1e12007-06-14 03:45:17 +09001007 if (MAJOR(dev->devt))
Kay Sieversad729562009-10-28 19:51:37 +01001008 devtmpfs_delete_node(dev);
1009 if (MAJOR(dev->devt))
Dan Williamse105b8b2008-04-21 10:51:07 -07001010 device_remove_sys_dev_entry(dev);
1011 devtattrError:
1012 if (MAJOR(dev->devt))
Tejun Heoad6a1e12007-06-14 03:45:17 +09001013 device_remove_file(dev, &devt_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +02001014 ueventattrError:
Tejun Heoad6a1e12007-06-14 03:45:17 +09001015 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001016 attrError:
Kay Sievers312c0042005-11-16 09:00:00 +01001017 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 kobject_del(&dev->kobj);
1019 Error:
Cornelia Huck63b69712008-01-21 16:09:44 +01001020 cleanup_device_parent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (parent)
1022 put_device(parent);
Kay Sievers5c8563d2009-05-28 14:24:07 -07001023name_error:
1024 kfree(dev->p);
1025 dev->p = NULL;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001026 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001030 * device_register - register a device with the system.
1031 * @dev: pointer to the device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001033 * This happens in two clean steps - initialize the device
1034 * and add it to the system. The two steps can be called
1035 * separately, but this is the easiest and most common.
1036 * I.e. you should only call the two helpers separately if
1037 * have a clearly defined need to use and refcount the device
1038 * before it is added to the hierarchy.
Cornelia Huck57394112008-09-03 18:26:40 +02001039 *
1040 * NOTE: _Never_ directly free @dev after calling this function, even
1041 * if it returned an error! Always use put_device() to give up the
1042 * reference initialized in this function instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044int device_register(struct device *dev)
1045{
1046 device_initialize(dev);
1047 return device_add(dev);
1048}
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001051 * get_device - increment reference count for device.
1052 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001054 * This simply forwards the call to kobject_get(), though
1055 * we do take care to provide for the case that we get a NULL
1056 * pointer passed in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001058struct device *get_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
1060 return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
1061}
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001064 * put_device - decrement reference count.
1065 * @dev: device in question.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001067void put_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001069 /* might_sleep(); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (dev)
1071 kobject_put(&dev->kobj);
1072}
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001075 * device_del - delete device from system.
1076 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001078 * This is the first part of the device unregistration
1079 * sequence. This removes the device from the lists we control
1080 * from here, has it removed from the other driver model
1081 * subsystems it was added to in device_add(), and removes it
1082 * from the kobject hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001084 * NOTE: this should be called manually _iff_ device_add() was
1085 * also called manually.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001087void device_del(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001089 struct device *parent = dev->parent;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001090 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Alan Sternec0676ee2008-12-05 14:10:31 -05001092 /* Notify clients of device removal. This call must come
1093 * before dpm_sysfs_remove().
1094 */
1095 if (dev->bus)
1096 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
1097 BUS_NOTIFY_DEL_DEVICE, dev);
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001098 device_pm_remove(dev);
Alan Stern3b98aea2008-08-07 13:06:12 -04001099 dpm_sysfs_remove(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001101 klist_del(&dev->p->knode_parent);
Dan Williamse105b8b2008-04-21 10:51:07 -07001102 if (MAJOR(dev->devt)) {
Kay Sievers2b2af542009-04-30 15:23:42 +02001103 devtmpfs_delete_node(dev);
Dan Williamse105b8b2008-04-21 10:51:07 -07001104 device_remove_sys_dev_entry(dev);
Tejun Heoad6a1e12007-06-14 03:45:17 +09001105 device_remove_file(dev, &devt_attr);
Dan Williamse105b8b2008-04-21 10:51:07 -07001106 }
Kay Sieversb9d9c822006-06-15 15:31:56 +02001107 if (dev->class) {
Kay Sieversda231fd2007-11-21 17:29:15 +01001108 device_remove_class_symlinks(dev);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001109
Dave Youngf75b1c62008-05-28 09:28:39 -07001110 mutex_lock(&dev->class->p->class_mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001111 /* notify any interfaces that the device is now gone */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -07001112 list_for_each_entry(class_intf,
1113 &dev->class->p->class_interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001114 if (class_intf->remove_dev)
1115 class_intf->remove_dev(dev, class_intf);
1116 /* remove the device from the class list */
Tejun Heo5a3ceb82008-08-25 19:50:19 +02001117 klist_del(&dev->knode_class);
Dave Youngf75b1c62008-05-28 09:28:39 -07001118 mutex_unlock(&dev->class->p->class_mutex);
Kay Sieversb9d9c822006-06-15 15:31:56 +02001119 }
Tejun Heoad6a1e12007-06-14 03:45:17 +09001120 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001121 device_remove_attrs(dev);
Benjamin Herrenschmidt28953532006-11-08 19:46:14 -08001122 bus_remove_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Tejun Heo2f8d16a2007-03-09 19:34:19 +09001124 /*
1125 * Some platform devices are driven without driver attached
1126 * and managed resources may have been acquired. Make sure
1127 * all resources are released.
1128 */
1129 devres_release_all(dev);
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 /* Notify the platform of the removal, in case they
1132 * need to do anything...
1133 */
1134 if (platform_notify_remove)
1135 platform_notify_remove(dev);
Kay Sievers312c0042005-11-16 09:00:00 +01001136 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Kay Sieversda231fd2007-11-21 17:29:15 +01001137 cleanup_device_parent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 kobject_del(&dev->kobj);
Kay Sieversda231fd2007-11-21 17:29:15 +01001139 put_device(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140}
1141
1142/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001143 * device_unregister - unregister device from system.
1144 * @dev: device going away.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001146 * We do this in two parts, like we do device_register(). First,
1147 * we remove it from all the subsystems with device_del(), then
1148 * we decrement the reference count via put_device(). If that
1149 * is the final reference count, the device will be cleaned up
1150 * via device_release() above. Otherwise, the structure will
1151 * stick around until the final reference to the device is dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001153void device_unregister(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001155 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 device_del(dev);
1157 put_device(dev);
1158}
1159
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001160static struct device *next_device(struct klist_iter *i)
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001161{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001162 struct klist_node *n = klist_next(i);
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001163 struct device *dev = NULL;
1164 struct device_private *p;
1165
1166 if (n) {
1167 p = to_device_private_parent(n);
1168 dev = p->device;
1169 }
1170 return dev;
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001171}
1172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173/**
Kay Sieverse454cea2009-09-18 23:01:12 +02001174 * device_get_devnode - path of device node file
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001175 * @dev: device
Kay Sieverse454cea2009-09-18 23:01:12 +02001176 * @mode: returned file access mode
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001177 * @tmp: possibly allocated string
1178 *
1179 * Return the relative path of a possible device node.
1180 * Non-default names may need to allocate a memory to compose
1181 * a name. This memory is returned in tmp and needs to be
1182 * freed by the caller.
1183 */
Kay Sieverse454cea2009-09-18 23:01:12 +02001184const char *device_get_devnode(struct device *dev,
1185 mode_t *mode, const char **tmp)
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001186{
1187 char *s;
1188
1189 *tmp = NULL;
1190
1191 /* the device type may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02001192 if (dev->type && dev->type->devnode)
1193 *tmp = dev->type->devnode(dev, mode);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001194 if (*tmp)
1195 return *tmp;
1196
1197 /* the class may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02001198 if (dev->class && dev->class->devnode)
1199 *tmp = dev->class->devnode(dev, mode);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001200 if (*tmp)
1201 return *tmp;
1202
1203 /* return name without allocation, tmp == NULL */
1204 if (strchr(dev_name(dev), '!') == NULL)
1205 return dev_name(dev);
1206
1207 /* replace '!' in the name with '/' */
1208 *tmp = kstrdup(dev_name(dev), GFP_KERNEL);
1209 if (!*tmp)
1210 return NULL;
1211 while ((s = strchr(*tmp, '!')))
1212 s[0] = '/';
1213 return *tmp;
1214}
1215
1216/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001217 * device_for_each_child - device child iterator.
1218 * @parent: parent struct device.
1219 * @data: data for the callback.
1220 * @fn: function to be called for each device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001222 * Iterate over @parent's child devices, and call @fn for each,
1223 * passing it @data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001225 * We check the return of @fn each time. If it returns anything
1226 * other than 0, we break out and return that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001228int device_for_each_child(struct device *parent, void *data,
1229 int (*fn)(struct device *dev, void *data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001231 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001232 struct device *child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 int error = 0;
1234
Greg Kroah-Hartman014c90d2009-04-15 16:00:12 -07001235 if (!parent->p)
1236 return 0;
1237
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001238 klist_iter_init(&parent->p->klist_children, &i);
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001239 while ((child = next_device(&i)) && !error)
1240 error = fn(child, data);
1241 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return error;
1243}
1244
Cornelia Huck5ab69982006-11-16 15:42:07 +01001245/**
1246 * device_find_child - device iterator for locating a particular device.
1247 * @parent: parent struct device
1248 * @data: Data to pass to match function
1249 * @match: Callback function to check device
1250 *
1251 * This is similar to the device_for_each_child() function above, but it
1252 * returns a reference to a device that is 'found' for later use, as
1253 * determined by the @match callback.
1254 *
1255 * The callback should return 0 if the device doesn't match and non-zero
1256 * if it does. If the callback returns non-zero and a reference to the
1257 * current device can be obtained, this function will return to the caller
1258 * and not iterate over any more devices.
1259 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001260struct device *device_find_child(struct device *parent, void *data,
1261 int (*match)(struct device *dev, void *data))
Cornelia Huck5ab69982006-11-16 15:42:07 +01001262{
1263 struct klist_iter i;
1264 struct device *child;
1265
1266 if (!parent)
1267 return NULL;
1268
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001269 klist_iter_init(&parent->p->klist_children, &i);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001270 while ((child = next_device(&i)))
1271 if (match(child, data) && get_device(child))
1272 break;
1273 klist_iter_exit(&i);
1274 return child;
1275}
1276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277int __init devices_init(void)
1278{
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -06001279 devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
1280 if (!devices_kset)
1281 return -ENOMEM;
Dan Williamse105b8b2008-04-21 10:51:07 -07001282 dev_kobj = kobject_create_and_add("dev", NULL);
1283 if (!dev_kobj)
1284 goto dev_kobj_err;
1285 sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj);
1286 if (!sysfs_dev_block_kobj)
1287 goto block_kobj_err;
1288 sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj);
1289 if (!sysfs_dev_char_kobj)
1290 goto char_kobj_err;
1291
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -06001292 return 0;
Dan Williamse105b8b2008-04-21 10:51:07 -07001293
1294 char_kobj_err:
1295 kobject_put(sysfs_dev_block_kobj);
1296 block_kobj_err:
1297 kobject_put(dev_kobj);
1298 dev_kobj_err:
1299 kset_unregister(devices_kset);
1300 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
1303EXPORT_SYMBOL_GPL(device_for_each_child);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001304EXPORT_SYMBOL_GPL(device_find_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306EXPORT_SYMBOL_GPL(device_initialize);
1307EXPORT_SYMBOL_GPL(device_add);
1308EXPORT_SYMBOL_GPL(device_register);
1309
1310EXPORT_SYMBOL_GPL(device_del);
1311EXPORT_SYMBOL_GPL(device_unregister);
1312EXPORT_SYMBOL_GPL(get_device);
1313EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315EXPORT_SYMBOL_GPL(device_create_file);
1316EXPORT_SYMBOL_GPL(device_remove_file);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001317
Karthigan Srinivasan7f100d12011-04-18 16:16:52 -05001318struct root_device {
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001319 struct device dev;
1320 struct module *owner;
1321};
1322
Ferenc Wagner481e2072011-01-07 15:17:47 +01001323inline struct root_device *to_root_device(struct device *d)
1324{
1325 return container_of(d, struct root_device, dev);
1326}
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001327
1328static void root_device_release(struct device *dev)
1329{
1330 kfree(to_root_device(dev));
1331}
1332
1333/**
1334 * __root_device_register - allocate and register a root device
1335 * @name: root device name
1336 * @owner: owner module of the root device, usually THIS_MODULE
1337 *
1338 * This function allocates a root device and registers it
1339 * using device_register(). In order to free the returned
1340 * device, use root_device_unregister().
1341 *
1342 * Root devices are dummy devices which allow other devices
1343 * to be grouped under /sys/devices. Use this function to
1344 * allocate a root device and then use it as the parent of
1345 * any device which should appear under /sys/devices/{name}
1346 *
1347 * The /sys/devices/{name} directory will also contain a
1348 * 'module' symlink which points to the @owner directory
1349 * in sysfs.
1350 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02001351 * Returns &struct device pointer on success, or ERR_PTR() on error.
1352 *
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001353 * Note: You probably want to use root_device_register().
1354 */
1355struct device *__root_device_register(const char *name, struct module *owner)
1356{
1357 struct root_device *root;
1358 int err = -ENOMEM;
1359
1360 root = kzalloc(sizeof(struct root_device), GFP_KERNEL);
1361 if (!root)
1362 return ERR_PTR(err);
1363
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -07001364 err = dev_set_name(&root->dev, "%s", name);
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001365 if (err) {
1366 kfree(root);
1367 return ERR_PTR(err);
1368 }
1369
1370 root->dev.release = root_device_release;
1371
1372 err = device_register(&root->dev);
1373 if (err) {
1374 put_device(&root->dev);
1375 return ERR_PTR(err);
1376 }
1377
Christoph Egger1d9e8822010-05-17 16:57:58 +02001378#ifdef CONFIG_MODULES /* gotta find a "cleaner" way to do this */
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001379 if (owner) {
1380 struct module_kobject *mk = &owner->mkobj;
1381
1382 err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module");
1383 if (err) {
1384 device_unregister(&root->dev);
1385 return ERR_PTR(err);
1386 }
1387 root->owner = owner;
1388 }
1389#endif
1390
1391 return &root->dev;
1392}
1393EXPORT_SYMBOL_GPL(__root_device_register);
1394
1395/**
1396 * root_device_unregister - unregister and free a root device
Randy Dunlap7cbcf222009-01-20 16:29:13 -08001397 * @dev: device going away
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001398 *
1399 * This function unregisters and cleans up a device that was created by
1400 * root_device_register().
1401 */
1402void root_device_unregister(struct device *dev)
1403{
1404 struct root_device *root = to_root_device(dev);
1405
1406 if (root->owner)
1407 sysfs_remove_link(&root->dev.kobj, "module");
1408
1409 device_unregister(dev);
1410}
1411EXPORT_SYMBOL_GPL(root_device_unregister);
1412
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001413
1414static void device_create_release(struct device *dev)
1415{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001416 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001417 kfree(dev);
1418}
1419
1420/**
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001421 * device_create_vargs - creates a device and registers it with sysfs
1422 * @class: pointer to the struct class that this device should be registered to
1423 * @parent: pointer to the parent struct device of this new device, if any
1424 * @devt: the dev_t for the char device to be added
1425 * @drvdata: the data to be added to the device for callbacks
1426 * @fmt: string for the device's name
1427 * @args: va_list for the device's name
1428 *
1429 * This function can be used by char device classes. A struct device
1430 * will be created in sysfs, registered to the specified class.
1431 *
1432 * A "dev" file will be created, showing the dev_t for the device, if
1433 * the dev_t is not 0,0.
1434 * If a pointer to a parent struct device is passed in, the newly created
1435 * struct device will be a child of that device in sysfs.
1436 * The pointer to the struct device will be returned from the call.
1437 * Any further sysfs files that might be required can be created using this
1438 * pointer.
1439 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02001440 * Returns &struct device pointer on success, or ERR_PTR() on error.
1441 *
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001442 * Note: the struct class passed to this function must have previously
1443 * been created with a call to class_create().
1444 */
1445struct device *device_create_vargs(struct class *class, struct device *parent,
1446 dev_t devt, void *drvdata, const char *fmt,
1447 va_list args)
1448{
1449 struct device *dev = NULL;
1450 int retval = -ENODEV;
1451
1452 if (class == NULL || IS_ERR(class))
1453 goto error;
1454
1455 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1456 if (!dev) {
1457 retval = -ENOMEM;
1458 goto error;
1459 }
1460
1461 dev->devt = devt;
1462 dev->class = class;
1463 dev->parent = parent;
1464 dev->release = device_create_release;
1465 dev_set_drvdata(dev, drvdata);
1466
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001467 retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
1468 if (retval)
1469 goto error;
1470
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001471 retval = device_register(dev);
1472 if (retval)
1473 goto error;
1474
1475 return dev;
1476
1477error:
Cornelia Huck286661b2008-09-03 18:26:41 +02001478 put_device(dev);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001479 return ERR_PTR(retval);
1480}
1481EXPORT_SYMBOL_GPL(device_create_vargs);
1482
1483/**
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001484 * device_create - creates a device and registers it with sysfs
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001485 * @class: pointer to the struct class that this device should be registered to
1486 * @parent: pointer to the parent struct device of this new device, if any
1487 * @devt: the dev_t for the char device to be added
1488 * @drvdata: the data to be added to the device for callbacks
1489 * @fmt: string for the device's name
1490 *
1491 * This function can be used by char device classes. A struct device
1492 * will be created in sysfs, registered to the specified class.
1493 *
1494 * A "dev" file will be created, showing the dev_t for the device, if
1495 * the dev_t is not 0,0.
1496 * If a pointer to a parent struct device is passed in, the newly created
1497 * struct device will be a child of that device in sysfs.
1498 * The pointer to the struct device will be returned from the call.
1499 * Any further sysfs files that might be required can be created using this
1500 * pointer.
1501 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02001502 * Returns &struct device pointer on success, or ERR_PTR() on error.
1503 *
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001504 * Note: the struct class passed to this function must have previously
1505 * been created with a call to class_create().
1506 */
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001507struct device *device_create(struct class *class, struct device *parent,
1508 dev_t devt, void *drvdata, const char *fmt, ...)
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001509{
1510 va_list vargs;
1511 struct device *dev;
1512
1513 va_start(vargs, fmt);
1514 dev = device_create_vargs(class, parent, devt, drvdata, fmt, vargs);
1515 va_end(vargs);
1516 return dev;
1517}
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001518EXPORT_SYMBOL_GPL(device_create);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001519
Dave Youngcd354492008-01-28 16:56:11 +08001520static int __match_devt(struct device *dev, void *data)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001521{
Dave Youngcd354492008-01-28 16:56:11 +08001522 dev_t *devt = data;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001523
Dave Youngcd354492008-01-28 16:56:11 +08001524 return dev->devt == *devt;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001525}
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001526
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001527/**
1528 * device_destroy - removes a device that was created with device_create()
1529 * @class: pointer to the struct class that this device was registered with
1530 * @devt: the dev_t of the device that was previously registered
1531 *
1532 * This call unregisters and cleans up a device that was created with a
1533 * call to device_create().
1534 */
1535void device_destroy(struct class *class, dev_t devt)
1536{
1537 struct device *dev;
1538
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -04001539 dev = class_find_device(class, NULL, &devt, __match_devt);
Dave Youngcd354492008-01-28 16:56:11 +08001540 if (dev) {
1541 put_device(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001542 device_unregister(dev);
Dave Youngcd354492008-01-28 16:56:11 +08001543 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001544}
1545EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001546
1547/**
1548 * device_rename - renames a device
1549 * @dev: the pointer to the struct device to be renamed
1550 * @new_name: the new name of the device
Eric W. Biederman030c1d22008-05-08 14:41:00 -07001551 *
1552 * It is the responsibility of the caller to provide mutual
1553 * exclusion between two different calls of device_rename
1554 * on the same device to ensure that new_name is valid and
1555 * won't conflict with other devices.
Michael Ellermanc6c0ac62010-11-25 09:44:07 +11001556 *
Timur Tabia5462512010-12-13 14:08:52 -06001557 * Note: Don't call this function. Currently, the networking layer calls this
1558 * function, but that will change. The following text from Kay Sievers offers
1559 * some insight:
1560 *
1561 * Renaming devices is racy at many levels, symlinks and other stuff are not
1562 * replaced atomically, and you get a "move" uevent, but it's not easy to
1563 * connect the event to the old and new device. Device nodes are not renamed at
1564 * all, there isn't even support for that in the kernel now.
1565 *
1566 * In the meantime, during renaming, your target name might be taken by another
1567 * driver, creating conflicts. Or the old name is taken directly after you
1568 * renamed it -- then you get events for the same DEVPATH, before you even see
1569 * the "move" event. It's just a mess, and nothing new should ever rely on
1570 * kernel device renaming. Besides that, it's not even implemented now for
1571 * other things than (driver-core wise very simple) network devices.
1572 *
1573 * We are currently about to change network renaming in udev to completely
1574 * disallow renaming of devices in the same namespace as the kernel uses,
1575 * because we can't solve the problems properly, that arise with swapping names
1576 * of multiple interfaces without races. Means, renaming of eth[0-9]* will only
1577 * be allowed to some other name than eth[0-9]*, for the aforementioned
1578 * reasons.
1579 *
1580 * Make up a "real" name in the driver before you register anything, or add
1581 * some other attributes for userspace to find the device, or use udev to add
1582 * symlinks -- but never rename kernel devices later, it's a complete mess. We
1583 * don't even want to get into that and try to implement the missing pieces in
1584 * the core. We really have other pieces to fix in the driver core mess. :)
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001585 */
Johannes Berg6937e8f2010-08-05 17:38:18 +02001586int device_rename(struct device *dev, const char *new_name)
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001587{
1588 char *old_class_name = NULL;
1589 char *new_class_name = NULL;
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001590 char *old_device_name = NULL;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001591 int error;
1592
1593 dev = get_device(dev);
1594 if (!dev)
1595 return -EINVAL;
1596
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001597 pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -08001598 __func__, new_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001599
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001600 old_device_name = kstrdup(dev_name(dev), GFP_KERNEL);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001601 if (!old_device_name) {
1602 error = -ENOMEM;
1603 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001604 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001605
Eric W. Biedermanf349cf32010-03-30 11:31:29 -07001606 if (dev->class) {
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001607 error = sysfs_rename_link(&dev->class->p->subsys.kobj,
Eric W. Biedermanf349cf32010-03-30 11:31:29 -07001608 &dev->kobj, old_device_name, new_name);
1609 if (error)
1610 goto out;
1611 }
Kay Sievers39aba962010-09-04 22:33:14 -07001612
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001613 error = kobject_rename(&dev->kobj, new_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001614 if (error)
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001615 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001616
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001617out:
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001618 put_device(dev);
1619
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001620 kfree(new_class_name);
Jesper Juhl952ab432006-09-28 23:56:01 +02001621 kfree(old_class_name);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001622 kfree(old_device_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001623
1624 return error;
1625}
Johannes Berga2807db2007-02-28 12:38:31 +01001626EXPORT_SYMBOL_GPL(device_rename);
Cornelia Huck8a824722006-11-20 17:07:51 +01001627
1628static int device_move_class_links(struct device *dev,
1629 struct device *old_parent,
1630 struct device *new_parent)
1631{
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001632 int error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001633
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001634 if (old_parent)
1635 sysfs_remove_link(&dev->kobj, "device");
1636 if (new_parent)
1637 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1638 "device");
1639 return error;
Cornelia Huck8a824722006-11-20 17:07:51 +01001640}
1641
1642/**
1643 * device_move - moves a device to a new parent
1644 * @dev: the pointer to the struct device to be moved
Cornelia Huckc744aea2007-01-08 20:16:44 +01001645 * @new_parent: the new parent of the device (can by NULL)
Cornelia Huckffa6a702009-03-04 12:44:00 +01001646 * @dpm_order: how to reorder the dpm_list
Cornelia Huck8a824722006-11-20 17:07:51 +01001647 */
Cornelia Huckffa6a702009-03-04 12:44:00 +01001648int device_move(struct device *dev, struct device *new_parent,
1649 enum dpm_order dpm_order)
Cornelia Huck8a824722006-11-20 17:07:51 +01001650{
1651 int error;
1652 struct device *old_parent;
Cornelia Huckc744aea2007-01-08 20:16:44 +01001653 struct kobject *new_parent_kobj;
Cornelia Huck8a824722006-11-20 17:07:51 +01001654
1655 dev = get_device(dev);
1656 if (!dev)
1657 return -EINVAL;
1658
Cornelia Huckffa6a702009-03-04 12:44:00 +01001659 device_pm_lock();
Cornelia Huck8a824722006-11-20 17:07:51 +01001660 new_parent = get_device(new_parent);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001661 new_parent_kobj = get_device_parent(dev, new_parent);
Cornelia Huck63b69712008-01-21 16:09:44 +01001662
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001663 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev),
1664 __func__, new_parent ? dev_name(new_parent) : "<NULL>");
Cornelia Huckc744aea2007-01-08 20:16:44 +01001665 error = kobject_move(&dev->kobj, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001666 if (error) {
Cornelia Huck63b69712008-01-21 16:09:44 +01001667 cleanup_glue_dir(dev, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001668 put_device(new_parent);
1669 goto out;
1670 }
1671 old_parent = dev->parent;
1672 dev->parent = new_parent;
1673 if (old_parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001674 klist_remove(&dev->p->knode_parent);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001675 if (new_parent) {
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001676 klist_add_tail(&dev->p->knode_parent,
1677 &new_parent->p->klist_children);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001678 set_dev_node(dev, dev_to_node(new_parent));
1679 }
1680
Cornelia Huck8a824722006-11-20 17:07:51 +01001681 if (!dev->class)
1682 goto out_put;
1683 error = device_move_class_links(dev, old_parent, new_parent);
1684 if (error) {
1685 /* We ignore errors on cleanup since we're hosed anyway... */
1686 device_move_class_links(dev, new_parent, old_parent);
1687 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
Cornelia Huckc744aea2007-01-08 20:16:44 +01001688 if (new_parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001689 klist_remove(&dev->p->knode_parent);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001690 dev->parent = old_parent;
1691 if (old_parent) {
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001692 klist_add_tail(&dev->p->knode_parent,
1693 &old_parent->p->klist_children);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001694 set_dev_node(dev, dev_to_node(old_parent));
1695 }
Cornelia Huck8a824722006-11-20 17:07:51 +01001696 }
Cornelia Huck63b69712008-01-21 16:09:44 +01001697 cleanup_glue_dir(dev, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001698 put_device(new_parent);
1699 goto out;
1700 }
Cornelia Huckffa6a702009-03-04 12:44:00 +01001701 switch (dpm_order) {
1702 case DPM_ORDER_NONE:
1703 break;
1704 case DPM_ORDER_DEV_AFTER_PARENT:
1705 device_pm_move_after(dev, new_parent);
1706 break;
1707 case DPM_ORDER_PARENT_BEFORE_DEV:
1708 device_pm_move_before(new_parent, dev);
1709 break;
1710 case DPM_ORDER_DEV_LAST:
1711 device_pm_move_last(dev);
1712 break;
1713 }
Cornelia Huck8a824722006-11-20 17:07:51 +01001714out_put:
1715 put_device(old_parent);
1716out:
Cornelia Huckffa6a702009-03-04 12:44:00 +01001717 device_pm_unlock();
Cornelia Huck8a824722006-11-20 17:07:51 +01001718 put_device(dev);
1719 return error;
1720}
Cornelia Huck8a824722006-11-20 17:07:51 +01001721EXPORT_SYMBOL_GPL(device_move);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001722
1723/**
1724 * device_shutdown - call ->shutdown() on each device to shutdown.
1725 */
1726void device_shutdown(void)
1727{
Hugh Daschbach62458382010-03-22 10:36:37 -07001728 struct device *dev;
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001729
Hugh Daschbach62458382010-03-22 10:36:37 -07001730 spin_lock(&devices_kset->list_lock);
1731 /*
1732 * Walk the devices list backward, shutting down each in turn.
1733 * Beware that device unplug events may also start pulling
1734 * devices offline, even as the system is shutting down.
1735 */
1736 while (!list_empty(&devices_kset->list)) {
1737 dev = list_entry(devices_kset->list.prev, struct device,
1738 kobj.entry);
1739 get_device(dev);
1740 /*
1741 * Make sure the device is off the kset list, in the
1742 * event that dev->*->shutdown() doesn't remove it.
1743 */
1744 list_del_init(&dev->kobj.entry);
1745 spin_unlock(&devices_kset->list_lock);
Peter Chenaf8db152011-11-15 21:52:29 +01001746 /* Disable all device's runtime power management */
1747 pm_runtime_disable(dev);
Hugh Daschbach62458382010-03-22 10:36:37 -07001748
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001749 if (dev->bus && dev->bus->shutdown) {
1750 dev_dbg(dev, "shutdown\n");
1751 dev->bus->shutdown(dev);
1752 } else if (dev->driver && dev->driver->shutdown) {
1753 dev_dbg(dev, "shutdown\n");
1754 dev->driver->shutdown(dev);
1755 }
Hugh Daschbach62458382010-03-22 10:36:37 -07001756 put_device(dev);
1757
1758 spin_lock(&devices_kset->list_lock);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001759 }
Hugh Daschbach62458382010-03-22 10:36:37 -07001760 spin_unlock(&devices_kset->list_lock);
Shaohua Li401097e2009-05-12 13:37:57 -07001761 async_synchronize_full();
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001762}
Joe Perches99bcf212010-06-27 01:02:34 +00001763
1764/*
1765 * Device logging functions
1766 */
1767
1768#ifdef CONFIG_PRINTK
1769
Joe Perchescbc46632011-08-11 14:36:21 -04001770int __dev_printk(const char *level, const struct device *dev,
1771 struct va_format *vaf)
Joe Perches99bcf212010-06-27 01:02:34 +00001772{
1773 if (!dev)
1774 return printk("%s(NULL device *): %pV", level, vaf);
1775
1776 return printk("%s%s %s: %pV",
1777 level, dev_driver_string(dev), dev_name(dev), vaf);
1778}
Joe Perchescbc46632011-08-11 14:36:21 -04001779EXPORT_SYMBOL(__dev_printk);
Joe Perches99bcf212010-06-27 01:02:34 +00001780
1781int dev_printk(const char *level, const struct device *dev,
1782 const char *fmt, ...)
1783{
1784 struct va_format vaf;
1785 va_list args;
1786 int r;
1787
1788 va_start(args, fmt);
1789
1790 vaf.fmt = fmt;
1791 vaf.va = &args;
1792
1793 r = __dev_printk(level, dev, &vaf);
1794 va_end(args);
1795
1796 return r;
1797}
1798EXPORT_SYMBOL(dev_printk);
1799
1800#define define_dev_printk_level(func, kern_level) \
1801int func(const struct device *dev, const char *fmt, ...) \
1802{ \
1803 struct va_format vaf; \
1804 va_list args; \
1805 int r; \
1806 \
1807 va_start(args, fmt); \
1808 \
1809 vaf.fmt = fmt; \
1810 vaf.va = &args; \
1811 \
1812 r = __dev_printk(kern_level, dev, &vaf); \
1813 va_end(args); \
1814 \
1815 return r; \
1816} \
1817EXPORT_SYMBOL(func);
1818
1819define_dev_printk_level(dev_emerg, KERN_EMERG);
1820define_dev_printk_level(dev_alert, KERN_ALERT);
1821define_dev_printk_level(dev_crit, KERN_CRIT);
1822define_dev_printk_level(dev_err, KERN_ERR);
1823define_dev_printk_level(dev_warn, KERN_WARNING);
1824define_dev_printk_level(dev_notice, KERN_NOTICE);
1825define_dev_printk_level(_dev_info, KERN_INFO);
1826
1827#endif