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