blob: a0cfda553c9d74c26735e8b6b1e0236ca0bb8064 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/semaphore.h>
23
24#include "base.h"
25#include "power/power.h"
26
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080027int (*platform_notify)(struct device *dev) = NULL;
28int (*platform_notify_remove)(struct device *dev) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -080030#ifdef CONFIG_BLOCK
31static inline int device_is_not_partition(struct device *dev)
32{
33 return !(dev->type == &part_type);
34}
35#else
36static inline int device_is_not_partition(struct device *dev)
37{
38 return 1;
39}
40#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Alan Stern3e956372006-06-16 17:10:48 -040042/**
43 * dev_driver_string - Return a device's driver name, if at all possible
44 * @dev: struct device to get the name of
45 *
46 * Will return the device's driver's name if it is bound to a device. If
47 * the device is not bound to a device, it will return the name of the bus
48 * it is attached to. If it is not attached to a bus either, an empty
49 * string will be returned.
50 */
51const char *dev_driver_string(struct device *dev)
52{
53 return dev->driver ? dev->driver->name :
Jean Delvarea456b702007-03-09 16:33:10 +010054 (dev->bus ? dev->bus->name :
55 (dev->class ? dev->class->name : ""));
Alan Stern3e956372006-06-16 17:10:48 -040056}
Matthew Wilcox310a9222006-09-23 23:35:04 -060057EXPORT_SYMBOL(dev_driver_string);
Alan Stern3e956372006-06-16 17:10:48 -040058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define to_dev(obj) container_of(obj, struct device, kobj)
60#define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
61
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080062static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
63 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080065 struct device_attribute *dev_attr = to_dev_attr(attr);
66 struct device *dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050067 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 if (dev_attr->show)
Yani Ioannou54b6f352005-05-17 06:39:34 -040070 ret = dev_attr->show(dev, dev_attr, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return ret;
72}
73
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080074static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
75 const char *buf, size_t count)
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->store)
Yani Ioannou54b6f352005-05-17 06:39:34 -040082 ret = dev_attr->store(dev, dev_attr, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return ret;
84}
85
86static struct sysfs_ops dev_sysfs_ops = {
87 .show = dev_attr_show,
88 .store = dev_attr_store,
89};
90
91
92/**
93 * device_release - free device structure.
94 * @kobj: device's kobject.
95 *
96 * This is called once the reference count for the object
97 * reaches 0. We forward the call to the device's release
98 * method, which should handle actually freeing the structure.
99 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800100static void device_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800102 struct device *dev = to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 if (dev->release)
105 dev->release(dev);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200106 else if (dev->type && dev->type->release)
107 dev->type->release(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700108 else if (dev->class && dev->class->dev_release)
109 dev->class->dev_release(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 else {
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800111 printk(KERN_ERR "Device '%s' does not have a release() "
112 "function, it is broken and must be fixed.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 dev->bus_id);
114 WARN_ON(1);
115 }
116}
117
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600118static struct kobj_type device_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 .release = device_release,
120 .sysfs_ops = &dev_sysfs_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121};
122
123
Kay Sievers312c0042005-11-16 09:00:00 +0100124static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 struct kobj_type *ktype = get_ktype(kobj);
127
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600128 if (ktype == &device_ktype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 struct device *dev = to_dev(kobj);
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +0200130 if (dev->uevent_suppress)
131 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 if (dev->bus)
133 return 1;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700134 if (dev->class)
135 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137 return 0;
138}
139
Kay Sievers312c0042005-11-16 09:00:00 +0100140static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 struct device *dev = to_dev(kobj);
143
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700144 if (dev->bus)
145 return dev->bus->name;
146 if (dev->class)
147 return dev->class->name;
148 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Kay Sievers7eff2e72007-08-14 15:15:12 +0200151static int dev_uevent(struct kset *kset, struct kobject *kobj,
152 struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 struct device *dev = to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 int retval = 0;
156
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700157 /* add the major/minor if present */
158 if (MAJOR(dev->devt)) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200159 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
160 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700161 }
162
Kay Sievers414264f2007-03-12 21:08:57 +0100163 if (dev->type && dev->type->name)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200164 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
Kay Sievers414264f2007-03-12 21:08:57 +0100165
Kay Sievers239378f2006-10-07 21:54:55 +0200166 if (dev->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200167 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200168
Kay Sieversa87cb2a2006-09-14 11:23:28 +0200169#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sievers239378f2006-10-07 21:54:55 +0200170 if (dev->class) {
171 struct device *parent = dev->parent;
172
173 /* find first bus device in parent chain */
174 while (parent && !parent->bus)
175 parent = parent->parent;
176 if (parent && parent->bus) {
177 const char *path;
178
179 path = kobject_get_path(&parent->kobj, GFP_KERNEL);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200180 if (path) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200181 add_uevent_var(env, "PHYSDEVPATH=%s", path);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200182 kfree(path);
183 }
Kay Sievers239378f2006-10-07 21:54:55 +0200184
Kay Sievers7eff2e72007-08-14 15:15:12 +0200185 add_uevent_var(env, "PHYSDEVBUS=%s", parent->bus->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200186
187 if (parent->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200188 add_uevent_var(env, "PHYSDEVDRIVER=%s",
189 parent->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200190 }
191 } else if (dev->bus) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200192 add_uevent_var(env, "PHYSDEVBUS=%s", dev->bus->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200193
194 if (dev->driver)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800195 add_uevent_var(env, "PHYSDEVDRIVER=%s",
196 dev->driver->name);
Kay Sieversd81d9d62006-08-13 06:17:09 +0200197 }
Kay Sievers239378f2006-10-07 21:54:55 +0200198#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Kay Sievers7eff2e72007-08-14 15:15:12 +0200200 /* have the bus specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100201 if (dev->bus && dev->bus->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200202 retval = dev->bus->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200203 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800204 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
205 dev->bus_id, __FUNCTION__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207
Kay Sievers7eff2e72007-08-14 15:15:12 +0200208 /* have the class specific function add its stuff */
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700209 if (dev->class && dev->class->dev_uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200210 retval = dev->class->dev_uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200211 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800212 pr_debug("device: '%s': %s: class uevent() "
213 "returned %d\n", dev->bus_id,
Kay Sieversf9f852d2006-10-07 21:54:55 +0200214 __FUNCTION__, retval);
215 }
216
Kay Sievers7eff2e72007-08-14 15:15:12 +0200217 /* have the device type specific fuction add its stuff */
Kay Sieversf9f852d2006-10-07 21:54:55 +0200218 if (dev->type && dev->type->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200219 retval = dev->type->uevent(dev, env);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200220 if (retval)
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800221 pr_debug("device: '%s': %s: dev_type uevent() "
222 "returned %d\n", dev->bus_id,
Kay Sieversf9f852d2006-10-07 21:54:55 +0200223 __FUNCTION__, retval);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700224 }
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return retval;
227}
228
Kay Sievers312c0042005-11-16 09:00:00 +0100229static struct kset_uevent_ops device_uevent_ops = {
230 .filter = dev_uevent_filter,
231 .name = dev_uevent_name,
232 .uevent = dev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233};
234
Kay Sievers16574dc2007-04-06 01:40:38 +0200235static ssize_t show_uevent(struct device *dev, struct device_attribute *attr,
236 char *buf)
237{
238 struct kobject *top_kobj;
239 struct kset *kset;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200240 struct kobj_uevent_env *env = NULL;
Kay Sievers16574dc2007-04-06 01:40:38 +0200241 int i;
242 size_t count = 0;
243 int retval;
244
245 /* search the kset, the device belongs to */
246 top_kobj = &dev->kobj;
Kay Sievers5c5daf62007-08-12 20:43:55 +0200247 while (!top_kobj->kset && top_kobj->parent)
248 top_kobj = top_kobj->parent;
Kay Sievers16574dc2007-04-06 01:40:38 +0200249 if (!top_kobj->kset)
250 goto out;
Kay Sievers5c5daf62007-08-12 20:43:55 +0200251
Kay Sievers16574dc2007-04-06 01:40:38 +0200252 kset = top_kobj->kset;
253 if (!kset->uevent_ops || !kset->uevent_ops->uevent)
254 goto out;
255
256 /* respect filter */
257 if (kset->uevent_ops && kset->uevent_ops->filter)
258 if (!kset->uevent_ops->filter(kset, &dev->kobj))
259 goto out;
260
Kay Sievers7eff2e72007-08-14 15:15:12 +0200261 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
262 if (!env)
Greg Kroah-Hartmanc7308c82007-05-02 14:14:11 +0200263 return -ENOMEM;
264
Kay Sievers16574dc2007-04-06 01:40:38 +0200265 /* let the kset specific function add its keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200266 retval = kset->uevent_ops->uevent(kset, &dev->kobj, env);
Kay Sievers16574dc2007-04-06 01:40:38 +0200267 if (retval)
268 goto out;
269
270 /* copy keys to file */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200271 for (i = 0; i < env->envp_idx; i++)
272 count += sprintf(&buf[count], "%s\n", env->envp[i]);
Kay Sievers16574dc2007-04-06 01:40:38 +0200273out:
Kay Sievers7eff2e72007-08-14 15:15:12 +0200274 kfree(env);
Kay Sievers16574dc2007-04-06 01:40:38 +0200275 return count;
276}
277
Kay Sieversa7fd6702005-10-01 14:49:43 +0200278static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
279 const char *buf, size_t count)
280{
Kay Sievers60a96a52007-07-08 22:29:26 +0200281 enum kobject_action action;
282
Kay Sievers5c5daf62007-08-12 20:43:55 +0200283 if (kobject_action_type(buf, count, &action) == 0) {
Kay Sievers60a96a52007-07-08 22:29:26 +0200284 kobject_uevent(&dev->kobj, action);
285 goto out;
286 }
287
288 dev_err(dev, "uevent: unsupported action-string; this will "
289 "be ignored in a future kernel version\n");
Kay Sievers312c0042005-11-16 09:00:00 +0100290 kobject_uevent(&dev->kobj, KOBJ_ADD);
Kay Sievers60a96a52007-07-08 22:29:26 +0200291out:
Kay Sieversa7fd6702005-10-01 14:49:43 +0200292 return count;
293}
294
Tejun Heoad6a1e12007-06-14 03:45:17 +0900295static struct device_attribute uevent_attr =
296 __ATTR(uevent, S_IRUGO | S_IWUSR, show_uevent, store_uevent);
297
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500298static int device_add_attributes(struct device *dev,
299 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700300{
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700301 int error = 0;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500302 int i;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700303
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500304 if (attrs) {
305 for (i = 0; attr_name(attrs[i]); i++) {
306 error = device_create_file(dev, &attrs[i]);
307 if (error)
308 break;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700309 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500310 if (error)
311 while (--i >= 0)
312 device_remove_file(dev, &attrs[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700313 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700314 return error;
315}
316
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500317static void device_remove_attributes(struct device *dev,
318 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700319{
320 int i;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500321
322 if (attrs)
323 for (i = 0; attr_name(attrs[i]); i++)
324 device_remove_file(dev, &attrs[i]);
325}
326
327static int device_add_groups(struct device *dev,
328 struct attribute_group **groups)
329{
330 int error = 0;
331 int i;
332
333 if (groups) {
334 for (i = 0; groups[i]; i++) {
335 error = sysfs_create_group(&dev->kobj, groups[i]);
336 if (error) {
337 while (--i >= 0)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800338 sysfs_remove_group(&dev->kobj,
339 groups[i]);
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500340 break;
341 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700342 }
343 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500344 return error;
345}
346
347static void device_remove_groups(struct device *dev,
348 struct attribute_group **groups)
349{
350 int i;
351
352 if (groups)
353 for (i = 0; groups[i]; i++)
354 sysfs_remove_group(&dev->kobj, groups[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700355}
356
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700357static int device_add_attrs(struct device *dev)
358{
359 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200360 struct device_type *type = dev->type;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500361 int error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700362
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500363 if (class) {
364 error = device_add_attributes(dev, class->dev_attrs);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200365 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500366 return error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700367 }
Kay Sieversf9f852d2006-10-07 21:54:55 +0200368
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500369 if (type) {
370 error = device_add_groups(dev, type->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200371 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500372 goto err_remove_class_attrs;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200373 }
374
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500375 error = device_add_groups(dev, dev->groups);
376 if (error)
377 goto err_remove_type_groups;
378
379 return 0;
380
381 err_remove_type_groups:
382 if (type)
383 device_remove_groups(dev, type->groups);
384 err_remove_class_attrs:
385 if (class)
386 device_remove_attributes(dev, class->dev_attrs);
387
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700388 return error;
389}
390
391static void device_remove_attrs(struct device *dev)
392{
393 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200394 struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700395
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500396 device_remove_groups(dev, dev->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200397
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500398 if (type)
399 device_remove_groups(dev, type->groups);
400
401 if (class)
402 device_remove_attributes(dev, class->dev_attrs);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700403}
404
405
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700406static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
407 char *buf)
408{
409 return print_dev_t(buf, dev->devt);
410}
411
Tejun Heoad6a1e12007-06-14 03:45:17 +0900412static struct device_attribute devt_attr =
413 __ATTR(dev, S_IRUGO, show_dev, NULL);
414
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600415/* kset to create /sys/devices/ */
416struct kset *devices_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800419 * device_create_file - create sysfs attribute file for device.
420 * @dev: device.
421 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800423int device_create_file(struct device *dev, struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
425 int error = 0;
426 if (get_device(dev)) {
427 error = sysfs_create_file(&dev->kobj, &attr->attr);
428 put_device(dev);
429 }
430 return error;
431}
432
433/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800434 * device_remove_file - remove sysfs attribute file.
435 * @dev: device.
436 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800438void device_remove_file(struct device *dev, struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 if (get_device(dev)) {
441 sysfs_remove_file(&dev->kobj, &attr->attr);
442 put_device(dev);
443 }
444}
445
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700446/**
447 * device_create_bin_file - create sysfs binary attribute file for device.
448 * @dev: device.
449 * @attr: device binary attribute descriptor.
450 */
451int device_create_bin_file(struct device *dev, struct bin_attribute *attr)
452{
453 int error = -EINVAL;
454 if (dev)
455 error = sysfs_create_bin_file(&dev->kobj, attr);
456 return error;
457}
458EXPORT_SYMBOL_GPL(device_create_bin_file);
459
460/**
461 * device_remove_bin_file - remove sysfs binary attribute file
462 * @dev: device.
463 * @attr: device binary attribute descriptor.
464 */
465void device_remove_bin_file(struct device *dev, struct bin_attribute *attr)
466{
467 if (dev)
468 sysfs_remove_bin_file(&dev->kobj, attr);
469}
470EXPORT_SYMBOL_GPL(device_remove_bin_file);
471
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400472/**
Alan Stern523ded72007-04-26 00:12:04 -0700473 * device_schedule_callback_owner - helper to schedule a callback for a device
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400474 * @dev: device.
475 * @func: callback function to invoke later.
Alan Stern523ded72007-04-26 00:12:04 -0700476 * @owner: module owning the callback routine
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400477 *
478 * Attribute methods must not unregister themselves or their parent device
479 * (which would amount to the same thing). Attempts to do so will deadlock,
480 * since unregistration is mutually exclusive with driver callbacks.
481 *
482 * Instead methods can call this routine, which will attempt to allocate
483 * and schedule a workqueue request to call back @func with @dev as its
484 * argument in the workqueue's process context. @dev will be pinned until
485 * @func returns.
486 *
Alan Stern523ded72007-04-26 00:12:04 -0700487 * This routine is usually called via the inline device_schedule_callback(),
488 * which automatically sets @owner to THIS_MODULE.
489 *
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400490 * Returns 0 if the request was submitted, -ENOMEM if storage could not
Alan Stern523ded72007-04-26 00:12:04 -0700491 * be allocated, -ENODEV if a reference to @owner isn't available.
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400492 *
493 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
494 * underlying sysfs routine (since it is intended for use by attribute
495 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
496 */
Alan Stern523ded72007-04-26 00:12:04 -0700497int device_schedule_callback_owner(struct device *dev,
498 void (*func)(struct device *), struct module *owner)
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400499{
500 return sysfs_schedule_callback(&dev->kobj,
Alan Stern523ded72007-04-26 00:12:04 -0700501 (void (*)(void *)) func, dev, owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400502}
Alan Stern523ded72007-04-26 00:12:04 -0700503EXPORT_SYMBOL_GPL(device_schedule_callback_owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400504
James Bottomley34bb61f2005-09-06 16:56:51 -0700505static void klist_children_get(struct klist_node *n)
506{
507 struct device *dev = container_of(n, struct device, knode_parent);
508
509 get_device(dev);
510}
511
512static void klist_children_put(struct klist_node *n)
513{
514 struct device *dev = container_of(n, struct device, knode_parent);
515
516 put_device(dev);
517}
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800520 * device_initialize - init device structure.
521 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800523 * This prepares the device for use by other layers,
524 * including adding it to the device hierarchy.
525 * It is the first half of device_register(), if called by
526 * that, though it can also be called separately, so one
527 * may use @dev's fields (e.g. the refcount).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529void device_initialize(struct device *dev)
530{
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600531 dev->kobj.kset = devices_kset;
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700532 kobject_init(&dev->kobj, &device_ktype);
James Bottomley34bb61f2005-09-06 16:56:51 -0700533 klist_init(&dev->klist_children, klist_children_get,
534 klist_children_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 INIT_LIST_HEAD(&dev->dma_pools);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700536 INIT_LIST_HEAD(&dev->node);
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -0800537 init_MUTEX(&dev->sem);
Tejun Heo9ac78492007-01-20 16:00:26 +0900538 spin_lock_init(&dev->devres_lock);
539 INIT_LIST_HEAD(&dev->devres_head);
David Brownell0ac85242005-09-12 19:39:34 -0700540 device_init_wakeup(dev, 0);
Christoph Hellwig87348132006-12-06 20:32:33 -0800541 set_dev_node(dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100544#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sieversda231fd2007-11-21 17:29:15 +0100545static struct kobject *get_device_parent(struct device *dev,
546 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100547{
Kay Sieversda231fd2007-11-21 17:29:15 +0100548 /* class devices without a parent live in /sys/class/<classname>/ */
Dmitry Torokhov3eb215d2007-10-07 12:22:21 -0400549 if (dev->class && (!parent || parent->class != dev->class))
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700550 return &dev->class->subsys.kobj;
Kay Sieversda231fd2007-11-21 17:29:15 +0100551 /* all other devices keep their parent */
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100552 else if (parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100553 return &parent->kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100554
Cornelia Huckc744aea2007-01-08 20:16:44 +0100555 return NULL;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100556}
Kay Sieversda231fd2007-11-21 17:29:15 +0100557
558static inline void cleanup_device_parent(struct device *dev) {}
Cornelia Huck63b69712008-01-21 16:09:44 +0100559static inline void cleanup_glue_dir(struct device *dev,
560 struct kobject *glue_dir) {}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100561#else
Kay Sievers86406242007-03-14 03:25:56 +0100562static struct kobject *virtual_device_parent(struct device *dev)
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700563{
Kay Sievers86406242007-03-14 03:25:56 +0100564 static struct kobject *virtual_dir = NULL;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700565
Kay Sievers86406242007-03-14 03:25:56 +0100566 if (!virtual_dir)
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -0800567 virtual_dir = kobject_create_and_add("virtual",
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600568 &devices_kset->kobj);
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700569
Kay Sievers86406242007-03-14 03:25:56 +0100570 return virtual_dir;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700571}
572
Kay Sieversda231fd2007-11-21 17:29:15 +0100573static struct kobject *get_device_parent(struct device *dev,
574 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100575{
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800576 int retval;
577
Kay Sievers86406242007-03-14 03:25:56 +0100578 if (dev->class) {
579 struct kobject *kobj = NULL;
580 struct kobject *parent_kobj;
581 struct kobject *k;
582
583 /*
584 * If we have no parent, we live in "virtual".
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100585 * Class-devices with a non class-device as parent, live
586 * in a "glue" directory to prevent namespace collisions.
Kay Sievers86406242007-03-14 03:25:56 +0100587 */
588 if (parent == NULL)
589 parent_kobj = virtual_device_parent(dev);
590 else if (parent->class)
591 return &parent->kobj;
592 else
593 parent_kobj = &parent->kobj;
594
595 /* find our class-directory at the parent and reference it */
596 spin_lock(&dev->class->class_dirs.list_lock);
597 list_for_each_entry(k, &dev->class->class_dirs.list, entry)
598 if (k->parent == parent_kobj) {
599 kobj = kobject_get(k);
600 break;
601 }
602 spin_unlock(&dev->class->class_dirs.list_lock);
603 if (kobj)
604 return kobj;
605
606 /* or create a new class-directory at the parent device */
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800607 k = kobject_create();
608 if (!k)
609 return NULL;
610 k->kset = &dev->class->class_dirs;
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700611 retval = kobject_add(k, parent_kobj, "%s", dev->class->name);
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800612 if (retval < 0) {
613 kobject_put(k);
614 return NULL;
615 }
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100616 /* do not emit an uevent for this simple "glue" directory */
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800617 return k;
Kay Sievers86406242007-03-14 03:25:56 +0100618 }
619
620 if (parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100621 return &parent->kobj;
622 return NULL;
623}
Kay Sieversda231fd2007-11-21 17:29:15 +0100624
Cornelia Huck63b69712008-01-21 16:09:44 +0100625static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
Kay Sieversda231fd2007-11-21 17:29:15 +0100626{
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100627 /* see if we live in a "glue" directory */
628 if (!dev->class || glue_dir->kset != &dev->class->class_dirs)
Kay Sieversda231fd2007-11-21 17:29:15 +0100629 return;
630
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100631 kobject_put(glue_dir);
Kay Sieversda231fd2007-11-21 17:29:15 +0100632}
Cornelia Huck63b69712008-01-21 16:09:44 +0100633
634static void cleanup_device_parent(struct device *dev)
635{
636 cleanup_glue_dir(dev, dev->kobj.parent);
637}
Cornelia Huckc744aea2007-01-08 20:16:44 +0100638#endif
Kay Sievers86406242007-03-14 03:25:56 +0100639
Cornelia Huck63b69712008-01-21 16:09:44 +0100640static void setup_parent(struct device *dev, struct device *parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100641{
642 struct kobject *kobj;
643 kobj = get_device_parent(dev, parent);
Cornelia Huckc744aea2007-01-08 20:16:44 +0100644 if (kobj)
645 dev->kobj.parent = kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100646}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100647
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700648static int device_add_class_symlinks(struct device *dev)
649{
650 int error;
651
652 if (!dev->class)
653 return 0;
Kay Sieversda231fd2007-11-21 17:29:15 +0100654
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700655 error = sysfs_create_link(&dev->kobj, &dev->class->subsys.kobj,
656 "subsystem");
657 if (error)
658 goto out;
Kay Sieversda231fd2007-11-21 17:29:15 +0100659
660#ifdef CONFIG_SYSFS_DEPRECATED
661 /* stacked class devices need a symlink in the class directory */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200662 if (dev->kobj.parent != &dev->class->subsys.kobj &&
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800663 device_is_not_partition(dev)) {
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700664 error = sysfs_create_link(&dev->class->subsys.kobj, &dev->kobj,
665 dev->bus_id);
666 if (error)
667 goto out_subsys;
668 }
Kay Sieversda231fd2007-11-21 17:29:15 +0100669
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800670 if (dev->parent && device_is_not_partition(dev)) {
Kay Sieversda231fd2007-11-21 17:29:15 +0100671 struct device *parent = dev->parent;
672 char *class_name;
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700673
Kay Sieversda231fd2007-11-21 17:29:15 +0100674 /*
675 * stacked class devices have the 'device' link
676 * pointing to the bus device instead of the parent
677 */
678 while (parent->class && !parent->bus && parent->parent)
679 parent = parent->parent;
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700680
Kay Sieversda231fd2007-11-21 17:29:15 +0100681 error = sysfs_create_link(&dev->kobj,
682 &parent->kobj,
683 "device");
684 if (error)
685 goto out_busid;
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700686
Kay Sieversda231fd2007-11-21 17:29:15 +0100687 class_name = make_class_name(dev->class->name,
688 &dev->kobj);
689 if (class_name)
690 error = sysfs_create_link(&dev->parent->kobj,
691 &dev->kobj, class_name);
692 kfree(class_name);
693 if (error)
694 goto out_device;
695 }
696 return 0;
697
698out_device:
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800699 if (dev->parent && device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +0100700 sysfs_remove_link(&dev->kobj, "device");
701out_busid:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200702 if (dev->kobj.parent != &dev->class->subsys.kobj &&
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800703 device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +0100704 sysfs_remove_link(&dev->class->subsys.kobj, dev->bus_id);
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700705#else
Kay Sieversda231fd2007-11-21 17:29:15 +0100706 /* link in the class directory pointing to the device */
707 error = sysfs_create_link(&dev->class->subsys.kobj, &dev->kobj,
708 dev->bus_id);
709 if (error)
710 goto out_subsys;
711
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800712 if (dev->parent && device_is_not_partition(dev)) {
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700713 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
714 "device");
715 if (error)
716 goto out_busid;
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700717 }
718 return 0;
719
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700720out_busid:
Kay Sieversda231fd2007-11-21 17:29:15 +0100721 sysfs_remove_link(&dev->class->subsys.kobj, dev->bus_id);
722#endif
723
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700724out_subsys:
725 sysfs_remove_link(&dev->kobj, "subsystem");
726out:
727 return error;
728}
729
730static void device_remove_class_symlinks(struct device *dev)
731{
732 if (!dev->class)
733 return;
Kay Sieversda231fd2007-11-21 17:29:15 +0100734
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700735#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800736 if (dev->parent && device_is_not_partition(dev)) {
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700737 char *class_name;
738
739 class_name = make_class_name(dev->class->name, &dev->kobj);
740 if (class_name) {
741 sysfs_remove_link(&dev->parent->kobj, class_name);
742 kfree(class_name);
743 }
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700744 sysfs_remove_link(&dev->kobj, "device");
745 }
Kay Sieversda231fd2007-11-21 17:29:15 +0100746
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200747 if (dev->kobj.parent != &dev->class->subsys.kobj &&
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800748 device_is_not_partition(dev))
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700749 sysfs_remove_link(&dev->class->subsys.kobj, dev->bus_id);
Kay Sieversda231fd2007-11-21 17:29:15 +0100750#else
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800751 if (dev->parent && device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +0100752 sysfs_remove_link(&dev->kobj, "device");
753
754 sysfs_remove_link(&dev->class->subsys.kobj, dev->bus_id);
755#endif
756
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700757 sysfs_remove_link(&dev->kobj, "subsystem");
758}
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800761 * device_add - add device to device hierarchy.
762 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800764 * This is part 2 of device_register(), though may be called
765 * separately _iff_ device_initialize() has been called separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800767 * This adds it to the kobject hierarchy via kobject_add(), adds it
768 * to the global and sibling lists for the device, then
769 * adds it to the other relevant subsystems of the driver model.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 */
771int device_add(struct device *dev)
772{
773 struct device *parent = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200774 struct class_interface *class_intf;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +0100775 int error;
776
777 error = pm_sleep_lock();
778 if (error) {
779 dev_warn(dev, "Suspicious %s during suspend\n", __FUNCTION__);
780 dump_stack();
781 return error;
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 dev = get_device(dev);
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +0100785 if (!dev || !strlen(dev->bus_id)) {
786 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 goto Error;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +0100788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800790 pr_debug("device: '%s': %s\n", dev->bus_id, __FUNCTION__);
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -0700791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 parent = get_device(dev->parent);
Cornelia Huck63b69712008-01-21 16:09:44 +0100793 setup_parent(dev, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 /* first, register with generic layer. */
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700796 error = kobject_add(&dev->kobj, dev->kobj.parent, "%s", dev->bus_id);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100797 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 goto Error;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200799
Brian Walsh37022642006-08-14 22:43:19 -0700800 /* notify platform of device entry */
801 if (platform_notify)
802 platform_notify(dev);
803
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000804 /* notify clients of device entry (new way) */
805 if (dev->bus)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700806 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000807 BUS_NOTIFY_ADD_DEVICE, dev);
808
Tejun Heoad6a1e12007-06-14 03:45:17 +0900809 error = device_create_file(dev, &uevent_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200810 if (error)
811 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200812
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700813 if (MAJOR(dev->devt)) {
Tejun Heoad6a1e12007-06-14 03:45:17 +0900814 error = device_create_file(dev, &devt_attr);
815 if (error)
Cornelia Hucka306eea2006-09-22 11:37:13 +0200816 goto ueventattrError;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700817 }
818
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700819 error = device_add_class_symlinks(dev);
820 if (error)
821 goto SymlinkError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700822 error = device_add_attrs(dev);
823 if (error)
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700824 goto AttrsError;
Daniel Drakedec13c12007-11-21 14:55:18 -0800825 error = dpm_sysfs_add(dev);
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700826 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 goto PMError;
Daniel Drakedec13c12007-11-21 14:55:18 -0800828 device_pm_add(dev);
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700829 error = bus_add_device(dev);
830 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 goto BusError;
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +0200832 kobject_uevent(&dev->kobj, KOBJ_ADD);
Cornelia Huckc6a46692007-02-05 16:15:26 -0800833 bus_attach_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (parent)
James Bottomleyd856f1e2005-08-19 09:14:01 -0400835 klist_add_tail(&dev->knode_parent, &parent->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700837 if (dev->class) {
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700838 down(&dev->class->sem);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200839 /* tie the class to the device */
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700840 list_add_tail(&dev->node, &dev->class->devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200841
842 /* notify any interfaces that the device is here */
843 list_for_each_entry(class_intf, &dev->class->interfaces, node)
844 if (class_intf->add_dev)
845 class_intf->add_dev(dev, class_intf);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700846 up(&dev->class->sem);
847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 Done:
849 put_device(dev);
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +0100850 pm_sleep_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 return error;
852 BusError:
853 device_pm_remove(dev);
Daniel Drakedec13c12007-11-21 14:55:18 -0800854 dpm_sysfs_remove(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 PMError:
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000856 if (dev->bus)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700857 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000858 BUS_NOTIFY_DEL_DEVICE, dev);
James Simmons82f0cf92007-02-21 17:44:51 +0000859 device_remove_attrs(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700860 AttrsError:
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700861 device_remove_class_symlinks(dev);
862 SymlinkError:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900863 if (MAJOR(dev->devt))
864 device_remove_file(dev, &devt_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200865 ueventattrError:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900866 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700867 attrError:
Kay Sievers312c0042005-11-16 09:00:00 +0100868 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 kobject_del(&dev->kobj);
870 Error:
Cornelia Huck63b69712008-01-21 16:09:44 +0100871 cleanup_device_parent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (parent)
873 put_device(parent);
874 goto Done;
875}
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800878 * device_register - register a device with the system.
879 * @dev: pointer to the device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800881 * This happens in two clean steps - initialize the device
882 * and add it to the system. The two steps can be called
883 * separately, but this is the easiest and most common.
884 * I.e. you should only call the two helpers separately if
885 * have a clearly defined need to use and refcount the device
886 * before it is added to the hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888int device_register(struct device *dev)
889{
890 device_initialize(dev);
891 return device_add(dev);
892}
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800895 * get_device - increment reference count for device.
896 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800898 * This simply forwards the call to kobject_get(), though
899 * we do take care to provide for the case that we get a NULL
900 * pointer passed in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800902struct device *get_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
904 return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
905}
906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800908 * put_device - decrement reference count.
909 * @dev: device in question.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800911void put_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200913 /* might_sleep(); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (dev)
915 kobject_put(&dev->kobj);
916}
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800919 * device_del - delete device from system.
920 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800922 * This is the first part of the device unregistration
923 * sequence. This removes the device from the lists we control
924 * from here, has it removed from the other driver model
925 * subsystems it was added to in device_add(), and removes it
926 * from the kobject hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800928 * NOTE: this should be called manually _iff_ device_add() was
929 * also called manually.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800931void device_del(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800933 struct device *parent = dev->parent;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200934 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +0100936 device_pm_remove(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (parent)
Patrick Mocheld62c0f92005-06-24 08:39:33 -0700938 klist_del(&dev->knode_parent);
Tejun Heoad6a1e12007-06-14 03:45:17 +0900939 if (MAJOR(dev->devt))
940 device_remove_file(dev, &devt_attr);
Kay Sieversb9d9c822006-06-15 15:31:56 +0200941 if (dev->class) {
Kay Sieversda231fd2007-11-21 17:29:15 +0100942 device_remove_class_symlinks(dev);
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200943
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700944 down(&dev->class->sem);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200945 /* notify any interfaces that the device is now gone */
946 list_for_each_entry(class_intf, &dev->class->interfaces, node)
947 if (class_intf->remove_dev)
948 class_intf->remove_dev(dev, class_intf);
949 /* remove the device from the class list */
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700950 list_del_init(&dev->node);
951 up(&dev->class->sem);
Kay Sieversb9d9c822006-06-15 15:31:56 +0200952 }
Tejun Heoad6a1e12007-06-14 03:45:17 +0900953 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700954 device_remove_attrs(dev);
Benjamin Herrenschmidt28953532006-11-08 19:46:14 -0800955 bus_remove_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Tejun Heo2f8d16a2007-03-09 19:34:19 +0900957 /*
958 * Some platform devices are driven without driver attached
959 * and managed resources may have been acquired. Make sure
960 * all resources are released.
961 */
962 devres_release_all(dev);
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 /* Notify the platform of the removal, in case they
965 * need to do anything...
966 */
967 if (platform_notify_remove)
968 platform_notify_remove(dev);
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000969 if (dev->bus)
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700970 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000971 BUS_NOTIFY_DEL_DEVICE, dev);
Kay Sievers312c0042005-11-16 09:00:00 +0100972 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Kay Sieversda231fd2007-11-21 17:29:15 +0100973 cleanup_device_parent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 kobject_del(&dev->kobj);
Kay Sieversda231fd2007-11-21 17:29:15 +0100975 put_device(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976}
977
978/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800979 * device_unregister - unregister device from system.
980 * @dev: device going away.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800982 * We do this in two parts, like we do device_register(). First,
983 * we remove it from all the subsystems with device_del(), then
984 * we decrement the reference count via put_device(). If that
985 * is the final reference count, the device will be cleaned up
986 * via device_release() above. Otherwise, the structure will
987 * stick around until the final reference to the device is dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800989void device_unregister(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -0800991 pr_debug("device: '%s': %s\n", dev->bus_id, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 device_del(dev);
993 put_device(dev);
994}
995
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800996static struct device *next_device(struct klist_iter *i)
mochel@digitalimplant.org36239572005-03-24 19:08:30 -0800997{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800998 struct klist_node *n = klist_next(i);
mochel@digitalimplant.org36239572005-03-24 19:08:30 -0800999 return n ? container_of(n, struct device, knode_parent) : NULL;
1000}
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001003 * device_for_each_child - device child iterator.
1004 * @parent: parent struct device.
1005 * @data: data for the callback.
1006 * @fn: function to be called for each device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001008 * Iterate over @parent's child devices, and call @fn for each,
1009 * passing it @data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001011 * We check the return of @fn each time. If it returns anything
1012 * other than 0, we break out and return that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001014int device_for_each_child(struct device *parent, void *data,
1015 int (*fn)(struct device *dev, void *data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001017 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001018 struct device *child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 int error = 0;
1020
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001021 klist_iter_init(&parent->klist_children, &i);
1022 while ((child = next_device(&i)) && !error)
1023 error = fn(child, data);
1024 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 return error;
1026}
1027
Cornelia Huck5ab69982006-11-16 15:42:07 +01001028/**
1029 * device_find_child - device iterator for locating a particular device.
1030 * @parent: parent struct device
1031 * @data: Data to pass to match function
1032 * @match: Callback function to check device
1033 *
1034 * This is similar to the device_for_each_child() function above, but it
1035 * returns a reference to a device that is 'found' for later use, as
1036 * determined by the @match callback.
1037 *
1038 * The callback should return 0 if the device doesn't match and non-zero
1039 * if it does. If the callback returns non-zero and a reference to the
1040 * current device can be obtained, this function will return to the caller
1041 * and not iterate over any more devices.
1042 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001043struct device *device_find_child(struct device *parent, void *data,
1044 int (*match)(struct device *dev, void *data))
Cornelia Huck5ab69982006-11-16 15:42:07 +01001045{
1046 struct klist_iter i;
1047 struct device *child;
1048
1049 if (!parent)
1050 return NULL;
1051
1052 klist_iter_init(&parent->klist_children, &i);
1053 while ((child = next_device(&i)))
1054 if (match(child, data) && get_device(child))
1055 break;
1056 klist_iter_exit(&i);
1057 return child;
1058}
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060int __init devices_init(void)
1061{
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -06001062 devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
1063 if (!devices_kset)
1064 return -ENOMEM;
1065 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066}
1067
1068EXPORT_SYMBOL_GPL(device_for_each_child);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001069EXPORT_SYMBOL_GPL(device_find_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071EXPORT_SYMBOL_GPL(device_initialize);
1072EXPORT_SYMBOL_GPL(device_add);
1073EXPORT_SYMBOL_GPL(device_register);
1074
1075EXPORT_SYMBOL_GPL(device_del);
1076EXPORT_SYMBOL_GPL(device_unregister);
1077EXPORT_SYMBOL_GPL(get_device);
1078EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080EXPORT_SYMBOL_GPL(device_create_file);
1081EXPORT_SYMBOL_GPL(device_remove_file);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001082
1083
1084static void device_create_release(struct device *dev)
1085{
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -08001086 pr_debug("device: '%s': %s\n", dev->bus_id, __FUNCTION__);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001087 kfree(dev);
1088}
1089
1090/**
1091 * device_create - creates a device and registers it with sysfs
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001092 * @class: pointer to the struct class that this device should be registered to
1093 * @parent: pointer to the parent struct device of this new device, if any
1094 * @devt: the dev_t for the char device to be added
1095 * @fmt: string for the device's name
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001096 *
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001097 * This function can be used by char device classes. A struct device
1098 * will be created in sysfs, registered to the specified class.
1099 *
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001100 * A "dev" file will be created, showing the dev_t for the device, if
1101 * the dev_t is not 0,0.
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001102 * If a pointer to a parent struct device is passed in, the newly created
1103 * struct device will be a child of that device in sysfs.
1104 * The pointer to the struct device will be returned from the call.
1105 * Any further sysfs files that might be required can be created using this
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001106 * pointer.
1107 *
1108 * Note: the struct class passed to this function must have previously
1109 * been created with a call to class_create().
1110 */
1111struct device *device_create(struct class *class, struct device *parent,
Greg Kroah-Hartman5cbe5f82006-08-10 01:19:19 -04001112 dev_t devt, const char *fmt, ...)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001113{
1114 va_list args;
1115 struct device *dev = NULL;
1116 int retval = -ENODEV;
1117
1118 if (class == NULL || IS_ERR(class))
1119 goto error;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001120
1121 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1122 if (!dev) {
1123 retval = -ENOMEM;
1124 goto error;
1125 }
1126
1127 dev->devt = devt;
1128 dev->class = class;
1129 dev->parent = parent;
1130 dev->release = device_create_release;
1131
1132 va_start(args, fmt);
1133 vsnprintf(dev->bus_id, BUS_ID_SIZE, fmt, args);
1134 va_end(args);
1135 retval = device_register(dev);
1136 if (retval)
1137 goto error;
1138
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001139 return dev;
1140
1141error:
1142 kfree(dev);
1143 return ERR_PTR(retval);
1144}
1145EXPORT_SYMBOL_GPL(device_create);
1146
Dave Youngcd354492008-01-28 16:56:11 +08001147static int __match_devt(struct device *dev, void *data)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001148{
Dave Youngcd354492008-01-28 16:56:11 +08001149 dev_t *devt = data;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001150
Dave Youngcd354492008-01-28 16:56:11 +08001151 return dev->devt == *devt;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001152}
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001153
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001154/**
1155 * device_destroy - removes a device that was created with device_create()
1156 * @class: pointer to the struct class that this device was registered with
1157 * @devt: the dev_t of the device that was previously registered
1158 *
1159 * This call unregisters and cleans up a device that was created with a
1160 * call to device_create().
1161 */
1162void device_destroy(struct class *class, dev_t devt)
1163{
1164 struct device *dev;
1165
Dave Youngcd354492008-01-28 16:56:11 +08001166 dev = class_find_device(class, &devt, __match_devt);
1167 if (dev) {
1168 put_device(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001169 device_unregister(dev);
Dave Youngcd354492008-01-28 16:56:11 +08001170 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001171}
1172EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001173
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001174#ifdef CONFIG_PM_SLEEP
1175/**
1176 * destroy_suspended_device - asks the PM core to remove a suspended device
1177 * @class: pointer to the struct class that this device was registered with
1178 * @devt: the dev_t of the device that was previously registered
1179 *
1180 * This call notifies the PM core of the necessity to unregister a suspended
1181 * device created with a call to device_create() (devices cannot be
1182 * unregistered directly while suspended, since the PM core holds their
1183 * semaphores at that time).
1184 *
1185 * It can only be called within the scope of a system sleep transition. In
1186 * practice this means it has to be directly or indirectly invoked either by
1187 * a suspend or resume method, or by the PM core (e.g. via
1188 * disable_nonboot_cpus() or enable_nonboot_cpus()).
1189 */
1190void destroy_suspended_device(struct class *class, dev_t devt)
1191{
1192 struct device *dev;
1193
Dave Youngcd354492008-01-28 16:56:11 +08001194 dev = class_find_device(class, &devt, __match_devt);
1195 if (dev) {
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001196 device_pm_schedule_removal(dev);
Dave Youngcd354492008-01-28 16:56:11 +08001197 put_device(dev);
1198 }
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001199}
1200EXPORT_SYMBOL_GPL(destroy_suspended_device);
1201#endif /* CONFIG_PM_SLEEP */
1202
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001203/**
1204 * device_rename - renames a device
1205 * @dev: the pointer to the struct device to be renamed
1206 * @new_name: the new name of the device
1207 */
1208int device_rename(struct device *dev, char *new_name)
1209{
1210 char *old_class_name = NULL;
1211 char *new_class_name = NULL;
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001212 char *old_device_name = NULL;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001213 int error;
1214
1215 dev = get_device(dev);
1216 if (!dev)
1217 return -EINVAL;
1218
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -08001219 pr_debug("device: '%s': %s: renaming to '%s'\n", dev->bus_id,
1220 __FUNCTION__, new_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001221
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001222#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001223 if ((dev->class) && (dev->parent))
1224 old_class_name = make_class_name(dev->class->name, &dev->kobj);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001225#endif
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001226
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001227 old_device_name = kmalloc(BUS_ID_SIZE, GFP_KERNEL);
1228 if (!old_device_name) {
1229 error = -ENOMEM;
1230 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001231 }
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001232 strlcpy(old_device_name, dev->bus_id, BUS_ID_SIZE);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001233 strlcpy(dev->bus_id, new_name, BUS_ID_SIZE);
1234
1235 error = kobject_rename(&dev->kobj, new_name);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001236 if (error) {
1237 strlcpy(dev->bus_id, old_device_name, BUS_ID_SIZE);
1238 goto out;
1239 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001240
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001241#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001242 if (old_class_name) {
1243 new_class_name = make_class_name(dev->class->name, &dev->kobj);
1244 if (new_class_name) {
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001245 error = sysfs_create_link(&dev->parent->kobj,
1246 &dev->kobj, new_class_name);
1247 if (error)
1248 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001249 sysfs_remove_link(&dev->parent->kobj, old_class_name);
1250 }
1251 }
Kay Sievers60b8cab2007-10-26 20:07:44 +02001252#else
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001253 if (dev->class) {
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001254 sysfs_remove_link(&dev->class->subsys.kobj, old_device_name);
1255 error = sysfs_create_link(&dev->class->subsys.kobj, &dev->kobj,
1256 dev->bus_id);
1257 if (error) {
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001258 dev_err(dev, "%s: sysfs_create_symlink failed (%d)\n",
1259 __FUNCTION__, error);
1260 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001261 }
Kay Sievers60b8cab2007-10-26 20:07:44 +02001262#endif
1263
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001264out:
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001265 put_device(dev);
1266
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001267 kfree(new_class_name);
Jesper Juhl952ab432006-09-28 23:56:01 +02001268 kfree(old_class_name);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001269 kfree(old_device_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001270
1271 return error;
1272}
Johannes Berga2807db2007-02-28 12:38:31 +01001273EXPORT_SYMBOL_GPL(device_rename);
Cornelia Huck8a824722006-11-20 17:07:51 +01001274
1275static int device_move_class_links(struct device *dev,
1276 struct device *old_parent,
1277 struct device *new_parent)
1278{
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001279 int error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001280#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huck8a824722006-11-20 17:07:51 +01001281 char *class_name;
1282
1283 class_name = make_class_name(dev->class->name, &dev->kobj);
1284 if (!class_name) {
Cornelia Huckcb360bb2006-11-27 10:35:05 +01001285 error = -ENOMEM;
Cornelia Huck8a824722006-11-20 17:07:51 +01001286 goto out;
1287 }
1288 if (old_parent) {
1289 sysfs_remove_link(&dev->kobj, "device");
1290 sysfs_remove_link(&old_parent->kobj, class_name);
1291 }
Cornelia Huckc744aea2007-01-08 20:16:44 +01001292 if (new_parent) {
1293 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1294 "device");
1295 if (error)
1296 goto out;
1297 error = sysfs_create_link(&new_parent->kobj, &dev->kobj,
1298 class_name);
1299 if (error)
1300 sysfs_remove_link(&dev->kobj, "device");
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001301 } else
Cornelia Huckc744aea2007-01-08 20:16:44 +01001302 error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001303out:
1304 kfree(class_name);
1305 return error;
1306#else
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001307 if (old_parent)
1308 sysfs_remove_link(&dev->kobj, "device");
1309 if (new_parent)
1310 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1311 "device");
1312 return error;
Cornelia Huck8a824722006-11-20 17:07:51 +01001313#endif
1314}
1315
1316/**
1317 * device_move - moves a device to a new parent
1318 * @dev: the pointer to the struct device to be moved
Cornelia Huckc744aea2007-01-08 20:16:44 +01001319 * @new_parent: the new parent of the device (can by NULL)
Cornelia Huck8a824722006-11-20 17:07:51 +01001320 */
1321int device_move(struct device *dev, struct device *new_parent)
1322{
1323 int error;
1324 struct device *old_parent;
Cornelia Huckc744aea2007-01-08 20:16:44 +01001325 struct kobject *new_parent_kobj;
Cornelia Huck8a824722006-11-20 17:07:51 +01001326
1327 dev = get_device(dev);
1328 if (!dev)
1329 return -EINVAL;
1330
Cornelia Huck8a824722006-11-20 17:07:51 +01001331 new_parent = get_device(new_parent);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001332 new_parent_kobj = get_device_parent(dev, new_parent);
Cornelia Huck63b69712008-01-21 16:09:44 +01001333
Greg Kroah-Hartman7dc72b22007-11-28 23:49:41 -08001334 pr_debug("device: '%s': %s: moving to '%s'\n", dev->bus_id,
1335 __FUNCTION__, new_parent ? new_parent->bus_id : "<NULL>");
Cornelia Huckc744aea2007-01-08 20:16:44 +01001336 error = kobject_move(&dev->kobj, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001337 if (error) {
Cornelia Huck63b69712008-01-21 16:09:44 +01001338 cleanup_glue_dir(dev, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001339 put_device(new_parent);
1340 goto out;
1341 }
1342 old_parent = dev->parent;
1343 dev->parent = new_parent;
1344 if (old_parent)
Cornelia Huckacf02d22006-11-22 17:49:39 +01001345 klist_remove(&dev->knode_parent);
Cornelia Huckc744aea2007-01-08 20:16:44 +01001346 if (new_parent)
1347 klist_add_tail(&dev->knode_parent, &new_parent->klist_children);
Cornelia Huck8a824722006-11-20 17:07:51 +01001348 if (!dev->class)
1349 goto out_put;
1350 error = device_move_class_links(dev, old_parent, new_parent);
1351 if (error) {
1352 /* We ignore errors on cleanup since we're hosed anyway... */
1353 device_move_class_links(dev, new_parent, old_parent);
1354 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
Cornelia Huckc744aea2007-01-08 20:16:44 +01001355 if (new_parent)
1356 klist_remove(&dev->knode_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +01001357 if (old_parent)
1358 klist_add_tail(&dev->knode_parent,
1359 &old_parent->klist_children);
1360 }
Cornelia Huck63b69712008-01-21 16:09:44 +01001361 cleanup_glue_dir(dev, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001362 put_device(new_parent);
1363 goto out;
1364 }
1365out_put:
1366 put_device(old_parent);
1367out:
1368 put_device(dev);
1369 return error;
1370}
Cornelia Huck8a824722006-11-20 17:07:51 +01001371EXPORT_SYMBOL_GPL(device_move);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001372
1373/**
1374 * device_shutdown - call ->shutdown() on each device to shutdown.
1375 */
1376void device_shutdown(void)
1377{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001378 struct device *dev, *devn;
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001379
1380 list_for_each_entry_safe_reverse(dev, devn, &devices_kset->list,
1381 kobj.entry) {
1382 if (dev->bus && dev->bus->shutdown) {
1383 dev_dbg(dev, "shutdown\n");
1384 dev->bus->shutdown(dev);
1385 } else if (dev->driver && dev->driver->shutdown) {
1386 dev_dbg(dev, "shutdown\n");
1387 dev->driver->shutdown(dev);
1388 }
1389 }
1390}