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