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