blob: 46ff6c2519324c2c5baeff5b97fc0acf700f8b7c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/base/core.c - core driver model code (device registration, etc)
3 *
4 * Copyright (c) 2002-3 Patrick Mochel
5 * Copyright (c) 2002-3 Open Source Development Labs
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -07006 * Copyright (c) 2006 Greg Kroah-Hartman <gregkh@suse.de>
7 * Copyright (c) 2006 Novell, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This file is released under the GPLv2
10 *
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/device.h>
14#include <linux/err.h>
15#include <linux/init.h>
16#include <linux/module.h>
17#include <linux/slab.h>
18#include <linux/string.h>
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -070019#include <linux/kdev_t.h>
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +100020#include <linux/notifier.h>
Kay Sieversda231fd2007-11-21 17:29:15 +010021#include <linux/genhd.h>
Andrew Morton815d2d52008-03-04 15:09:07 -080022#include <linux/kallsyms.h>
Dave Youngf75b1c62008-05-28 09:28:39 -070023#include <linux/mutex.h>
Shaohua Li401097e2009-05-12 13:37:57 -070024#include <linux/async.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include "base.h"
27#include "power/power.h"
28
Andi Kleene52eec12010-09-08 16:54:17 +020029#ifdef CONFIG_SYSFS_DEPRECATED
30#ifdef CONFIG_SYSFS_DEPRECATED_V2
31long sysfs_deprecated = 1;
32#else
33long sysfs_deprecated = 0;
34#endif
35static __init int sysfs_deprecated_setup(char *arg)
36{
37 return strict_strtol(arg, 10, &sysfs_deprecated);
38}
39early_param("sysfs.deprecated", sysfs_deprecated_setup);
40#endif
41
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080042int (*platform_notify)(struct device *dev) = NULL;
43int (*platform_notify_remove)(struct device *dev) = NULL;
Dan Williamse105b8b2008-04-21 10:51:07 -070044static struct kobject *dev_kobj;
45struct kobject *sysfs_dev_char_kobj;
46struct kobject *sysfs_dev_block_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -080048#ifdef CONFIG_BLOCK
49static inline int device_is_not_partition(struct device *dev)
50{
51 return !(dev->type == &part_type);
52}
53#else
54static inline int device_is_not_partition(struct device *dev)
55{
56 return 1;
57}
58#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Alan Stern3e956372006-06-16 17:10:48 -040060/**
61 * dev_driver_string - Return a device's driver name, if at all possible
62 * @dev: struct device to get the name of
63 *
64 * Will return the device's driver's name if it is bound to a device. If
65 * the device is not bound to a device, it will return the name of the bus
66 * it is attached to. If it is not attached to a bus either, an empty
67 * string will be returned.
68 */
Jean Delvarebf9ca692008-07-30 12:29:21 -070069const char *dev_driver_string(const struct device *dev)
Alan Stern3e956372006-06-16 17:10:48 -040070{
Alan Stern35899722009-12-04 11:06:57 -050071 struct device_driver *drv;
72
73 /* dev->driver can change to NULL underneath us because of unbinding,
74 * so be careful about accessing it. dev->bus and dev->class should
75 * never change once they are set, so they don't need special care.
76 */
77 drv = ACCESS_ONCE(dev->driver);
78 return drv ? drv->name :
Jean Delvarea456b702007-03-09 16:33:10 +010079 (dev->bus ? dev->bus->name :
80 (dev->class ? dev->class->name : ""));
Alan Stern3e956372006-06-16 17:10:48 -040081}
Matthew Wilcox310a9222006-09-23 23:35:04 -060082EXPORT_SYMBOL(dev_driver_string);
Alan Stern3e956372006-06-16 17:10:48 -040083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#define to_dev(obj) container_of(obj, struct device, kobj)
85#define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
86
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080087static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
88 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080090 struct device_attribute *dev_attr = to_dev_attr(attr);
91 struct device *dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050092 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 if (dev_attr->show)
Yani Ioannou54b6f352005-05-17 06:39:34 -040095 ret = dev_attr->show(dev, dev_attr, buf);
Andrew Morton815d2d52008-03-04 15:09:07 -080096 if (ret >= (ssize_t)PAGE_SIZE) {
97 print_symbol("dev_attr_show: %s returned bad count\n",
98 (unsigned long)dev_attr->show);
99 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return ret;
101}
102
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800103static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
104 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800106 struct device_attribute *dev_attr = to_dev_attr(attr);
107 struct device *dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -0500108 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 if (dev_attr->store)
Yani Ioannou54b6f352005-05-17 06:39:34 -0400111 ret = dev_attr->store(dev, dev_attr, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return ret;
113}
114
Emese Revfy52cf25d2010-01-19 02:58:23 +0100115static const struct sysfs_ops dev_sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .show = dev_attr_show,
117 .store = dev_attr_store,
118};
119
120
121/**
122 * device_release - free device structure.
123 * @kobj: device's kobject.
124 *
125 * This is called once the reference count for the object
126 * reaches 0. We forward the call to the device's release
127 * method, which should handle actually freeing the structure.
128 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800129static void device_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800131 struct device *dev = to_dev(kobj);
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800132 struct device_private *p = dev->p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 if (dev->release)
135 dev->release(dev);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200136 else if (dev->type && dev->type->release)
137 dev->type->release(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700138 else if (dev->class && dev->class->dev_release)
139 dev->class->dev_release(dev);
Arjan van de Venf810a5c2008-07-25 19:45:39 -0700140 else
141 WARN(1, KERN_ERR "Device '%s' does not have a release() "
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800142 "function, it is broken and must be fixed.\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100143 dev_name(dev));
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800144 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700147static const void *device_namespace(struct kobject *kobj)
148{
149 struct device *dev = to_dev(kobj);
150 const void *ns = NULL;
151
152 if (dev->class && dev->class->ns_type)
153 ns = dev->class->namespace(dev);
154
155 return ns;
156}
157
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600158static struct kobj_type device_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 .release = device_release,
160 .sysfs_ops = &dev_sysfs_ops,
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700161 .namespace = device_namespace,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162};
163
164
Kay Sievers312c0042005-11-16 09:00:00 +0100165static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 struct kobj_type *ktype = get_ktype(kobj);
168
Greg Kroah-Hartman8f4afc42007-10-11 10:47:49 -0600169 if (ktype == &device_ktype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 struct device *dev = to_dev(kobj);
171 if (dev->bus)
172 return 1;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700173 if (dev->class)
174 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176 return 0;
177}
178
Kay Sievers312c0042005-11-16 09:00:00 +0100179static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 struct device *dev = to_dev(kobj);
182
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700183 if (dev->bus)
184 return dev->bus->name;
185 if (dev->class)
186 return dev->class->name;
187 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Kay Sievers7eff2e72007-08-14 15:15:12 +0200190static int dev_uevent(struct kset *kset, struct kobject *kobj,
191 struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 struct device *dev = to_dev(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 int retval = 0;
195
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200196 /* add device node properties if present */
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700197 if (MAJOR(dev->devt)) {
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200198 const char *tmp;
199 const char *name;
Kay Sieverse454cea2009-09-18 23:01:12 +0200200 mode_t mode = 0;
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200201
Kay Sievers7eff2e72007-08-14 15:15:12 +0200202 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
203 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
Kay Sieverse454cea2009-09-18 23:01:12 +0200204 name = device_get_devnode(dev, &mode, &tmp);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200205 if (name) {
206 add_uevent_var(env, "DEVNAME=%s", name);
207 kfree(tmp);
Kay Sieverse454cea2009-09-18 23:01:12 +0200208 if (mode)
209 add_uevent_var(env, "DEVMODE=%#o", mode & 0777);
Kay Sievers6fcf53a2009-04-30 15:23:42 +0200210 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700211 }
212
Kay Sievers414264f2007-03-12 21:08:57 +0100213 if (dev->type && dev->type->name)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200214 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
Kay Sievers414264f2007-03-12 21:08:57 +0100215
Kay Sievers239378f2006-10-07 21:54:55 +0200216 if (dev->driver)
Kay Sievers7eff2e72007-08-14 15:15:12 +0200217 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200218
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
Stefan Weileef35c22010-08-06 21:11:15 +0200236 /* have the device type specific function 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
Emese Revfy9cd43612009-12-31 14:52:51 +0100248static const struct kset_uevent_ops device_uevent_ops = {
Kay Sievers312c0042005-11-16 09:00:00 +0100249 .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 Sievers3f5468c2010-01-14 22:54:37 +0100302 if (kobject_action_type(buf, count, &action) == 0)
Kay Sievers60a96a52007-07-08 22:29:26 +0200303 kobject_uevent(&dev->kobj, action);
Kay Sievers3f5468c2010-01-14 22:54:37 +0100304 else
305 dev_err(dev, "uevent: unknown action-string\n");
Kay Sieversa7fd6702005-10-01 14:49:43 +0200306 return count;
307}
308
Tejun Heoad6a1e12007-06-14 03:45:17 +0900309static struct device_attribute uevent_attr =
310 __ATTR(uevent, S_IRUGO | S_IWUSR, show_uevent, store_uevent);
311
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500312static int device_add_attributes(struct device *dev,
313 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700314{
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700315 int error = 0;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500316 int i;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700317
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500318 if (attrs) {
319 for (i = 0; attr_name(attrs[i]); i++) {
320 error = device_create_file(dev, &attrs[i]);
321 if (error)
322 break;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700323 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500324 if (error)
325 while (--i >= 0)
326 device_remove_file(dev, &attrs[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700327 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700328 return error;
329}
330
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500331static void device_remove_attributes(struct device *dev,
332 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700333{
334 int i;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500335
336 if (attrs)
337 for (i = 0; attr_name(attrs[i]); i++)
338 device_remove_file(dev, &attrs[i]);
339}
340
341static int device_add_groups(struct device *dev,
David Brownella4dbd672009-06-24 10:06:31 -0700342 const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500343{
344 int error = 0;
345 int i;
346
347 if (groups) {
348 for (i = 0; groups[i]; i++) {
349 error = sysfs_create_group(&dev->kobj, groups[i]);
350 if (error) {
351 while (--i >= 0)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800352 sysfs_remove_group(&dev->kobj,
353 groups[i]);
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500354 break;
355 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700356 }
357 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500358 return error;
359}
360
361static void device_remove_groups(struct device *dev,
David Brownella4dbd672009-06-24 10:06:31 -0700362 const struct attribute_group **groups)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500363{
364 int i;
365
366 if (groups)
367 for (i = 0; groups[i]; i++)
368 sysfs_remove_group(&dev->kobj, groups[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700369}
370
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700371static int device_add_attrs(struct device *dev)
372{
373 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200374 struct device_type *type = dev->type;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500375 int error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700376
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500377 if (class) {
378 error = device_add_attributes(dev, class->dev_attrs);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200379 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500380 return error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700381 }
Kay Sieversf9f852d2006-10-07 21:54:55 +0200382
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500383 if (type) {
384 error = device_add_groups(dev, type->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200385 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500386 goto err_remove_class_attrs;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200387 }
388
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500389 error = device_add_groups(dev, dev->groups);
390 if (error)
391 goto err_remove_type_groups;
392
393 return 0;
394
395 err_remove_type_groups:
396 if (type)
397 device_remove_groups(dev, type->groups);
398 err_remove_class_attrs:
399 if (class)
400 device_remove_attributes(dev, class->dev_attrs);
401
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700402 return error;
403}
404
405static void device_remove_attrs(struct device *dev)
406{
407 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200408 struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700409
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500410 device_remove_groups(dev, dev->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200411
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500412 if (type)
413 device_remove_groups(dev, type->groups);
414
415 if (class)
416 device_remove_attributes(dev, class->dev_attrs);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700417}
418
419
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700420static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
421 char *buf)
422{
423 return print_dev_t(buf, dev->devt);
424}
425
Tejun Heoad6a1e12007-06-14 03:45:17 +0900426static struct device_attribute devt_attr =
427 __ATTR(dev, S_IRUGO, show_dev, NULL);
428
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600429/* kset to create /sys/devices/ */
430struct kset *devices_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800433 * device_create_file - create sysfs attribute file for device.
434 * @dev: device.
435 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 */
Phil Carmody26579ab2009-12-18 15:34:19 +0200437int device_create_file(struct device *dev,
438 const struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 int error = 0;
Cornelia Huck0c98b192008-01-31 10:39:38 +0100441 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 error = sysfs_create_file(&dev->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return error;
444}
445
446/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800447 * device_remove_file - remove sysfs attribute file.
448 * @dev: device.
449 * @attr: device attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 */
Phil Carmody26579ab2009-12-18 15:34:19 +0200451void device_remove_file(struct device *dev,
452 const struct device_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Cornelia Huck0c98b192008-01-31 10:39:38 +0100454 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 sysfs_remove_file(&dev->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700458/**
459 * device_create_bin_file - create sysfs binary attribute file for device.
460 * @dev: device.
461 * @attr: device binary attribute descriptor.
462 */
Phil Carmody66ecb922009-12-18 15:34:20 +0200463int device_create_bin_file(struct device *dev,
464 const struct bin_attribute *attr)
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700465{
466 int error = -EINVAL;
467 if (dev)
468 error = sysfs_create_bin_file(&dev->kobj, attr);
469 return error;
470}
471EXPORT_SYMBOL_GPL(device_create_bin_file);
472
473/**
474 * device_remove_bin_file - remove sysfs binary attribute file
475 * @dev: device.
476 * @attr: device binary attribute descriptor.
477 */
Phil Carmody66ecb922009-12-18 15:34:20 +0200478void device_remove_bin_file(struct device *dev,
479 const struct bin_attribute *attr)
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700480{
481 if (dev)
482 sysfs_remove_bin_file(&dev->kobj, attr);
483}
484EXPORT_SYMBOL_GPL(device_remove_bin_file);
485
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400486/**
Alan Stern523ded72007-04-26 00:12:04 -0700487 * device_schedule_callback_owner - helper to schedule a callback for a device
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400488 * @dev: device.
489 * @func: callback function to invoke later.
Alan Stern523ded72007-04-26 00:12:04 -0700490 * @owner: module owning the callback routine
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400491 *
492 * Attribute methods must not unregister themselves or their parent device
493 * (which would amount to the same thing). Attempts to do so will deadlock,
494 * since unregistration is mutually exclusive with driver callbacks.
495 *
496 * Instead methods can call this routine, which will attempt to allocate
497 * and schedule a workqueue request to call back @func with @dev as its
498 * argument in the workqueue's process context. @dev will be pinned until
499 * @func returns.
500 *
Alan Stern523ded72007-04-26 00:12:04 -0700501 * This routine is usually called via the inline device_schedule_callback(),
502 * which automatically sets @owner to THIS_MODULE.
503 *
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400504 * Returns 0 if the request was submitted, -ENOMEM if storage could not
Alan Stern523ded72007-04-26 00:12:04 -0700505 * be allocated, -ENODEV if a reference to @owner isn't available.
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400506 *
507 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
508 * underlying sysfs routine (since it is intended for use by attribute
509 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
510 */
Alan Stern523ded72007-04-26 00:12:04 -0700511int device_schedule_callback_owner(struct device *dev,
512 void (*func)(struct device *), struct module *owner)
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400513{
514 return sysfs_schedule_callback(&dev->kobj,
Alan Stern523ded72007-04-26 00:12:04 -0700515 (void (*)(void *)) func, dev, owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400516}
Alan Stern523ded72007-04-26 00:12:04 -0700517EXPORT_SYMBOL_GPL(device_schedule_callback_owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400518
James Bottomley34bb61f2005-09-06 16:56:51 -0700519static void klist_children_get(struct klist_node *n)
520{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800521 struct device_private *p = to_device_private_parent(n);
522 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700523
524 get_device(dev);
525}
526
527static void klist_children_put(struct klist_node *n)
528{
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800529 struct device_private *p = to_device_private_parent(n);
530 struct device *dev = p->device;
James Bottomley34bb61f2005-09-06 16:56:51 -0700531
532 put_device(dev);
533}
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800536 * device_initialize - init device structure.
537 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 *
Cornelia Huck57394112008-09-03 18:26:40 +0200539 * This prepares the device for use by other layers by initializing
540 * its fields.
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800541 * It is the first half of device_register(), if called by
Cornelia Huck57394112008-09-03 18:26:40 +0200542 * that function, though it can also be called separately, so one
543 * may use @dev's fields. In particular, get_device()/put_device()
544 * may be used for reference counting of @dev after calling this
545 * function.
546 *
547 * NOTE: Use put_device() to give up your reference instead of freeing
548 * @dev directly once you have called this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550void device_initialize(struct device *dev)
551{
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600552 dev->kobj.kset = devices_kset;
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700553 kobject_init(&dev->kobj, &device_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 INIT_LIST_HEAD(&dev->dma_pools);
Thomas Gleixner31427882010-01-29 20:39:02 +0000555 mutex_init(&dev->mutex);
Peter Zijlstra1704f472010-03-19 01:37:42 +0100556 lockdep_set_novalidate_class(&dev->mutex);
Tejun Heo9ac78492007-01-20 16:00:26 +0900557 spin_lock_init(&dev->devres_lock);
558 INIT_LIST_HEAD(&dev->devres_head);
Alan Stern3b98aea2008-08-07 13:06:12 -0400559 device_pm_init(dev);
Christoph Hellwig87348132006-12-06 20:32:33 -0800560 set_dev_node(dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Kay Sievers86406242007-03-14 03:25:56 +0100563static struct kobject *virtual_device_parent(struct device *dev)
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700564{
Kay Sievers86406242007-03-14 03:25:56 +0100565 static struct kobject *virtual_dir = NULL;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700566
Kay Sievers86406242007-03-14 03:25:56 +0100567 if (!virtual_dir)
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -0800568 virtual_dir = kobject_create_and_add("virtual",
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -0600569 &devices_kset->kobj);
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700570
Kay Sievers86406242007-03-14 03:25:56 +0100571 return virtual_dir;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700572}
573
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700574struct class_dir {
575 struct kobject kobj;
576 struct class *class;
577};
578
579#define to_class_dir(obj) container_of(obj, struct class_dir, kobj)
580
581static void class_dir_release(struct kobject *kobj)
582{
583 struct class_dir *dir = to_class_dir(kobj);
584 kfree(dir);
585}
586
587static const
588struct kobj_ns_type_operations *class_dir_child_ns_type(struct kobject *kobj)
589{
590 struct class_dir *dir = to_class_dir(kobj);
591 return dir->class->ns_type;
592}
593
594static struct kobj_type class_dir_ktype = {
595 .release = class_dir_release,
596 .sysfs_ops = &kobj_sysfs_ops,
597 .child_ns_type = class_dir_child_ns_type
598};
599
600static struct kobject *
601class_dir_create_and_add(struct class *class, struct kobject *parent_kobj)
602{
603 struct class_dir *dir;
604 int retval;
605
606 dir = kzalloc(sizeof(*dir), GFP_KERNEL);
607 if (!dir)
608 return NULL;
609
610 dir->class = class;
611 kobject_init(&dir->kobj, &class_dir_ktype);
612
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100613 dir->kobj.kset = &class->p->glue_dirs;
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700614
615 retval = kobject_add(&dir->kobj, parent_kobj, "%s", class->name);
616 if (retval < 0) {
617 kobject_put(&dir->kobj);
618 return NULL;
619 }
620 return &dir->kobj;
621}
622
623
Kay Sieversda231fd2007-11-21 17:29:15 +0100624static struct kobject *get_device_parent(struct device *dev,
625 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100626{
Kay Sievers86406242007-03-14 03:25:56 +0100627 if (dev->class) {
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900628 static DEFINE_MUTEX(gdp_mutex);
Kay Sievers86406242007-03-14 03:25:56 +0100629 struct kobject *kobj = NULL;
630 struct kobject *parent_kobj;
631 struct kobject *k;
632
Randy Dunlapead454f2010-09-24 14:36:49 -0700633#ifdef CONFIG_BLOCK
Kay Sievers39aba962010-09-04 22:33:14 -0700634 /* block disks show up in /sys/block */
Andi Kleene52eec12010-09-08 16:54:17 +0200635 if (sysfs_deprecated && dev->class == &block_class) {
Kay Sievers39aba962010-09-04 22:33:14 -0700636 if (parent && parent->class == &block_class)
637 return &parent->kobj;
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100638 return &block_class.p->subsys.kobj;
Kay Sievers39aba962010-09-04 22:33:14 -0700639 }
Randy Dunlapead454f2010-09-24 14:36:49 -0700640#endif
Andi Kleene52eec12010-09-08 16:54:17 +0200641
Kay Sievers86406242007-03-14 03:25:56 +0100642 /*
643 * If we have no parent, we live in "virtual".
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100644 * Class-devices with a non class-device as parent, live
645 * in a "glue" directory to prevent namespace collisions.
Kay Sievers86406242007-03-14 03:25:56 +0100646 */
647 if (parent == NULL)
648 parent_kobj = virtual_device_parent(dev);
Eric W. Biederman24b14422010-07-24 22:43:35 -0700649 else if (parent->class && !dev->class->ns_type)
Kay Sievers86406242007-03-14 03:25:56 +0100650 return &parent->kobj;
651 else
652 parent_kobj = &parent->kobj;
653
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900654 mutex_lock(&gdp_mutex);
655
Kay Sievers86406242007-03-14 03:25:56 +0100656 /* find our class-directory at the parent and reference it */
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100657 spin_lock(&dev->class->p->glue_dirs.list_lock);
658 list_for_each_entry(k, &dev->class->p->glue_dirs.list, entry)
Kay Sievers86406242007-03-14 03:25:56 +0100659 if (k->parent == parent_kobj) {
660 kobj = kobject_get(k);
661 break;
662 }
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100663 spin_unlock(&dev->class->p->glue_dirs.list_lock);
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900664 if (kobj) {
665 mutex_unlock(&gdp_mutex);
Kay Sievers86406242007-03-14 03:25:56 +0100666 return kobj;
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900667 }
Kay Sievers86406242007-03-14 03:25:56 +0100668
669 /* or create a new class-directory at the parent device */
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700670 k = class_dir_create_and_add(dev->class, parent_kobj);
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100671 /* do not emit an uevent for this simple "glue" directory */
Tejun Heo77d3d7c2010-02-05 17:57:02 +0900672 mutex_unlock(&gdp_mutex);
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800673 return k;
Kay Sievers86406242007-03-14 03:25:56 +0100674 }
675
676 if (parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100677 return &parent->kobj;
678 return NULL;
679}
Kay Sieversda231fd2007-11-21 17:29:15 +0100680
Cornelia Huck63b69712008-01-21 16:09:44 +0100681static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
Kay Sieversda231fd2007-11-21 17:29:15 +0100682{
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100683 /* see if we live in a "glue" directory */
Cornelia Huckc1fe5392008-02-27 15:38:23 +0100684 if (!glue_dir || !dev->class ||
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100685 glue_dir->kset != &dev->class->p->glue_dirs)
Kay Sieversda231fd2007-11-21 17:29:15 +0100686 return;
687
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100688 kobject_put(glue_dir);
Kay Sieversda231fd2007-11-21 17:29:15 +0100689}
Cornelia Huck63b69712008-01-21 16:09:44 +0100690
691static void cleanup_device_parent(struct device *dev)
692{
693 cleanup_glue_dir(dev, dev->kobj.parent);
694}
Kay Sievers86406242007-03-14 03:25:56 +0100695
Cornelia Huck63b69712008-01-21 16:09:44 +0100696static void setup_parent(struct device *dev, struct device *parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100697{
698 struct kobject *kobj;
699 kobj = get_device_parent(dev, parent);
Cornelia Huckc744aea2007-01-08 20:16:44 +0100700 if (kobj)
701 dev->kobj.parent = kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100702}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100703
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700704static int device_add_class_symlinks(struct device *dev)
705{
706 int error;
707
708 if (!dev->class)
709 return 0;
Kay Sieversda231fd2007-11-21 17:29:15 +0100710
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700711 error = sysfs_create_link(&dev->kobj,
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100712 &dev->class->p->subsys.kobj,
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700713 "subsystem");
714 if (error)
715 goto out;
Kay Sieversda231fd2007-11-21 17:29:15 +0100716
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800717 if (dev->parent && device_is_not_partition(dev)) {
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700718 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
719 "device");
720 if (error)
Kay Sievers39aba962010-09-04 22:33:14 -0700721 goto out_subsys;
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700722 }
Kay Sievers39aba962010-09-04 22:33:14 -0700723
Randy Dunlapead454f2010-09-24 14:36:49 -0700724#ifdef CONFIG_BLOCK
Kay Sievers39aba962010-09-04 22:33:14 -0700725 /* /sys/block has directories and does not need symlinks */
Andi Kleene52eec12010-09-08 16:54:17 +0200726 if (sysfs_deprecated && dev->class == &block_class)
Kay Sievers39aba962010-09-04 22:33:14 -0700727 return 0;
Randy Dunlapead454f2010-09-24 14:36:49 -0700728#endif
Kay Sievers39aba962010-09-04 22:33:14 -0700729
730 /* link in the class directory pointing to the device */
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100731 error = sysfs_create_link(&dev->class->p->subsys.kobj,
Kay Sievers39aba962010-09-04 22:33:14 -0700732 &dev->kobj, dev_name(dev));
733 if (error)
734 goto out_device;
735
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700736 return 0;
737
Kay Sievers39aba962010-09-04 22:33:14 -0700738out_device:
739 sysfs_remove_link(&dev->kobj, "device");
Kay Sieversda231fd2007-11-21 17:29:15 +0100740
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700741out_subsys:
742 sysfs_remove_link(&dev->kobj, "subsystem");
743out:
744 return error;
745}
746
747static void device_remove_class_symlinks(struct device *dev)
748{
749 if (!dev->class)
750 return;
Kay Sieversda231fd2007-11-21 17:29:15 +0100751
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800752 if (dev->parent && device_is_not_partition(dev))
Kay Sieversda231fd2007-11-21 17:29:15 +0100753 sysfs_remove_link(&dev->kobj, "device");
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700754 sysfs_remove_link(&dev->kobj, "subsystem");
Randy Dunlapead454f2010-09-24 14:36:49 -0700755#ifdef CONFIG_BLOCK
Andi Kleene52eec12010-09-08 16:54:17 +0200756 if (sysfs_deprecated && dev->class == &block_class)
Kay Sievers39aba962010-09-04 22:33:14 -0700757 return;
Randy Dunlapead454f2010-09-24 14:36:49 -0700758#endif
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100759 sysfs_delete_link(&dev->class->p->subsys.kobj, &dev->kobj, dev_name(dev));
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700760}
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762/**
Stephen Rothwell413c2392008-05-30 10:16:40 +1000763 * dev_set_name - set a device name
764 * @dev: device
Randy Dunlap46232362008-06-04 21:40:43 -0700765 * @fmt: format string for the device's name
Stephen Rothwell413c2392008-05-30 10:16:40 +1000766 */
767int dev_set_name(struct device *dev, const char *fmt, ...)
768{
769 va_list vargs;
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100770 int err;
Stephen Rothwell413c2392008-05-30 10:16:40 +1000771
772 va_start(vargs, fmt);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100773 err = kobject_set_name_vargs(&dev->kobj, fmt, vargs);
Stephen Rothwell413c2392008-05-30 10:16:40 +1000774 va_end(vargs);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100775 return err;
Stephen Rothwell413c2392008-05-30 10:16:40 +1000776}
777EXPORT_SYMBOL_GPL(dev_set_name);
778
779/**
Dan Williamse105b8b2008-04-21 10:51:07 -0700780 * device_to_dev_kobj - select a /sys/dev/ directory for the device
781 * @dev: device
782 *
783 * By default we select char/ for new entries. Setting class->dev_obj
784 * to NULL prevents an entry from being created. class->dev_kobj must
785 * be set (or cleared) before any devices are registered to the class
786 * otherwise device_create_sys_dev_entry() and
787 * device_remove_sys_dev_entry() will disagree about the the presence
788 * of the link.
789 */
790static struct kobject *device_to_dev_kobj(struct device *dev)
791{
792 struct kobject *kobj;
793
794 if (dev->class)
795 kobj = dev->class->dev_kobj;
796 else
797 kobj = sysfs_dev_char_kobj;
798
799 return kobj;
800}
801
802static int device_create_sys_dev_entry(struct device *dev)
803{
804 struct kobject *kobj = device_to_dev_kobj(dev);
805 int error = 0;
806 char devt_str[15];
807
808 if (kobj) {
809 format_dev_t(devt_str, dev->devt);
810 error = sysfs_create_link(kobj, &dev->kobj, devt_str);
811 }
812
813 return error;
814}
815
816static void device_remove_sys_dev_entry(struct device *dev)
817{
818 struct kobject *kobj = device_to_dev_kobj(dev);
819 char devt_str[15];
820
821 if (kobj) {
822 format_dev_t(devt_str, dev->devt);
823 sysfs_remove_link(kobj, devt_str);
824 }
825}
826
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700827int device_private_init(struct device *dev)
828{
829 dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL);
830 if (!dev->p)
831 return -ENOMEM;
832 dev->p->device = dev;
833 klist_init(&dev->p->klist_children, klist_children_get,
834 klist_children_put);
835 return 0;
836}
837
Dan Williamse105b8b2008-04-21 10:51:07 -0700838/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800839 * device_add - add device to device hierarchy.
840 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800842 * This is part 2 of device_register(), though may be called
843 * separately _iff_ device_initialize() has been called separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 *
Cornelia Huck57394112008-09-03 18:26:40 +0200845 * This adds @dev to the kobject hierarchy via kobject_add(), adds it
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800846 * to the global and sibling lists for the device, then
847 * adds it to the other relevant subsystems of the driver model.
Cornelia Huck57394112008-09-03 18:26:40 +0200848 *
849 * NOTE: _Never_ directly free @dev after calling this function, even
850 * if it returned an error! Always use put_device() to give up your
851 * reference instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 */
853int device_add(struct device *dev)
854{
855 struct device *parent = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200856 struct class_interface *class_intf;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700857 int error = -EINVAL;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +0100858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 dev = get_device(dev);
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700860 if (!dev)
861 goto done;
862
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800863 if (!dev->p) {
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700864 error = device_private_init(dev);
865 if (error)
866 goto done;
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800867 }
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800868
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100869 /*
870 * for statically allocated devices, which should all be converted
871 * some day, we need to initialize the name. We prevent reading back
872 * the name, and force the use of dev_name()
873 */
874 if (dev->init_name) {
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700875 dev_set_name(dev, "%s", dev->init_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100876 dev->init_name = NULL;
877 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700878
Thomas Gleixnere6309e72009-12-10 19:32:49 +0000879 if (!dev_name(dev)) {
880 error = -EINVAL;
Kay Sievers5c8563d2009-05-28 14:24:07 -0700881 goto name_error;
Thomas Gleixnere6309e72009-12-10 19:32:49 +0000882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100884 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -0700885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 parent = get_device(dev->parent);
Cornelia Huck63b69712008-01-21 16:09:44 +0100887 setup_parent(dev, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Yinghai Lu0d358f22008-02-19 03:20:41 -0800889 /* use parent numa_node */
890 if (parent)
891 set_dev_node(dev, dev_to_node(parent));
892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 /* first, register with generic layer. */
Kay Sievers8a577ff2009-04-18 15:05:45 -0700894 /* we require the name to be set before, and pass NULL */
895 error = kobject_add(&dev->kobj, dev->kobj.parent, NULL);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100896 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 goto Error;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200898
Brian Walsh37022642006-08-14 22:43:19 -0700899 /* notify platform of device entry */
900 if (platform_notify)
901 platform_notify(dev);
902
Tejun Heoad6a1e12007-06-14 03:45:17 +0900903 error = device_create_file(dev, &uevent_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200904 if (error)
905 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200906
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700907 if (MAJOR(dev->devt)) {
Tejun Heoad6a1e12007-06-14 03:45:17 +0900908 error = device_create_file(dev, &devt_attr);
909 if (error)
Cornelia Hucka306eea2006-09-22 11:37:13 +0200910 goto ueventattrError;
Dan Williamse105b8b2008-04-21 10:51:07 -0700911
912 error = device_create_sys_dev_entry(dev);
913 if (error)
914 goto devtattrError;
Kay Sievers2b2af542009-04-30 15:23:42 +0200915
916 devtmpfs_create_node(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700917 }
918
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700919 error = device_add_class_symlinks(dev);
920 if (error)
921 goto SymlinkError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700922 error = device_add_attrs(dev);
923 if (error)
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700924 goto AttrsError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700925 error = bus_add_device(dev);
926 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 goto BusError;
Alan Stern3b98aea2008-08-07 13:06:12 -0400928 error = dpm_sysfs_add(dev);
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +0100929 if (error)
Alan Stern3b98aea2008-08-07 13:06:12 -0400930 goto DPMError;
931 device_pm_add(dev);
Alan Sternec0676ee2008-12-05 14:10:31 -0500932
933 /* Notify clients of device addition. This call must come
934 * after dpm_sysf_add() and before kobject_uevent().
935 */
936 if (dev->bus)
937 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
938 BUS_NOTIFY_ADD_DEVICE, dev);
939
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +0200940 kobject_uevent(&dev->kobj, KOBJ_ADD);
Alan Stern2023c612009-07-30 15:27:18 -0400941 bus_probe_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -0800943 klist_add_tail(&dev->p->knode_parent,
944 &parent->p->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700946 if (dev->class) {
Dave Youngf75b1c62008-05-28 09:28:39 -0700947 mutex_lock(&dev->class->p->class_mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200948 /* tie the class to the device */
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200949 klist_add_tail(&dev->knode_class,
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100950 &dev->class->p->klist_devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200951
952 /* notify any interfaces that the device is here */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -0700953 list_for_each_entry(class_intf,
954 &dev->class->p->class_interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200955 if (class_intf->add_dev)
956 class_intf->add_dev(dev, class_intf);
Dave Youngf75b1c62008-05-28 09:28:39 -0700957 mutex_unlock(&dev->class->p->class_mutex);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700958 }
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700959done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 put_device(dev);
961 return error;
Alan Stern3b98aea2008-08-07 13:06:12 -0400962 DPMError:
Rafael J. Wysocki57eee3d2008-03-12 00:59:38 +0100963 bus_remove_device(dev);
964 BusError:
James Simmons82f0cf92007-02-21 17:44:51 +0000965 device_remove_attrs(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700966 AttrsError:
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700967 device_remove_class_symlinks(dev);
968 SymlinkError:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900969 if (MAJOR(dev->devt))
Kay Sieversad729562009-10-28 19:51:37 +0100970 devtmpfs_delete_node(dev);
971 if (MAJOR(dev->devt))
Dan Williamse105b8b2008-04-21 10:51:07 -0700972 device_remove_sys_dev_entry(dev);
973 devtattrError:
974 if (MAJOR(dev->devt))
Tejun Heoad6a1e12007-06-14 03:45:17 +0900975 device_remove_file(dev, &devt_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200976 ueventattrError:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900977 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700978 attrError:
Kay Sievers312c0042005-11-16 09:00:00 +0100979 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 kobject_del(&dev->kobj);
981 Error:
Cornelia Huck63b69712008-01-21 16:09:44 +0100982 cleanup_device_parent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (parent)
984 put_device(parent);
Kay Sievers5c8563d2009-05-28 14:24:07 -0700985name_error:
986 kfree(dev->p);
987 dev->p = NULL;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700988 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800992 * device_register - register a device with the system.
993 * @dev: pointer to the device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800995 * This happens in two clean steps - initialize the device
996 * and add it to the system. The two steps can be called
997 * separately, but this is the easiest and most common.
998 * I.e. you should only call the two helpers separately if
999 * have a clearly defined need to use and refcount the device
1000 * before it is added to the hierarchy.
Cornelia Huck57394112008-09-03 18:26:40 +02001001 *
1002 * NOTE: _Never_ directly free @dev after calling this function, even
1003 * if it returned an error! Always use put_device() to give up the
1004 * reference initialized in this function instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006int device_register(struct device *dev)
1007{
1008 device_initialize(dev);
1009 return device_add(dev);
1010}
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001013 * get_device - increment reference count for device.
1014 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001016 * This simply forwards the call to kobject_get(), though
1017 * we do take care to provide for the case that we get a NULL
1018 * pointer passed in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001020struct device *get_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
1023}
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001026 * put_device - decrement reference count.
1027 * @dev: device in question.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001029void put_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001031 /* might_sleep(); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (dev)
1033 kobject_put(&dev->kobj);
1034}
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001037 * device_del - delete device from system.
1038 * @dev: device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001040 * This is the first part of the device unregistration
1041 * sequence. This removes the device from the lists we control
1042 * from here, has it removed from the other driver model
1043 * subsystems it was added to in device_add(), and removes it
1044 * from the kobject hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001046 * NOTE: this should be called manually _iff_ device_add() was
1047 * also called manually.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001049void device_del(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001051 struct device *parent = dev->parent;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001052 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Alan Sternec0676ee2008-12-05 14:10:31 -05001054 /* Notify clients of device removal. This call must come
1055 * before dpm_sysfs_remove().
1056 */
1057 if (dev->bus)
1058 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
1059 BUS_NOTIFY_DEL_DEVICE, dev);
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001060 device_pm_remove(dev);
Alan Stern3b98aea2008-08-07 13:06:12 -04001061 dpm_sysfs_remove(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001063 klist_del(&dev->p->knode_parent);
Dan Williamse105b8b2008-04-21 10:51:07 -07001064 if (MAJOR(dev->devt)) {
Kay Sievers2b2af542009-04-30 15:23:42 +02001065 devtmpfs_delete_node(dev);
Dan Williamse105b8b2008-04-21 10:51:07 -07001066 device_remove_sys_dev_entry(dev);
Tejun Heoad6a1e12007-06-14 03:45:17 +09001067 device_remove_file(dev, &devt_attr);
Dan Williamse105b8b2008-04-21 10:51:07 -07001068 }
Kay Sieversb9d9c822006-06-15 15:31:56 +02001069 if (dev->class) {
Kay Sieversda231fd2007-11-21 17:29:15 +01001070 device_remove_class_symlinks(dev);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001071
Dave Youngf75b1c62008-05-28 09:28:39 -07001072 mutex_lock(&dev->class->p->class_mutex);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001073 /* notify any interfaces that the device is now gone */
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -07001074 list_for_each_entry(class_intf,
1075 &dev->class->p->class_interfaces, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +02001076 if (class_intf->remove_dev)
1077 class_intf->remove_dev(dev, class_intf);
1078 /* remove the device from the class list */
Tejun Heo5a3ceb82008-08-25 19:50:19 +02001079 klist_del(&dev->knode_class);
Dave Youngf75b1c62008-05-28 09:28:39 -07001080 mutex_unlock(&dev->class->p->class_mutex);
Kay Sieversb9d9c822006-06-15 15:31:56 +02001081 }
Tejun Heoad6a1e12007-06-14 03:45:17 +09001082 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001083 device_remove_attrs(dev);
Benjamin Herrenschmidt28953532006-11-08 19:46:14 -08001084 bus_remove_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Tejun Heo2f8d16a2007-03-09 19:34:19 +09001086 /*
1087 * Some platform devices are driven without driver attached
1088 * and managed resources may have been acquired. Make sure
1089 * all resources are released.
1090 */
1091 devres_release_all(dev);
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 /* Notify the platform of the removal, in case they
1094 * need to do anything...
1095 */
1096 if (platform_notify_remove)
1097 platform_notify_remove(dev);
Kay Sievers312c0042005-11-16 09:00:00 +01001098 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Kay Sieversda231fd2007-11-21 17:29:15 +01001099 cleanup_device_parent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 kobject_del(&dev->kobj);
Kay Sieversda231fd2007-11-21 17:29:15 +01001101 put_device(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102}
1103
1104/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001105 * device_unregister - unregister device from system.
1106 * @dev: device going away.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001108 * We do this in two parts, like we do device_register(). First,
1109 * we remove it from all the subsystems with device_del(), then
1110 * we decrement the reference count via put_device(). If that
1111 * is the final reference count, the device will be cleaned up
1112 * via device_release() above. Otherwise, the structure will
1113 * stick around until the final reference to the device is dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001115void device_unregister(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001117 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 device_del(dev);
1119 put_device(dev);
1120}
1121
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001122static struct device *next_device(struct klist_iter *i)
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001123{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001124 struct klist_node *n = klist_next(i);
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001125 struct device *dev = NULL;
1126 struct device_private *p;
1127
1128 if (n) {
1129 p = to_device_private_parent(n);
1130 dev = p->device;
1131 }
1132 return dev;
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001133}
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135/**
Kay Sieverse454cea2009-09-18 23:01:12 +02001136 * device_get_devnode - path of device node file
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001137 * @dev: device
Kay Sieverse454cea2009-09-18 23:01:12 +02001138 * @mode: returned file access mode
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001139 * @tmp: possibly allocated string
1140 *
1141 * Return the relative path of a possible device node.
1142 * Non-default names may need to allocate a memory to compose
1143 * a name. This memory is returned in tmp and needs to be
1144 * freed by the caller.
1145 */
Kay Sieverse454cea2009-09-18 23:01:12 +02001146const char *device_get_devnode(struct device *dev,
1147 mode_t *mode, const char **tmp)
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001148{
1149 char *s;
1150
1151 *tmp = NULL;
1152
1153 /* the device type may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02001154 if (dev->type && dev->type->devnode)
1155 *tmp = dev->type->devnode(dev, mode);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001156 if (*tmp)
1157 return *tmp;
1158
1159 /* the class may provide a specific name */
Kay Sieverse454cea2009-09-18 23:01:12 +02001160 if (dev->class && dev->class->devnode)
1161 *tmp = dev->class->devnode(dev, mode);
Kay Sievers6fcf53a2009-04-30 15:23:42 +02001162 if (*tmp)
1163 return *tmp;
1164
1165 /* return name without allocation, tmp == NULL */
1166 if (strchr(dev_name(dev), '!') == NULL)
1167 return dev_name(dev);
1168
1169 /* replace '!' in the name with '/' */
1170 *tmp = kstrdup(dev_name(dev), GFP_KERNEL);
1171 if (!*tmp)
1172 return NULL;
1173 while ((s = strchr(*tmp, '!')))
1174 s[0] = '/';
1175 return *tmp;
1176}
1177
1178/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001179 * device_for_each_child - device child iterator.
1180 * @parent: parent struct device.
1181 * @data: data for the callback.
1182 * @fn: function to be called for each device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001184 * Iterate over @parent's child devices, and call @fn for each,
1185 * passing it @data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001187 * We check the return of @fn each time. If it returns anything
1188 * other than 0, we break out and return that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001190int device_for_each_child(struct device *parent, void *data,
1191 int (*fn)(struct device *dev, void *data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001193 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001194 struct device *child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 int error = 0;
1196
Greg Kroah-Hartman014c90d2009-04-15 16:00:12 -07001197 if (!parent->p)
1198 return 0;
1199
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001200 klist_iter_init(&parent->p->klist_children, &i);
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001201 while ((child = next_device(&i)) && !error)
1202 error = fn(child, data);
1203 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return error;
1205}
1206
Cornelia Huck5ab69982006-11-16 15:42:07 +01001207/**
1208 * device_find_child - device iterator for locating a particular device.
1209 * @parent: parent struct device
1210 * @data: Data to pass to match function
1211 * @match: Callback function to check device
1212 *
1213 * This is similar to the device_for_each_child() function above, but it
1214 * returns a reference to a device that is 'found' for later use, as
1215 * determined by the @match callback.
1216 *
1217 * The callback should return 0 if the device doesn't match and non-zero
1218 * if it does. If the callback returns non-zero and a reference to the
1219 * current device can be obtained, this function will return to the caller
1220 * and not iterate over any more devices.
1221 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001222struct device *device_find_child(struct device *parent, void *data,
1223 int (*match)(struct device *dev, void *data))
Cornelia Huck5ab69982006-11-16 15:42:07 +01001224{
1225 struct klist_iter i;
1226 struct device *child;
1227
1228 if (!parent)
1229 return NULL;
1230
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001231 klist_iter_init(&parent->p->klist_children, &i);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001232 while ((child = next_device(&i)))
1233 if (match(child, data) && get_device(child))
1234 break;
1235 klist_iter_exit(&i);
1236 return child;
1237}
1238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239int __init devices_init(void)
1240{
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -06001241 devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
1242 if (!devices_kset)
1243 return -ENOMEM;
Dan Williamse105b8b2008-04-21 10:51:07 -07001244 dev_kobj = kobject_create_and_add("dev", NULL);
1245 if (!dev_kobj)
1246 goto dev_kobj_err;
1247 sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj);
1248 if (!sysfs_dev_block_kobj)
1249 goto block_kobj_err;
1250 sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj);
1251 if (!sysfs_dev_char_kobj)
1252 goto char_kobj_err;
1253
Greg Kroah-Hartman881c6cf2007-11-01 09:29:06 -06001254 return 0;
Dan Williamse105b8b2008-04-21 10:51:07 -07001255
1256 char_kobj_err:
1257 kobject_put(sysfs_dev_block_kobj);
1258 block_kobj_err:
1259 kobject_put(dev_kobj);
1260 dev_kobj_err:
1261 kset_unregister(devices_kset);
1262 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263}
1264
1265EXPORT_SYMBOL_GPL(device_for_each_child);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001266EXPORT_SYMBOL_GPL(device_find_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268EXPORT_SYMBOL_GPL(device_initialize);
1269EXPORT_SYMBOL_GPL(device_add);
1270EXPORT_SYMBOL_GPL(device_register);
1271
1272EXPORT_SYMBOL_GPL(device_del);
1273EXPORT_SYMBOL_GPL(device_unregister);
1274EXPORT_SYMBOL_GPL(get_device);
1275EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277EXPORT_SYMBOL_GPL(device_create_file);
1278EXPORT_SYMBOL_GPL(device_remove_file);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001279
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001280struct root_device
1281{
1282 struct device dev;
1283 struct module *owner;
1284};
1285
1286#define to_root_device(dev) container_of(dev, struct root_device, dev)
1287
1288static void root_device_release(struct device *dev)
1289{
1290 kfree(to_root_device(dev));
1291}
1292
1293/**
1294 * __root_device_register - allocate and register a root device
1295 * @name: root device name
1296 * @owner: owner module of the root device, usually THIS_MODULE
1297 *
1298 * This function allocates a root device and registers it
1299 * using device_register(). In order to free the returned
1300 * device, use root_device_unregister().
1301 *
1302 * Root devices are dummy devices which allow other devices
1303 * to be grouped under /sys/devices. Use this function to
1304 * allocate a root device and then use it as the parent of
1305 * any device which should appear under /sys/devices/{name}
1306 *
1307 * The /sys/devices/{name} directory will also contain a
1308 * 'module' symlink which points to the @owner directory
1309 * in sysfs.
1310 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02001311 * Returns &struct device pointer on success, or ERR_PTR() on error.
1312 *
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001313 * Note: You probably want to use root_device_register().
1314 */
1315struct device *__root_device_register(const char *name, struct module *owner)
1316{
1317 struct root_device *root;
1318 int err = -ENOMEM;
1319
1320 root = kzalloc(sizeof(struct root_device), GFP_KERNEL);
1321 if (!root)
1322 return ERR_PTR(err);
1323
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -07001324 err = dev_set_name(&root->dev, "%s", name);
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001325 if (err) {
1326 kfree(root);
1327 return ERR_PTR(err);
1328 }
1329
1330 root->dev.release = root_device_release;
1331
1332 err = device_register(&root->dev);
1333 if (err) {
1334 put_device(&root->dev);
1335 return ERR_PTR(err);
1336 }
1337
Christoph Egger1d9e8822010-05-17 16:57:58 +02001338#ifdef CONFIG_MODULES /* gotta find a "cleaner" way to do this */
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001339 if (owner) {
1340 struct module_kobject *mk = &owner->mkobj;
1341
1342 err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module");
1343 if (err) {
1344 device_unregister(&root->dev);
1345 return ERR_PTR(err);
1346 }
1347 root->owner = owner;
1348 }
1349#endif
1350
1351 return &root->dev;
1352}
1353EXPORT_SYMBOL_GPL(__root_device_register);
1354
1355/**
1356 * root_device_unregister - unregister and free a root device
Randy Dunlap7cbcf222009-01-20 16:29:13 -08001357 * @dev: device going away
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +00001358 *
1359 * This function unregisters and cleans up a device that was created by
1360 * root_device_register().
1361 */
1362void root_device_unregister(struct device *dev)
1363{
1364 struct root_device *root = to_root_device(dev);
1365
1366 if (root->owner)
1367 sysfs_remove_link(&root->dev.kobj, "module");
1368
1369 device_unregister(dev);
1370}
1371EXPORT_SYMBOL_GPL(root_device_unregister);
1372
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001373
1374static void device_create_release(struct device *dev)
1375{
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001376 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001377 kfree(dev);
1378}
1379
1380/**
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001381 * device_create_vargs - creates a device and registers it with sysfs
1382 * @class: pointer to the struct class that this device should be registered to
1383 * @parent: pointer to the parent struct device of this new device, if any
1384 * @devt: the dev_t for the char device to be added
1385 * @drvdata: the data to be added to the device for callbacks
1386 * @fmt: string for the device's name
1387 * @args: va_list for the device's name
1388 *
1389 * This function can be used by char device classes. A struct device
1390 * will be created in sysfs, registered to the specified class.
1391 *
1392 * A "dev" file will be created, showing the dev_t for the device, if
1393 * the dev_t is not 0,0.
1394 * If a pointer to a parent struct device is passed in, the newly created
1395 * struct device will be a child of that device in sysfs.
1396 * The pointer to the struct device will be returned from the call.
1397 * Any further sysfs files that might be required can be created using this
1398 * pointer.
1399 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02001400 * Returns &struct device pointer on success, or ERR_PTR() on error.
1401 *
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001402 * Note: the struct class passed to this function must have previously
1403 * been created with a call to class_create().
1404 */
1405struct device *device_create_vargs(struct class *class, struct device *parent,
1406 dev_t devt, void *drvdata, const char *fmt,
1407 va_list args)
1408{
1409 struct device *dev = NULL;
1410 int retval = -ENODEV;
1411
1412 if (class == NULL || IS_ERR(class))
1413 goto error;
1414
1415 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1416 if (!dev) {
1417 retval = -ENOMEM;
1418 goto error;
1419 }
1420
1421 dev->devt = devt;
1422 dev->class = class;
1423 dev->parent = parent;
1424 dev->release = device_create_release;
1425 dev_set_drvdata(dev, drvdata);
1426
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001427 retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
1428 if (retval)
1429 goto error;
1430
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001431 retval = device_register(dev);
1432 if (retval)
1433 goto error;
1434
1435 return dev;
1436
1437error:
Cornelia Huck286661b2008-09-03 18:26:41 +02001438 put_device(dev);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001439 return ERR_PTR(retval);
1440}
1441EXPORT_SYMBOL_GPL(device_create_vargs);
1442
1443/**
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001444 * device_create - creates a device and registers it with sysfs
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001445 * @class: pointer to the struct class that this device should be registered to
1446 * @parent: pointer to the parent struct device of this new device, if any
1447 * @devt: the dev_t for the char device to be added
1448 * @drvdata: the data to be added to the device for callbacks
1449 * @fmt: string for the device's name
1450 *
1451 * This function can be used by char device classes. A struct device
1452 * will be created in sysfs, registered to the specified class.
1453 *
1454 * A "dev" file will be created, showing the dev_t for the device, if
1455 * the dev_t is not 0,0.
1456 * If a pointer to a parent struct device is passed in, the newly created
1457 * struct device will be a child of that device in sysfs.
1458 * The pointer to the struct device will be returned from the call.
1459 * Any further sysfs files that might be required can be created using this
1460 * pointer.
1461 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +02001462 * Returns &struct device pointer on success, or ERR_PTR() on error.
1463 *
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001464 * Note: the struct class passed to this function must have previously
1465 * been created with a call to class_create().
1466 */
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001467struct device *device_create(struct class *class, struct device *parent,
1468 dev_t devt, void *drvdata, const char *fmt, ...)
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001469{
1470 va_list vargs;
1471 struct device *dev;
1472
1473 va_start(vargs, fmt);
1474 dev = device_create_vargs(class, parent, devt, drvdata, fmt, vargs);
1475 va_end(vargs);
1476 return dev;
1477}
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -07001478EXPORT_SYMBOL_GPL(device_create);
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -07001479
Dave Youngcd354492008-01-28 16:56:11 +08001480static int __match_devt(struct device *dev, void *data)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001481{
Dave Youngcd354492008-01-28 16:56:11 +08001482 dev_t *devt = data;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001483
Dave Youngcd354492008-01-28 16:56:11 +08001484 return dev->devt == *devt;
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001485}
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001486
Rafael J. Wysocki775b64d2008-01-12 20:40:46 +01001487/**
1488 * device_destroy - removes a device that was created with device_create()
1489 * @class: pointer to the struct class that this device was registered with
1490 * @devt: the dev_t of the device that was previously registered
1491 *
1492 * This call unregisters and cleans up a device that was created with a
1493 * call to device_create().
1494 */
1495void device_destroy(struct class *class, dev_t devt)
1496{
1497 struct device *dev;
1498
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -04001499 dev = class_find_device(class, NULL, &devt, __match_devt);
Dave Youngcd354492008-01-28 16:56:11 +08001500 if (dev) {
1501 put_device(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001502 device_unregister(dev);
Dave Youngcd354492008-01-28 16:56:11 +08001503 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001504}
1505EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001506
1507/**
1508 * device_rename - renames a device
1509 * @dev: the pointer to the struct device to be renamed
1510 * @new_name: the new name of the device
Eric W. Biederman030c1d22008-05-08 14:41:00 -07001511 *
1512 * It is the responsibility of the caller to provide mutual
1513 * exclusion between two different calls of device_rename
1514 * on the same device to ensure that new_name is valid and
1515 * won't conflict with other devices.
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001516 */
Johannes Berg6937e8f2010-08-05 17:38:18 +02001517int device_rename(struct device *dev, const char *new_name)
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001518{
1519 char *old_class_name = NULL;
1520 char *new_class_name = NULL;
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001521 char *old_device_name = NULL;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001522 int error;
1523
1524 dev = get_device(dev);
1525 if (!dev)
1526 return -EINVAL;
1527
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001528 pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev),
Harvey Harrison2b3a3022008-03-04 16:41:05 -08001529 __func__, new_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001530
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001531 old_device_name = kstrdup(dev_name(dev), GFP_KERNEL);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001532 if (!old_device_name) {
1533 error = -ENOMEM;
1534 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001535 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001536
Eric W. Biedermanf349cf32010-03-30 11:31:29 -07001537 if (dev->class) {
Kay Sievers6b6e39a2010-11-15 23:13:18 +01001538 error = sysfs_rename_link(&dev->class->p->subsys.kobj,
Eric W. Biedermanf349cf32010-03-30 11:31:29 -07001539 &dev->kobj, old_device_name, new_name);
1540 if (error)
1541 goto out;
1542 }
Kay Sievers39aba962010-09-04 22:33:14 -07001543
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001544 error = kobject_rename(&dev->kobj, new_name);
Kay Sievers1fa5ae82009-01-25 15:17:37 +01001545 if (error)
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001546 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001547
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001548out:
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001549 put_device(dev);
1550
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001551 kfree(new_class_name);
Jesper Juhl952ab432006-09-28 23:56:01 +02001552 kfree(old_class_name);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001553 kfree(old_device_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001554
1555 return error;
1556}
Johannes Berga2807db2007-02-28 12:38:31 +01001557EXPORT_SYMBOL_GPL(device_rename);
Cornelia Huck8a824722006-11-20 17:07:51 +01001558
1559static int device_move_class_links(struct device *dev,
1560 struct device *old_parent,
1561 struct device *new_parent)
1562{
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001563 int error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001564
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001565 if (old_parent)
1566 sysfs_remove_link(&dev->kobj, "device");
1567 if (new_parent)
1568 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1569 "device");
1570 return error;
Cornelia Huck8a824722006-11-20 17:07:51 +01001571}
1572
1573/**
1574 * device_move - moves a device to a new parent
1575 * @dev: the pointer to the struct device to be moved
Cornelia Huckc744aea2007-01-08 20:16:44 +01001576 * @new_parent: the new parent of the device (can by NULL)
Cornelia Huckffa6a702009-03-04 12:44:00 +01001577 * @dpm_order: how to reorder the dpm_list
Cornelia Huck8a824722006-11-20 17:07:51 +01001578 */
Cornelia Huckffa6a702009-03-04 12:44:00 +01001579int device_move(struct device *dev, struct device *new_parent,
1580 enum dpm_order dpm_order)
Cornelia Huck8a824722006-11-20 17:07:51 +01001581{
1582 int error;
1583 struct device *old_parent;
Cornelia Huckc744aea2007-01-08 20:16:44 +01001584 struct kobject *new_parent_kobj;
Cornelia Huck8a824722006-11-20 17:07:51 +01001585
1586 dev = get_device(dev);
1587 if (!dev)
1588 return -EINVAL;
1589
Cornelia Huckffa6a702009-03-04 12:44:00 +01001590 device_pm_lock();
Cornelia Huck8a824722006-11-20 17:07:51 +01001591 new_parent = get_device(new_parent);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001592 new_parent_kobj = get_device_parent(dev, new_parent);
Cornelia Huck63b69712008-01-21 16:09:44 +01001593
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001594 pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev),
1595 __func__, new_parent ? dev_name(new_parent) : "<NULL>");
Cornelia Huckc744aea2007-01-08 20:16:44 +01001596 error = kobject_move(&dev->kobj, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001597 if (error) {
Cornelia Huck63b69712008-01-21 16:09:44 +01001598 cleanup_glue_dir(dev, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001599 put_device(new_parent);
1600 goto out;
1601 }
1602 old_parent = dev->parent;
1603 dev->parent = new_parent;
1604 if (old_parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001605 klist_remove(&dev->p->knode_parent);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001606 if (new_parent) {
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001607 klist_add_tail(&dev->p->knode_parent,
1608 &new_parent->p->klist_children);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001609 set_dev_node(dev, dev_to_node(new_parent));
1610 }
1611
Cornelia Huck8a824722006-11-20 17:07:51 +01001612 if (!dev->class)
1613 goto out_put;
1614 error = device_move_class_links(dev, old_parent, new_parent);
1615 if (error) {
1616 /* We ignore errors on cleanup since we're hosed anyway... */
1617 device_move_class_links(dev, new_parent, old_parent);
1618 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
Cornelia Huckc744aea2007-01-08 20:16:44 +01001619 if (new_parent)
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001620 klist_remove(&dev->p->knode_parent);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001621 dev->parent = old_parent;
1622 if (old_parent) {
Greg Kroah-Hartmanf791b8c2008-12-16 12:24:56 -08001623 klist_add_tail(&dev->p->knode_parent,
1624 &old_parent->p->klist_children);
Yinghai Lu0d358f22008-02-19 03:20:41 -08001625 set_dev_node(dev, dev_to_node(old_parent));
1626 }
Cornelia Huck8a824722006-11-20 17:07:51 +01001627 }
Cornelia Huck63b69712008-01-21 16:09:44 +01001628 cleanup_glue_dir(dev, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001629 put_device(new_parent);
1630 goto out;
1631 }
Cornelia Huckffa6a702009-03-04 12:44:00 +01001632 switch (dpm_order) {
1633 case DPM_ORDER_NONE:
1634 break;
1635 case DPM_ORDER_DEV_AFTER_PARENT:
1636 device_pm_move_after(dev, new_parent);
1637 break;
1638 case DPM_ORDER_PARENT_BEFORE_DEV:
1639 device_pm_move_before(new_parent, dev);
1640 break;
1641 case DPM_ORDER_DEV_LAST:
1642 device_pm_move_last(dev);
1643 break;
1644 }
Cornelia Huck8a824722006-11-20 17:07:51 +01001645out_put:
1646 put_device(old_parent);
1647out:
Cornelia Huckffa6a702009-03-04 12:44:00 +01001648 device_pm_unlock();
Cornelia Huck8a824722006-11-20 17:07:51 +01001649 put_device(dev);
1650 return error;
1651}
Cornelia Huck8a824722006-11-20 17:07:51 +01001652EXPORT_SYMBOL_GPL(device_move);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001653
1654/**
1655 * device_shutdown - call ->shutdown() on each device to shutdown.
1656 */
1657void device_shutdown(void)
1658{
Hugh Daschbach62458382010-03-22 10:36:37 -07001659 struct device *dev;
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001660
Hugh Daschbach62458382010-03-22 10:36:37 -07001661 spin_lock(&devices_kset->list_lock);
1662 /*
1663 * Walk the devices list backward, shutting down each in turn.
1664 * Beware that device unplug events may also start pulling
1665 * devices offline, even as the system is shutting down.
1666 */
1667 while (!list_empty(&devices_kset->list)) {
1668 dev = list_entry(devices_kset->list.prev, struct device,
1669 kobj.entry);
1670 get_device(dev);
1671 /*
1672 * Make sure the device is off the kset list, in the
1673 * event that dev->*->shutdown() doesn't remove it.
1674 */
1675 list_del_init(&dev->kobj.entry);
1676 spin_unlock(&devices_kset->list_lock);
1677
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001678 if (dev->bus && dev->bus->shutdown) {
1679 dev_dbg(dev, "shutdown\n");
1680 dev->bus->shutdown(dev);
1681 } else if (dev->driver && dev->driver->shutdown) {
1682 dev_dbg(dev, "shutdown\n");
1683 dev->driver->shutdown(dev);
1684 }
Hugh Daschbach62458382010-03-22 10:36:37 -07001685 put_device(dev);
1686
1687 spin_lock(&devices_kset->list_lock);
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001688 }
Hugh Daschbach62458382010-03-22 10:36:37 -07001689 spin_unlock(&devices_kset->list_lock);
Shaohua Li401097e2009-05-12 13:37:57 -07001690 async_synchronize_full();
Greg Kroah-Hartman37b0c022007-11-26 22:11:55 -08001691}
Joe Perches99bcf212010-06-27 01:02:34 +00001692
1693/*
1694 * Device logging functions
1695 */
1696
1697#ifdef CONFIG_PRINTK
1698
1699static int __dev_printk(const char *level, const struct device *dev,
1700 struct va_format *vaf)
1701{
1702 if (!dev)
1703 return printk("%s(NULL device *): %pV", level, vaf);
1704
1705 return printk("%s%s %s: %pV",
1706 level, dev_driver_string(dev), dev_name(dev), vaf);
1707}
1708
1709int dev_printk(const char *level, const struct device *dev,
1710 const char *fmt, ...)
1711{
1712 struct va_format vaf;
1713 va_list args;
1714 int r;
1715
1716 va_start(args, fmt);
1717
1718 vaf.fmt = fmt;
1719 vaf.va = &args;
1720
1721 r = __dev_printk(level, dev, &vaf);
1722 va_end(args);
1723
1724 return r;
1725}
1726EXPORT_SYMBOL(dev_printk);
1727
1728#define define_dev_printk_level(func, kern_level) \
1729int func(const struct device *dev, const char *fmt, ...) \
1730{ \
1731 struct va_format vaf; \
1732 va_list args; \
1733 int r; \
1734 \
1735 va_start(args, fmt); \
1736 \
1737 vaf.fmt = fmt; \
1738 vaf.va = &args; \
1739 \
1740 r = __dev_printk(kern_level, dev, &vaf); \
1741 va_end(args); \
1742 \
1743 return r; \
1744} \
1745EXPORT_SYMBOL(func);
1746
1747define_dev_printk_level(dev_emerg, KERN_EMERG);
1748define_dev_printk_level(dev_alert, KERN_ALERT);
1749define_dev_printk_level(dev_crit, KERN_CRIT);
1750define_dev_printk_level(dev_err, KERN_ERR);
1751define_dev_printk_level(dev_warn, KERN_WARNING);
1752define_dev_printk_level(dev_notice, KERN_NOTICE);
1753define_dev_printk_level(_dev_info, KERN_INFO);
1754
1755#endif