blob: 0d3c29d7221512fcbf6715b15f8c29be5cf9cc95 [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{
59 return dev->driver ? dev->driver->name :
Jean Delvarea456b702007-03-09 16:33:10 +010060 (dev->bus ? dev->bus->name :
61 (dev->class ? dev->class->name : ""));
Alan Stern3e956372006-06-16 17:10:48 -040062}
Matthew Wilcox310a9222006-09-23 23:35:04 -060063EXPORT_SYMBOL(dev_driver_string);
Alan Stern3e956372006-06-16 17:10:48 -040064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define to_dev(obj) container_of(obj, struct device, kobj)
66#define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
67
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080068static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
69 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080071 struct device_attribute *dev_attr = to_dev_attr(attr);
72 struct device *dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050073 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75 if (dev_attr->show)
Yani Ioannou54b6f352005-05-17 06:39:34 -040076 ret = dev_attr->show(dev, dev_attr, buf);
Andrew Morton815d2d52008-03-04 15:09:07 -080077 if (ret >= (ssize_t)PAGE_SIZE) {
78 print_symbol("dev_attr_show: %s returned bad count\n",
79 (unsigned long)dev_attr->show);
80 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return ret;
82}
83
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080084static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
85 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080087 struct device_attribute *dev_attr = to_dev_attr(attr);
88 struct device *dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050089 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 if (dev_attr->store)
Yani Ioannou54b6f352005-05-17 06:39:34 -040092 ret = dev_attr->store(dev, dev_attr, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return ret;
94}
95
96static struct sysfs_ops dev_sysfs_ops = {
97 .show = dev_attr_show,
98 .store = dev_attr_store,
99};
100
101
102/**
103 * device_release - free device structure.
104 * @kobj: device's kobject.
105 *
106 * This is called once the reference count for the object
107 * reaches 0. We forward the call to the device's release
108 * method, which should handle actually freeing the structure.
109 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800110static void device_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800112 struct device *dev = to_dev(kobj);
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800113 struct device_private *p = dev->p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 if (dev->release)
116 dev->release(dev);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200117 else if (dev->type && dev->type->release)
118 dev->type->release(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700119 else if (dev->class && dev->class->dev_release)
120 dev->class->dev_release(dev);
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700121 else
122 WARN(1, KERN_ERR "Device '%s' does not have a release() "
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800123 "function, it is broken and must be fixed.\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100124 dev_name(dev));
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800125 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600128static struct kobj_type device_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 .release = device_release,
130 .sysfs_ops = &dev_sysfs_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
133
Kay Sievers312c0042005-11-16 09:00:00 +0100134static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 struct kobj_type *ktype = get_ktype(kobj);
137
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600138 if (ktype == &device_ktype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 struct device *dev = to_dev(kobj);
140 if (dev->bus)
141 return 1;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700142 if (dev->class)
143 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145 return 0;
146}
147
Kay Sievers312c0042005-11-16 09:00:00 +0100148static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 struct device *dev = to_dev(kobj);
151
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700152 if (dev->bus)
153 return dev->bus->name;
154 if (dev->class)
155 return dev->class->name;
156 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Kay Sievers7eff2e72007-08-14 15:15:12 +0200159static int dev_uevent(struct kset *kset, struct kobject *kobj,
160 struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 struct device *dev = to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 int retval = 0;
164
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200165 /* add device node properties if present */
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700166 if (MAJOR(dev->devt)) {
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200167 const char *tmp;
168 const char *name;
Kay Sieverse454cea2009-09-18 23:01:12 +0200169 mode_t mode = 0;
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200170
Kay Sievers7eff2e72007-08-14 15:15:12 +0200171 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
172 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
Kay Sieverse454cea2009-09-18 23:01:12 +0200173 name = device_get_devnode(dev, &mode, &tmp);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200174 if (name) {
175 add_uevent_var(env, "DEVNAME=%s", name);
176 kfree(tmp);
Kay Sieverse454cea2009-09-18 23:01:12 +0200177 if (mode)
178 add_uevent_var(env, "DEVMODE=%#o", mode & 0777);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200179 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700180 }
181
Kay Sievers414264f2007-03-12 21:08:57 +0100182 if (dev->type && dev->type->name)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200183 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
Kay Sievers414264f2007-03-12 21:08:57 +0100184
Kay Sievers239378f2006-10-07 21:54:55 +0200185 if (dev->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200186 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200187
Kay Sieversa87cb2a2006-09-14 11:23:28 +0200188#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sievers239378f2006-10-07 21:54:55 +0200189 if (dev->class) {
190 struct device *parent = dev->parent;
191
192 /* find first bus device in parent chain */
193 while (parent && !parent->bus)
194 parent = parent->parent;
195 if (parent && parent->bus) {
196 const char *path;
197
198 path = kobject_get_path(&parent->kobj, GFP_KERNEL);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200199 if (path) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200200 add_uevent_var(env, "PHYSDEVPATH=%s", path);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200201 kfree(path);
202 }
Kay Sievers239378f2006-10-07 21:54:55 +0200203
Kay Sievers7eff2e72007-08-14 15:15:12 +0200204 add_uevent_var(env, "PHYSDEVBUS=%s", parent->bus->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200205
206 if (parent->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200207 add_uevent_var(env, "PHYSDEVDRIVER=%s",
208 parent->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200209 }
210 } else if (dev->bus) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200211 add_uevent_var(env, "PHYSDEVBUS=%s", dev->bus->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200212
213 if (dev->driver)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800214 add_uevent_var(env, "PHYSDEVDRIVER=%s",
215 dev->driver->name);
Kay Sieversd81d9d62006-08-13 06:17:09 +0200216 }
Kay Sievers239378f2006-10-07 21:54:55 +0200217#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Kay Sievers7eff2e72007-08-14 15:15:12 +0200219 /* have the bus specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100220 if (dev->bus && dev->bus->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200221 retval = dev->bus->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200222 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800223 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100224 dev_name(dev), __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226
Kay Sievers7eff2e72007-08-14 15:15:12 +0200227 /* have the class specific function add its stuff */
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700228 if (dev->class && dev->class->dev_uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200229 retval = dev->class->dev_uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200230 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800231 pr_debug("device: '%s': %s: class uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100232 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800233 __func__, retval);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200234 }
235
Kay Sievers7eff2e72007-08-14 15:15:12 +0200236 /* have the device type specific fuction add its stuff */
Kay Sieversf9f852d2006-10-07 21:54:55 +0200237 if (dev->type && dev->type->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200238 retval = dev->type->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200239 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800240 pr_debug("device: '%s': %s: dev_type uevent() "
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100241 "returned %d\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800242 __func__, retval);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700243 }
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return retval;
246}
247
Kay Sievers312c0042005-11-16 09:00:00 +0100248static struct kset_uevent_ops device_uevent_ops = {
249 .filter = dev_uevent_filter,
250 .name = dev_uevent_name,
251 .uevent = dev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252};
253
Kay Sievers16574dc2007-04-06 01:40:38 +0200254static ssize_t show_uevent(struct device *dev, struct device_attribute *attr,
255 char *buf)
256{
257 struct kobject *top_kobj;
258 struct kset *kset;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200259 struct kobj_uevent_env *env = NULL;
Kay Sievers16574dc2007-04-06 01:40:38 +0200260 int i;
261 size_t count = 0;
262 int retval;
263
264 /* search the kset, the device belongs to */
265 top_kobj = &dev->kobj;
Kay Sievers5c5daf62007-08-12 20:43:55 +0200266 while (!top_kobj->kset && top_kobj->parent)
267 top_kobj = top_kobj->parent;
Kay Sievers16574dc2007-04-06 01:40:38 +0200268 if (!top_kobj->kset)
269 goto out;
Kay Sievers5c5daf62007-08-12 20:43:55 +0200270
Kay Sievers16574dc2007-04-06 01:40:38 +0200271 kset = top_kobj->kset;
272 if (!kset->uevent_ops || !kset->uevent_ops->uevent)
273 goto out;
274
275 /* respect filter */
276 if (kset->uevent_ops && kset->uevent_ops->filter)
277 if (!kset->uevent_ops->filter(kset, &dev->kobj))
278 goto out;
279
Kay Sievers7eff2e72007-08-14 15:15:12 +0200280 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
281 if (!env)
Greg Kroah-Hartmanc7308c82007-05-02 14:14:11 +0200282 return -ENOMEM;
283
Kay Sievers16574dc2007-04-06 01:40:38 +0200284 /* let the kset specific function add its keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200285 retval = kset->uevent_ops->uevent(kset, &dev->kobj, env);
Kay Sievers16574dc2007-04-06 01:40:38 +0200286 if (retval)
287 goto out;
288
289 /* copy keys to file */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200290 for (i = 0; i < env->envp_idx; i++)
291 count += sprintf(&buf[count], "%s\n", env->envp[i]);
Kay Sievers16574dc2007-04-06 01:40:38 +0200292out:
Kay Sievers7eff2e72007-08-14 15:15:12 +0200293 kfree(env);
Kay Sievers16574dc2007-04-06 01:40:38 +0200294 return count;
295}
296
Kay Sieversa7fd6702005-10-01 14:49:43 +0200297static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
298 const char *buf, size_t count)
299{
Kay Sievers60a96a52007-07-08 22:29:26 +0200300 enum kobject_action action;
301
Kay Sievers5c5daf62007-08-12 20:43:55 +0200302 if (kobject_action_type(buf, count, &action) == 0) {
Kay Sievers60a96a52007-07-08 22:29:26 +0200303 kobject_uevent(&dev->kobj, action);
304 goto out;
305 }
306
307 dev_err(dev, "uevent: unsupported action-string; this will "
308 "be ignored in a future kernel version\n");
Kay Sievers312c0042005-11-16 09:00:00 +0100309 kobject_uevent(&dev->kobj, KOBJ_ADD);
Kay Sievers60a96a52007-07-08 22:29:26 +0200310out:
Kay Sieversa7fd6702005-10-01 14:49:43 +0200311 return count;
312}
313
Tejun Heoad6a1e12007-06-14 03:45:17 +0900314static struct device_attribute uevent_attr =
315 __ATTR(uevent, S_IRUGO | S_IWUSR, show_uevent, store_uevent);
316
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500317static int device_add_attributes(struct device *dev,
318 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700319{
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700320 int error = 0;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500321 int i;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700322
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500323 if (attrs) {
324 for (i = 0; attr_name(attrs[i]); i++) {
325 error = device_create_file(dev, &attrs[i]);
326 if (error)
327 break;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700328 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500329 if (error)
330 while (--i >= 0)
331 device_remove_file(dev, &attrs[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700332 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700333 return error;
334}
335
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500336static void device_remove_attributes(struct device *dev,
337 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700338{
339 int i;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500340
341 if (attrs)
342 for (i = 0; attr_name(attrs[i]); i++)
343 device_remove_file(dev, &attrs[i]);
344}
345
346static int device_add_groups(struct device *dev,
David Brownella4dbd672009-06-24 10:06:31 -0700347 const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500348{
349 int error = 0;
350 int i;
351
352 if (groups) {
353 for (i = 0; groups[i]; i++) {
354 error = sysfs_create_group(&dev->kobj, groups[i]);
355 if (error) {
356 while (--i >= 0)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800357 sysfs_remove_group(&dev->kobj,
358 groups[i]);
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500359 break;
360 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700361 }
362 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500363 return error;
364}
365
366static void device_remove_groups(struct device *dev,
David Brownella4dbd672009-06-24 10:06:31 -0700367 const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500368{
369 int i;
370
371 if (groups)
372 for (i = 0; groups[i]; i++)
373 sysfs_remove_group(&dev->kobj, groups[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700374}
375
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700376static int device_add_attrs(struct device *dev)
377{
378 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200379 struct device_type *type = dev->type;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500380 int error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700381
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500382 if (class) {
383 error = device_add_attributes(dev, class->dev_attrs);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200384 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500385 return error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700386 }
Kay Sieversf9f852d2006-10-07 21:54:55 +0200387
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500388 if (type) {
389 error = device_add_groups(dev, type->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200390 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500391 goto err_remove_class_attrs;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200392 }
393
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500394 error = device_add_groups(dev, dev->groups);
395 if (error)
396 goto err_remove_type_groups;
397
398 return 0;
399
400 err_remove_type_groups:
401 if (type)
402 device_remove_groups(dev, type->groups);
403 err_remove_class_attrs:
404 if (class)
405 device_remove_attributes(dev, class->dev_attrs);
406
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700407 return error;
408}
409
410static void device_remove_attrs(struct device *dev)
411{
412 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200413 struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700414
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500415 device_remove_groups(dev, dev->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200416
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500417 if (type)
418 device_remove_groups(dev, type->groups);
419
420 if (class)
421 device_remove_attributes(dev, class->dev_attrs);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700422}
423
424
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700425static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
426 char *buf)
427{
428 return print_dev_t(buf, dev->devt);
429}
430
Tejun Heoad6a1e12007-06-14 03:45:17 +0900431static struct device_attribute devt_attr =
432 __ATTR(dev, S_IRUGO, show_dev, NULL);
433
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600434/* kset to create /sys/devices/ */
435struct kset *devices_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800438 * device_create_file - create sysfs attribute file for device.
439 * @dev: device.
440 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800442int device_create_file(struct device *dev, struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 int error = 0;
Cornelia Huck0c98b192008-01-31 10:39:38 +0100445 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 error = sysfs_create_file(&dev->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return error;
448}
449
450/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800451 * device_remove_file - remove sysfs attribute file.
452 * @dev: device.
453 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800455void device_remove_file(struct device *dev, struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Cornelia Huck0c98b192008-01-31 10:39:38 +0100457 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 sysfs_remove_file(&dev->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700461/**
462 * device_create_bin_file - create sysfs binary attribute file for device.
463 * @dev: device.
464 * @attr: device binary attribute descriptor.
465 */
466int device_create_bin_file(struct device *dev, struct bin_attribute *attr)
467{
468 int error = -EINVAL;
469 if (dev)
470 error = sysfs_create_bin_file(&dev->kobj, attr);
471 return error;
472}
473EXPORT_SYMBOL_GPL(device_create_bin_file);
474
475/**
476 * device_remove_bin_file - remove sysfs binary attribute file
477 * @dev: device.
478 * @attr: device binary attribute descriptor.
479 */
480void device_remove_bin_file(struct device *dev, struct bin_attribute *attr)
481{
482 if (dev)
483 sysfs_remove_bin_file(&dev->kobj, attr);
484}
485EXPORT_SYMBOL_GPL(device_remove_bin_file);
486
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400487/**
Alan Stern523ded72007-04-26 00:12:04 -0700488 * device_schedule_callback_owner - helper to schedule a callback for a device
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400489 * @dev: device.
490 * @func: callback function to invoke later.
Alan Stern523ded72007-04-26 00:12:04 -0700491 * @owner: module owning the callback routine
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400492 *
493 * Attribute methods must not unregister themselves or their parent device
494 * (which would amount to the same thing). Attempts to do so will deadlock,
495 * since unregistration is mutually exclusive with driver callbacks.
496 *
497 * Instead methods can call this routine, which will attempt to allocate
498 * and schedule a workqueue request to call back @func with @dev as its
499 * argument in the workqueue's process context. @dev will be pinned until
500 * @func returns.
501 *
Alan Stern523ded72007-04-26 00:12:04 -0700502 * This routine is usually called via the inline device_schedule_callback(),
503 * which automatically sets @owner to THIS_MODULE.
504 *
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400505 * Returns 0 if the request was submitted, -ENOMEM if storage could not
Alan Stern523ded72007-04-26 00:12:04 -0700506 * be allocated, -ENODEV if a reference to @owner isn't available.
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400507 *
508 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
509 * underlying sysfs routine (since it is intended for use by attribute
510 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
511 */
Alan Stern523ded72007-04-26 00:12:04 -0700512int device_schedule_callback_owner(struct device *dev,
513 void (*func)(struct device *), struct module *owner)
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400514{
515 return sysfs_schedule_callback(&dev->kobj,
Alan Stern523ded72007-04-26 00:12:04 -0700516 (void (*)(void *)) func, dev, owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400517}
Alan Stern523ded72007-04-26 00:12:04 -0700518EXPORT_SYMBOL_GPL(device_schedule_callback_owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400519
James Bottomley34bb61f2005-09-06 16:56:51 -0700520static void klist_children_get(struct klist_node *n)
521{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800522 struct device_private *p = to_device_private_parent(n);
523 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700524
525 get_device(dev);
526}
527
528static void klist_children_put(struct klist_node *n)
529{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800530 struct device_private *p = to_device_private_parent(n);
531 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700532
533 put_device(dev);
534}
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800537 * device_initialize - init device structure.
538 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 *
Cornelia Huck57394112008-09-03 18:26:40 +0200540 * This prepares the device for use by other layers by initializing
541 * its fields.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800542 * It is the first half of device_register(), if called by
Cornelia Huck57394112008-09-03 18:26:40 +0200543 * that function, though it can also be called separately, so one
544 * may use @dev's fields. In particular, get_device()/put_device()
545 * may be used for reference counting of @dev after calling this
546 * function.
547 *
548 * NOTE: Use put_device() to give up your reference instead of freeing
549 * @dev directly once you have called this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551void device_initialize(struct device *dev)
552{
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600553 dev->kobj.kset = devices_kset;
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700554 kobject_init(&dev->kobj, &device_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 INIT_LIST_HEAD(&dev->dma_pools);
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -0800556 init_MUTEX(&dev->sem);
Tejun Heo9ac78492007-01-20 16:00:26 +0900557 spin_lock_init(&dev->devres_lock);
558 INIT_LIST_HEAD(&dev->devres_head);
David Brownell0ac85242005-09-12 19:39:34 -0700559 device_init_wakeup(dev, 0);
Alan Stern3b98aea2008-08-07 13:06:12 -0400560 device_pm_init(dev);
Christoph Hellwig87348132006-12-06 20:32:33 -0800561 set_dev_node(dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100564#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sieversda231fd2007-11-21 17:29:15 +0100565static struct kobject *get_device_parent(struct device *dev,
566 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100567{
Kay Sieversda231fd2007-11-21 17:29:15 +0100568 /* class devices without a parent live in /sys/class/<classname>/ */
Dmitry Torokhov3eb215d2007-10-07 12:22:21 -0400569 if (dev->class && (!parent || parent->class != dev->class))
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700570 return &dev->class->p->class_subsys.kobj;
Kay Sieversda231fd2007-11-21 17:29:15 +0100571 /* all other devices keep their parent */
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100572 else if (parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100573 return &parent->kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100574
Cornelia Huckc744aea2007-01-08 20:16:44 +0100575 return NULL;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100576}
Kay Sieversda231fd2007-11-21 17:29:15 +0100577
578static inline void cleanup_device_parent(struct device *dev) {}
Cornelia Huck63b69712008-01-21 16:09:44 +0100579static inline void cleanup_glue_dir(struct device *dev,
580 struct kobject *glue_dir) {}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100581#else
Kay Sievers86406242007-03-14 03:25:56 +0100582static struct kobject *virtual_device_parent(struct device *dev)
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700583{
Kay Sievers86406242007-03-14 03:25:56 +0100584 static struct kobject *virtual_dir = NULL;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700585
Kay Sievers86406242007-03-14 03:25:56 +0100586 if (!virtual_dir)
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -0800587 virtual_dir = kobject_create_and_add("virtual",
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600588 &devices_kset->kobj);
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700589
Kay Sievers86406242007-03-14 03:25:56 +0100590 return virtual_dir;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700591}
592
Kay Sieversda231fd2007-11-21 17:29:15 +0100593static struct kobject *get_device_parent(struct device *dev,
594 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100595{
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800596 int retval;
597
Kay Sievers86406242007-03-14 03:25:56 +0100598 if (dev->class) {
599 struct kobject *kobj = NULL;
600 struct kobject *parent_kobj;
601 struct kobject *k;
602
603 /*
604 * If we have no parent, we live in "virtual".
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100605 * Class-devices with a non class-device as parent, live
606 * in a "glue" directory to prevent namespace collisions.
Kay Sievers86406242007-03-14 03:25:56 +0100607 */
608 if (parent == NULL)
609 parent_kobj = virtual_device_parent(dev);
610 else if (parent->class)
611 return &parent->kobj;
612 else
613 parent_kobj = &parent->kobj;
614
615 /* find our class-directory at the parent and reference it */
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500616 spin_lock(&dev->class->p->class_dirs.list_lock);
617 list_for_each_entry(k, &dev->class->p->class_dirs.list, entry)
Kay Sievers86406242007-03-14 03:25:56 +0100618 if (k->parent == parent_kobj) {
619 kobj = kobject_get(k);
620 break;
621 }
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500622 spin_unlock(&dev->class->p->class_dirs.list_lock);
Kay Sievers86406242007-03-14 03:25:56 +0100623 if (kobj)
624 return kobj;
625
626 /* or create a new class-directory at the parent device */
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800627 k = kobject_create();
628 if (!k)
629 return NULL;
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500630 k->kset = &dev->class->p->class_dirs;
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700631 retval = kobject_add(k, parent_kobj, "%s", dev->class->name);
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800632 if (retval < 0) {
633 kobject_put(k);
634 return NULL;
635 }
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100636 /* do not emit an uevent for this simple "glue" directory */
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800637 return k;
Kay Sievers86406242007-03-14 03:25:56 +0100638 }
639
640 if (parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100641 return &parent->kobj;
642 return NULL;
643}
Kay Sieversda231fd2007-11-21 17:29:15 +0100644
Cornelia Huck63b69712008-01-21 16:09:44 +0100645static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
Kay Sieversda231fd2007-11-21 17:29:15 +0100646{
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100647 /* see if we live in a "glue" directory */
Cornelia Huckc1fe5392008-02-27 15:38:23 +0100648 if (!glue_dir || !dev->class ||
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500649 glue_dir->kset != &dev->class->p->class_dirs)
Kay Sieversda231fd2007-11-21 17:29:15 +0100650 return;
651
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100652 kobject_put(glue_dir);
Kay Sieversda231fd2007-11-21 17:29:15 +0100653}
Cornelia Huck63b69712008-01-21 16:09:44 +0100654
655static void cleanup_device_parent(struct device *dev)
656{
657 cleanup_glue_dir(dev, dev->kobj.parent);
658}
Cornelia Huckc744aea2007-01-08 20:16:44 +0100659#endif
Kay Sievers86406242007-03-14 03:25:56 +0100660
Cornelia Huck63b69712008-01-21 16:09:44 +0100661static void setup_parent(struct device *dev, struct device *parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100662{
663 struct kobject *kobj;
664 kobj = get_device_parent(dev, parent);
Cornelia Huckc744aea2007-01-08 20:16:44 +0100665 if (kobj)
666 dev->kobj.parent = kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100667}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100668
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700669static int device_add_class_symlinks(struct device *dev)
670{
671 int error;
672
673 if (!dev->class)
674 return 0;
Kay Sieversda231fd2007-11-21 17:29:15 +0100675
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700676 error = sysfs_create_link(&dev->kobj,
677 &dev->class->p->class_subsys.kobj,
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700678 "subsystem");
679 if (error)
680 goto out;
Kay Sieversda231fd2007-11-21 17:29:15 +0100681
682#ifdef CONFIG_SYSFS_DEPRECATED
683 /* stacked class devices need a symlink in the class directory */
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700684 if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800685 device_is_not_partition(dev)) {
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700686 error = sysfs_create_link(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100687 &dev->kobj, dev_name(dev));
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700688 if (error)
689 goto out_subsys;
690 }
Kay Sieversda231fd2007-11-21 17:29:15 +0100691
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800692 if (dev->parent && device_is_not_partition(dev)) {
Kay Sieversda231fd2007-11-21 17:29:15 +0100693 struct device *parent = dev->parent;
694 char *class_name;
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700695
Kay Sieversda231fd2007-11-21 17:29:15 +0100696 /*
697 * stacked class devices have the 'device' link
698 * pointing to the bus device instead of the parent
699 */
700 while (parent->class && !parent->bus && parent->parent)
701 parent = parent->parent;
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700702
Kay Sieversda231fd2007-11-21 17:29:15 +0100703 error = sysfs_create_link(&dev->kobj,
704 &parent->kobj,
705 "device");
706 if (error)
707 goto out_busid;
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700708
Kay Sieversda231fd2007-11-21 17:29:15 +0100709 class_name = make_class_name(dev->class->name,
710 &dev->kobj);
711 if (class_name)
712 error = sysfs_create_link(&dev->parent->kobj,
713 &dev->kobj, class_name);
714 kfree(class_name);
715 if (error)
716 goto out_device;
717 }
718 return 0;
719
720out_device:
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800721 if (dev->parent && device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +0100722 sysfs_remove_link(&dev->kobj, "device");
723out_busid:
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700724 if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800725 device_is_not_partition(dev))
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700726 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100727 dev_name(dev));
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700728#else
Kay Sieversda231fd2007-11-21 17:29:15 +0100729 /* link in the class directory pointing to the device */
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700730 error = sysfs_create_link(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100731 &dev->kobj, dev_name(dev));
Kay Sieversda231fd2007-11-21 17:29:15 +0100732 if (error)
733 goto out_subsys;
734
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800735 if (dev->parent && device_is_not_partition(dev)) {
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700736 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
737 "device");
738 if (error)
739 goto out_busid;
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700740 }
741 return 0;
742
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700743out_busid:
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100744 sysfs_remove_link(&dev->class->p->class_subsys.kobj, dev_name(dev));
Kay Sieversda231fd2007-11-21 17:29:15 +0100745#endif
746
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700747out_subsys:
748 sysfs_remove_link(&dev->kobj, "subsystem");
749out:
750 return error;
751}
752
753static void device_remove_class_symlinks(struct device *dev)
754{
755 if (!dev->class)
756 return;
Kay Sieversda231fd2007-11-21 17:29:15 +0100757
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700758#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800759 if (dev->parent && device_is_not_partition(dev)) {
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700760 char *class_name;
761
762 class_name = make_class_name(dev->class->name, &dev->kobj);
763 if (class_name) {
764 sysfs_remove_link(&dev->parent->kobj, class_name);
765 kfree(class_name);
766 }
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700767 sysfs_remove_link(&dev->kobj, "device");
768 }
Kay Sieversda231fd2007-11-21 17:29:15 +0100769
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700770 if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800771 device_is_not_partition(dev))
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700772 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100773 dev_name(dev));
Kay Sieversda231fd2007-11-21 17:29:15 +0100774#else
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800775 if (dev->parent && device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +0100776 sysfs_remove_link(&dev->kobj, "device");
777
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100778 sysfs_remove_link(&dev->class->p->class_subsys.kobj, dev_name(dev));
Kay Sieversda231fd2007-11-21 17:29:15 +0100779#endif
780
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700781 sysfs_remove_link(&dev->kobj, "subsystem");
782}
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784/**
Stephen Rothwell413c2392008-05-30 10:16:40 +1000785 * dev_set_name - set a device name
786 * @dev: device
Randy Dunlap46232362008-06-04 21:40:43 -0700787 * @fmt: format string for the device's name
Stephen Rothwell413c2392008-05-30 10:16:40 +1000788 */
789int dev_set_name(struct device *dev, const char *fmt, ...)
790{
791 va_list vargs;
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100792 int err;
Stephen Rothwell413c2392008-05-30 10:16:40 +1000793
794 va_start(vargs, fmt);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100795 err = kobject_set_name_vargs(&dev->kobj, fmt, vargs);
Stephen Rothwell413c2392008-05-30 10:16:40 +1000796 va_end(vargs);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100797 return err;
Stephen Rothwell413c2392008-05-30 10:16:40 +1000798}
799EXPORT_SYMBOL_GPL(dev_set_name);
800
801/**
Dan Williamse105b8b2008-04-21 10:51:07 -0700802 * device_to_dev_kobj - select a /sys/dev/ directory for the device
803 * @dev: device
804 *
805 * By default we select char/ for new entries. Setting class->dev_obj
806 * to NULL prevents an entry from being created. class->dev_kobj must
807 * be set (or cleared) before any devices are registered to the class
808 * otherwise device_create_sys_dev_entry() and
809 * device_remove_sys_dev_entry() will disagree about the the presence
810 * of the link.
811 */
812static struct kobject *device_to_dev_kobj(struct device *dev)
813{
814 struct kobject *kobj;
815
816 if (dev->class)
817 kobj = dev->class->dev_kobj;
818 else
819 kobj = sysfs_dev_char_kobj;
820
821 return kobj;
822}
823
824static int device_create_sys_dev_entry(struct device *dev)
825{
826 struct kobject *kobj = device_to_dev_kobj(dev);
827 int error = 0;
828 char devt_str[15];
829
830 if (kobj) {
831 format_dev_t(devt_str, dev->devt);
832 error = sysfs_create_link(kobj, &dev->kobj, devt_str);
833 }
834
835 return error;
836}
837
838static void device_remove_sys_dev_entry(struct device *dev)
839{
840 struct kobject *kobj = device_to_dev_kobj(dev);
841 char devt_str[15];
842
843 if (kobj) {
844 format_dev_t(devt_str, dev->devt);
845 sysfs_remove_link(kobj, devt_str);
846 }
847}
848
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700849int device_private_init(struct device *dev)
850{
851 dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL);
852 if (!dev->p)
853 return -ENOMEM;
854 dev->p->device = dev;
855 klist_init(&dev->p->klist_children, klist_children_get,
856 klist_children_put);
857 return 0;
858}
859
Dan Williamse105b8b2008-04-21 10:51:07 -0700860/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800861 * device_add - add device to device hierarchy.
862 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800864 * This is part 2 of device_register(), though may be called
865 * separately _iff_ device_initialize() has been called separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 *
Cornelia Huck57394112008-09-03 18:26:40 +0200867 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800868 * to the global and sibling lists for the device, then
869 * adds it to the other relevant subsystems of the driver model.
Cornelia Huck57394112008-09-03 18:26:40 +0200870 *
871 * NOTE: _Never_ directly free @dev after calling this function, even
872 * if it returned an error! Always use put_device() to give up your
873 * reference instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 */
875int device_add(struct device *dev)
876{
877 struct device *parent = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200878 struct class_interface *class_intf;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700879 int error = -EINVAL;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +0100880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 dev = get_device(dev);
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700882 if (!dev)
883 goto done;
884
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800885 if (!dev->p) {
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700886 error = device_private_init(dev);
887 if (error)
888 goto done;
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800889 }
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800890
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100891 /*
892 * for statically allocated devices, which should all be converted
893 * some day, we need to initialize the name. We prevent reading back
894 * the name, and force the use of dev_name()
895 */
896 if (dev->init_name) {
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700897 dev_set_name(dev, "%s", dev->init_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100898 dev->init_name = NULL;
899 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700900
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100901 if (!dev_name(dev))
Kay Sievers5c8563d2009-05-28 14:24:07 -0700902 goto name_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100904 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -0700905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 parent = get_device(dev->parent);
Cornelia Huck63b69712008-01-21 16:09:44 +0100907 setup_parent(dev, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Yinghai Lu0d358f22008-02-19 03:20:41 -0800909 /* use parent numa_node */
910 if (parent)
911 set_dev_node(dev, dev_to_node(parent));
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 /* first, register with generic layer. */
Kay Sievers8a577ff2009-04-18 15:05:45 -0700914 /* we require the name to be set before, and pass NULL */
915 error = kobject_add(&dev->kobj, dev->kobj.parent, NULL);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100916 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 goto Error;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200918
Brian Walsh37022642006-08-14 22:43:19 -0700919 /* notify platform of device entry */
920 if (platform_notify)
921 platform_notify(dev);
922
Tejun Heoad6a1e12007-06-14 03:45:17 +0900923 error = device_create_file(dev, &uevent_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200924 if (error)
925 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200926
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700927 if (MAJOR(dev->devt)) {
Tejun Heoad6a1e12007-06-14 03:45:17 +0900928 error = device_create_file(dev, &devt_attr);
929 if (error)
Cornelia Hucka306eea2006-09-22 11:37:13 +0200930 goto ueventattrError;
Dan Williamse105b8b2008-04-21 10:51:07 -0700931
932 error = device_create_sys_dev_entry(dev);
933 if (error)
934 goto devtattrError;
Kay Sievers2b2af542009-04-30 15:23:42 +0200935
936 devtmpfs_create_node(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700937 }
938
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700939 error = device_add_class_symlinks(dev);
940 if (error)
941 goto SymlinkError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700942 error = device_add_attrs(dev);
943 if (error)
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700944 goto AttrsError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700945 error = bus_add_device(dev);
946 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 goto BusError;
Alan Stern3b98aea2008-08-07 13:06:12 -0400948 error = dpm_sysfs_add(dev);
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +0100949 if (error)
Alan Stern3b98aea2008-08-07 13:06:12 -0400950 goto DPMError;
951 device_pm_add(dev);
Alan Sternec0676ee2008-12-05 14:10:31 -0500952
953 /* Notify clients of device addition. This call must come
954 * after dpm_sysf_add() and before kobject_uevent().
955 */
956 if (dev->bus)
957 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
958 BUS_NOTIFY_ADD_DEVICE, dev);
959
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +0200960 kobject_uevent(&dev->kobj, KOBJ_ADD);
Alan Stern2023c612009-07-30 15:27:18 -0400961 bus_probe_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800963 klist_add_tail(&dev->p->knode_parent,
964 &parent->p->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700966 if (dev->class) {
Dave Youngf75b1c62008-05-28 09:28:39 -0700967 mutex_lock(&dev->class->p->class_mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200968 /* tie the class to the device */
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200969 klist_add_tail(&dev->knode_class,
970 &dev->class->p->class_devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200971
972 /* notify any interfaces that the device is here */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -0700973 list_for_each_entry(class_intf,
974 &dev->class->p->class_interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200975 if (class_intf->add_dev)
976 class_intf->add_dev(dev, class_intf);
Dave Youngf75b1c62008-05-28 09:28:39 -0700977 mutex_unlock(&dev->class->p->class_mutex);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700978 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700979done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 put_device(dev);
981 return error;
Alan Stern3b98aea2008-08-07 13:06:12 -0400982 DPMError:
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +0100983 bus_remove_device(dev);
984 BusError:
James Simmons82f0cf92007-02-21 17:44:51 +0000985 device_remove_attrs(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700986 AttrsError:
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700987 device_remove_class_symlinks(dev);
988 SymlinkError:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900989 if (MAJOR(dev->devt))
Kay Sieversad729562009-10-28 19:51:37 +0100990 devtmpfs_delete_node(dev);
991 if (MAJOR(dev->devt))
Dan Williamse105b8b2008-04-21 10:51:07 -0700992 device_remove_sys_dev_entry(dev);
993 devtattrError:
994 if (MAJOR(dev->devt))
Tejun Heoad6a1e12007-06-14 03:45:17 +0900995 device_remove_file(dev, &devt_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200996 ueventattrError:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900997 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700998 attrError:
Kay Sievers312c0042005-11-16 09:00:00 +0100999 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 kobject_del(&dev->kobj);
1001 Error:
Cornelia Huck63b69712008-01-21 16:09:44 +01001002 cleanup_device_parent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (parent)
1004 put_device(parent);
Kay Sievers5c8563d2009-05-28 14:24:07 -07001005name_error:
1006 kfree(dev->p);
1007 dev->p = NULL;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -07001008 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001012 * device_register - register a device with the system.
1013 * @dev: pointer to the device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001015 * This happens in two clean steps - initialize the device
1016 * and add it to the system. The two steps can be called
1017 * separately, but this is the easiest and most common.
1018 * I.e. you should only call the two helpers separately if
1019 * have a clearly defined need to use and refcount the device
1020 * before it is added to the hierarchy.
Cornelia Huck57394112008-09-03 18:26:40 +02001021 *
1022 * NOTE: _Never_ directly free @dev after calling this function, even
1023 * if it returned an error! Always use put_device() to give up the
1024 * reference initialized in this function instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026int device_register(struct device *dev)
1027{
1028 device_initialize(dev);
1029 return device_add(dev);
1030}
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001033 * get_device - increment reference count for device.
1034 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001036 * This simply forwards the call to kobject_get(), though
1037 * we do take care to provide for the case that we get a NULL
1038 * pointer passed in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001040struct device *get_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
1042 return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
1043}
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001046 * put_device - decrement reference count.
1047 * @dev: device in question.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001049void put_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001051 /* might_sleep(); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (dev)
1053 kobject_put(&dev->kobj);
1054}
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001057 * device_del - delete device from system.
1058 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001060 * This is the first part of the device unregistration
1061 * sequence. This removes the device from the lists we control
1062 * from here, has it removed from the other driver model
1063 * subsystems it was added to in device_add(), and removes it
1064 * from the kobject hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001066 * NOTE: this should be called manually _iff_ device_add() was
1067 * also called manually.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001069void device_del(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001071 struct device *parent = dev->parent;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001072 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Alan Sternec0676ee2008-12-05 14:10:31 -05001074 /* Notify clients of device removal. This call must come
1075 * before dpm_sysfs_remove().
1076 */
1077 if (dev->bus)
1078 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
1079 BUS_NOTIFY_DEL_DEVICE, dev);
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001080 device_pm_remove(dev);
Alan Stern3b98aea2008-08-07 13:06:12 -04001081 dpm_sysfs_remove(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001083 klist_del(&dev->p->knode_parent);
Dan Williamse105b8b2008-04-21 10:51:07 -07001084 if (MAJOR(dev->devt)) {
Kay Sievers2b2af542009-04-30 15:23:42 +02001085 devtmpfs_delete_node(dev);
Dan Williamse105b8b2008-04-21 10:51:07 -07001086 device_remove_sys_dev_entry(dev);
Tejun Heoad6a1e12007-06-14 03:45:17 +09001087 device_remove_file(dev, &devt_attr);
Dan Williamse105b8b2008-04-21 10:51:07 -07001088 }
Kay Sieversb9d9c822006-06-15 15:31:56 +02001089 if (dev->class) {
Kay Sieversda231fd2007-11-21 17:29:15 +01001090 device_remove_class_symlinks(dev);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001091
Dave Youngf75b1c62008-05-28 09:28:39 -07001092 mutex_lock(&dev->class->p->class_mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001093 /* notify any interfaces that the device is now gone */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -07001094 list_for_each_entry(class_intf,
1095 &dev->class->p->class_interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001096 if (class_intf->remove_dev)
1097 class_intf->remove_dev(dev, class_intf);
1098 /* remove the device from the class list */
Tejun Heo5a3ceb82008-08-25 19:50:19 +02001099 klist_del(&dev->knode_class);
Dave Youngf75b1c62008-05-28 09:28:39 -07001100 mutex_unlock(&dev->class->p->class_mutex);
Kay Sieversb9d9c822006-06-15 15:31:56 +02001101 }
Tejun Heoad6a1e12007-06-14 03:45:17 +09001102 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001103 device_remove_attrs(dev);
Benjamin Herrenschmidt28953532006-11-08 19:46:14 -08001104 bus_remove_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Tejun Heo2f8d16a2007-03-09 19:34:19 +09001106 /*
1107 * Some platform devices are driven without driver attached
1108 * and managed resources may have been acquired. Make sure
1109 * all resources are released.
1110 */
1111 devres_release_all(dev);
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 /* Notify the platform of the removal, in case they
1114 * need to do anything...
1115 */
1116 if (platform_notify_remove)
1117 platform_notify_remove(dev);
Kay Sievers312c0042005-11-16 09:00:00 +01001118 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Kay Sieversda231fd2007-11-21 17:29:15 +01001119 cleanup_device_parent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 kobject_del(&dev->kobj);
Kay Sieversda231fd2007-11-21 17:29:15 +01001121 put_device(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122}
1123
1124/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001125 * device_unregister - unregister device from system.
1126 * @dev: device going away.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001128 * We do this in two parts, like we do device_register(). First,
1129 * we remove it from all the subsystems with device_del(), then
1130 * we decrement the reference count via put_device(). If that
1131 * is the final reference count, the device will be cleaned up
1132 * via device_release() above. Otherwise, the structure will
1133 * stick around until the final reference to the device is dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001135void device_unregister(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001137 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 device_del(dev);
1139 put_device(dev);
1140}
1141
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001142static struct device *next_device(struct klist_iter *i)
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001143{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001144 struct klist_node *n = klist_next(i);
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001145 struct device *dev = NULL;
1146 struct device_private *p;
1147
1148 if (n) {
1149 p = to_device_private_parent(n);
1150 dev = p->device;
1151 }
1152 return dev;
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001153}
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155/**
Kay Sieverse454cea2009-09-18 23:01:12 +02001156 * device_get_devnode - path of device node file
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001157 * @dev: device
Kay Sieverse454cea2009-09-18 23:01:12 +02001158 * @mode: returned file access mode
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001159 * @tmp: possibly allocated string
1160 *
1161 * Return the relative path of a possible device node.
1162 * Non-default names may need to allocate a memory to compose
1163 * a name. This memory is returned in tmp and needs to be
1164 * freed by the caller.
1165 */
Kay Sieverse454cea2009-09-18 23:01:12 +02001166const char *device_get_devnode(struct device *dev,
1167 mode_t *mode, const char **tmp)
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001168{
1169 char *s;
1170
1171 *tmp = NULL;
1172
1173 /* the device type may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02001174 if (dev->type && dev->type->devnode)
1175 *tmp = dev->type->devnode(dev, mode);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001176 if (*tmp)
1177 return *tmp;
1178
1179 /* the class may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02001180 if (dev->class && dev->class->devnode)
1181 *tmp = dev->class->devnode(dev, mode);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001182 if (*tmp)
1183 return *tmp;
1184
1185 /* return name without allocation, tmp == NULL */
1186 if (strchr(dev_name(dev), '!') == NULL)
1187 return dev_name(dev);
1188
1189 /* replace '!' in the name with '/' */
1190 *tmp = kstrdup(dev_name(dev), GFP_KERNEL);
1191 if (!*tmp)
1192 return NULL;
1193 while ((s = strchr(*tmp, '!')))
1194 s[0] = '/';
1195 return *tmp;
1196}
1197
1198/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001199 * device_for_each_child - device child iterator.
1200 * @parent: parent struct device.
1201 * @data: data for the callback.
1202 * @fn: function to be called for each device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001204 * Iterate over @parent's child devices, and call @fn for each,
1205 * passing it @data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001207 * We check the return of @fn each time. If it returns anything
1208 * other than 0, we break out and return that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001210int device_for_each_child(struct device *parent, void *data,
1211 int (*fn)(struct device *dev, void *data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001213 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001214 struct device *child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 int error = 0;
1216
Greg Kroah-Hartman014c90d2009-04-15 16:00:12 -07001217 if (!parent->p)
1218 return 0;
1219
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001220 klist_iter_init(&parent->p->klist_children, &i);
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001221 while ((child = next_device(&i)) && !error)
1222 error = fn(child, data);
1223 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 return error;
1225}
1226
Cornelia Huck5ab69982006-11-16 15:42:07 +01001227/**
1228 * device_find_child - device iterator for locating a particular device.
1229 * @parent: parent struct device
1230 * @data: Data to pass to match function
1231 * @match: Callback function to check device
1232 *
1233 * This is similar to the device_for_each_child() function above, but it
1234 * returns a reference to a device that is 'found' for later use, as
1235 * determined by the @match callback.
1236 *
1237 * The callback should return 0 if the device doesn't match and non-zero
1238 * if it does. If the callback returns non-zero and a reference to the
1239 * current device can be obtained, this function will return to the caller
1240 * and not iterate over any more devices.
1241 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001242struct device *device_find_child(struct device *parent, void *data,
1243 int (*match)(struct device *dev, void *data))
Cornelia Huck5ab69982006-11-16 15:42:07 +01001244{
1245 struct klist_iter i;
1246 struct device *child;
1247
1248 if (!parent)
1249 return NULL;
1250
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001251 klist_iter_init(&parent->p->klist_children, &i);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001252 while ((child = next_device(&i)))
1253 if (match(child, data) && get_device(child))
1254 break;
1255 klist_iter_exit(&i);
1256 return child;
1257}
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259int __init devices_init(void)
1260{
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -06001261 devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
1262 if (!devices_kset)
1263 return -ENOMEM;
Dan Williamse105b8b2008-04-21 10:51:07 -07001264 dev_kobj = kobject_create_and_add("dev", NULL);
1265 if (!dev_kobj)
1266 goto dev_kobj_err;
1267 sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj);
1268 if (!sysfs_dev_block_kobj)
1269 goto block_kobj_err;
1270 sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj);
1271 if (!sysfs_dev_char_kobj)
1272 goto char_kobj_err;
1273
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -06001274 return 0;
Dan Williamse105b8b2008-04-21 10:51:07 -07001275
1276 char_kobj_err:
1277 kobject_put(sysfs_dev_block_kobj);
1278 block_kobj_err:
1279 kobject_put(dev_kobj);
1280 dev_kobj_err:
1281 kset_unregister(devices_kset);
1282 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
1285EXPORT_SYMBOL_GPL(device_for_each_child);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001286EXPORT_SYMBOL_GPL(device_find_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288EXPORT_SYMBOL_GPL(device_initialize);
1289EXPORT_SYMBOL_GPL(device_add);
1290EXPORT_SYMBOL_GPL(device_register);
1291
1292EXPORT_SYMBOL_GPL(device_del);
1293EXPORT_SYMBOL_GPL(device_unregister);
1294EXPORT_SYMBOL_GPL(get_device);
1295EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297EXPORT_SYMBOL_GPL(device_create_file);
1298EXPORT_SYMBOL_GPL(device_remove_file);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001299
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001300struct root_device
1301{
1302 struct device dev;
1303 struct module *owner;
1304};
1305
1306#define to_root_device(dev) container_of(dev, struct root_device, dev)
1307
1308static void root_device_release(struct device *dev)
1309{
1310 kfree(to_root_device(dev));
1311}
1312
1313/**
1314 * __root_device_register - allocate and register a root device
1315 * @name: root device name
1316 * @owner: owner module of the root device, usually THIS_MODULE
1317 *
1318 * This function allocates a root device and registers it
1319 * using device_register(). In order to free the returned
1320 * device, use root_device_unregister().
1321 *
1322 * Root devices are dummy devices which allow other devices
1323 * to be grouped under /sys/devices. Use this function to
1324 * allocate a root device and then use it as the parent of
1325 * any device which should appear under /sys/devices/{name}
1326 *
1327 * The /sys/devices/{name} directory will also contain a
1328 * 'module' symlink which points to the @owner directory
1329 * in sysfs.
1330 *
1331 * Note: You probably want to use root_device_register().
1332 */
1333struct device *__root_device_register(const char *name, struct module *owner)
1334{
1335 struct root_device *root;
1336 int err = -ENOMEM;
1337
1338 root = kzalloc(sizeof(struct root_device), GFP_KERNEL);
1339 if (!root)
1340 return ERR_PTR(err);
1341
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -07001342 err = dev_set_name(&root->dev, "%s", name);
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001343 if (err) {
1344 kfree(root);
1345 return ERR_PTR(err);
1346 }
1347
1348 root->dev.release = root_device_release;
1349
1350 err = device_register(&root->dev);
1351 if (err) {
1352 put_device(&root->dev);
1353 return ERR_PTR(err);
1354 }
1355
1356#ifdef CONFIG_MODULE /* gotta find a "cleaner" way to do this */
1357 if (owner) {
1358 struct module_kobject *mk = &owner->mkobj;
1359
1360 err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module");
1361 if (err) {
1362 device_unregister(&root->dev);
1363 return ERR_PTR(err);
1364 }
1365 root->owner = owner;
1366 }
1367#endif
1368
1369 return &root->dev;
1370}
1371EXPORT_SYMBOL_GPL(__root_device_register);
1372
1373/**
1374 * root_device_unregister - unregister and free a root device
Randy Dunlap7cbcf222009-01-20 16:29:13 -08001375 * @dev: device going away
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001376 *
1377 * This function unregisters and cleans up a device that was created by
1378 * root_device_register().
1379 */
1380void root_device_unregister(struct device *dev)
1381{
1382 struct root_device *root = to_root_device(dev);
1383
1384 if (root->owner)
1385 sysfs_remove_link(&root->dev.kobj, "module");
1386
1387 device_unregister(dev);
1388}
1389EXPORT_SYMBOL_GPL(root_device_unregister);
1390
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001391
1392static void device_create_release(struct device *dev)
1393{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001394 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001395 kfree(dev);
1396}
1397
1398/**
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001399 * device_create_vargs - creates a device and registers it with sysfs
1400 * @class: pointer to the struct class that this device should be registered to
1401 * @parent: pointer to the parent struct device of this new device, if any
1402 * @devt: the dev_t for the char device to be added
1403 * @drvdata: the data to be added to the device for callbacks
1404 * @fmt: string for the device's name
1405 * @args: va_list for the device's name
1406 *
1407 * This function can be used by char device classes. A struct device
1408 * will be created in sysfs, registered to the specified class.
1409 *
1410 * A "dev" file will be created, showing the dev_t for the device, if
1411 * the dev_t is not 0,0.
1412 * If a pointer to a parent struct device is passed in, the newly created
1413 * struct device will be a child of that device in sysfs.
1414 * The pointer to the struct device will be returned from the call.
1415 * Any further sysfs files that might be required can be created using this
1416 * pointer.
1417 *
1418 * Note: the struct class passed to this function must have previously
1419 * been created with a call to class_create().
1420 */
1421struct device *device_create_vargs(struct class *class, struct device *parent,
1422 dev_t devt, void *drvdata, const char *fmt,
1423 va_list args)
1424{
1425 struct device *dev = NULL;
1426 int retval = -ENODEV;
1427
1428 if (class == NULL || IS_ERR(class))
1429 goto error;
1430
1431 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1432 if (!dev) {
1433 retval = -ENOMEM;
1434 goto error;
1435 }
1436
1437 dev->devt = devt;
1438 dev->class = class;
1439 dev->parent = parent;
1440 dev->release = device_create_release;
1441 dev_set_drvdata(dev, drvdata);
1442
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001443 retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
1444 if (retval)
1445 goto error;
1446
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001447 retval = device_register(dev);
1448 if (retval)
1449 goto error;
1450
1451 return dev;
1452
1453error:
Cornelia Huck286661b2008-09-03 18:26:41 +02001454 put_device(dev);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001455 return ERR_PTR(retval);
1456}
1457EXPORT_SYMBOL_GPL(device_create_vargs);
1458
1459/**
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001460 * device_create - creates a device and registers it with sysfs
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001461 * @class: pointer to the struct class that this device should be registered to
1462 * @parent: pointer to the parent struct device of this new device, if any
1463 * @devt: the dev_t for the char device to be added
1464 * @drvdata: the data to be added to the device for callbacks
1465 * @fmt: string for the device's name
1466 *
1467 * This function can be used by char device classes. A struct device
1468 * will be created in sysfs, registered to the specified class.
1469 *
1470 * A "dev" file will be created, showing the dev_t for the device, if
1471 * the dev_t is not 0,0.
1472 * If a pointer to a parent struct device is passed in, the newly created
1473 * struct device will be a child of that device in sysfs.
1474 * The pointer to the struct device will be returned from the call.
1475 * Any further sysfs files that might be required can be created using this
1476 * pointer.
1477 *
1478 * Note: the struct class passed to this function must have previously
1479 * been created with a call to class_create().
1480 */
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001481struct device *device_create(struct class *class, struct device *parent,
1482 dev_t devt, void *drvdata, const char *fmt, ...)
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001483{
1484 va_list vargs;
1485 struct device *dev;
1486
1487 va_start(vargs, fmt);
1488 dev = device_create_vargs(class, parent, devt, drvdata, fmt, vargs);
1489 va_end(vargs);
1490 return dev;
1491}
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001492EXPORT_SYMBOL_GPL(device_create);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001493
Dave Youngcd354492008-01-28 16:56:11 +08001494static int __match_devt(struct device *dev, void *data)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001495{
Dave Youngcd354492008-01-28 16:56:11 +08001496 dev_t *devt = data;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001497
Dave Youngcd354492008-01-28 16:56:11 +08001498 return dev->devt == *devt;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001499}
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001500
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001501/**
1502 * device_destroy - removes a device that was created with device_create()
1503 * @class: pointer to the struct class that this device was registered with
1504 * @devt: the dev_t of the device that was previously registered
1505 *
1506 * This call unregisters and cleans up a device that was created with a
1507 * call to device_create().
1508 */
1509void device_destroy(struct class *class, dev_t devt)
1510{
1511 struct device *dev;
1512
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -04001513 dev = class_find_device(class, NULL, &devt, __match_devt);
Dave Youngcd354492008-01-28 16:56:11 +08001514 if (dev) {
1515 put_device(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001516 device_unregister(dev);
Dave Youngcd354492008-01-28 16:56:11 +08001517 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001518}
1519EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001520
1521/**
1522 * device_rename - renames a device
1523 * @dev: the pointer to the struct device to be renamed
1524 * @new_name: the new name of the device
Eric W. Biederman030c1d22008-05-08 14:41:00 -07001525 *
1526 * It is the responsibility of the caller to provide mutual
1527 * exclusion between two different calls of device_rename
1528 * on the same device to ensure that new_name is valid and
1529 * won't conflict with other devices.
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001530 */
1531int device_rename(struct device *dev, char *new_name)
1532{
1533 char *old_class_name = NULL;
1534 char *new_class_name = NULL;
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001535 char *old_device_name = NULL;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001536 int error;
1537
1538 dev = get_device(dev);
1539 if (!dev)
1540 return -EINVAL;
1541
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001542 pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -08001543 __func__, new_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001544
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001545#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001546 if ((dev->class) && (dev->parent))
1547 old_class_name = make_class_name(dev->class->name, &dev->kobj);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001548#endif
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001549
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001550 old_device_name = kstrdup(dev_name(dev), GFP_KERNEL);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001551 if (!old_device_name) {
1552 error = -ENOMEM;
1553 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001554 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001555
1556 error = kobject_rename(&dev->kobj, new_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001557 if (error)
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001558 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001559
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001560#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001561 if (old_class_name) {
1562 new_class_name = make_class_name(dev->class->name, &dev->kobj);
1563 if (new_class_name) {
Cornelia Huck36ce6da2008-06-10 11:09:08 +02001564 error = sysfs_create_link_nowarn(&dev->parent->kobj,
1565 &dev->kobj,
1566 new_class_name);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001567 if (error)
1568 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001569 sysfs_remove_link(&dev->parent->kobj, old_class_name);
1570 }
1571 }
Kay Sievers60b8cab2007-10-26 20:07:44 +02001572#else
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001573 if (dev->class) {
Cornelia Huck36ce6da2008-06-10 11:09:08 +02001574 error = sysfs_create_link_nowarn(&dev->class->p->class_subsys.kobj,
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001575 &dev->kobj, dev_name(dev));
Stephen Hemminger0599ad52008-05-14 22:34:16 -07001576 if (error)
1577 goto out;
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -07001578 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -05001579 old_device_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001580 }
Kay Sievers60b8cab2007-10-26 20:07:44 +02001581#endif
1582
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001583out:
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001584 put_device(dev);
1585
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001586 kfree(new_class_name);
Jesper Juhl952ab432006-09-28 23:56:01 +02001587 kfree(old_class_name);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001588 kfree(old_device_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001589
1590 return error;
1591}
Johannes Berga2807db2007-02-28 12:38:31 +01001592EXPORT_SYMBOL_GPL(device_rename);
Cornelia Huck8a824722006-11-20 17:07:51 +01001593
1594static int device_move_class_links(struct device *dev,
1595 struct device *old_parent,
1596 struct device *new_parent)
1597{
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001598 int error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001599#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huck8a824722006-11-20 17:07:51 +01001600 char *class_name;
1601
1602 class_name = make_class_name(dev->class->name, &dev->kobj);
1603 if (!class_name) {
Cornelia Huckcb360bb2006-11-27 10:35:05 +01001604 error = -ENOMEM;
Cornelia Huck8a824722006-11-20 17:07:51 +01001605 goto out;
1606 }
1607 if (old_parent) {
1608 sysfs_remove_link(&dev->kobj, "device");
1609 sysfs_remove_link(&old_parent->kobj, class_name);
1610 }
Cornelia Huckc744aea2007-01-08 20:16:44 +01001611 if (new_parent) {
1612 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1613 "device");
1614 if (error)
1615 goto out;
1616 error = sysfs_create_link(&new_parent->kobj, &dev->kobj,
1617 class_name);
1618 if (error)
1619 sysfs_remove_link(&dev->kobj, "device");
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001620 } else
Cornelia Huckc744aea2007-01-08 20:16:44 +01001621 error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001622out:
1623 kfree(class_name);
1624 return error;
1625#else
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001626 if (old_parent)
1627 sysfs_remove_link(&dev->kobj, "device");
1628 if (new_parent)
1629 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1630 "device");
1631 return error;
Cornelia Huck8a824722006-11-20 17:07:51 +01001632#endif
1633}
1634
1635/**
1636 * device_move - moves a device to a new parent
1637 * @dev: the pointer to the struct device to be moved
Cornelia Huckc744aea2007-01-08 20:16:44 +01001638 * @new_parent: the new parent of the device (can by NULL)
Cornelia Huckffa6a702009-03-04 12:44:00 +01001639 * @dpm_order: how to reorder the dpm_list
Cornelia Huck8a824722006-11-20 17:07:51 +01001640 */
Cornelia Huckffa6a702009-03-04 12:44:00 +01001641int device_move(struct device *dev, struct device *new_parent,
1642 enum dpm_order dpm_order)
Cornelia Huck8a824722006-11-20 17:07:51 +01001643{
1644 int error;
1645 struct device *old_parent;
Cornelia Huckc744aea2007-01-08 20:16:44 +01001646 struct kobject *new_parent_kobj;
Cornelia Huck8a824722006-11-20 17:07:51 +01001647
1648 dev = get_device(dev);
1649 if (!dev)
1650 return -EINVAL;
1651
Cornelia Huckffa6a702009-03-04 12:44:00 +01001652 device_pm_lock();
Cornelia Huck8a824722006-11-20 17:07:51 +01001653 new_parent = get_device(new_parent);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001654 new_parent_kobj = get_device_parent(dev, new_parent);
Cornelia Huck63b69712008-01-21 16:09:44 +01001655
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001656 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev),
1657 __func__, new_parent ? dev_name(new_parent) : "<NULL>");
Cornelia Huckc744aea2007-01-08 20:16:44 +01001658 error = kobject_move(&dev->kobj, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001659 if (error) {
Cornelia Huck63b69712008-01-21 16:09:44 +01001660 cleanup_glue_dir(dev, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001661 put_device(new_parent);
1662 goto out;
1663 }
1664 old_parent = dev->parent;
1665 dev->parent = new_parent;
1666 if (old_parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001667 klist_remove(&dev->p->knode_parent);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001668 if (new_parent) {
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001669 klist_add_tail(&dev->p->knode_parent,
1670 &new_parent->p->klist_children);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001671 set_dev_node(dev, dev_to_node(new_parent));
1672 }
1673
Cornelia Huck8a824722006-11-20 17:07:51 +01001674 if (!dev->class)
1675 goto out_put;
1676 error = device_move_class_links(dev, old_parent, new_parent);
1677 if (error) {
1678 /* We ignore errors on cleanup since we're hosed anyway... */
1679 device_move_class_links(dev, new_parent, old_parent);
1680 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
Cornelia Huckc744aea2007-01-08 20:16:44 +01001681 if (new_parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001682 klist_remove(&dev->p->knode_parent);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001683 dev->parent = old_parent;
1684 if (old_parent) {
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001685 klist_add_tail(&dev->p->knode_parent,
1686 &old_parent->p->klist_children);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001687 set_dev_node(dev, dev_to_node(old_parent));
1688 }
Cornelia Huck8a824722006-11-20 17:07:51 +01001689 }
Cornelia Huck63b69712008-01-21 16:09:44 +01001690 cleanup_glue_dir(dev, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001691 put_device(new_parent);
1692 goto out;
1693 }
Cornelia Huckffa6a702009-03-04 12:44:00 +01001694 switch (dpm_order) {
1695 case DPM_ORDER_NONE:
1696 break;
1697 case DPM_ORDER_DEV_AFTER_PARENT:
1698 device_pm_move_after(dev, new_parent);
1699 break;
1700 case DPM_ORDER_PARENT_BEFORE_DEV:
1701 device_pm_move_before(new_parent, dev);
1702 break;
1703 case DPM_ORDER_DEV_LAST:
1704 device_pm_move_last(dev);
1705 break;
1706 }
Cornelia Huck8a824722006-11-20 17:07:51 +01001707out_put:
1708 put_device(old_parent);
1709out:
Cornelia Huckffa6a702009-03-04 12:44:00 +01001710 device_pm_unlock();
Cornelia Huck8a824722006-11-20 17:07:51 +01001711 put_device(dev);
1712 return error;
1713}
Cornelia Huck8a824722006-11-20 17:07:51 +01001714EXPORT_SYMBOL_GPL(device_move);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001715
1716/**
1717 * device_shutdown - call ->shutdown() on each device to shutdown.
1718 */
1719void device_shutdown(void)
1720{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001721 struct device *dev, *devn;
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001722
1723 list_for_each_entry_safe_reverse(dev, devn, &devices_kset->list,
1724 kobj.entry) {
1725 if (dev->bus && dev->bus->shutdown) {
1726 dev_dbg(dev, "shutdown\n");
1727 dev->bus->shutdown(dev);
1728 } else if (dev->driver && dev->driver->shutdown) {
1729 dev_dbg(dev, "shutdown\n");
1730 dev->driver->shutdown(dev);
1731 }
1732 }
Dan Williamse105b8b2008-04-21 10:51:07 -07001733 kobject_put(sysfs_dev_char_kobj);
1734 kobject_put(sysfs_dev_block_kobj);
1735 kobject_put(dev_kobj);
Shaohua Li401097e2009-05-12 13:37:57 -07001736 async_synchronize_full();
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001737}