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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | #include <asm/semaphore.h> |
| 23 | |
| 24 | #include "base.h" |
| 25 | #include "power/power.h" |
| 26 | |
| 27 | int (*platform_notify)(struct device * dev) = NULL; |
| 28 | int (*platform_notify_remove)(struct device * dev) = NULL; |
| 29 | |
| 30 | /* |
| 31 | * sysfs bindings for devices. |
| 32 | */ |
| 33 | |
Alan Stern | 3e95637 | 2006-06-16 17:10:48 -0400 | [diff] [blame] | 34 | /** |
| 35 | * dev_driver_string - Return a device's driver name, if at all possible |
| 36 | * @dev: struct device to get the name of |
| 37 | * |
| 38 | * Will return the device's driver's name if it is bound to a device. If |
| 39 | * the device is not bound to a device, it will return the name of the bus |
| 40 | * it is attached to. If it is not attached to a bus either, an empty |
| 41 | * string will be returned. |
| 42 | */ |
| 43 | const char *dev_driver_string(struct device *dev) |
| 44 | { |
| 45 | return dev->driver ? dev->driver->name : |
Jean Delvare | a456b70 | 2007-03-09 16:33:10 +0100 | [diff] [blame^] | 46 | (dev->bus ? dev->bus->name : |
| 47 | (dev->class ? dev->class->name : "")); |
Alan Stern | 3e95637 | 2006-06-16 17:10:48 -0400 | [diff] [blame] | 48 | } |
Matthew Wilcox | 310a922 | 2006-09-23 23:35:04 -0600 | [diff] [blame] | 49 | EXPORT_SYMBOL(dev_driver_string); |
Alan Stern | 3e95637 | 2006-06-16 17:10:48 -0400 | [diff] [blame] | 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #define to_dev(obj) container_of(obj, struct device, kobj) |
| 52 | #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr) |
| 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | static ssize_t |
| 55 | dev_attr_show(struct kobject * kobj, struct attribute * attr, char * buf) |
| 56 | { |
| 57 | struct device_attribute * dev_attr = to_dev_attr(attr); |
| 58 | struct device * dev = to_dev(kobj); |
Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 59 | ssize_t ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | if (dev_attr->show) |
Yani Ioannou | 54b6f35 | 2005-05-17 06:39:34 -0400 | [diff] [blame] | 62 | ret = dev_attr->show(dev, dev_attr, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | return ret; |
| 64 | } |
| 65 | |
| 66 | static ssize_t |
| 67 | dev_attr_store(struct kobject * kobj, struct attribute * attr, |
| 68 | const char * buf, size_t count) |
| 69 | { |
| 70 | struct device_attribute * dev_attr = to_dev_attr(attr); |
| 71 | struct device * dev = to_dev(kobj); |
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->store) |
Yani Ioannou | 54b6f35 | 2005-05-17 06:39:34 -0400 | [diff] [blame] | 75 | ret = dev_attr->store(dev, dev_attr, buf, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | return ret; |
| 77 | } |
| 78 | |
| 79 | static struct sysfs_ops dev_sysfs_ops = { |
| 80 | .show = dev_attr_show, |
| 81 | .store = dev_attr_store, |
| 82 | }; |
| 83 | |
| 84 | |
| 85 | /** |
| 86 | * device_release - free device structure. |
| 87 | * @kobj: device's kobject. |
| 88 | * |
| 89 | * This is called once the reference count for the object |
| 90 | * reaches 0. We forward the call to the device's release |
| 91 | * method, which should handle actually freeing the structure. |
| 92 | */ |
| 93 | static void device_release(struct kobject * kobj) |
| 94 | { |
| 95 | struct device * dev = to_dev(kobj); |
| 96 | |
| 97 | if (dev->release) |
| 98 | dev->release(dev); |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 99 | else if (dev->type && dev->type->release) |
| 100 | dev->type->release(dev); |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 101 | else if (dev->class && dev->class->dev_release) |
| 102 | dev->class->dev_release(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | else { |
| 104 | printk(KERN_ERR "Device '%s' does not have a release() function, " |
| 105 | "it is broken and must be fixed.\n", |
| 106 | dev->bus_id); |
| 107 | WARN_ON(1); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | static struct kobj_type ktype_device = { |
| 112 | .release = device_release, |
| 113 | .sysfs_ops = &dev_sysfs_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | }; |
| 115 | |
| 116 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 117 | static int dev_uevent_filter(struct kset *kset, struct kobject *kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { |
| 119 | struct kobj_type *ktype = get_ktype(kobj); |
| 120 | |
| 121 | if (ktype == &ktype_device) { |
| 122 | struct device *dev = to_dev(kobj); |
| 123 | if (dev->bus) |
| 124 | return 1; |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 125 | if (dev->class) |
| 126 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | } |
| 128 | return 0; |
| 129 | } |
| 130 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 131 | static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { |
| 133 | struct device *dev = to_dev(kobj); |
| 134 | |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 135 | if (dev->bus) |
| 136 | return dev->bus->name; |
| 137 | if (dev->class) |
| 138 | return dev->class->name; |
| 139 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | } |
| 141 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 142 | static int dev_uevent(struct kset *kset, struct kobject *kobj, char **envp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | int num_envp, char *buffer, int buffer_size) |
| 144 | { |
| 145 | struct device *dev = to_dev(kobj); |
| 146 | int i = 0; |
| 147 | int length = 0; |
| 148 | int retval = 0; |
| 149 | |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 150 | /* add the major/minor if present */ |
| 151 | if (MAJOR(dev->devt)) { |
| 152 | add_uevent_var(envp, num_envp, &i, |
| 153 | buffer, buffer_size, &length, |
| 154 | "MAJOR=%u", MAJOR(dev->devt)); |
| 155 | add_uevent_var(envp, num_envp, &i, |
| 156 | buffer, buffer_size, &length, |
| 157 | "MINOR=%u", MINOR(dev->devt)); |
| 158 | } |
| 159 | |
Kay Sievers | 239378f | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 160 | if (dev->driver) |
Kay Sievers | d81d9d6 | 2006-08-13 06:17:09 +0200 | [diff] [blame] | 161 | add_uevent_var(envp, num_envp, &i, |
| 162 | buffer, buffer_size, &length, |
| 163 | "DRIVER=%s", dev->driver->name); |
Kay Sievers | 239378f | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 164 | |
Kay Sievers | a87cb2a | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 165 | #ifdef CONFIG_SYSFS_DEPRECATED |
Kay Sievers | 239378f | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 166 | if (dev->class) { |
| 167 | struct device *parent = dev->parent; |
| 168 | |
| 169 | /* find first bus device in parent chain */ |
| 170 | while (parent && !parent->bus) |
| 171 | parent = parent->parent; |
| 172 | if (parent && parent->bus) { |
| 173 | const char *path; |
| 174 | |
| 175 | path = kobject_get_path(&parent->kobj, GFP_KERNEL); |
| 176 | add_uevent_var(envp, num_envp, &i, |
| 177 | buffer, buffer_size, &length, |
| 178 | "PHYSDEVPATH=%s", path); |
| 179 | kfree(path); |
| 180 | |
| 181 | add_uevent_var(envp, num_envp, &i, |
| 182 | buffer, buffer_size, &length, |
| 183 | "PHYSDEVBUS=%s", parent->bus->name); |
| 184 | |
| 185 | if (parent->driver) |
| 186 | add_uevent_var(envp, num_envp, &i, |
| 187 | buffer, buffer_size, &length, |
| 188 | "PHYSDEVDRIVER=%s", parent->driver->name); |
| 189 | } |
| 190 | } else if (dev->bus) { |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 191 | add_uevent_var(envp, num_envp, &i, |
| 192 | buffer, buffer_size, &length, |
Kay Sievers | 239378f | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 193 | "PHYSDEVBUS=%s", dev->bus->name); |
| 194 | |
| 195 | if (dev->driver) |
| 196 | add_uevent_var(envp, num_envp, &i, |
| 197 | buffer, buffer_size, &length, |
| 198 | "PHYSDEVDRIVER=%s", dev->driver->name); |
Kay Sievers | d81d9d6 | 2006-08-13 06:17:09 +0200 | [diff] [blame] | 199 | } |
Kay Sievers | 239378f | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 200 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | /* terminate, set to next free slot, shrink available space */ |
| 203 | envp[i] = NULL; |
| 204 | envp = &envp[i]; |
| 205 | num_envp -= i; |
| 206 | buffer = &buffer[length]; |
| 207 | buffer_size -= length; |
| 208 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 209 | if (dev->bus && dev->bus->uevent) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | /* have the bus specific function add its stuff */ |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 211 | retval = dev->bus->uevent(dev, envp, num_envp, buffer, buffer_size); |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 212 | if (retval) |
| 213 | pr_debug ("%s: bus uevent() returned %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | __FUNCTION__, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | } |
| 216 | |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 217 | if (dev->class && dev->class->dev_uevent) { |
| 218 | /* have the class specific function add its stuff */ |
| 219 | retval = dev->class->dev_uevent(dev, envp, num_envp, buffer, buffer_size); |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 220 | if (retval) |
| 221 | pr_debug("%s: class uevent() returned %d\n", |
| 222 | __FUNCTION__, retval); |
| 223 | } |
| 224 | |
| 225 | if (dev->type && dev->type->uevent) { |
| 226 | /* have the device type specific fuction add its stuff */ |
| 227 | retval = dev->type->uevent(dev, envp, num_envp, buffer, buffer_size); |
| 228 | if (retval) |
| 229 | pr_debug("%s: dev_type uevent() returned %d\n", |
| 230 | __FUNCTION__, retval); |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 231 | } |
| 232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | return retval; |
| 234 | } |
| 235 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 236 | static struct kset_uevent_ops device_uevent_ops = { |
| 237 | .filter = dev_uevent_filter, |
| 238 | .name = dev_uevent_name, |
| 239 | .uevent = dev_uevent, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | }; |
| 241 | |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 242 | static ssize_t store_uevent(struct device *dev, struct device_attribute *attr, |
| 243 | const char *buf, size_t count) |
| 244 | { |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 245 | kobject_uevent(&dev->kobj, KOBJ_ADD); |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 246 | return count; |
| 247 | } |
| 248 | |
Greg Kroah-Hartman | de0ff00 | 2006-06-27 00:06:09 -0700 | [diff] [blame] | 249 | static int device_add_groups(struct device *dev) |
| 250 | { |
| 251 | int i; |
| 252 | int error = 0; |
| 253 | |
| 254 | if (dev->groups) { |
| 255 | for (i = 0; dev->groups[i]; i++) { |
| 256 | error = sysfs_create_group(&dev->kobj, dev->groups[i]); |
| 257 | if (error) { |
| 258 | while (--i >= 0) |
| 259 | sysfs_remove_group(&dev->kobj, dev->groups[i]); |
| 260 | goto out; |
| 261 | } |
| 262 | } |
| 263 | } |
| 264 | out: |
| 265 | return error; |
| 266 | } |
| 267 | |
| 268 | static void device_remove_groups(struct device *dev) |
| 269 | { |
| 270 | int i; |
| 271 | if (dev->groups) { |
| 272 | for (i = 0; dev->groups[i]; i++) { |
| 273 | sysfs_remove_group(&dev->kobj, dev->groups[i]); |
| 274 | } |
| 275 | } |
| 276 | } |
| 277 | |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 278 | static int device_add_attrs(struct device *dev) |
| 279 | { |
| 280 | struct class *class = dev->class; |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 281 | struct device_type *type = dev->type; |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 282 | int error = 0; |
| 283 | int i; |
| 284 | |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 285 | if (class && class->dev_attrs) { |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 286 | for (i = 0; attr_name(class->dev_attrs[i]); i++) { |
| 287 | error = device_create_file(dev, &class->dev_attrs[i]); |
| 288 | if (error) |
| 289 | break; |
| 290 | } |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 291 | if (error) |
| 292 | while (--i >= 0) |
| 293 | device_remove_file(dev, &class->dev_attrs[i]); |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 294 | } |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 295 | |
| 296 | if (type && type->attrs) { |
| 297 | for (i = 0; attr_name(type->attrs[i]); i++) { |
| 298 | error = device_create_file(dev, &type->attrs[i]); |
| 299 | if (error) |
| 300 | break; |
| 301 | } |
| 302 | if (error) |
| 303 | while (--i >= 0) |
| 304 | device_remove_file(dev, &type->attrs[i]); |
| 305 | } |
| 306 | |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 307 | return error; |
| 308 | } |
| 309 | |
| 310 | static void device_remove_attrs(struct device *dev) |
| 311 | { |
| 312 | struct class *class = dev->class; |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 313 | struct device_type *type = dev->type; |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 314 | int i; |
| 315 | |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 316 | if (class && class->dev_attrs) { |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 317 | for (i = 0; attr_name(class->dev_attrs[i]); i++) |
| 318 | device_remove_file(dev, &class->dev_attrs[i]); |
| 319 | } |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 320 | |
| 321 | if (type && type->attrs) { |
| 322 | for (i = 0; attr_name(type->attrs[i]); i++) |
| 323 | device_remove_file(dev, &type->attrs[i]); |
| 324 | } |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 328 | static ssize_t show_dev(struct device *dev, struct device_attribute *attr, |
| 329 | char *buf) |
| 330 | { |
| 331 | return print_dev_t(buf, dev->devt); |
| 332 | } |
| 333 | |
Martin Waitz | 0863afb | 2006-01-09 20:53:55 -0800 | [diff] [blame] | 334 | /* |
| 335 | * devices_subsys - structure to be registered with kobject core. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | */ |
| 337 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 338 | decl_subsys(devices, &ktype_device, &device_uevent_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
| 340 | |
| 341 | /** |
| 342 | * device_create_file - create sysfs attribute file for device. |
| 343 | * @dev: device. |
| 344 | * @attr: device attribute descriptor. |
| 345 | */ |
| 346 | |
| 347 | int device_create_file(struct device * dev, struct device_attribute * attr) |
| 348 | { |
| 349 | int error = 0; |
| 350 | if (get_device(dev)) { |
| 351 | error = sysfs_create_file(&dev->kobj, &attr->attr); |
| 352 | put_device(dev); |
| 353 | } |
| 354 | return error; |
| 355 | } |
| 356 | |
| 357 | /** |
| 358 | * device_remove_file - remove sysfs attribute file. |
| 359 | * @dev: device. |
| 360 | * @attr: device attribute descriptor. |
| 361 | */ |
| 362 | |
| 363 | void device_remove_file(struct device * dev, struct device_attribute * attr) |
| 364 | { |
| 365 | if (get_device(dev)) { |
| 366 | sysfs_remove_file(&dev->kobj, &attr->attr); |
| 367 | put_device(dev); |
| 368 | } |
| 369 | } |
| 370 | |
Greg Kroah-Hartman | 2589f188 | 2006-09-19 09:39:19 -0700 | [diff] [blame] | 371 | /** |
| 372 | * device_create_bin_file - create sysfs binary attribute file for device. |
| 373 | * @dev: device. |
| 374 | * @attr: device binary attribute descriptor. |
| 375 | */ |
| 376 | int device_create_bin_file(struct device *dev, struct bin_attribute *attr) |
| 377 | { |
| 378 | int error = -EINVAL; |
| 379 | if (dev) |
| 380 | error = sysfs_create_bin_file(&dev->kobj, attr); |
| 381 | return error; |
| 382 | } |
| 383 | EXPORT_SYMBOL_GPL(device_create_bin_file); |
| 384 | |
| 385 | /** |
| 386 | * device_remove_bin_file - remove sysfs binary attribute file |
| 387 | * @dev: device. |
| 388 | * @attr: device binary attribute descriptor. |
| 389 | */ |
| 390 | void device_remove_bin_file(struct device *dev, struct bin_attribute *attr) |
| 391 | { |
| 392 | if (dev) |
| 393 | sysfs_remove_bin_file(&dev->kobj, attr); |
| 394 | } |
| 395 | EXPORT_SYMBOL_GPL(device_remove_bin_file); |
| 396 | |
Alan Stern | d9a9cdf | 2007-03-15 15:50:34 -0400 | [diff] [blame] | 397 | /** |
| 398 | * device_schedule_callback - helper to schedule a callback for a device |
| 399 | * @dev: device. |
| 400 | * @func: callback function to invoke later. |
| 401 | * |
| 402 | * Attribute methods must not unregister themselves or their parent device |
| 403 | * (which would amount to the same thing). Attempts to do so will deadlock, |
| 404 | * since unregistration is mutually exclusive with driver callbacks. |
| 405 | * |
| 406 | * Instead methods can call this routine, which will attempt to allocate |
| 407 | * and schedule a workqueue request to call back @func with @dev as its |
| 408 | * argument in the workqueue's process context. @dev will be pinned until |
| 409 | * @func returns. |
| 410 | * |
| 411 | * Returns 0 if the request was submitted, -ENOMEM if storage could not |
| 412 | * be allocated. |
| 413 | * |
| 414 | * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an |
| 415 | * underlying sysfs routine (since it is intended for use by attribute |
| 416 | * methods), and if sysfs isn't available you'll get nothing but -ENOSYS. |
| 417 | */ |
| 418 | int device_schedule_callback(struct device *dev, |
| 419 | void (*func)(struct device *)) |
| 420 | { |
| 421 | return sysfs_schedule_callback(&dev->kobj, |
| 422 | (void (*)(void *)) func, dev); |
| 423 | } |
| 424 | EXPORT_SYMBOL_GPL(device_schedule_callback); |
| 425 | |
James Bottomley | 34bb61f | 2005-09-06 16:56:51 -0700 | [diff] [blame] | 426 | static void klist_children_get(struct klist_node *n) |
| 427 | { |
| 428 | struct device *dev = container_of(n, struct device, knode_parent); |
| 429 | |
| 430 | get_device(dev); |
| 431 | } |
| 432 | |
| 433 | static void klist_children_put(struct klist_node *n) |
| 434 | { |
| 435 | struct device *dev = container_of(n, struct device, knode_parent); |
| 436 | |
| 437 | put_device(dev); |
| 438 | } |
| 439 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
| 441 | /** |
| 442 | * device_initialize - init device structure. |
| 443 | * @dev: device. |
| 444 | * |
| 445 | * This prepares the device for use by other layers, |
| 446 | * including adding it to the device hierarchy. |
| 447 | * It is the first half of device_register(), if called by |
| 448 | * that, though it can also be called separately, so one |
| 449 | * may use @dev's fields (e.g. the refcount). |
| 450 | */ |
| 451 | |
| 452 | void device_initialize(struct device *dev) |
| 453 | { |
| 454 | kobj_set_kset_s(dev, devices_subsys); |
| 455 | kobject_init(&dev->kobj); |
James Bottomley | 34bb61f | 2005-09-06 16:56:51 -0700 | [diff] [blame] | 456 | klist_init(&dev->klist_children, klist_children_get, |
| 457 | klist_children_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | INIT_LIST_HEAD(&dev->dma_pools); |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 459 | INIT_LIST_HEAD(&dev->node); |
mochel@digitalimplant.org | af70316 | 2005-03-21 10:41:04 -0800 | [diff] [blame] | 460 | init_MUTEX(&dev->sem); |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 461 | spin_lock_init(&dev->devres_lock); |
| 462 | INIT_LIST_HEAD(&dev->devres_head); |
David Brownell | 0ac8524 | 2005-09-12 19:39:34 -0700 | [diff] [blame] | 463 | device_init_wakeup(dev, 0); |
Christoph Hellwig | 8734813 | 2006-12-06 20:32:33 -0800 | [diff] [blame] | 464 | set_dev_node(dev, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | } |
| 466 | |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 467 | #ifdef CONFIG_SYSFS_DEPRECATED |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 468 | static struct kobject * get_device_parent(struct device *dev, |
| 469 | struct device *parent) |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 470 | { |
| 471 | /* Set the parent to the class, not the parent device */ |
| 472 | /* this keeps sysfs from having a symlink to make old udevs happy */ |
| 473 | if (dev->class) |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 474 | return &dev->class->subsys.kset.kobj; |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 475 | else if (parent) |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 476 | return &parent->kobj; |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 477 | |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 478 | return NULL; |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 479 | } |
| 480 | #else |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 481 | static struct kobject *virtual_device_parent(struct device *dev) |
Greg Kroah-Hartman | f0ee61a | 2006-10-23 10:40:54 -0700 | [diff] [blame] | 482 | { |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 483 | static struct kobject *virtual_dir = NULL; |
Greg Kroah-Hartman | f0ee61a | 2006-10-23 10:40:54 -0700 | [diff] [blame] | 484 | |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 485 | if (!virtual_dir) |
| 486 | virtual_dir = kobject_add_dir(&devices_subsys.kset.kobj, "virtual"); |
Greg Kroah-Hartman | f0ee61a | 2006-10-23 10:40:54 -0700 | [diff] [blame] | 487 | |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 488 | return virtual_dir; |
Greg Kroah-Hartman | f0ee61a | 2006-10-23 10:40:54 -0700 | [diff] [blame] | 489 | } |
| 490 | |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 491 | static struct kobject * get_device_parent(struct device *dev, |
| 492 | struct device *parent) |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 493 | { |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 494 | if (dev->class) { |
| 495 | struct kobject *kobj = NULL; |
| 496 | struct kobject *parent_kobj; |
| 497 | struct kobject *k; |
| 498 | |
| 499 | /* |
| 500 | * If we have no parent, we live in "virtual". |
| 501 | * Class-devices with a bus-device as parent, live |
| 502 | * in a class-directory to prevent namespace collisions. |
| 503 | */ |
| 504 | if (parent == NULL) |
| 505 | parent_kobj = virtual_device_parent(dev); |
| 506 | else if (parent->class) |
| 507 | return &parent->kobj; |
| 508 | else |
| 509 | parent_kobj = &parent->kobj; |
| 510 | |
| 511 | /* find our class-directory at the parent and reference it */ |
| 512 | spin_lock(&dev->class->class_dirs.list_lock); |
| 513 | list_for_each_entry(k, &dev->class->class_dirs.list, entry) |
| 514 | if (k->parent == parent_kobj) { |
| 515 | kobj = kobject_get(k); |
| 516 | break; |
| 517 | } |
| 518 | spin_unlock(&dev->class->class_dirs.list_lock); |
| 519 | if (kobj) |
| 520 | return kobj; |
| 521 | |
| 522 | /* or create a new class-directory at the parent device */ |
| 523 | return kobject_kset_add_dir(&dev->class->class_dirs, |
| 524 | parent_kobj, dev->class->name); |
| 525 | } |
| 526 | |
| 527 | if (parent) |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 528 | return &parent->kobj; |
| 529 | return NULL; |
| 530 | } |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 531 | #endif |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 532 | |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 533 | static int setup_parent(struct device *dev, struct device *parent) |
| 534 | { |
| 535 | struct kobject *kobj; |
| 536 | kobj = get_device_parent(dev, parent); |
| 537 | if (IS_ERR(kobj)) |
| 538 | return PTR_ERR(kobj); |
| 539 | if (kobj) |
| 540 | dev->kobj.parent = kobj; |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 541 | return 0; |
| 542 | } |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 543 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | /** |
| 545 | * device_add - add device to device hierarchy. |
| 546 | * @dev: device. |
| 547 | * |
| 548 | * This is part 2 of device_register(), though may be called |
| 549 | * separately _iff_ device_initialize() has been called separately. |
| 550 | * |
| 551 | * This adds it to the kobject hierarchy via kobject_add(), adds it |
| 552 | * to the global and sibling lists for the device, then |
| 553 | * adds it to the other relevant subsystems of the driver model. |
| 554 | */ |
| 555 | int device_add(struct device *dev) |
| 556 | { |
| 557 | struct device *parent = NULL; |
Greg Kroah-Hartman | e9a7d30 | 2006-06-20 13:59:20 -0700 | [diff] [blame] | 558 | char *class_name = NULL; |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 559 | struct class_interface *class_intf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | int error = -EINVAL; |
| 561 | |
| 562 | dev = get_device(dev); |
| 563 | if (!dev || !strlen(dev->bus_id)) |
| 564 | goto Error; |
| 565 | |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 566 | pr_debug("DEV: registering device: ID = '%s'\n", dev->bus_id); |
Greg Kroah-Hartman | c205ef4 | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | parent = get_device(dev->parent); |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 569 | error = setup_parent(dev, parent); |
| 570 | if (error) |
| 571 | goto Error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
| 573 | /* first, register with generic layer. */ |
| 574 | kobject_set_name(&dev->kobj, "%s", dev->bus_id); |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 575 | error = kobject_add(&dev->kobj); |
| 576 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | goto Error; |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 578 | |
Brian Walsh | 3702264 | 2006-08-14 22:43:19 -0700 | [diff] [blame] | 579 | /* notify platform of device entry */ |
| 580 | if (platform_notify) |
| 581 | platform_notify(dev); |
| 582 | |
Benjamin Herrenschmidt | 116af37 | 2006-10-25 13:44:59 +1000 | [diff] [blame] | 583 | /* notify clients of device entry (new way) */ |
| 584 | if (dev->bus) |
| 585 | blocking_notifier_call_chain(&dev->bus->bus_notifier, |
| 586 | BUS_NOTIFY_ADD_DEVICE, dev); |
| 587 | |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 588 | dev->uevent_attr.attr.name = "uevent"; |
| 589 | dev->uevent_attr.attr.mode = S_IWUSR; |
| 590 | if (dev->driver) |
| 591 | dev->uevent_attr.attr.owner = dev->driver->owner; |
| 592 | dev->uevent_attr.store = store_uevent; |
Cornelia Huck | a306eea | 2006-09-22 11:37:13 +0200 | [diff] [blame] | 593 | error = device_create_file(dev, &dev->uevent_attr); |
| 594 | if (error) |
| 595 | goto attrError; |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 596 | |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 597 | if (MAJOR(dev->devt)) { |
| 598 | struct device_attribute *attr; |
| 599 | attr = kzalloc(sizeof(*attr), GFP_KERNEL); |
| 600 | if (!attr) { |
| 601 | error = -ENOMEM; |
Cornelia Huck | a306eea | 2006-09-22 11:37:13 +0200 | [diff] [blame] | 602 | goto ueventattrError; |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 603 | } |
| 604 | attr->attr.name = "dev"; |
| 605 | attr->attr.mode = S_IRUGO; |
| 606 | if (dev->driver) |
| 607 | attr->attr.owner = dev->driver->owner; |
| 608 | attr->show = show_dev; |
| 609 | error = device_create_file(dev, attr); |
| 610 | if (error) { |
| 611 | kfree(attr); |
Cornelia Huck | a306eea | 2006-09-22 11:37:13 +0200 | [diff] [blame] | 612 | goto ueventattrError; |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 613 | } |
| 614 | |
| 615 | dev->devt_attr = attr; |
| 616 | } |
| 617 | |
Kay Sievers | b9d9c82 | 2006-06-15 15:31:56 +0200 | [diff] [blame] | 618 | if (dev->class) { |
| 619 | sysfs_create_link(&dev->kobj, &dev->class->subsys.kset.kobj, |
| 620 | "subsystem"); |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 621 | /* If this is not a "fake" compatible device, then create the |
| 622 | * symlink from the class to the device. */ |
| 623 | if (dev->kobj.parent != &dev->class->subsys.kset.kobj) |
| 624 | sysfs_create_link(&dev->class->subsys.kset.kobj, |
| 625 | &dev->kobj, dev->bus_id); |
Greg Kroah-Hartman | 64bb5d2 | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 626 | if (parent) { |
Cornelia Huck | cb360bb | 2006-11-27 10:35:05 +0100 | [diff] [blame] | 627 | sysfs_create_link(&dev->kobj, &dev->parent->kobj, |
| 628 | "device"); |
Greg Kroah-Hartman | f7f3461 | 2007-03-06 12:55:53 -0800 | [diff] [blame] | 629 | #ifdef CONFIG_SYSFS_DEPRECATED |
Cornelia Huck | cb360bb | 2006-11-27 10:35:05 +0100 | [diff] [blame] | 630 | class_name = make_class_name(dev->class->name, |
| 631 | &dev->kobj); |
| 632 | if (class_name) |
| 633 | sysfs_create_link(&dev->parent->kobj, |
| 634 | &dev->kobj, class_name); |
Kay Sievers | 99ef3ef | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 635 | #endif |
Greg Kroah-Hartman | f7f3461 | 2007-03-06 12:55:53 -0800 | [diff] [blame] | 636 | } |
Kay Sievers | b9d9c82 | 2006-06-15 15:31:56 +0200 | [diff] [blame] | 637 | } |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 638 | |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 639 | if ((error = device_add_attrs(dev))) |
| 640 | goto AttrsError; |
Greg Kroah-Hartman | de0ff00 | 2006-06-27 00:06:09 -0700 | [diff] [blame] | 641 | if ((error = device_add_groups(dev))) |
| 642 | goto GroupError; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | if ((error = device_pm_add(dev))) |
| 644 | goto PMError; |
| 645 | if ((error = bus_add_device(dev))) |
| 646 | goto BusError; |
Kay Sievers | b7a3e81 | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 647 | if (!dev->uevent_suppress) |
| 648 | kobject_uevent(&dev->kobj, KOBJ_ADD); |
Alan Stern | f70fa62 | 2006-10-05 17:03:24 -0400 | [diff] [blame] | 649 | if ((error = bus_attach_device(dev))) |
| 650 | goto AttachError; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | if (parent) |
James Bottomley | d856f1e3 | 2005-08-19 09:14:01 -0400 | [diff] [blame] | 652 | klist_add_tail(&dev->knode_parent, &parent->klist_children); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | |
Greg Kroah-Hartman | 5d9fd16 | 2006-06-22 17:17:32 -0700 | [diff] [blame] | 654 | if (dev->class) { |
Greg Kroah-Hartman | 5d9fd16 | 2006-06-22 17:17:32 -0700 | [diff] [blame] | 655 | down(&dev->class->sem); |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 656 | /* tie the class to the device */ |
Greg Kroah-Hartman | 5d9fd16 | 2006-06-22 17:17:32 -0700 | [diff] [blame] | 657 | list_add_tail(&dev->node, &dev->class->devices); |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 658 | |
| 659 | /* notify any interfaces that the device is here */ |
| 660 | list_for_each_entry(class_intf, &dev->class->interfaces, node) |
| 661 | if (class_intf->add_dev) |
| 662 | class_intf->add_dev(dev, class_intf); |
Greg Kroah-Hartman | 5d9fd16 | 2006-06-22 17:17:32 -0700 | [diff] [blame] | 663 | up(&dev->class->sem); |
| 664 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | Done: |
Greg Kroah-Hartman | e9a7d30 | 2006-06-20 13:59:20 -0700 | [diff] [blame] | 666 | kfree(class_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | put_device(dev); |
| 668 | return error; |
Alan Stern | f70fa62 | 2006-10-05 17:03:24 -0400 | [diff] [blame] | 669 | AttachError: |
| 670 | bus_remove_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | BusError: |
| 672 | device_pm_remove(dev); |
| 673 | PMError: |
Benjamin Herrenschmidt | 116af37 | 2006-10-25 13:44:59 +1000 | [diff] [blame] | 674 | if (dev->bus) |
| 675 | blocking_notifier_call_chain(&dev->bus->bus_notifier, |
| 676 | BUS_NOTIFY_DEL_DEVICE, dev); |
Greg Kroah-Hartman | de0ff00 | 2006-06-27 00:06:09 -0700 | [diff] [blame] | 677 | device_remove_groups(dev); |
| 678 | GroupError: |
James Simmons | 82f0cf9 | 2007-02-21 17:44:51 +0000 | [diff] [blame] | 679 | device_remove_attrs(dev); |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 680 | AttrsError: |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 681 | if (dev->devt_attr) { |
| 682 | device_remove_file(dev, dev->devt_attr); |
| 683 | kfree(dev->devt_attr); |
| 684 | } |
James Simmons | 82f0cf9 | 2007-02-21 17:44:51 +0000 | [diff] [blame] | 685 | |
| 686 | if (dev->class) { |
| 687 | sysfs_remove_link(&dev->kobj, "subsystem"); |
| 688 | /* If this is not a "fake" compatible device, remove the |
| 689 | * symlink from the class to the device. */ |
| 690 | if (dev->kobj.parent != &dev->class->subsys.kset.kobj) |
| 691 | sysfs_remove_link(&dev->class->subsys.kset.kobj, |
| 692 | dev->bus_id); |
James Simmons | 82f0cf9 | 2007-02-21 17:44:51 +0000 | [diff] [blame] | 693 | if (parent) { |
Greg Kroah-Hartman | f7f3461 | 2007-03-06 12:55:53 -0800 | [diff] [blame] | 694 | #ifdef CONFIG_SYSFS_DEPRECATED |
James Simmons | 82f0cf9 | 2007-02-21 17:44:51 +0000 | [diff] [blame] | 695 | char *class_name = make_class_name(dev->class->name, |
| 696 | &dev->kobj); |
| 697 | if (class_name) |
| 698 | sysfs_remove_link(&dev->parent->kobj, |
| 699 | class_name); |
| 700 | kfree(class_name); |
Greg Kroah-Hartman | f7f3461 | 2007-03-06 12:55:53 -0800 | [diff] [blame] | 701 | #endif |
James Simmons | 82f0cf9 | 2007-02-21 17:44:51 +0000 | [diff] [blame] | 702 | sysfs_remove_link(&dev->kobj, "device"); |
| 703 | } |
James Simmons | 82f0cf9 | 2007-02-21 17:44:51 +0000 | [diff] [blame] | 704 | } |
Cornelia Huck | a306eea | 2006-09-22 11:37:13 +0200 | [diff] [blame] | 705 | ueventattrError: |
| 706 | device_remove_file(dev, &dev->uevent_attr); |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 707 | attrError: |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 708 | kobject_uevent(&dev->kobj, KOBJ_REMOVE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | kobject_del(&dev->kobj); |
| 710 | Error: |
| 711 | if (parent) |
| 712 | put_device(parent); |
| 713 | goto Done; |
| 714 | } |
| 715 | |
| 716 | |
| 717 | /** |
| 718 | * device_register - register a device with the system. |
| 719 | * @dev: pointer to the device structure |
| 720 | * |
| 721 | * This happens in two clean steps - initialize the device |
| 722 | * and add it to the system. The two steps can be called |
| 723 | * separately, but this is the easiest and most common. |
| 724 | * I.e. you should only call the two helpers separately if |
| 725 | * have a clearly defined need to use and refcount the device |
| 726 | * before it is added to the hierarchy. |
| 727 | */ |
| 728 | |
| 729 | int device_register(struct device *dev) |
| 730 | { |
| 731 | device_initialize(dev); |
| 732 | return device_add(dev); |
| 733 | } |
| 734 | |
| 735 | |
| 736 | /** |
| 737 | * get_device - increment reference count for device. |
| 738 | * @dev: device. |
| 739 | * |
| 740 | * This simply forwards the call to kobject_get(), though |
| 741 | * we do take care to provide for the case that we get a NULL |
| 742 | * pointer passed in. |
| 743 | */ |
| 744 | |
| 745 | struct device * get_device(struct device * dev) |
| 746 | { |
| 747 | return dev ? to_dev(kobject_get(&dev->kobj)) : NULL; |
| 748 | } |
| 749 | |
| 750 | |
| 751 | /** |
| 752 | * put_device - decrement reference count. |
| 753 | * @dev: device in question. |
| 754 | */ |
| 755 | void put_device(struct device * dev) |
| 756 | { |
| 757 | if (dev) |
| 758 | kobject_put(&dev->kobj); |
| 759 | } |
| 760 | |
| 761 | |
| 762 | /** |
| 763 | * device_del - delete device from system. |
| 764 | * @dev: device. |
| 765 | * |
| 766 | * This is the first part of the device unregistration |
| 767 | * sequence. This removes the device from the lists we control |
| 768 | * from here, has it removed from the other driver model |
| 769 | * subsystems it was added to in device_add(), and removes it |
| 770 | * from the kobject hierarchy. |
| 771 | * |
| 772 | * NOTE: this should be called manually _iff_ device_add() was |
| 773 | * also called manually. |
| 774 | */ |
| 775 | |
| 776 | void device_del(struct device * dev) |
| 777 | { |
| 778 | struct device * parent = dev->parent; |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 779 | struct class_interface *class_intf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | if (parent) |
Patrick Mochel | d62c0f9 | 2005-06-24 08:39:33 -0700 | [diff] [blame] | 782 | klist_del(&dev->knode_parent); |
Catalin Marinas | 82189b9 | 2006-11-25 11:09:30 -0800 | [diff] [blame] | 783 | if (dev->devt_attr) { |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 784 | device_remove_file(dev, dev->devt_attr); |
Catalin Marinas | 82189b9 | 2006-11-25 11:09:30 -0800 | [diff] [blame] | 785 | kfree(dev->devt_attr); |
| 786 | } |
Kay Sievers | b9d9c82 | 2006-06-15 15:31:56 +0200 | [diff] [blame] | 787 | if (dev->class) { |
| 788 | sysfs_remove_link(&dev->kobj, "subsystem"); |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 789 | /* If this is not a "fake" compatible device, remove the |
| 790 | * symlink from the class to the device. */ |
| 791 | if (dev->kobj.parent != &dev->class->subsys.kset.kobj) |
| 792 | sysfs_remove_link(&dev->class->subsys.kset.kobj, |
| 793 | dev->bus_id); |
Greg Kroah-Hartman | 64bb5d2 | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 794 | if (parent) { |
Greg Kroah-Hartman | f7f3461 | 2007-03-06 12:55:53 -0800 | [diff] [blame] | 795 | #ifdef CONFIG_SYSFS_DEPRECATED |
Kay Sievers | 99ef3ef | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 796 | char *class_name = make_class_name(dev->class->name, |
| 797 | &dev->kobj); |
Cornelia Huck | cb360bb | 2006-11-27 10:35:05 +0100 | [diff] [blame] | 798 | if (class_name) |
| 799 | sysfs_remove_link(&dev->parent->kobj, |
| 800 | class_name); |
Kay Sievers | 99ef3ef | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 801 | kfree(class_name); |
Greg Kroah-Hartman | f7f3461 | 2007-03-06 12:55:53 -0800 | [diff] [blame] | 802 | #endif |
Kay Sievers | 99ef3ef | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 803 | sysfs_remove_link(&dev->kobj, "device"); |
Greg Kroah-Hartman | 64bb5d2 | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 804 | } |
Kay Sievers | 99ef3ef | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 805 | |
Greg Kroah-Hartman | 5d9fd16 | 2006-06-22 17:17:32 -0700 | [diff] [blame] | 806 | down(&dev->class->sem); |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 807 | /* notify any interfaces that the device is now gone */ |
| 808 | list_for_each_entry(class_intf, &dev->class->interfaces, node) |
| 809 | if (class_intf->remove_dev) |
| 810 | class_intf->remove_dev(dev, class_intf); |
| 811 | /* remove the device from the class list */ |
Greg Kroah-Hartman | 5d9fd16 | 2006-06-22 17:17:32 -0700 | [diff] [blame] | 812 | list_del_init(&dev->node); |
| 813 | up(&dev->class->sem); |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 814 | |
| 815 | /* If we live in a parent class-directory, unreference it */ |
| 816 | if (dev->kobj.parent->kset == &dev->class->class_dirs) { |
| 817 | struct device *d; |
| 818 | int other = 0; |
| 819 | |
| 820 | /* |
| 821 | * if we are the last child of our class, delete |
| 822 | * our class-directory at this parent |
| 823 | */ |
| 824 | down(&dev->class->sem); |
| 825 | list_for_each_entry(d, &dev->class->devices, node) { |
| 826 | if (d == dev) |
| 827 | continue; |
| 828 | if (d->kobj.parent == dev->kobj.parent) { |
| 829 | other = 1; |
| 830 | break; |
| 831 | } |
| 832 | } |
| 833 | if (!other) |
| 834 | kobject_del(dev->kobj.parent); |
| 835 | |
| 836 | kobject_put(dev->kobj.parent); |
| 837 | up(&dev->class->sem); |
| 838 | } |
Kay Sievers | b9d9c82 | 2006-06-15 15:31:56 +0200 | [diff] [blame] | 839 | } |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 840 | device_remove_file(dev, &dev->uevent_attr); |
Greg Kroah-Hartman | de0ff00 | 2006-06-27 00:06:09 -0700 | [diff] [blame] | 841 | device_remove_groups(dev); |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 842 | device_remove_attrs(dev); |
Benjamin Herrenschmidt | 2895353 | 2006-11-08 19:46:14 -0800 | [diff] [blame] | 843 | bus_remove_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | |
Tejun Heo | 2f8d16a | 2007-03-09 19:34:19 +0900 | [diff] [blame] | 845 | /* |
| 846 | * Some platform devices are driven without driver attached |
| 847 | * and managed resources may have been acquired. Make sure |
| 848 | * all resources are released. |
| 849 | */ |
| 850 | devres_release_all(dev); |
| 851 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | /* Notify the platform of the removal, in case they |
| 853 | * need to do anything... |
| 854 | */ |
| 855 | if (platform_notify_remove) |
| 856 | platform_notify_remove(dev); |
Benjamin Herrenschmidt | 116af37 | 2006-10-25 13:44:59 +1000 | [diff] [blame] | 857 | if (dev->bus) |
| 858 | blocking_notifier_call_chain(&dev->bus->bus_notifier, |
| 859 | BUS_NOTIFY_DEL_DEVICE, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | device_pm_remove(dev); |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 861 | kobject_uevent(&dev->kobj, KOBJ_REMOVE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | kobject_del(&dev->kobj); |
| 863 | if (parent) |
| 864 | put_device(parent); |
| 865 | } |
| 866 | |
| 867 | /** |
| 868 | * device_unregister - unregister device from system. |
| 869 | * @dev: device going away. |
| 870 | * |
| 871 | * We do this in two parts, like we do device_register(). First, |
| 872 | * we remove it from all the subsystems with device_del(), then |
| 873 | * we decrement the reference count via put_device(). If that |
| 874 | * is the final reference count, the device will be cleaned up |
| 875 | * via device_release() above. Otherwise, the structure will |
| 876 | * stick around until the final reference to the device is dropped. |
| 877 | */ |
| 878 | void device_unregister(struct device * dev) |
| 879 | { |
| 880 | pr_debug("DEV: Unregistering device. ID = '%s'\n", dev->bus_id); |
| 881 | device_del(dev); |
| 882 | put_device(dev); |
| 883 | } |
| 884 | |
| 885 | |
mochel@digitalimplant.org | 3623957 | 2005-03-24 19:08:30 -0800 | [diff] [blame] | 886 | static struct device * next_device(struct klist_iter * i) |
| 887 | { |
| 888 | struct klist_node * n = klist_next(i); |
| 889 | return n ? container_of(n, struct device, knode_parent) : NULL; |
| 890 | } |
| 891 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | /** |
| 893 | * device_for_each_child - device child iterator. |
Randy Dunlap | c41455f | 2005-10-23 11:59:14 -0700 | [diff] [blame] | 894 | * @parent: parent struct device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | * @data: data for the callback. |
| 896 | * @fn: function to be called for each device. |
| 897 | * |
Randy Dunlap | c41455f | 2005-10-23 11:59:14 -0700 | [diff] [blame] | 898 | * Iterate over @parent's child devices, and call @fn for each, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | * passing it @data. |
| 900 | * |
| 901 | * We check the return of @fn each time. If it returns anything |
| 902 | * other than 0, we break out and return that value. |
| 903 | */ |
mochel@digitalimplant.org | 3623957 | 2005-03-24 19:08:30 -0800 | [diff] [blame] | 904 | int device_for_each_child(struct device * parent, void * data, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | int (*fn)(struct device *, void *)) |
| 906 | { |
mochel@digitalimplant.org | 3623957 | 2005-03-24 19:08:30 -0800 | [diff] [blame] | 907 | struct klist_iter i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | struct device * child; |
| 909 | int error = 0; |
| 910 | |
mochel@digitalimplant.org | 3623957 | 2005-03-24 19:08:30 -0800 | [diff] [blame] | 911 | klist_iter_init(&parent->klist_children, &i); |
| 912 | while ((child = next_device(&i)) && !error) |
| 913 | error = fn(child, data); |
| 914 | klist_iter_exit(&i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | return error; |
| 916 | } |
| 917 | |
Cornelia Huck | 5ab6998 | 2006-11-16 15:42:07 +0100 | [diff] [blame] | 918 | /** |
| 919 | * device_find_child - device iterator for locating a particular device. |
| 920 | * @parent: parent struct device |
| 921 | * @data: Data to pass to match function |
| 922 | * @match: Callback function to check device |
| 923 | * |
| 924 | * This is similar to the device_for_each_child() function above, but it |
| 925 | * returns a reference to a device that is 'found' for later use, as |
| 926 | * determined by the @match callback. |
| 927 | * |
| 928 | * The callback should return 0 if the device doesn't match and non-zero |
| 929 | * if it does. If the callback returns non-zero and a reference to the |
| 930 | * current device can be obtained, this function will return to the caller |
| 931 | * and not iterate over any more devices. |
| 932 | */ |
| 933 | struct device * device_find_child(struct device *parent, void *data, |
| 934 | int (*match)(struct device *, void *)) |
| 935 | { |
| 936 | struct klist_iter i; |
| 937 | struct device *child; |
| 938 | |
| 939 | if (!parent) |
| 940 | return NULL; |
| 941 | |
| 942 | klist_iter_init(&parent->klist_children, &i); |
| 943 | while ((child = next_device(&i))) |
| 944 | if (match(child, data) && get_device(child)) |
| 945 | break; |
| 946 | klist_iter_exit(&i); |
| 947 | return child; |
| 948 | } |
| 949 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | int __init devices_init(void) |
| 951 | { |
| 952 | return subsystem_register(&devices_subsys); |
| 953 | } |
| 954 | |
| 955 | EXPORT_SYMBOL_GPL(device_for_each_child); |
Cornelia Huck | 5ab6998 | 2006-11-16 15:42:07 +0100 | [diff] [blame] | 956 | EXPORT_SYMBOL_GPL(device_find_child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | |
| 958 | EXPORT_SYMBOL_GPL(device_initialize); |
| 959 | EXPORT_SYMBOL_GPL(device_add); |
| 960 | EXPORT_SYMBOL_GPL(device_register); |
| 961 | |
| 962 | EXPORT_SYMBOL_GPL(device_del); |
| 963 | EXPORT_SYMBOL_GPL(device_unregister); |
| 964 | EXPORT_SYMBOL_GPL(get_device); |
| 965 | EXPORT_SYMBOL_GPL(put_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | |
| 967 | EXPORT_SYMBOL_GPL(device_create_file); |
| 968 | EXPORT_SYMBOL_GPL(device_remove_file); |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 969 | |
| 970 | |
| 971 | static void device_create_release(struct device *dev) |
| 972 | { |
| 973 | pr_debug("%s called for %s\n", __FUNCTION__, dev->bus_id); |
| 974 | kfree(dev); |
| 975 | } |
| 976 | |
| 977 | /** |
| 978 | * device_create - creates a device and registers it with sysfs |
Henrik Kretzschmar | 42734da | 2006-07-05 00:53:19 +0200 | [diff] [blame] | 979 | * @class: pointer to the struct class that this device should be registered to |
| 980 | * @parent: pointer to the parent struct device of this new device, if any |
| 981 | * @devt: the dev_t for the char device to be added |
| 982 | * @fmt: string for the device's name |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 983 | * |
Henrik Kretzschmar | 42734da | 2006-07-05 00:53:19 +0200 | [diff] [blame] | 984 | * This function can be used by char device classes. A struct device |
| 985 | * will be created in sysfs, registered to the specified class. |
| 986 | * |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 987 | * A "dev" file will be created, showing the dev_t for the device, if |
| 988 | * the dev_t is not 0,0. |
Henrik Kretzschmar | 42734da | 2006-07-05 00:53:19 +0200 | [diff] [blame] | 989 | * If a pointer to a parent struct device is passed in, the newly created |
| 990 | * struct device will be a child of that device in sysfs. |
| 991 | * The pointer to the struct device will be returned from the call. |
| 992 | * Any further sysfs files that might be required can be created using this |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 993 | * pointer. |
| 994 | * |
| 995 | * Note: the struct class passed to this function must have previously |
| 996 | * been created with a call to class_create(). |
| 997 | */ |
| 998 | struct device *device_create(struct class *class, struct device *parent, |
Greg Kroah-Hartman | 5cbe5f8 | 2006-08-10 01:19:19 -0400 | [diff] [blame] | 999 | dev_t devt, const char *fmt, ...) |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1000 | { |
| 1001 | va_list args; |
| 1002 | struct device *dev = NULL; |
| 1003 | int retval = -ENODEV; |
| 1004 | |
| 1005 | if (class == NULL || IS_ERR(class)) |
| 1006 | goto error; |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1007 | |
| 1008 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
| 1009 | if (!dev) { |
| 1010 | retval = -ENOMEM; |
| 1011 | goto error; |
| 1012 | } |
| 1013 | |
| 1014 | dev->devt = devt; |
| 1015 | dev->class = class; |
| 1016 | dev->parent = parent; |
| 1017 | dev->release = device_create_release; |
| 1018 | |
| 1019 | va_start(args, fmt); |
| 1020 | vsnprintf(dev->bus_id, BUS_ID_SIZE, fmt, args); |
| 1021 | va_end(args); |
| 1022 | retval = device_register(dev); |
| 1023 | if (retval) |
| 1024 | goto error; |
| 1025 | |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1026 | return dev; |
| 1027 | |
| 1028 | error: |
| 1029 | kfree(dev); |
| 1030 | return ERR_PTR(retval); |
| 1031 | } |
| 1032 | EXPORT_SYMBOL_GPL(device_create); |
| 1033 | |
| 1034 | /** |
| 1035 | * device_destroy - removes a device that was created with device_create() |
Henrik Kretzschmar | 42734da | 2006-07-05 00:53:19 +0200 | [diff] [blame] | 1036 | * @class: pointer to the struct class that this device was registered with |
| 1037 | * @devt: the dev_t of the device that was previously registered |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1038 | * |
Henrik Kretzschmar | 42734da | 2006-07-05 00:53:19 +0200 | [diff] [blame] | 1039 | * This call unregisters and cleans up a device that was created with a |
| 1040 | * call to device_create(). |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1041 | */ |
| 1042 | void device_destroy(struct class *class, dev_t devt) |
| 1043 | { |
| 1044 | struct device *dev = NULL; |
| 1045 | struct device *dev_tmp; |
| 1046 | |
| 1047 | down(&class->sem); |
| 1048 | list_for_each_entry(dev_tmp, &class->devices, node) { |
| 1049 | if (dev_tmp->devt == devt) { |
| 1050 | dev = dev_tmp; |
| 1051 | break; |
| 1052 | } |
| 1053 | } |
| 1054 | up(&class->sem); |
| 1055 | |
Greg Kroah-Hartman | 5d9fd16 | 2006-06-22 17:17:32 -0700 | [diff] [blame] | 1056 | if (dev) |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1057 | device_unregister(dev); |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1058 | } |
| 1059 | EXPORT_SYMBOL_GPL(device_destroy); |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1060 | |
| 1061 | /** |
| 1062 | * device_rename - renames a device |
| 1063 | * @dev: the pointer to the struct device to be renamed |
| 1064 | * @new_name: the new name of the device |
| 1065 | */ |
| 1066 | int device_rename(struct device *dev, char *new_name) |
| 1067 | { |
| 1068 | char *old_class_name = NULL; |
| 1069 | char *new_class_name = NULL; |
| 1070 | char *old_symlink_name = NULL; |
| 1071 | int error; |
| 1072 | |
| 1073 | dev = get_device(dev); |
| 1074 | if (!dev) |
| 1075 | return -EINVAL; |
| 1076 | |
| 1077 | pr_debug("DEVICE: renaming '%s' to '%s'\n", dev->bus_id, new_name); |
| 1078 | |
Kay Sievers | 99ef3ef | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 1079 | #ifdef CONFIG_SYSFS_DEPRECATED |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1080 | if ((dev->class) && (dev->parent)) |
| 1081 | old_class_name = make_class_name(dev->class->name, &dev->kobj); |
Kay Sievers | 99ef3ef | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 1082 | #endif |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1083 | |
| 1084 | if (dev->class) { |
| 1085 | old_symlink_name = kmalloc(BUS_ID_SIZE, GFP_KERNEL); |
Jesper Juhl | 952ab43 | 2006-09-28 23:56:01 +0200 | [diff] [blame] | 1086 | if (!old_symlink_name) { |
| 1087 | error = -ENOMEM; |
| 1088 | goto out_free_old_class; |
| 1089 | } |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1090 | strlcpy(old_symlink_name, dev->bus_id, BUS_ID_SIZE); |
| 1091 | } |
| 1092 | |
| 1093 | strlcpy(dev->bus_id, new_name, BUS_ID_SIZE); |
| 1094 | |
| 1095 | error = kobject_rename(&dev->kobj, new_name); |
| 1096 | |
Kay Sievers | 99ef3ef | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 1097 | #ifdef CONFIG_SYSFS_DEPRECATED |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1098 | if (old_class_name) { |
| 1099 | new_class_name = make_class_name(dev->class->name, &dev->kobj); |
| 1100 | if (new_class_name) { |
| 1101 | sysfs_create_link(&dev->parent->kobj, &dev->kobj, |
| 1102 | new_class_name); |
| 1103 | sysfs_remove_link(&dev->parent->kobj, old_class_name); |
| 1104 | } |
| 1105 | } |
Kay Sievers | 99ef3ef | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 1106 | #endif |
| 1107 | |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1108 | if (dev->class) { |
| 1109 | sysfs_remove_link(&dev->class->subsys.kset.kobj, |
| 1110 | old_symlink_name); |
| 1111 | sysfs_create_link(&dev->class->subsys.kset.kobj, &dev->kobj, |
| 1112 | dev->bus_id); |
| 1113 | } |
| 1114 | put_device(dev); |
| 1115 | |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1116 | kfree(new_class_name); |
| 1117 | kfree(old_symlink_name); |
Jesper Juhl | 952ab43 | 2006-09-28 23:56:01 +0200 | [diff] [blame] | 1118 | out_free_old_class: |
| 1119 | kfree(old_class_name); |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1120 | |
| 1121 | return error; |
| 1122 | } |
Johannes Berg | a2807db | 2007-02-28 12:38:31 +0100 | [diff] [blame] | 1123 | EXPORT_SYMBOL_GPL(device_rename); |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1124 | |
| 1125 | static int device_move_class_links(struct device *dev, |
| 1126 | struct device *old_parent, |
| 1127 | struct device *new_parent) |
| 1128 | { |
Greg Kroah-Hartman | f7f3461 | 2007-03-06 12:55:53 -0800 | [diff] [blame] | 1129 | int error = 0; |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1130 | #ifdef CONFIG_SYSFS_DEPRECATED |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1131 | char *class_name; |
| 1132 | |
| 1133 | class_name = make_class_name(dev->class->name, &dev->kobj); |
| 1134 | if (!class_name) { |
Cornelia Huck | cb360bb | 2006-11-27 10:35:05 +0100 | [diff] [blame] | 1135 | error = -ENOMEM; |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1136 | goto out; |
| 1137 | } |
| 1138 | if (old_parent) { |
| 1139 | sysfs_remove_link(&dev->kobj, "device"); |
| 1140 | sysfs_remove_link(&old_parent->kobj, class_name); |
| 1141 | } |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 1142 | if (new_parent) { |
| 1143 | error = sysfs_create_link(&dev->kobj, &new_parent->kobj, |
| 1144 | "device"); |
| 1145 | if (error) |
| 1146 | goto out; |
| 1147 | error = sysfs_create_link(&new_parent->kobj, &dev->kobj, |
| 1148 | class_name); |
| 1149 | if (error) |
| 1150 | sysfs_remove_link(&dev->kobj, "device"); |
| 1151 | } |
| 1152 | else |
| 1153 | error = 0; |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1154 | out: |
| 1155 | kfree(class_name); |
| 1156 | return error; |
| 1157 | #else |
Greg Kroah-Hartman | f7f3461 | 2007-03-06 12:55:53 -0800 | [diff] [blame] | 1158 | if (old_parent) |
| 1159 | sysfs_remove_link(&dev->kobj, "device"); |
| 1160 | if (new_parent) |
| 1161 | error = sysfs_create_link(&dev->kobj, &new_parent->kobj, |
| 1162 | "device"); |
| 1163 | return error; |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1164 | #endif |
| 1165 | } |
| 1166 | |
| 1167 | /** |
| 1168 | * device_move - moves a device to a new parent |
| 1169 | * @dev: the pointer to the struct device to be moved |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 1170 | * @new_parent: the new parent of the device (can by NULL) |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1171 | */ |
| 1172 | int device_move(struct device *dev, struct device *new_parent) |
| 1173 | { |
| 1174 | int error; |
| 1175 | struct device *old_parent; |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 1176 | struct kobject *new_parent_kobj; |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1177 | |
| 1178 | dev = get_device(dev); |
| 1179 | if (!dev) |
| 1180 | return -EINVAL; |
| 1181 | |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1182 | new_parent = get_device(new_parent); |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 1183 | new_parent_kobj = get_device_parent (dev, new_parent); |
| 1184 | if (IS_ERR(new_parent_kobj)) { |
| 1185 | error = PTR_ERR(new_parent_kobj); |
| 1186 | put_device(new_parent); |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1187 | goto out; |
| 1188 | } |
| 1189 | pr_debug("DEVICE: moving '%s' to '%s'\n", dev->bus_id, |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 1190 | new_parent ? new_parent->bus_id : "<NULL>"); |
| 1191 | error = kobject_move(&dev->kobj, new_parent_kobj); |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1192 | if (error) { |
| 1193 | put_device(new_parent); |
| 1194 | goto out; |
| 1195 | } |
| 1196 | old_parent = dev->parent; |
| 1197 | dev->parent = new_parent; |
| 1198 | if (old_parent) |
Cornelia Huck | acf02d2 | 2006-11-22 17:49:39 +0100 | [diff] [blame] | 1199 | klist_remove(&dev->knode_parent); |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 1200 | if (new_parent) |
| 1201 | klist_add_tail(&dev->knode_parent, &new_parent->klist_children); |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1202 | if (!dev->class) |
| 1203 | goto out_put; |
| 1204 | error = device_move_class_links(dev, old_parent, new_parent); |
| 1205 | if (error) { |
| 1206 | /* We ignore errors on cleanup since we're hosed anyway... */ |
| 1207 | device_move_class_links(dev, new_parent, old_parent); |
| 1208 | if (!kobject_move(&dev->kobj, &old_parent->kobj)) { |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 1209 | if (new_parent) |
| 1210 | klist_remove(&dev->knode_parent); |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1211 | if (old_parent) |
| 1212 | klist_add_tail(&dev->knode_parent, |
| 1213 | &old_parent->klist_children); |
| 1214 | } |
| 1215 | put_device(new_parent); |
| 1216 | goto out; |
| 1217 | } |
| 1218 | out_put: |
| 1219 | put_device(old_parent); |
| 1220 | out: |
| 1221 | put_device(dev); |
| 1222 | return error; |
| 1223 | } |
| 1224 | |
| 1225 | EXPORT_SYMBOL_GPL(device_move); |