blob: cff4fbfbb055285a365dfa2f840a264facfc3747 [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 Sievers22af74f2007-04-06 01:40:38 +0200306 if (memcmp(buf, "add", 3) != 0)
307 dev_err(dev, "uevent: unsupported action-string; this will "
308 "be ignored in a future kernel version");
Kay Sievers312c0042005-11-16 09:00:00 +0100309 kobject_uevent(&dev->kobj, KOBJ_ADD);
Kay Sieversa7fd6702005-10-01 14:49:43 +0200310 return count;
311}
312
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500313static int device_add_attributes(struct device *dev,
314 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700315{
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700316 int error = 0;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500317 int i;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700318
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500319 if (attrs) {
320 for (i = 0; attr_name(attrs[i]); i++) {
321 error = device_create_file(dev, &attrs[i]);
322 if (error)
323 break;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700324 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500325 if (error)
326 while (--i >= 0)
327 device_remove_file(dev, &attrs[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700328 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700329 return error;
330}
331
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500332static void device_remove_attributes(struct device *dev,
333 struct device_attribute *attrs)
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700334{
335 int i;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500336
337 if (attrs)
338 for (i = 0; attr_name(attrs[i]); i++)
339 device_remove_file(dev, &attrs[i]);
340}
341
342static int device_add_groups(struct device *dev,
343 struct attribute_group **groups)
344{
345 int error = 0;
346 int i;
347
348 if (groups) {
349 for (i = 0; groups[i]; i++) {
350 error = sysfs_create_group(&dev->kobj, groups[i]);
351 if (error) {
352 while (--i >= 0)
353 sysfs_remove_group(&dev->kobj, groups[i]);
354 break;
355 }
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700356 }
357 }
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500358 return error;
359}
360
361static void device_remove_groups(struct device *dev,
362 struct attribute_group **groups)
363{
364 int i;
365
366 if (groups)
367 for (i = 0; groups[i]; i++)
368 sysfs_remove_group(&dev->kobj, groups[i]);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700369}
370
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700371static int device_add_attrs(struct device *dev)
372{
373 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200374 struct device_type *type = dev->type;
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500375 int error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700376
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500377 if (class) {
378 error = device_add_attributes(dev, class->dev_attrs);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200379 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500380 return error;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700381 }
Kay Sieversf9f852d2006-10-07 21:54:55 +0200382
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500383 if (type) {
384 error = device_add_groups(dev, type->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200385 if (error)
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500386 goto err_remove_class_attrs;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200387 }
388
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500389 error = device_add_groups(dev, dev->groups);
390 if (error)
391 goto err_remove_type_groups;
392
393 return 0;
394
395 err_remove_type_groups:
396 if (type)
397 device_remove_groups(dev, type->groups);
398 err_remove_class_attrs:
399 if (class)
400 device_remove_attributes(dev, class->dev_attrs);
401
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700402 return error;
403}
404
405static void device_remove_attrs(struct device *dev)
406{
407 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200408 struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700409
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500410 device_remove_groups(dev, dev->groups);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200411
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500412 if (type)
413 device_remove_groups(dev, type->groups);
414
415 if (class)
416 device_remove_attributes(dev, class->dev_attrs);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700417}
418
419
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700420static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
421 char *buf)
422{
423 return print_dev_t(buf, dev->devt);
424}
425
Martin Waitz0863afb2006-01-09 20:53:55 -0800426/*
427 * devices_subsys - structure to be registered with kobject core.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 */
429
Kay Sievers312c0042005-11-16 09:00:00 +0100430decl_subsys(devices, &ktype_device, &device_uevent_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432
433/**
434 * device_create_file - create sysfs attribute file for device.
435 * @dev: device.
436 * @attr: device attribute descriptor.
437 */
438
439int device_create_file(struct device * dev, struct device_attribute * attr)
440{
441 int error = 0;
442 if (get_device(dev)) {
443 error = sysfs_create_file(&dev->kobj, &attr->attr);
444 put_device(dev);
445 }
446 return error;
447}
448
449/**
450 * device_remove_file - remove sysfs attribute file.
451 * @dev: device.
452 * @attr: device attribute descriptor.
453 */
454
455void device_remove_file(struct device * dev, struct device_attribute * attr)
456{
457 if (get_device(dev)) {
458 sysfs_remove_file(&dev->kobj, &attr->attr);
459 put_device(dev);
460 }
461}
462
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700463/**
464 * device_create_bin_file - create sysfs binary attribute file for device.
465 * @dev: device.
466 * @attr: device binary attribute descriptor.
467 */
468int device_create_bin_file(struct device *dev, struct bin_attribute *attr)
469{
470 int error = -EINVAL;
471 if (dev)
472 error = sysfs_create_bin_file(&dev->kobj, attr);
473 return error;
474}
475EXPORT_SYMBOL_GPL(device_create_bin_file);
476
477/**
478 * device_remove_bin_file - remove sysfs binary attribute file
479 * @dev: device.
480 * @attr: device binary attribute descriptor.
481 */
482void device_remove_bin_file(struct device *dev, struct bin_attribute *attr)
483{
484 if (dev)
485 sysfs_remove_bin_file(&dev->kobj, attr);
486}
487EXPORT_SYMBOL_GPL(device_remove_bin_file);
488
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400489/**
Alan Stern523ded72007-04-26 00:12:04 -0700490 * device_schedule_callback_owner - helper to schedule a callback for a device
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400491 * @dev: device.
492 * @func: callback function to invoke later.
Alan Stern523ded72007-04-26 00:12:04 -0700493 * @owner: module owning the callback routine
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400494 *
495 * Attribute methods must not unregister themselves or their parent device
496 * (which would amount to the same thing). Attempts to do so will deadlock,
497 * since unregistration is mutually exclusive with driver callbacks.
498 *
499 * Instead methods can call this routine, which will attempt to allocate
500 * and schedule a workqueue request to call back @func with @dev as its
501 * argument in the workqueue's process context. @dev will be pinned until
502 * @func returns.
503 *
Alan Stern523ded72007-04-26 00:12:04 -0700504 * This routine is usually called via the inline device_schedule_callback(),
505 * which automatically sets @owner to THIS_MODULE.
506 *
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400507 * Returns 0 if the request was submitted, -ENOMEM if storage could not
Alan Stern523ded72007-04-26 00:12:04 -0700508 * be allocated, -ENODEV if a reference to @owner isn't available.
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400509 *
510 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
511 * underlying sysfs routine (since it is intended for use by attribute
512 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
513 */
Alan Stern523ded72007-04-26 00:12:04 -0700514int device_schedule_callback_owner(struct device *dev,
515 void (*func)(struct device *), struct module *owner)
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400516{
517 return sysfs_schedule_callback(&dev->kobj,
Alan Stern523ded72007-04-26 00:12:04 -0700518 (void (*)(void *)) func, dev, owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400519}
Alan Stern523ded72007-04-26 00:12:04 -0700520EXPORT_SYMBOL_GPL(device_schedule_callback_owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400521
James Bottomley34bb61f2005-09-06 16:56:51 -0700522static void klist_children_get(struct klist_node *n)
523{
524 struct device *dev = container_of(n, struct device, knode_parent);
525
526 get_device(dev);
527}
528
529static void klist_children_put(struct klist_node *n)
530{
531 struct device *dev = container_of(n, struct device, knode_parent);
532
533 put_device(dev);
534}
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537/**
538 * device_initialize - init device structure.
539 * @dev: device.
540 *
541 * This prepares the device for use by other layers,
542 * including adding it to the device hierarchy.
543 * It is the first half of device_register(), if called by
544 * that, though it can also be called separately, so one
545 * may use @dev's fields (e.g. the refcount).
546 */
547
548void device_initialize(struct device *dev)
549{
550 kobj_set_kset_s(dev, devices_subsys);
551 kobject_init(&dev->kobj);
James Bottomley34bb61f2005-09-06 16:56:51 -0700552 klist_init(&dev->klist_children, klist_children_get,
553 klist_children_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 INIT_LIST_HEAD(&dev->dma_pools);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700555 INIT_LIST_HEAD(&dev->node);
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -0800556 init_MUTEX(&dev->sem);
Tejun Heo9ac78492007-01-20 16:00:26 +0900557 spin_lock_init(&dev->devres_lock);
558 INIT_LIST_HEAD(&dev->devres_head);
David Brownell0ac85242005-09-12 19:39:34 -0700559 device_init_wakeup(dev, 0);
Christoph Hellwig87348132006-12-06 20:32:33 -0800560 set_dev_node(dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100563#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100564static struct kobject * get_device_parent(struct device *dev,
565 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100566{
567 /* Set the parent to the class, not the parent device */
568 /* this keeps sysfs from having a symlink to make old udevs happy */
569 if (dev->class)
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700570 return &dev->class->subsys.kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100571 else if (parent)
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100572 return &parent->kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100573
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100574 return NULL;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100575}
576#else
Kay Sievers86406242007-03-14 03:25:56 +0100577static struct kobject *virtual_device_parent(struct device *dev)
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700578{
Kay Sievers86406242007-03-14 03:25:56 +0100579 static struct kobject *virtual_dir = NULL;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700580
Kay Sievers86406242007-03-14 03:25:56 +0100581 if (!virtual_dir)
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700582 virtual_dir = kobject_add_dir(&devices_subsys.kobj, "virtual");
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700583
Kay Sievers86406242007-03-14 03:25:56 +0100584 return virtual_dir;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700585}
586
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100587static struct kobject * get_device_parent(struct device *dev,
588 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100589{
Kay Sievers86406242007-03-14 03:25:56 +0100590 if (dev->class) {
591 struct kobject *kobj = NULL;
592 struct kobject *parent_kobj;
593 struct kobject *k;
594
595 /*
596 * If we have no parent, we live in "virtual".
597 * Class-devices with a bus-device as parent, live
598 * in a class-directory to prevent namespace collisions.
599 */
600 if (parent == NULL)
601 parent_kobj = virtual_device_parent(dev);
602 else if (parent->class)
603 return &parent->kobj;
604 else
605 parent_kobj = &parent->kobj;
606
607 /* find our class-directory at the parent and reference it */
608 spin_lock(&dev->class->class_dirs.list_lock);
609 list_for_each_entry(k, &dev->class->class_dirs.list, entry)
610 if (k->parent == parent_kobj) {
611 kobj = kobject_get(k);
612 break;
613 }
614 spin_unlock(&dev->class->class_dirs.list_lock);
615 if (kobj)
616 return kobj;
617
618 /* or create a new class-directory at the parent device */
619 return kobject_kset_add_dir(&dev->class->class_dirs,
620 parent_kobj, dev->class->name);
621 }
622
623 if (parent)
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100624 return &parent->kobj;
625 return NULL;
626}
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100627#endif
Kay Sievers86406242007-03-14 03:25:56 +0100628
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100629static int setup_parent(struct device *dev, struct device *parent)
630{
631 struct kobject *kobj;
632 kobj = get_device_parent(dev, parent);
633 if (IS_ERR(kobj))
634 return PTR_ERR(kobj);
635 if (kobj)
636 dev->kobj.parent = kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100637 return 0;
638}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640/**
641 * device_add - add device to device hierarchy.
642 * @dev: device.
643 *
644 * This is part 2 of device_register(), though may be called
645 * separately _iff_ device_initialize() has been called separately.
646 *
647 * This adds it to the kobject hierarchy via kobject_add(), adds it
648 * to the global and sibling lists for the device, then
649 * adds it to the other relevant subsystems of the driver model.
650 */
651int device_add(struct device *dev)
652{
653 struct device *parent = NULL;
Greg Kroah-Hartmane9a7d302006-06-20 13:59:20 -0700654 char *class_name = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200655 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 int error = -EINVAL;
657
658 dev = get_device(dev);
659 if (!dev || !strlen(dev->bus_id))
660 goto Error;
661
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100662 pr_debug("DEV: registering device: ID = '%s'\n", dev->bus_id);
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -0700663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 parent = get_device(dev->parent);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100665 error = setup_parent(dev, parent);
666 if (error)
667 goto Error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 /* first, register with generic layer. */
670 kobject_set_name(&dev->kobj, "%s", dev->bus_id);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100671 error = kobject_add(&dev->kobj);
672 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 goto Error;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200674
Brian Walsh37022642006-08-14 22:43:19 -0700675 /* notify platform of device entry */
676 if (platform_notify)
677 platform_notify(dev);
678
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000679 /* notify clients of device entry (new way) */
680 if (dev->bus)
681 blocking_notifier_call_chain(&dev->bus->bus_notifier,
682 BUS_NOTIFY_ADD_DEVICE, dev);
683
Kay Sieversa7fd6702005-10-01 14:49:43 +0200684 dev->uevent_attr.attr.name = "uevent";
Kay Sievers16574dc2007-04-06 01:40:38 +0200685 dev->uevent_attr.attr.mode = S_IRUGO | S_IWUSR;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200686 if (dev->driver)
687 dev->uevent_attr.attr.owner = dev->driver->owner;
688 dev->uevent_attr.store = store_uevent;
Kay Sievers16574dc2007-04-06 01:40:38 +0200689 dev->uevent_attr.show = show_uevent;
Cornelia Hucka306eea2006-09-22 11:37:13 +0200690 error = device_create_file(dev, &dev->uevent_attr);
691 if (error)
692 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200693
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700694 if (MAJOR(dev->devt)) {
695 struct device_attribute *attr;
696 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
697 if (!attr) {
698 error = -ENOMEM;
Cornelia Hucka306eea2006-09-22 11:37:13 +0200699 goto ueventattrError;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700700 }
701 attr->attr.name = "dev";
702 attr->attr.mode = S_IRUGO;
703 if (dev->driver)
704 attr->attr.owner = dev->driver->owner;
705 attr->show = show_dev;
706 error = device_create_file(dev, attr);
707 if (error) {
708 kfree(attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200709 goto ueventattrError;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700710 }
711
712 dev->devt_attr = attr;
713 }
714
Kay Sieversb9d9c822006-06-15 15:31:56 +0200715 if (dev->class) {
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700716 sysfs_create_link(&dev->kobj, &dev->class->subsys.kobj,
Kay Sieversb9d9c822006-06-15 15:31:56 +0200717 "subsystem");
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100718 /* If this is not a "fake" compatible device, then create the
719 * symlink from the class to the device. */
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700720 if (dev->kobj.parent != &dev->class->subsys.kobj)
721 sysfs_create_link(&dev->class->subsys.kobj,
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100722 &dev->kobj, dev->bus_id);
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -0700723 if (parent) {
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100724 sysfs_create_link(&dev->kobj, &dev->parent->kobj,
725 "device");
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800726#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100727 class_name = make_class_name(dev->class->name,
728 &dev->kobj);
729 if (class_name)
730 sysfs_create_link(&dev->parent->kobj,
731 &dev->kobj, class_name);
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200732#endif
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800733 }
Kay Sieversb9d9c822006-06-15 15:31:56 +0200734 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700735
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700736 error = device_add_attrs(dev);
737 if (error)
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700738 goto AttrsError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700739 error = device_pm_add(dev);
740 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 goto PMError;
Cornelia Huckdc0afa82007-07-09 11:39:18 -0700742 error = bus_add_device(dev);
743 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 goto BusError;
Cornelia Huck83b5fb4c2007-03-29 11:12:11 +0200745 kobject_uevent(&dev->kobj, KOBJ_ADD);
Cornelia Huckc6a46692007-02-05 16:15:26 -0800746 bus_attach_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if (parent)
James Bottomleyd856f1e32005-08-19 09:14:01 -0400748 klist_add_tail(&dev->knode_parent, &parent->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700750 if (dev->class) {
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700751 down(&dev->class->sem);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200752 /* tie the class to the device */
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700753 list_add_tail(&dev->node, &dev->class->devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200754
755 /* notify any interfaces that the device is here */
756 list_for_each_entry(class_intf, &dev->class->interfaces, node)
757 if (class_intf->add_dev)
758 class_intf->add_dev(dev, class_intf);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700759 up(&dev->class->sem);
760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 Done:
Dmitry Torokhov621a1672007-03-10 01:37:34 -0500762 kfree(class_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 put_device(dev);
764 return error;
765 BusError:
766 device_pm_remove(dev);
767 PMError:
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000768 if (dev->bus)
769 blocking_notifier_call_chain(&dev->bus->bus_notifier,
770 BUS_NOTIFY_DEL_DEVICE, dev);
James Simmons82f0cf92007-02-21 17:44:51 +0000771 device_remove_attrs(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700772 AttrsError:
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700773 if (dev->devt_attr) {
774 device_remove_file(dev, dev->devt_attr);
775 kfree(dev->devt_attr);
776 }
James Simmons82f0cf92007-02-21 17:44:51 +0000777
778 if (dev->class) {
779 sysfs_remove_link(&dev->kobj, "subsystem");
780 /* If this is not a "fake" compatible device, remove the
781 * symlink from the class to the device. */
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700782 if (dev->kobj.parent != &dev->class->subsys.kobj)
783 sysfs_remove_link(&dev->class->subsys.kobj,
James Simmons82f0cf92007-02-21 17:44:51 +0000784 dev->bus_id);
James Simmons82f0cf92007-02-21 17:44:51 +0000785 if (parent) {
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800786#ifdef CONFIG_SYSFS_DEPRECATED
James Simmons82f0cf92007-02-21 17:44:51 +0000787 char *class_name = make_class_name(dev->class->name,
788 &dev->kobj);
789 if (class_name)
790 sysfs_remove_link(&dev->parent->kobj,
791 class_name);
792 kfree(class_name);
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800793#endif
James Simmons82f0cf92007-02-21 17:44:51 +0000794 sysfs_remove_link(&dev->kobj, "device");
795 }
James Simmons82f0cf92007-02-21 17:44:51 +0000796 }
Cornelia Hucka306eea2006-09-22 11:37:13 +0200797 ueventattrError:
798 device_remove_file(dev, &dev->uevent_attr);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700799 attrError:
Kay Sievers312c0042005-11-16 09:00:00 +0100800 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 kobject_del(&dev->kobj);
802 Error:
803 if (parent)
804 put_device(parent);
805 goto Done;
806}
807
808
809/**
810 * device_register - register a device with the system.
811 * @dev: pointer to the device structure
812 *
813 * This happens in two clean steps - initialize the device
814 * and add it to the system. The two steps can be called
815 * separately, but this is the easiest and most common.
816 * I.e. you should only call the two helpers separately if
817 * have a clearly defined need to use and refcount the device
818 * before it is added to the hierarchy.
819 */
820
821int device_register(struct device *dev)
822{
823 device_initialize(dev);
824 return device_add(dev);
825}
826
827
828/**
829 * get_device - increment reference count for device.
830 * @dev: device.
831 *
832 * This simply forwards the call to kobject_get(), though
833 * we do take care to provide for the case that we get a NULL
834 * pointer passed in.
835 */
836
837struct device * get_device(struct device * dev)
838{
839 return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
840}
841
842
843/**
844 * put_device - decrement reference count.
845 * @dev: device in question.
846 */
847void put_device(struct device * dev)
848{
849 if (dev)
850 kobject_put(&dev->kobj);
851}
852
853
854/**
855 * device_del - delete device from system.
856 * @dev: device.
857 *
858 * This is the first part of the device unregistration
859 * sequence. This removes the device from the lists we control
860 * from here, has it removed from the other driver model
861 * subsystems it was added to in device_add(), and removes it
862 * from the kobject hierarchy.
863 *
864 * NOTE: this should be called manually _iff_ device_add() was
865 * also called manually.
866 */
867
868void device_del(struct device * dev)
869{
870 struct device * parent = dev->parent;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200871 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (parent)
Patrick Mocheld62c0f92005-06-24 08:39:33 -0700874 klist_del(&dev->knode_parent);
Catalin Marinas82189b92006-11-25 11:09:30 -0800875 if (dev->devt_attr) {
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700876 device_remove_file(dev, dev->devt_attr);
Catalin Marinas82189b92006-11-25 11:09:30 -0800877 kfree(dev->devt_attr);
878 }
Kay Sieversb9d9c822006-06-15 15:31:56 +0200879 if (dev->class) {
880 sysfs_remove_link(&dev->kobj, "subsystem");
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100881 /* If this is not a "fake" compatible device, remove the
882 * symlink from the class to the device. */
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700883 if (dev->kobj.parent != &dev->class->subsys.kobj)
884 sysfs_remove_link(&dev->class->subsys.kobj,
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100885 dev->bus_id);
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -0700886 if (parent) {
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800887#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200888 char *class_name = make_class_name(dev->class->name,
889 &dev->kobj);
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100890 if (class_name)
891 sysfs_remove_link(&dev->parent->kobj,
892 class_name);
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200893 kfree(class_name);
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800894#endif
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200895 sysfs_remove_link(&dev->kobj, "device");
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -0700896 }
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200897
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700898 down(&dev->class->sem);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200899 /* notify any interfaces that the device is now gone */
900 list_for_each_entry(class_intf, &dev->class->interfaces, node)
901 if (class_intf->remove_dev)
902 class_intf->remove_dev(dev, class_intf);
903 /* remove the device from the class list */
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700904 list_del_init(&dev->node);
905 up(&dev->class->sem);
Kay Sievers86406242007-03-14 03:25:56 +0100906
907 /* If we live in a parent class-directory, unreference it */
908 if (dev->kobj.parent->kset == &dev->class->class_dirs) {
909 struct device *d;
910 int other = 0;
911
912 /*
913 * if we are the last child of our class, delete
914 * our class-directory at this parent
915 */
916 down(&dev->class->sem);
917 list_for_each_entry(d, &dev->class->devices, node) {
918 if (d == dev)
919 continue;
920 if (d->kobj.parent == dev->kobj.parent) {
921 other = 1;
922 break;
923 }
924 }
925 if (!other)
926 kobject_del(dev->kobj.parent);
927
928 kobject_put(dev->kobj.parent);
929 up(&dev->class->sem);
930 }
Kay Sieversb9d9c822006-06-15 15:31:56 +0200931 }
Kay Sieversa7fd6702005-10-01 14:49:43 +0200932 device_remove_file(dev, &dev->uevent_attr);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700933 device_remove_attrs(dev);
Benjamin Herrenschmidt28953532006-11-08 19:46:14 -0800934 bus_remove_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Tejun Heo2f8d16a2007-03-09 19:34:19 +0900936 /*
937 * Some platform devices are driven without driver attached
938 * and managed resources may have been acquired. Make sure
939 * all resources are released.
940 */
941 devres_release_all(dev);
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 /* Notify the platform of the removal, in case they
944 * need to do anything...
945 */
946 if (platform_notify_remove)
947 platform_notify_remove(dev);
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000948 if (dev->bus)
949 blocking_notifier_call_chain(&dev->bus->bus_notifier,
950 BUS_NOTIFY_DEL_DEVICE, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 device_pm_remove(dev);
Kay Sievers312c0042005-11-16 09:00:00 +0100952 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 kobject_del(&dev->kobj);
954 if (parent)
955 put_device(parent);
956}
957
958/**
959 * device_unregister - unregister device from system.
960 * @dev: device going away.
961 *
962 * We do this in two parts, like we do device_register(). First,
963 * we remove it from all the subsystems with device_del(), then
964 * we decrement the reference count via put_device(). If that
965 * is the final reference count, the device will be cleaned up
966 * via device_release() above. Otherwise, the structure will
967 * stick around until the final reference to the device is dropped.
968 */
969void device_unregister(struct device * dev)
970{
971 pr_debug("DEV: Unregistering device. ID = '%s'\n", dev->bus_id);
972 device_del(dev);
973 put_device(dev);
974}
975
976
mochel@digitalimplant.org36239572005-03-24 19:08:30 -0800977static struct device * next_device(struct klist_iter * i)
978{
979 struct klist_node * n = klist_next(i);
980 return n ? container_of(n, struct device, knode_parent) : NULL;
981}
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983/**
984 * device_for_each_child - device child iterator.
Randy Dunlapc41455f2005-10-23 11:59:14 -0700985 * @parent: parent struct device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 * @data: data for the callback.
987 * @fn: function to be called for each device.
988 *
Randy Dunlapc41455f2005-10-23 11:59:14 -0700989 * Iterate over @parent's child devices, and call @fn for each,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 * passing it @data.
991 *
992 * We check the return of @fn each time. If it returns anything
993 * other than 0, we break out and return that value.
994 */
mochel@digitalimplant.org36239572005-03-24 19:08:30 -0800995int device_for_each_child(struct device * parent, void * data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 int (*fn)(struct device *, void *))
997{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -0800998 struct klist_iter i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 struct device * child;
1000 int error = 0;
1001
mochel@digitalimplant.org36239572005-03-24 19:08:30 -08001002 klist_iter_init(&parent->klist_children, &i);
1003 while ((child = next_device(&i)) && !error)
1004 error = fn(child, data);
1005 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return error;
1007}
1008
Cornelia Huck5ab69982006-11-16 15:42:07 +01001009/**
1010 * device_find_child - device iterator for locating a particular device.
1011 * @parent: parent struct device
1012 * @data: Data to pass to match function
1013 * @match: Callback function to check device
1014 *
1015 * This is similar to the device_for_each_child() function above, but it
1016 * returns a reference to a device that is 'found' for later use, as
1017 * determined by the @match callback.
1018 *
1019 * The callback should return 0 if the device doesn't match and non-zero
1020 * if it does. If the callback returns non-zero and a reference to the
1021 * current device can be obtained, this function will return to the caller
1022 * and not iterate over any more devices.
1023 */
1024struct device * device_find_child(struct device *parent, void *data,
1025 int (*match)(struct device *, void *))
1026{
1027 struct klist_iter i;
1028 struct device *child;
1029
1030 if (!parent)
1031 return NULL;
1032
1033 klist_iter_init(&parent->klist_children, &i);
1034 while ((child = next_device(&i)))
1035 if (match(child, data) && get_device(child))
1036 break;
1037 klist_iter_exit(&i);
1038 return child;
1039}
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041int __init devices_init(void)
1042{
1043 return subsystem_register(&devices_subsys);
1044}
1045
1046EXPORT_SYMBOL_GPL(device_for_each_child);
Cornelia Huck5ab69982006-11-16 15:42:07 +01001047EXPORT_SYMBOL_GPL(device_find_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049EXPORT_SYMBOL_GPL(device_initialize);
1050EXPORT_SYMBOL_GPL(device_add);
1051EXPORT_SYMBOL_GPL(device_register);
1052
1053EXPORT_SYMBOL_GPL(device_del);
1054EXPORT_SYMBOL_GPL(device_unregister);
1055EXPORT_SYMBOL_GPL(get_device);
1056EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058EXPORT_SYMBOL_GPL(device_create_file);
1059EXPORT_SYMBOL_GPL(device_remove_file);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001060
1061
1062static void device_create_release(struct device *dev)
1063{
1064 pr_debug("%s called for %s\n", __FUNCTION__, dev->bus_id);
1065 kfree(dev);
1066}
1067
1068/**
1069 * device_create - creates a device and registers it with sysfs
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001070 * @class: pointer to the struct class that this device should be registered to
1071 * @parent: pointer to the parent struct device of this new device, if any
1072 * @devt: the dev_t for the char device to be added
1073 * @fmt: string for the device's name
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001074 *
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001075 * This function can be used by char device classes. A struct device
1076 * will be created in sysfs, registered to the specified class.
1077 *
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001078 * A "dev" file will be created, showing the dev_t for the device, if
1079 * the dev_t is not 0,0.
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001080 * If a pointer to a parent struct device is passed in, the newly created
1081 * struct device will be a child of that device in sysfs.
1082 * The pointer to the struct device will be returned from the call.
1083 * Any further sysfs files that might be required can be created using this
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001084 * pointer.
1085 *
1086 * Note: the struct class passed to this function must have previously
1087 * been created with a call to class_create().
1088 */
1089struct device *device_create(struct class *class, struct device *parent,
Greg Kroah-Hartman5cbe5f82006-08-10 01:19:19 -04001090 dev_t devt, const char *fmt, ...)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001091{
1092 va_list args;
1093 struct device *dev = NULL;
1094 int retval = -ENODEV;
1095
1096 if (class == NULL || IS_ERR(class))
1097 goto error;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001098
1099 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1100 if (!dev) {
1101 retval = -ENOMEM;
1102 goto error;
1103 }
1104
1105 dev->devt = devt;
1106 dev->class = class;
1107 dev->parent = parent;
1108 dev->release = device_create_release;
1109
1110 va_start(args, fmt);
1111 vsnprintf(dev->bus_id, BUS_ID_SIZE, fmt, args);
1112 va_end(args);
1113 retval = device_register(dev);
1114 if (retval)
1115 goto error;
1116
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001117 return dev;
1118
1119error:
1120 kfree(dev);
1121 return ERR_PTR(retval);
1122}
1123EXPORT_SYMBOL_GPL(device_create);
1124
1125/**
1126 * device_destroy - removes a device that was created with device_create()
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001127 * @class: pointer to the struct class that this device was registered with
1128 * @devt: the dev_t of the device that was previously registered
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001129 *
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001130 * This call unregisters and cleans up a device that was created with a
1131 * call to device_create().
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001132 */
1133void device_destroy(struct class *class, dev_t devt)
1134{
1135 struct device *dev = NULL;
1136 struct device *dev_tmp;
1137
1138 down(&class->sem);
1139 list_for_each_entry(dev_tmp, &class->devices, node) {
1140 if (dev_tmp->devt == devt) {
1141 dev = dev_tmp;
1142 break;
1143 }
1144 }
1145 up(&class->sem);
1146
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -07001147 if (dev)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001148 device_unregister(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001149}
1150EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001151
1152/**
1153 * device_rename - renames a device
1154 * @dev: the pointer to the struct device to be renamed
1155 * @new_name: the new name of the device
1156 */
1157int device_rename(struct device *dev, char *new_name)
1158{
1159 char *old_class_name = NULL;
1160 char *new_class_name = NULL;
1161 char *old_symlink_name = NULL;
1162 int error;
1163
1164 dev = get_device(dev);
1165 if (!dev)
1166 return -EINVAL;
1167
1168 pr_debug("DEVICE: renaming '%s' to '%s'\n", dev->bus_id, new_name);
1169
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001170#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001171 if ((dev->class) && (dev->parent))
1172 old_class_name = make_class_name(dev->class->name, &dev->kobj);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001173#endif
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001174
1175 if (dev->class) {
1176 old_symlink_name = kmalloc(BUS_ID_SIZE, GFP_KERNEL);
Jesper Juhl952ab432006-09-28 23:56:01 +02001177 if (!old_symlink_name) {
1178 error = -ENOMEM;
1179 goto out_free_old_class;
1180 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001181 strlcpy(old_symlink_name, dev->bus_id, BUS_ID_SIZE);
1182 }
1183
1184 strlcpy(dev->bus_id, new_name, BUS_ID_SIZE);
1185
1186 error = kobject_rename(&dev->kobj, new_name);
1187
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001188#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001189 if (old_class_name) {
1190 new_class_name = make_class_name(dev->class->name, &dev->kobj);
1191 if (new_class_name) {
1192 sysfs_create_link(&dev->parent->kobj, &dev->kobj,
1193 new_class_name);
1194 sysfs_remove_link(&dev->parent->kobj, old_class_name);
1195 }
1196 }
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001197#endif
1198
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001199 if (dev->class) {
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001200 sysfs_remove_link(&dev->class->subsys.kobj,
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001201 old_symlink_name);
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001202 sysfs_create_link(&dev->class->subsys.kobj, &dev->kobj,
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001203 dev->bus_id);
1204 }
1205 put_device(dev);
1206
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001207 kfree(new_class_name);
1208 kfree(old_symlink_name);
Jesper Juhl952ab432006-09-28 23:56:01 +02001209 out_free_old_class:
1210 kfree(old_class_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001211
1212 return error;
1213}
Johannes Berga2807db2007-02-28 12:38:31 +01001214EXPORT_SYMBOL_GPL(device_rename);
Cornelia Huck8a824722006-11-20 17:07:51 +01001215
1216static int device_move_class_links(struct device *dev,
1217 struct device *old_parent,
1218 struct device *new_parent)
1219{
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001220 int error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001221#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huck8a824722006-11-20 17:07:51 +01001222 char *class_name;
1223
1224 class_name = make_class_name(dev->class->name, &dev->kobj);
1225 if (!class_name) {
Cornelia Huckcb360bb2006-11-27 10:35:05 +01001226 error = -ENOMEM;
Cornelia Huck8a824722006-11-20 17:07:51 +01001227 goto out;
1228 }
1229 if (old_parent) {
1230 sysfs_remove_link(&dev->kobj, "device");
1231 sysfs_remove_link(&old_parent->kobj, class_name);
1232 }
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001233 if (new_parent) {
1234 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1235 "device");
1236 if (error)
1237 goto out;
1238 error = sysfs_create_link(&new_parent->kobj, &dev->kobj,
1239 class_name);
1240 if (error)
1241 sysfs_remove_link(&dev->kobj, "device");
1242 }
1243 else
1244 error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001245out:
1246 kfree(class_name);
1247 return error;
1248#else
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001249 if (old_parent)
1250 sysfs_remove_link(&dev->kobj, "device");
1251 if (new_parent)
1252 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1253 "device");
1254 return error;
Cornelia Huck8a824722006-11-20 17:07:51 +01001255#endif
1256}
1257
1258/**
1259 * device_move - moves a device to a new parent
1260 * @dev: the pointer to the struct device to be moved
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001261 * @new_parent: the new parent of the device (can by NULL)
Cornelia Huck8a824722006-11-20 17:07:51 +01001262 */
1263int device_move(struct device *dev, struct device *new_parent)
1264{
1265 int error;
1266 struct device *old_parent;
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001267 struct kobject *new_parent_kobj;
Cornelia Huck8a824722006-11-20 17:07:51 +01001268
1269 dev = get_device(dev);
1270 if (!dev)
1271 return -EINVAL;
1272
Cornelia Huck8a824722006-11-20 17:07:51 +01001273 new_parent = get_device(new_parent);
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001274 new_parent_kobj = get_device_parent (dev, new_parent);
1275 if (IS_ERR(new_parent_kobj)) {
1276 error = PTR_ERR(new_parent_kobj);
1277 put_device(new_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +01001278 goto out;
1279 }
1280 pr_debug("DEVICE: moving '%s' to '%s'\n", dev->bus_id,
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001281 new_parent ? new_parent->bus_id : "<NULL>");
1282 error = kobject_move(&dev->kobj, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001283 if (error) {
1284 put_device(new_parent);
1285 goto out;
1286 }
1287 old_parent = dev->parent;
1288 dev->parent = new_parent;
1289 if (old_parent)
Cornelia Huckacf02d22006-11-22 17:49:39 +01001290 klist_remove(&dev->knode_parent);
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001291 if (new_parent)
1292 klist_add_tail(&dev->knode_parent, &new_parent->klist_children);
Cornelia Huck8a824722006-11-20 17:07:51 +01001293 if (!dev->class)
1294 goto out_put;
1295 error = device_move_class_links(dev, old_parent, new_parent);
1296 if (error) {
1297 /* We ignore errors on cleanup since we're hosed anyway... */
1298 device_move_class_links(dev, new_parent, old_parent);
1299 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
Cornelia Huckc744aeae2007-01-08 20:16:44 +01001300 if (new_parent)
1301 klist_remove(&dev->knode_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +01001302 if (old_parent)
1303 klist_add_tail(&dev->knode_parent,
1304 &old_parent->klist_children);
1305 }
1306 put_device(new_parent);
1307 goto out;
1308 }
1309out_put:
1310 put_device(old_parent);
1311out:
1312 put_device(dev);
1313 return error;
1314}
1315
1316EXPORT_SYMBOL_GPL(device_move);