blob: 6de33d7a29ba989194cd6fa4f0148cc702acebed [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;
287 retval = kset->uevent_ops->uevent(kset, &dev->kobj,
288 envp, ARRAY_SIZE(envp),
289 pos, PAGE_SIZE);
290 if (retval)
291 goto out;
292
293 /* copy keys to file */
294 for (i = 0; envp[i]; i++) {
295 pos = &buf[count];
296 count += sprintf(pos, "%s\n", envp[i]);
297 }
298out:
Greg Kroah-Hartmanc7308c82007-05-02 14:14:11 +0200299 free_page((unsigned long)data);
Kay Sievers16574dc2007-04-06 01:40:38 +0200300 return count;
301}
302
Kay Sieversa7fd6702005-10-01 14:49:43 +0200303static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
304 const char *buf, size_t count)
305{
Kay Sievers60a96a52007-07-08 22:29:26 +0200306 size_t len = count;
307 enum kobject_action action;
308
309 if (len && buf[len-1] == '\n')
310 len--;
311
312 for (action = 0; action < KOBJ_MAX; action++) {
313 if (strncmp(kobject_actions[action], buf, len) != 0)
314 continue;
315 if (kobject_actions[action][len] != '\0')
316 continue;
317 kobject_uevent(&dev->kobj, action);
318 goto out;
319 }
320
321 dev_err(dev, "uevent: unsupported action-string; this will "
322 "be ignored in a future kernel version\n");
Kay Sievers312c0042005-11-16 09:00:00 +0100323 kobject_uevent(&dev->kobj, KOBJ_ADD);
Kay Sievers60a96a52007-07-08 22:29:26 +0200324out:
Kay Sieversa7fd6702005-10-01 14:49:43 +0200325 return count;
326}
327
Tejun Heoad6a1e12007-06-14 03:45:17 +0900328static struct device_attribute uevent_attr =
329 __ATTR(uevent, S_IRUGO | S_IWUSR, show_uevent, store_uevent);
330
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500331static int device_add_attributes(struct device *dev,
332 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700333{
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700334 int error = 0;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500335 int i;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700336
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500337 if (attrs) {
338 for (i = 0; attr_name(attrs[i]); i++) {
339 error = device_create_file(dev, &attrs[i]);
340 if (error)
341 break;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700342 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500343 if (error)
344 while (--i >= 0)
345 device_remove_file(dev, &attrs[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700346 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700347 return error;
348}
349
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500350static void device_remove_attributes(struct device *dev,
351 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700352{
353 int i;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500354
355 if (attrs)
356 for (i = 0; attr_name(attrs[i]); i++)
357 device_remove_file(dev, &attrs[i]);
358}
359
360static int device_add_groups(struct device *dev,
361 struct attribute_group **groups)
362{
363 int error = 0;
364 int i;
365
366 if (groups) {
367 for (i = 0; groups[i]; i++) {
368 error = sysfs_create_group(&dev->kobj, groups[i]);
369 if (error) {
370 while (--i >= 0)
371 sysfs_remove_group(&dev->kobj, groups[i]);
372 break;
373 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700374 }
375 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500376 return error;
377}
378
379static void device_remove_groups(struct device *dev,
380 struct attribute_group **groups)
381{
382 int i;
383
384 if (groups)
385 for (i = 0; groups[i]; i++)
386 sysfs_remove_group(&dev->kobj, groups[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700387}
388
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700389static int device_add_attrs(struct device *dev)
390{
391 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200392 struct device_type *type = dev->type;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500393 int error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700394
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500395 if (class) {
396 error = device_add_attributes(dev, class->dev_attrs);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200397 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500398 return error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700399 }
Kay Sieversf9f852d2006-10-07 21:54:55 +0200400
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500401 if (type) {
402 error = device_add_groups(dev, type->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200403 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500404 goto err_remove_class_attrs;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200405 }
406
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500407 error = device_add_groups(dev, dev->groups);
408 if (error)
409 goto err_remove_type_groups;
410
411 return 0;
412
413 err_remove_type_groups:
414 if (type)
415 device_remove_groups(dev, type->groups);
416 err_remove_class_attrs:
417 if (class)
418 device_remove_attributes(dev, class->dev_attrs);
419
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700420 return error;
421}
422
423static void device_remove_attrs(struct device *dev)
424{
425 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200426 struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700427
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500428 device_remove_groups(dev, dev->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200429
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500430 if (type)
431 device_remove_groups(dev, type->groups);
432
433 if (class)
434 device_remove_attributes(dev, class->dev_attrs);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700435}
436
437
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700438static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
439 char *buf)
440{
441 return print_dev_t(buf, dev->devt);
442}
443
Tejun Heoad6a1e12007-06-14 03:45:17 +0900444static struct device_attribute devt_attr =
445 __ATTR(dev, S_IRUGO, show_dev, NULL);
446
Martin Waitz0863afb2006-01-09 20:53:55 -0800447/*
448 * devices_subsys - structure to be registered with kobject core.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 */
450
Kay Sievers312c0042005-11-16 09:00:00 +0100451decl_subsys(devices, &ktype_device, &device_uevent_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453
454/**
455 * device_create_file - create sysfs attribute file for device.
456 * @dev: device.
457 * @attr: device attribute descriptor.
458 */
459
460int device_create_file(struct device * dev, struct device_attribute * attr)
461{
462 int error = 0;
463 if (get_device(dev)) {
464 error = sysfs_create_file(&dev->kobj, &attr->attr);
465 put_device(dev);
466 }
467 return error;
468}
469
470/**
471 * device_remove_file - remove sysfs attribute file.
472 * @dev: device.
473 * @attr: device attribute descriptor.
474 */
475
476void device_remove_file(struct device * dev, struct device_attribute * attr)
477{
478 if (get_device(dev)) {
479 sysfs_remove_file(&dev->kobj, &attr->attr);
480 put_device(dev);
481 }
482}
483
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700484/**
485 * device_create_bin_file - create sysfs binary attribute file for device.
486 * @dev: device.
487 * @attr: device binary attribute descriptor.
488 */
489int device_create_bin_file(struct device *dev, struct bin_attribute *attr)
490{
491 int error = -EINVAL;
492 if (dev)
493 error = sysfs_create_bin_file(&dev->kobj, attr);
494 return error;
495}
496EXPORT_SYMBOL_GPL(device_create_bin_file);
497
498/**
499 * device_remove_bin_file - remove sysfs binary attribute file
500 * @dev: device.
501 * @attr: device binary attribute descriptor.
502 */
503void device_remove_bin_file(struct device *dev, struct bin_attribute *attr)
504{
505 if (dev)
506 sysfs_remove_bin_file(&dev->kobj, attr);
507}
508EXPORT_SYMBOL_GPL(device_remove_bin_file);
509
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400510/**
Alan Stern523ded72007-04-26 00:12:04 -0700511 * device_schedule_callback_owner - helper to schedule a callback for a device
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400512 * @dev: device.
513 * @func: callback function to invoke later.
Alan Stern523ded72007-04-26 00:12:04 -0700514 * @owner: module owning the callback routine
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400515 *
516 * Attribute methods must not unregister themselves or their parent device
517 * (which would amount to the same thing). Attempts to do so will deadlock,
518 * since unregistration is mutually exclusive with driver callbacks.
519 *
520 * Instead methods can call this routine, which will attempt to allocate
521 * and schedule a workqueue request to call back @func with @dev as its
522 * argument in the workqueue's process context. @dev will be pinned until
523 * @func returns.
524 *
Alan Stern523ded72007-04-26 00:12:04 -0700525 * This routine is usually called via the inline device_schedule_callback(),
526 * which automatically sets @owner to THIS_MODULE.
527 *
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400528 * Returns 0 if the request was submitted, -ENOMEM if storage could not
Alan Stern523ded72007-04-26 00:12:04 -0700529 * be allocated, -ENODEV if a reference to @owner isn't available.
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400530 *
531 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
532 * underlying sysfs routine (since it is intended for use by attribute
533 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
534 */
Alan Stern523ded72007-04-26 00:12:04 -0700535int device_schedule_callback_owner(struct device *dev,
536 void (*func)(struct device *), struct module *owner)
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400537{
538 return sysfs_schedule_callback(&dev->kobj,
Alan Stern523ded72007-04-26 00:12:04 -0700539 (void (*)(void *)) func, dev, owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400540}
Alan Stern523ded72007-04-26 00:12:04 -0700541EXPORT_SYMBOL_GPL(device_schedule_callback_owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400542
James Bottomley34bb61f2005-09-06 16:56:51 -0700543static void klist_children_get(struct klist_node *n)
544{
545 struct device *dev = container_of(n, struct device, knode_parent);
546
547 get_device(dev);
548}
549
550static void klist_children_put(struct klist_node *n)
551{
552 struct device *dev = container_of(n, struct device, knode_parent);
553
554 put_device(dev);
555}
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558/**
559 * device_initialize - init device structure.
560 * @dev: device.
561 *
562 * This prepares the device for use by other layers,
563 * including adding it to the device hierarchy.
564 * It is the first half of device_register(), if called by
565 * that, though it can also be called separately, so one
566 * may use @dev's fields (e.g. the refcount).
567 */
568
569void device_initialize(struct device *dev)
570{
571 kobj_set_kset_s(dev, devices_subsys);
572 kobject_init(&dev->kobj);
James Bottomley34bb61f2005-09-06 16:56:51 -0700573 klist_init(&dev->klist_children, klist_children_get,
574 klist_children_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 INIT_LIST_HEAD(&dev->dma_pools);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700576 INIT_LIST_HEAD(&dev->node);
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -0800577 init_MUTEX(&dev->sem);
Tejun Heo9ac78492007-01-20 16:00:26 +0900578 spin_lock_init(&dev->devres_lock);
579 INIT_LIST_HEAD(&dev->devres_head);
David Brownell0ac85242005-09-12 19:39:34 -0700580 device_init_wakeup(dev, 0);
Christoph Hellwig87348132006-12-06 20:32:33 -0800581 set_dev_node(dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100584#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huckc744aea2007-01-08 20:16:44 +0100585static struct kobject * get_device_parent(struct device *dev,
586 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100587{
588 /* Set the parent to the class, not the parent device */
589 /* this keeps sysfs from having a symlink to make old udevs happy */
590 if (dev->class)
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700591 return &dev->class->subsys.kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100592 else if (parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100593 return &parent->kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100594
Cornelia Huckc744aea2007-01-08 20:16:44 +0100595 return NULL;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100596}
597#else
Kay Sievers86406242007-03-14 03:25:56 +0100598static struct kobject *virtual_device_parent(struct device *dev)
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700599{
Kay Sievers86406242007-03-14 03:25:56 +0100600 static struct kobject *virtual_dir = NULL;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700601
Kay Sievers86406242007-03-14 03:25:56 +0100602 if (!virtual_dir)
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700603 virtual_dir = kobject_add_dir(&devices_subsys.kobj, "virtual");
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700604
Kay Sievers86406242007-03-14 03:25:56 +0100605 return virtual_dir;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700606}
607
Cornelia Huckc744aea2007-01-08 20:16:44 +0100608static struct kobject * get_device_parent(struct device *dev,
609 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100610{
Kay Sievers86406242007-03-14 03:25:56 +0100611 if (dev->class) {
612 struct kobject *kobj = NULL;
613 struct kobject *parent_kobj;
614 struct kobject *k;
615
616 /*
617 * If we have no parent, we live in "virtual".
618 * Class-devices with a bus-device as parent, live
619 * in a class-directory to prevent namespace collisions.
620 */
621 if (parent == NULL)
622 parent_kobj = virtual_device_parent(dev);
623 else if (parent->class)
624 return &parent->kobj;
625 else
626 parent_kobj = &parent->kobj;
627
628 /* find our class-directory at the parent and reference it */
629 spin_lock(&dev->class->class_dirs.list_lock);
630 list_for_each_entry(k, &dev->class->class_dirs.list, entry)
631 if (k->parent == parent_kobj) {
632 kobj = kobject_get(k);
633 break;
634 }
635 spin_unlock(&dev->class->class_dirs.list_lock);
636 if (kobj)
637 return kobj;
638
639 /* or create a new class-directory at the parent device */
640 return kobject_kset_add_dir(&dev->class->class_dirs,
641 parent_kobj, dev->class->name);
642 }
643
644 if (parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100645 return &parent->kobj;
646 return NULL;
647}
Cornelia Huckc744aea2007-01-08 20:16:44 +0100648#endif
Kay Sievers86406242007-03-14 03:25:56 +0100649
Cornelia Huckc744aea2007-01-08 20:16:44 +0100650static int setup_parent(struct device *dev, struct device *parent)
651{
652 struct kobject *kobj;
653 kobj = get_device_parent(dev, parent);
654 if (IS_ERR(kobj))
655 return PTR_ERR(kobj);
656 if (kobj)
657 dev->kobj.parent = kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100658 return 0;
659}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100660
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700661static int device_add_class_symlinks(struct device *dev)
662{
663 int error;
664
665 if (!dev->class)
666 return 0;
667 error = sysfs_create_link(&dev->kobj, &dev->class->subsys.kobj,
668 "subsystem");
669 if (error)
670 goto out;
671 /*
672 * If this is not a "fake" compatible device, then create the
673 * symlink from the class to the device.
674 */
675 if (dev->kobj.parent != &dev->class->subsys.kobj) {
676 error = sysfs_create_link(&dev->class->subsys.kobj, &dev->kobj,
677 dev->bus_id);
678 if (error)
679 goto out_subsys;
680 }
Cornelia Huck27907682007-07-25 09:58:08 +0200681 if (dev->parent) {
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700682#ifdef CONFIG_SYSFS_DEPRECATED
683 {
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700684 struct device *parent = dev->parent;
685 char *class_name;
686
687 /*
688 * In old sysfs stacked class devices had 'device'
689 * link pointing to real device instead of parent
690 */
691 while (parent->class && !parent->bus && parent->parent)
692 parent = parent->parent;
693
694 error = sysfs_create_link(&dev->kobj,
695 &parent->kobj,
696 "device");
697 if (error)
698 goto out_busid;
699
700 class_name = make_class_name(dev->class->name,
701 &dev->kobj);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700702 if (class_name)
703 error = sysfs_create_link(&dev->parent->kobj,
704 &dev->kobj, class_name);
705 kfree(class_name);
706 if (error)
707 goto out_device;
708 }
Dmitry Torokhov4f01a752007-09-18 22:46:50 -0700709#else
710 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
711 "device");
712 if (error)
713 goto out_busid;
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700714#endif
715 }
716 return 0;
717
718#ifdef CONFIG_SYSFS_DEPRECATED
719out_device:
720 if (dev->parent)
721 sysfs_remove_link(&dev->kobj, "device");
722#endif
723out_busid:
724 if (dev->kobj.parent != &dev->class->subsys.kobj)
725 sysfs_remove_link(&dev->class->subsys.kobj, dev->bus_id);
726out_subsys:
727 sysfs_remove_link(&dev->kobj, "subsystem");
728out:
729 return error;
730}
731
732static void device_remove_class_symlinks(struct device *dev)
733{
734 if (!dev->class)
735 return;
736 if (dev->parent) {
737#ifdef CONFIG_SYSFS_DEPRECATED
738 char *class_name;
739
740 class_name = make_class_name(dev->class->name, &dev->kobj);
741 if (class_name) {
742 sysfs_remove_link(&dev->parent->kobj, class_name);
743 kfree(class_name);
744 }
745#endif
746 sysfs_remove_link(&dev->kobj, "device");
747 }
748 if (dev->kobj.parent != &dev->class->subsys.kobj)
749 sysfs_remove_link(&dev->class->subsys.kobj, dev->bus_id);
750 sysfs_remove_link(&dev->kobj, "subsystem");
751}
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753/**
754 * device_add - add device to device hierarchy.
755 * @dev: device.
756 *
757 * This is part 2 of device_register(), though may be called
758 * separately _iff_ device_initialize() has been called separately.
759 *
760 * This adds it to the kobject hierarchy via kobject_add(), adds it
761 * to the global and sibling lists for the device, then
762 * adds it to the other relevant subsystems of the driver model.
763 */
764int device_add(struct device *dev)
765{
766 struct device *parent = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200767 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 int error = -EINVAL;
769
770 dev = get_device(dev);
771 if (!dev || !strlen(dev->bus_id))
772 goto Error;
773
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100774 pr_debug("DEV: registering device: ID = '%s'\n", dev->bus_id);
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -0700775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 parent = get_device(dev->parent);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100777 error = setup_parent(dev, parent);
778 if (error)
779 goto Error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 /* first, register with generic layer. */
782 kobject_set_name(&dev->kobj, "%s", dev->bus_id);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100783 error = kobject_add(&dev->kobj);
784 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 goto Error;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200786
Brian Walsh37022642006-08-14 22:43:19 -0700787 /* notify platform of device entry */
788 if (platform_notify)
789 platform_notify(dev);
790
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000791 /* notify clients of device entry (new way) */
792 if (dev->bus)
793 blocking_notifier_call_chain(&dev->bus->bus_notifier,
794 BUS_NOTIFY_ADD_DEVICE, dev);
795
Tejun Heoad6a1e12007-06-14 03:45:17 +0900796 error = device_create_file(dev, &uevent_attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200797 if (error)
798 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200799
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700800 if (MAJOR(dev->devt)) {
Tejun Heoad6a1e12007-06-14 03:45:17 +0900801 error = device_create_file(dev, &devt_attr);
802 if (error)
Cornelia Hucka306eea2006-09-22 11:37:13 +0200803 goto ueventattrError;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700804 }
805
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700806 error = device_add_class_symlinks(dev);
807 if (error)
808 goto SymlinkError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700809 error = device_add_attrs(dev);
810 if (error)
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700811 goto AttrsError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700812 error = device_pm_add(dev);
813 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 goto PMError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700815 error = bus_add_device(dev);
816 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 goto BusError;
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +0200818 kobject_uevent(&dev->kobj, KOBJ_ADD);
Cornelia Huckc6a46692007-02-05 16:15:26 -0800819 bus_attach_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (parent)
James Bottomleyd856f1e2005-08-19 09:14:01 -0400821 klist_add_tail(&dev->knode_parent, &parent->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700823 if (dev->class) {
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700824 down(&dev->class->sem);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200825 /* tie the class to the device */
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700826 list_add_tail(&dev->node, &dev->class->devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200827
828 /* notify any interfaces that the device is here */
829 list_for_each_entry(class_intf, &dev->class->interfaces, node)
830 if (class_intf->add_dev)
831 class_intf->add_dev(dev, class_intf);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700832 up(&dev->class->sem);
833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 Done:
835 put_device(dev);
836 return error;
837 BusError:
838 device_pm_remove(dev);
839 PMError:
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000840 if (dev->bus)
841 blocking_notifier_call_chain(&dev->bus->bus_notifier,
842 BUS_NOTIFY_DEL_DEVICE, dev);
James Simmons82f0cf92007-02-21 17:44:51 +0000843 device_remove_attrs(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700844 AttrsError:
Cornelia Huck2ee97caf2007-07-18 01:43:47 -0700845 device_remove_class_symlinks(dev);
846 SymlinkError:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900847 if (MAJOR(dev->devt))
848 device_remove_file(dev, &devt_attr);
James Simmons82f0cf92007-02-21 17:44:51 +0000849
850 if (dev->class) {
851 sysfs_remove_link(&dev->kobj, "subsystem");
852 /* If this is not a "fake" compatible device, remove the
853 * symlink from the class to the device. */
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700854 if (dev->kobj.parent != &dev->class->subsys.kobj)
855 sysfs_remove_link(&dev->class->subsys.kobj,
James Simmons82f0cf92007-02-21 17:44:51 +0000856 dev->bus_id);
James Simmons82f0cf92007-02-21 17:44:51 +0000857 if (parent) {
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800858#ifdef CONFIG_SYSFS_DEPRECATED
James Simmons82f0cf92007-02-21 17:44:51 +0000859 char *class_name = make_class_name(dev->class->name,
860 &dev->kobj);
861 if (class_name)
862 sysfs_remove_link(&dev->parent->kobj,
863 class_name);
864 kfree(class_name);
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800865#endif
James Simmons82f0cf92007-02-21 17:44:51 +0000866 sysfs_remove_link(&dev->kobj, "device");
867 }
James Simmons82f0cf92007-02-21 17:44:51 +0000868 }
Cornelia Hucka306eea2006-09-22 11:37:13 +0200869 ueventattrError:
Tejun Heoad6a1e12007-06-14 03:45:17 +0900870 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700871 attrError:
Kay Sievers312c0042005-11-16 09:00:00 +0100872 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 kobject_del(&dev->kobj);
874 Error:
875 if (parent)
876 put_device(parent);
877 goto Done;
878}
879
880
881/**
882 * device_register - register a device with the system.
883 * @dev: pointer to the device structure
884 *
885 * This happens in two clean steps - initialize the device
886 * and add it to the system. The two steps can be called
887 * separately, but this is the easiest and most common.
888 * I.e. you should only call the two helpers separately if
889 * have a clearly defined need to use and refcount the device
890 * before it is added to the hierarchy.
891 */
892
893int device_register(struct device *dev)
894{
895 device_initialize(dev);
896 return device_add(dev);
897}
898
899
900/**
901 * get_device - increment reference count for device.
902 * @dev: device.
903 *
904 * This simply forwards the call to kobject_get(), though
905 * we do take care to provide for the case that we get a NULL
906 * pointer passed in.
907 */
908
909struct device * get_device(struct device * dev)
910{
911 return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
912}
913
914
915/**
916 * put_device - decrement reference count.
917 * @dev: device in question.
918 */
919void put_device(struct device * dev)
920{
921 if (dev)
922 kobject_put(&dev->kobj);
923}
924
925
926/**
927 * device_del - delete device from system.
928 * @dev: device.
929 *
930 * This is the first part of the device unregistration
931 * sequence. This removes the device from the lists we control
932 * from here, has it removed from the other driver model
933 * subsystems it was added to in device_add(), and removes it
934 * from the kobject hierarchy.
935 *
936 * NOTE: this should be called manually _iff_ device_add() was
937 * also called manually.
938 */
939
940void device_del(struct device * dev)
941{
942 struct device * parent = dev->parent;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200943 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (parent)
Patrick Mocheld62c0f92005-06-24 08:39:33 -0700946 klist_del(&dev->knode_parent);
Tejun Heoad6a1e12007-06-14 03:45:17 +0900947 if (MAJOR(dev->devt))
948 device_remove_file(dev, &devt_attr);
Kay Sieversb9d9c822006-06-15 15:31:56 +0200949 if (dev->class) {
950 sysfs_remove_link(&dev->kobj, "subsystem");
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100951 /* If this is not a "fake" compatible device, remove the
952 * symlink from the class to the device. */
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700953 if (dev->kobj.parent != &dev->class->subsys.kobj)
954 sysfs_remove_link(&dev->class->subsys.kobj,
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100955 dev->bus_id);
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -0700956 if (parent) {
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800957#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200958 char *class_name = make_class_name(dev->class->name,
959 &dev->kobj);
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100960 if (class_name)
961 sysfs_remove_link(&dev->parent->kobj,
962 class_name);
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200963 kfree(class_name);
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800964#endif
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200965 sysfs_remove_link(&dev->kobj, "device");
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -0700966 }
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200967
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700968 down(&dev->class->sem);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200969 /* notify any interfaces that the device is now gone */
970 list_for_each_entry(class_intf, &dev->class->interfaces, node)
971 if (class_intf->remove_dev)
972 class_intf->remove_dev(dev, class_intf);
973 /* remove the device from the class list */
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700974 list_del_init(&dev->node);
975 up(&dev->class->sem);
Kay Sievers86406242007-03-14 03:25:56 +0100976
977 /* If we live in a parent class-directory, unreference it */
978 if (dev->kobj.parent->kset == &dev->class->class_dirs) {
979 struct device *d;
980 int other = 0;
981
982 /*
983 * if we are the last child of our class, delete
984 * our class-directory at this parent
985 */
986 down(&dev->class->sem);
987 list_for_each_entry(d, &dev->class->devices, node) {
988 if (d == dev)
989 continue;
990 if (d->kobj.parent == dev->kobj.parent) {
991 other = 1;
992 break;
993 }
994 }
995 if (!other)
996 kobject_del(dev->kobj.parent);
997
998 kobject_put(dev->kobj.parent);
999 up(&dev->class->sem);
1000 }
Kay Sieversb9d9c822006-06-15 15:31:56 +02001001 }
Tejun Heoad6a1e12007-06-14 03:45:17 +09001002 device_remove_file(dev, &uevent_attr);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -07001003 device_remove_attrs(dev);
Benjamin Herrenschmidt28953532006-11-08 19:46:14 -08001004 bus_remove_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Tejun Heo2f8d16a2007-03-09 19:34:19 +09001006 /*
1007 * Some platform devices are driven without driver attached
1008 * and managed resources may have been acquired. Make sure
1009 * all resources are released.
1010 */
1011 devres_release_all(dev);
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 /* Notify the platform of the removal, in case they
1014 * need to do anything...
1015 */
1016 if (platform_notify_remove)
1017 platform_notify_remove(dev);
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +10001018 if (dev->bus)
1019 blocking_notifier_call_chain(&dev->bus->bus_notifier,
1020 BUS_NOTIFY_DEL_DEVICE, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 device_pm_remove(dev);
Kay Sievers312c0042005-11-16 09:00:00 +01001022 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 kobject_del(&dev->kobj);
1024 if (parent)
1025 put_device(parent);
1026}
1027
1028/**
1029 * device_unregister - unregister device from system.
1030 * @dev: device going away.
1031 *
1032 * We do this in two parts, like we do device_register(). First,
1033 * we remove it from all the subsystems with device_del(), then
1034 * we decrement the reference count via put_device(). If that
1035 * is the final reference count, the device will be cleaned up
1036 * via device_release() above. Otherwise, the structure will
1037 * stick around until the final reference to the device is dropped.
1038 */
1039void device_unregister(struct device * dev)
1040{
1041 pr_debug("DEV: Unregistering device. ID = '%s'\n", dev->bus_id);
1042 device_del(dev);
1043 put_device(dev);
1044}
1045
1046
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001047static struct device * next_device(struct klist_iter * i)
1048{
1049 struct klist_node * n = klist_next(i);
1050 return n ? container_of(n, struct device, knode_parent) : NULL;
1051}
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053/**
1054 * device_for_each_child - device child iterator.
Randy Dunlapc41455f2005-10-23 11:59:14 -07001055 * @parent: parent struct device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 * @data: data for the callback.
1057 * @fn: function to be called for each device.
1058 *
Randy Dunlapc41455f2005-10-23 11:59:14 -07001059 * Iterate over @parent's child devices, and call @fn for each,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 * passing it @data.
1061 *
1062 * We check the return of @fn each time. If it returns anything
1063 * other than 0, we break out and return that value.
1064 */
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001065int device_for_each_child(struct device * parent, void * data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 int (*fn)(struct device *, void *))
1067{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001068 struct klist_iter i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 struct device * child;
1070 int error = 0;
1071
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001072 klist_iter_init(&parent->klist_children, &i);
1073 while ((child = next_device(&i)) && !error)
1074 error = fn(child, data);
1075 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return error;
1077}
1078
Cornelia Huck5ab69982006-11-16 15:42:07 +01001079/**
1080 * device_find_child - device iterator for locating a particular device.
1081 * @parent: parent struct device
1082 * @data: Data to pass to match function
1083 * @match: Callback function to check device
1084 *
1085 * This is similar to the device_for_each_child() function above, but it
1086 * returns a reference to a device that is 'found' for later use, as
1087 * determined by the @match callback.
1088 *
1089 * The callback should return 0 if the device doesn't match and non-zero
1090 * if it does. If the callback returns non-zero and a reference to the
1091 * current device can be obtained, this function will return to the caller
1092 * and not iterate over any more devices.
1093 */
1094struct device * device_find_child(struct device *parent, void *data,
1095 int (*match)(struct device *, void *))
1096{
1097 struct klist_iter i;
1098 struct device *child;
1099
1100 if (!parent)
1101 return NULL;
1102
1103 klist_iter_init(&parent->klist_children, &i);
1104 while ((child = next_device(&i)))
1105 if (match(child, data) && get_device(child))
1106 break;
1107 klist_iter_exit(&i);
1108 return child;
1109}
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111int __init devices_init(void)
1112{
1113 return subsystem_register(&devices_subsys);
1114}
1115
1116EXPORT_SYMBOL_GPL(device_for_each_child);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001117EXPORT_SYMBOL_GPL(device_find_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119EXPORT_SYMBOL_GPL(device_initialize);
1120EXPORT_SYMBOL_GPL(device_add);
1121EXPORT_SYMBOL_GPL(device_register);
1122
1123EXPORT_SYMBOL_GPL(device_del);
1124EXPORT_SYMBOL_GPL(device_unregister);
1125EXPORT_SYMBOL_GPL(get_device);
1126EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128EXPORT_SYMBOL_GPL(device_create_file);
1129EXPORT_SYMBOL_GPL(device_remove_file);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001130
1131
1132static void device_create_release(struct device *dev)
1133{
1134 pr_debug("%s called for %s\n", __FUNCTION__, dev->bus_id);
1135 kfree(dev);
1136}
1137
1138/**
1139 * device_create - creates a device and registers it with sysfs
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001140 * @class: pointer to the struct class that this device should be registered to
1141 * @parent: pointer to the parent struct device of this new device, if any
1142 * @devt: the dev_t for the char device to be added
1143 * @fmt: string for the device's name
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001144 *
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001145 * This function can be used by char device classes. A struct device
1146 * will be created in sysfs, registered to the specified class.
1147 *
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001148 * A "dev" file will be created, showing the dev_t for the device, if
1149 * the dev_t is not 0,0.
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001150 * If a pointer to a parent struct device is passed in, the newly created
1151 * struct device will be a child of that device in sysfs.
1152 * The pointer to the struct device will be returned from the call.
1153 * Any further sysfs files that might be required can be created using this
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001154 * pointer.
1155 *
1156 * Note: the struct class passed to this function must have previously
1157 * been created with a call to class_create().
1158 */
1159struct device *device_create(struct class *class, struct device *parent,
Greg Kroah-Hartman5cbe5f82006-08-10 01:19:19 -04001160 dev_t devt, const char *fmt, ...)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001161{
1162 va_list args;
1163 struct device *dev = NULL;
1164 int retval = -ENODEV;
1165
1166 if (class == NULL || IS_ERR(class))
1167 goto error;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001168
1169 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1170 if (!dev) {
1171 retval = -ENOMEM;
1172 goto error;
1173 }
1174
1175 dev->devt = devt;
1176 dev->class = class;
1177 dev->parent = parent;
1178 dev->release = device_create_release;
1179
1180 va_start(args, fmt);
1181 vsnprintf(dev->bus_id, BUS_ID_SIZE, fmt, args);
1182 va_end(args);
1183 retval = device_register(dev);
1184 if (retval)
1185 goto error;
1186
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001187 return dev;
1188
1189error:
1190 kfree(dev);
1191 return ERR_PTR(retval);
1192}
1193EXPORT_SYMBOL_GPL(device_create);
1194
1195/**
1196 * device_destroy - removes a device that was created with device_create()
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001197 * @class: pointer to the struct class that this device was registered with
1198 * @devt: the dev_t of the device that was previously registered
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001199 *
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001200 * This call unregisters and cleans up a device that was created with a
1201 * call to device_create().
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001202 */
1203void device_destroy(struct class *class, dev_t devt)
1204{
1205 struct device *dev = NULL;
1206 struct device *dev_tmp;
1207
1208 down(&class->sem);
1209 list_for_each_entry(dev_tmp, &class->devices, node) {
1210 if (dev_tmp->devt == devt) {
1211 dev = dev_tmp;
1212 break;
1213 }
1214 }
1215 up(&class->sem);
1216
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -07001217 if (dev)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001218 device_unregister(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001219}
1220EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001221
1222/**
1223 * device_rename - renames a device
1224 * @dev: the pointer to the struct device to be renamed
1225 * @new_name: the new name of the device
1226 */
1227int device_rename(struct device *dev, char *new_name)
1228{
1229 char *old_class_name = NULL;
1230 char *new_class_name = NULL;
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001231 char *old_device_name = NULL;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001232 int error;
1233
1234 dev = get_device(dev);
1235 if (!dev)
1236 return -EINVAL;
1237
1238 pr_debug("DEVICE: renaming '%s' to '%s'\n", dev->bus_id, new_name);
1239
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001240#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001241 if ((dev->class) && (dev->parent))
1242 old_class_name = make_class_name(dev->class->name, &dev->kobj);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001243#endif
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001244
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001245 old_device_name = kmalloc(BUS_ID_SIZE, GFP_KERNEL);
1246 if (!old_device_name) {
1247 error = -ENOMEM;
1248 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001249 }
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001250 strlcpy(old_device_name, dev->bus_id, BUS_ID_SIZE);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001251 strlcpy(dev->bus_id, new_name, BUS_ID_SIZE);
1252
1253 error = kobject_rename(&dev->kobj, new_name);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001254 if (error) {
1255 strlcpy(dev->bus_id, old_device_name, BUS_ID_SIZE);
1256 goto out;
1257 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001258
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001259#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001260 if (old_class_name) {
1261 new_class_name = make_class_name(dev->class->name, &dev->kobj);
1262 if (new_class_name) {
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001263 error = sysfs_create_link(&dev->parent->kobj,
1264 &dev->kobj, new_class_name);
1265 if (error)
1266 goto out;
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001267 sysfs_remove_link(&dev->parent->kobj, old_class_name);
1268 }
1269 }
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001270#endif
1271
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001272 if (dev->class) {
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001273 sysfs_remove_link(&dev->class->subsys.kobj, old_device_name);
1274 error = sysfs_create_link(&dev->class->subsys.kobj, &dev->kobj,
1275 dev->bus_id);
1276 if (error) {
1277 /* Uh... how to unravel this if restoring can fail? */
1278 dev_err(dev, "%s: sysfs_create_symlink failed (%d)\n",
1279 __FUNCTION__, error);
1280 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001281 }
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001282out:
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001283 put_device(dev);
1284
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001285 kfree(new_class_name);
Jesper Juhl952ab432006-09-28 23:56:01 +02001286 kfree(old_class_name);
Cornelia Huck2ee97caf2007-07-18 01:43:47 -07001287 kfree(old_device_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001288
1289 return error;
1290}
Johannes Berga2807db2007-02-28 12:38:31 +01001291EXPORT_SYMBOL_GPL(device_rename);
Cornelia Huck8a824722006-11-20 17:07:51 +01001292
1293static int device_move_class_links(struct device *dev,
1294 struct device *old_parent,
1295 struct device *new_parent)
1296{
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001297 int error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001298#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huck8a824722006-11-20 17:07:51 +01001299 char *class_name;
1300
1301 class_name = make_class_name(dev->class->name, &dev->kobj);
1302 if (!class_name) {
Cornelia Huckcb360bb2006-11-27 10:35:05 +01001303 error = -ENOMEM;
Cornelia Huck8a824722006-11-20 17:07:51 +01001304 goto out;
1305 }
1306 if (old_parent) {
1307 sysfs_remove_link(&dev->kobj, "device");
1308 sysfs_remove_link(&old_parent->kobj, class_name);
1309 }
Cornelia Huckc744aea2007-01-08 20:16:44 +01001310 if (new_parent) {
1311 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1312 "device");
1313 if (error)
1314 goto out;
1315 error = sysfs_create_link(&new_parent->kobj, &dev->kobj,
1316 class_name);
1317 if (error)
1318 sysfs_remove_link(&dev->kobj, "device");
1319 }
1320 else
1321 error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001322out:
1323 kfree(class_name);
1324 return error;
1325#else
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001326 if (old_parent)
1327 sysfs_remove_link(&dev->kobj, "device");
1328 if (new_parent)
1329 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1330 "device");
1331 return error;
Cornelia Huck8a824722006-11-20 17:07:51 +01001332#endif
1333}
1334
1335/**
1336 * device_move - moves a device to a new parent
1337 * @dev: the pointer to the struct device to be moved
Cornelia Huckc744aea2007-01-08 20:16:44 +01001338 * @new_parent: the new parent of the device (can by NULL)
Cornelia Huck8a824722006-11-20 17:07:51 +01001339 */
1340int device_move(struct device *dev, struct device *new_parent)
1341{
1342 int error;
1343 struct device *old_parent;
Cornelia Huckc744aea2007-01-08 20:16:44 +01001344 struct kobject *new_parent_kobj;
Cornelia Huck8a824722006-11-20 17:07:51 +01001345
1346 dev = get_device(dev);
1347 if (!dev)
1348 return -EINVAL;
1349
Cornelia Huck8a824722006-11-20 17:07:51 +01001350 new_parent = get_device(new_parent);
Cornelia Huckc744aea2007-01-08 20:16:44 +01001351 new_parent_kobj = get_device_parent (dev, new_parent);
1352 if (IS_ERR(new_parent_kobj)) {
1353 error = PTR_ERR(new_parent_kobj);
1354 put_device(new_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +01001355 goto out;
1356 }
1357 pr_debug("DEVICE: moving '%s' to '%s'\n", dev->bus_id,
Cornelia Huckc744aea2007-01-08 20:16:44 +01001358 new_parent ? new_parent->bus_id : "<NULL>");
1359 error = kobject_move(&dev->kobj, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001360 if (error) {
1361 put_device(new_parent);
1362 goto out;
1363 }
1364 old_parent = dev->parent;
1365 dev->parent = new_parent;
1366 if (old_parent)
Cornelia Huckacf02d22006-11-22 17:49:39 +01001367 klist_remove(&dev->knode_parent);
Cornelia Huckc744aea2007-01-08 20:16:44 +01001368 if (new_parent)
1369 klist_add_tail(&dev->knode_parent, &new_parent->klist_children);
Cornelia Huck8a824722006-11-20 17:07:51 +01001370 if (!dev->class)
1371 goto out_put;
1372 error = device_move_class_links(dev, old_parent, new_parent);
1373 if (error) {
1374 /* We ignore errors on cleanup since we're hosed anyway... */
1375 device_move_class_links(dev, new_parent, old_parent);
1376 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
Cornelia Huckc744aea2007-01-08 20:16:44 +01001377 if (new_parent)
1378 klist_remove(&dev->knode_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +01001379 if (old_parent)
1380 klist_add_tail(&dev->knode_parent,
1381 &old_parent->klist_children);
1382 }
1383 put_device(new_parent);
1384 goto out;
1385 }
1386out_put:
1387 put_device(old_parent);
1388out:
1389 put_device(dev);
1390 return error;
1391}
1392
1393EXPORT_SYMBOL_GPL(device_move);