blob: f1290cbd1350ebaa8d28e2c015cb403728374862 [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>
Matthew Wilcox6188e102008-04-18 22:21:05 -040023#include <linux/semaphore.h>
Dave Youngf75b1c62008-05-28 09:28:39 -070024#include <linux/mutex.h>
Shaohua Li401097e2009-05-12 13:37:57 -070025#include <linux/async.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include "base.h"
28#include "power/power.h"
29
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080030int (*platform_notify)(struct device *dev) = NULL;
31int (*platform_notify_remove)(struct device *dev) = NULL;
Dan Williamse105b8b2008-04-21 10:51:07 -070032static struct kobject *dev_kobj;
33struct kobject *sysfs_dev_char_kobj;
34struct kobject *sysfs_dev_block_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -080036#ifdef CONFIG_BLOCK
37static inline int device_is_not_partition(struct device *dev)
38{
39 return !(dev->type == &part_type);
40}
41#else
42static inline int device_is_not_partition(struct device *dev)
43{
44 return 1;
45}
46#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Alan Stern3e956372006-06-16 17:10:48 -040048/**
49 * dev_driver_string - Return a device's driver name, if at all possible
50 * @dev: struct device to get the name of
51 *
52 * Will return the device's driver's name if it is bound to a device. If
53 * the device is not bound to a device, it will return the name of the bus
54 * it is attached to. If it is not attached to a bus either, an empty
55 * string will be returned.
56 */
Jean Delvarebf9ca692008-07-30 12:29:21 -070057const char *dev_driver_string(const struct device *dev)
Alan Stern3e956372006-06-16 17:10:48 -040058{
Alan Stern35899722009-12-04 11:06:57 -050059 struct device_driver *drv;
60
61 /* dev->driver can change to NULL underneath us because of unbinding,
62 * so be careful about accessing it. dev->bus and dev->class should
63 * never change once they are set, so they don't need special care.
64 */
65 drv = ACCESS_ONCE(dev->driver);
66 return drv ? drv->name :
Jean Delvarea456b702007-03-09 16:33:10 +010067 (dev->bus ? dev->bus->name :
68 (dev->class ? dev->class->name : ""));
Alan Stern3e956372006-06-16 17:10:48 -040069}
Matthew Wilcox310a9222006-09-23 23:35:04 -060070EXPORT_SYMBOL(dev_driver_string);
Alan Stern3e956372006-06-16 17:10:48 -040071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define to_dev(obj) container_of(obj, struct device, kobj)
73#define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
74
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080075static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
76 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080078 struct device_attribute *dev_attr = to_dev_attr(attr);
79 struct device *dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050080 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 if (dev_attr->show)
Yani Ioannou54b6f352005-05-17 06:39:34 -040083 ret = dev_attr->show(dev, dev_attr, buf);
Andrew Morton815d2d52008-03-04 15:09:07 -080084 if (ret >= (ssize_t)PAGE_SIZE) {
85 print_symbol("dev_attr_show: %s returned bad count\n",
86 (unsigned long)dev_attr->show);
87 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return ret;
89}
90
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080091static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
92 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080094 struct device_attribute *dev_attr = to_dev_attr(attr);
95 struct device *dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050096 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 if (dev_attr->store)
Yani Ioannou54b6f352005-05-17 06:39:34 -040099 ret = dev_attr->store(dev, dev_attr, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return ret;
101}
102
103static struct sysfs_ops dev_sysfs_ops = {
104 .show = dev_attr_show,
105 .store = dev_attr_store,
106};
107
108
109/**
110 * device_release - free device structure.
111 * @kobj: device's kobject.
112 *
113 * This is called once the reference count for the object
114 * reaches 0. We forward the call to the device's release
115 * method, which should handle actually freeing the structure.
116 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800117static void device_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800119 struct device *dev = to_dev(kobj);
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800120 struct device_private *p = dev->p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 if (dev->release)
123 dev->release(dev);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200124 else if (dev->type && dev->type->release)
125 dev->type->release(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700126 else if (dev->class && dev->class->dev_release)
127 dev->class->dev_release(dev);
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700128 else
129 WARN(1, KERN_ERR "Device '%s' does not have a release() "
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800130 "function, it is broken and must be fixed.\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100131 dev_name(dev));
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800132 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600135static struct kobj_type device_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .release = device_release,
137 .sysfs_ops = &dev_sysfs_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138};
139
140
Kay Sievers312c0042005-11-16 09:00:00 +0100141static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 struct kobj_type *ktype = get_ktype(kobj);
144
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600145 if (ktype == &device_ktype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 struct device *dev = to_dev(kobj);
147 if (dev->bus)
148 return 1;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700149 if (dev->class)
150 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
152 return 0;
153}
154
Kay Sievers312c0042005-11-16 09:00:00 +0100155static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 struct device *dev = to_dev(kobj);
158
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700159 if (dev->bus)
160 return dev->bus->name;
161 if (dev->class)
162 return dev->class->name;
163 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Kay Sievers7eff2e72007-08-14 15:15:12 +0200166static int dev_uevent(struct kset *kset, struct kobject *kobj,
167 struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 struct device *dev = to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 int retval = 0;
171
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200172 /* add device node properties if present */
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700173 if (MAJOR(dev->devt)) {
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200174 const char *tmp;
175 const char *name;
Kay Sieverse454cea2009-09-18 23:01:12 +0200176 mode_t mode = 0;
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200177
Kay Sievers7eff2e72007-08-14 15:15:12 +0200178 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
179 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
Kay Sieverse454cea2009-09-18 23:01:12 +0200180 name = device_get_devnode(dev, &mode, &tmp);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200181 if (name) {
182 add_uevent_var(env, "DEVNAME=%s", name);
183 kfree(tmp);
Kay Sieverse454cea2009-09-18 23:01:12 +0200184 if (mode)
185 add_uevent_var(env, "DEVMODE=%#o", mode & 0777);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200186 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700187 }
188
Kay Sievers414264f2007-03-12 21:08:57 +0100189 if (dev->type && dev->type->name)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200190 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
Kay Sievers414264f2007-03-12 21:08:57 +0100191
Kay Sievers239378f2006-10-07 21:54:55 +0200192 if (dev->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200193 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200194
Kay Sieversa87cb2a2006-09-14 11:23:28 +0200195#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sievers239378f2006-10-07 21:54:55 +0200196 if (dev->class) {
197 struct device *parent = dev->parent;
198
199 /* find first bus device in parent chain */
200 while (parent && !parent->bus)
201 parent = parent->parent;
202 if (parent && parent->bus) {
203 const char *path;
204
205 path = kobject_get_path(&parent->kobj, GFP_KERNEL);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200206 if (path) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200207 add_uevent_var(env, "PHYSDEVPATH=%s", path);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200208 kfree(path);
209 }
Kay Sievers239378f2006-10-07 21:54:55 +0200210
Kay Sievers7eff2e72007-08-14 15:15:12 +0200211 add_uevent_var(env, "PHYSDEVBUS=%s", parent->bus->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200212
213 if (parent->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200214 add_uevent_var(env, "PHYSDEVDRIVER=%s",
215 parent->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200216 }
217 } else if (dev->bus) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200218 add_uevent_var(env, "PHYSDEVBUS=%s", dev->bus->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200219
220 if (dev->driver)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800221 add_uevent_var(env, "PHYSDEVDRIVER=%s",
222 dev->driver->name);
Kay Sieversd81d9d62006-08-13 06:17:09 +0200223 }
Kay Sievers239378f2006-10-07 21:54:55 +0200224#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Kay Sievers7eff2e72007-08-14 15:15:12 +0200226 /* have the bus specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100227 if (dev->bus && dev->bus->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200228 retval = dev->bus->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200229 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800230 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100231 dev_name(dev), __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
233
Kay Sievers7eff2e72007-08-14 15:15:12 +0200234 /* have the class specific function add its stuff */
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700235 if (dev->class && dev->class->dev_uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200236 retval = dev->class->dev_uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200237 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800238 pr_debug("device: '%s': %s: class uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100239 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800240 __func__, retval);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200241 }
242
Kay Sievers7eff2e72007-08-14 15:15:12 +0200243 /* have the device type specific fuction add its stuff */
Kay Sieversf9f852d2006-10-07 21:54:55 +0200244 if (dev->type && dev->type->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200245 retval = dev->type->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200246 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800247 pr_debug("device: '%s': %s: dev_type uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100248 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800249 __func__, retval);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700250 }
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return retval;
253}
254
Kay Sievers312c0042005-11-16 09:00:00 +0100255static struct kset_uevent_ops device_uevent_ops = {
256 .filter = dev_uevent_filter,
257 .name = dev_uevent_name,
258 .uevent = dev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259};
260
Kay Sievers16574dc2007-04-06 01:40:38 +0200261static ssize_t show_uevent(struct device *dev, struct device_attribute *attr,
262 char *buf)
263{
264 struct kobject *top_kobj;
265 struct kset *kset;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200266 struct kobj_uevent_env *env = NULL;
Kay Sievers16574dc2007-04-06 01:40:38 +0200267 int i;
268 size_t count = 0;
269 int retval;
270
271 /* search the kset, the device belongs to */
272 top_kobj = &dev->kobj;
Kay Sievers5c5daf62007-08-12 20:43:55 +0200273 while (!top_kobj->kset && top_kobj->parent)
274 top_kobj = top_kobj->parent;
Kay Sievers16574dc2007-04-06 01:40:38 +0200275 if (!top_kobj->kset)
276 goto out;
Kay Sievers5c5daf62007-08-12 20:43:55 +0200277
Kay Sievers16574dc2007-04-06 01:40:38 +0200278 kset = top_kobj->kset;
279 if (!kset->uevent_ops || !kset->uevent_ops->uevent)
280 goto out;
281
282 /* respect filter */
283 if (kset->uevent_ops && kset->uevent_ops->filter)
284 if (!kset->uevent_ops->filter(kset, &dev->kobj))
285 goto out;
286
Kay Sievers7eff2e72007-08-14 15:15:12 +0200287 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
288 if (!env)
Greg Kroah-Hartmanc7308c82007-05-02 14:14:11 +0200289 return -ENOMEM;
290
Kay Sievers16574dc2007-04-06 01:40:38 +0200291 /* let the kset specific function add its keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200292 retval = kset->uevent_ops->uevent(kset, &dev->kobj, env);
Kay Sievers16574dc2007-04-06 01:40:38 +0200293 if (retval)
294 goto out;
295
296 /* copy keys to file */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200297 for (i = 0; i < env->envp_idx; i++)
298 count += sprintf(&buf[count], "%s\n", env->envp[i]);
Kay Sievers16574dc2007-04-06 01:40:38 +0200299out:
Kay Sievers7eff2e72007-08-14 15:15:12 +0200300 kfree(env);
Kay Sievers16574dc2007-04-06 01:40:38 +0200301 return count;
302}
303
Kay Sieversa7fd6702005-10-01 14:49:43 +0200304static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
305 const char *buf, size_t count)
306{
Kay Sievers60a96a52007-07-08 22:29:26 +0200307 enum kobject_action action;
308
Kay Sievers5c5daf62007-08-12 20:43:55 +0200309 if (kobject_action_type(buf, count, &action) == 0) {
Kay Sievers60a96a52007-07-08 22:29:26 +0200310 kobject_uevent(&dev->kobj, action);
311 goto out;
312 }
313
314 dev_err(dev, "uevent: unsupported action-string; this will "
315 "be ignored in a future kernel version\n");
Kay Sievers312c0042005-11-16 09:00:00 +0100316 kobject_uevent(&dev->kobj, KOBJ_ADD);
Kay Sievers60a96a52007-07-08 22:29:26 +0200317out:
Kay Sieversa7fd6702005-10-01 14:49:43 +0200318 return count;
319}
320
Tejun Heoad6a1e12007-06-14 03:45:17 +0900321static struct device_attribute uevent_attr =
322 __ATTR(uevent, S_IRUGO | S_IWUSR, show_uevent, store_uevent);
323
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500324static int device_add_attributes(struct device *dev,
325 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700326{
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700327 int error = 0;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500328 int i;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700329
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500330 if (attrs) {
331 for (i = 0; attr_name(attrs[i]); i++) {
332 error = device_create_file(dev, &attrs[i]);
333 if (error)
334 break;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700335 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500336 if (error)
337 while (--i >= 0)
338 device_remove_file(dev, &attrs[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700339 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700340 return error;
341}
342
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500343static void device_remove_attributes(struct device *dev,
344 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700345{
346 int i;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500347
348 if (attrs)
349 for (i = 0; attr_name(attrs[i]); i++)
350 device_remove_file(dev, &attrs[i]);
351}
352
353static int device_add_groups(struct device *dev,
David Brownella4dbd672009-06-24 10:06:31 -0700354 const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500355{
356 int error = 0;
357 int i;
358
359 if (groups) {
360 for (i = 0; groups[i]; i++) {
361 error = sysfs_create_group(&dev->kobj, groups[i]);
362 if (error) {
363 while (--i >= 0)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800364 sysfs_remove_group(&dev->kobj,
365 groups[i]);
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500366 break;
367 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700368 }
369 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500370 return error;
371}
372
373static void device_remove_groups(struct device *dev,
David Brownella4dbd672009-06-24 10:06:31 -0700374 const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500375{
376 int i;
377
378 if (groups)
379 for (i = 0; groups[i]; i++)
380 sysfs_remove_group(&dev->kobj, groups[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700381}
382
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700383static int device_add_attrs(struct device *dev)
384{
385 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200386 struct device_type *type = dev->type;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500387 int error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700388
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500389 if (class) {
390 error = device_add_attributes(dev, class->dev_attrs);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200391 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500392 return error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700393 }
Kay Sieversf9f852d2006-10-07 21:54:55 +0200394
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500395 if (type) {
396 error = device_add_groups(dev, type->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200397 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500398 goto err_remove_class_attrs;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200399 }
400
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500401 error = device_add_groups(dev, dev->groups);
402 if (error)
403 goto err_remove_type_groups;
404
405 return 0;
406
407 err_remove_type_groups:
408 if (type)
409 device_remove_groups(dev, type->groups);
410 err_remove_class_attrs:
411 if (class)
412 device_remove_attributes(dev, class->dev_attrs);
413
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700414 return error;
415}
416
417static void device_remove_attrs(struct device *dev)
418{
419 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200420 struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700421
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500422 device_remove_groups(dev, dev->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200423
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500424 if (type)
425 device_remove_groups(dev, type->groups);
426
427 if (class)
428 device_remove_attributes(dev, class->dev_attrs);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700429}
430
431
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700432static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
433 char *buf)
434{
435 return print_dev_t(buf, dev->devt);
436}
437
Tejun Heoad6a1e12007-06-14 03:45:17 +0900438static struct device_attribute devt_attr =
439 __ATTR(dev, S_IRUGO, show_dev, NULL);
440
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600441/* kset to create /sys/devices/ */
442struct kset *devices_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800445 * device_create_file - create sysfs attribute file for device.
446 * @dev: device.
447 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800449int device_create_file(struct device *dev, struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 int error = 0;
Cornelia Huck0c98b192008-01-31 10:39:38 +0100452 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 error = sysfs_create_file(&dev->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return error;
455}
456
457/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800458 * device_remove_file - remove sysfs attribute file.
459 * @dev: device.
460 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800462void device_remove_file(struct device *dev, struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Cornelia Huck0c98b192008-01-31 10:39:38 +0100464 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 sysfs_remove_file(&dev->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700468/**
469 * device_create_bin_file - create sysfs binary attribute file for device.
470 * @dev: device.
471 * @attr: device binary attribute descriptor.
472 */
473int device_create_bin_file(struct device *dev, struct bin_attribute *attr)
474{
475 int error = -EINVAL;
476 if (dev)
477 error = sysfs_create_bin_file(&dev->kobj, attr);
478 return error;
479}
480EXPORT_SYMBOL_GPL(device_create_bin_file);
481
482/**
483 * device_remove_bin_file - remove sysfs binary attribute file
484 * @dev: device.
485 * @attr: device binary attribute descriptor.
486 */
487void device_remove_bin_file(struct device *dev, struct bin_attribute *attr)
488{
489 if (dev)
490 sysfs_remove_bin_file(&dev->kobj, attr);
491}
492EXPORT_SYMBOL_GPL(device_remove_bin_file);
493
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400494/**
Alan Stern523ded72007-04-26 00:12:04 -0700495 * device_schedule_callback_owner - helper to schedule a callback for a device
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400496 * @dev: device.
497 * @func: callback function to invoke later.
Alan Stern523ded72007-04-26 00:12:04 -0700498 * @owner: module owning the callback routine
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400499 *
500 * Attribute methods must not unregister themselves or their parent device
501 * (which would amount to the same thing). Attempts to do so will deadlock,
502 * since unregistration is mutually exclusive with driver callbacks.
503 *
504 * Instead methods can call this routine, which will attempt to allocate
505 * and schedule a workqueue request to call back @func with @dev as its
506 * argument in the workqueue's process context. @dev will be pinned until
507 * @func returns.
508 *
Alan Stern523ded72007-04-26 00:12:04 -0700509 * This routine is usually called via the inline device_schedule_callback(),
510 * which automatically sets @owner to THIS_MODULE.
511 *
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400512 * Returns 0 if the request was submitted, -ENOMEM if storage could not
Alan Stern523ded72007-04-26 00:12:04 -0700513 * be allocated, -ENODEV if a reference to @owner isn't available.
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400514 *
515 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
516 * underlying sysfs routine (since it is intended for use by attribute
517 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
518 */
Alan Stern523ded72007-04-26 00:12:04 -0700519int device_schedule_callback_owner(struct device *dev,
520 void (*func)(struct device *), struct module *owner)
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400521{
522 return sysfs_schedule_callback(&dev->kobj,
Alan Stern523ded72007-04-26 00:12:04 -0700523 (void (*)(void *)) func, dev, owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400524}
Alan Stern523ded72007-04-26 00:12:04 -0700525EXPORT_SYMBOL_GPL(device_schedule_callback_owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400526
James Bottomley34bb61f2005-09-06 16:56:51 -0700527static void klist_children_get(struct klist_node *n)
528{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800529 struct device_private *p = to_device_private_parent(n);
530 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700531
532 get_device(dev);
533}
534
535static void klist_children_put(struct klist_node *n)
536{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800537 struct device_private *p = to_device_private_parent(n);
538 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700539
540 put_device(dev);
541}
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800544 * device_initialize - init device structure.
545 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 *
Cornelia Huck57394112008-09-03 18:26:40 +0200547 * This prepares the device for use by other layers by initializing
548 * its fields.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800549 * It is the first half of device_register(), if called by
Cornelia Huck57394112008-09-03 18:26:40 +0200550 * that function, though it can also be called separately, so one
551 * may use @dev's fields. In particular, get_device()/put_device()
552 * may be used for reference counting of @dev after calling this
553 * function.
554 *
555 * NOTE: Use put_device() to give up your reference instead of freeing
556 * @dev directly once you have called this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558void device_initialize(struct device *dev)
559{
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600560 dev->kobj.kset = devices_kset;
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700561 kobject_init(&dev->kobj, &device_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 INIT_LIST_HEAD(&dev->dma_pools);
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -0800563 init_MUTEX(&dev->sem);
Tejun Heo9ac78492007-01-20 16:00:26 +0900564 spin_lock_init(&dev->devres_lock);
565 INIT_LIST_HEAD(&dev->devres_head);
David Brownell0ac85242005-09-12 19:39:34 -0700566 device_init_wakeup(dev, 0);
Alan Stern3b98aea2008-08-07 13:06:12 -0400567 device_pm_init(dev);
Christoph Hellwig87348132006-12-06 20:32:33 -0800568 set_dev_node(dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100571#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sieversda231fd2007-11-21 17:29:15 +0100572static struct kobject *get_device_parent(struct device *dev,
573 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100574{
Kay Sieversda231fd2007-11-21 17:29:15 +0100575 /* class devices without a parent live in /sys/class/<classname>/ */
Dmitry Torokhov3eb215d2007-10-07 12:22:21 -0400576 if (dev->class && (!parent || parent->class != dev->class))
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700577 return &dev->class->p->class_subsys.kobj;
Kay Sieversda231fd2007-11-21 17:29:15 +0100578 /* all other devices keep their parent */
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100579 else if (parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100580 return &parent->kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100581
Cornelia Huckc744aea2007-01-08 20:16:44 +0100582 return NULL;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100583}
Kay Sieversda231fd2007-11-21 17:29:15 +0100584
585static inline void cleanup_device_parent(struct device *dev) {}
Cornelia Huck63b69712008-01-21 16:09:44 +0100586static inline void cleanup_glue_dir(struct device *dev,
587 struct kobject *glue_dir) {}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100588#else
Kay Sievers86406242007-03-14 03:25:56 +0100589static struct kobject *virtual_device_parent(struct device *dev)
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700590{
Kay Sievers86406242007-03-14 03:25:56 +0100591 static struct kobject *virtual_dir = NULL;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700592
Kay Sievers86406242007-03-14 03:25:56 +0100593 if (!virtual_dir)
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -0800594 virtual_dir = kobject_create_and_add("virtual",
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600595 &devices_kset->kobj);
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700596
Kay Sievers86406242007-03-14 03:25:56 +0100597 return virtual_dir;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700598}
599
Kay Sieversda231fd2007-11-21 17:29:15 +0100600static struct kobject *get_device_parent(struct device *dev,
601 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100602{
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800603 int retval;
604
Kay Sievers86406242007-03-14 03:25:56 +0100605 if (dev->class) {
606 struct kobject *kobj = NULL;
607 struct kobject *parent_kobj;
608 struct kobject *k;
609
610 /*
611 * If we have no parent, we live in "virtual".
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100612 * Class-devices with a non class-device as parent, live
613 * in a "glue" directory to prevent namespace collisions.
Kay Sievers86406242007-03-14 03:25:56 +0100614 */
615 if (parent == NULL)
616 parent_kobj = virtual_device_parent(dev);
617 else if (parent->class)
618 return &parent->kobj;
619 else
620 parent_kobj = &parent->kobj;
621
622 /* find our class-directory at the parent and reference it */
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500623 spin_lock(&dev->class->p->class_dirs.list_lock);
624 list_for_each_entry(k, &dev->class->p->class_dirs.list, entry)
Kay Sievers86406242007-03-14 03:25:56 +0100625 if (k->parent == parent_kobj) {
626 kobj = kobject_get(k);
627 break;
628 }
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500629 spin_unlock(&dev->class->p->class_dirs.list_lock);
Kay Sievers86406242007-03-14 03:25:56 +0100630 if (kobj)
631 return kobj;
632
633 /* or create a new class-directory at the parent device */
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800634 k = kobject_create();
635 if (!k)
636 return NULL;
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500637 k->kset = &dev->class->p->class_dirs;
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700638 retval = kobject_add(k, parent_kobj, "%s", dev->class->name);
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800639 if (retval < 0) {
640 kobject_put(k);
641 return NULL;
642 }
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100643 /* do not emit an uevent for this simple "glue" directory */
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800644 return k;
Kay Sievers86406242007-03-14 03:25:56 +0100645 }
646
647 if (parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100648 return &parent->kobj;
649 return NULL;
650}
Kay Sieversda231fd2007-11-21 17:29:15 +0100651
Cornelia Huck63b69712008-01-21 16:09:44 +0100652static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
Kay Sieversda231fd2007-11-21 17:29:15 +0100653{
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100654 /* see if we live in a "glue" directory */
Cornelia Huckc1fe5392008-02-27 15:38:23 +0100655 if (!glue_dir || !dev->class ||
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500656 glue_dir->kset != &dev->class->p->class_dirs)
Kay Sieversda231fd2007-11-21 17:29:15 +0100657 return;
658
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100659 kobject_put(glue_dir);
Kay Sieversda231fd2007-11-21 17:29:15 +0100660}
Cornelia Huck63b69712008-01-21 16:09:44 +0100661
662static void cleanup_device_parent(struct device *dev)
663{
664 cleanup_glue_dir(dev, dev->kobj.parent);
665}
Cornelia Huckc744aea2007-01-08 20:16:44 +0100666#endif
Kay Sievers86406242007-03-14 03:25:56 +0100667
Cornelia Huck63b69712008-01-21 16:09:44 +0100668static void setup_parent(struct device *dev, struct device *parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100669{
670 struct kobject *kobj;
671 kobj = get_device_parent(dev, parent);
Cornelia Huckc744aea2007-01-08 20:16:44 +0100672 if (kobj)
673 dev->kobj.parent = kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100674}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100675
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700676static int device_add_class_symlinks(struct device *dev)
677{
678 int error;
679
680 if (!dev->class)
681 return 0;
Kay Sieversda231fd2007-11-21 17:29:15 +0100682
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700683 error = sysfs_create_link(&dev->kobj,
684 &dev->class->p->class_subsys.kobj,
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700685 "subsystem");
686 if (error)
687 goto out;
Kay Sieversda231fd2007-11-21 17:29:15 +0100688
689#ifdef CONFIG_SYSFS_DEPRECATED
690 /* stacked class devices need a symlink in the class directory */
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700691 if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800692 device_is_not_partition(dev)) {
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700693 error = sysfs_create_link(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100694 &dev->kobj, dev_name(dev));
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700695 if (error)
696 goto out_subsys;
697 }
Kay Sieversda231fd2007-11-21 17:29:15 +0100698
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800699 if (dev->parent && device_is_not_partition(dev)) {
Kay Sieversda231fd2007-11-21 17:29:15 +0100700 struct device *parent = dev->parent;
701 char *class_name;
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700702
Kay Sieversda231fd2007-11-21 17:29:15 +0100703 /*
704 * stacked class devices have the 'device' link
705 * pointing to the bus device instead of the parent
706 */
707 while (parent->class && !parent->bus && parent->parent)
708 parent = parent->parent;
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700709
Kay Sieversda231fd2007-11-21 17:29:15 +0100710 error = sysfs_create_link(&dev->kobj,
711 &parent->kobj,
712 "device");
713 if (error)
714 goto out_busid;
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700715
Kay Sieversda231fd2007-11-21 17:29:15 +0100716 class_name = make_class_name(dev->class->name,
717 &dev->kobj);
718 if (class_name)
719 error = sysfs_create_link(&dev->parent->kobj,
720 &dev->kobj, class_name);
721 kfree(class_name);
722 if (error)
723 goto out_device;
724 }
725 return 0;
726
727out_device:
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800728 if (dev->parent && device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +0100729 sysfs_remove_link(&dev->kobj, "device");
730out_busid:
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700731 if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800732 device_is_not_partition(dev))
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700733 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100734 dev_name(dev));
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700735#else
Kay Sieversda231fd2007-11-21 17:29:15 +0100736 /* link in the class directory pointing to the device */
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700737 error = sysfs_create_link(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100738 &dev->kobj, dev_name(dev));
Kay Sieversda231fd2007-11-21 17:29:15 +0100739 if (error)
740 goto out_subsys;
741
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800742 if (dev->parent && device_is_not_partition(dev)) {
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700743 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
744 "device");
745 if (error)
746 goto out_busid;
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700747 }
748 return 0;
749
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700750out_busid:
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100751 sysfs_remove_link(&dev->class->p->class_subsys.kobj, dev_name(dev));
Kay Sieversda231fd2007-11-21 17:29:15 +0100752#endif
753
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700754out_subsys:
755 sysfs_remove_link(&dev->kobj, "subsystem");
756out:
757 return error;
758}
759
760static void device_remove_class_symlinks(struct device *dev)
761{
762 if (!dev->class)
763 return;
Kay Sieversda231fd2007-11-21 17:29:15 +0100764
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700765#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800766 if (dev->parent && device_is_not_partition(dev)) {
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700767 char *class_name;
768
769 class_name = make_class_name(dev->class->name, &dev->kobj);
770 if (class_name) {
771 sysfs_remove_link(&dev->parent->kobj, class_name);
772 kfree(class_name);
773 }
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700774 sysfs_remove_link(&dev->kobj, "device");
775 }
Kay Sieversda231fd2007-11-21 17:29:15 +0100776
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700777 if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800778 device_is_not_partition(dev))
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700779 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100780 dev_name(dev));
Kay Sieversda231fd2007-11-21 17:29:15 +0100781#else
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800782 if (dev->parent && device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +0100783 sysfs_remove_link(&dev->kobj, "device");
784
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100785 sysfs_remove_link(&dev->class->p->class_subsys.kobj, dev_name(dev));
Kay Sieversda231fd2007-11-21 17:29:15 +0100786#endif
787
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700788 sysfs_remove_link(&dev->kobj, "subsystem");
789}
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791/**
Stephen Rothwell413c2392008-05-30 10:16:40 +1000792 * dev_set_name - set a device name
793 * @dev: device
Randy Dunlap46232362008-06-04 21:40:43 -0700794 * @fmt: format string for the device's name
Stephen Rothwell413c2392008-05-30 10:16:40 +1000795 */
796int dev_set_name(struct device *dev, const char *fmt, ...)
797{
798 va_list vargs;
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100799 int err;
Stephen Rothwell413c2392008-05-30 10:16:40 +1000800
801 va_start(vargs, fmt);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100802 err = kobject_set_name_vargs(&dev->kobj, fmt, vargs);
Stephen Rothwell413c2392008-05-30 10:16:40 +1000803 va_end(vargs);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100804 return err;
Stephen Rothwell413c2392008-05-30 10:16:40 +1000805}
806EXPORT_SYMBOL_GPL(dev_set_name);
807
808/**
Dan Williamse105b8b2008-04-21 10:51:07 -0700809 * device_to_dev_kobj - select a /sys/dev/ directory for the device
810 * @dev: device
811 *
812 * By default we select char/ for new entries. Setting class->dev_obj
813 * to NULL prevents an entry from being created. class->dev_kobj must
814 * be set (or cleared) before any devices are registered to the class
815 * otherwise device_create_sys_dev_entry() and
816 * device_remove_sys_dev_entry() will disagree about the the presence
817 * of the link.
818 */
819static struct kobject *device_to_dev_kobj(struct device *dev)
820{
821 struct kobject *kobj;
822
823 if (dev->class)
824 kobj = dev->class->dev_kobj;
825 else
826 kobj = sysfs_dev_char_kobj;
827
828 return kobj;
829}
830
831static int device_create_sys_dev_entry(struct device *dev)
832{
833 struct kobject *kobj = device_to_dev_kobj(dev);
834 int error = 0;
835 char devt_str[15];
836
837 if (kobj) {
838 format_dev_t(devt_str, dev->devt);
839 error = sysfs_create_link(kobj, &dev->kobj, devt_str);
840 }
841
842 return error;
843}
844
845static void device_remove_sys_dev_entry(struct device *dev)
846{
847 struct kobject *kobj = device_to_dev_kobj(dev);
848 char devt_str[15];
849
850 if (kobj) {
851 format_dev_t(devt_str, dev->devt);
852 sysfs_remove_link(kobj, devt_str);
853 }
854}
855
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700856int device_private_init(struct device *dev)
857{
858 dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL);
859 if (!dev->p)
860 return -ENOMEM;
861 dev->p->device = dev;
862 klist_init(&dev->p->klist_children, klist_children_get,
863 klist_children_put);
864 return 0;
865}
866
Dan Williamse105b8b2008-04-21 10:51:07 -0700867/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800868 * device_add - add device to device hierarchy.
869 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800871 * This is part 2 of device_register(), though may be called
872 * separately _iff_ device_initialize() has been called separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 *
Cornelia Huck57394112008-09-03 18:26:40 +0200874 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800875 * to the global and sibling lists for the device, then
876 * adds it to the other relevant subsystems of the driver model.
Cornelia Huck57394112008-09-03 18:26:40 +0200877 *
878 * NOTE: _Never_ directly free @dev after calling this function, even
879 * if it returned an error! Always use put_device() to give up your
880 * reference instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 */
882int device_add(struct device *dev)
883{
884 struct device *parent = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200885 struct class_interface *class_intf;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700886 int error = -EINVAL;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +0100887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 dev = get_device(dev);
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700889 if (!dev)
890 goto done;
891
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800892 if (!dev->p) {
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700893 error = device_private_init(dev);
894 if (error)
895 goto done;
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800896 }
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800897
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100898 /*
899 * for statically allocated devices, which should all be converted
900 * some day, we need to initialize the name. We prevent reading back
901 * the name, and force the use of dev_name()
902 */
903 if (dev->init_name) {
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700904 dev_set_name(dev, "%s", dev->init_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100905 dev->init_name = NULL;
906 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700907
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100908 if (!dev_name(dev))
Kay Sievers5c8563d2009-05-28 14:24:07 -0700909 goto name_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100911 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -0700912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 parent = get_device(dev->parent);
Cornelia Huck63b69712008-01-21 16:09:44 +0100914 setup_parent(dev, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Yinghai Lu0d358f22008-02-19 03:20:41 -0800916 /* use parent numa_node */
917 if (parent)
918 set_dev_node(dev, dev_to_node(parent));
919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 /* first, register with generic layer. */
Kay Sievers8a577ff2009-04-18 15:05:45 -0700921 /* we require the name to be set before, and pass NULL */
922 error = kobject_add(&dev->kobj, dev->kobj.parent, NULL);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100923 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 goto Error;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200925
Brian Walsh37022642006-08-14 22:43:19 -0700926 /* notify platform of device entry */
927 if (platform_notify)
928 platform_notify(dev);
929
Tejun Heoad6a1e12007-06-14 03:45:17 +0900930 error = device_create_file(dev, &uevent_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200931 if (error)
932 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200933
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700934 if (MAJOR(dev->devt)) {
Tejun Heoad6a1e12007-06-14 03:45:17 +0900935 error = device_create_file(dev, &devt_attr);
936 if (error)
Cornelia Hucka306eea2006-09-22 11:37:13 +0200937 goto ueventattrError;
Dan Williamse105b8b2008-04-21 10:51:07 -0700938
939 error = device_create_sys_dev_entry(dev);
940 if (error)
941 goto devtattrError;
Kay Sievers2b2af542009-04-30 15:23:42 +0200942
943 devtmpfs_create_node(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700944 }
945
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700946 error = device_add_class_symlinks(dev);
947 if (error)
948 goto SymlinkError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700949 error = device_add_attrs(dev);
950 if (error)
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700951 goto AttrsError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700952 error = bus_add_device(dev);
953 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 goto BusError;
Alan Stern3b98aea2008-08-07 13:06:12 -0400955 error = dpm_sysfs_add(dev);
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +0100956 if (error)
Alan Stern3b98aea2008-08-07 13:06:12 -0400957 goto DPMError;
958 device_pm_add(dev);
Alan Sternec0676ee2008-12-05 14:10:31 -0500959
960 /* Notify clients of device addition. This call must come
961 * after dpm_sysf_add() and before kobject_uevent().
962 */
963 if (dev->bus)
964 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
965 BUS_NOTIFY_ADD_DEVICE, dev);
966
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +0200967 kobject_uevent(&dev->kobj, KOBJ_ADD);
Alan Stern2023c612009-07-30 15:27:18 -0400968 bus_probe_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800970 klist_add_tail(&dev->p->knode_parent,
971 &parent->p->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700973 if (dev->class) {
Dave Youngf75b1c62008-05-28 09:28:39 -0700974 mutex_lock(&dev->class->p->class_mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200975 /* tie the class to the device */
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200976 klist_add_tail(&dev->knode_class,
977 &dev->class->p->class_devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200978
979 /* notify any interfaces that the device is here */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -0700980 list_for_each_entry(class_intf,
981 &dev->class->p->class_interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200982 if (class_intf->add_dev)
983 class_intf->add_dev(dev, class_intf);
Dave Youngf75b1c62008-05-28 09:28:39 -0700984 mutex_unlock(&dev->class->p->class_mutex);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700985 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700986done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 put_device(dev);
988 return error;
Alan Stern3b98aea2008-08-07 13:06:12 -0400989 DPMError:
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +0100990 bus_remove_device(dev);
991 BusError:
James Simmons82f0cf92007-02-21 17:44:51 +0000992 device_remove_attrs(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700993 AttrsError:
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700994 device_remove_class_symlinks(dev);
995 SymlinkError:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900996 if (MAJOR(dev->devt))
Kay Sieversad729562009-10-28 19:51:37 +0100997 devtmpfs_delete_node(dev);
998 if (MAJOR(dev->devt))
Dan Williamse105b8b2008-04-21 10:51:07 -0700999 device_remove_sys_dev_entry(dev);
1000 devtattrError:
1001 if (MAJOR(dev->devt))
Tejun Heoad6a1e12007-06-14 03:45:17 +09001002 device_remove_file(dev, &devt_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +02001003 ueventattrError:
Tejun Heoad6a1e12007-06-14 03:45:17 +09001004 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001005 attrError:
Kay Sievers312c0042005-11-16 09:00:00 +01001006 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 kobject_del(&dev->kobj);
1008 Error:
Cornelia Huck63b69712008-01-21 16:09:44 +01001009 cleanup_device_parent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (parent)
1011 put_device(parent);
Kay Sievers5c8563d2009-05-28 14:24:07 -07001012name_error:
1013 kfree(dev->p);
1014 dev->p = NULL;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001015 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001019 * device_register - register a device with the system.
1020 * @dev: pointer to the device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001022 * This happens in two clean steps - initialize the device
1023 * and add it to the system. The two steps can be called
1024 * separately, but this is the easiest and most common.
1025 * I.e. you should only call the two helpers separately if
1026 * have a clearly defined need to use and refcount the device
1027 * before it is added to the hierarchy.
Cornelia Huck57394112008-09-03 18:26:40 +02001028 *
1029 * NOTE: _Never_ directly free @dev after calling this function, even
1030 * if it returned an error! Always use put_device() to give up the
1031 * reference initialized in this function instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033int device_register(struct device *dev)
1034{
1035 device_initialize(dev);
1036 return device_add(dev);
1037}
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001040 * get_device - increment reference count for device.
1041 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001043 * This simply forwards the call to kobject_get(), though
1044 * we do take care to provide for the case that we get a NULL
1045 * pointer passed in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001047struct device *get_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
1050}
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001053 * put_device - decrement reference count.
1054 * @dev: device in question.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001056void put_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001058 /* might_sleep(); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 if (dev)
1060 kobject_put(&dev->kobj);
1061}
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001064 * device_del - delete device from system.
1065 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001067 * This is the first part of the device unregistration
1068 * sequence. This removes the device from the lists we control
1069 * from here, has it removed from the other driver model
1070 * subsystems it was added to in device_add(), and removes it
1071 * from the kobject hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001073 * NOTE: this should be called manually _iff_ device_add() was
1074 * also called manually.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001076void device_del(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001078 struct device *parent = dev->parent;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001079 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Alan Sternec0676ee2008-12-05 14:10:31 -05001081 /* Notify clients of device removal. This call must come
1082 * before dpm_sysfs_remove().
1083 */
1084 if (dev->bus)
1085 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
1086 BUS_NOTIFY_DEL_DEVICE, dev);
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001087 device_pm_remove(dev);
Alan Stern3b98aea2008-08-07 13:06:12 -04001088 dpm_sysfs_remove(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001090 klist_del(&dev->p->knode_parent);
Dan Williamse105b8b2008-04-21 10:51:07 -07001091 if (MAJOR(dev->devt)) {
Kay Sievers2b2af542009-04-30 15:23:42 +02001092 devtmpfs_delete_node(dev);
Dan Williamse105b8b2008-04-21 10:51:07 -07001093 device_remove_sys_dev_entry(dev);
Tejun Heoad6a1e12007-06-14 03:45:17 +09001094 device_remove_file(dev, &devt_attr);
Dan Williamse105b8b2008-04-21 10:51:07 -07001095 }
Kay Sieversb9d9c822006-06-15 15:31:56 +02001096 if (dev->class) {
Kay Sieversda231fd2007-11-21 17:29:15 +01001097 device_remove_class_symlinks(dev);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001098
Dave Youngf75b1c62008-05-28 09:28:39 -07001099 mutex_lock(&dev->class->p->class_mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001100 /* notify any interfaces that the device is now gone */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -07001101 list_for_each_entry(class_intf,
1102 &dev->class->p->class_interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001103 if (class_intf->remove_dev)
1104 class_intf->remove_dev(dev, class_intf);
1105 /* remove the device from the class list */
Tejun Heo5a3ceb82008-08-25 19:50:19 +02001106 klist_del(&dev->knode_class);
Dave Youngf75b1c62008-05-28 09:28:39 -07001107 mutex_unlock(&dev->class->p->class_mutex);
Kay Sieversb9d9c822006-06-15 15:31:56 +02001108 }
Tejun Heoad6a1e12007-06-14 03:45:17 +09001109 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001110 device_remove_attrs(dev);
Benjamin Herrenschmidt28953532006-11-08 19:46:14 -08001111 bus_remove_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Tejun Heo2f8d16a2007-03-09 19:34:19 +09001113 /*
1114 * Some platform devices are driven without driver attached
1115 * and managed resources may have been acquired. Make sure
1116 * all resources are released.
1117 */
1118 devres_release_all(dev);
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 /* Notify the platform of the removal, in case they
1121 * need to do anything...
1122 */
1123 if (platform_notify_remove)
1124 platform_notify_remove(dev);
Kay Sievers312c0042005-11-16 09:00:00 +01001125 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Kay Sieversda231fd2007-11-21 17:29:15 +01001126 cleanup_device_parent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 kobject_del(&dev->kobj);
Kay Sieversda231fd2007-11-21 17:29:15 +01001128 put_device(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129}
1130
1131/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001132 * device_unregister - unregister device from system.
1133 * @dev: device going away.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001135 * We do this in two parts, like we do device_register(). First,
1136 * we remove it from all the subsystems with device_del(), then
1137 * we decrement the reference count via put_device(). If that
1138 * is the final reference count, the device will be cleaned up
1139 * via device_release() above. Otherwise, the structure will
1140 * stick around until the final reference to the device is dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001142void device_unregister(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001144 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 device_del(dev);
1146 put_device(dev);
1147}
1148
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001149static struct device *next_device(struct klist_iter *i)
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001150{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001151 struct klist_node *n = klist_next(i);
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001152 struct device *dev = NULL;
1153 struct device_private *p;
1154
1155 if (n) {
1156 p = to_device_private_parent(n);
1157 dev = p->device;
1158 }
1159 return dev;
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001160}
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162/**
Kay Sieverse454cea2009-09-18 23:01:12 +02001163 * device_get_devnode - path of device node file
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001164 * @dev: device
Kay Sieverse454cea2009-09-18 23:01:12 +02001165 * @mode: returned file access mode
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001166 * @tmp: possibly allocated string
1167 *
1168 * Return the relative path of a possible device node.
1169 * Non-default names may need to allocate a memory to compose
1170 * a name. This memory is returned in tmp and needs to be
1171 * freed by the caller.
1172 */
Kay Sieverse454cea2009-09-18 23:01:12 +02001173const char *device_get_devnode(struct device *dev,
1174 mode_t *mode, const char **tmp)
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001175{
1176 char *s;
1177
1178 *tmp = NULL;
1179
1180 /* the device type may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02001181 if (dev->type && dev->type->devnode)
1182 *tmp = dev->type->devnode(dev, mode);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001183 if (*tmp)
1184 return *tmp;
1185
1186 /* the class may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02001187 if (dev->class && dev->class->devnode)
1188 *tmp = dev->class->devnode(dev, mode);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001189 if (*tmp)
1190 return *tmp;
1191
1192 /* return name without allocation, tmp == NULL */
1193 if (strchr(dev_name(dev), '!') == NULL)
1194 return dev_name(dev);
1195
1196 /* replace '!' in the name with '/' */
1197 *tmp = kstrdup(dev_name(dev), GFP_KERNEL);
1198 if (!*tmp)
1199 return NULL;
1200 while ((s = strchr(*tmp, '!')))
1201 s[0] = '/';
1202 return *tmp;
1203}
1204
1205/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001206 * device_for_each_child - device child iterator.
1207 * @parent: parent struct device.
1208 * @data: data for the callback.
1209 * @fn: function to be called for each device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001211 * Iterate over @parent's child devices, and call @fn for each,
1212 * passing it @data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001214 * We check the return of @fn each time. If it returns anything
1215 * other than 0, we break out and return that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001217int device_for_each_child(struct device *parent, void *data,
1218 int (*fn)(struct device *dev, void *data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001220 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001221 struct device *child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 int error = 0;
1223
Greg Kroah-Hartman014c90d2009-04-15 16:00:12 -07001224 if (!parent->p)
1225 return 0;
1226
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001227 klist_iter_init(&parent->p->klist_children, &i);
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001228 while ((child = next_device(&i)) && !error)
1229 error = fn(child, data);
1230 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return error;
1232}
1233
Cornelia Huck5ab69982006-11-16 15:42:07 +01001234/**
1235 * device_find_child - device iterator for locating a particular device.
1236 * @parent: parent struct device
1237 * @data: Data to pass to match function
1238 * @match: Callback function to check device
1239 *
1240 * This is similar to the device_for_each_child() function above, but it
1241 * returns a reference to a device that is 'found' for later use, as
1242 * determined by the @match callback.
1243 *
1244 * The callback should return 0 if the device doesn't match and non-zero
1245 * if it does. If the callback returns non-zero and a reference to the
1246 * current device can be obtained, this function will return to the caller
1247 * and not iterate over any more devices.
1248 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001249struct device *device_find_child(struct device *parent, void *data,
1250 int (*match)(struct device *dev, void *data))
Cornelia Huck5ab69982006-11-16 15:42:07 +01001251{
1252 struct klist_iter i;
1253 struct device *child;
1254
1255 if (!parent)
1256 return NULL;
1257
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001258 klist_iter_init(&parent->p->klist_children, &i);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001259 while ((child = next_device(&i)))
1260 if (match(child, data) && get_device(child))
1261 break;
1262 klist_iter_exit(&i);
1263 return child;
1264}
1265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266int __init devices_init(void)
1267{
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -06001268 devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
1269 if (!devices_kset)
1270 return -ENOMEM;
Dan Williamse105b8b2008-04-21 10:51:07 -07001271 dev_kobj = kobject_create_and_add("dev", NULL);
1272 if (!dev_kobj)
1273 goto dev_kobj_err;
1274 sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj);
1275 if (!sysfs_dev_block_kobj)
1276 goto block_kobj_err;
1277 sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj);
1278 if (!sysfs_dev_char_kobj)
1279 goto char_kobj_err;
1280
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -06001281 return 0;
Dan Williamse105b8b2008-04-21 10:51:07 -07001282
1283 char_kobj_err:
1284 kobject_put(sysfs_dev_block_kobj);
1285 block_kobj_err:
1286 kobject_put(dev_kobj);
1287 dev_kobj_err:
1288 kset_unregister(devices_kset);
1289 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
1292EXPORT_SYMBOL_GPL(device_for_each_child);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001293EXPORT_SYMBOL_GPL(device_find_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295EXPORT_SYMBOL_GPL(device_initialize);
1296EXPORT_SYMBOL_GPL(device_add);
1297EXPORT_SYMBOL_GPL(device_register);
1298
1299EXPORT_SYMBOL_GPL(device_del);
1300EXPORT_SYMBOL_GPL(device_unregister);
1301EXPORT_SYMBOL_GPL(get_device);
1302EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304EXPORT_SYMBOL_GPL(device_create_file);
1305EXPORT_SYMBOL_GPL(device_remove_file);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001306
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001307struct root_device
1308{
1309 struct device dev;
1310 struct module *owner;
1311};
1312
1313#define to_root_device(dev) container_of(dev, struct root_device, dev)
1314
1315static void root_device_release(struct device *dev)
1316{
1317 kfree(to_root_device(dev));
1318}
1319
1320/**
1321 * __root_device_register - allocate and register a root device
1322 * @name: root device name
1323 * @owner: owner module of the root device, usually THIS_MODULE
1324 *
1325 * This function allocates a root device and registers it
1326 * using device_register(). In order to free the returned
1327 * device, use root_device_unregister().
1328 *
1329 * Root devices are dummy devices which allow other devices
1330 * to be grouped under /sys/devices. Use this function to
1331 * allocate a root device and then use it as the parent of
1332 * any device which should appear under /sys/devices/{name}
1333 *
1334 * The /sys/devices/{name} directory will also contain a
1335 * 'module' symlink which points to the @owner directory
1336 * in sysfs.
1337 *
1338 * Note: You probably want to use root_device_register().
1339 */
1340struct device *__root_device_register(const char *name, struct module *owner)
1341{
1342 struct root_device *root;
1343 int err = -ENOMEM;
1344
1345 root = kzalloc(sizeof(struct root_device), GFP_KERNEL);
1346 if (!root)
1347 return ERR_PTR(err);
1348
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -07001349 err = dev_set_name(&root->dev, "%s", name);
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001350 if (err) {
1351 kfree(root);
1352 return ERR_PTR(err);
1353 }
1354
1355 root->dev.release = root_device_release;
1356
1357 err = device_register(&root->dev);
1358 if (err) {
1359 put_device(&root->dev);
1360 return ERR_PTR(err);
1361 }
1362
1363#ifdef CONFIG_MODULE /* gotta find a "cleaner" way to do this */
1364 if (owner) {
1365 struct module_kobject *mk = &owner->mkobj;
1366
1367 err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module");
1368 if (err) {
1369 device_unregister(&root->dev);
1370 return ERR_PTR(err);
1371 }
1372 root->owner = owner;
1373 }
1374#endif
1375
1376 return &root->dev;
1377}
1378EXPORT_SYMBOL_GPL(__root_device_register);
1379
1380/**
1381 * root_device_unregister - unregister and free a root device
Randy Dunlap7cbcf222009-01-20 16:29:13 -08001382 * @dev: device going away
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001383 *
1384 * This function unregisters and cleans up a device that was created by
1385 * root_device_register().
1386 */
1387void root_device_unregister(struct device *dev)
1388{
1389 struct root_device *root = to_root_device(dev);
1390
1391 if (root->owner)
1392 sysfs_remove_link(&root->dev.kobj, "module");
1393
1394 device_unregister(dev);
1395}
1396EXPORT_SYMBOL_GPL(root_device_unregister);
1397
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001398
1399static void device_create_release(struct device *dev)
1400{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001401 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001402 kfree(dev);
1403}
1404
1405/**
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001406 * device_create_vargs - creates a device and registers it with sysfs
1407 * @class: pointer to the struct class that this device should be registered to
1408 * @parent: pointer to the parent struct device of this new device, if any
1409 * @devt: the dev_t for the char device to be added
1410 * @drvdata: the data to be added to the device for callbacks
1411 * @fmt: string for the device's name
1412 * @args: va_list for the device's name
1413 *
1414 * This function can be used by char device classes. A struct device
1415 * will be created in sysfs, registered to the specified class.
1416 *
1417 * A "dev" file will be created, showing the dev_t for the device, if
1418 * the dev_t is not 0,0.
1419 * If a pointer to a parent struct device is passed in, the newly created
1420 * struct device will be a child of that device in sysfs.
1421 * The pointer to the struct device will be returned from the call.
1422 * Any further sysfs files that might be required can be created using this
1423 * pointer.
1424 *
1425 * Note: the struct class passed to this function must have previously
1426 * been created with a call to class_create().
1427 */
1428struct device *device_create_vargs(struct class *class, struct device *parent,
1429 dev_t devt, void *drvdata, const char *fmt,
1430 va_list args)
1431{
1432 struct device *dev = NULL;
1433 int retval = -ENODEV;
1434
1435 if (class == NULL || IS_ERR(class))
1436 goto error;
1437
1438 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1439 if (!dev) {
1440 retval = -ENOMEM;
1441 goto error;
1442 }
1443
1444 dev->devt = devt;
1445 dev->class = class;
1446 dev->parent = parent;
1447 dev->release = device_create_release;
1448 dev_set_drvdata(dev, drvdata);
1449
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001450 retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
1451 if (retval)
1452 goto error;
1453
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001454 retval = device_register(dev);
1455 if (retval)
1456 goto error;
1457
1458 return dev;
1459
1460error:
Cornelia Huck286661b2008-09-03 18:26:41 +02001461 put_device(dev);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001462 return ERR_PTR(retval);
1463}
1464EXPORT_SYMBOL_GPL(device_create_vargs);
1465
1466/**
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001467 * device_create - creates a device and registers it with sysfs
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001468 * @class: pointer to the struct class that this device should be registered to
1469 * @parent: pointer to the parent struct device of this new device, if any
1470 * @devt: the dev_t for the char device to be added
1471 * @drvdata: the data to be added to the device for callbacks
1472 * @fmt: string for the device's name
1473 *
1474 * This function can be used by char device classes. A struct device
1475 * will be created in sysfs, registered to the specified class.
1476 *
1477 * A "dev" file will be created, showing the dev_t for the device, if
1478 * the dev_t is not 0,0.
1479 * If a pointer to a parent struct device is passed in, the newly created
1480 * struct device will be a child of that device in sysfs.
1481 * The pointer to the struct device will be returned from the call.
1482 * Any further sysfs files that might be required can be created using this
1483 * pointer.
1484 *
1485 * Note: the struct class passed to this function must have previously
1486 * been created with a call to class_create().
1487 */
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001488struct device *device_create(struct class *class, struct device *parent,
1489 dev_t devt, void *drvdata, const char *fmt, ...)
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001490{
1491 va_list vargs;
1492 struct device *dev;
1493
1494 va_start(vargs, fmt);
1495 dev = device_create_vargs(class, parent, devt, drvdata, fmt, vargs);
1496 va_end(vargs);
1497 return dev;
1498}
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001499EXPORT_SYMBOL_GPL(device_create);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001500
Dave Youngcd354492008-01-28 16:56:11 +08001501static int __match_devt(struct device *dev, void *data)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001502{
Dave Youngcd354492008-01-28 16:56:11 +08001503 dev_t *devt = data;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001504
Dave Youngcd354492008-01-28 16:56:11 +08001505 return dev->devt == *devt;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001506}
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001507
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001508/**
1509 * device_destroy - removes a device that was created with device_create()
1510 * @class: pointer to the struct class that this device was registered with
1511 * @devt: the dev_t of the device that was previously registered
1512 *
1513 * This call unregisters and cleans up a device that was created with a
1514 * call to device_create().
1515 */
1516void device_destroy(struct class *class, dev_t devt)
1517{
1518 struct device *dev;
1519
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -04001520 dev = class_find_device(class, NULL, &devt, __match_devt);
Dave Youngcd354492008-01-28 16:56:11 +08001521 if (dev) {
1522 put_device(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001523 device_unregister(dev);
Dave Youngcd354492008-01-28 16:56:11 +08001524 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001525}
1526EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001527
1528/**
1529 * device_rename - renames a device
1530 * @dev: the pointer to the struct device to be renamed
1531 * @new_name: the new name of the device
Eric W. Biederman030c1d22008-05-08 14:41:00 -07001532 *
1533 * It is the responsibility of the caller to provide mutual
1534 * exclusion between two different calls of device_rename
1535 * on the same device to ensure that new_name is valid and
1536 * won't conflict with other devices.
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001537 */
1538int device_rename(struct device *dev, char *new_name)
1539{
1540 char *old_class_name = NULL;
1541 char *new_class_name = NULL;
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001542 char *old_device_name = NULL;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001543 int error;
1544
1545 dev = get_device(dev);
1546 if (!dev)
1547 return -EINVAL;
1548
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001549 pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -08001550 __func__, new_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001551
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001552#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001553 if ((dev->class) && (dev->parent))
1554 old_class_name = make_class_name(dev->class->name, &dev->kobj);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001555#endif
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001556
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001557 old_device_name = kstrdup(dev_name(dev), GFP_KERNEL);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001558 if (!old_device_name) {
1559 error = -ENOMEM;
1560 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001561 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001562
1563 error = kobject_rename(&dev->kobj, new_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001564 if (error)
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001565 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001566
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001567#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001568 if (old_class_name) {
1569 new_class_name = make_class_name(dev->class->name, &dev->kobj);
1570 if (new_class_name) {
Cornelia Huck36ce6da2008-06-10 11:09:08 +02001571 error = sysfs_create_link_nowarn(&dev->parent->kobj,
1572 &dev->kobj,
1573 new_class_name);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001574 if (error)
1575 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001576 sysfs_remove_link(&dev->parent->kobj, old_class_name);
1577 }
1578 }
Kay Sievers60b8cab2007-10-26 20:07:44 +02001579#else
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001580 if (dev->class) {
Cornelia Huck36ce6da2008-06-10 11:09:08 +02001581 error = sysfs_create_link_nowarn(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001582 &dev->kobj, dev_name(dev));
Stephen Hemminger0599ad52008-05-14 22:34:16 -07001583 if (error)
1584 goto out;
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -07001585 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -05001586 old_device_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001587 }
Kay Sievers60b8cab2007-10-26 20:07:44 +02001588#endif
1589
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001590out:
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001591 put_device(dev);
1592
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001593 kfree(new_class_name);
Jesper Juhl952ab432006-09-28 23:56:01 +02001594 kfree(old_class_name);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001595 kfree(old_device_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001596
1597 return error;
1598}
Johannes Berga2807db2007-02-28 12:38:31 +01001599EXPORT_SYMBOL_GPL(device_rename);
Cornelia Huck8a824722006-11-20 17:07:51 +01001600
1601static int device_move_class_links(struct device *dev,
1602 struct device *old_parent,
1603 struct device *new_parent)
1604{
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001605 int error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001606#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huck8a824722006-11-20 17:07:51 +01001607 char *class_name;
1608
1609 class_name = make_class_name(dev->class->name, &dev->kobj);
1610 if (!class_name) {
Cornelia Huckcb360bb2006-11-27 10:35:05 +01001611 error = -ENOMEM;
Cornelia Huck8a824722006-11-20 17:07:51 +01001612 goto out;
1613 }
1614 if (old_parent) {
1615 sysfs_remove_link(&dev->kobj, "device");
1616 sysfs_remove_link(&old_parent->kobj, class_name);
1617 }
Cornelia Huckc744aea2007-01-08 20:16:44 +01001618 if (new_parent) {
1619 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1620 "device");
1621 if (error)
1622 goto out;
1623 error = sysfs_create_link(&new_parent->kobj, &dev->kobj,
1624 class_name);
1625 if (error)
1626 sysfs_remove_link(&dev->kobj, "device");
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001627 } else
Cornelia Huckc744aea2007-01-08 20:16:44 +01001628 error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001629out:
1630 kfree(class_name);
1631 return error;
1632#else
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001633 if (old_parent)
1634 sysfs_remove_link(&dev->kobj, "device");
1635 if (new_parent)
1636 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1637 "device");
1638 return error;
Cornelia Huck8a824722006-11-20 17:07:51 +01001639#endif
1640}
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{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001728 struct device *dev, *devn;
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001729
1730 list_for_each_entry_safe_reverse(dev, devn, &devices_kset->list,
1731 kobj.entry) {
1732 if (dev->bus && dev->bus->shutdown) {
1733 dev_dbg(dev, "shutdown\n");
1734 dev->bus->shutdown(dev);
1735 } else if (dev->driver && dev->driver->shutdown) {
1736 dev_dbg(dev, "shutdown\n");
1737 dev->driver->shutdown(dev);
1738 }
1739 }
Shaohua Li401097e2009-05-12 13:37:57 -07001740 async_synchronize_full();
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001741}