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