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