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