blob: 67c92582d6ef5da185eecd5645d145a984e56310 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/semaphore.h>
23
24#include "base.h"
25#include "power/power.h"
26
27int (*platform_notify)(struct device * dev) = NULL;
28int (*platform_notify_remove)(struct device * dev) = NULL;
29
30/*
31 * sysfs bindings for devices.
32 */
33
Alan Stern3e956372006-06-16 17:10:48 -040034/**
35 * dev_driver_string - Return a device's driver name, if at all possible
36 * @dev: struct device to get the name of
37 *
38 * Will return the device's driver's name if it is bound to a device. If
39 * the device is not bound to a device, it will return the name of the bus
40 * it is attached to. If it is not attached to a bus either, an empty
41 * string will be returned.
42 */
43const char *dev_driver_string(struct device *dev)
44{
45 return dev->driver ? dev->driver->name :
Jean Delvarea456b702007-03-09 16:33:10 +010046 (dev->bus ? dev->bus->name :
47 (dev->class ? dev->class->name : ""));
Alan Stern3e956372006-06-16 17:10:48 -040048}
Matthew Wilcox310a9222006-09-23 23:35:04 -060049EXPORT_SYMBOL(dev_driver_string);
Alan Stern3e956372006-06-16 17:10:48 -040050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define to_dev(obj) container_of(obj, struct device, kobj)
52#define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static ssize_t
55dev_attr_show(struct kobject * kobj, struct attribute * attr, char * buf)
56{
57 struct device_attribute * dev_attr = to_dev_attr(attr);
58 struct device * dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050059 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 if (dev_attr->show)
Yani Ioannou54b6f352005-05-17 06:39:34 -040062 ret = dev_attr->show(dev, dev_attr, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 return ret;
64}
65
66static ssize_t
67dev_attr_store(struct kobject * kobj, struct attribute * attr,
68 const char * buf, size_t count)
69{
70 struct device_attribute * dev_attr = to_dev_attr(attr);
71 struct device * dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050072 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 if (dev_attr->store)
Yani Ioannou54b6f352005-05-17 06:39:34 -040075 ret = dev_attr->store(dev, dev_attr, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return ret;
77}
78
79static struct sysfs_ops dev_sysfs_ops = {
80 .show = dev_attr_show,
81 .store = dev_attr_store,
82};
83
84
85/**
86 * device_release - free device structure.
87 * @kobj: device's kobject.
88 *
89 * This is called once the reference count for the object
90 * reaches 0. We forward the call to the device's release
91 * method, which should handle actually freeing the structure.
92 */
93static void device_release(struct kobject * kobj)
94{
95 struct device * dev = to_dev(kobj);
96
97 if (dev->release)
98 dev->release(dev);
Kay Sieversf9f852d2006-10-07 21:54:55 +020099 else if (dev->type && dev->type->release)
100 dev->type->release(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700101 else if (dev->class && dev->class->dev_release)
102 dev->class->dev_release(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 else {
104 printk(KERN_ERR "Device '%s' does not have a release() function, "
105 "it is broken and must be fixed.\n",
106 dev->bus_id);
107 WARN_ON(1);
108 }
109}
110
111static struct kobj_type ktype_device = {
112 .release = device_release,
113 .sysfs_ops = &dev_sysfs_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
116
Kay Sievers312c0042005-11-16 09:00:00 +0100117static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 struct kobj_type *ktype = get_ktype(kobj);
120
121 if (ktype == &ktype_device) {
122 struct device *dev = to_dev(kobj);
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +0200123 if (dev->uevent_suppress)
124 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (dev->bus)
126 return 1;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700127 if (dev->class)
128 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130 return 0;
131}
132
Kay Sievers312c0042005-11-16 09:00:00 +0100133static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 struct device *dev = to_dev(kobj);
136
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700137 if (dev->bus)
138 return dev->bus->name;
139 if (dev->class)
140 return dev->class->name;
141 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Kay Sievers312c0042005-11-16 09:00:00 +0100144static int dev_uevent(struct kset *kset, struct kobject *kobj, char **envp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 int num_envp, char *buffer, int buffer_size)
146{
147 struct device *dev = to_dev(kobj);
148 int i = 0;
149 int length = 0;
150 int retval = 0;
151
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700152 /* add the major/minor if present */
153 if (MAJOR(dev->devt)) {
154 add_uevent_var(envp, num_envp, &i,
155 buffer, buffer_size, &length,
156 "MAJOR=%u", MAJOR(dev->devt));
157 add_uevent_var(envp, num_envp, &i,
158 buffer, buffer_size, &length,
159 "MINOR=%u", MINOR(dev->devt));
160 }
161
Kay Sievers414264f2007-03-12 21:08:57 +0100162 if (dev->type && dev->type->name)
163 add_uevent_var(envp, num_envp, &i,
164 buffer, buffer_size, &length,
165 "DEVTYPE=%s", dev->type->name);
166
Kay Sievers239378f2006-10-07 21:54:55 +0200167 if (dev->driver)
Kay Sieversd81d9d62006-08-13 06:17:09 +0200168 add_uevent_var(envp, num_envp, &i,
169 buffer, buffer_size, &length,
170 "DRIVER=%s", dev->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200171
Kay Sieversa87cb2a2006-09-14 11:23:28 +0200172#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sievers239378f2006-10-07 21:54:55 +0200173 if (dev->class) {
174 struct device *parent = dev->parent;
175
176 /* find first bus device in parent chain */
177 while (parent && !parent->bus)
178 parent = parent->parent;
179 if (parent && parent->bus) {
180 const char *path;
181
182 path = kobject_get_path(&parent->kobj, GFP_KERNEL);
Kay Sievers2c7afd12007-05-01 13:46:26 +0200183 if (path) {
184 add_uevent_var(envp, num_envp, &i,
185 buffer, buffer_size, &length,
186 "PHYSDEVPATH=%s", path);
187 kfree(path);
188 }
Kay Sievers239378f2006-10-07 21:54:55 +0200189
190 add_uevent_var(envp, num_envp, &i,
191 buffer, buffer_size, &length,
192 "PHYSDEVBUS=%s", parent->bus->name);
193
194 if (parent->driver)
195 add_uevent_var(envp, num_envp, &i,
196 buffer, buffer_size, &length,
197 "PHYSDEVDRIVER=%s", parent->driver->name);
198 }
199 } else if (dev->bus) {
Kay Sievers312c0042005-11-16 09:00:00 +0100200 add_uevent_var(envp, num_envp, &i,
201 buffer, buffer_size, &length,
Kay Sievers239378f2006-10-07 21:54:55 +0200202 "PHYSDEVBUS=%s", dev->bus->name);
203
204 if (dev->driver)
205 add_uevent_var(envp, num_envp, &i,
206 buffer, buffer_size, &length,
207 "PHYSDEVDRIVER=%s", dev->driver->name);
Kay Sieversd81d9d62006-08-13 06:17:09 +0200208 }
Kay Sievers239378f2006-10-07 21:54:55 +0200209#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 /* terminate, set to next free slot, shrink available space */
212 envp[i] = NULL;
213 envp = &envp[i];
214 num_envp -= i;
215 buffer = &buffer[length];
216 buffer_size -= length;
217
Kay Sievers312c0042005-11-16 09:00:00 +0100218 if (dev->bus && dev->bus->uevent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 /* have the bus specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100220 retval = dev->bus->uevent(dev, envp, num_envp, buffer, buffer_size);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200221 if (retval)
222 pr_debug ("%s: bus uevent() returned %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 __FUNCTION__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700226 if (dev->class && dev->class->dev_uevent) {
227 /* have the class specific function add its stuff */
228 retval = dev->class->dev_uevent(dev, envp, num_envp, buffer, buffer_size);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200229 if (retval)
230 pr_debug("%s: class uevent() returned %d\n",
231 __FUNCTION__, retval);
232 }
233
234 if (dev->type && dev->type->uevent) {
235 /* have the device type specific fuction add its stuff */
236 retval = dev->type->uevent(dev, envp, num_envp, buffer, buffer_size);
237 if (retval)
238 pr_debug("%s: dev_type uevent() returned %d\n",
239 __FUNCTION__, retval);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700240 }
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return retval;
243}
244
Kay Sievers312c0042005-11-16 09:00:00 +0100245static struct kset_uevent_ops device_uevent_ops = {
246 .filter = dev_uevent_filter,
247 .name = dev_uevent_name,
248 .uevent = dev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249};
250
Kay Sievers16574dc2007-04-06 01:40:38 +0200251static ssize_t show_uevent(struct device *dev, struct device_attribute *attr,
252 char *buf)
253{
254 struct kobject *top_kobj;
255 struct kset *kset;
256 char *envp[32];
Greg Kroah-Hartmanc7308c82007-05-02 14:14:11 +0200257 char *data = NULL;
Kay Sievers16574dc2007-04-06 01:40:38 +0200258 char *pos;
259 int i;
260 size_t count = 0;
261 int retval;
262
263 /* search the kset, the device belongs to */
264 top_kobj = &dev->kobj;
265 if (!top_kobj->kset && top_kobj->parent) {
266 do {
267 top_kobj = top_kobj->parent;
268 } while (!top_kobj->kset && top_kobj->parent);
269 }
270 if (!top_kobj->kset)
271 goto out;
272 kset = top_kobj->kset;
273 if (!kset->uevent_ops || !kset->uevent_ops->uevent)
274 goto out;
275
276 /* respect filter */
277 if (kset->uevent_ops && kset->uevent_ops->filter)
278 if (!kset->uevent_ops->filter(kset, &dev->kobj))
279 goto out;
280
Greg Kroah-Hartmanc7308c82007-05-02 14:14:11 +0200281 data = (char *)get_zeroed_page(GFP_KERNEL);
282 if (!data)
283 return -ENOMEM;
284
Kay Sievers16574dc2007-04-06 01:40:38 +0200285 /* let the kset specific function add its keys */
286 pos = data;
Linus Torvalds53098092007-09-26 09:16:21 -0700287 memset(envp, 0, sizeof(envp));
Kay Sievers16574dc2007-04-06 01:40:38 +0200288 retval = kset->uevent_ops->uevent(kset, &dev->kobj,
289 envp, ARRAY_SIZE(envp),
290 pos, PAGE_SIZE);
291 if (retval)
292 goto out;
293
294 /* copy keys to file */
295 for (i = 0; envp[i]; i++) {
296 pos = &buf[count];
297 count += sprintf(pos, "%s\n", envp[i]);
298 }
299out:
Greg Kroah-Hartmanc7308c82007-05-02 14:14:11 +0200300 free_page((unsigned long)data);
Kay Sievers16574dc2007-04-06 01:40:38 +0200301 return count;
302}
303
Kay Sieversa7fd6702005-10-01 14:49:43 +0200304static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
305 const char *buf, size_t count)
306{
Kay Sievers60a96a52007-07-08 22:29:26 +0200307 size_t len = count;
308 enum kobject_action action;
309
310 if (len && buf[len-1] == '\n')
311 len--;
312
313 for (action = 0; action < KOBJ_MAX; action++) {
314 if (strncmp(kobject_actions[action], buf, len) != 0)
315 continue;
316 if (kobject_actions[action][len] != '\0')
317 continue;
318 kobject_uevent(&dev->kobj, action);
319 goto out;
320 }
321
322 dev_err(dev, "uevent: unsupported action-string; this will "
323 "be ignored in a future kernel version\n");
Kay Sievers312c0042005-11-16 09:00:00 +0100324 kobject_uevent(&dev->kobj, KOBJ_ADD);
Kay Sievers60a96a52007-07-08 22:29:26 +0200325out:
Kay Sieversa7fd6702005-10-01 14:49:43 +0200326 return count;
327}
328
Tejun Heoad6a1e12007-06-14 03:45:17 +0900329static struct device_attribute uevent_attr =
330 __ATTR(uevent, S_IRUGO | S_IWUSR, show_uevent, store_uevent);
331
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500332static int device_add_attributes(struct device *dev,
333 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700334{
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700335 int error = 0;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500336 int i;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700337
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500338 if (attrs) {
339 for (i = 0; attr_name(attrs[i]); i++) {
340 error = device_create_file(dev, &attrs[i]);
341 if (error)
342 break;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700343 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500344 if (error)
345 while (--i >= 0)
346 device_remove_file(dev, &attrs[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700347 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700348 return error;
349}
350
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500351static void device_remove_attributes(struct device *dev,
352 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700353{
354 int i;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500355
356 if (attrs)
357 for (i = 0; attr_name(attrs[i]); i++)
358 device_remove_file(dev, &attrs[i]);
359}
360
361static int device_add_groups(struct device *dev,
362 struct attribute_group **groups)
363{
364 int error = 0;
365 int i;
366
367 if (groups) {
368 for (i = 0; groups[i]; i++) {
369 error = sysfs_create_group(&dev->kobj, groups[i]);
370 if (error) {
371 while (--i >= 0)
372 sysfs_remove_group(&dev->kobj, groups[i]);
373 break;
374 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700375 }
376 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500377 return error;
378}
379
380static void device_remove_groups(struct device *dev,
381 struct attribute_group **groups)
382{
383 int i;
384
385 if (groups)
386 for (i = 0; groups[i]; i++)
387 sysfs_remove_group(&dev->kobj, groups[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700388}
389
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700390static int device_add_attrs(struct device *dev)
391{
392 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200393 struct device_type *type = dev->type;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500394 int error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700395
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500396 if (class) {
397 error = device_add_attributes(dev, class->dev_attrs);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200398 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500399 return error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700400 }
Kay Sieversf9f852d2006-10-07 21:54:55 +0200401
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500402 if (type) {
403 error = device_add_groups(dev, type->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200404 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500405 goto err_remove_class_attrs;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200406 }
407
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500408 error = device_add_groups(dev, dev->groups);
409 if (error)
410 goto err_remove_type_groups;
411
412 return 0;
413
414 err_remove_type_groups:
415 if (type)
416 device_remove_groups(dev, type->groups);
417 err_remove_class_attrs:
418 if (class)
419 device_remove_attributes(dev, class->dev_attrs);
420
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700421 return error;
422}
423
424static void device_remove_attrs(struct device *dev)
425{
426 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200427 struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700428
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500429 device_remove_groups(dev, dev->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200430
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500431 if (type)
432 device_remove_groups(dev, type->groups);
433
434 if (class)
435 device_remove_attributes(dev, class->dev_attrs);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700436}
437
438
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700439static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
440 char *buf)
441{
442 return print_dev_t(buf, dev->devt);
443}
444
Tejun Heoad6a1e12007-06-14 03:45:17 +0900445static struct device_attribute devt_attr =
446 __ATTR(dev, S_IRUGO, show_dev, NULL);
447
Martin Waitz0863afb2006-01-09 20:53:55 -0800448/*
449 * devices_subsys - structure to be registered with kobject core.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 */
451
Kay Sievers312c0042005-11-16 09:00:00 +0100452decl_subsys(devices, &ktype_device, &device_uevent_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454
455/**
456 * device_create_file - create sysfs attribute file for device.
457 * @dev: device.
458 * @attr: device attribute descriptor.
459 */
460
461int device_create_file(struct device * dev, struct device_attribute * attr)
462{
463 int error = 0;
464 if (get_device(dev)) {
465 error = sysfs_create_file(&dev->kobj, &attr->attr);
466 put_device(dev);
467 }
468 return error;
469}
470
471/**
472 * device_remove_file - remove sysfs attribute file.
473 * @dev: device.
474 * @attr: device attribute descriptor.
475 */
476
477void device_remove_file(struct device * dev, struct device_attribute * attr)
478{
479 if (get_device(dev)) {
480 sysfs_remove_file(&dev->kobj, &attr->attr);
481 put_device(dev);
482 }
483}
484
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700485/**
486 * device_create_bin_file - create sysfs binary attribute file for device.
487 * @dev: device.
488 * @attr: device binary attribute descriptor.
489 */
490int device_create_bin_file(struct device *dev, struct bin_attribute *attr)
491{
492 int error = -EINVAL;
493 if (dev)
494 error = sysfs_create_bin_file(&dev->kobj, attr);
495 return error;
496}
497EXPORT_SYMBOL_GPL(device_create_bin_file);
498
499/**
500 * device_remove_bin_file - remove sysfs binary attribute file
501 * @dev: device.
502 * @attr: device binary attribute descriptor.
503 */
504void device_remove_bin_file(struct device *dev, struct bin_attribute *attr)
505{
506 if (dev)
507 sysfs_remove_bin_file(&dev->kobj, attr);
508}
509EXPORT_SYMBOL_GPL(device_remove_bin_file);
510
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400511/**
Alan Stern523ded72007-04-26 00:12:04 -0700512 * device_schedule_callback_owner - helper to schedule a callback for a device
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400513 * @dev: device.
514 * @func: callback function to invoke later.
Alan Stern523ded72007-04-26 00:12:04 -0700515 * @owner: module owning the callback routine
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400516 *
517 * Attribute methods must not unregister themselves or their parent device
518 * (which would amount to the same thing). Attempts to do so will deadlock,
519 * since unregistration is mutually exclusive with driver callbacks.
520 *
521 * Instead methods can call this routine, which will attempt to allocate
522 * and schedule a workqueue request to call back @func with @dev as its
523 * argument in the workqueue's process context. @dev will be pinned until
524 * @func returns.
525 *
Alan Stern523ded72007-04-26 00:12:04 -0700526 * This routine is usually called via the inline device_schedule_callback(),
527 * which automatically sets @owner to THIS_MODULE.
528 *
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400529 * Returns 0 if the request was submitted, -ENOMEM if storage could not
Alan Stern523ded72007-04-26 00:12:04 -0700530 * be allocated, -ENODEV if a reference to @owner isn't available.
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400531 *
532 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
533 * underlying sysfs routine (since it is intended for use by attribute
534 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
535 */
Alan Stern523ded72007-04-26 00:12:04 -0700536int device_schedule_callback_owner(struct device *dev,
537 void (*func)(struct device *), struct module *owner)
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400538{
539 return sysfs_schedule_callback(&dev->kobj,
Alan Stern523ded72007-04-26 00:12:04 -0700540 (void (*)(void *)) func, dev, owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400541}
Alan Stern523ded72007-04-26 00:12:04 -0700542EXPORT_SYMBOL_GPL(device_schedule_callback_owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400543
James Bottomley34bb61f2005-09-06 16:56:51 -0700544static void klist_children_get(struct klist_node *n)
545{
546 struct device *dev = container_of(n, struct device, knode_parent);
547
548 get_device(dev);
549}
550
551static void klist_children_put(struct klist_node *n)
552{
553 struct device *dev = container_of(n, struct device, knode_parent);
554
555 put_device(dev);
556}
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559/**
560 * device_initialize - init device structure.
561 * @dev: device.
562 *
563 * This prepares the device for use by other layers,
564 * including adding it to the device hierarchy.
565 * It is the first half of device_register(), if called by
566 * that, though it can also be called separately, so one
567 * may use @dev's fields (e.g. the refcount).
568 */
569
570void device_initialize(struct device *dev)
571{
572 kobj_set_kset_s(dev, devices_subsys);
573 kobject_init(&dev->kobj);
James Bottomley34bb61f2005-09-06 16:56:51 -0700574 klist_init(&dev->klist_children, klist_children_get,
575 klist_children_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 INIT_LIST_HEAD(&dev->dma_pools);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700577 INIT_LIST_HEAD(&dev->node);
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -0800578 init_MUTEX(&dev->sem);
Tejun Heo9ac78492007-01-20 16:00:26 +0900579 spin_lock_init(&dev->devres_lock);
580 INIT_LIST_HEAD(&dev->devres_head);
David Brownell0ac85242005-09-12 19:39:34 -0700581 device_init_wakeup(dev, 0);
Christoph Hellwig87348132006-12-06 20:32:33 -0800582 set_dev_node(dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100585#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100586static struct kobject * get_device_parent(struct device *dev,
587 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100588{
589 /* Set the parent to the class, not the parent device */
590 /* this keeps sysfs from having a symlink to make old udevs happy */
591 if (dev->class)
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700592 return &dev->class->subsys.kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100593 else if (parent)
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100594 return &parent->kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100595
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100596 return NULL;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100597}
598#else
Kay Sievers86406242007-03-14 03:25:56 +0100599static struct kobject *virtual_device_parent(struct device *dev)
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700600{
Kay Sievers86406242007-03-14 03:25:56 +0100601 static struct kobject *virtual_dir = NULL;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700602
Kay Sievers86406242007-03-14 03:25:56 +0100603 if (!virtual_dir)
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700604 virtual_dir = kobject_add_dir(&devices_subsys.kobj, "virtual");
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700605
Kay Sievers86406242007-03-14 03:25:56 +0100606 return virtual_dir;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700607}
608
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100609static struct kobject * get_device_parent(struct device *dev,
610 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100611{
Kay Sievers86406242007-03-14 03:25:56 +0100612 if (dev->class) {
613 struct kobject *kobj = NULL;
614 struct kobject *parent_kobj;
615 struct kobject *k;
616
617 /*
618 * If we have no parent, we live in "virtual".
619 * Class-devices with a bus-device as parent, live
620 * in a class-directory to prevent namespace collisions.
621 */
622 if (parent == NULL)
623 parent_kobj = virtual_device_parent(dev);
624 else if (parent->class)
625 return &parent->kobj;
626 else
627 parent_kobj = &parent->kobj;
628
629 /* find our class-directory at the parent and reference it */
630 spin_lock(&dev->class->class_dirs.list_lock);
631 list_for_each_entry(k, &dev->class->class_dirs.list, entry)
632 if (k->parent == parent_kobj) {
633 kobj = kobject_get(k);
634 break;
635 }
636 spin_unlock(&dev->class->class_dirs.list_lock);
637 if (kobj)
638 return kobj;
639
640 /* or create a new class-directory at the parent device */
641 return kobject_kset_add_dir(&dev->class->class_dirs,
642 parent_kobj, dev->class->name);
643 }
644
645 if (parent)
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100646 return &parent->kobj;
647 return NULL;
648}
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100649#endif
Kay Sievers86406242007-03-14 03:25:56 +0100650
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100651static int setup_parent(struct device *dev, struct device *parent)
652{
653 struct kobject *kobj;
654 kobj = get_device_parent(dev, parent);
655 if (IS_ERR(kobj))
656 return PTR_ERR(kobj);
657 if (kobj)
658 dev->kobj.parent = kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100659 return 0;
660}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100661
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700662static int device_add_class_symlinks(struct device *dev)
663{
664 int error;
665
666 if (!dev->class)
667 return 0;
668 error = sysfs_create_link(&dev->kobj, &dev->class->subsys.kobj,
669 "subsystem");
670 if (error)
671 goto out;
672 /*
673 * If this is not a "fake" compatible device, then create the
674 * symlink from the class to the device.
675 */
676 if (dev->kobj.parent != &dev->class->subsys.kobj) {
677 error = sysfs_create_link(&dev->class->subsys.kobj, &dev->kobj,
678 dev->bus_id);
679 if (error)
680 goto out_subsys;
681 }
Cornelia Huck27907682007-07-25 09:58:08 +0200682 if (dev->parent) {
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700683#ifdef CONFIG_SYSFS_DEPRECATED
684 {
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700685 struct device *parent = dev->parent;
686 char *class_name;
687
688 /*
689 * In old sysfs stacked class devices had 'device'
690 * link pointing to real device instead of parent
691 */
692 while (parent->class && !parent->bus && parent->parent)
693 parent = parent->parent;
694
695 error = sysfs_create_link(&dev->kobj,
696 &parent->kobj,
697 "device");
698 if (error)
699 goto out_busid;
700
701 class_name = make_class_name(dev->class->name,
702 &dev->kobj);
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700703 if (class_name)
704 error = sysfs_create_link(&dev->parent->kobj,
705 &dev->kobj, class_name);
706 kfree(class_name);
707 if (error)
708 goto out_device;
709 }
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700710#else
711 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
712 "device");
713 if (error)
714 goto out_busid;
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700715#endif
716 }
717 return 0;
718
719#ifdef CONFIG_SYSFS_DEPRECATED
720out_device:
721 if (dev->parent)
722 sysfs_remove_link(&dev->kobj, "device");
723#endif
724out_busid:
725 if (dev->kobj.parent != &dev->class->subsys.kobj)
726 sysfs_remove_link(&dev->class->subsys.kobj, dev->bus_id);
727out_subsys:
728 sysfs_remove_link(&dev->kobj, "subsystem");
729out:
730 return error;
731}
732
733static void device_remove_class_symlinks(struct device *dev)
734{
735 if (!dev->class)
736 return;
737 if (dev->parent) {
738#ifdef CONFIG_SYSFS_DEPRECATED
739 char *class_name;
740
741 class_name = make_class_name(dev->class->name, &dev->kobj);
742 if (class_name) {
743 sysfs_remove_link(&dev->parent->kobj, class_name);
744 kfree(class_name);
745 }
746#endif
747 sysfs_remove_link(&dev->kobj, "device");
748 }
749 if (dev->kobj.parent != &dev->class->subsys.kobj)
750 sysfs_remove_link(&dev->class->subsys.kobj, dev->bus_id);
751 sysfs_remove_link(&dev->kobj, "subsystem");
752}
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754/**
755 * device_add - add device to device hierarchy.
756 * @dev: device.
757 *
758 * This is part 2 of device_register(), though may be called
759 * separately _iff_ device_initialize() has been called separately.
760 *
761 * This adds it to the kobject hierarchy via kobject_add(), adds it
762 * to the global and sibling lists for the device, then
763 * adds it to the other relevant subsystems of the driver model.
764 */
765int device_add(struct device *dev)
766{
767 struct device *parent = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200768 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 int error = -EINVAL;
770
771 dev = get_device(dev);
772 if (!dev || !strlen(dev->bus_id))
773 goto Error;
774
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100775 pr_debug("DEV: registering device: ID = '%s'\n", dev->bus_id);
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -0700776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 parent = get_device(dev->parent);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100778 error = setup_parent(dev, parent);
779 if (error)
780 goto Error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 /* first, register with generic layer. */
783 kobject_set_name(&dev->kobj, "%s", dev->bus_id);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100784 error = kobject_add(&dev->kobj);
785 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 goto Error;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200787
Brian Walsh37022642006-08-14 22:43:19 -0700788 /* notify platform of device entry */
789 if (platform_notify)
790 platform_notify(dev);
791
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000792 /* notify clients of device entry (new way) */
793 if (dev->bus)
794 blocking_notifier_call_chain(&dev->bus->bus_notifier,
795 BUS_NOTIFY_ADD_DEVICE, dev);
796
Tejun Heoad6a1e12007-06-14 03:45:17 +0900797 error = device_create_file(dev, &uevent_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200798 if (error)
799 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200800
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700801 if (MAJOR(dev->devt)) {
Tejun Heoad6a1e12007-06-14 03:45:17 +0900802 error = device_create_file(dev, &devt_attr);
803 if (error)
Cornelia Hucka306eea2006-09-22 11:37:13 +0200804 goto ueventattrError;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700805 }
806
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700807 error = device_add_class_symlinks(dev);
808 if (error)
809 goto SymlinkError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700810 error = device_add_attrs(dev);
811 if (error)
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700812 goto AttrsError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700813 error = device_pm_add(dev);
814 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 goto PMError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700816 error = bus_add_device(dev);
817 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 goto BusError;
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +0200819 kobject_uevent(&dev->kobj, KOBJ_ADD);
Cornelia Huckc6a46692007-02-05 16:15:26 -0800820 bus_attach_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (parent)
James Bottomleyd856f1e32005-08-19 09:14:01 -0400822 klist_add_tail(&dev->knode_parent, &parent->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700824 if (dev->class) {
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700825 down(&dev->class->sem);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200826 /* tie the class to the device */
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700827 list_add_tail(&dev->node, &dev->class->devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200828
829 /* notify any interfaces that the device is here */
830 list_for_each_entry(class_intf, &dev->class->interfaces, node)
831 if (class_intf->add_dev)
832 class_intf->add_dev(dev, class_intf);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700833 up(&dev->class->sem);
834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 Done:
836 put_device(dev);
837 return error;
838 BusError:
839 device_pm_remove(dev);
840 PMError:
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000841 if (dev->bus)
842 blocking_notifier_call_chain(&dev->bus->bus_notifier,
843 BUS_NOTIFY_DEL_DEVICE, dev);
James Simmons82f0cf92007-02-21 17:44:51 +0000844 device_remove_attrs(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700845 AttrsError:
Cornelia Huck2ee97ca2007-07-18 01:43:47 -0700846 device_remove_class_symlinks(dev);
847 SymlinkError:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900848 if (MAJOR(dev->devt))
849 device_remove_file(dev, &devt_attr);
James Simmons82f0cf92007-02-21 17:44:51 +0000850
851 if (dev->class) {
852 sysfs_remove_link(&dev->kobj, "subsystem");
853 /* If this is not a "fake" compatible device, remove the
854 * symlink from the class to the device. */
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700855 if (dev->kobj.parent != &dev->class->subsys.kobj)
856 sysfs_remove_link(&dev->class->subsys.kobj,
James Simmons82f0cf92007-02-21 17:44:51 +0000857 dev->bus_id);
James Simmons82f0cf92007-02-21 17:44:51 +0000858 if (parent) {
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800859#ifdef CONFIG_SYSFS_DEPRECATED
James Simmons82f0cf92007-02-21 17:44:51 +0000860 char *class_name = make_class_name(dev->class->name,
861 &dev->kobj);
862 if (class_name)
863 sysfs_remove_link(&dev->parent->kobj,
864 class_name);
865 kfree(class_name);
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800866#endif
James Simmons82f0cf92007-02-21 17:44:51 +0000867 sysfs_remove_link(&dev->kobj, "device");
868 }
James Simmons82f0cf92007-02-21 17:44:51 +0000869 }
Cornelia Hucka306eea2006-09-22 11:37:13 +0200870 ueventattrError:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900871 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700872 attrError:
Kay Sievers312c0042005-11-16 09:00:00 +0100873 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 kobject_del(&dev->kobj);
875 Error:
876 if (parent)
877 put_device(parent);
878 goto Done;
879}
880
881
882/**
883 * device_register - register a device with the system.
884 * @dev: pointer to the device structure
885 *
886 * This happens in two clean steps - initialize the device
887 * and add it to the system. The two steps can be called
888 * separately, but this is the easiest and most common.
889 * I.e. you should only call the two helpers separately if
890 * have a clearly defined need to use and refcount the device
891 * before it is added to the hierarchy.
892 */
893
894int device_register(struct device *dev)
895{
896 device_initialize(dev);
897 return device_add(dev);
898}
899
900
901/**
902 * get_device - increment reference count for device.
903 * @dev: device.
904 *
905 * This simply forwards the call to kobject_get(), though
906 * we do take care to provide for the case that we get a NULL
907 * pointer passed in.
908 */
909
910struct device * get_device(struct device * dev)
911{
912 return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
913}
914
915
916/**
917 * put_device - decrement reference count.
918 * @dev: device in question.
919 */
920void put_device(struct device * dev)
921{
922 if (dev)
923 kobject_put(&dev->kobj);
924}
925
926
927/**
928 * device_del - delete device from system.
929 * @dev: device.
930 *
931 * This is the first part of the device unregistration
932 * sequence. This removes the device from the lists we control
933 * from here, has it removed from the other driver model
934 * subsystems it was added to in device_add(), and removes it
935 * from the kobject hierarchy.
936 *
937 * NOTE: this should be called manually _iff_ device_add() was
938 * also called manually.
939 */
940
941void device_del(struct device * dev)
942{
943 struct device * parent = dev->parent;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200944 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (parent)
Patrick Mocheld62c0f92005-06-24 08:39:33 -0700947 klist_del(&dev->knode_parent);
Tejun Heoad6a1e12007-06-14 03:45:17 +0900948 if (MAJOR(dev->devt))
949 device_remove_file(dev, &devt_attr);
Kay Sieversb9d9c822006-06-15 15:31:56 +0200950 if (dev->class) {
951 sysfs_remove_link(&dev->kobj, "subsystem");
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100952 /* If this is not a "fake" compatible device, remove the
953 * symlink from the class to the device. */
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700954 if (dev->kobj.parent != &dev->class->subsys.kobj)
955 sysfs_remove_link(&dev->class->subsys.kobj,
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100956 dev->bus_id);
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -0700957 if (parent) {
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800958#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200959 char *class_name = make_class_name(dev->class->name,
960 &dev->kobj);
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100961 if (class_name)
962 sysfs_remove_link(&dev->parent->kobj,
963 class_name);
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200964 kfree(class_name);
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800965#endif
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200966 sysfs_remove_link(&dev->kobj, "device");
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -0700967 }
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200968
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700969 down(&dev->class->sem);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200970 /* notify any interfaces that the device is now gone */
971 list_for_each_entry(class_intf, &dev->class->interfaces, node)
972 if (class_intf->remove_dev)
973 class_intf->remove_dev(dev, class_intf);
974 /* remove the device from the class list */
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700975 list_del_init(&dev->node);
976 up(&dev->class->sem);
Kay Sievers86406242007-03-14 03:25:56 +0100977
978 /* If we live in a parent class-directory, unreference it */
979 if (dev->kobj.parent->kset == &dev->class->class_dirs) {
980 struct device *d;
981 int other = 0;
982
983 /*
984 * if we are the last child of our class, delete
985 * our class-directory at this parent
986 */
987 down(&dev->class->sem);
988 list_for_each_entry(d, &dev->class->devices, node) {
989 if (d == dev)
990 continue;
991 if (d->kobj.parent == dev->kobj.parent) {
992 other = 1;
993 break;
994 }
995 }
996 if (!other)
997 kobject_del(dev->kobj.parent);
998
999 kobject_put(dev->kobj.parent);
1000 up(&dev->class->sem);
1001 }
Kay Sieversb9d9c822006-06-15 15:31:56 +02001002 }
Tejun Heoad6a1e12007-06-14 03:45:17 +09001003 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001004 device_remove_attrs(dev);
Benjamin Herrenschmidt28953532006-11-08 19:46:14 -08001005 bus_remove_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Tejun Heo2f8d16a2007-03-09 19:34:19 +09001007 /*
1008 * Some platform devices are driven without driver attached
1009 * and managed resources may have been acquired. Make sure
1010 * all resources are released.
1011 */
1012 devres_release_all(dev);
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 /* Notify the platform of the removal, in case they
1015 * need to do anything...
1016 */
1017 if (platform_notify_remove)
1018 platform_notify_remove(dev);
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +10001019 if (dev->bus)
1020 blocking_notifier_call_chain(&dev->bus->bus_notifier,
1021 BUS_NOTIFY_DEL_DEVICE, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 device_pm_remove(dev);
Kay Sievers312c0042005-11-16 09:00:00 +01001023 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 kobject_del(&dev->kobj);
1025 if (parent)
1026 put_device(parent);
1027}
1028
1029/**
1030 * device_unregister - unregister device from system.
1031 * @dev: device going away.
1032 *
1033 * We do this in two parts, like we do device_register(). First,
1034 * we remove it from all the subsystems with device_del(), then
1035 * we decrement the reference count via put_device(). If that
1036 * is the final reference count, the device will be cleaned up
1037 * via device_release() above. Otherwise, the structure will
1038 * stick around until the final reference to the device is dropped.
1039 */
1040void device_unregister(struct device * dev)
1041{
1042 pr_debug("DEV: Unregistering device. ID = '%s'\n", dev->bus_id);
1043 device_del(dev);
1044 put_device(dev);
1045}
1046
1047
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001048static struct device * next_device(struct klist_iter * i)
1049{
1050 struct klist_node * n = klist_next(i);
1051 return n ? container_of(n, struct device, knode_parent) : NULL;
1052}
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054/**
1055 * device_for_each_child - device child iterator.
Randy Dunlapc41455f2005-10-23 11:59:14 -07001056 * @parent: parent struct device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 * @data: data for the callback.
1058 * @fn: function to be called for each device.
1059 *
Randy Dunlapc41455f2005-10-23 11:59:14 -07001060 * Iterate over @parent's child devices, and call @fn for each,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 * passing it @data.
1062 *
1063 * We check the return of @fn each time. If it returns anything
1064 * other than 0, we break out and return that value.
1065 */
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001066int device_for_each_child(struct device * parent, void * data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 int (*fn)(struct device *, void *))
1068{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001069 struct klist_iter i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 struct device * child;
1071 int error = 0;
1072
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001073 klist_iter_init(&parent->klist_children, &i);
1074 while ((child = next_device(&i)) && !error)
1075 error = fn(child, data);
1076 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 return error;
1078}
1079
Cornelia Huck5ab69982006-11-16 15:42:07 +01001080/**
1081 * device_find_child - device iterator for locating a particular device.
1082 * @parent: parent struct device
1083 * @data: Data to pass to match function
1084 * @match: Callback function to check device
1085 *
1086 * This is similar to the device_for_each_child() function above, but it
1087 * returns a reference to a device that is 'found' for later use, as
1088 * determined by the @match callback.
1089 *
1090 * The callback should return 0 if the device doesn't match and non-zero
1091 * if it does. If the callback returns non-zero and a reference to the
1092 * current device can be obtained, this function will return to the caller
1093 * and not iterate over any more devices.
1094 */
1095struct device * device_find_child(struct device *parent, void *data,
1096 int (*match)(struct device *, void *))
1097{
1098 struct klist_iter i;
1099 struct device *child;
1100
1101 if (!parent)
1102 return NULL;
1103
1104 klist_iter_init(&parent->klist_children, &i);
1105 while ((child = next_device(&i)))
1106 if (match(child, data) && get_device(child))
1107 break;
1108 klist_iter_exit(&i);
1109 return child;
1110}
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112int __init devices_init(void)
1113{
1114 return subsystem_register(&devices_subsys);
1115}
1116
1117EXPORT_SYMBOL_GPL(device_for_each_child);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001118EXPORT_SYMBOL_GPL(device_find_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120EXPORT_SYMBOL_GPL(device_initialize);
1121EXPORT_SYMBOL_GPL(device_add);
1122EXPORT_SYMBOL_GPL(device_register);
1123
1124EXPORT_SYMBOL_GPL(device_del);
1125EXPORT_SYMBOL_GPL(device_unregister);
1126EXPORT_SYMBOL_GPL(get_device);
1127EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129EXPORT_SYMBOL_GPL(device_create_file);
1130EXPORT_SYMBOL_GPL(device_remove_file);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001131
1132
1133static void device_create_release(struct device *dev)
1134{
1135 pr_debug("%s called for %s\n", __FUNCTION__, dev->bus_id);
1136 kfree(dev);
1137}
1138
1139/**
1140 * device_create - creates a device and registers it with sysfs
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001141 * @class: pointer to the struct class that this device should be registered to
1142 * @parent: pointer to the parent struct device of this new device, if any
1143 * @devt: the dev_t for the char device to be added
1144 * @fmt: string for the device's name
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001145 *
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001146 * This function can be used by char device classes. A struct device
1147 * will be created in sysfs, registered to the specified class.
1148 *
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001149 * A "dev" file will be created, showing the dev_t for the device, if
1150 * the dev_t is not 0,0.
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001151 * If a pointer to a parent struct device is passed in, the newly created
1152 * struct device will be a child of that device in sysfs.
1153 * The pointer to the struct device will be returned from the call.
1154 * Any further sysfs files that might be required can be created using this
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001155 * pointer.
1156 *
1157 * Note: the struct class passed to this function must have previously
1158 * been created with a call to class_create().
1159 */
1160struct device *device_create(struct class *class, struct device *parent,
Greg Kroah-Hartman5cbe5f82006-08-10 01:19:19 -04001161 dev_t devt, const char *fmt, ...)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001162{
1163 va_list args;
1164 struct device *dev = NULL;
1165 int retval = -ENODEV;
1166
1167 if (class == NULL || IS_ERR(class))
1168 goto error;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001169
1170 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1171 if (!dev) {
1172 retval = -ENOMEM;
1173 goto error;
1174 }
1175
1176 dev->devt = devt;
1177 dev->class = class;
1178 dev->parent = parent;
1179 dev->release = device_create_release;
1180
1181 va_start(args, fmt);
1182 vsnprintf(dev->bus_id, BUS_ID_SIZE, fmt, args);
1183 va_end(args);
1184 retval = device_register(dev);
1185 if (retval)
1186 goto error;
1187
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001188 return dev;
1189
1190error:
1191 kfree(dev);
1192 return ERR_PTR(retval);
1193}
1194EXPORT_SYMBOL_GPL(device_create);
1195
1196/**
1197 * device_destroy - removes a device that was created with device_create()
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001198 * @class: pointer to the struct class that this device was registered with
1199 * @devt: the dev_t of the device that was previously registered
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001200 *
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001201 * This call unregisters and cleans up a device that was created with a
1202 * call to device_create().
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001203 */
1204void device_destroy(struct class *class, dev_t devt)
1205{
1206 struct device *dev = NULL;
1207 struct device *dev_tmp;
1208
1209 down(&class->sem);
1210 list_for_each_entry(dev_tmp, &class->devices, node) {
1211 if (dev_tmp->devt == devt) {
1212 dev = dev_tmp;
1213 break;
1214 }
1215 }
1216 up(&class->sem);
1217
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -07001218 if (dev)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001219 device_unregister(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001220}
1221EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001222
1223/**
1224 * device_rename - renames a device
1225 * @dev: the pointer to the struct device to be renamed
1226 * @new_name: the new name of the device
1227 */
1228int device_rename(struct device *dev, char *new_name)
1229{
1230 char *old_class_name = NULL;
1231 char *new_class_name = NULL;
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001232 char *old_device_name = NULL;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001233 int error;
1234
1235 dev = get_device(dev);
1236 if (!dev)
1237 return -EINVAL;
1238
1239 pr_debug("DEVICE: renaming '%s' to '%s'\n", dev->bus_id, new_name);
1240
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001241#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001242 if ((dev->class) && (dev->parent))
1243 old_class_name = make_class_name(dev->class->name, &dev->kobj);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001244#endif
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001245
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001246 old_device_name = kmalloc(BUS_ID_SIZE, GFP_KERNEL);
1247 if (!old_device_name) {
1248 error = -ENOMEM;
1249 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001250 }
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001251 strlcpy(old_device_name, dev->bus_id, BUS_ID_SIZE);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001252 strlcpy(dev->bus_id, new_name, BUS_ID_SIZE);
1253
1254 error = kobject_rename(&dev->kobj, new_name);
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001255 if (error) {
1256 strlcpy(dev->bus_id, old_device_name, BUS_ID_SIZE);
1257 goto out;
1258 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001259
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001260#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001261 if (old_class_name) {
1262 new_class_name = make_class_name(dev->class->name, &dev->kobj);
1263 if (new_class_name) {
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001264 error = sysfs_create_link(&dev->parent->kobj,
1265 &dev->kobj, new_class_name);
1266 if (error)
1267 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001268 sysfs_remove_link(&dev->parent->kobj, old_class_name);
1269 }
1270 }
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001271#endif
1272
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001273 if (dev->class) {
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001274 sysfs_remove_link(&dev->class->subsys.kobj, old_device_name);
1275 error = sysfs_create_link(&dev->class->subsys.kobj, &dev->kobj,
1276 dev->bus_id);
1277 if (error) {
1278 /* Uh... how to unravel this if restoring can fail? */
1279 dev_err(dev, "%s: sysfs_create_symlink failed (%d)\n",
1280 __FUNCTION__, error);
1281 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001282 }
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001283out:
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001284 put_device(dev);
1285
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001286 kfree(new_class_name);
Jesper Juhl952ab432006-09-28 23:56:01 +02001287 kfree(old_class_name);
Cornelia Huck2ee97ca2007-07-18 01:43:47 -07001288 kfree(old_device_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001289
1290 return error;
1291}
Johannes Berga2807db2007-02-28 12:38:31 +01001292EXPORT_SYMBOL_GPL(device_rename);
Cornelia Huck8a824722006-11-20 17:07:51 +01001293
1294static int device_move_class_links(struct device *dev,
1295 struct device *old_parent,
1296 struct device *new_parent)
1297{
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001298 int error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001299#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huck8a824722006-11-20 17:07:51 +01001300 char *class_name;
1301
1302 class_name = make_class_name(dev->class->name, &dev->kobj);
1303 if (!class_name) {
Cornelia Huckcb360bb2006-11-27 10:35:05 +01001304 error = -ENOMEM;
Cornelia Huck8a824722006-11-20 17:07:51 +01001305 goto out;
1306 }
1307 if (old_parent) {
1308 sysfs_remove_link(&dev->kobj, "device");
1309 sysfs_remove_link(&old_parent->kobj, class_name);
1310 }
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001311 if (new_parent) {
1312 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1313 "device");
1314 if (error)
1315 goto out;
1316 error = sysfs_create_link(&new_parent->kobj, &dev->kobj,
1317 class_name);
1318 if (error)
1319 sysfs_remove_link(&dev->kobj, "device");
1320 }
1321 else
1322 error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001323out:
1324 kfree(class_name);
1325 return error;
1326#else
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001327 if (old_parent)
1328 sysfs_remove_link(&dev->kobj, "device");
1329 if (new_parent)
1330 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1331 "device");
1332 return error;
Cornelia Huck8a824722006-11-20 17:07:51 +01001333#endif
1334}
1335
1336/**
1337 * device_move - moves a device to a new parent
1338 * @dev: the pointer to the struct device to be moved
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001339 * @new_parent: the new parent of the device (can by NULL)
Cornelia Huck8a824722006-11-20 17:07:51 +01001340 */
1341int device_move(struct device *dev, struct device *new_parent)
1342{
1343 int error;
1344 struct device *old_parent;
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001345 struct kobject *new_parent_kobj;
Cornelia Huck8a824722006-11-20 17:07:51 +01001346
1347 dev = get_device(dev);
1348 if (!dev)
1349 return -EINVAL;
1350
Cornelia Huck8a824722006-11-20 17:07:51 +01001351 new_parent = get_device(new_parent);
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001352 new_parent_kobj = get_device_parent (dev, new_parent);
1353 if (IS_ERR(new_parent_kobj)) {
1354 error = PTR_ERR(new_parent_kobj);
1355 put_device(new_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +01001356 goto out;
1357 }
1358 pr_debug("DEVICE: moving '%s' to '%s'\n", dev->bus_id,
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001359 new_parent ? new_parent->bus_id : "<NULL>");
1360 error = kobject_move(&dev->kobj, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001361 if (error) {
1362 put_device(new_parent);
1363 goto out;
1364 }
1365 old_parent = dev->parent;
1366 dev->parent = new_parent;
1367 if (old_parent)
Cornelia Huckacf02d22006-11-22 17:49:39 +01001368 klist_remove(&dev->knode_parent);
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001369 if (new_parent)
1370 klist_add_tail(&dev->knode_parent, &new_parent->klist_children);
Cornelia Huck8a824722006-11-20 17:07:51 +01001371 if (!dev->class)
1372 goto out_put;
1373 error = device_move_class_links(dev, old_parent, new_parent);
1374 if (error) {
1375 /* We ignore errors on cleanup since we're hosed anyway... */
1376 device_move_class_links(dev, new_parent, old_parent);
1377 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001378 if (new_parent)
1379 klist_remove(&dev->knode_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +01001380 if (old_parent)
1381 klist_add_tail(&dev->knode_parent,
1382 &old_parent->klist_children);
1383 }
1384 put_device(new_parent);
1385 goto out;
1386 }
1387out_put:
1388 put_device(old_parent);
1389out:
1390 put_device(dev);
1391 return error;
1392}
1393
1394EXPORT_SYMBOL_GPL(device_move);