kobject: Transmit return value of call_usermodehelper() to caller
[deliverable/linux.git] / drivers / base / core.c
CommitLineData
1da177e4
LT
1/*
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
64bb5d2c
GKH
6 * Copyright (c) 2006 Greg Kroah-Hartman <gregkh@suse.de>
7 * Copyright (c) 2006 Novell, Inc.
1da177e4
LT
8 *
9 * This file is released under the GPLv2
10 *
11 */
12
1da177e4
LT
13#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>
23681e47 19#include <linux/kdev_t.h>
116af378 20#include <linux/notifier.h>
da231fd5 21#include <linux/genhd.h>
815d2d50 22#include <linux/kallsyms.h>
6188e10d 23#include <linux/semaphore.h>
f75b1c60 24#include <linux/mutex.h>
1da177e4
LT
25
26#include "base.h"
27#include "power/power.h"
28
4a3ad20c
GKH
29int (*platform_notify)(struct device *dev) = NULL;
30int (*platform_notify_remove)(struct device *dev) = NULL;
e105b8bf
DW
31static struct kobject *dev_kobj;
32struct kobject *sysfs_dev_char_kobj;
33struct kobject *sysfs_dev_block_kobj;
1da177e4 34
4e886c29
GKH
35#ifdef CONFIG_BLOCK
36static inline int device_is_not_partition(struct device *dev)
37{
38 return !(dev->type == &part_type);
39}
40#else
41static inline int device_is_not_partition(struct device *dev)
42{
43 return 1;
44}
45#endif
1da177e4 46
3e95637a
AS
47/**
48 * dev_driver_string - Return a device's driver name, if at all possible
49 * @dev: struct device to get the name of
50 *
51 * Will return the device's driver's name if it is bound to a device. If
52 * the device is not bound to a device, it will return the name of the bus
53 * it is attached to. If it is not attached to a bus either, an empty
54 * string will be returned.
55 */
56const char *dev_driver_string(struct device *dev)
57{
58 return dev->driver ? dev->driver->name :
a456b702
JD
59 (dev->bus ? dev->bus->name :
60 (dev->class ? dev->class->name : ""));
3e95637a 61}
310a922d 62EXPORT_SYMBOL(dev_driver_string);
3e95637a 63
1da177e4
LT
64#define to_dev(obj) container_of(obj, struct device, kobj)
65#define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
66
4a3ad20c
GKH
67static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
68 char *buf)
1da177e4 69{
4a3ad20c
GKH
70 struct device_attribute *dev_attr = to_dev_attr(attr);
71 struct device *dev = to_dev(kobj);
4a0c20bf 72 ssize_t ret = -EIO;
1da177e4
LT
73
74 if (dev_attr->show)
54b6f35c 75 ret = dev_attr->show(dev, dev_attr, buf);
815d2d50
AM
76 if (ret >= (ssize_t)PAGE_SIZE) {
77 print_symbol("dev_attr_show: %s returned bad count\n",
78 (unsigned long)dev_attr->show);
79 }
1da177e4
LT
80 return ret;
81}
82
4a3ad20c
GKH
83static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
84 const char *buf, size_t count)
1da177e4 85{
4a3ad20c
GKH
86 struct device_attribute *dev_attr = to_dev_attr(attr);
87 struct device *dev = to_dev(kobj);
4a0c20bf 88 ssize_t ret = -EIO;
1da177e4
LT
89
90 if (dev_attr->store)
54b6f35c 91 ret = dev_attr->store(dev, dev_attr, buf, count);
1da177e4
LT
92 return ret;
93}
94
95static struct sysfs_ops dev_sysfs_ops = {
96 .show = dev_attr_show,
97 .store = dev_attr_store,
98};
99
100
101/**
102 * device_release - free device structure.
103 * @kobj: device's kobject.
104 *
105 * This is called once the reference count for the object
106 * reaches 0. We forward the call to the device's release
107 * method, which should handle actually freeing the structure.
108 */
4a3ad20c 109static void device_release(struct kobject *kobj)
1da177e4 110{
4a3ad20c 111 struct device *dev = to_dev(kobj);
1da177e4
LT
112
113 if (dev->release)
114 dev->release(dev);
f9f852df
KS
115 else if (dev->type && dev->type->release)
116 dev->type->release(dev);
2620efef
GKH
117 else if (dev->class && dev->class->dev_release)
118 dev->class->dev_release(dev);
1da177e4 119 else {
4a3ad20c
GKH
120 printk(KERN_ERR "Device '%s' does not have a release() "
121 "function, it is broken and must be fixed.\n",
1da177e4
LT
122 dev->bus_id);
123 WARN_ON(1);
124 }
125}
126
8f4afc41 127static struct kobj_type device_ktype = {
1da177e4
LT
128 .release = device_release,
129 .sysfs_ops = &dev_sysfs_ops,
1da177e4
LT
130};
131
132
312c004d 133static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
1da177e4
LT
134{
135 struct kobj_type *ktype = get_ktype(kobj);
136
8f4afc41 137 if (ktype == &device_ktype) {
1da177e4 138 struct device *dev = to_dev(kobj);
83b5fb4c
CH
139 if (dev->uevent_suppress)
140 return 0;
1da177e4
LT
141 if (dev->bus)
142 return 1;
23681e47
GKH
143 if (dev->class)
144 return 1;
1da177e4
LT
145 }
146 return 0;
147}
148
312c004d 149static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
1da177e4
LT
150{
151 struct device *dev = to_dev(kobj);
152
23681e47
GKH
153 if (dev->bus)
154 return dev->bus->name;
155 if (dev->class)
156 return dev->class->name;
157 return NULL;
1da177e4
LT
158}
159
7eff2e7a
KS
160static int dev_uevent(struct kset *kset, struct kobject *kobj,
161 struct kobj_uevent_env *env)
1da177e4
LT
162{
163 struct device *dev = to_dev(kobj);
1da177e4
LT
164 int retval = 0;
165
23681e47
GKH
166 /* add the major/minor if present */
167 if (MAJOR(dev->devt)) {
7eff2e7a
KS
168 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
169 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
23681e47
GKH
170 }
171
414264f9 172 if (dev->type && dev->type->name)
7eff2e7a 173 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
414264f9 174
239378f1 175 if (dev->driver)
7eff2e7a 176 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
239378f1 177
a87cb2ac 178#ifdef CONFIG_SYSFS_DEPRECATED
239378f1
KS
179 if (dev->class) {
180 struct device *parent = dev->parent;
181
182 /* find first bus device in parent chain */
183 while (parent && !parent->bus)
184 parent = parent->parent;
185 if (parent && parent->bus) {
186 const char *path;
187
188 path = kobject_get_path(&parent->kobj, GFP_KERNEL);
2c7afd12 189 if (path) {
7eff2e7a 190 add_uevent_var(env, "PHYSDEVPATH=%s", path);
2c7afd12
KS
191 kfree(path);
192 }
239378f1 193
7eff2e7a 194 add_uevent_var(env, "PHYSDEVBUS=%s", parent->bus->name);
239378f1
KS
195
196 if (parent->driver)
7eff2e7a
KS
197 add_uevent_var(env, "PHYSDEVDRIVER=%s",
198 parent->driver->name);
239378f1
KS
199 }
200 } else if (dev->bus) {
7eff2e7a 201 add_uevent_var(env, "PHYSDEVBUS=%s", dev->bus->name);
239378f1
KS
202
203 if (dev->driver)
4a3ad20c
GKH
204 add_uevent_var(env, "PHYSDEVDRIVER=%s",
205 dev->driver->name);
d81d9d6b 206 }
239378f1 207#endif
1da177e4 208
7eff2e7a 209 /* have the bus specific function add its stuff */
312c004d 210 if (dev->bus && dev->bus->uevent) {
7eff2e7a 211 retval = dev->bus->uevent(dev, env);
f9f852df 212 if (retval)
7dc72b28 213 pr_debug("device: '%s': %s: bus uevent() returned %d\n",
2b3a302a 214 dev->bus_id, __func__, retval);
1da177e4
LT
215 }
216
7eff2e7a 217 /* have the class specific function add its stuff */
2620efef 218 if (dev->class && dev->class->dev_uevent) {
7eff2e7a 219 retval = dev->class->dev_uevent(dev, env);
f9f852df 220 if (retval)
7dc72b28
GKH
221 pr_debug("device: '%s': %s: class uevent() "
222 "returned %d\n", dev->bus_id,
2b3a302a 223 __func__, retval);
f9f852df
KS
224 }
225
7eff2e7a 226 /* have the device type specific fuction add its stuff */
f9f852df 227 if (dev->type && dev->type->uevent) {
7eff2e7a 228 retval = dev->type->uevent(dev, env);
f9f852df 229 if (retval)
7dc72b28
GKH
230 pr_debug("device: '%s': %s: dev_type uevent() "
231 "returned %d\n", dev->bus_id,
2b3a302a 232 __func__, retval);
2620efef
GKH
233 }
234
1da177e4
LT
235 return retval;
236}
237
312c004d
KS
238static struct kset_uevent_ops device_uevent_ops = {
239 .filter = dev_uevent_filter,
240 .name = dev_uevent_name,
241 .uevent = dev_uevent,
1da177e4
LT
242};
243
16574dcc
KS
244static ssize_t show_uevent(struct device *dev, struct device_attribute *attr,
245 char *buf)
246{
247 struct kobject *top_kobj;
248 struct kset *kset;
7eff2e7a 249 struct kobj_uevent_env *env = NULL;
16574dcc
KS
250 int i;
251 size_t count = 0;
252 int retval;
253
254 /* search the kset, the device belongs to */
255 top_kobj = &dev->kobj;
5c5daf65
KS
256 while (!top_kobj->kset && top_kobj->parent)
257 top_kobj = top_kobj->parent;
16574dcc
KS
258 if (!top_kobj->kset)
259 goto out;
5c5daf65 260
16574dcc
KS
261 kset = top_kobj->kset;
262 if (!kset->uevent_ops || !kset->uevent_ops->uevent)
263 goto out;
264
265 /* respect filter */
266 if (kset->uevent_ops && kset->uevent_ops->filter)
267 if (!kset->uevent_ops->filter(kset, &dev->kobj))
268 goto out;
269
7eff2e7a
KS
270 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
271 if (!env)
c7308c81
GKH
272 return -ENOMEM;
273
16574dcc 274 /* let the kset specific function add its keys */
7eff2e7a 275 retval = kset->uevent_ops->uevent(kset, &dev->kobj, env);
16574dcc
KS
276 if (retval)
277 goto out;
278
279 /* copy keys to file */
7eff2e7a
KS
280 for (i = 0; i < env->envp_idx; i++)
281 count += sprintf(&buf[count], "%s\n", env->envp[i]);
16574dcc 282out:
7eff2e7a 283 kfree(env);
16574dcc
KS
284 return count;
285}
286
a7fd6706
KS
287static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
288 const char *buf, size_t count)
289{
60a96a59
KS
290 enum kobject_action action;
291
5c5daf65 292 if (kobject_action_type(buf, count, &action) == 0) {
60a96a59
KS
293 kobject_uevent(&dev->kobj, action);
294 goto out;
295 }
296
297 dev_err(dev, "uevent: unsupported action-string; this will "
298 "be ignored in a future kernel version\n");
312c004d 299 kobject_uevent(&dev->kobj, KOBJ_ADD);
60a96a59 300out:
a7fd6706
KS
301 return count;
302}
303
ad6a1e1c
TH
304static struct device_attribute uevent_attr =
305 __ATTR(uevent, S_IRUGO | S_IWUSR, show_uevent, store_uevent);
306
621a1672
DT
307static int device_add_attributes(struct device *dev,
308 struct device_attribute *attrs)
de0ff00d 309{
621a1672 310 int error = 0;
de0ff00d 311 int i;
621a1672
DT
312
313 if (attrs) {
314 for (i = 0; attr_name(attrs[i]); i++) {
315 error = device_create_file(dev, &attrs[i]);
316 if (error)
317 break;
318 }
319 if (error)
320 while (--i >= 0)
321 device_remove_file(dev, &attrs[i]);
322 }
323 return error;
324}
325
326static void device_remove_attributes(struct device *dev,
327 struct device_attribute *attrs)
328{
329 int i;
330
331 if (attrs)
332 for (i = 0; attr_name(attrs[i]); i++)
333 device_remove_file(dev, &attrs[i]);
334}
335
336static int device_add_groups(struct device *dev,
337 struct attribute_group **groups)
338{
de0ff00d 339 int error = 0;
621a1672 340 int i;
de0ff00d 341
621a1672
DT
342 if (groups) {
343 for (i = 0; groups[i]; i++) {
344 error = sysfs_create_group(&dev->kobj, groups[i]);
de0ff00d
GKH
345 if (error) {
346 while (--i >= 0)
4a3ad20c
GKH
347 sysfs_remove_group(&dev->kobj,
348 groups[i]);
621a1672 349 break;
de0ff00d
GKH
350 }
351 }
352 }
de0ff00d
GKH
353 return error;
354}
355
621a1672
DT
356static void device_remove_groups(struct device *dev,
357 struct attribute_group **groups)
de0ff00d
GKH
358{
359 int i;
621a1672
DT
360
361 if (groups)
362 for (i = 0; groups[i]; i++)
363 sysfs_remove_group(&dev->kobj, groups[i]);
de0ff00d
GKH
364}
365
2620efef
GKH
366static int device_add_attrs(struct device *dev)
367{
368 struct class *class = dev->class;
f9f852df 369 struct device_type *type = dev->type;
621a1672 370 int error;
2620efef 371
621a1672
DT
372 if (class) {
373 error = device_add_attributes(dev, class->dev_attrs);
f9f852df 374 if (error)
621a1672 375 return error;
2620efef 376 }
f9f852df 377
621a1672
DT
378 if (type) {
379 error = device_add_groups(dev, type->groups);
f9f852df 380 if (error)
621a1672 381 goto err_remove_class_attrs;
f9f852df
KS
382 }
383
621a1672
DT
384 error = device_add_groups(dev, dev->groups);
385 if (error)
386 goto err_remove_type_groups;
387
388 return 0;
389
390 err_remove_type_groups:
391 if (type)
392 device_remove_groups(dev, type->groups);
393 err_remove_class_attrs:
394 if (class)
395 device_remove_attributes(dev, class->dev_attrs);
396
2620efef
GKH
397 return error;
398}
399
400static void device_remove_attrs(struct device *dev)
401{
402 struct class *class = dev->class;
f9f852df 403 struct device_type *type = dev->type;
2620efef 404
621a1672 405 device_remove_groups(dev, dev->groups);
f9f852df 406
621a1672
DT
407 if (type)
408 device_remove_groups(dev, type->groups);
409
410 if (class)
411 device_remove_attributes(dev, class->dev_attrs);
2620efef
GKH
412}
413
414
23681e47
GKH
415static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
416 char *buf)
417{
418 return print_dev_t(buf, dev->devt);
419}
420
ad6a1e1c
TH
421static struct device_attribute devt_attr =
422 __ATTR(dev, S_IRUGO, show_dev, NULL);
423
881c6cfd
GKH
424/* kset to create /sys/devices/ */
425struct kset *devices_kset;
1da177e4 426
1da177e4 427/**
4a3ad20c
GKH
428 * device_create_file - create sysfs attribute file for device.
429 * @dev: device.
430 * @attr: device attribute descriptor.
1da177e4 431 */
4a3ad20c 432int device_create_file(struct device *dev, struct device_attribute *attr)
1da177e4
LT
433{
434 int error = 0;
0c98b19f 435 if (dev)
1da177e4 436 error = sysfs_create_file(&dev->kobj, &attr->attr);
1da177e4
LT
437 return error;
438}
439
440/**
4a3ad20c
GKH
441 * device_remove_file - remove sysfs attribute file.
442 * @dev: device.
443 * @attr: device attribute descriptor.
1da177e4 444 */
4a3ad20c 445void device_remove_file(struct device *dev, struct device_attribute *attr)
1da177e4 446{
0c98b19f 447 if (dev)
1da177e4 448 sysfs_remove_file(&dev->kobj, &attr->attr);
1da177e4
LT
449}
450
2589f188
GKH
451/**
452 * device_create_bin_file - create sysfs binary attribute file for device.
453 * @dev: device.
454 * @attr: device binary attribute descriptor.
455 */
456int device_create_bin_file(struct device *dev, struct bin_attribute *attr)
457{
458 int error = -EINVAL;
459 if (dev)
460 error = sysfs_create_bin_file(&dev->kobj, attr);
461 return error;
462}
463EXPORT_SYMBOL_GPL(device_create_bin_file);
464
465/**
466 * device_remove_bin_file - remove sysfs binary attribute file
467 * @dev: device.
468 * @attr: device binary attribute descriptor.
469 */
470void device_remove_bin_file(struct device *dev, struct bin_attribute *attr)
471{
472 if (dev)
473 sysfs_remove_bin_file(&dev->kobj, attr);
474}
475EXPORT_SYMBOL_GPL(device_remove_bin_file);
476
d9a9cdfb 477/**
523ded71 478 * device_schedule_callback_owner - helper to schedule a callback for a device
d9a9cdfb
AS
479 * @dev: device.
480 * @func: callback function to invoke later.
523ded71 481 * @owner: module owning the callback routine
d9a9cdfb
AS
482 *
483 * Attribute methods must not unregister themselves or their parent device
484 * (which would amount to the same thing). Attempts to do so will deadlock,
485 * since unregistration is mutually exclusive with driver callbacks.
486 *
487 * Instead methods can call this routine, which will attempt to allocate
488 * and schedule a workqueue request to call back @func with @dev as its
489 * argument in the workqueue's process context. @dev will be pinned until
490 * @func returns.
491 *
523ded71
AS
492 * This routine is usually called via the inline device_schedule_callback(),
493 * which automatically sets @owner to THIS_MODULE.
494 *
d9a9cdfb 495 * Returns 0 if the request was submitted, -ENOMEM if storage could not
523ded71 496 * be allocated, -ENODEV if a reference to @owner isn't available.
d9a9cdfb
AS
497 *
498 * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an
499 * underlying sysfs routine (since it is intended for use by attribute
500 * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
501 */
523ded71
AS
502int device_schedule_callback_owner(struct device *dev,
503 void (*func)(struct device *), struct module *owner)
d9a9cdfb
AS
504{
505 return sysfs_schedule_callback(&dev->kobj,
523ded71 506 (void (*)(void *)) func, dev, owner);
d9a9cdfb 507}
523ded71 508EXPORT_SYMBOL_GPL(device_schedule_callback_owner);
d9a9cdfb 509
34bb61f9
JB
510static void klist_children_get(struct klist_node *n)
511{
512 struct device *dev = container_of(n, struct device, knode_parent);
513
514 get_device(dev);
515}
516
517static void klist_children_put(struct klist_node *n)
518{
519 struct device *dev = container_of(n, struct device, knode_parent);
520
521 put_device(dev);
522}
523
1da177e4 524/**
4a3ad20c
GKH
525 * device_initialize - init device structure.
526 * @dev: device.
1da177e4 527 *
4a3ad20c
GKH
528 * This prepares the device for use by other layers,
529 * including adding it to the device hierarchy.
530 * It is the first half of device_register(), if called by
531 * that, though it can also be called separately, so one
532 * may use @dev's fields (e.g. the refcount).
1da177e4 533 */
1da177e4
LT
534void device_initialize(struct device *dev)
535{
881c6cfd 536 dev->kobj.kset = devices_kset;
f9cb074b 537 kobject_init(&dev->kobj, &device_ktype);
34bb61f9
JB
538 klist_init(&dev->klist_children, klist_children_get,
539 klist_children_put);
1da177e4 540 INIT_LIST_HEAD(&dev->dma_pools);
23681e47 541 INIT_LIST_HEAD(&dev->node);
af70316a 542 init_MUTEX(&dev->sem);
9ac7849e
TH
543 spin_lock_init(&dev->devres_lock);
544 INIT_LIST_HEAD(&dev->devres_head);
0ac85241 545 device_init_wakeup(dev, 0);
87348136 546 set_dev_node(dev, -1);
1da177e4
LT
547}
548
40fa5422 549#ifdef CONFIG_SYSFS_DEPRECATED
da231fd5
KS
550static struct kobject *get_device_parent(struct device *dev,
551 struct device *parent)
40fa5422 552{
da231fd5 553 /* class devices without a parent live in /sys/class/<classname>/ */
3eb215de 554 if (dev->class && (!parent || parent->class != dev->class))
1fbfee6c 555 return &dev->class->p->class_subsys.kobj;
da231fd5 556 /* all other devices keep their parent */
40fa5422 557 else if (parent)
c744aeae 558 return &parent->kobj;
40fa5422 559
c744aeae 560 return NULL;
40fa5422 561}
da231fd5
KS
562
563static inline void cleanup_device_parent(struct device *dev) {}
63b6971a
CH
564static inline void cleanup_glue_dir(struct device *dev,
565 struct kobject *glue_dir) {}
40fa5422 566#else
86406245 567static struct kobject *virtual_device_parent(struct device *dev)
f0ee61a6 568{
86406245 569 static struct kobject *virtual_dir = NULL;
f0ee61a6 570
86406245 571 if (!virtual_dir)
4ff6abff 572 virtual_dir = kobject_create_and_add("virtual",
881c6cfd 573 &devices_kset->kobj);
f0ee61a6 574
86406245 575 return virtual_dir;
f0ee61a6
GKH
576}
577
da231fd5
KS
578static struct kobject *get_device_parent(struct device *dev,
579 struct device *parent)
40fa5422 580{
43968d2f
GKH
581 int retval;
582
86406245
KS
583 if (dev->class) {
584 struct kobject *kobj = NULL;
585 struct kobject *parent_kobj;
586 struct kobject *k;
587
588 /*
589 * If we have no parent, we live in "virtual".
0f4dafc0
KS
590 * Class-devices with a non class-device as parent, live
591 * in a "glue" directory to prevent namespace collisions.
86406245
KS
592 */
593 if (parent == NULL)
594 parent_kobj = virtual_device_parent(dev);
595 else if (parent->class)
596 return &parent->kobj;
597 else
598 parent_kobj = &parent->kobj;
599
600 /* find our class-directory at the parent and reference it */
7c71448b
GKH
601 spin_lock(&dev->class->p->class_dirs.list_lock);
602 list_for_each_entry(k, &dev->class->p->class_dirs.list, entry)
86406245
KS
603 if (k->parent == parent_kobj) {
604 kobj = kobject_get(k);
605 break;
606 }
7c71448b 607 spin_unlock(&dev->class->p->class_dirs.list_lock);
86406245
KS
608 if (kobj)
609 return kobj;
610
611 /* or create a new class-directory at the parent device */
43968d2f
GKH
612 k = kobject_create();
613 if (!k)
614 return NULL;
7c71448b 615 k->kset = &dev->class->p->class_dirs;
b2d6db58 616 retval = kobject_add(k, parent_kobj, "%s", dev->class->name);
43968d2f
GKH
617 if (retval < 0) {
618 kobject_put(k);
619 return NULL;
620 }
0f4dafc0 621 /* do not emit an uevent for this simple "glue" directory */
43968d2f 622 return k;
86406245
KS
623 }
624
625 if (parent)
c744aeae
CH
626 return &parent->kobj;
627 return NULL;
628}
da231fd5 629
63b6971a 630static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
da231fd5 631{
0f4dafc0 632 /* see if we live in a "glue" directory */
c1fe539a 633 if (!glue_dir || !dev->class ||
7c71448b 634 glue_dir->kset != &dev->class->p->class_dirs)
da231fd5
KS
635 return;
636
0f4dafc0 637 kobject_put(glue_dir);
da231fd5 638}
63b6971a
CH
639
640static void cleanup_device_parent(struct device *dev)
641{
642 cleanup_glue_dir(dev, dev->kobj.parent);
643}
c744aeae 644#endif
86406245 645
63b6971a 646static void setup_parent(struct device *dev, struct device *parent)
c744aeae
CH
647{
648 struct kobject *kobj;
649 kobj = get_device_parent(dev, parent);
c744aeae
CH
650 if (kobj)
651 dev->kobj.parent = kobj;
40fa5422 652}
40fa5422 653
2ee97caf
CH
654static int device_add_class_symlinks(struct device *dev)
655{
656 int error;
657
658 if (!dev->class)
659 return 0;
da231fd5 660
1fbfee6c
GKH
661 error = sysfs_create_link(&dev->kobj,
662 &dev->class->p->class_subsys.kobj,
2ee97caf
CH
663 "subsystem");
664 if (error)
665 goto out;
da231fd5
KS
666
667#ifdef CONFIG_SYSFS_DEPRECATED
668 /* stacked class devices need a symlink in the class directory */
1fbfee6c 669 if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
4e886c29 670 device_is_not_partition(dev)) {
1fbfee6c 671 error = sysfs_create_link(&dev->class->p->class_subsys.kobj,
7c71448b 672 &dev->kobj, dev->bus_id);
2ee97caf
CH
673 if (error)
674 goto out_subsys;
675 }
da231fd5 676
4e886c29 677 if (dev->parent && device_is_not_partition(dev)) {
da231fd5
KS
678 struct device *parent = dev->parent;
679 char *class_name;
4f01a757 680
da231fd5
KS
681 /*
682 * stacked class devices have the 'device' link
683 * pointing to the bus device instead of the parent
684 */
685 while (parent->class && !parent->bus && parent->parent)
686 parent = parent->parent;
687
688 error = sysfs_create_link(&dev->kobj,
689 &parent->kobj,
4f01a757
DT
690 "device");
691 if (error)
692 goto out_busid;
da231fd5
KS
693
694 class_name = make_class_name(dev->class->name,
695 &dev->kobj);
696 if (class_name)
697 error = sysfs_create_link(&dev->parent->kobj,
698 &dev->kobj, class_name);
699 kfree(class_name);
700 if (error)
701 goto out_device;
2ee97caf
CH
702 }
703 return 0;
704
2ee97caf 705out_device:
4e886c29 706 if (dev->parent && device_is_not_partition(dev))
2ee97caf 707 sysfs_remove_link(&dev->kobj, "device");
2ee97caf 708out_busid:
1fbfee6c 709 if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
4e886c29 710 device_is_not_partition(dev))
1fbfee6c
GKH
711 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
712 dev->bus_id);
da231fd5
KS
713#else
714 /* link in the class directory pointing to the device */
1fbfee6c
GKH
715 error = sysfs_create_link(&dev->class->p->class_subsys.kobj,
716 &dev->kobj, dev->bus_id);
da231fd5
KS
717 if (error)
718 goto out_subsys;
719
4e886c29 720 if (dev->parent && device_is_not_partition(dev)) {
da231fd5
KS
721 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
722 "device");
723 if (error)
724 goto out_busid;
725 }
726 return 0;
727
728out_busid:
1fbfee6c 729 sysfs_remove_link(&dev->class->p->class_subsys.kobj, dev->bus_id);
da231fd5
KS
730#endif
731
2ee97caf
CH
732out_subsys:
733 sysfs_remove_link(&dev->kobj, "subsystem");
734out:
735 return error;
736}
737
738static void device_remove_class_symlinks(struct device *dev)
739{
740 if (!dev->class)
741 return;
da231fd5 742
2ee97caf 743#ifdef CONFIG_SYSFS_DEPRECATED
4e886c29 744 if (dev->parent && device_is_not_partition(dev)) {
2ee97caf
CH
745 char *class_name;
746
747 class_name = make_class_name(dev->class->name, &dev->kobj);
748 if (class_name) {
749 sysfs_remove_link(&dev->parent->kobj, class_name);
750 kfree(class_name);
751 }
2ee97caf
CH
752 sysfs_remove_link(&dev->kobj, "device");
753 }
da231fd5 754
1fbfee6c 755 if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
4e886c29 756 device_is_not_partition(dev))
1fbfee6c
GKH
757 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
758 dev->bus_id);
da231fd5 759#else
4e886c29 760 if (dev->parent && device_is_not_partition(dev))
da231fd5
KS
761 sysfs_remove_link(&dev->kobj, "device");
762
1fbfee6c 763 sysfs_remove_link(&dev->class->p->class_subsys.kobj, dev->bus_id);
da231fd5
KS
764#endif
765
2ee97caf
CH
766 sysfs_remove_link(&dev->kobj, "subsystem");
767}
768
413c239f
SR
769/**
770 * dev_set_name - set a device name
771 * @dev: device
46232366 772 * @fmt: format string for the device's name
413c239f
SR
773 */
774int dev_set_name(struct device *dev, const char *fmt, ...)
775{
776 va_list vargs;
777
778 va_start(vargs, fmt);
779 vsnprintf(dev->bus_id, sizeof(dev->bus_id), fmt, vargs);
780 va_end(vargs);
781 return 0;
782}
783EXPORT_SYMBOL_GPL(dev_set_name);
784
e105b8bf
DW
785/**
786 * device_to_dev_kobj - select a /sys/dev/ directory for the device
787 * @dev: device
788 *
789 * By default we select char/ for new entries. Setting class->dev_obj
790 * to NULL prevents an entry from being created. class->dev_kobj must
791 * be set (or cleared) before any devices are registered to the class
792 * otherwise device_create_sys_dev_entry() and
793 * device_remove_sys_dev_entry() will disagree about the the presence
794 * of the link.
795 */
796static struct kobject *device_to_dev_kobj(struct device *dev)
797{
798 struct kobject *kobj;
799
800 if (dev->class)
801 kobj = dev->class->dev_kobj;
802 else
803 kobj = sysfs_dev_char_kobj;
804
805 return kobj;
806}
807
808static int device_create_sys_dev_entry(struct device *dev)
809{
810 struct kobject *kobj = device_to_dev_kobj(dev);
811 int error = 0;
812 char devt_str[15];
813
814 if (kobj) {
815 format_dev_t(devt_str, dev->devt);
816 error = sysfs_create_link(kobj, &dev->kobj, devt_str);
817 }
818
819 return error;
820}
821
822static void device_remove_sys_dev_entry(struct device *dev)
823{
824 struct kobject *kobj = device_to_dev_kobj(dev);
825 char devt_str[15];
826
827 if (kobj) {
828 format_dev_t(devt_str, dev->devt);
829 sysfs_remove_link(kobj, devt_str);
830 }
831}
832
1da177e4 833/**
4a3ad20c
GKH
834 * device_add - add device to device hierarchy.
835 * @dev: device.
1da177e4 836 *
4a3ad20c
GKH
837 * This is part 2 of device_register(), though may be called
838 * separately _iff_ device_initialize() has been called separately.
1da177e4 839 *
4a3ad20c
GKH
840 * This adds it to the kobject hierarchy via kobject_add(), adds it
841 * to the global and sibling lists for the device, then
842 * adds it to the other relevant subsystems of the driver model.
1da177e4
LT
843 */
844int device_add(struct device *dev)
845{
846 struct device *parent = NULL;
c47ed219 847 struct class_interface *class_intf;
775b64d2
RW
848 int error;
849
1da177e4 850 dev = get_device(dev);
775b64d2
RW
851 if (!dev || !strlen(dev->bus_id)) {
852 error = -EINVAL;
c1fe539a 853 goto Done;
775b64d2 854 }
1da177e4 855
2b3a302a 856 pr_debug("device: '%s': %s\n", dev->bus_id, __func__);
c205ef48 857
1da177e4 858 parent = get_device(dev->parent);
63b6971a 859 setup_parent(dev, parent);
1da177e4 860
0d358f22
YL
861 /* use parent numa_node */
862 if (parent)
863 set_dev_node(dev, dev_to_node(parent));
864
1da177e4 865 /* first, register with generic layer. */
b2d6db58 866 error = kobject_add(&dev->kobj, dev->kobj.parent, "%s", dev->bus_id);
40fa5422 867 if (error)
1da177e4 868 goto Error;
a7fd6706 869
37022644
BW
870 /* notify platform of device entry */
871 if (platform_notify)
872 platform_notify(dev);
873
116af378
BH
874 /* notify clients of device entry (new way) */
875 if (dev->bus)
c6f7e72a 876 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
116af378
BH
877 BUS_NOTIFY_ADD_DEVICE, dev);
878
ad6a1e1c 879 error = device_create_file(dev, &uevent_attr);
a306eea4
CH
880 if (error)
881 goto attrError;
a7fd6706 882
23681e47 883 if (MAJOR(dev->devt)) {
ad6a1e1c
TH
884 error = device_create_file(dev, &devt_attr);
885 if (error)
a306eea4 886 goto ueventattrError;
e105b8bf
DW
887
888 error = device_create_sys_dev_entry(dev);
889 if (error)
890 goto devtattrError;
23681e47
GKH
891 }
892
2ee97caf
CH
893 error = device_add_class_symlinks(dev);
894 if (error)
895 goto SymlinkError;
dc0afa83
CH
896 error = device_add_attrs(dev);
897 if (error)
2620efef 898 goto AttrsError;
dc0afa83
CH
899 error = bus_add_device(dev);
900 if (error)
1da177e4 901 goto BusError;
57eee3d2
RW
902 error = device_pm_add(dev);
903 if (error)
904 goto PMError;
83b5fb4c 905 kobject_uevent(&dev->kobj, KOBJ_ADD);
c6a46696 906 bus_attach_device(dev);
1da177e4 907 if (parent)
d856f1e3 908 klist_add_tail(&dev->knode_parent, &parent->klist_children);
1da177e4 909
5d9fd169 910 if (dev->class) {
f75b1c60 911 mutex_lock(&dev->class->p->class_mutex);
c47ed219 912 /* tie the class to the device */
97ae69fd 913 list_add_tail(&dev->node, &dev->class->p->class_devices);
c47ed219
GKH
914
915 /* notify any interfaces that the device is here */
184f1f77
GKH
916 list_for_each_entry(class_intf,
917 &dev->class->p->class_interfaces, node)
c47ed219
GKH
918 if (class_intf->add_dev)
919 class_intf->add_dev(dev, class_intf);
f75b1c60 920 mutex_unlock(&dev->class->p->class_mutex);
5d9fd169 921 }
1da177e4
LT
922 Done:
923 put_device(dev);
924 return error;
1da177e4 925 PMError:
57eee3d2
RW
926 bus_remove_device(dev);
927 BusError:
116af378 928 if (dev->bus)
c6f7e72a 929 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
116af378 930 BUS_NOTIFY_DEL_DEVICE, dev);
82f0cf9b 931 device_remove_attrs(dev);
2620efef 932 AttrsError:
2ee97caf
CH
933 device_remove_class_symlinks(dev);
934 SymlinkError:
e105b8bf
DW
935 if (MAJOR(dev->devt))
936 device_remove_sys_dev_entry(dev);
937 devtattrError:
ad6a1e1c
TH
938 if (MAJOR(dev->devt))
939 device_remove_file(dev, &devt_attr);
a306eea4 940 ueventattrError:
ad6a1e1c 941 device_remove_file(dev, &uevent_attr);
23681e47 942 attrError:
312c004d 943 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
1da177e4
LT
944 kobject_del(&dev->kobj);
945 Error:
63b6971a 946 cleanup_device_parent(dev);
1da177e4
LT
947 if (parent)
948 put_device(parent);
949 goto Done;
950}
951
1da177e4 952/**
4a3ad20c
GKH
953 * device_register - register a device with the system.
954 * @dev: pointer to the device structure
1da177e4 955 *
4a3ad20c
GKH
956 * This happens in two clean steps - initialize the device
957 * and add it to the system. The two steps can be called
958 * separately, but this is the easiest and most common.
959 * I.e. you should only call the two helpers separately if
960 * have a clearly defined need to use and refcount the device
961 * before it is added to the hierarchy.
1da177e4 962 */
1da177e4
LT
963int device_register(struct device *dev)
964{
965 device_initialize(dev);
966 return device_add(dev);
967}
968
1da177e4 969/**
4a3ad20c
GKH
970 * get_device - increment reference count for device.
971 * @dev: device.
1da177e4 972 *
4a3ad20c
GKH
973 * This simply forwards the call to kobject_get(), though
974 * we do take care to provide for the case that we get a NULL
975 * pointer passed in.
1da177e4 976 */
4a3ad20c 977struct device *get_device(struct device *dev)
1da177e4
LT
978{
979 return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
980}
981
1da177e4 982/**
4a3ad20c
GKH
983 * put_device - decrement reference count.
984 * @dev: device in question.
1da177e4 985 */
4a3ad20c 986void put_device(struct device *dev)
1da177e4 987{
edfaa7c3 988 /* might_sleep(); */
1da177e4
LT
989 if (dev)
990 kobject_put(&dev->kobj);
991}
992
1da177e4 993/**
4a3ad20c
GKH
994 * device_del - delete device from system.
995 * @dev: device.
1da177e4 996 *
4a3ad20c
GKH
997 * This is the first part of the device unregistration
998 * sequence. This removes the device from the lists we control
999 * from here, has it removed from the other driver model
1000 * subsystems it was added to in device_add(), and removes it
1001 * from the kobject hierarchy.
1da177e4 1002 *
4a3ad20c
GKH
1003 * NOTE: this should be called manually _iff_ device_add() was
1004 * also called manually.
1da177e4 1005 */
4a3ad20c 1006void device_del(struct device *dev)
1da177e4 1007{
4a3ad20c 1008 struct device *parent = dev->parent;
c47ed219 1009 struct class_interface *class_intf;
1da177e4 1010
775b64d2 1011 device_pm_remove(dev);
1da177e4 1012 if (parent)
d62c0f9f 1013 klist_del(&dev->knode_parent);
e105b8bf
DW
1014 if (MAJOR(dev->devt)) {
1015 device_remove_sys_dev_entry(dev);
ad6a1e1c 1016 device_remove_file(dev, &devt_attr);
e105b8bf 1017 }
b9d9c82b 1018 if (dev->class) {
da231fd5 1019 device_remove_class_symlinks(dev);
99ef3ef8 1020
f75b1c60 1021 mutex_lock(&dev->class->p->class_mutex);
c47ed219 1022 /* notify any interfaces that the device is now gone */
184f1f77
GKH
1023 list_for_each_entry(class_intf,
1024 &dev->class->p->class_interfaces, node)
c47ed219
GKH
1025 if (class_intf->remove_dev)
1026 class_intf->remove_dev(dev, class_intf);
1027 /* remove the device from the class list */
5d9fd169 1028 list_del_init(&dev->node);
f75b1c60 1029 mutex_unlock(&dev->class->p->class_mutex);
b9d9c82b 1030 }
ad6a1e1c 1031 device_remove_file(dev, &uevent_attr);
2620efef 1032 device_remove_attrs(dev);
28953533 1033 bus_remove_device(dev);
1da177e4 1034
2f8d16a9
TH
1035 /*
1036 * Some platform devices are driven without driver attached
1037 * and managed resources may have been acquired. Make sure
1038 * all resources are released.
1039 */
1040 devres_release_all(dev);
1041
1da177e4
LT
1042 /* Notify the platform of the removal, in case they
1043 * need to do anything...
1044 */
1045 if (platform_notify_remove)
1046 platform_notify_remove(dev);
116af378 1047 if (dev->bus)
c6f7e72a 1048 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
116af378 1049 BUS_NOTIFY_DEL_DEVICE, dev);
312c004d 1050 kobject_uevent(&dev->kobj, KOBJ_REMOVE);
da231fd5 1051 cleanup_device_parent(dev);
1da177e4 1052 kobject_del(&dev->kobj);
da231fd5 1053 put_device(parent);
1da177e4
LT
1054}
1055
1056/**
4a3ad20c
GKH
1057 * device_unregister - unregister device from system.
1058 * @dev: device going away.
1da177e4 1059 *
4a3ad20c
GKH
1060 * We do this in two parts, like we do device_register(). First,
1061 * we remove it from all the subsystems with device_del(), then
1062 * we decrement the reference count via put_device(). If that
1063 * is the final reference count, the device will be cleaned up
1064 * via device_release() above. Otherwise, the structure will
1065 * stick around until the final reference to the device is dropped.
1da177e4 1066 */
4a3ad20c 1067void device_unregister(struct device *dev)
1da177e4 1068{
2b3a302a 1069 pr_debug("device: '%s': %s\n", dev->bus_id, __func__);
1da177e4
LT
1070 device_del(dev);
1071 put_device(dev);
1072}
1073
4a3ad20c 1074static struct device *next_device(struct klist_iter *i)
36239577 1075{
4a3ad20c 1076 struct klist_node *n = klist_next(i);
36239577 1077 return n ? container_of(n, struct device, knode_parent) : NULL;
1078}
1079
1da177e4 1080/**
4a3ad20c
GKH
1081 * device_for_each_child - device child iterator.
1082 * @parent: parent struct device.
1083 * @data: data for the callback.
1084 * @fn: function to be called for each device.
1da177e4 1085 *
4a3ad20c
GKH
1086 * Iterate over @parent's child devices, and call @fn for each,
1087 * passing it @data.
1da177e4 1088 *
4a3ad20c
GKH
1089 * We check the return of @fn each time. If it returns anything
1090 * other than 0, we break out and return that value.
1da177e4 1091 */
4a3ad20c
GKH
1092int device_for_each_child(struct device *parent, void *data,
1093 int (*fn)(struct device *dev, void *data))
1da177e4 1094{
36239577 1095 struct klist_iter i;
4a3ad20c 1096 struct device *child;
1da177e4
LT
1097 int error = 0;
1098
36239577 1099 klist_iter_init(&parent->klist_children, &i);
1100 while ((child = next_device(&i)) && !error)
1101 error = fn(child, data);
1102 klist_iter_exit(&i);
1da177e4
LT
1103 return error;
1104}
1105
5ab69981
CH
1106/**
1107 * device_find_child - device iterator for locating a particular device.
1108 * @parent: parent struct device
1109 * @data: Data to pass to match function
1110 * @match: Callback function to check device
1111 *
1112 * This is similar to the device_for_each_child() function above, but it
1113 * returns a reference to a device that is 'found' for later use, as
1114 * determined by the @match callback.
1115 *
1116 * The callback should return 0 if the device doesn't match and non-zero
1117 * if it does. If the callback returns non-zero and a reference to the
1118 * current device can be obtained, this function will return to the caller
1119 * and not iterate over any more devices.
1120 */
4a3ad20c
GKH
1121struct device *device_find_child(struct device *parent, void *data,
1122 int (*match)(struct device *dev, void *data))
5ab69981
CH
1123{
1124 struct klist_iter i;
1125 struct device *child;
1126
1127 if (!parent)
1128 return NULL;
1129
1130 klist_iter_init(&parent->klist_children, &i);
1131 while ((child = next_device(&i)))
1132 if (match(child, data) && get_device(child))
1133 break;
1134 klist_iter_exit(&i);
1135 return child;
1136}
1137
1da177e4
LT
1138int __init devices_init(void)
1139{
881c6cfd
GKH
1140 devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
1141 if (!devices_kset)
1142 return -ENOMEM;
e105b8bf
DW
1143 dev_kobj = kobject_create_and_add("dev", NULL);
1144 if (!dev_kobj)
1145 goto dev_kobj_err;
1146 sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj);
1147 if (!sysfs_dev_block_kobj)
1148 goto block_kobj_err;
1149 sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj);
1150 if (!sysfs_dev_char_kobj)
1151 goto char_kobj_err;
1152
881c6cfd 1153 return 0;
e105b8bf
DW
1154
1155 char_kobj_err:
1156 kobject_put(sysfs_dev_block_kobj);
1157 block_kobj_err:
1158 kobject_put(dev_kobj);
1159 dev_kobj_err:
1160 kset_unregister(devices_kset);
1161 return -ENOMEM;
1da177e4
LT
1162}
1163
1164EXPORT_SYMBOL_GPL(device_for_each_child);
5ab69981 1165EXPORT_SYMBOL_GPL(device_find_child);
1da177e4
LT
1166
1167EXPORT_SYMBOL_GPL(device_initialize);
1168EXPORT_SYMBOL_GPL(device_add);
1169EXPORT_SYMBOL_GPL(device_register);
1170
1171EXPORT_SYMBOL_GPL(device_del);
1172EXPORT_SYMBOL_GPL(device_unregister);
1173EXPORT_SYMBOL_GPL(get_device);
1174EXPORT_SYMBOL_GPL(put_device);
1da177e4
LT
1175
1176EXPORT_SYMBOL_GPL(device_create_file);
1177EXPORT_SYMBOL_GPL(device_remove_file);
23681e47
GKH
1178
1179
1180static void device_create_release(struct device *dev)
1181{
2b3a302a 1182 pr_debug("device: '%s': %s\n", dev->bus_id, __func__);
23681e47
GKH
1183 kfree(dev);
1184}
1185
1186/**
8882b394 1187 * device_create_vargs - creates a device and registers it with sysfs
42734daf
HK
1188 * @class: pointer to the struct class that this device should be registered to
1189 * @parent: pointer to the parent struct device of this new device, if any
1190 * @devt: the dev_t for the char device to be added
8882b394 1191 * @drvdata: the data to be added to the device for callbacks
42734daf 1192 * @fmt: string for the device's name
8882b394 1193 * @args: va_list for the device's name
42734daf
HK
1194 *
1195 * This function can be used by char device classes. A struct device
1196 * will be created in sysfs, registered to the specified class.
23681e47 1197 *
23681e47
GKH
1198 * A "dev" file will be created, showing the dev_t for the device, if
1199 * the dev_t is not 0,0.
42734daf
HK
1200 * If a pointer to a parent struct device is passed in, the newly created
1201 * struct device will be a child of that device in sysfs.
1202 * The pointer to the struct device will be returned from the call.
1203 * Any further sysfs files that might be required can be created using this
23681e47
GKH
1204 * pointer.
1205 *
1206 * Note: the struct class passed to this function must have previously
1207 * been created with a call to class_create().
1208 */
8882b394
GKH
1209struct device *device_create_vargs(struct class *class, struct device *parent,
1210 dev_t devt, void *drvdata, const char *fmt,
1211 va_list args)
23681e47 1212{
23681e47
GKH
1213 struct device *dev = NULL;
1214 int retval = -ENODEV;
1215
1216 if (class == NULL || IS_ERR(class))
1217 goto error;
23681e47
GKH
1218
1219 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1220 if (!dev) {
1221 retval = -ENOMEM;
1222 goto error;
1223 }
1224
1225 dev->devt = devt;
1226 dev->class = class;
1227 dev->parent = parent;
1228 dev->release = device_create_release;
8882b394 1229 dev_set_drvdata(dev, drvdata);
23681e47 1230
23681e47 1231 vsnprintf(dev->bus_id, BUS_ID_SIZE, fmt, args);
23681e47
GKH
1232 retval = device_register(dev);
1233 if (retval)
1234 goto error;
1235
23681e47
GKH
1236 return dev;
1237
1238error:
1239 kfree(dev);
1240 return ERR_PTR(retval);
1241}
8882b394
GKH
1242EXPORT_SYMBOL_GPL(device_create_vargs);
1243
1244/**
4e106739 1245 * device_create - creates a device and registers it with sysfs
8882b394
GKH
1246 * @class: pointer to the struct class that this device should be registered to
1247 * @parent: pointer to the parent struct device of this new device, if any
1248 * @devt: the dev_t for the char device to be added
1249 * @drvdata: the data to be added to the device for callbacks
1250 * @fmt: string for the device's name
1251 *
1252 * This function can be used by char device classes. A struct device
1253 * will be created in sysfs, registered to the specified class.
1254 *
1255 * A "dev" file will be created, showing the dev_t for the device, if
1256 * the dev_t is not 0,0.
1257 * If a pointer to a parent struct device is passed in, the newly created
1258 * struct device will be a child of that device in sysfs.
1259 * The pointer to the struct device will be returned from the call.
1260 * Any further sysfs files that might be required can be created using this
1261 * pointer.
1262 *
1263 * Note: the struct class passed to this function must have previously
1264 * been created with a call to class_create().
1265 */
4e106739
GKH
1266struct device *device_create(struct class *class, struct device *parent,
1267 dev_t devt, void *drvdata, const char *fmt, ...)
8882b394
GKH
1268{
1269 va_list vargs;
1270 struct device *dev;
1271
1272 va_start(vargs, fmt);
1273 dev = device_create_vargs(class, parent, devt, drvdata, fmt, vargs);
1274 va_end(vargs);
1275 return dev;
1276}
4e106739 1277EXPORT_SYMBOL_GPL(device_create);
8882b394 1278
cd35449b 1279static int __match_devt(struct device *dev, void *data)
23681e47 1280{
cd35449b 1281 dev_t *devt = data;
23681e47 1282
cd35449b 1283 return dev->devt == *devt;
775b64d2
RW
1284}
1285
1286/**
1287 * device_destroy - removes a device that was created with device_create()
1288 * @class: pointer to the struct class that this device was registered with
1289 * @devt: the dev_t of the device that was previously registered
1290 *
1291 * This call unregisters and cleans up a device that was created with a
1292 * call to device_create().
1293 */
1294void device_destroy(struct class *class, dev_t devt)
1295{
1296 struct device *dev;
23681e47 1297
695794ae 1298 dev = class_find_device(class, NULL, &devt, __match_devt);
cd35449b
DY
1299 if (dev) {
1300 put_device(dev);
23681e47 1301 device_unregister(dev);
cd35449b 1302 }
23681e47
GKH
1303}
1304EXPORT_SYMBOL_GPL(device_destroy);
a2de48ca
GKH
1305
1306/**
1307 * device_rename - renames a device
1308 * @dev: the pointer to the struct device to be renamed
1309 * @new_name: the new name of the device
1310 */
1311int device_rename(struct device *dev, char *new_name)
1312{
1313 char *old_class_name = NULL;
1314 char *new_class_name = NULL;
2ee97caf 1315 char *old_device_name = NULL;
a2de48ca
GKH
1316 int error;
1317
1318 dev = get_device(dev);
1319 if (!dev)
1320 return -EINVAL;
1321
7dc72b28 1322 pr_debug("device: '%s': %s: renaming to '%s'\n", dev->bus_id,
2b3a302a 1323 __func__, new_name);
a2de48ca 1324
99ef3ef8 1325#ifdef CONFIG_SYSFS_DEPRECATED
a2de48ca
GKH
1326 if ((dev->class) && (dev->parent))
1327 old_class_name = make_class_name(dev->class->name, &dev->kobj);
99ef3ef8 1328#endif
a2de48ca 1329
2ee97caf
CH
1330 old_device_name = kmalloc(BUS_ID_SIZE, GFP_KERNEL);
1331 if (!old_device_name) {
1332 error = -ENOMEM;
1333 goto out;
a2de48ca 1334 }
2ee97caf 1335 strlcpy(old_device_name, dev->bus_id, BUS_ID_SIZE);
a2de48ca
GKH
1336 strlcpy(dev->bus_id, new_name, BUS_ID_SIZE);
1337
1338 error = kobject_rename(&dev->kobj, new_name);
2ee97caf
CH
1339 if (error) {
1340 strlcpy(dev->bus_id, old_device_name, BUS_ID_SIZE);
1341 goto out;
1342 }
a2de48ca 1343
99ef3ef8 1344#ifdef CONFIG_SYSFS_DEPRECATED
a2de48ca
GKH
1345 if (old_class_name) {
1346 new_class_name = make_class_name(dev->class->name, &dev->kobj);
1347 if (new_class_name) {
2ee97caf
CH
1348 error = sysfs_create_link(&dev->parent->kobj,
1349 &dev->kobj, new_class_name);
1350 if (error)
1351 goto out;
a2de48ca
GKH
1352 sysfs_remove_link(&dev->parent->kobj, old_class_name);
1353 }
1354 }
60b8cabd 1355#else
a2de48ca 1356 if (dev->class) {
1fbfee6c 1357 error = sysfs_create_link(&dev->class->p->class_subsys.kobj,
7c71448b 1358 &dev->kobj, dev->bus_id);
0599ad53
SH
1359 if (error)
1360 goto out;
1fbfee6c 1361 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
7c71448b 1362 old_device_name);
a2de48ca 1363 }
60b8cabd
KS
1364#endif
1365
2ee97caf 1366out:
a2de48ca
GKH
1367 put_device(dev);
1368
a2de48ca 1369 kfree(new_class_name);
952ab431 1370 kfree(old_class_name);
2ee97caf 1371 kfree(old_device_name);
a2de48ca
GKH
1372
1373 return error;
1374}
a2807dbc 1375EXPORT_SYMBOL_GPL(device_rename);
8a82472f
CH
1376
1377static int device_move_class_links(struct device *dev,
1378 struct device *old_parent,
1379 struct device *new_parent)
1380{
f7f3461d 1381 int error = 0;
8a82472f 1382#ifdef CONFIG_SYSFS_DEPRECATED
8a82472f
CH
1383 char *class_name;
1384
1385 class_name = make_class_name(dev->class->name, &dev->kobj);
1386 if (!class_name) {
cb360bbf 1387 error = -ENOMEM;
8a82472f
CH
1388 goto out;
1389 }
1390 if (old_parent) {
1391 sysfs_remove_link(&dev->kobj, "device");
1392 sysfs_remove_link(&old_parent->kobj, class_name);
1393 }
c744aeae
CH
1394 if (new_parent) {
1395 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1396 "device");
1397 if (error)
1398 goto out;
1399 error = sysfs_create_link(&new_parent->kobj, &dev->kobj,
1400 class_name);
1401 if (error)
1402 sysfs_remove_link(&dev->kobj, "device");
4a3ad20c 1403 } else
c744aeae 1404 error = 0;
8a82472f
CH
1405out:
1406 kfree(class_name);
1407 return error;
1408#else
f7f3461d
GKH
1409 if (old_parent)
1410 sysfs_remove_link(&dev->kobj, "device");
1411 if (new_parent)
1412 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1413 "device");
1414 return error;
8a82472f
CH
1415#endif
1416}
1417
1418/**
1419 * device_move - moves a device to a new parent
1420 * @dev: the pointer to the struct device to be moved
c744aeae 1421 * @new_parent: the new parent of the device (can by NULL)
8a82472f
CH
1422 */
1423int device_move(struct device *dev, struct device *new_parent)
1424{
1425 int error;
1426 struct device *old_parent;
c744aeae 1427 struct kobject *new_parent_kobj;
8a82472f
CH
1428
1429 dev = get_device(dev);
1430 if (!dev)
1431 return -EINVAL;
1432
8a82472f 1433 new_parent = get_device(new_parent);
4a3ad20c 1434 new_parent_kobj = get_device_parent(dev, new_parent);
63b6971a 1435
7dc72b28 1436 pr_debug("device: '%s': %s: moving to '%s'\n", dev->bus_id,
2b3a302a 1437 __func__, new_parent ? new_parent->bus_id : "<NULL>");
c744aeae 1438 error = kobject_move(&dev->kobj, new_parent_kobj);
8a82472f 1439 if (error) {
63b6971a 1440 cleanup_glue_dir(dev, new_parent_kobj);
8a82472f
CH
1441 put_device(new_parent);
1442 goto out;
1443 }
1444 old_parent = dev->parent;
1445 dev->parent = new_parent;
1446 if (old_parent)
acf02d23 1447 klist_remove(&dev->knode_parent);
0d358f22 1448 if (new_parent) {
c744aeae 1449 klist_add_tail(&dev->knode_parent, &new_parent->klist_children);
0d358f22
YL
1450 set_dev_node(dev, dev_to_node(new_parent));
1451 }
1452
8a82472f
CH
1453 if (!dev->class)
1454 goto out_put;
1455 error = device_move_class_links(dev, old_parent, new_parent);
1456 if (error) {
1457 /* We ignore errors on cleanup since we're hosed anyway... */
1458 device_move_class_links(dev, new_parent, old_parent);
1459 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
c744aeae
CH
1460 if (new_parent)
1461 klist_remove(&dev->knode_parent);
0d358f22
YL
1462 dev->parent = old_parent;
1463 if (old_parent) {
8a82472f
CH
1464 klist_add_tail(&dev->knode_parent,
1465 &old_parent->klist_children);
0d358f22
YL
1466 set_dev_node(dev, dev_to_node(old_parent));
1467 }
8a82472f 1468 }
63b6971a 1469 cleanup_glue_dir(dev, new_parent_kobj);
8a82472f
CH
1470 put_device(new_parent);
1471 goto out;
1472 }
1473out_put:
1474 put_device(old_parent);
1475out:
1476 put_device(dev);
1477 return error;
1478}
8a82472f 1479EXPORT_SYMBOL_GPL(device_move);
37b0c020
GKH
1480
1481/**
1482 * device_shutdown - call ->shutdown() on each device to shutdown.
1483 */
1484void device_shutdown(void)
1485{
4a3ad20c 1486 struct device *dev, *devn;
37b0c020
GKH
1487
1488 list_for_each_entry_safe_reverse(dev, devn, &devices_kset->list,
1489 kobj.entry) {
1490 if (dev->bus && dev->bus->shutdown) {
1491 dev_dbg(dev, "shutdown\n");
1492 dev->bus->shutdown(dev);
1493 } else if (dev->driver && dev->driver->shutdown) {
1494 dev_dbg(dev, "shutdown\n");
1495 dev->driver->shutdown(dev);
1496 }
1497 }
e105b8bf
DW
1498 kobject_put(sysfs_dev_char_kobj);
1499 kobject_put(sysfs_dev_block_kobj);
1500 kobject_put(dev_kobj);
37b0c020 1501}
This page took 0.534536 seconds and 5 git commands to generate.