blob: 9ea12d9b48a68056edc13a690b1af7561aac37c4 [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);
123 if (dev->bus)
124 return 1;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700125 if (dev->class)
126 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 }
128 return 0;
129}
130
Kay Sievers312c0042005-11-16 09:00:00 +0100131static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 struct device *dev = to_dev(kobj);
134
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700135 if (dev->bus)
136 return dev->bus->name;
137 if (dev->class)
138 return dev->class->name;
139 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Kay Sievers312c0042005-11-16 09:00:00 +0100142static int dev_uevent(struct kset *kset, struct kobject *kobj, char **envp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 int num_envp, char *buffer, int buffer_size)
144{
145 struct device *dev = to_dev(kobj);
146 int i = 0;
147 int length = 0;
148 int retval = 0;
149
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700150 /* add the major/minor if present */
151 if (MAJOR(dev->devt)) {
152 add_uevent_var(envp, num_envp, &i,
153 buffer, buffer_size, &length,
154 "MAJOR=%u", MAJOR(dev->devt));
155 add_uevent_var(envp, num_envp, &i,
156 buffer, buffer_size, &length,
157 "MINOR=%u", MINOR(dev->devt));
158 }
159
Kay Sievers239378f2006-10-07 21:54:55 +0200160 if (dev->driver)
Kay Sieversd81d9d62006-08-13 06:17:09 +0200161 add_uevent_var(envp, num_envp, &i,
162 buffer, buffer_size, &length,
163 "DRIVER=%s", dev->driver->name);
Kay Sievers239378f2006-10-07 21:54:55 +0200164
Kay Sieversa87cb2a2006-09-14 11:23:28 +0200165#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sievers239378f2006-10-07 21:54:55 +0200166 if (dev->class) {
167 struct device *parent = dev->parent;
168
169 /* find first bus device in parent chain */
170 while (parent && !parent->bus)
171 parent = parent->parent;
172 if (parent && parent->bus) {
173 const char *path;
174
175 path = kobject_get_path(&parent->kobj, GFP_KERNEL);
176 add_uevent_var(envp, num_envp, &i,
177 buffer, buffer_size, &length,
178 "PHYSDEVPATH=%s", path);
179 kfree(path);
180
181 add_uevent_var(envp, num_envp, &i,
182 buffer, buffer_size, &length,
183 "PHYSDEVBUS=%s", parent->bus->name);
184
185 if (parent->driver)
186 add_uevent_var(envp, num_envp, &i,
187 buffer, buffer_size, &length,
188 "PHYSDEVDRIVER=%s", parent->driver->name);
189 }
190 } else if (dev->bus) {
Kay Sievers312c0042005-11-16 09:00:00 +0100191 add_uevent_var(envp, num_envp, &i,
192 buffer, buffer_size, &length,
Kay Sievers239378f2006-10-07 21:54:55 +0200193 "PHYSDEVBUS=%s", dev->bus->name);
194
195 if (dev->driver)
196 add_uevent_var(envp, num_envp, &i,
197 buffer, buffer_size, &length,
198 "PHYSDEVDRIVER=%s", dev->driver->name);
Kay Sieversd81d9d62006-08-13 06:17:09 +0200199 }
Kay Sievers239378f2006-10-07 21:54:55 +0200200#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 /* terminate, set to next free slot, shrink available space */
203 envp[i] = NULL;
204 envp = &envp[i];
205 num_envp -= i;
206 buffer = &buffer[length];
207 buffer_size -= length;
208
Kay Sievers312c0042005-11-16 09:00:00 +0100209 if (dev->bus && dev->bus->uevent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* have the bus specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100211 retval = dev->bus->uevent(dev, envp, num_envp, buffer, buffer_size);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200212 if (retval)
213 pr_debug ("%s: bus uevent() returned %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 __FUNCTION__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700217 if (dev->class && dev->class->dev_uevent) {
218 /* have the class specific function add its stuff */
219 retval = dev->class->dev_uevent(dev, envp, num_envp, buffer, buffer_size);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200220 if (retval)
221 pr_debug("%s: class uevent() returned %d\n",
222 __FUNCTION__, retval);
223 }
224
225 if (dev->type && dev->type->uevent) {
226 /* have the device type specific fuction add its stuff */
227 retval = dev->type->uevent(dev, envp, num_envp, buffer, buffer_size);
228 if (retval)
229 pr_debug("%s: dev_type uevent() returned %d\n",
230 __FUNCTION__, retval);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700231 }
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return retval;
234}
235
Kay Sievers312c0042005-11-16 09:00:00 +0100236static struct kset_uevent_ops device_uevent_ops = {
237 .filter = dev_uevent_filter,
238 .name = dev_uevent_name,
239 .uevent = dev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241
Kay Sieversa7fd6702005-10-01 14:49:43 +0200242static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
243 const char *buf, size_t count)
244{
Kay Sievers312c0042005-11-16 09:00:00 +0100245 kobject_uevent(&dev->kobj, KOBJ_ADD);
Kay Sieversa7fd6702005-10-01 14:49:43 +0200246 return count;
247}
248
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700249static int device_add_groups(struct device *dev)
250{
251 int i;
252 int error = 0;
253
254 if (dev->groups) {
255 for (i = 0; dev->groups[i]; i++) {
256 error = sysfs_create_group(&dev->kobj, dev->groups[i]);
257 if (error) {
258 while (--i >= 0)
259 sysfs_remove_group(&dev->kobj, dev->groups[i]);
260 goto out;
261 }
262 }
263 }
264out:
265 return error;
266}
267
268static void device_remove_groups(struct device *dev)
269{
270 int i;
271 if (dev->groups) {
272 for (i = 0; dev->groups[i]; i++) {
273 sysfs_remove_group(&dev->kobj, dev->groups[i]);
274 }
275 }
276}
277
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700278static int device_add_attrs(struct device *dev)
279{
280 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200281 struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700282 int error = 0;
283 int i;
284
Kay Sieversf9f852d2006-10-07 21:54:55 +0200285 if (class && class->dev_attrs) {
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700286 for (i = 0; attr_name(class->dev_attrs[i]); i++) {
287 error = device_create_file(dev, &class->dev_attrs[i]);
288 if (error)
289 break;
290 }
Kay Sieversf9f852d2006-10-07 21:54:55 +0200291 if (error)
292 while (--i >= 0)
293 device_remove_file(dev, &class->dev_attrs[i]);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700294 }
Kay Sieversf9f852d2006-10-07 21:54:55 +0200295
296 if (type && type->attrs) {
297 for (i = 0; attr_name(type->attrs[i]); i++) {
298 error = device_create_file(dev, &type->attrs[i]);
299 if (error)
300 break;
301 }
302 if (error)
303 while (--i >= 0)
304 device_remove_file(dev, &type->attrs[i]);
305 }
306
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700307 return error;
308}
309
310static void device_remove_attrs(struct device *dev)
311{
312 struct class *class = dev->class;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200313 struct device_type *type = dev->type;
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700314 int i;
315
Kay Sieversf9f852d2006-10-07 21:54:55 +0200316 if (class && class->dev_attrs) {
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700317 for (i = 0; attr_name(class->dev_attrs[i]); i++)
318 device_remove_file(dev, &class->dev_attrs[i]);
319 }
Kay Sieversf9f852d2006-10-07 21:54:55 +0200320
321 if (type && type->attrs) {
322 for (i = 0; attr_name(type->attrs[i]); i++)
323 device_remove_file(dev, &type->attrs[i]);
324 }
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700325}
326
327
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700328static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
329 char *buf)
330{
331 return print_dev_t(buf, dev->devt);
332}
333
Martin Waitz0863afb2006-01-09 20:53:55 -0800334/*
335 * devices_subsys - structure to be registered with kobject core.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 */
337
Kay Sievers312c0042005-11-16 09:00:00 +0100338decl_subsys(devices, &ktype_device, &device_uevent_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340
341/**
342 * device_create_file - create sysfs attribute file for device.
343 * @dev: device.
344 * @attr: device attribute descriptor.
345 */
346
347int device_create_file(struct device * dev, struct device_attribute * attr)
348{
349 int error = 0;
350 if (get_device(dev)) {
351 error = sysfs_create_file(&dev->kobj, &attr->attr);
352 put_device(dev);
353 }
354 return error;
355}
356
357/**
358 * device_remove_file - remove sysfs attribute file.
359 * @dev: device.
360 * @attr: device attribute descriptor.
361 */
362
363void device_remove_file(struct device * dev, struct device_attribute * attr)
364{
365 if (get_device(dev)) {
366 sysfs_remove_file(&dev->kobj, &attr->attr);
367 put_device(dev);
368 }
369}
370
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700371/**
372 * device_create_bin_file - create sysfs binary attribute file for device.
373 * @dev: device.
374 * @attr: device binary attribute descriptor.
375 */
376int device_create_bin_file(struct device *dev, struct bin_attribute *attr)
377{
378 int error = -EINVAL;
379 if (dev)
380 error = sysfs_create_bin_file(&dev->kobj, attr);
381 return error;
382}
383EXPORT_SYMBOL_GPL(device_create_bin_file);
384
385/**
386 * device_remove_bin_file - remove sysfs binary attribute file
387 * @dev: device.
388 * @attr: device binary attribute descriptor.
389 */
390void device_remove_bin_file(struct device *dev, struct bin_attribute *attr)
391{
392 if (dev)
393 sysfs_remove_bin_file(&dev->kobj, attr);
394}
395EXPORT_SYMBOL_GPL(device_remove_bin_file);
396
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400397/**
398 * device_schedule_callback - helper to schedule a callback for a device
399 * @dev: device.
400 * @func: callback function to invoke later.
401 *
402 * Attribute methods must not unregister themselves or their parent device
403 * (which would amount to the same thing). Attempts to do so will deadlock,
404 * since unregistration is mutually exclusive with driver callbacks.
405 *
406 * Instead methods can call this routine, which will attempt to allocate
407 * and schedule a workqueue request to call back @func with @dev as its
408 * argument in the workqueue's process context. @dev will be pinned until
409 * @func returns.
410 *
411 * Returns 0 if the request was submitted, -ENOMEM if storage could not
412 * be allocated.
413 *
414 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
415 * underlying sysfs routine (since it is intended for use by attribute
416 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
417 */
418int device_schedule_callback(struct device *dev,
419 void (*func)(struct device *))
420{
421 return sysfs_schedule_callback(&dev->kobj,
422 (void (*)(void *)) func, dev);
423}
424EXPORT_SYMBOL_GPL(device_schedule_callback);
425
James Bottomley34bb61f2005-09-06 16:56:51 -0700426static void klist_children_get(struct klist_node *n)
427{
428 struct device *dev = container_of(n, struct device, knode_parent);
429
430 get_device(dev);
431}
432
433static void klist_children_put(struct klist_node *n)
434{
435 struct device *dev = container_of(n, struct device, knode_parent);
436
437 put_device(dev);
438}
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441/**
442 * device_initialize - init device structure.
443 * @dev: device.
444 *
445 * This prepares the device for use by other layers,
446 * including adding it to the device hierarchy.
447 * It is the first half of device_register(), if called by
448 * that, though it can also be called separately, so one
449 * may use @dev's fields (e.g. the refcount).
450 */
451
452void device_initialize(struct device *dev)
453{
454 kobj_set_kset_s(dev, devices_subsys);
455 kobject_init(&dev->kobj);
James Bottomley34bb61f2005-09-06 16:56:51 -0700456 klist_init(&dev->klist_children, klist_children_get,
457 klist_children_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 INIT_LIST_HEAD(&dev->dma_pools);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700459 INIT_LIST_HEAD(&dev->node);
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -0800460 init_MUTEX(&dev->sem);
Tejun Heo9ac78492007-01-20 16:00:26 +0900461 spin_lock_init(&dev->devres_lock);
462 INIT_LIST_HEAD(&dev->devres_head);
David Brownell0ac85242005-09-12 19:39:34 -0700463 device_init_wakeup(dev, 0);
Christoph Hellwig87348132006-12-06 20:32:33 -0800464 set_dev_node(dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100467#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huckc744aea2007-01-08 20:16:44 +0100468static struct kobject * get_device_parent(struct device *dev,
469 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100470{
471 /* Set the parent to the class, not the parent device */
472 /* this keeps sysfs from having a symlink to make old udevs happy */
473 if (dev->class)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100474 return &dev->class->subsys.kset.kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100475 else if (parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100476 return &parent->kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100477
Cornelia Huckc744aea2007-01-08 20:16:44 +0100478 return NULL;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100479}
480#else
Kay Sievers86406242007-03-14 03:25:56 +0100481static struct kobject *virtual_device_parent(struct device *dev)
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700482{
Kay Sievers86406242007-03-14 03:25:56 +0100483 static struct kobject *virtual_dir = NULL;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700484
Kay Sievers86406242007-03-14 03:25:56 +0100485 if (!virtual_dir)
486 virtual_dir = kobject_add_dir(&devices_subsys.kset.kobj, "virtual");
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700487
Kay Sievers86406242007-03-14 03:25:56 +0100488 return virtual_dir;
Greg Kroah-Hartmanf0ee61a2006-10-23 10:40:54 -0700489}
490
Cornelia Huckc744aea2007-01-08 20:16:44 +0100491static struct kobject * get_device_parent(struct device *dev,
492 struct device *parent)
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100493{
Kay Sievers86406242007-03-14 03:25:56 +0100494 if (dev->class) {
495 struct kobject *kobj = NULL;
496 struct kobject *parent_kobj;
497 struct kobject *k;
498
499 /*
500 * If we have no parent, we live in "virtual".
501 * Class-devices with a bus-device as parent, live
502 * in a class-directory to prevent namespace collisions.
503 */
504 if (parent == NULL)
505 parent_kobj = virtual_device_parent(dev);
506 else if (parent->class)
507 return &parent->kobj;
508 else
509 parent_kobj = &parent->kobj;
510
511 /* find our class-directory at the parent and reference it */
512 spin_lock(&dev->class->class_dirs.list_lock);
513 list_for_each_entry(k, &dev->class->class_dirs.list, entry)
514 if (k->parent == parent_kobj) {
515 kobj = kobject_get(k);
516 break;
517 }
518 spin_unlock(&dev->class->class_dirs.list_lock);
519 if (kobj)
520 return kobj;
521
522 /* or create a new class-directory at the parent device */
523 return kobject_kset_add_dir(&dev->class->class_dirs,
524 parent_kobj, dev->class->name);
525 }
526
527 if (parent)
Cornelia Huckc744aea2007-01-08 20:16:44 +0100528 return &parent->kobj;
529 return NULL;
530}
Cornelia Huckc744aea2007-01-08 20:16:44 +0100531#endif
Kay Sievers86406242007-03-14 03:25:56 +0100532
Cornelia Huckc744aea2007-01-08 20:16:44 +0100533static int setup_parent(struct device *dev, struct device *parent)
534{
535 struct kobject *kobj;
536 kobj = get_device_parent(dev, parent);
537 if (IS_ERR(kobj))
538 return PTR_ERR(kobj);
539 if (kobj)
540 dev->kobj.parent = kobj;
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100541 return 0;
542}
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544/**
545 * device_add - add device to device hierarchy.
546 * @dev: device.
547 *
548 * This is part 2 of device_register(), though may be called
549 * separately _iff_ device_initialize() has been called separately.
550 *
551 * This adds it to the kobject hierarchy via kobject_add(), adds it
552 * to the global and sibling lists for the device, then
553 * adds it to the other relevant subsystems of the driver model.
554 */
555int device_add(struct device *dev)
556{
557 struct device *parent = NULL;
Greg Kroah-Hartmane9a7d302006-06-20 13:59:20 -0700558 char *class_name = NULL;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200559 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 int error = -EINVAL;
561
562 dev = get_device(dev);
563 if (!dev || !strlen(dev->bus_id))
564 goto Error;
565
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100566 pr_debug("DEV: registering device: ID = '%s'\n", dev->bus_id);
Greg Kroah-Hartmanc205ef42006-08-07 22:19:37 -0700567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 parent = get_device(dev->parent);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100569 error = setup_parent(dev, parent);
570 if (error)
571 goto Error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 /* first, register with generic layer. */
574 kobject_set_name(&dev->kobj, "%s", dev->bus_id);
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100575 error = kobject_add(&dev->kobj);
576 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 goto Error;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200578
Brian Walsh37022642006-08-14 22:43:19 -0700579 /* notify platform of device entry */
580 if (platform_notify)
581 platform_notify(dev);
582
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000583 /* notify clients of device entry (new way) */
584 if (dev->bus)
585 blocking_notifier_call_chain(&dev->bus->bus_notifier,
586 BUS_NOTIFY_ADD_DEVICE, dev);
587
Kay Sieversa7fd6702005-10-01 14:49:43 +0200588 dev->uevent_attr.attr.name = "uevent";
589 dev->uevent_attr.attr.mode = S_IWUSR;
590 if (dev->driver)
591 dev->uevent_attr.attr.owner = dev->driver->owner;
592 dev->uevent_attr.store = store_uevent;
Cornelia Hucka306eea2006-09-22 11:37:13 +0200593 error = device_create_file(dev, &dev->uevent_attr);
594 if (error)
595 goto attrError;
Kay Sieversa7fd6702005-10-01 14:49:43 +0200596
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700597 if (MAJOR(dev->devt)) {
598 struct device_attribute *attr;
599 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
600 if (!attr) {
601 error = -ENOMEM;
Cornelia Hucka306eea2006-09-22 11:37:13 +0200602 goto ueventattrError;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700603 }
604 attr->attr.name = "dev";
605 attr->attr.mode = S_IRUGO;
606 if (dev->driver)
607 attr->attr.owner = dev->driver->owner;
608 attr->show = show_dev;
609 error = device_create_file(dev, attr);
610 if (error) {
611 kfree(attr);
Cornelia Hucka306eea2006-09-22 11:37:13 +0200612 goto ueventattrError;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700613 }
614
615 dev->devt_attr = attr;
616 }
617
Kay Sieversb9d9c822006-06-15 15:31:56 +0200618 if (dev->class) {
619 sysfs_create_link(&dev->kobj, &dev->class->subsys.kset.kobj,
620 "subsystem");
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100621 /* If this is not a "fake" compatible device, then create the
622 * symlink from the class to the device. */
623 if (dev->kobj.parent != &dev->class->subsys.kset.kobj)
624 sysfs_create_link(&dev->class->subsys.kset.kobj,
625 &dev->kobj, dev->bus_id);
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -0700626 if (parent) {
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100627 sysfs_create_link(&dev->kobj, &dev->parent->kobj,
628 "device");
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800629#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100630 class_name = make_class_name(dev->class->name,
631 &dev->kobj);
632 if (class_name)
633 sysfs_create_link(&dev->parent->kobj,
634 &dev->kobj, class_name);
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200635#endif
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800636 }
Kay Sieversb9d9c822006-06-15 15:31:56 +0200637 }
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700638
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700639 if ((error = device_add_attrs(dev)))
640 goto AttrsError;
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700641 if ((error = device_add_groups(dev)))
642 goto GroupError;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if ((error = device_pm_add(dev)))
644 goto PMError;
645 if ((error = bus_add_device(dev)))
646 goto BusError;
Kay Sieversb7a3e812006-10-07 21:54:55 +0200647 if (!dev->uevent_suppress)
648 kobject_uevent(&dev->kobj, KOBJ_ADD);
Alan Sternf70fa622006-10-05 17:03:24 -0400649 if ((error = bus_attach_device(dev)))
650 goto AttachError;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (parent)
James Bottomleyd856f1e2005-08-19 09:14:01 -0400652 klist_add_tail(&dev->knode_parent, &parent->klist_children);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700654 if (dev->class) {
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700655 down(&dev->class->sem);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200656 /* tie the class to the device */
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700657 list_add_tail(&dev->node, &dev->class->devices);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200658
659 /* notify any interfaces that the device is here */
660 list_for_each_entry(class_intf, &dev->class->interfaces, node)
661 if (class_intf->add_dev)
662 class_intf->add_dev(dev, class_intf);
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700663 up(&dev->class->sem);
664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 Done:
Greg Kroah-Hartmane9a7d302006-06-20 13:59:20 -0700666 kfree(class_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 put_device(dev);
668 return error;
Alan Sternf70fa622006-10-05 17:03:24 -0400669 AttachError:
670 bus_remove_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 BusError:
672 device_pm_remove(dev);
673 PMError:
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000674 if (dev->bus)
675 blocking_notifier_call_chain(&dev->bus->bus_notifier,
676 BUS_NOTIFY_DEL_DEVICE, dev);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700677 device_remove_groups(dev);
678 GroupError:
James Simmons82f0cf92007-02-21 17:44:51 +0000679 device_remove_attrs(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700680 AttrsError:
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700681 if (dev->devt_attr) {
682 device_remove_file(dev, dev->devt_attr);
683 kfree(dev->devt_attr);
684 }
James Simmons82f0cf92007-02-21 17:44:51 +0000685
686 if (dev->class) {
687 sysfs_remove_link(&dev->kobj, "subsystem");
688 /* If this is not a "fake" compatible device, remove the
689 * symlink from the class to the device. */
690 if (dev->kobj.parent != &dev->class->subsys.kset.kobj)
691 sysfs_remove_link(&dev->class->subsys.kset.kobj,
692 dev->bus_id);
James Simmons82f0cf92007-02-21 17:44:51 +0000693 if (parent) {
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800694#ifdef CONFIG_SYSFS_DEPRECATED
James Simmons82f0cf92007-02-21 17:44:51 +0000695 char *class_name = make_class_name(dev->class->name,
696 &dev->kobj);
697 if (class_name)
698 sysfs_remove_link(&dev->parent->kobj,
699 class_name);
700 kfree(class_name);
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800701#endif
James Simmons82f0cf92007-02-21 17:44:51 +0000702 sysfs_remove_link(&dev->kobj, "device");
703 }
James Simmons82f0cf92007-02-21 17:44:51 +0000704 }
Cornelia Hucka306eea2006-09-22 11:37:13 +0200705 ueventattrError:
706 device_remove_file(dev, &dev->uevent_attr);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700707 attrError:
Kay Sievers312c0042005-11-16 09:00:00 +0100708 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 kobject_del(&dev->kobj);
710 Error:
711 if (parent)
712 put_device(parent);
713 goto Done;
714}
715
716
717/**
718 * device_register - register a device with the system.
719 * @dev: pointer to the device structure
720 *
721 * This happens in two clean steps - initialize the device
722 * and add it to the system. The two steps can be called
723 * separately, but this is the easiest and most common.
724 * I.e. you should only call the two helpers separately if
725 * have a clearly defined need to use and refcount the device
726 * before it is added to the hierarchy.
727 */
728
729int device_register(struct device *dev)
730{
731 device_initialize(dev);
732 return device_add(dev);
733}
734
735
736/**
737 * get_device - increment reference count for device.
738 * @dev: device.
739 *
740 * This simply forwards the call to kobject_get(), though
741 * we do take care to provide for the case that we get a NULL
742 * pointer passed in.
743 */
744
745struct device * get_device(struct device * dev)
746{
747 return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
748}
749
750
751/**
752 * put_device - decrement reference count.
753 * @dev: device in question.
754 */
755void put_device(struct device * dev)
756{
757 if (dev)
758 kobject_put(&dev->kobj);
759}
760
761
762/**
763 * device_del - delete device from system.
764 * @dev: device.
765 *
766 * This is the first part of the device unregistration
767 * sequence. This removes the device from the lists we control
768 * from here, has it removed from the other driver model
769 * subsystems it was added to in device_add(), and removes it
770 * from the kobject hierarchy.
771 *
772 * NOTE: this should be called manually _iff_ device_add() was
773 * also called manually.
774 */
775
776void device_del(struct device * dev)
777{
778 struct device * parent = dev->parent;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200779 struct class_interface *class_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (parent)
Patrick Mocheld62c0f92005-06-24 08:39:33 -0700782 klist_del(&dev->knode_parent);
Catalin Marinas82189b92006-11-25 11:09:30 -0800783 if (dev->devt_attr) {
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700784 device_remove_file(dev, dev->devt_attr);
Catalin Marinas82189b92006-11-25 11:09:30 -0800785 kfree(dev->devt_attr);
786 }
Kay Sieversb9d9c822006-06-15 15:31:56 +0200787 if (dev->class) {
788 sysfs_remove_link(&dev->kobj, "subsystem");
Greg Kroah-Hartman40fa5422006-10-24 00:37:58 +0100789 /* If this is not a "fake" compatible device, remove the
790 * symlink from the class to the device. */
791 if (dev->kobj.parent != &dev->class->subsys.kset.kobj)
792 sysfs_remove_link(&dev->class->subsys.kset.kobj,
793 dev->bus_id);
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -0700794 if (parent) {
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800795#ifdef CONFIG_SYSFS_DEPRECATED
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200796 char *class_name = make_class_name(dev->class->name,
797 &dev->kobj);
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100798 if (class_name)
799 sysfs_remove_link(&dev->parent->kobj,
800 class_name);
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200801 kfree(class_name);
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -0800802#endif
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200803 sysfs_remove_link(&dev->kobj, "device");
Greg Kroah-Hartman64bb5d22006-06-28 16:19:58 -0700804 }
Kay Sievers99ef3ef2006-09-14 11:23:28 +0200805
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700806 down(&dev->class->sem);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200807 /* notify any interfaces that the device is now gone */
808 list_for_each_entry(class_intf, &dev->class->interfaces, node)
809 if (class_intf->remove_dev)
810 class_intf->remove_dev(dev, class_intf);
811 /* remove the device from the class list */
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -0700812 list_del_init(&dev->node);
813 up(&dev->class->sem);
Kay Sievers86406242007-03-14 03:25:56 +0100814
815 /* If we live in a parent class-directory, unreference it */
816 if (dev->kobj.parent->kset == &dev->class->class_dirs) {
817 struct device *d;
818 int other = 0;
819
820 /*
821 * if we are the last child of our class, delete
822 * our class-directory at this parent
823 */
824 down(&dev->class->sem);
825 list_for_each_entry(d, &dev->class->devices, node) {
826 if (d == dev)
827 continue;
828 if (d->kobj.parent == dev->kobj.parent) {
829 other = 1;
830 break;
831 }
832 }
833 if (!other)
834 kobject_del(dev->kobj.parent);
835
836 kobject_put(dev->kobj.parent);
837 up(&dev->class->sem);
838 }
Kay Sieversb9d9c822006-06-15 15:31:56 +0200839 }
Kay Sieversa7fd6702005-10-01 14:49:43 +0200840 device_remove_file(dev, &dev->uevent_attr);
Greg Kroah-Hartmande0ff002006-06-27 00:06:09 -0700841 device_remove_groups(dev);
Greg Kroah-Hartman2620efe2006-06-28 16:19:58 -0700842 device_remove_attrs(dev);
Benjamin Herrenschmidt28953532006-11-08 19:46:14 -0800843 bus_remove_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Tejun Heo2f8d16a2007-03-09 19:34:19 +0900845 /*
846 * Some platform devices are driven without driver attached
847 * and managed resources may have been acquired. Make sure
848 * all resources are released.
849 */
850 devres_release_all(dev);
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 /* Notify the platform of the removal, in case they
853 * need to do anything...
854 */
855 if (platform_notify_remove)
856 platform_notify_remove(dev);
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000857 if (dev->bus)
858 blocking_notifier_call_chain(&dev->bus->bus_notifier,
859 BUS_NOTIFY_DEL_DEVICE, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 device_pm_remove(dev);
Kay Sievers312c0042005-11-16 09:00:00 +0100861 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 kobject_del(&dev->kobj);
863 if (parent)
864 put_device(parent);
865}
866
867/**
868 * device_unregister - unregister device from system.
869 * @dev: device going away.
870 *
871 * We do this in two parts, like we do device_register(). First,
872 * we remove it from all the subsystems with device_del(), then
873 * we decrement the reference count via put_device(). If that
874 * is the final reference count, the device will be cleaned up
875 * via device_release() above. Otherwise, the structure will
876 * stick around until the final reference to the device is dropped.
877 */
878void device_unregister(struct device * dev)
879{
880 pr_debug("DEV: Unregistering device. ID = '%s'\n", dev->bus_id);
881 device_del(dev);
882 put_device(dev);
883}
884
885
mochel@digitalimplant.org36239572005-03-24 19:08:30 -0800886static struct device * next_device(struct klist_iter * i)
887{
888 struct klist_node * n = klist_next(i);
889 return n ? container_of(n, struct device, knode_parent) : NULL;
890}
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892/**
893 * device_for_each_child - device child iterator.
Randy Dunlapc41455f2005-10-23 11:59:14 -0700894 * @parent: parent struct device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 * @data: data for the callback.
896 * @fn: function to be called for each device.
897 *
Randy Dunlapc41455f2005-10-23 11:59:14 -0700898 * Iterate over @parent's child devices, and call @fn for each,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 * passing it @data.
900 *
901 * We check the return of @fn each time. If it returns anything
902 * other than 0, we break out and return that value.
903 */
mochel@digitalimplant.org36239572005-03-24 19:08:30 -0800904int device_for_each_child(struct device * parent, void * data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 int (*fn)(struct device *, void *))
906{
mochel@digitalimplant.org36239572005-03-24 19:08:30 -0800907 struct klist_iter i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 struct device * child;
909 int error = 0;
910
mochel@digitalimplant.org36239572005-03-24 19:08:30 -0800911 klist_iter_init(&parent->klist_children, &i);
912 while ((child = next_device(&i)) && !error)
913 error = fn(child, data);
914 klist_iter_exit(&i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 return error;
916}
917
Cornelia Huck5ab69982006-11-16 15:42:07 +0100918/**
919 * device_find_child - device iterator for locating a particular device.
920 * @parent: parent struct device
921 * @data: Data to pass to match function
922 * @match: Callback function to check device
923 *
924 * This is similar to the device_for_each_child() function above, but it
925 * returns a reference to a device that is 'found' for later use, as
926 * determined by the @match callback.
927 *
928 * The callback should return 0 if the device doesn't match and non-zero
929 * if it does. If the callback returns non-zero and a reference to the
930 * current device can be obtained, this function will return to the caller
931 * and not iterate over any more devices.
932 */
933struct device * device_find_child(struct device *parent, void *data,
934 int (*match)(struct device *, void *))
935{
936 struct klist_iter i;
937 struct device *child;
938
939 if (!parent)
940 return NULL;
941
942 klist_iter_init(&parent->klist_children, &i);
943 while ((child = next_device(&i)))
944 if (match(child, data) && get_device(child))
945 break;
946 klist_iter_exit(&i);
947 return child;
948}
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950int __init devices_init(void)
951{
952 return subsystem_register(&devices_subsys);
953}
954
955EXPORT_SYMBOL_GPL(device_for_each_child);
Cornelia Huck5ab69982006-11-16 15:42:07 +0100956EXPORT_SYMBOL_GPL(device_find_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958EXPORT_SYMBOL_GPL(device_initialize);
959EXPORT_SYMBOL_GPL(device_add);
960EXPORT_SYMBOL_GPL(device_register);
961
962EXPORT_SYMBOL_GPL(device_del);
963EXPORT_SYMBOL_GPL(device_unregister);
964EXPORT_SYMBOL_GPL(get_device);
965EXPORT_SYMBOL_GPL(put_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967EXPORT_SYMBOL_GPL(device_create_file);
968EXPORT_SYMBOL_GPL(device_remove_file);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700969
970
971static void device_create_release(struct device *dev)
972{
973 pr_debug("%s called for %s\n", __FUNCTION__, dev->bus_id);
974 kfree(dev);
975}
976
977/**
978 * device_create - creates a device and registers it with sysfs
Henrik Kretzschmar42734da2006-07-05 00:53:19 +0200979 * @class: pointer to the struct class that this device should be registered to
980 * @parent: pointer to the parent struct device of this new device, if any
981 * @devt: the dev_t for the char device to be added
982 * @fmt: string for the device's name
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700983 *
Henrik Kretzschmar42734da2006-07-05 00:53:19 +0200984 * This function can be used by char device classes. A struct device
985 * will be created in sysfs, registered to the specified class.
986 *
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700987 * A "dev" file will be created, showing the dev_t for the device, if
988 * the dev_t is not 0,0.
Henrik Kretzschmar42734da2006-07-05 00:53:19 +0200989 * If a pointer to a parent struct device is passed in, the newly created
990 * struct device will be a child of that device in sysfs.
991 * The pointer to the struct device will be returned from the call.
992 * Any further sysfs files that might be required can be created using this
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700993 * pointer.
994 *
995 * Note: the struct class passed to this function must have previously
996 * been created with a call to class_create().
997 */
998struct device *device_create(struct class *class, struct device *parent,
Greg Kroah-Hartman5cbe5f82006-08-10 01:19:19 -0400999 dev_t devt, const char *fmt, ...)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001000{
1001 va_list args;
1002 struct device *dev = NULL;
1003 int retval = -ENODEV;
1004
1005 if (class == NULL || IS_ERR(class))
1006 goto error;
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001007
1008 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1009 if (!dev) {
1010 retval = -ENOMEM;
1011 goto error;
1012 }
1013
1014 dev->devt = devt;
1015 dev->class = class;
1016 dev->parent = parent;
1017 dev->release = device_create_release;
1018
1019 va_start(args, fmt);
1020 vsnprintf(dev->bus_id, BUS_ID_SIZE, fmt, args);
1021 va_end(args);
1022 retval = device_register(dev);
1023 if (retval)
1024 goto error;
1025
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001026 return dev;
1027
1028error:
1029 kfree(dev);
1030 return ERR_PTR(retval);
1031}
1032EXPORT_SYMBOL_GPL(device_create);
1033
1034/**
1035 * device_destroy - removes a device that was created with device_create()
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001036 * @class: pointer to the struct class that this device was registered with
1037 * @devt: the dev_t of the device that was previously registered
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001038 *
Henrik Kretzschmar42734da2006-07-05 00:53:19 +02001039 * This call unregisters and cleans up a device that was created with a
1040 * call to device_create().
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001041 */
1042void device_destroy(struct class *class, dev_t devt)
1043{
1044 struct device *dev = NULL;
1045 struct device *dev_tmp;
1046
1047 down(&class->sem);
1048 list_for_each_entry(dev_tmp, &class->devices, node) {
1049 if (dev_tmp->devt == devt) {
1050 dev = dev_tmp;
1051 break;
1052 }
1053 }
1054 up(&class->sem);
1055
Greg Kroah-Hartman5d9fd162006-06-22 17:17:32 -07001056 if (dev)
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001057 device_unregister(dev);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -07001058}
1059EXPORT_SYMBOL_GPL(device_destroy);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001060
1061/**
1062 * device_rename - renames a device
1063 * @dev: the pointer to the struct device to be renamed
1064 * @new_name: the new name of the device
1065 */
1066int device_rename(struct device *dev, char *new_name)
1067{
1068 char *old_class_name = NULL;
1069 char *new_class_name = NULL;
1070 char *old_symlink_name = NULL;
1071 int error;
1072
1073 dev = get_device(dev);
1074 if (!dev)
1075 return -EINVAL;
1076
1077 pr_debug("DEVICE: renaming '%s' to '%s'\n", dev->bus_id, new_name);
1078
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001079#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001080 if ((dev->class) && (dev->parent))
1081 old_class_name = make_class_name(dev->class->name, &dev->kobj);
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001082#endif
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001083
1084 if (dev->class) {
1085 old_symlink_name = kmalloc(BUS_ID_SIZE, GFP_KERNEL);
Jesper Juhl952ab432006-09-28 23:56:01 +02001086 if (!old_symlink_name) {
1087 error = -ENOMEM;
1088 goto out_free_old_class;
1089 }
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001090 strlcpy(old_symlink_name, dev->bus_id, BUS_ID_SIZE);
1091 }
1092
1093 strlcpy(dev->bus_id, new_name, BUS_ID_SIZE);
1094
1095 error = kobject_rename(&dev->kobj, new_name);
1096
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001097#ifdef CONFIG_SYSFS_DEPRECATED
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001098 if (old_class_name) {
1099 new_class_name = make_class_name(dev->class->name, &dev->kobj);
1100 if (new_class_name) {
1101 sysfs_create_link(&dev->parent->kobj, &dev->kobj,
1102 new_class_name);
1103 sysfs_remove_link(&dev->parent->kobj, old_class_name);
1104 }
1105 }
Kay Sievers99ef3ef2006-09-14 11:23:28 +02001106#endif
1107
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001108 if (dev->class) {
1109 sysfs_remove_link(&dev->class->subsys.kset.kobj,
1110 old_symlink_name);
1111 sysfs_create_link(&dev->class->subsys.kset.kobj, &dev->kobj,
1112 dev->bus_id);
1113 }
1114 put_device(dev);
1115
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001116 kfree(new_class_name);
1117 kfree(old_symlink_name);
Jesper Juhl952ab432006-09-28 23:56:01 +02001118 out_free_old_class:
1119 kfree(old_class_name);
Greg Kroah-Hartmana2de48c2006-07-03 14:31:12 -07001120
1121 return error;
1122}
Johannes Berga2807db2007-02-28 12:38:31 +01001123EXPORT_SYMBOL_GPL(device_rename);
Cornelia Huck8a824722006-11-20 17:07:51 +01001124
1125static int device_move_class_links(struct device *dev,
1126 struct device *old_parent,
1127 struct device *new_parent)
1128{
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001129 int error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001130#ifdef CONFIG_SYSFS_DEPRECATED
Cornelia Huck8a824722006-11-20 17:07:51 +01001131 char *class_name;
1132
1133 class_name = make_class_name(dev->class->name, &dev->kobj);
1134 if (!class_name) {
Cornelia Huckcb360bb2006-11-27 10:35:05 +01001135 error = -ENOMEM;
Cornelia Huck8a824722006-11-20 17:07:51 +01001136 goto out;
1137 }
1138 if (old_parent) {
1139 sysfs_remove_link(&dev->kobj, "device");
1140 sysfs_remove_link(&old_parent->kobj, class_name);
1141 }
Cornelia Huckc744aea2007-01-08 20:16:44 +01001142 if (new_parent) {
1143 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1144 "device");
1145 if (error)
1146 goto out;
1147 error = sysfs_create_link(&new_parent->kobj, &dev->kobj,
1148 class_name);
1149 if (error)
1150 sysfs_remove_link(&dev->kobj, "device");
1151 }
1152 else
1153 error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +01001154out:
1155 kfree(class_name);
1156 return error;
1157#else
Greg Kroah-Hartmanf7f34612007-03-06 12:55:53 -08001158 if (old_parent)
1159 sysfs_remove_link(&dev->kobj, "device");
1160 if (new_parent)
1161 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1162 "device");
1163 return error;
Cornelia Huck8a824722006-11-20 17:07:51 +01001164#endif
1165}
1166
1167/**
1168 * device_move - moves a device to a new parent
1169 * @dev: the pointer to the struct device to be moved
Cornelia Huckc744aea2007-01-08 20:16:44 +01001170 * @new_parent: the new parent of the device (can by NULL)
Cornelia Huck8a824722006-11-20 17:07:51 +01001171 */
1172int device_move(struct device *dev, struct device *new_parent)
1173{
1174 int error;
1175 struct device *old_parent;
Cornelia Huckc744aea2007-01-08 20:16:44 +01001176 struct kobject *new_parent_kobj;
Cornelia Huck8a824722006-11-20 17:07:51 +01001177
1178 dev = get_device(dev);
1179 if (!dev)
1180 return -EINVAL;
1181
Cornelia Huck8a824722006-11-20 17:07:51 +01001182 new_parent = get_device(new_parent);
Cornelia Huckc744aea2007-01-08 20:16:44 +01001183 new_parent_kobj = get_device_parent (dev, new_parent);
1184 if (IS_ERR(new_parent_kobj)) {
1185 error = PTR_ERR(new_parent_kobj);
1186 put_device(new_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +01001187 goto out;
1188 }
1189 pr_debug("DEVICE: moving '%s' to '%s'\n", dev->bus_id,
Cornelia Huckc744aea2007-01-08 20:16:44 +01001190 new_parent ? new_parent->bus_id : "<NULL>");
1191 error = kobject_move(&dev->kobj, new_parent_kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +01001192 if (error) {
1193 put_device(new_parent);
1194 goto out;
1195 }
1196 old_parent = dev->parent;
1197 dev->parent = new_parent;
1198 if (old_parent)
Cornelia Huckacf02d22006-11-22 17:49:39 +01001199 klist_remove(&dev->knode_parent);
Cornelia Huckc744aea2007-01-08 20:16:44 +01001200 if (new_parent)
1201 klist_add_tail(&dev->knode_parent, &new_parent->klist_children);
Cornelia Huck8a824722006-11-20 17:07:51 +01001202 if (!dev->class)
1203 goto out_put;
1204 error = device_move_class_links(dev, old_parent, new_parent);
1205 if (error) {
1206 /* We ignore errors on cleanup since we're hosed anyway... */
1207 device_move_class_links(dev, new_parent, old_parent);
1208 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
Cornelia Huckc744aea2007-01-08 20:16:44 +01001209 if (new_parent)
1210 klist_remove(&dev->knode_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +01001211 if (old_parent)
1212 klist_add_tail(&dev->knode_parent,
1213 &old_parent->klist_children);
1214 }
1215 put_device(new_parent);
1216 goto out;
1217 }
1218out_put:
1219 put_device(old_parent);
1220out:
1221 put_device(dev);
1222 return error;
1223}
1224
1225EXPORT_SYMBOL_GPL(device_move);