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