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