blob: cf507a7d200ce34326e091cbbda82c8b30e73543 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include "base.h"
27#include "power/power.h"
28
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080029int (*platform_notify)(struct device *dev) = NULL;
30int (*platform_notify_remove)(struct device *dev) = NULL;
Dan Williamse105b8b2008-04-21 10:51:07 -070031static struct kobject *dev_kobj;
32struct kobject *sysfs_dev_char_kobj;
33struct kobject *sysfs_dev_block_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -080035#ifdef CONFIG_BLOCK
36static inline int device_is_not_partition(struct device *dev)
37{
38 return !(dev->type == &part_type);
39}
40#else
41static inline int device_is_not_partition(struct device *dev)
42{
43 return 1;
44}
45#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Alan Stern3e956372006-06-16 17:10:48 -040047/**
48 * dev_driver_string - Return a device's driver name, if at all possible
49 * @dev: struct device to get the name of
50 *
51 * Will return the device's driver's name if it is bound to a device. If
52 * the device is not bound to a device, it will return the name of the bus
53 * it is attached to. If it is not attached to a bus either, an empty
54 * string will be returned.
55 */
Jean Delvarebf9ca692008-07-30 12:29:21 -070056const char *dev_driver_string(const struct device *dev)
Alan Stern3e956372006-06-16 17:10:48 -040057{
Alan Stern35899722009-12-04 11:06:57 -050058 struct device_driver *drv;
59
60 /* dev->driver can change to NULL underneath us because of unbinding,
61 * so be careful about accessing it. dev->bus and dev->class should
62 * never change once they are set, so they don't need special care.
63 */
64 drv = ACCESS_ONCE(dev->driver);
65 return drv ? drv->name :
Jean Delvarea456b702007-03-09 16:33:10 +010066 (dev->bus ? dev->bus->name :
67 (dev->class ? dev->class->name : ""));
Alan Stern3e956372006-06-16 17:10:48 -040068}
Matthew Wilcox310a9222006-09-23 23:35:04 -060069EXPORT_SYMBOL(dev_driver_string);
Alan Stern3e956372006-06-16 17:10:48 -040070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define to_dev(obj) container_of(obj, struct device, kobj)
72#define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
73
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080074static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
75 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080077 struct device_attribute *dev_attr = to_dev_attr(attr);
78 struct device *dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050079 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 if (dev_attr->show)
Yani Ioannou54b6f352005-05-17 06:39:34 -040082 ret = dev_attr->show(dev, dev_attr, buf);
Andrew Morton815d2d52008-03-04 15:09:07 -080083 if (ret >= (ssize_t)PAGE_SIZE) {
84 print_symbol("dev_attr_show: %s returned bad count\n",
85 (unsigned long)dev_attr->show);
86 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return ret;
88}
89
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080090static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
91 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080093 struct device_attribute *dev_attr = to_dev_attr(attr);
94 struct device *dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050095 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97 if (dev_attr->store)
Yani Ioannou54b6f352005-05-17 06:39:34 -040098 ret = dev_attr->store(dev, dev_attr, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return ret;
100}
101
Emese Revfy52cf25d2010-01-19 02:58:23 +0100102static const struct sysfs_ops dev_sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .show = dev_attr_show,
104 .store = dev_attr_store,
105};
106
107
108/**
109 * device_release - free device structure.
110 * @kobj: device's kobject.
111 *
112 * This is called once the reference count for the object
113 * reaches 0. We forward the call to the device's release
114 * method, which should handle actually freeing the structure.
115 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800116static void device_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800118 struct device *dev = to_dev(kobj);
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800119 struct device_private *p = dev->p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 if (dev->release)
122 dev->release(dev);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200123 else if (dev->type && dev->type->release)
124 dev->type->release(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700125 else if (dev->class && dev->class->dev_release)
126 dev->class->dev_release(dev);
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700127 else
128 WARN(1, KERN_ERR "Device '%s' does not have a release() "
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800129 "function, it is broken and must be fixed.\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100130 dev_name(dev));
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800131 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600134static struct kobj_type device_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .release = device_release,
136 .sysfs_ops = &dev_sysfs_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137};
138
139
Kay Sievers312c0042005-11-16 09:00:00 +0100140static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 struct kobj_type *ktype = get_ktype(kobj);
143
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600144 if (ktype == &device_ktype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct device *dev = to_dev(kobj);
146 if (dev->bus)
147 return 1;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700148 if (dev->class)
149 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151 return 0;
152}
153
Kay Sievers312c0042005-11-16 09:00:00 +0100154static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 struct device *dev = to_dev(kobj);
157
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700158 if (dev->bus)
159 return dev->bus->name;
160 if (dev->class)
161 return dev->class->name;
162 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Kay Sievers7eff2e72007-08-14 15:15:12 +0200165static int dev_uevent(struct kset *kset, struct kobject *kobj,
166 struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 struct device *dev = to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 int retval = 0;
170
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200171 /* add device node properties if present */
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700172 if (MAJOR(dev->devt)) {
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200173 const char *tmp;
174 const char *name;
Kay Sieverse454cea2009-09-18 23:01:12 +0200175 mode_t mode = 0;
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200176
Kay Sievers7eff2e72007-08-14 15:15:12 +0200177 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
178 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
Kay Sieverse454cea2009-09-18 23:01:12 +0200179 name = device_get_devnode(dev, &mode, &tmp);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200180 if (name) {
181 add_uevent_var(env, "DEVNAME=%s", name);
182 kfree(tmp);
Kay Sieverse454cea2009-09-18 23:01:12 +0200183 if (mode)
184 add_uevent_var(env, "DEVMODE=%#o", mode & 0777);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200185 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700186 }
187
Kay Sievers414264f2007-03-12 21:08:57 +0100188 if (dev->type && dev->type->name)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200189 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
Kay Sievers414264f2007-03-12 21:08:57 +0100190
Kay Sievers239378f2006-10-07 21:54:55 +0200191 if (dev->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200192 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200193
Kay Sieversa87cb2a2006-09-14 11:23:28 +0200194#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sievers239378f2006-10-07 21:54:55 +0200195 if (dev->class) {
196 struct device *parent = dev->parent;
197
198 /* find first bus device in parent chain */
199 while (parent && !parent->bus)
200 parent = parent->parent;
201 if (parent && parent->bus) {
202 const char *path;
203
204 path = kobject_get_path(&parent->kobj, GFP_KERNEL);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200205 if (path) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200206 add_uevent_var(env, "PHYSDEVPATH=%s", path);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200207 kfree(path);
208 }
Kay Sievers239378f2006-10-07 21:54:55 +0200209
Kay Sievers7eff2e72007-08-14 15:15:12 +0200210 add_uevent_var(env, "PHYSDEVBUS=%s", parent->bus->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200211
212 if (parent->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200213 add_uevent_var(env, "PHYSDEVDRIVER=%s",
214 parent->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200215 }
216 } else if (dev->bus) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200217 add_uevent_var(env, "PHYSDEVBUS=%s", dev->bus->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200218
219 if (dev->driver)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800220 add_uevent_var(env, "PHYSDEVDRIVER=%s",
221 dev->driver->name);
Kay Sieversd81d9d62006-08-13 06:17:09 +0200222 }
Kay Sievers239378f2006-10-07 21:54:55 +0200223#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Kay Sievers7eff2e72007-08-14 15:15:12 +0200225 /* have the bus specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100226 if (dev->bus && dev->bus->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200227 retval = dev->bus->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200228 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800229 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100230 dev_name(dev), __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
Kay Sievers7eff2e72007-08-14 15:15:12 +0200233 /* have the class specific function add its stuff */
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700234 if (dev->class && dev->class->dev_uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200235 retval = dev->class->dev_uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200236 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800237 pr_debug("device: '%s': %s: class uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100238 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800239 __func__, retval);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200240 }
241
Kay Sievers7eff2e72007-08-14 15:15:12 +0200242 /* have the device type specific fuction add its stuff */
Kay Sieversf9f852d2006-10-07 21:54:55 +0200243 if (dev->type && dev->type->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200244 retval = dev->type->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200245 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800246 pr_debug("device: '%s': %s: dev_type uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100247 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800248 __func__, retval);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700249 }
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 return retval;
252}
253
Emese Revfy9cd43612009-12-31 14:52:51 +0100254static const struct kset_uevent_ops device_uevent_ops = {
Kay Sievers312c0042005-11-16 09:00:00 +0100255 .filter = dev_uevent_filter,
256 .name = dev_uevent_name,
257 .uevent = dev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258};
259
Kay Sievers16574dc2007-04-06 01:40:38 +0200260static ssize_t show_uevent(struct device *dev, struct device_attribute *attr,
261 char *buf)
262{
263 struct kobject *top_kobj;
264 struct kset *kset;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200265 struct kobj_uevent_env *env = NULL;
Kay Sievers16574dc2007-04-06 01:40:38 +0200266 int i;
267 size_t count = 0;
268 int retval;
269
270 /* search the kset, the device belongs to */
271 top_kobj = &dev->kobj;
Kay Sievers5c5daf62007-08-12 20:43:55 +0200272 while (!top_kobj->kset && top_kobj->parent)
273 top_kobj = top_kobj->parent;
Kay Sievers16574dc2007-04-06 01:40:38 +0200274 if (!top_kobj->kset)
275 goto out;
Kay Sievers5c5daf62007-08-12 20:43:55 +0200276
Kay Sievers16574dc2007-04-06 01:40:38 +0200277 kset = top_kobj->kset;
278 if (!kset->uevent_ops || !kset->uevent_ops->uevent)
279 goto out;
280
281 /* respect filter */
282 if (kset->uevent_ops && kset->uevent_ops->filter)
283 if (!kset->uevent_ops->filter(kset, &dev->kobj))
284 goto out;
285
Kay Sievers7eff2e72007-08-14 15:15:12 +0200286 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
287 if (!env)
Greg Kroah-Hartmanc7308c82007-05-02 14:14:11 +0200288 return -ENOMEM;
289
Kay Sievers16574dc2007-04-06 01:40:38 +0200290 /* let the kset specific function add its keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200291 retval = kset->uevent_ops->uevent(kset, &dev->kobj, env);
Kay Sievers16574dc2007-04-06 01:40:38 +0200292 if (retval)
293 goto out;
294
295 /* copy keys to file */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200296 for (i = 0; i < env->envp_idx; i++)
297 count += sprintf(&buf[count], "%s\n", env->envp[i]);
Kay Sievers16574dc2007-04-06 01:40:38 +0200298out:
Kay Sievers7eff2e72007-08-14 15:15:12 +0200299 kfree(env);
Kay Sievers16574dc2007-04-06 01:40:38 +0200300 return count;
301}
302
Kay Sieversa7fd6702005-10-01 14:49:43 +0200303static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
304 const char *buf, size_t count)
305{
Kay Sievers60a96a52007-07-08 22:29:26 +0200306 enum kobject_action action;
307
Kay Sievers3f5468c2010-01-14 22:54:37 +0100308 if (kobject_action_type(buf, count, &action) == 0)
Kay Sievers60a96a52007-07-08 22:29:26 +0200309 kobject_uevent(&dev->kobj, action);
Kay Sievers3f5468c2010-01-14 22:54:37 +0100310 else
311 dev_err(dev, "uevent: unknown action-string\n");
Kay Sieversa7fd6702005-10-01 14:49:43 +0200312 return count;
313}
314
Tejun Heoad6a1e12007-06-14 03:45:17 +0900315static struct device_attribute uevent_attr =
316 __ATTR(uevent, S_IRUGO | S_IWUSR, show_uevent, store_uevent);
317
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500318static int device_add_attributes(struct device *dev,
319 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700320{
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700321 int error = 0;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500322 int i;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700323
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500324 if (attrs) {
325 for (i = 0; attr_name(attrs[i]); i++) {
326 error = device_create_file(dev, &attrs[i]);
327 if (error)
328 break;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700329 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500330 if (error)
331 while (--i >= 0)
332 device_remove_file(dev, &attrs[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700333 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700334 return error;
335}
336
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500337static void device_remove_attributes(struct device *dev,
338 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700339{
340 int i;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500341
342 if (attrs)
343 for (i = 0; attr_name(attrs[i]); i++)
344 device_remove_file(dev, &attrs[i]);
345}
346
347static int device_add_groups(struct device *dev,
David Brownella4dbd672009-06-24 10:06:31 -0700348 const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500349{
350 int error = 0;
351 int i;
352
353 if (groups) {
354 for (i = 0; groups[i]; i++) {
355 error = sysfs_create_group(&dev->kobj, groups[i]);
356 if (error) {
357 while (--i >= 0)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800358 sysfs_remove_group(&dev->kobj,
359 groups[i]);
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500360 break;
361 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700362 }
363 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500364 return error;
365}
366
367static void device_remove_groups(struct device *dev,
David Brownella4dbd672009-06-24 10:06:31 -0700368 const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500369{
370 int i;
371
372 if (groups)
373 for (i = 0; groups[i]; i++)
374 sysfs_remove_group(&dev->kobj, groups[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700375}
376
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700377static int device_add_attrs(struct device *dev)
378{
379 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200380 struct device_type *type = dev->type;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500381 int error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700382
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500383 if (class) {
384 error = device_add_attributes(dev, class->dev_attrs);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200385 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500386 return error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700387 }
Kay Sieversf9f852d2006-10-07 21:54:55 +0200388
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500389 if (type) {
390 error = device_add_groups(dev, type->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200391 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500392 goto err_remove_class_attrs;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200393 }
394
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500395 error = device_add_groups(dev, dev->groups);
396 if (error)
397 goto err_remove_type_groups;
398
399 return 0;
400
401 err_remove_type_groups:
402 if (type)
403 device_remove_groups(dev, type->groups);
404 err_remove_class_attrs:
405 if (class)
406 device_remove_attributes(dev, class->dev_attrs);
407
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700408 return error;
409}
410
411static void device_remove_attrs(struct device *dev)
412{
413 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200414 struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700415
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500416 device_remove_groups(dev, dev->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200417
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500418 if (type)
419 device_remove_groups(dev, type->groups);
420
421 if (class)
422 device_remove_attributes(dev, class->dev_attrs);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700423}
424
425
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700426static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
427 char *buf)
428{
429 return print_dev_t(buf, dev->devt);
430}
431
Tejun Heoad6a1e12007-06-14 03:45:17 +0900432static struct device_attribute devt_attr =
433 __ATTR(dev, S_IRUGO, show_dev, NULL);
434
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -0600435/* kset to create /sys/devices/ */
436struct kset *devices_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800439 * device_create_file - create sysfs attribute file for device.
440 * @dev: device.
441 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 */
Phil Carmody26579ab2009-12-18 15:34:19 +0200443int device_create_file(struct device *dev,
444 const struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 int error = 0;
Cornelia Huck0c98b192008-01-31 10:39:38 +0100447 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 error = sysfs_create_file(&dev->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return error;
450}
451
452/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800453 * device_remove_file - remove sysfs attribute file.
454 * @dev: device.
455 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 */
Phil Carmody26579ab2009-12-18 15:34:19 +0200457void device_remove_file(struct device *dev,
458 const struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Cornelia Huck0c98b192008-01-31 10:39:38 +0100460 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 sysfs_remove_file(&dev->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700464/**
465 * device_create_bin_file - create sysfs binary attribute file for device.
466 * @dev: device.
467 * @attr: device binary attribute descriptor.
468 */
Phil Carmody66ecb922009-12-18 15:34:20 +0200469int device_create_bin_file(struct device *dev,
470 const struct bin_attribute *attr)
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700471{
472 int error = -EINVAL;
473 if (dev)
474 error = sysfs_create_bin_file(&dev->kobj, attr);
475 return error;
476}
477EXPORT_SYMBOL_GPL(device_create_bin_file);
478
479/**
480 * device_remove_bin_file - remove sysfs binary attribute file
481 * @dev: device.
482 * @attr: device binary attribute descriptor.
483 */
Phil Carmody66ecb922009-12-18 15:34:20 +0200484void device_remove_bin_file(struct device *dev,
485 const struct bin_attribute *attr)
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700486{
487 if (dev)
488 sysfs_remove_bin_file(&dev->kobj, attr);
489}
490EXPORT_SYMBOL_GPL(device_remove_bin_file);
491
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400492/**
Alan Stern523ded72007-04-26 00:12:04 -0700493 * device_schedule_callback_owner - helper to schedule a callback for a device
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400494 * @dev: device.
495 * @func: callback function to invoke later.
Alan Stern523ded72007-04-26 00:12:04 -0700496 * @owner: module owning the callback routine
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400497 *
498 * Attribute methods must not unregister themselves or their parent device
499 * (which would amount to the same thing). Attempts to do so will deadlock,
500 * since unregistration is mutually exclusive with driver callbacks.
501 *
502 * Instead methods can call this routine, which will attempt to allocate
503 * and schedule a workqueue request to call back @func with @dev as its
504 * argument in the workqueue's process context. @dev will be pinned until
505 * @func returns.
506 *
Alan Stern523ded72007-04-26 00:12:04 -0700507 * This routine is usually called via the inline device_schedule_callback(),
508 * which automatically sets @owner to THIS_MODULE.
509 *
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400510 * Returns 0 if the request was submitted, -ENOMEM if storage could not
Alan Stern523ded72007-04-26 00:12:04 -0700511 * be allocated, -ENODEV if a reference to @owner isn't available.
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400512 *
513 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
514 * underlying sysfs routine (since it is intended for use by attribute
515 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
516 */
Alan Stern523ded72007-04-26 00:12:04 -0700517int device_schedule_callback_owner(struct device *dev,
518 void (*func)(struct device *), struct module *owner)
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400519{
520 return sysfs_schedule_callback(&dev->kobj,
Alan Stern523ded72007-04-26 00:12:04 -0700521 (void (*)(void *)) func, dev, owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400522}
Alan Stern523ded72007-04-26 00:12:04 -0700523EXPORT_SYMBOL_GPL(device_schedule_callback_owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400524
James Bottomley34bb61f2005-09-06 16:56:51 -0700525static void klist_children_get(struct klist_node *n)
526{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800527 struct device_private *p = to_device_private_parent(n);
528 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700529
530 get_device(dev);
531}
532
533static void klist_children_put(struct klist_node *n)
534{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800535 struct device_private *p = to_device_private_parent(n);
536 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700537
538 put_device(dev);
539}
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800542 * device_initialize - init device structure.
543 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 *
Cornelia Huck57394112008-09-03 18:26:40 +0200545 * This prepares the device for use by other layers by initializing
546 * its fields.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800547 * It is the first half of device_register(), if called by
Cornelia Huck57394112008-09-03 18:26:40 +0200548 * that function, though it can also be called separately, so one
549 * may use @dev's fields. In particular, get_device()/put_device()
550 * may be used for reference counting of @dev after calling this
551 * function.
552 *
553 * NOTE: Use put_device() to give up your reference instead of freeing
554 * @dev directly once you have called this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556void device_initialize(struct device *dev)
557{
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -0600558 dev->kobj.kset = devices_kset;
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700559 kobject_init(&dev->kobj, &device_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 INIT_LIST_HEAD(&dev->dma_pools);
Thomas Gleixner31427882010-01-29 20:39:02 +0000561 mutex_init(&dev->mutex);
Tejun Heo9ac78492007-01-20 16:00:26 +0900562 spin_lock_init(&dev->devres_lock);
563 INIT_LIST_HEAD(&dev->devres_head);
Alan Stern3b98aea2008-08-07 13:06:12 -0400564 device_pm_init(dev);
Christoph Hellwig87348132006-12-06 20:32:33 -0800565 set_dev_node(dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100568#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sieversda231fd2007-11-21 17:29:15 +0100569static struct kobject *get_device_parent(struct device *dev,
570 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100571{
Kay Sieversda231fd2007-11-21 17:29:15 +0100572 /* class devices without a parent live in /sys/class/<classname>/ */
Dmitry Torokhov3eb215d2007-10-07 12:22:21 -0400573 if (dev->class && (!parent || parent->class != dev->class))
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700574 return &dev->class->p->class_subsys.kobj;
Kay Sieversda231fd2007-11-21 17:29:15 +0100575 /* all other devices keep their parent */
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100576 else if (parent)
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100577 return &parent->kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100578
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100579 return NULL;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100580}
Kay Sieversda231fd2007-11-21 17:29:15 +0100581
582static inline void cleanup_device_parent(struct device *dev) {}
Cornelia Huck63b69712008-01-21 16:09:44 +0100583static inline void cleanup_glue_dir(struct device *dev,
584 struct kobject *glue_dir) {}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100585#else
Kay Sievers86406242007-03-14 03:25:56 +0100586static struct kobject *virtual_device_parent(struct device *dev)
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700587{
Kay Sievers86406242007-03-14 03:25:56 +0100588 static struct kobject *virtual_dir = NULL;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700589
Kay Sievers86406242007-03-14 03:25:56 +0100590 if (!virtual_dir)
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -0800591 virtual_dir = kobject_create_and_add("virtual",
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -0600592 &devices_kset->kobj);
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700593
Kay Sievers86406242007-03-14 03:25:56 +0100594 return virtual_dir;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700595}
596
Kay Sieversda231fd2007-11-21 17:29:15 +0100597static struct kobject *get_device_parent(struct device *dev,
598 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100599{
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800600 int retval;
601
Kay Sievers86406242007-03-14 03:25:56 +0100602 if (dev->class) {
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900603 static DEFINE_MUTEX(gdp_mutex);
Kay Sievers86406242007-03-14 03:25:56 +0100604 struct kobject *kobj = NULL;
605 struct kobject *parent_kobj;
606 struct kobject *k;
607
608 /*
609 * If we have no parent, we live in "virtual".
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100610 * Class-devices with a non class-device as parent, live
611 * in a "glue" directory to prevent namespace collisions.
Kay Sievers86406242007-03-14 03:25:56 +0100612 */
613 if (parent == NULL)
614 parent_kobj = virtual_device_parent(dev);
615 else if (parent->class)
616 return &parent->kobj;
617 else
618 parent_kobj = &parent->kobj;
619
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900620 mutex_lock(&gdp_mutex);
621
Kay Sievers86406242007-03-14 03:25:56 +0100622 /* 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);
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900630 if (kobj) {
631 mutex_unlock(&gdp_mutex);
Kay Sievers86406242007-03-14 03:25:56 +0100632 return kobj;
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900633 }
Kay Sievers86406242007-03-14 03:25:56 +0100634
635 /* or create a new class-directory at the parent device */
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800636 k = kobject_create();
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900637 if (!k) {
638 mutex_unlock(&gdp_mutex);
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800639 return NULL;
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900640 }
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500641 k->kset = &dev->class->p->class_dirs;
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700642 retval = kobject_add(k, parent_kobj, "%s", dev->class->name);
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800643 if (retval < 0) {
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900644 mutex_unlock(&gdp_mutex);
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800645 kobject_put(k);
646 return NULL;
647 }
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100648 /* do not emit an uevent for this simple "glue" directory */
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900649 mutex_unlock(&gdp_mutex);
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800650 return k;
Kay Sievers86406242007-03-14 03:25:56 +0100651 }
652
653 if (parent)
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100654 return &parent->kobj;
655 return NULL;
656}
Kay Sieversda231fd2007-11-21 17:29:15 +0100657
Cornelia Huck63b69712008-01-21 16:09:44 +0100658static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
Kay Sieversda231fd2007-11-21 17:29:15 +0100659{
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100660 /* see if we live in a "glue" directory */
Cornelia Huckc1fe5392008-02-27 15:38:23 +0100661 if (!glue_dir || !dev->class ||
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500662 glue_dir->kset != &dev->class->p->class_dirs)
Kay Sieversda231fd2007-11-21 17:29:15 +0100663 return;
664
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100665 kobject_put(glue_dir);
Kay Sieversda231fd2007-11-21 17:29:15 +0100666}
Cornelia Huck63b69712008-01-21 16:09:44 +0100667
668static void cleanup_device_parent(struct device *dev)
669{
670 cleanup_glue_dir(dev, dev->kobj.parent);
671}
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100672#endif
Kay Sievers86406242007-03-14 03:25:56 +0100673
Cornelia Huck63b69712008-01-21 16:09:44 +0100674static void setup_parent(struct device *dev, struct device *parent)
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100675{
676 struct kobject *kobj;
677 kobj = get_device_parent(dev, parent);
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100678 if (kobj)
679 dev->kobj.parent = kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100680}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100681
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700682static int device_add_class_symlinks(struct device *dev)
683{
684 int error;
685
686 if (!dev->class)
687 return 0;
Kay Sieversda231fd2007-11-21 17:29:15 +0100688
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700689 error = sysfs_create_link(&dev->kobj,
690 &dev->class->p->class_subsys.kobj,
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700691 "subsystem");
692 if (error)
693 goto out;
Kay Sieversda231fd2007-11-21 17:29:15 +0100694
695#ifdef CONFIG_SYSFS_DEPRECATED
696 /* stacked class devices need a symlink in the class directory */
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700697 if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800698 device_is_not_partition(dev)) {
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700699 error = sysfs_create_link(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100700 &dev->kobj, dev_name(dev));
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700701 if (error)
702 goto out_subsys;
703 }
Kay Sieversda231fd2007-11-21 17:29:15 +0100704
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800705 if (dev->parent && device_is_not_partition(dev)) {
Kay Sieversda231fd2007-11-21 17:29:15 +0100706 struct device *parent = dev->parent;
707 char *class_name;
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700708
Kay Sieversda231fd2007-11-21 17:29:15 +0100709 /*
710 * stacked class devices have the 'device' link
711 * pointing to the bus device instead of the parent
712 */
713 while (parent->class && !parent->bus && parent->parent)
714 parent = parent->parent;
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700715
Kay Sieversda231fd2007-11-21 17:29:15 +0100716 error = sysfs_create_link(&dev->kobj,
717 &parent->kobj,
718 "device");
719 if (error)
720 goto out_busid;
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700721
Kay Sieversda231fd2007-11-21 17:29:15 +0100722 class_name = make_class_name(dev->class->name,
723 &dev->kobj);
724 if (class_name)
725 error = sysfs_create_link(&dev->parent->kobj,
726 &dev->kobj, class_name);
727 kfree(class_name);
728 if (error)
729 goto out_device;
730 }
731 return 0;
732
733out_device:
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800734 if (dev->parent && device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +0100735 sysfs_remove_link(&dev->kobj, "device");
736out_busid:
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700737 if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800738 device_is_not_partition(dev))
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700739 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100740 dev_name(dev));
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700741#else
Kay Sieversda231fd2007-11-21 17:29:15 +0100742 /* link in the class directory pointing to the device */
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700743 error = sysfs_create_link(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100744 &dev->kobj, dev_name(dev));
Kay Sieversda231fd2007-11-21 17:29:15 +0100745 if (error)
746 goto out_subsys;
747
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800748 if (dev->parent && device_is_not_partition(dev)) {
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700749 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
750 "device");
751 if (error)
752 goto out_busid;
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700753 }
754 return 0;
755
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700756out_busid:
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100757 sysfs_remove_link(&dev->class->p->class_subsys.kobj, dev_name(dev));
Kay Sieversda231fd2007-11-21 17:29:15 +0100758#endif
759
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700760out_subsys:
761 sysfs_remove_link(&dev->kobj, "subsystem");
762out:
763 return error;
764}
765
766static void device_remove_class_symlinks(struct device *dev)
767{
768 if (!dev->class)
769 return;
Kay Sieversda231fd2007-11-21 17:29:15 +0100770
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700771#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800772 if (dev->parent && device_is_not_partition(dev)) {
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700773 char *class_name;
774
775 class_name = make_class_name(dev->class->name, &dev->kobj);
776 if (class_name) {
777 sysfs_remove_link(&dev->parent->kobj, class_name);
778 kfree(class_name);
779 }
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700780 sysfs_remove_link(&dev->kobj, "device");
781 }
Kay Sieversda231fd2007-11-21 17:29:15 +0100782
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700783 if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800784 device_is_not_partition(dev))
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700785 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100786 dev_name(dev));
Kay Sieversda231fd2007-11-21 17:29:15 +0100787#else
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800788 if (dev->parent && device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +0100789 sysfs_remove_link(&dev->kobj, "device");
790
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100791 sysfs_remove_link(&dev->class->p->class_subsys.kobj, dev_name(dev));
Kay Sieversda231fd2007-11-21 17:29:15 +0100792#endif
793
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700794 sysfs_remove_link(&dev->kobj, "subsystem");
795}
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797/**
Stephen Rothwell413c2392008-05-30 10:16:40 +1000798 * dev_set_name - set a device name
799 * @dev: device
Randy Dunlap46232362008-06-04 21:40:43 -0700800 * @fmt: format string for the device's name
Stephen Rothwell413c2392008-05-30 10:16:40 +1000801 */
802int dev_set_name(struct device *dev, const char *fmt, ...)
803{
804 va_list vargs;
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100805 int err;
Stephen Rothwell413c2392008-05-30 10:16:40 +1000806
807 va_start(vargs, fmt);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100808 err = kobject_set_name_vargs(&dev->kobj, fmt, vargs);
Stephen Rothwell413c2392008-05-30 10:16:40 +1000809 va_end(vargs);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100810 return err;
Stephen Rothwell413c2392008-05-30 10:16:40 +1000811}
812EXPORT_SYMBOL_GPL(dev_set_name);
813
814/**
Dan Williamse105b8b2008-04-21 10:51:07 -0700815 * device_to_dev_kobj - select a /sys/dev/ directory for the device
816 * @dev: device
817 *
818 * By default we select char/ for new entries. Setting class->dev_obj
819 * to NULL prevents an entry from being created. class->dev_kobj must
820 * be set (or cleared) before any devices are registered to the class
821 * otherwise device_create_sys_dev_entry() and
822 * device_remove_sys_dev_entry() will disagree about the the presence
823 * of the link.
824 */
825static struct kobject *device_to_dev_kobj(struct device *dev)
826{
827 struct kobject *kobj;
828
829 if (dev->class)
830 kobj = dev->class->dev_kobj;
831 else
832 kobj = sysfs_dev_char_kobj;
833
834 return kobj;
835}
836
837static int device_create_sys_dev_entry(struct device *dev)
838{
839 struct kobject *kobj = device_to_dev_kobj(dev);
840 int error = 0;
841 char devt_str[15];
842
843 if (kobj) {
844 format_dev_t(devt_str, dev->devt);
845 error = sysfs_create_link(kobj, &dev->kobj, devt_str);
846 }
847
848 return error;
849}
850
851static void device_remove_sys_dev_entry(struct device *dev)
852{
853 struct kobject *kobj = device_to_dev_kobj(dev);
854 char devt_str[15];
855
856 if (kobj) {
857 format_dev_t(devt_str, dev->devt);
858 sysfs_remove_link(kobj, devt_str);
859 }
860}
861
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700862int device_private_init(struct device *dev)
863{
864 dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL);
865 if (!dev->p)
866 return -ENOMEM;
867 dev->p->device = dev;
868 klist_init(&dev->p->klist_children, klist_children_get,
869 klist_children_put);
870 return 0;
871}
872
Dan Williamse105b8b2008-04-21 10:51:07 -0700873/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800874 * device_add - add device to device hierarchy.
875 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800877 * This is part 2 of device_register(), though may be called
878 * separately _iff_ device_initialize() has been called separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 *
Cornelia Huck57394112008-09-03 18:26:40 +0200880 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800881 * to the global and sibling lists for the device, then
882 * adds it to the other relevant subsystems of the driver model.
Cornelia Huck57394112008-09-03 18:26:40 +0200883 *
884 * NOTE: _Never_ directly free @dev after calling this function, even
885 * if it returned an error! Always use put_device() to give up your
886 * reference instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 */
888int device_add(struct device *dev)
889{
890 struct device *parent = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200891 struct class_interface *class_intf;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700892 int error = -EINVAL;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +0100893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 dev = get_device(dev);
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700895 if (!dev)
896 goto done;
897
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800898 if (!dev->p) {
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700899 error = device_private_init(dev);
900 if (error)
901 goto done;
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800902 }
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800903
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100904 /*
905 * for statically allocated devices, which should all be converted
906 * some day, we need to initialize the name. We prevent reading back
907 * the name, and force the use of dev_name()
908 */
909 if (dev->init_name) {
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700910 dev_set_name(dev, "%s", dev->init_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100911 dev->init_name = NULL;
912 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700913
Thomas Gleixnere6309e72009-12-10 19:32:49 +0000914 if (!dev_name(dev)) {
915 error = -EINVAL;
Kay Sievers5c8563d2009-05-28 14:24:07 -0700916 goto name_error;
Thomas Gleixnere6309e72009-12-10 19:32:49 +0000917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100919 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -0700920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 parent = get_device(dev->parent);
Cornelia Huck63b69712008-01-21 16:09:44 +0100922 setup_parent(dev, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Yinghai Lu0d358f22008-02-19 03:20:41 -0800924 /* use parent numa_node */
925 if (parent)
926 set_dev_node(dev, dev_to_node(parent));
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 /* first, register with generic layer. */
Kay Sievers8a577ff2009-04-18 15:05:45 -0700929 /* we require the name to be set before, and pass NULL */
930 error = kobject_add(&dev->kobj, dev->kobj.parent, NULL);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100931 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 goto Error;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200933
Brian Walsh37022642006-08-14 22:43:19 -0700934 /* notify platform of device entry */
935 if (platform_notify)
936 platform_notify(dev);
937
Tejun Heoad6a1e12007-06-14 03:45:17 +0900938 error = device_create_file(dev, &uevent_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200939 if (error)
940 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200941
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700942 if (MAJOR(dev->devt)) {
Tejun Heoad6a1e12007-06-14 03:45:17 +0900943 error = device_create_file(dev, &devt_attr);
944 if (error)
Cornelia Hucka306eea2006-09-22 11:37:13 +0200945 goto ueventattrError;
Dan Williamse105b8b2008-04-21 10:51:07 -0700946
947 error = device_create_sys_dev_entry(dev);
948 if (error)
949 goto devtattrError;
Kay Sievers2b2af542009-04-30 15:23:42 +0200950
951 devtmpfs_create_node(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700952 }
953
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700954 error = device_add_class_symlinks(dev);
955 if (error)
956 goto SymlinkError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700957 error = device_add_attrs(dev);
958 if (error)
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700959 goto AttrsError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700960 error = bus_add_device(dev);
961 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 goto BusError;
Alan Stern3b98aea2008-08-07 13:06:12 -0400963 error = dpm_sysfs_add(dev);
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +0100964 if (error)
Alan Stern3b98aea2008-08-07 13:06:12 -0400965 goto DPMError;
966 device_pm_add(dev);
Alan Sternec0676ee2008-12-05 14:10:31 -0500967
968 /* Notify clients of device addition. This call must come
969 * after dpm_sysf_add() and before kobject_uevent().
970 */
971 if (dev->bus)
972 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
973 BUS_NOTIFY_ADD_DEVICE, dev);
974
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +0200975 kobject_uevent(&dev->kobj, KOBJ_ADD);
Alan Stern2023c612009-07-30 15:27:18 -0400976 bus_probe_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800978 klist_add_tail(&dev->p->knode_parent,
979 &parent->p->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700981 if (dev->class) {
Dave Youngf75b1c62008-05-28 09:28:39 -0700982 mutex_lock(&dev->class->p->class_mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200983 /* tie the class to the device */
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200984 klist_add_tail(&dev->knode_class,
985 &dev->class->p->class_devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200986
987 /* notify any interfaces that the device is here */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -0700988 list_for_each_entry(class_intf,
989 &dev->class->p->class_interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200990 if (class_intf->add_dev)
991 class_intf->add_dev(dev, class_intf);
Dave Youngf75b1c62008-05-28 09:28:39 -0700992 mutex_unlock(&dev->class->p->class_mutex);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700993 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700994done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 put_device(dev);
996 return error;
Alan Stern3b98aea2008-08-07 13:06:12 -0400997 DPMError:
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +0100998 bus_remove_device(dev);
999 BusError:
James Simmons82f0cf92007-02-21 17:44:51 +00001000 device_remove_attrs(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001001 AttrsError:
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001002 device_remove_class_symlinks(dev);
1003 SymlinkError:
Tejun Heoad6a1e12007-06-14 03:45:17 +09001004 if (MAJOR(dev->devt))
Kay Sieversad729562009-10-28 19:51:37 +01001005 devtmpfs_delete_node(dev);
1006 if (MAJOR(dev->devt))
Dan Williamse105b8b2008-04-21 10:51:07 -07001007 device_remove_sys_dev_entry(dev);
1008 devtattrError:
1009 if (MAJOR(dev->devt))
Tejun Heoad6a1e12007-06-14 03:45:17 +09001010 device_remove_file(dev, &devt_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +02001011 ueventattrError:
Tejun Heoad6a1e12007-06-14 03:45:17 +09001012 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001013 attrError:
Kay Sievers312c0042005-11-16 09:00:00 +01001014 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 kobject_del(&dev->kobj);
1016 Error:
Cornelia Huck63b69712008-01-21 16:09:44 +01001017 cleanup_device_parent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (parent)
1019 put_device(parent);
Kay Sievers5c8563d2009-05-28 14:24:07 -07001020name_error:
1021 kfree(dev->p);
1022 dev->p = NULL;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001023 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024}
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001027 * device_register - register a device with the system.
1028 * @dev: pointer to the device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001030 * This happens in two clean steps - initialize the device
1031 * and add it to the system. The two steps can be called
1032 * separately, but this is the easiest and most common.
1033 * I.e. you should only call the two helpers separately if
1034 * have a clearly defined need to use and refcount the device
1035 * before it is added to the hierarchy.
Cornelia Huck57394112008-09-03 18:26:40 +02001036 *
1037 * NOTE: _Never_ directly free @dev after calling this function, even
1038 * if it returned an error! Always use put_device() to give up the
1039 * reference initialized in this function instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041int device_register(struct device *dev)
1042{
1043 device_initialize(dev);
1044 return device_add(dev);
1045}
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001048 * get_device - increment reference count for device.
1049 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001051 * This simply forwards the call to kobject_get(), though
1052 * we do take care to provide for the case that we get a NULL
1053 * pointer passed in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001055struct device *get_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
1057 return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
1058}
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001061 * put_device - decrement reference count.
1062 * @dev: device in question.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001064void put_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001066 /* might_sleep(); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (dev)
1068 kobject_put(&dev->kobj);
1069}
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001072 * device_del - delete device from system.
1073 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001075 * This is the first part of the device unregistration
1076 * sequence. This removes the device from the lists we control
1077 * from here, has it removed from the other driver model
1078 * subsystems it was added to in device_add(), and removes it
1079 * from the kobject hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001081 * NOTE: this should be called manually _iff_ device_add() was
1082 * also called manually.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001084void device_del(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001086 struct device *parent = dev->parent;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001087 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Alan Sternec0676ee2008-12-05 14:10:31 -05001089 /* Notify clients of device removal. This call must come
1090 * before dpm_sysfs_remove().
1091 */
1092 if (dev->bus)
1093 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
1094 BUS_NOTIFY_DEL_DEVICE, dev);
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001095 device_pm_remove(dev);
Alan Stern3b98aea2008-08-07 13:06:12 -04001096 dpm_sysfs_remove(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001098 klist_del(&dev->p->knode_parent);
Dan Williamse105b8b2008-04-21 10:51:07 -07001099 if (MAJOR(dev->devt)) {
Kay Sievers2b2af542009-04-30 15:23:42 +02001100 devtmpfs_delete_node(dev);
Dan Williamse105b8b2008-04-21 10:51:07 -07001101 device_remove_sys_dev_entry(dev);
Tejun Heoad6a1e12007-06-14 03:45:17 +09001102 device_remove_file(dev, &devt_attr);
Dan Williamse105b8b2008-04-21 10:51:07 -07001103 }
Kay Sieversb9d9c822006-06-15 15:31:56 +02001104 if (dev->class) {
Kay Sieversda231fd2007-11-21 17:29:15 +01001105 device_remove_class_symlinks(dev);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001106
Dave Youngf75b1c62008-05-28 09:28:39 -07001107 mutex_lock(&dev->class->p->class_mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001108 /* notify any interfaces that the device is now gone */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -07001109 list_for_each_entry(class_intf,
1110 &dev->class->p->class_interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001111 if (class_intf->remove_dev)
1112 class_intf->remove_dev(dev, class_intf);
1113 /* remove the device from the class list */
Tejun Heo5a3ceb82008-08-25 19:50:19 +02001114 klist_del(&dev->knode_class);
Dave Youngf75b1c62008-05-28 09:28:39 -07001115 mutex_unlock(&dev->class->p->class_mutex);
Kay Sieversb9d9c822006-06-15 15:31:56 +02001116 }
Tejun Heoad6a1e12007-06-14 03:45:17 +09001117 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001118 device_remove_attrs(dev);
Benjamin Herrenschmidt28953532006-11-08 19:46:14 -08001119 bus_remove_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Tejun Heo2f8d16a2007-03-09 19:34:19 +09001121 /*
1122 * Some platform devices are driven without driver attached
1123 * and managed resources may have been acquired. Make sure
1124 * all resources are released.
1125 */
1126 devres_release_all(dev);
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 /* Notify the platform of the removal, in case they
1129 * need to do anything...
1130 */
1131 if (platform_notify_remove)
1132 platform_notify_remove(dev);
Kay Sievers312c0042005-11-16 09:00:00 +01001133 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Kay Sieversda231fd2007-11-21 17:29:15 +01001134 cleanup_device_parent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 kobject_del(&dev->kobj);
Kay Sieversda231fd2007-11-21 17:29:15 +01001136 put_device(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137}
1138
1139/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001140 * device_unregister - unregister device from system.
1141 * @dev: device going away.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001143 * We do this in two parts, like we do device_register(). First,
1144 * we remove it from all the subsystems with device_del(), then
1145 * we decrement the reference count via put_device(). If that
1146 * is the final reference count, the device will be cleaned up
1147 * via device_release() above. Otherwise, the structure will
1148 * stick around until the final reference to the device is dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001150void device_unregister(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001152 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 device_del(dev);
1154 put_device(dev);
1155}
1156
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001157static struct device *next_device(struct klist_iter *i)
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001158{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001159 struct klist_node *n = klist_next(i);
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001160 struct device *dev = NULL;
1161 struct device_private *p;
1162
1163 if (n) {
1164 p = to_device_private_parent(n);
1165 dev = p->device;
1166 }
1167 return dev;
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001168}
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170/**
Kay Sieverse454cea2009-09-18 23:01:12 +02001171 * device_get_devnode - path of device node file
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001172 * @dev: device
Kay Sieverse454cea2009-09-18 23:01:12 +02001173 * @mode: returned file access mode
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001174 * @tmp: possibly allocated string
1175 *
1176 * Return the relative path of a possible device node.
1177 * Non-default names may need to allocate a memory to compose
1178 * a name. This memory is returned in tmp and needs to be
1179 * freed by the caller.
1180 */
Kay Sieverse454cea2009-09-18 23:01:12 +02001181const char *device_get_devnode(struct device *dev,
1182 mode_t *mode, const char **tmp)
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001183{
1184 char *s;
1185
1186 *tmp = NULL;
1187
1188 /* the device type may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02001189 if (dev->type && dev->type->devnode)
1190 *tmp = dev->type->devnode(dev, mode);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001191 if (*tmp)
1192 return *tmp;
1193
1194 /* the class may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02001195 if (dev->class && dev->class->devnode)
1196 *tmp = dev->class->devnode(dev, mode);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001197 if (*tmp)
1198 return *tmp;
1199
1200 /* return name without allocation, tmp == NULL */
1201 if (strchr(dev_name(dev), '!') == NULL)
1202 return dev_name(dev);
1203
1204 /* replace '!' in the name with '/' */
1205 *tmp = kstrdup(dev_name(dev), GFP_KERNEL);
1206 if (!*tmp)
1207 return NULL;
1208 while ((s = strchr(*tmp, '!')))
1209 s[0] = '/';
1210 return *tmp;
1211}
1212
1213/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001214 * device_for_each_child - device child iterator.
1215 * @parent: parent struct device.
1216 * @data: data for the callback.
1217 * @fn: function to be called for each device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001219 * Iterate over @parent's child devices, and call @fn for each,
1220 * passing it @data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001222 * We check the return of @fn each time. If it returns anything
1223 * other than 0, we break out and return that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001225int device_for_each_child(struct device *parent, void *data,
1226 int (*fn)(struct device *dev, void *data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001228 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001229 struct device *child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 int error = 0;
1231
Greg Kroah-Hartman014c90db2009-04-15 16:00:12 -07001232 if (!parent->p)
1233 return 0;
1234
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001235 klist_iter_init(&parent->p->klist_children, &i);
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001236 while ((child = next_device(&i)) && !error)
1237 error = fn(child, data);
1238 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 return error;
1240}
1241
Cornelia Huck5ab69982006-11-16 15:42:07 +01001242/**
1243 * device_find_child - device iterator for locating a particular device.
1244 * @parent: parent struct device
1245 * @data: Data to pass to match function
1246 * @match: Callback function to check device
1247 *
1248 * This is similar to the device_for_each_child() function above, but it
1249 * returns a reference to a device that is 'found' for later use, as
1250 * determined by the @match callback.
1251 *
1252 * The callback should return 0 if the device doesn't match and non-zero
1253 * if it does. If the callback returns non-zero and a reference to the
1254 * current device can be obtained, this function will return to the caller
1255 * and not iterate over any more devices.
1256 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001257struct device *device_find_child(struct device *parent, void *data,
1258 int (*match)(struct device *dev, void *data))
Cornelia Huck5ab69982006-11-16 15:42:07 +01001259{
1260 struct klist_iter i;
1261 struct device *child;
1262
1263 if (!parent)
1264 return NULL;
1265
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001266 klist_iter_init(&parent->p->klist_children, &i);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001267 while ((child = next_device(&i)))
1268 if (match(child, data) && get_device(child))
1269 break;
1270 klist_iter_exit(&i);
1271 return child;
1272}
1273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274int __init devices_init(void)
1275{
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06001276 devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
1277 if (!devices_kset)
1278 return -ENOMEM;
Dan Williamse105b8b2008-04-21 10:51:07 -07001279 dev_kobj = kobject_create_and_add("dev", NULL);
1280 if (!dev_kobj)
1281 goto dev_kobj_err;
1282 sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj);
1283 if (!sysfs_dev_block_kobj)
1284 goto block_kobj_err;
1285 sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj);
1286 if (!sysfs_dev_char_kobj)
1287 goto char_kobj_err;
1288
Greg Kroah-Hartman881c6cfd2007-11-01 09:29:06 -06001289 return 0;
Dan Williamse105b8b2008-04-21 10:51:07 -07001290
1291 char_kobj_err:
1292 kobject_put(sysfs_dev_block_kobj);
1293 block_kobj_err:
1294 kobject_put(dev_kobj);
1295 dev_kobj_err:
1296 kset_unregister(devices_kset);
1297 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
1300EXPORT_SYMBOL_GPL(device_for_each_child);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001301EXPORT_SYMBOL_GPL(device_find_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303EXPORT_SYMBOL_GPL(device_initialize);
1304EXPORT_SYMBOL_GPL(device_add);
1305EXPORT_SYMBOL_GPL(device_register);
1306
1307EXPORT_SYMBOL_GPL(device_del);
1308EXPORT_SYMBOL_GPL(device_unregister);
1309EXPORT_SYMBOL_GPL(get_device);
1310EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312EXPORT_SYMBOL_GPL(device_create_file);
1313EXPORT_SYMBOL_GPL(device_remove_file);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001314
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001315struct root_device
1316{
1317 struct device dev;
1318 struct module *owner;
1319};
1320
1321#define to_root_device(dev) container_of(dev, struct root_device, dev)
1322
1323static void root_device_release(struct device *dev)
1324{
1325 kfree(to_root_device(dev));
1326}
1327
1328/**
1329 * __root_device_register - allocate and register a root device
1330 * @name: root device name
1331 * @owner: owner module of the root device, usually THIS_MODULE
1332 *
1333 * This function allocates a root device and registers it
1334 * using device_register(). In order to free the returned
1335 * device, use root_device_unregister().
1336 *
1337 * Root devices are dummy devices which allow other devices
1338 * to be grouped under /sys/devices. Use this function to
1339 * allocate a root device and then use it as the parent of
1340 * any device which should appear under /sys/devices/{name}
1341 *
1342 * The /sys/devices/{name} directory will also contain a
1343 * 'module' symlink which points to the @owner directory
1344 * in sysfs.
1345 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02001346 * Returns &struct device pointer on success, or ERR_PTR() on error.
1347 *
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001348 * Note: You probably want to use root_device_register().
1349 */
1350struct device *__root_device_register(const char *name, struct module *owner)
1351{
1352 struct root_device *root;
1353 int err = -ENOMEM;
1354
1355 root = kzalloc(sizeof(struct root_device), GFP_KERNEL);
1356 if (!root)
1357 return ERR_PTR(err);
1358
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -07001359 err = dev_set_name(&root->dev, "%s", name);
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001360 if (err) {
1361 kfree(root);
1362 return ERR_PTR(err);
1363 }
1364
1365 root->dev.release = root_device_release;
1366
1367 err = device_register(&root->dev);
1368 if (err) {
1369 put_device(&root->dev);
1370 return ERR_PTR(err);
1371 }
1372
1373#ifdef CONFIG_MODULE /* gotta find a "cleaner" way to do this */
1374 if (owner) {
1375 struct module_kobject *mk = &owner->mkobj;
1376
1377 err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module");
1378 if (err) {
1379 device_unregister(&root->dev);
1380 return ERR_PTR(err);
1381 }
1382 root->owner = owner;
1383 }
1384#endif
1385
1386 return &root->dev;
1387}
1388EXPORT_SYMBOL_GPL(__root_device_register);
1389
1390/**
1391 * root_device_unregister - unregister and free a root device
Randy Dunlap7cbcf222009-01-20 16:29:13 -08001392 * @dev: device going away
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001393 *
1394 * This function unregisters and cleans up a device that was created by
1395 * root_device_register().
1396 */
1397void root_device_unregister(struct device *dev)
1398{
1399 struct root_device *root = to_root_device(dev);
1400
1401 if (root->owner)
1402 sysfs_remove_link(&root->dev.kobj, "module");
1403
1404 device_unregister(dev);
1405}
1406EXPORT_SYMBOL_GPL(root_device_unregister);
1407
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001408
1409static void device_create_release(struct device *dev)
1410{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001411 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001412 kfree(dev);
1413}
1414
1415/**
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001416 * device_create_vargs - creates a device and registers it with sysfs
1417 * @class: pointer to the struct class that this device should be registered to
1418 * @parent: pointer to the parent struct device of this new device, if any
1419 * @devt: the dev_t for the char device to be added
1420 * @drvdata: the data to be added to the device for callbacks
1421 * @fmt: string for the device's name
1422 * @args: va_list for the device's name
1423 *
1424 * This function can be used by char device classes. A struct device
1425 * will be created in sysfs, registered to the specified class.
1426 *
1427 * A "dev" file will be created, showing the dev_t for the device, if
1428 * the dev_t is not 0,0.
1429 * If a pointer to a parent struct device is passed in, the newly created
1430 * struct device will be a child of that device in sysfs.
1431 * The pointer to the struct device will be returned from the call.
1432 * Any further sysfs files that might be required can be created using this
1433 * pointer.
1434 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02001435 * Returns &struct device pointer on success, or ERR_PTR() on error.
1436 *
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001437 * Note: the struct class passed to this function must have previously
1438 * been created with a call to class_create().
1439 */
1440struct device *device_create_vargs(struct class *class, struct device *parent,
1441 dev_t devt, void *drvdata, const char *fmt,
1442 va_list args)
1443{
1444 struct device *dev = NULL;
1445 int retval = -ENODEV;
1446
1447 if (class == NULL || IS_ERR(class))
1448 goto error;
1449
1450 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1451 if (!dev) {
1452 retval = -ENOMEM;
1453 goto error;
1454 }
1455
1456 dev->devt = devt;
1457 dev->class = class;
1458 dev->parent = parent;
1459 dev->release = device_create_release;
1460 dev_set_drvdata(dev, drvdata);
1461
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001462 retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
1463 if (retval)
1464 goto error;
1465
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001466 retval = device_register(dev);
1467 if (retval)
1468 goto error;
1469
1470 return dev;
1471
1472error:
Cornelia Huck286661b2008-09-03 18:26:41 +02001473 put_device(dev);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001474 return ERR_PTR(retval);
1475}
1476EXPORT_SYMBOL_GPL(device_create_vargs);
1477
1478/**
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001479 * device_create - creates a device and registers it with sysfs
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001480 * @class: pointer to the struct class that this device should be registered to
1481 * @parent: pointer to the parent struct device of this new device, if any
1482 * @devt: the dev_t for the char device to be added
1483 * @drvdata: the data to be added to the device for callbacks
1484 * @fmt: string for the device's name
1485 *
1486 * This function can be used by char device classes. A struct device
1487 * will be created in sysfs, registered to the specified class.
1488 *
1489 * A "dev" file will be created, showing the dev_t for the device, if
1490 * the dev_t is not 0,0.
1491 * If a pointer to a parent struct device is passed in, the newly created
1492 * struct device will be a child of that device in sysfs.
1493 * The pointer to the struct device will be returned from the call.
1494 * Any further sysfs files that might be required can be created using this
1495 * pointer.
1496 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02001497 * Returns &struct device pointer on success, or ERR_PTR() on error.
1498 *
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001499 * Note: the struct class passed to this function must have previously
1500 * been created with a call to class_create().
1501 */
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001502struct device *device_create(struct class *class, struct device *parent,
1503 dev_t devt, void *drvdata, const char *fmt, ...)
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001504{
1505 va_list vargs;
1506 struct device *dev;
1507
1508 va_start(vargs, fmt);
1509 dev = device_create_vargs(class, parent, devt, drvdata, fmt, vargs);
1510 va_end(vargs);
1511 return dev;
1512}
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001513EXPORT_SYMBOL_GPL(device_create);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001514
Dave Youngcd354492008-01-28 16:56:11 +08001515static int __match_devt(struct device *dev, void *data)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001516{
Dave Youngcd354492008-01-28 16:56:11 +08001517 dev_t *devt = data;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001518
Dave Youngcd354492008-01-28 16:56:11 +08001519 return dev->devt == *devt;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001520}
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001521
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001522/**
1523 * device_destroy - removes a device that was created with device_create()
1524 * @class: pointer to the struct class that this device was registered with
1525 * @devt: the dev_t of the device that was previously registered
1526 *
1527 * This call unregisters and cleans up a device that was created with a
1528 * call to device_create().
1529 */
1530void device_destroy(struct class *class, dev_t devt)
1531{
1532 struct device *dev;
1533
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -04001534 dev = class_find_device(class, NULL, &devt, __match_devt);
Dave Youngcd354492008-01-28 16:56:11 +08001535 if (dev) {
1536 put_device(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001537 device_unregister(dev);
Dave Youngcd354492008-01-28 16:56:11 +08001538 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001539}
1540EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001541
1542/**
1543 * device_rename - renames a device
1544 * @dev: the pointer to the struct device to be renamed
1545 * @new_name: the new name of the device
Eric W. Biederman030c1d22008-05-08 14:41:00 -07001546 *
1547 * It is the responsibility of the caller to provide mutual
1548 * exclusion between two different calls of device_rename
1549 * on the same device to ensure that new_name is valid and
1550 * won't conflict with other devices.
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001551 */
1552int device_rename(struct device *dev, char *new_name)
1553{
1554 char *old_class_name = NULL;
1555 char *new_class_name = NULL;
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001556 char *old_device_name = NULL;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001557 int error;
1558
1559 dev = get_device(dev);
1560 if (!dev)
1561 return -EINVAL;
1562
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001563 pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -08001564 __func__, new_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001565
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001566#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001567 if ((dev->class) && (dev->parent))
1568 old_class_name = make_class_name(dev->class->name, &dev->kobj);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001569#endif
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001570
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001571 old_device_name = kstrdup(dev_name(dev), GFP_KERNEL);
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001572 if (!old_device_name) {
1573 error = -ENOMEM;
1574 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001575 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001576
1577 error = kobject_rename(&dev->kobj, new_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001578 if (error)
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001579 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001580
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001581#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001582 if (old_class_name) {
1583 new_class_name = make_class_name(dev->class->name, &dev->kobj);
1584 if (new_class_name) {
Eric W. Biederman2354dcc2010-02-12 19:22:26 -08001585 error = sysfs_rename_link(&dev->parent->kobj,
1586 &dev->kobj,
1587 old_class_name,
1588 new_class_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001589 }
1590 }
Kay Sievers60b8cab2007-10-26 20:07:44 +02001591#else
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001592 if (dev->class) {
Eric W. Biederman2354dcc2010-02-12 19:22:26 -08001593 error = sysfs_rename_link(&dev->class->p->class_subsys.kobj,
1594 &dev->kobj, old_device_name, new_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001595 }
Kay Sievers60b8cab2007-10-26 20:07:44 +02001596#endif
1597
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001598out:
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001599 put_device(dev);
1600
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001601 kfree(new_class_name);
Jesper Juhl952ab432006-09-28 23:56:01 +02001602 kfree(old_class_name);
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001603 kfree(old_device_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001604
1605 return error;
1606}
Johannes Berga2807db2007-02-28 12:38:31 +01001607EXPORT_SYMBOL_GPL(device_rename);
Cornelia Huck8a824722006-11-20 17:07:51 +01001608
1609static int device_move_class_links(struct device *dev,
1610 struct device *old_parent,
1611 struct device *new_parent)
1612{
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001613 int error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001614#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huck8a824722006-11-20 17:07:51 +01001615 char *class_name;
1616
1617 class_name = make_class_name(dev->class->name, &dev->kobj);
1618 if (!class_name) {
Cornelia Huckcb360bb2006-11-27 10:35:05 +01001619 error = -ENOMEM;
Cornelia Huck8a824722006-11-20 17:07:51 +01001620 goto out;
1621 }
1622 if (old_parent) {
1623 sysfs_remove_link(&dev->kobj, "device");
1624 sysfs_remove_link(&old_parent->kobj, class_name);
1625 }
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001626 if (new_parent) {
1627 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1628 "device");
1629 if (error)
1630 goto out;
1631 error = sysfs_create_link(&new_parent->kobj, &dev->kobj,
1632 class_name);
1633 if (error)
1634 sysfs_remove_link(&dev->kobj, "device");
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001635 } else
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001636 error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001637out:
1638 kfree(class_name);
1639 return error;
1640#else
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001641 if (old_parent)
1642 sysfs_remove_link(&dev->kobj, "device");
1643 if (new_parent)
1644 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1645 "device");
1646 return error;
Cornelia Huck8a824722006-11-20 17:07:51 +01001647#endif
1648}
1649
1650/**
1651 * device_move - moves a device to a new parent
1652 * @dev: the pointer to the struct device to be moved
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001653 * @new_parent: the new parent of the device (can by NULL)
Cornelia Huckffa6a702009-03-04 12:44:00 +01001654 * @dpm_order: how to reorder the dpm_list
Cornelia Huck8a824722006-11-20 17:07:51 +01001655 */
Cornelia Huckffa6a702009-03-04 12:44:00 +01001656int device_move(struct device *dev, struct device *new_parent,
1657 enum dpm_order dpm_order)
Cornelia Huck8a824722006-11-20 17:07:51 +01001658{
1659 int error;
1660 struct device *old_parent;
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001661 struct kobject *new_parent_kobj;
Cornelia Huck8a824722006-11-20 17:07:51 +01001662
1663 dev = get_device(dev);
1664 if (!dev)
1665 return -EINVAL;
1666
Cornelia Huckffa6a702009-03-04 12:44:00 +01001667 device_pm_lock();
Cornelia Huck8a824722006-11-20 17:07:51 +01001668 new_parent = get_device(new_parent);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001669 new_parent_kobj = get_device_parent(dev, new_parent);
Cornelia Huck63b69712008-01-21 16:09:44 +01001670
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001671 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev),
1672 __func__, new_parent ? dev_name(new_parent) : "<NULL>");
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001673 error = kobject_move(&dev->kobj, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001674 if (error) {
Cornelia Huck63b69712008-01-21 16:09:44 +01001675 cleanup_glue_dir(dev, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001676 put_device(new_parent);
1677 goto out;
1678 }
1679 old_parent = dev->parent;
1680 dev->parent = new_parent;
1681 if (old_parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001682 klist_remove(&dev->p->knode_parent);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001683 if (new_parent) {
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001684 klist_add_tail(&dev->p->knode_parent,
1685 &new_parent->p->klist_children);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001686 set_dev_node(dev, dev_to_node(new_parent));
1687 }
1688
Cornelia Huck8a824722006-11-20 17:07:51 +01001689 if (!dev->class)
1690 goto out_put;
1691 error = device_move_class_links(dev, old_parent, new_parent);
1692 if (error) {
1693 /* We ignore errors on cleanup since we're hosed anyway... */
1694 device_move_class_links(dev, new_parent, old_parent);
1695 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001696 if (new_parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001697 klist_remove(&dev->p->knode_parent);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001698 dev->parent = old_parent;
1699 if (old_parent) {
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001700 klist_add_tail(&dev->p->knode_parent,
1701 &old_parent->p->klist_children);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001702 set_dev_node(dev, dev_to_node(old_parent));
1703 }
Cornelia Huck8a824722006-11-20 17:07:51 +01001704 }
Cornelia Huck63b69712008-01-21 16:09:44 +01001705 cleanup_glue_dir(dev, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001706 put_device(new_parent);
1707 goto out;
1708 }
Cornelia Huckffa6a702009-03-04 12:44:00 +01001709 switch (dpm_order) {
1710 case DPM_ORDER_NONE:
1711 break;
1712 case DPM_ORDER_DEV_AFTER_PARENT:
1713 device_pm_move_after(dev, new_parent);
1714 break;
1715 case DPM_ORDER_PARENT_BEFORE_DEV:
1716 device_pm_move_before(new_parent, dev);
1717 break;
1718 case DPM_ORDER_DEV_LAST:
1719 device_pm_move_last(dev);
1720 break;
1721 }
Cornelia Huck8a824722006-11-20 17:07:51 +01001722out_put:
1723 put_device(old_parent);
1724out:
Cornelia Huckffa6a702009-03-04 12:44:00 +01001725 device_pm_unlock();
Cornelia Huck8a824722006-11-20 17:07:51 +01001726 put_device(dev);
1727 return error;
1728}
Cornelia Huck8a824722006-11-20 17:07:51 +01001729EXPORT_SYMBOL_GPL(device_move);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001730
1731/**
1732 * device_shutdown - call ->shutdown() on each device to shutdown.
1733 */
1734void device_shutdown(void)
1735{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001736 struct device *dev, *devn;
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001737
1738 list_for_each_entry_safe_reverse(dev, devn, &devices_kset->list,
1739 kobj.entry) {
1740 if (dev->bus && dev->bus->shutdown) {
1741 dev_dbg(dev, "shutdown\n");
1742 dev->bus->shutdown(dev);
1743 } else if (dev->driver && dev->driver->shutdown) {
1744 dev_dbg(dev, "shutdown\n");
1745 dev->driver->shutdown(dev);
1746 }
1747 }
Shaohua Li401097e2009-05-12 13:37:57 -07001748 async_synchronize_full();
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001749}