blob: d4f35d8902a275b308b0599aa491de7fc302a9cc [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 :
46 (dev->bus ? dev->bus->name : "");
47}
Matthew Wilcox310a9222006-09-23 23:35:04 -060048EXPORT_SYMBOL(dev_driver_string);
Alan Stern3e956372006-06-16 17:10:48 -040049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define to_dev(obj) container_of(obj, struct device, kobj)
51#define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static ssize_t
54dev_attr_show(struct kobject * kobj, struct attribute * attr, char * buf)
55{
56 struct device_attribute * dev_attr = to_dev_attr(attr);
57 struct device * dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050058 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 if (dev_attr->show)
Yani Ioannou54b6f352005-05-17 06:39:34 -040061 ret = dev_attr->show(dev, dev_attr, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 return ret;
63}
64
65static ssize_t
66dev_attr_store(struct kobject * kobj, struct attribute * attr,
67 const char * buf, size_t count)
68{
69 struct device_attribute * dev_attr = to_dev_attr(attr);
70 struct device * dev = to_dev(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050071 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 if (dev_attr->store)
Yani Ioannou54b6f352005-05-17 06:39:34 -040074 ret = dev_attr->store(dev, dev_attr, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return ret;
76}
77
78static struct sysfs_ops dev_sysfs_ops = {
79 .show = dev_attr_show,
80 .store = dev_attr_store,
81};
82
83
84/**
85 * device_release - free device structure.
86 * @kobj: device's kobject.
87 *
88 * This is called once the reference count for the object
89 * reaches 0. We forward the call to the device's release
90 * method, which should handle actually freeing the structure.
91 */
92static void device_release(struct kobject * kobj)
93{
94 struct device * dev = to_dev(kobj);
95
96 if (dev->release)
97 dev->release(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -070098 else if (dev->class && dev->class->dev_release)
99 dev->class->dev_release(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 else {
101 printk(KERN_ERR "Device '%s' does not have a release() function, "
102 "it is broken and must be fixed.\n",
103 dev->bus_id);
104 WARN_ON(1);
105 }
106}
107
108static struct kobj_type ktype_device = {
109 .release = device_release,
110 .sysfs_ops = &dev_sysfs_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
113
Kay Sievers312c0042005-11-16 09:00:00 +0100114static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 struct kobj_type *ktype = get_ktype(kobj);
117
118 if (ktype == &ktype_device) {
119 struct device *dev = to_dev(kobj);
120 if (dev->bus)
121 return 1;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700122 if (dev->class)
123 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
125 return 0;
126}
127
Kay Sievers312c0042005-11-16 09:00:00 +0100128static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 struct device *dev = to_dev(kobj);
131
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700132 if (dev->bus)
133 return dev->bus->name;
134 if (dev->class)
135 return dev->class->name;
136 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Kay Sievers312c0042005-11-16 09:00:00 +0100139static int dev_uevent(struct kset *kset, struct kobject *kobj, char **envp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 int num_envp, char *buffer, int buffer_size)
141{
142 struct device *dev = to_dev(kobj);
143 int i = 0;
144 int length = 0;
145 int retval = 0;
146
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700147 /* add the major/minor if present */
148 if (MAJOR(dev->devt)) {
149 add_uevent_var(envp, num_envp, &i,
150 buffer, buffer_size, &length,
151 "MAJOR=%u", MAJOR(dev->devt));
152 add_uevent_var(envp, num_envp, &i,
153 buffer, buffer_size, &length,
154 "MINOR=%u", MINOR(dev->devt));
155 }
156
Kay Sieversd81d9d62006-08-13 06:17:09 +0200157 /* add bus name (same as SUBSYSTEM, deprecated) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (dev->bus)
Kay Sievers312c0042005-11-16 09:00:00 +0100159 add_uevent_var(envp, num_envp, &i,
160 buffer, buffer_size, &length,
161 "PHYSDEVBUS=%s", dev->bus->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Kay Sieversd81d9d62006-08-13 06:17:09 +0200163 /* add driver name (PHYSDEV* values are deprecated)*/
164 if (dev->driver) {
165 add_uevent_var(envp, num_envp, &i,
166 buffer, buffer_size, &length,
167 "DRIVER=%s", dev->driver->name);
Kay Sievers312c0042005-11-16 09:00:00 +0100168 add_uevent_var(envp, num_envp, &i,
169 buffer, buffer_size, &length,
170 "PHYSDEVDRIVER=%s", dev->driver->name);
Kay Sieversd81d9d62006-08-13 06:17:09 +0200171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 /* terminate, set to next free slot, shrink available space */
174 envp[i] = NULL;
175 envp = &envp[i];
176 num_envp -= i;
177 buffer = &buffer[length];
178 buffer_size -= length;
179
Kay Sievers312c0042005-11-16 09:00:00 +0100180 if (dev->bus && dev->bus->uevent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /* have the bus specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100182 retval = dev->bus->uevent(dev, envp, num_envp, buffer, buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (retval) {
Kay Sievers312c0042005-11-16 09:00:00 +0100184 pr_debug ("%s - uevent() returned %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 __FUNCTION__, retval);
186 }
187 }
188
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700189 if (dev->class && dev->class->dev_uevent) {
190 /* have the class specific function add its stuff */
191 retval = dev->class->dev_uevent(dev, envp, num_envp, buffer, buffer_size);
192 if (retval) {
193 pr_debug("%s - dev_uevent() returned %d\n",
194 __FUNCTION__, retval);
195 }
196 }
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return retval;
199}
200
Kay Sievers312c0042005-11-16 09:00:00 +0100201static struct kset_uevent_ops device_uevent_ops = {
202 .filter = dev_uevent_filter,
203 .name = dev_uevent_name,
204 .uevent = dev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205};
206
Kay Sieversa7fd6702005-10-01 14:49:43 +0200207static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
208 const char *buf, size_t count)
209{
Kay Sievers312c0042005-11-16 09:00:00 +0100210 kobject_uevent(&dev->kobj, KOBJ_ADD);
Kay Sieversa7fd6702005-10-01 14:49:43 +0200211 return count;
212}
213
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700214static int device_add_groups(struct device *dev)
215{
216 int i;
217 int error = 0;
218
219 if (dev->groups) {
220 for (i = 0; dev->groups[i]; i++) {
221 error = sysfs_create_group(&dev->kobj, dev->groups[i]);
222 if (error) {
223 while (--i >= 0)
224 sysfs_remove_group(&dev->kobj, dev->groups[i]);
225 goto out;
226 }
227 }
228 }
229out:
230 return error;
231}
232
233static void device_remove_groups(struct device *dev)
234{
235 int i;
236 if (dev->groups) {
237 for (i = 0; dev->groups[i]; i++) {
238 sysfs_remove_group(&dev->kobj, dev->groups[i]);
239 }
240 }
241}
242
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700243static int device_add_attrs(struct device *dev)
244{
245 struct class *class = dev->class;
246 int error = 0;
247 int i;
248
249 if (!class)
250 return 0;
251
252 if (class->dev_attrs) {
253 for (i = 0; attr_name(class->dev_attrs[i]); i++) {
254 error = device_create_file(dev, &class->dev_attrs[i]);
255 if (error)
256 break;
257 }
258 }
259 if (error)
260 while (--i >= 0)
261 device_remove_file(dev, &class->dev_attrs[i]);
262 return error;
263}
264
265static void device_remove_attrs(struct device *dev)
266{
267 struct class *class = dev->class;
268 int i;
269
270 if (!class)
271 return;
272
273 if (class->dev_attrs) {
274 for (i = 0; attr_name(class->dev_attrs[i]); i++)
275 device_remove_file(dev, &class->dev_attrs[i]);
276 }
277}
278
279
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700280static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
281 char *buf)
282{
283 return print_dev_t(buf, dev->devt);
284}
285
Martin Waitz0863afb2006-01-09 20:53:55 -0800286/*
287 * devices_subsys - structure to be registered with kobject core.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
289
Kay Sievers312c0042005-11-16 09:00:00 +0100290decl_subsys(devices, &ktype_device, &device_uevent_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292
293/**
294 * device_create_file - create sysfs attribute file for device.
295 * @dev: device.
296 * @attr: device attribute descriptor.
297 */
298
299int device_create_file(struct device * dev, struct device_attribute * attr)
300{
301 int error = 0;
302 if (get_device(dev)) {
303 error = sysfs_create_file(&dev->kobj, &attr->attr);
304 put_device(dev);
305 }
306 return error;
307}
308
309/**
310 * device_remove_file - remove sysfs attribute file.
311 * @dev: device.
312 * @attr: device attribute descriptor.
313 */
314
315void device_remove_file(struct device * dev, struct device_attribute * attr)
316{
317 if (get_device(dev)) {
318 sysfs_remove_file(&dev->kobj, &attr->attr);
319 put_device(dev);
320 }
321}
322
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700323/**
324 * device_create_bin_file - create sysfs binary attribute file for device.
325 * @dev: device.
326 * @attr: device binary attribute descriptor.
327 */
328int device_create_bin_file(struct device *dev, struct bin_attribute *attr)
329{
330 int error = -EINVAL;
331 if (dev)
332 error = sysfs_create_bin_file(&dev->kobj, attr);
333 return error;
334}
335EXPORT_SYMBOL_GPL(device_create_bin_file);
336
337/**
338 * device_remove_bin_file - remove sysfs binary attribute file
339 * @dev: device.
340 * @attr: device binary attribute descriptor.
341 */
342void device_remove_bin_file(struct device *dev, struct bin_attribute *attr)
343{
344 if (dev)
345 sysfs_remove_bin_file(&dev->kobj, attr);
346}
347EXPORT_SYMBOL_GPL(device_remove_bin_file);
348
James Bottomley34bb61f2005-09-06 16:56:51 -0700349static void klist_children_get(struct klist_node *n)
350{
351 struct device *dev = container_of(n, struct device, knode_parent);
352
353 get_device(dev);
354}
355
356static void klist_children_put(struct klist_node *n)
357{
358 struct device *dev = container_of(n, struct device, knode_parent);
359
360 put_device(dev);
361}
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364/**
365 * device_initialize - init device structure.
366 * @dev: device.
367 *
368 * This prepares the device for use by other layers,
369 * including adding it to the device hierarchy.
370 * It is the first half of device_register(), if called by
371 * that, though it can also be called separately, so one
372 * may use @dev's fields (e.g. the refcount).
373 */
374
375void device_initialize(struct device *dev)
376{
377 kobj_set_kset_s(dev, devices_subsys);
378 kobject_init(&dev->kobj);
James Bottomley34bb61f2005-09-06 16:56:51 -0700379 klist_init(&dev->klist_children, klist_children_get,
380 klist_children_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 INIT_LIST_HEAD(&dev->dma_pools);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700382 INIT_LIST_HEAD(&dev->node);
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -0800383 init_MUTEX(&dev->sem);
David Brownell0ac85242005-09-12 19:39:34 -0700384 device_init_wakeup(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
387/**
388 * device_add - add device to device hierarchy.
389 * @dev: device.
390 *
391 * This is part 2 of device_register(), though may be called
392 * separately _iff_ device_initialize() has been called separately.
393 *
394 * This adds it to the kobject hierarchy via kobject_add(), adds it
395 * to the global and sibling lists for the device, then
396 * adds it to the other relevant subsystems of the driver model.
397 */
398int device_add(struct device *dev)
399{
400 struct device *parent = NULL;
Greg Kroah-Hartmane9a7d302006-06-20 13:59:20 -0700401 char *class_name = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200402 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 int error = -EINVAL;
404
405 dev = get_device(dev);
406 if (!dev || !strlen(dev->bus_id))
407 goto Error;
408
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -0700409 /* if this is a class device, and has no parent, create one */
410 if ((dev->class) && (dev->parent == NULL)) {
411 error = virtual_device_parent(dev);
412 if (error)
413 goto Error;
414 }
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 parent = get_device(dev->parent);
417
418 pr_debug("DEV: registering device: ID = '%s'\n", dev->bus_id);
419
420 /* first, register with generic layer. */
421 kobject_set_name(&dev->kobj, "%s", dev->bus_id);
422 if (parent)
423 dev->kobj.parent = &parent->kobj;
424
425 if ((error = kobject_add(&dev->kobj)))
426 goto Error;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200427
Brian Walsh37022642006-08-14 22:43:19 -0700428 /* notify platform of device entry */
429 if (platform_notify)
430 platform_notify(dev);
431
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000432 /* notify clients of device entry (new way) */
433 if (dev->bus)
434 blocking_notifier_call_chain(&dev->bus->bus_notifier,
435 BUS_NOTIFY_ADD_DEVICE, dev);
436
Kay Sieversa7fd6702005-10-01 14:49:43 +0200437 dev->uevent_attr.attr.name = "uevent";
438 dev->uevent_attr.attr.mode = S_IWUSR;
439 if (dev->driver)
440 dev->uevent_attr.attr.owner = dev->driver->owner;
441 dev->uevent_attr.store = store_uevent;
Cornelia Hucka306eea2006-09-22 11:37:13 +0200442 error = device_create_file(dev, &dev->uevent_attr);
443 if (error)
444 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200445
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700446 if (MAJOR(dev->devt)) {
447 struct device_attribute *attr;
448 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
449 if (!attr) {
450 error = -ENOMEM;
Cornelia Hucka306eea2006-09-22 11:37:13 +0200451 goto ueventattrError;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700452 }
453 attr->attr.name = "dev";
454 attr->attr.mode = S_IRUGO;
455 if (dev->driver)
456 attr->attr.owner = dev->driver->owner;
457 attr->show = show_dev;
458 error = device_create_file(dev, attr);
459 if (error) {
460 kfree(attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200461 goto ueventattrError;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700462 }
463
464 dev->devt_attr = attr;
465 }
466
Kay Sieversb9d9c822006-06-15 15:31:56 +0200467 if (dev->class) {
468 sysfs_create_link(&dev->kobj, &dev->class->subsys.kset.kobj,
469 "subsystem");
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700470 sysfs_create_link(&dev->class->subsys.kset.kobj, &dev->kobj,
471 dev->bus_id);
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -0700472 if (parent) {
473 sysfs_create_link(&dev->kobj, &dev->parent->kobj, "device");
474 class_name = make_class_name(dev->class->name, &dev->kobj);
475 sysfs_create_link(&dev->parent->kobj, &dev->kobj, class_name);
476 }
Kay Sieversb9d9c822006-06-15 15:31:56 +0200477 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700478
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700479 if ((error = device_add_attrs(dev)))
480 goto AttrsError;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700481 if ((error = device_add_groups(dev)))
482 goto GroupError;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if ((error = device_pm_add(dev)))
484 goto PMError;
485 if ((error = bus_add_device(dev)))
486 goto BusError;
Kay Sievers53877d02006-04-04 20:42:26 +0200487 kobject_uevent(&dev->kobj, KOBJ_ADD);
Alan Sternf70fa622006-10-05 17:03:24 -0400488 if ((error = bus_attach_device(dev)))
489 goto AttachError;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (parent)
James Bottomleyd856f1e2005-08-19 09:14:01 -0400491 klist_add_tail(&dev->knode_parent, &parent->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700493 if (dev->class) {
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700494 down(&dev->class->sem);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200495 /* tie the class to the device */
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700496 list_add_tail(&dev->node, &dev->class->devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200497
498 /* notify any interfaces that the device is here */
499 list_for_each_entry(class_intf, &dev->class->interfaces, node)
500 if (class_intf->add_dev)
501 class_intf->add_dev(dev, class_intf);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700502 up(&dev->class->sem);
503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 Done:
Greg Kroah-Hartmane9a7d302006-06-20 13:59:20 -0700505 kfree(class_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 put_device(dev);
507 return error;
Alan Sternf70fa622006-10-05 17:03:24 -0400508 AttachError:
509 bus_remove_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 BusError:
511 device_pm_remove(dev);
512 PMError:
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000513 if (dev->bus)
514 blocking_notifier_call_chain(&dev->bus->bus_notifier,
515 BUS_NOTIFY_DEL_DEVICE, dev);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700516 device_remove_groups(dev);
517 GroupError:
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700518 device_remove_attrs(dev);
519 AttrsError:
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700520 if (dev->devt_attr) {
521 device_remove_file(dev, dev->devt_attr);
522 kfree(dev->devt_attr);
523 }
Cornelia Hucka306eea2006-09-22 11:37:13 +0200524 ueventattrError:
525 device_remove_file(dev, &dev->uevent_attr);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700526 attrError:
Kay Sievers312c0042005-11-16 09:00:00 +0100527 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 kobject_del(&dev->kobj);
529 Error:
530 if (parent)
531 put_device(parent);
532 goto Done;
533}
534
535
536/**
537 * device_register - register a device with the system.
538 * @dev: pointer to the device structure
539 *
540 * This happens in two clean steps - initialize the device
541 * and add it to the system. The two steps can be called
542 * separately, but this is the easiest and most common.
543 * I.e. you should only call the two helpers separately if
544 * have a clearly defined need to use and refcount the device
545 * before it is added to the hierarchy.
546 */
547
548int device_register(struct device *dev)
549{
550 device_initialize(dev);
551 return device_add(dev);
552}
553
554
555/**
556 * get_device - increment reference count for device.
557 * @dev: device.
558 *
559 * This simply forwards the call to kobject_get(), though
560 * we do take care to provide for the case that we get a NULL
561 * pointer passed in.
562 */
563
564struct device * get_device(struct device * dev)
565{
566 return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
567}
568
569
570/**
571 * put_device - decrement reference count.
572 * @dev: device in question.
573 */
574void put_device(struct device * dev)
575{
576 if (dev)
577 kobject_put(&dev->kobj);
578}
579
580
581/**
582 * device_del - delete device from system.
583 * @dev: device.
584 *
585 * This is the first part of the device unregistration
586 * sequence. This removes the device from the lists we control
587 * from here, has it removed from the other driver model
588 * subsystems it was added to in device_add(), and removes it
589 * from the kobject hierarchy.
590 *
591 * NOTE: this should be called manually _iff_ device_add() was
592 * also called manually.
593 */
594
595void device_del(struct device * dev)
596{
597 struct device * parent = dev->parent;
Greg Kroah-Hartmane9a7d302006-06-20 13:59:20 -0700598 char *class_name = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200599 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (parent)
Patrick Mocheld62c0f92005-06-24 08:39:33 -0700602 klist_del(&dev->knode_parent);
Catalin Marinas82189b92006-11-25 11:09:30 -0800603 if (dev->devt_attr) {
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700604 device_remove_file(dev, dev->devt_attr);
Catalin Marinas82189b92006-11-25 11:09:30 -0800605 kfree(dev->devt_attr);
606 }
Kay Sieversb9d9c822006-06-15 15:31:56 +0200607 if (dev->class) {
608 sysfs_remove_link(&dev->kobj, "subsystem");
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700609 sysfs_remove_link(&dev->class->subsys.kset.kobj, dev->bus_id);
Greg Kroah-Hartmane9a7d302006-06-20 13:59:20 -0700610 class_name = make_class_name(dev->class->name, &dev->kobj);
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -0700611 if (parent) {
612 sysfs_remove_link(&dev->kobj, "device");
613 sysfs_remove_link(&dev->parent->kobj, class_name);
614 }
Greg Kroah-Hartmane9a7d302006-06-20 13:59:20 -0700615 kfree(class_name);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700616 down(&dev->class->sem);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200617 /* notify any interfaces that the device is now gone */
618 list_for_each_entry(class_intf, &dev->class->interfaces, node)
619 if (class_intf->remove_dev)
620 class_intf->remove_dev(dev, class_intf);
621 /* remove the device from the class list */
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700622 list_del_init(&dev->node);
623 up(&dev->class->sem);
Kay Sieversb9d9c822006-06-15 15:31:56 +0200624 }
Kay Sieversa7fd6702005-10-01 14:49:43 +0200625 device_remove_file(dev, &dev->uevent_attr);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700626 device_remove_groups(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700627 device_remove_attrs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 /* Notify the platform of the removal, in case they
630 * need to do anything...
631 */
632 if (platform_notify_remove)
633 platform_notify_remove(dev);
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000634 if (dev->bus)
635 blocking_notifier_call_chain(&dev->bus->bus_notifier,
636 BUS_NOTIFY_DEL_DEVICE, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 bus_remove_device(dev);
638 device_pm_remove(dev);
Kay Sievers312c0042005-11-16 09:00:00 +0100639 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 kobject_del(&dev->kobj);
641 if (parent)
642 put_device(parent);
643}
644
645/**
646 * device_unregister - unregister device from system.
647 * @dev: device going away.
648 *
649 * We do this in two parts, like we do device_register(). First,
650 * we remove it from all the subsystems with device_del(), then
651 * we decrement the reference count via put_device(). If that
652 * is the final reference count, the device will be cleaned up
653 * via device_release() above. Otherwise, the structure will
654 * stick around until the final reference to the device is dropped.
655 */
656void device_unregister(struct device * dev)
657{
658 pr_debug("DEV: Unregistering device. ID = '%s'\n", dev->bus_id);
659 device_del(dev);
660 put_device(dev);
661}
662
663
mochel@digitalimplant.org36239572005-03-24 19:08:30 -0800664static struct device * next_device(struct klist_iter * i)
665{
666 struct klist_node * n = klist_next(i);
667 return n ? container_of(n, struct device, knode_parent) : NULL;
668}
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670/**
671 * device_for_each_child - device child iterator.
Randy Dunlapc41455f2005-10-23 11:59:14 -0700672 * @parent: parent struct device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 * @data: data for the callback.
674 * @fn: function to be called for each device.
675 *
Randy Dunlapc41455f2005-10-23 11:59:14 -0700676 * Iterate over @parent's child devices, and call @fn for each,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 * passing it @data.
678 *
679 * We check the return of @fn each time. If it returns anything
680 * other than 0, we break out and return that value.
681 */
mochel@digitalimplant.org36239572005-03-24 19:08:30 -0800682int device_for_each_child(struct device * parent, void * data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 int (*fn)(struct device *, void *))
684{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -0800685 struct klist_iter i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 struct device * child;
687 int error = 0;
688
mochel@digitalimplant.org36239572005-03-24 19:08:30 -0800689 klist_iter_init(&parent->klist_children, &i);
690 while ((child = next_device(&i)) && !error)
691 error = fn(child, data);
692 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return error;
694}
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696int __init devices_init(void)
697{
698 return subsystem_register(&devices_subsys);
699}
700
701EXPORT_SYMBOL_GPL(device_for_each_child);
702
703EXPORT_SYMBOL_GPL(device_initialize);
704EXPORT_SYMBOL_GPL(device_add);
705EXPORT_SYMBOL_GPL(device_register);
706
707EXPORT_SYMBOL_GPL(device_del);
708EXPORT_SYMBOL_GPL(device_unregister);
709EXPORT_SYMBOL_GPL(get_device);
710EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712EXPORT_SYMBOL_GPL(device_create_file);
713EXPORT_SYMBOL_GPL(device_remove_file);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700714
715
716static void device_create_release(struct device *dev)
717{
718 pr_debug("%s called for %s\n", __FUNCTION__, dev->bus_id);
719 kfree(dev);
720}
721
722/**
723 * device_create - creates a device and registers it with sysfs
Henrik Kretzschmar42734da2006-07-05 00:53:19 +0200724 * @class: pointer to the struct class that this device should be registered to
725 * @parent: pointer to the parent struct device of this new device, if any
726 * @devt: the dev_t for the char device to be added
727 * @fmt: string for the device's name
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700728 *
Henrik Kretzschmar42734da2006-07-05 00:53:19 +0200729 * This function can be used by char device classes. A struct device
730 * will be created in sysfs, registered to the specified class.
731 *
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700732 * A "dev" file will be created, showing the dev_t for the device, if
733 * the dev_t is not 0,0.
Henrik Kretzschmar42734da2006-07-05 00:53:19 +0200734 * If a pointer to a parent struct device is passed in, the newly created
735 * struct device will be a child of that device in sysfs.
736 * The pointer to the struct device will be returned from the call.
737 * Any further sysfs files that might be required can be created using this
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700738 * pointer.
739 *
740 * Note: the struct class passed to this function must have previously
741 * been created with a call to class_create().
742 */
743struct device *device_create(struct class *class, struct device *parent,
Greg Kroah-Hartman5cbe5f82006-08-10 01:19:19 -0400744 dev_t devt, const char *fmt, ...)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700745{
746 va_list args;
747 struct device *dev = NULL;
748 int retval = -ENODEV;
749
750 if (class == NULL || IS_ERR(class))
751 goto error;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700752
753 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
754 if (!dev) {
755 retval = -ENOMEM;
756 goto error;
757 }
758
759 dev->devt = devt;
760 dev->class = class;
761 dev->parent = parent;
762 dev->release = device_create_release;
763
764 va_start(args, fmt);
765 vsnprintf(dev->bus_id, BUS_ID_SIZE, fmt, args);
766 va_end(args);
767 retval = device_register(dev);
768 if (retval)
769 goto error;
770
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700771 return dev;
772
773error:
774 kfree(dev);
775 return ERR_PTR(retval);
776}
777EXPORT_SYMBOL_GPL(device_create);
778
779/**
780 * device_destroy - removes a device that was created with device_create()
Henrik Kretzschmar42734da2006-07-05 00:53:19 +0200781 * @class: pointer to the struct class that this device was registered with
782 * @devt: the dev_t of the device that was previously registered
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700783 *
Henrik Kretzschmar42734da2006-07-05 00:53:19 +0200784 * This call unregisters and cleans up a device that was created with a
785 * call to device_create().
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700786 */
787void device_destroy(struct class *class, dev_t devt)
788{
789 struct device *dev = NULL;
790 struct device *dev_tmp;
791
792 down(&class->sem);
793 list_for_each_entry(dev_tmp, &class->devices, node) {
794 if (dev_tmp->devt == devt) {
795 dev = dev_tmp;
796 break;
797 }
798 }
799 up(&class->sem);
800
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700801 if (dev)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700802 device_unregister(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700803}
804EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -0700805
806/**
807 * device_rename - renames a device
808 * @dev: the pointer to the struct device to be renamed
809 * @new_name: the new name of the device
810 */
811int device_rename(struct device *dev, char *new_name)
812{
813 char *old_class_name = NULL;
814 char *new_class_name = NULL;
815 char *old_symlink_name = NULL;
816 int error;
817
818 dev = get_device(dev);
819 if (!dev)
820 return -EINVAL;
821
822 pr_debug("DEVICE: renaming '%s' to '%s'\n", dev->bus_id, new_name);
823
824 if ((dev->class) && (dev->parent))
825 old_class_name = make_class_name(dev->class->name, &dev->kobj);
826
827 if (dev->class) {
828 old_symlink_name = kmalloc(BUS_ID_SIZE, GFP_KERNEL);
Jesper Juhl952ab432006-09-28 23:56:01 +0200829 if (!old_symlink_name) {
830 error = -ENOMEM;
831 goto out_free_old_class;
832 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -0700833 strlcpy(old_symlink_name, dev->bus_id, BUS_ID_SIZE);
834 }
835
836 strlcpy(dev->bus_id, new_name, BUS_ID_SIZE);
837
838 error = kobject_rename(&dev->kobj, new_name);
839
840 if (old_class_name) {
841 new_class_name = make_class_name(dev->class->name, &dev->kobj);
842 if (new_class_name) {
843 sysfs_create_link(&dev->parent->kobj, &dev->kobj,
844 new_class_name);
845 sysfs_remove_link(&dev->parent->kobj, old_class_name);
846 }
847 }
848 if (dev->class) {
849 sysfs_remove_link(&dev->class->subsys.kset.kobj,
850 old_symlink_name);
851 sysfs_create_link(&dev->class->subsys.kset.kobj, &dev->kobj,
852 dev->bus_id);
853 }
854 put_device(dev);
855
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -0700856 kfree(new_class_name);
857 kfree(old_symlink_name);
Jesper Juhl952ab432006-09-28 23:56:01 +0200858 out_free_old_class:
859 kfree(old_class_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -0700860
861 return error;
862}