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> |
Grant Likely | 07d57a3 | 2012-02-01 11:22:22 -0700 | [diff] [blame] | 21 | #include <linux/of.h> |
| 22 | #include <linux/of_device.h> |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 23 | #include <linux/genhd.h> |
Andrew Morton | 815d2d5 | 2008-03-04 15:09:07 -0800 | [diff] [blame] | 24 | #include <linux/kallsyms.h> |
Dave Young | f75b1c6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 25 | #include <linux/mutex.h> |
Shaohua Li | 401097e | 2009-05-12 13:37:57 -0700 | [diff] [blame] | 26 | #include <linux/async.h> |
Peter Chen | af8db15 | 2011-11-15 21:52:29 +0100 | [diff] [blame] | 27 | #include <linux/pm_runtime.h> |
Kay Sievers | c4e00da | 2012-05-03 02:29:59 +0200 | [diff] [blame] | 28 | #include <linux/netdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | #include "base.h" |
| 31 | #include "power/power.h" |
| 32 | |
Andi Kleen | e52eec1 | 2010-09-08 16:54:17 +0200 | [diff] [blame] | 33 | #ifdef CONFIG_SYSFS_DEPRECATED |
| 34 | #ifdef CONFIG_SYSFS_DEPRECATED_V2 |
| 35 | long sysfs_deprecated = 1; |
| 36 | #else |
| 37 | long sysfs_deprecated = 0; |
| 38 | #endif |
| 39 | static __init int sysfs_deprecated_setup(char *arg) |
| 40 | { |
| 41 | return strict_strtol(arg, 10, &sysfs_deprecated); |
| 42 | } |
| 43 | early_param("sysfs.deprecated", sysfs_deprecated_setup); |
| 44 | #endif |
| 45 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 46 | int (*platform_notify)(struct device *dev) = NULL; |
| 47 | int (*platform_notify_remove)(struct device *dev) = NULL; |
Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 48 | static struct kobject *dev_kobj; |
| 49 | struct kobject *sysfs_dev_char_kobj; |
| 50 | struct kobject *sysfs_dev_block_kobj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Greg Kroah-Hartman | 4e886c2 | 2008-01-27 12:12:43 -0800 | [diff] [blame] | 52 | #ifdef CONFIG_BLOCK |
| 53 | static inline int device_is_not_partition(struct device *dev) |
| 54 | { |
| 55 | return !(dev->type == &part_type); |
| 56 | } |
| 57 | #else |
| 58 | static inline int device_is_not_partition(struct device *dev) |
| 59 | { |
| 60 | return 1; |
| 61 | } |
| 62 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Alan Stern | 3e95637 | 2006-06-16 17:10:48 -0400 | [diff] [blame] | 64 | /** |
| 65 | * dev_driver_string - Return a device's driver name, if at all possible |
| 66 | * @dev: struct device to get the name of |
| 67 | * |
| 68 | * Will return the device's driver's name if it is bound to a device. If |
yan | 9169c01 | 2012-04-20 21:08:45 +0800 | [diff] [blame] | 69 | * the device is not bound to a driver, it will return the name of the bus |
Alan Stern | 3e95637 | 2006-06-16 17:10:48 -0400 | [diff] [blame] | 70 | * it is attached to. If it is not attached to a bus either, an empty |
| 71 | * string will be returned. |
| 72 | */ |
Jean Delvare | bf9ca69 | 2008-07-30 12:29:21 -0700 | [diff] [blame] | 73 | const char *dev_driver_string(const struct device *dev) |
Alan Stern | 3e95637 | 2006-06-16 17:10:48 -0400 | [diff] [blame] | 74 | { |
Alan Stern | 3589972 | 2009-12-04 11:06:57 -0500 | [diff] [blame] | 75 | struct device_driver *drv; |
| 76 | |
| 77 | /* dev->driver can change to NULL underneath us because of unbinding, |
| 78 | * so be careful about accessing it. dev->bus and dev->class should |
| 79 | * never change once they are set, so they don't need special care. |
| 80 | */ |
| 81 | drv = ACCESS_ONCE(dev->driver); |
| 82 | return drv ? drv->name : |
Jean Delvare | a456b70 | 2007-03-09 16:33:10 +0100 | [diff] [blame] | 83 | (dev->bus ? dev->bus->name : |
| 84 | (dev->class ? dev->class->name : "")); |
Alan Stern | 3e95637 | 2006-06-16 17:10:48 -0400 | [diff] [blame] | 85 | } |
Matthew Wilcox | 310a922 | 2006-09-23 23:35:04 -0600 | [diff] [blame] | 86 | EXPORT_SYMBOL(dev_driver_string); |
Alan Stern | 3e95637 | 2006-06-16 17:10:48 -0400 | [diff] [blame] | 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr) |
| 89 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 90 | static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr, |
| 91 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 93 | struct device_attribute *dev_attr = to_dev_attr(attr); |
Lars-Peter Clausen | b0d1f80 | 2012-07-03 18:49:36 +0200 | [diff] [blame] | 94 | struct device *dev = kobj_to_dev(kobj); |
Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 95 | ssize_t ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
| 97 | if (dev_attr->show) |
Yani Ioannou | 54b6f35 | 2005-05-17 06:39:34 -0400 | [diff] [blame] | 98 | ret = dev_attr->show(dev, dev_attr, buf); |
Andrew Morton | 815d2d5 | 2008-03-04 15:09:07 -0800 | [diff] [blame] | 99 | if (ret >= (ssize_t)PAGE_SIZE) { |
Greg Kroah-Hartman | 53a9c87 | 2013-01-17 13:10:23 -0800 | [diff] [blame] | 100 | print_symbol("dev_attr_show: %s returned bad count\n", |
| 101 | (unsigned long)dev_attr->show); |
Andrew Morton | 815d2d5 | 2008-03-04 15:09:07 -0800 | [diff] [blame] | 102 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | return ret; |
| 104 | } |
| 105 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 106 | static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr, |
| 107 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 109 | struct device_attribute *dev_attr = to_dev_attr(attr); |
Lars-Peter Clausen | b0d1f80 | 2012-07-03 18:49:36 +0200 | [diff] [blame] | 110 | struct device *dev = kobj_to_dev(kobj); |
Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 111 | ssize_t ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
| 113 | if (dev_attr->store) |
Yani Ioannou | 54b6f35 | 2005-05-17 06:39:34 -0400 | [diff] [blame] | 114 | ret = dev_attr->store(dev, dev_attr, buf, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | return ret; |
| 116 | } |
| 117 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 118 | static const struct sysfs_ops dev_sysfs_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | .show = dev_attr_show, |
| 120 | .store = dev_attr_store, |
| 121 | }; |
| 122 | |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 123 | #define to_ext_attr(x) container_of(x, struct dev_ext_attribute, attr) |
| 124 | |
| 125 | ssize_t device_store_ulong(struct device *dev, |
| 126 | struct device_attribute *attr, |
| 127 | const char *buf, size_t size) |
| 128 | { |
| 129 | struct dev_ext_attribute *ea = to_ext_attr(attr); |
| 130 | char *end; |
| 131 | unsigned long new = simple_strtoul(buf, &end, 0); |
| 132 | if (end == buf) |
| 133 | return -EINVAL; |
| 134 | *(unsigned long *)(ea->var) = new; |
| 135 | /* Always return full write size even if we didn't consume all */ |
| 136 | return size; |
| 137 | } |
| 138 | EXPORT_SYMBOL_GPL(device_store_ulong); |
| 139 | |
| 140 | ssize_t device_show_ulong(struct device *dev, |
| 141 | struct device_attribute *attr, |
| 142 | char *buf) |
| 143 | { |
| 144 | struct dev_ext_attribute *ea = to_ext_attr(attr); |
| 145 | return snprintf(buf, PAGE_SIZE, "%lx\n", *(unsigned long *)(ea->var)); |
| 146 | } |
| 147 | EXPORT_SYMBOL_GPL(device_show_ulong); |
| 148 | |
| 149 | ssize_t device_store_int(struct device *dev, |
| 150 | struct device_attribute *attr, |
| 151 | const char *buf, size_t size) |
| 152 | { |
| 153 | struct dev_ext_attribute *ea = to_ext_attr(attr); |
| 154 | char *end; |
| 155 | long new = simple_strtol(buf, &end, 0); |
| 156 | if (end == buf || new > INT_MAX || new < INT_MIN) |
| 157 | return -EINVAL; |
| 158 | *(int *)(ea->var) = new; |
| 159 | /* Always return full write size even if we didn't consume all */ |
| 160 | return size; |
| 161 | } |
| 162 | EXPORT_SYMBOL_GPL(device_store_int); |
| 163 | |
| 164 | ssize_t device_show_int(struct device *dev, |
| 165 | struct device_attribute *attr, |
| 166 | char *buf) |
| 167 | { |
| 168 | struct dev_ext_attribute *ea = to_ext_attr(attr); |
| 169 | |
| 170 | return snprintf(buf, PAGE_SIZE, "%d\n", *(int *)(ea->var)); |
| 171 | } |
| 172 | EXPORT_SYMBOL_GPL(device_show_int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Borislav Petkov | 9187239 | 2012-10-09 19:52:05 +0200 | [diff] [blame] | 174 | ssize_t device_store_bool(struct device *dev, struct device_attribute *attr, |
| 175 | const char *buf, size_t size) |
| 176 | { |
| 177 | struct dev_ext_attribute *ea = to_ext_attr(attr); |
| 178 | |
| 179 | if (strtobool(buf, ea->var) < 0) |
| 180 | return -EINVAL; |
| 181 | |
| 182 | return size; |
| 183 | } |
| 184 | EXPORT_SYMBOL_GPL(device_store_bool); |
| 185 | |
| 186 | ssize_t device_show_bool(struct device *dev, struct device_attribute *attr, |
| 187 | char *buf) |
| 188 | { |
| 189 | struct dev_ext_attribute *ea = to_ext_attr(attr); |
| 190 | |
| 191 | return snprintf(buf, PAGE_SIZE, "%d\n", *(bool *)(ea->var)); |
| 192 | } |
| 193 | EXPORT_SYMBOL_GPL(device_show_bool); |
| 194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | /** |
| 196 | * device_release - free device structure. |
| 197 | * @kobj: device's kobject. |
| 198 | * |
| 199 | * This is called once the reference count for the object |
| 200 | * reaches 0. We forward the call to the device's release |
| 201 | * method, which should handle actually freeing the structure. |
| 202 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 203 | static void device_release(struct kobject *kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | { |
Lars-Peter Clausen | b0d1f80 | 2012-07-03 18:49:36 +0200 | [diff] [blame] | 205 | struct device *dev = kobj_to_dev(kobj); |
Greg Kroah-Hartman | fb069a5 | 2008-12-16 12:23:36 -0800 | [diff] [blame] | 206 | struct device_private *p = dev->p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Ming Lei | a525a3d | 2012-07-25 01:42:29 +0800 | [diff] [blame] | 208 | /* |
| 209 | * Some platform devices are driven without driver attached |
| 210 | * and managed resources may have been acquired. Make sure |
| 211 | * all resources are released. |
| 212 | * |
| 213 | * Drivers still can add resources into device after device |
| 214 | * is deleted but alive, so release devres here to avoid |
| 215 | * possible memory leak. |
| 216 | */ |
| 217 | devres_release_all(dev); |
| 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | if (dev->release) |
| 220 | dev->release(dev); |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 221 | else if (dev->type && dev->type->release) |
| 222 | dev->type->release(dev); |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 223 | else if (dev->class && dev->class->dev_release) |
| 224 | dev->class->dev_release(dev); |
Arjan van de Ven | f810a5c | 2008-07-25 19:45:39 -0700 | [diff] [blame] | 225 | else |
| 226 | WARN(1, KERN_ERR "Device '%s' does not have a release() " |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 227 | "function, it is broken and must be fixed.\n", |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 228 | dev_name(dev)); |
Greg Kroah-Hartman | fb069a5 | 2008-12-16 12:23:36 -0800 | [diff] [blame] | 229 | kfree(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | } |
| 231 | |
Eric W. Biederman | bc451f2 | 2010-03-30 11:31:25 -0700 | [diff] [blame] | 232 | static const void *device_namespace(struct kobject *kobj) |
| 233 | { |
Lars-Peter Clausen | b0d1f80 | 2012-07-03 18:49:36 +0200 | [diff] [blame] | 234 | struct device *dev = kobj_to_dev(kobj); |
Eric W. Biederman | bc451f2 | 2010-03-30 11:31:25 -0700 | [diff] [blame] | 235 | const void *ns = NULL; |
| 236 | |
| 237 | if (dev->class && dev->class->ns_type) |
| 238 | ns = dev->class->namespace(dev); |
| 239 | |
| 240 | return ns; |
| 241 | } |
| 242 | |
Greg Kroah-Hartman | 8f4afc4 | 2007-10-11 10:47:49 -0600 | [diff] [blame] | 243 | static struct kobj_type device_ktype = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | .release = device_release, |
| 245 | .sysfs_ops = &dev_sysfs_ops, |
Eric W. Biederman | bc451f2 | 2010-03-30 11:31:25 -0700 | [diff] [blame] | 246 | .namespace = device_namespace, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | }; |
| 248 | |
| 249 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 250 | static int dev_uevent_filter(struct kset *kset, struct kobject *kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | { |
| 252 | struct kobj_type *ktype = get_ktype(kobj); |
| 253 | |
Greg Kroah-Hartman | 8f4afc4 | 2007-10-11 10:47:49 -0600 | [diff] [blame] | 254 | if (ktype == &device_ktype) { |
Lars-Peter Clausen | b0d1f80 | 2012-07-03 18:49:36 +0200 | [diff] [blame] | 255 | struct device *dev = kobj_to_dev(kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | if (dev->bus) |
| 257 | return 1; |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 258 | if (dev->class) |
| 259 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | } |
| 261 | return 0; |
| 262 | } |
| 263 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 264 | static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | { |
Lars-Peter Clausen | b0d1f80 | 2012-07-03 18:49:36 +0200 | [diff] [blame] | 266 | struct device *dev = kobj_to_dev(kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 268 | if (dev->bus) |
| 269 | return dev->bus->name; |
| 270 | if (dev->class) |
| 271 | return dev->class->name; |
| 272 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | } |
| 274 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 275 | static int dev_uevent(struct kset *kset, struct kobject *kobj, |
| 276 | struct kobj_uevent_env *env) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | { |
Lars-Peter Clausen | b0d1f80 | 2012-07-03 18:49:36 +0200 | [diff] [blame] | 278 | struct device *dev = kobj_to_dev(kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | int retval = 0; |
| 280 | |
Kay Sievers | 6fcf53a | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 281 | /* add device node properties if present */ |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 282 | if (MAJOR(dev->devt)) { |
Kay Sievers | 6fcf53a | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 283 | const char *tmp; |
| 284 | const char *name; |
Al Viro | 2c9ede5 | 2011-07-23 20:24:48 -0400 | [diff] [blame] | 285 | umode_t mode = 0; |
Greg Kroah-Hartman | 4e4098a | 2013-04-11 11:43:29 -0700 | [diff] [blame] | 286 | kuid_t uid = GLOBAL_ROOT_UID; |
| 287 | kgid_t gid = GLOBAL_ROOT_GID; |
Kay Sievers | 6fcf53a | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 288 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 289 | add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt)); |
| 290 | add_uevent_var(env, "MINOR=%u", MINOR(dev->devt)); |
Kay Sievers | 3c2670e | 2013-04-06 09:56:00 -0700 | [diff] [blame] | 291 | name = device_get_devnode(dev, &mode, &uid, &gid, &tmp); |
Kay Sievers | 6fcf53a | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 292 | if (name) { |
| 293 | add_uevent_var(env, "DEVNAME=%s", name); |
Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 294 | if (mode) |
| 295 | add_uevent_var(env, "DEVMODE=%#o", mode & 0777); |
Greg Kroah-Hartman | 4e4098a | 2013-04-11 11:43:29 -0700 | [diff] [blame] | 296 | if (!uid_eq(uid, GLOBAL_ROOT_UID)) |
| 297 | add_uevent_var(env, "DEVUID=%u", from_kuid(&init_user_ns, uid)); |
| 298 | if (!gid_eq(gid, GLOBAL_ROOT_GID)) |
| 299 | add_uevent_var(env, "DEVGID=%u", from_kgid(&init_user_ns, gid)); |
Kay Sievers | 3c2670e | 2013-04-06 09:56:00 -0700 | [diff] [blame] | 300 | kfree(tmp); |
Kay Sievers | 6fcf53a | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 301 | } |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 302 | } |
| 303 | |
Kay Sievers | 414264f | 2007-03-12 21:08:57 +0100 | [diff] [blame] | 304 | if (dev->type && dev->type->name) |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 305 | add_uevent_var(env, "DEVTYPE=%s", dev->type->name); |
Kay Sievers | 414264f | 2007-03-12 21:08:57 +0100 | [diff] [blame] | 306 | |
Kay Sievers | 239378f | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 307 | if (dev->driver) |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 308 | add_uevent_var(env, "DRIVER=%s", dev->driver->name); |
Kay Sievers | 239378f | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 309 | |
Grant Likely | 07d57a3 | 2012-02-01 11:22:22 -0700 | [diff] [blame] | 310 | /* Add common DT information about the device */ |
| 311 | of_device_uevent(dev, env); |
| 312 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 313 | /* have the bus specific function add its stuff */ |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 314 | if (dev->bus && dev->bus->uevent) { |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 315 | retval = dev->bus->uevent(dev, env); |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 316 | if (retval) |
Greg Kroah-Hartman | 7dc72b2 | 2007-11-28 23:49:41 -0800 | [diff] [blame] | 317 | pr_debug("device: '%s': %s: bus uevent() returned %d\n", |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 318 | dev_name(dev), __func__, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } |
| 320 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 321 | /* have the class specific function add its stuff */ |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 322 | if (dev->class && dev->class->dev_uevent) { |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 323 | retval = dev->class->dev_uevent(dev, env); |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 324 | if (retval) |
Greg Kroah-Hartman | 7dc72b2 | 2007-11-28 23:49:41 -0800 | [diff] [blame] | 325 | pr_debug("device: '%s': %s: class uevent() " |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 326 | "returned %d\n", dev_name(dev), |
Harvey Harrison | 2b3a302 | 2008-03-04 16:41:05 -0800 | [diff] [blame] | 327 | __func__, retval); |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 328 | } |
| 329 | |
Stefan Weil | eef35c2 | 2010-08-06 21:11:15 +0200 | [diff] [blame] | 330 | /* have the device type specific function add its stuff */ |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 331 | if (dev->type && dev->type->uevent) { |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 332 | retval = dev->type->uevent(dev, env); |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 333 | if (retval) |
Greg Kroah-Hartman | 7dc72b2 | 2007-11-28 23:49:41 -0800 | [diff] [blame] | 334 | pr_debug("device: '%s': %s: dev_type uevent() " |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 335 | "returned %d\n", dev_name(dev), |
Harvey Harrison | 2b3a302 | 2008-03-04 16:41:05 -0800 | [diff] [blame] | 336 | __func__, retval); |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 337 | } |
| 338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | return retval; |
| 340 | } |
| 341 | |
Emese Revfy | 9cd4361 | 2009-12-31 14:52:51 +0100 | [diff] [blame] | 342 | static const struct kset_uevent_ops device_uevent_ops = { |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 343 | .filter = dev_uevent_filter, |
| 344 | .name = dev_uevent_name, |
| 345 | .uevent = dev_uevent, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | }; |
| 347 | |
Kay Sievers | 16574dc | 2007-04-06 01:40:38 +0200 | [diff] [blame] | 348 | static ssize_t show_uevent(struct device *dev, struct device_attribute *attr, |
| 349 | char *buf) |
| 350 | { |
| 351 | struct kobject *top_kobj; |
| 352 | struct kset *kset; |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 353 | struct kobj_uevent_env *env = NULL; |
Kay Sievers | 16574dc | 2007-04-06 01:40:38 +0200 | [diff] [blame] | 354 | int i; |
| 355 | size_t count = 0; |
| 356 | int retval; |
| 357 | |
| 358 | /* search the kset, the device belongs to */ |
| 359 | top_kobj = &dev->kobj; |
Kay Sievers | 5c5daf6 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 360 | while (!top_kobj->kset && top_kobj->parent) |
| 361 | top_kobj = top_kobj->parent; |
Kay Sievers | 16574dc | 2007-04-06 01:40:38 +0200 | [diff] [blame] | 362 | if (!top_kobj->kset) |
| 363 | goto out; |
Kay Sievers | 5c5daf6 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 364 | |
Kay Sievers | 16574dc | 2007-04-06 01:40:38 +0200 | [diff] [blame] | 365 | kset = top_kobj->kset; |
| 366 | if (!kset->uevent_ops || !kset->uevent_ops->uevent) |
| 367 | goto out; |
| 368 | |
| 369 | /* respect filter */ |
| 370 | if (kset->uevent_ops && kset->uevent_ops->filter) |
| 371 | if (!kset->uevent_ops->filter(kset, &dev->kobj)) |
| 372 | goto out; |
| 373 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 374 | env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL); |
| 375 | if (!env) |
Greg Kroah-Hartman | c7308c8 | 2007-05-02 14:14:11 +0200 | [diff] [blame] | 376 | return -ENOMEM; |
| 377 | |
Kay Sievers | 16574dc | 2007-04-06 01:40:38 +0200 | [diff] [blame] | 378 | /* let the kset specific function add its keys */ |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 379 | retval = kset->uevent_ops->uevent(kset, &dev->kobj, env); |
Kay Sievers | 16574dc | 2007-04-06 01:40:38 +0200 | [diff] [blame] | 380 | if (retval) |
| 381 | goto out; |
| 382 | |
| 383 | /* copy keys to file */ |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 384 | for (i = 0; i < env->envp_idx; i++) |
| 385 | count += sprintf(&buf[count], "%s\n", env->envp[i]); |
Kay Sievers | 16574dc | 2007-04-06 01:40:38 +0200 | [diff] [blame] | 386 | out: |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 387 | kfree(env); |
Kay Sievers | 16574dc | 2007-04-06 01:40:38 +0200 | [diff] [blame] | 388 | return count; |
| 389 | } |
| 390 | |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 391 | static ssize_t store_uevent(struct device *dev, struct device_attribute *attr, |
| 392 | const char *buf, size_t count) |
| 393 | { |
Kay Sievers | 60a96a5 | 2007-07-08 22:29:26 +0200 | [diff] [blame] | 394 | enum kobject_action action; |
| 395 | |
Kay Sievers | 3f5468c | 2010-01-14 22:54:37 +0100 | [diff] [blame] | 396 | if (kobject_action_type(buf, count, &action) == 0) |
Kay Sievers | 60a96a5 | 2007-07-08 22:29:26 +0200 | [diff] [blame] | 397 | kobject_uevent(&dev->kobj, action); |
Kay Sievers | 3f5468c | 2010-01-14 22:54:37 +0100 | [diff] [blame] | 398 | else |
| 399 | dev_err(dev, "uevent: unknown action-string\n"); |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 400 | return count; |
| 401 | } |
| 402 | |
Tejun Heo | ad6a1e1 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 403 | static struct device_attribute uevent_attr = |
| 404 | __ATTR(uevent, S_IRUGO | S_IWUSR, show_uevent, store_uevent); |
| 405 | |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 406 | static int device_add_attributes(struct device *dev, |
| 407 | struct device_attribute *attrs) |
Greg Kroah-Hartman | de0ff00 | 2006-06-27 00:06:09 -0700 | [diff] [blame] | 408 | { |
Greg Kroah-Hartman | de0ff00 | 2006-06-27 00:06:09 -0700 | [diff] [blame] | 409 | int error = 0; |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 410 | int i; |
Greg Kroah-Hartman | de0ff00 | 2006-06-27 00:06:09 -0700 | [diff] [blame] | 411 | |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 412 | if (attrs) { |
| 413 | for (i = 0; attr_name(attrs[i]); i++) { |
| 414 | error = device_create_file(dev, &attrs[i]); |
| 415 | if (error) |
| 416 | break; |
Greg Kroah-Hartman | de0ff00 | 2006-06-27 00:06:09 -0700 | [diff] [blame] | 417 | } |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 418 | if (error) |
| 419 | while (--i >= 0) |
| 420 | device_remove_file(dev, &attrs[i]); |
Greg Kroah-Hartman | de0ff00 | 2006-06-27 00:06:09 -0700 | [diff] [blame] | 421 | } |
Greg Kroah-Hartman | de0ff00 | 2006-06-27 00:06:09 -0700 | [diff] [blame] | 422 | return error; |
| 423 | } |
| 424 | |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 425 | static void device_remove_attributes(struct device *dev, |
| 426 | struct device_attribute *attrs) |
Greg Kroah-Hartman | de0ff00 | 2006-06-27 00:06:09 -0700 | [diff] [blame] | 427 | { |
| 428 | int i; |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 429 | |
| 430 | if (attrs) |
| 431 | for (i = 0; attr_name(attrs[i]); i++) |
| 432 | device_remove_file(dev, &attrs[i]); |
| 433 | } |
| 434 | |
Stefan Achatz | c97415a | 2010-11-26 19:57:29 +0000 | [diff] [blame] | 435 | static int device_add_bin_attributes(struct device *dev, |
| 436 | struct bin_attribute *attrs) |
| 437 | { |
| 438 | int error = 0; |
| 439 | int i; |
| 440 | |
| 441 | if (attrs) { |
| 442 | for (i = 0; attr_name(attrs[i]); i++) { |
| 443 | error = device_create_bin_file(dev, &attrs[i]); |
| 444 | if (error) |
| 445 | break; |
| 446 | } |
| 447 | if (error) |
| 448 | while (--i >= 0) |
| 449 | device_remove_bin_file(dev, &attrs[i]); |
| 450 | } |
| 451 | return error; |
| 452 | } |
| 453 | |
| 454 | static void device_remove_bin_attributes(struct device *dev, |
| 455 | struct bin_attribute *attrs) |
| 456 | { |
| 457 | int i; |
| 458 | |
| 459 | if (attrs) |
| 460 | for (i = 0; attr_name(attrs[i]); i++) |
| 461 | device_remove_bin_file(dev, &attrs[i]); |
| 462 | } |
| 463 | |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 464 | static int device_add_groups(struct device *dev, |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 465 | const struct attribute_group **groups) |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 466 | { |
| 467 | int error = 0; |
| 468 | int i; |
| 469 | |
| 470 | if (groups) { |
| 471 | for (i = 0; groups[i]; i++) { |
| 472 | error = sysfs_create_group(&dev->kobj, groups[i]); |
| 473 | if (error) { |
| 474 | while (--i >= 0) |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 475 | sysfs_remove_group(&dev->kobj, |
| 476 | groups[i]); |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 477 | break; |
| 478 | } |
Greg Kroah-Hartman | de0ff00 | 2006-06-27 00:06:09 -0700 | [diff] [blame] | 479 | } |
| 480 | } |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 481 | return error; |
| 482 | } |
| 483 | |
| 484 | static void device_remove_groups(struct device *dev, |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 485 | const struct attribute_group **groups) |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 486 | { |
| 487 | int i; |
| 488 | |
| 489 | if (groups) |
| 490 | for (i = 0; groups[i]; i++) |
| 491 | sysfs_remove_group(&dev->kobj, groups[i]); |
Greg Kroah-Hartman | de0ff00 | 2006-06-27 00:06:09 -0700 | [diff] [blame] | 492 | } |
| 493 | |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 494 | static int device_add_attrs(struct device *dev) |
| 495 | { |
| 496 | struct class *class = dev->class; |
Stephen Hemminger | aed65af | 2011-03-28 09:12:52 -0700 | [diff] [blame] | 497 | const struct device_type *type = dev->type; |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 498 | int error; |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 499 | |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 500 | if (class) { |
| 501 | error = device_add_attributes(dev, class->dev_attrs); |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 502 | if (error) |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 503 | return error; |
Stefan Achatz | c97415a | 2010-11-26 19:57:29 +0000 | [diff] [blame] | 504 | error = device_add_bin_attributes(dev, class->dev_bin_attrs); |
| 505 | if (error) |
| 506 | goto err_remove_class_attrs; |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 507 | } |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 508 | |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 509 | if (type) { |
| 510 | error = device_add_groups(dev, type->groups); |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 511 | if (error) |
Stefan Achatz | c97415a | 2010-11-26 19:57:29 +0000 | [diff] [blame] | 512 | goto err_remove_class_bin_attrs; |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 513 | } |
| 514 | |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 515 | error = device_add_groups(dev, dev->groups); |
| 516 | if (error) |
| 517 | goto err_remove_type_groups; |
| 518 | |
| 519 | return 0; |
| 520 | |
| 521 | err_remove_type_groups: |
| 522 | if (type) |
| 523 | device_remove_groups(dev, type->groups); |
Stefan Achatz | c97415a | 2010-11-26 19:57:29 +0000 | [diff] [blame] | 524 | err_remove_class_bin_attrs: |
| 525 | if (class) |
| 526 | device_remove_bin_attributes(dev, class->dev_bin_attrs); |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 527 | err_remove_class_attrs: |
| 528 | if (class) |
| 529 | device_remove_attributes(dev, class->dev_attrs); |
| 530 | |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 531 | return error; |
| 532 | } |
| 533 | |
| 534 | static void device_remove_attrs(struct device *dev) |
| 535 | { |
| 536 | struct class *class = dev->class; |
Stephen Hemminger | aed65af | 2011-03-28 09:12:52 -0700 | [diff] [blame] | 537 | const struct device_type *type = dev->type; |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 538 | |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 539 | device_remove_groups(dev, dev->groups); |
Kay Sievers | f9f852d | 2006-10-07 21:54:55 +0200 | [diff] [blame] | 540 | |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 541 | if (type) |
| 542 | device_remove_groups(dev, type->groups); |
| 543 | |
Stefan Achatz | c97415a | 2010-11-26 19:57:29 +0000 | [diff] [blame] | 544 | if (class) { |
Dmitry Torokhov | 621a167 | 2007-03-10 01:37:34 -0500 | [diff] [blame] | 545 | device_remove_attributes(dev, class->dev_attrs); |
Stefan Achatz | c97415a | 2010-11-26 19:57:29 +0000 | [diff] [blame] | 546 | device_remove_bin_attributes(dev, class->dev_bin_attrs); |
| 547 | } |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 548 | } |
| 549 | |
| 550 | |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 551 | static ssize_t show_dev(struct device *dev, struct device_attribute *attr, |
| 552 | char *buf) |
| 553 | { |
| 554 | return print_dev_t(buf, dev->devt); |
| 555 | } |
| 556 | |
Tejun Heo | ad6a1e1 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 557 | static struct device_attribute devt_attr = |
| 558 | __ATTR(dev, S_IRUGO, show_dev, NULL); |
| 559 | |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 560 | /* /sys/devices/ */ |
Greg Kroah-Hartman | 881c6cfd | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 561 | struct kset *devices_kset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 564 | * device_create_file - create sysfs attribute file for device. |
| 565 | * @dev: device. |
| 566 | * @attr: device attribute descriptor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | */ |
Phil Carmody | 26579ab | 2009-12-18 15:34:19 +0200 | [diff] [blame] | 568 | int device_create_file(struct device *dev, |
| 569 | const struct device_attribute *attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | { |
| 571 | int error = 0; |
Felipe Balbi | 8f46baa | 2013-02-20 10:31:42 +0200 | [diff] [blame] | 572 | |
| 573 | if (dev) { |
| 574 | WARN(((attr->attr.mode & S_IWUGO) && !attr->store), |
dyoung@redhat.com | 9752197 | 2013-05-16 14:31:30 +0800 | [diff] [blame] | 575 | "Attribute %s: write permission without 'store'\n", |
| 576 | attr->attr.name); |
Felipe Balbi | 8f46baa | 2013-02-20 10:31:42 +0200 | [diff] [blame] | 577 | WARN(((attr->attr.mode & S_IRUGO) && !attr->show), |
dyoung@redhat.com | 9752197 | 2013-05-16 14:31:30 +0800 | [diff] [blame] | 578 | "Attribute %s: read permission without 'show'\n", |
| 579 | attr->attr.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | error = sysfs_create_file(&dev->kobj, &attr->attr); |
Felipe Balbi | 8f46baa | 2013-02-20 10:31:42 +0200 | [diff] [blame] | 581 | } |
| 582 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | return error; |
| 584 | } |
| 585 | |
| 586 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 587 | * device_remove_file - remove sysfs attribute file. |
| 588 | * @dev: device. |
| 589 | * @attr: device attribute descriptor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | */ |
Phil Carmody | 26579ab | 2009-12-18 15:34:19 +0200 | [diff] [blame] | 591 | void device_remove_file(struct device *dev, |
| 592 | const struct device_attribute *attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | { |
Cornelia Huck | 0c98b19 | 2008-01-31 10:39:38 +0100 | [diff] [blame] | 594 | if (dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | sysfs_remove_file(&dev->kobj, &attr->attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | } |
| 597 | |
Greg Kroah-Hartman | 2589f188 | 2006-09-19 09:39:19 -0700 | [diff] [blame] | 598 | /** |
| 599 | * device_create_bin_file - create sysfs binary attribute file for device. |
| 600 | * @dev: device. |
| 601 | * @attr: device binary attribute descriptor. |
| 602 | */ |
Phil Carmody | 66ecb92 | 2009-12-18 15:34:20 +0200 | [diff] [blame] | 603 | int device_create_bin_file(struct device *dev, |
| 604 | const struct bin_attribute *attr) |
Greg Kroah-Hartman | 2589f188 | 2006-09-19 09:39:19 -0700 | [diff] [blame] | 605 | { |
| 606 | int error = -EINVAL; |
| 607 | if (dev) |
| 608 | error = sysfs_create_bin_file(&dev->kobj, attr); |
| 609 | return error; |
| 610 | } |
| 611 | EXPORT_SYMBOL_GPL(device_create_bin_file); |
| 612 | |
| 613 | /** |
| 614 | * device_remove_bin_file - remove sysfs binary attribute file |
| 615 | * @dev: device. |
| 616 | * @attr: device binary attribute descriptor. |
| 617 | */ |
Phil Carmody | 66ecb92 | 2009-12-18 15:34:20 +0200 | [diff] [blame] | 618 | void device_remove_bin_file(struct device *dev, |
| 619 | const struct bin_attribute *attr) |
Greg Kroah-Hartman | 2589f188 | 2006-09-19 09:39:19 -0700 | [diff] [blame] | 620 | { |
| 621 | if (dev) |
| 622 | sysfs_remove_bin_file(&dev->kobj, attr); |
| 623 | } |
| 624 | EXPORT_SYMBOL_GPL(device_remove_bin_file); |
| 625 | |
Alan Stern | d9a9cdf | 2007-03-15 15:50:34 -0400 | [diff] [blame] | 626 | /** |
Alan Stern | 523ded7 | 2007-04-26 00:12:04 -0700 | [diff] [blame] | 627 | * device_schedule_callback_owner - helper to schedule a callback for a device |
Alan Stern | d9a9cdf | 2007-03-15 15:50:34 -0400 | [diff] [blame] | 628 | * @dev: device. |
| 629 | * @func: callback function to invoke later. |
Alan Stern | 523ded7 | 2007-04-26 00:12:04 -0700 | [diff] [blame] | 630 | * @owner: module owning the callback routine |
Alan Stern | d9a9cdf | 2007-03-15 15:50:34 -0400 | [diff] [blame] | 631 | * |
| 632 | * Attribute methods must not unregister themselves or their parent device |
| 633 | * (which would amount to the same thing). Attempts to do so will deadlock, |
| 634 | * since unregistration is mutually exclusive with driver callbacks. |
| 635 | * |
| 636 | * Instead methods can call this routine, which will attempt to allocate |
| 637 | * and schedule a workqueue request to call back @func with @dev as its |
| 638 | * argument in the workqueue's process context. @dev will be pinned until |
| 639 | * @func returns. |
| 640 | * |
Alan Stern | 523ded7 | 2007-04-26 00:12:04 -0700 | [diff] [blame] | 641 | * This routine is usually called via the inline device_schedule_callback(), |
| 642 | * which automatically sets @owner to THIS_MODULE. |
| 643 | * |
Alan Stern | d9a9cdf | 2007-03-15 15:50:34 -0400 | [diff] [blame] | 644 | * Returns 0 if the request was submitted, -ENOMEM if storage could not |
Alan Stern | 523ded7 | 2007-04-26 00:12:04 -0700 | [diff] [blame] | 645 | * be allocated, -ENODEV if a reference to @owner isn't available. |
Alan Stern | d9a9cdf | 2007-03-15 15:50:34 -0400 | [diff] [blame] | 646 | * |
| 647 | * NOTE: This routine won't work if CONFIG_SYSFS isn't set! It uses an |
| 648 | * underlying sysfs routine (since it is intended for use by attribute |
| 649 | * methods), and if sysfs isn't available you'll get nothing but -ENOSYS. |
| 650 | */ |
Alan Stern | 523ded7 | 2007-04-26 00:12:04 -0700 | [diff] [blame] | 651 | int device_schedule_callback_owner(struct device *dev, |
| 652 | void (*func)(struct device *), struct module *owner) |
Alan Stern | d9a9cdf | 2007-03-15 15:50:34 -0400 | [diff] [blame] | 653 | { |
| 654 | return sysfs_schedule_callback(&dev->kobj, |
Alan Stern | 523ded7 | 2007-04-26 00:12:04 -0700 | [diff] [blame] | 655 | (void (*)(void *)) func, dev, owner); |
Alan Stern | d9a9cdf | 2007-03-15 15:50:34 -0400 | [diff] [blame] | 656 | } |
Alan Stern | 523ded7 | 2007-04-26 00:12:04 -0700 | [diff] [blame] | 657 | EXPORT_SYMBOL_GPL(device_schedule_callback_owner); |
Alan Stern | d9a9cdf | 2007-03-15 15:50:34 -0400 | [diff] [blame] | 658 | |
James Bottomley | 34bb61f | 2005-09-06 16:56:51 -0700 | [diff] [blame] | 659 | static void klist_children_get(struct klist_node *n) |
| 660 | { |
Greg Kroah-Hartman | f791b8c | 2008-12-16 12:24:56 -0800 | [diff] [blame] | 661 | struct device_private *p = to_device_private_parent(n); |
| 662 | struct device *dev = p->device; |
James Bottomley | 34bb61f | 2005-09-06 16:56:51 -0700 | [diff] [blame] | 663 | |
| 664 | get_device(dev); |
| 665 | } |
| 666 | |
| 667 | static void klist_children_put(struct klist_node *n) |
| 668 | { |
Greg Kroah-Hartman | f791b8c | 2008-12-16 12:24:56 -0800 | [diff] [blame] | 669 | struct device_private *p = to_device_private_parent(n); |
| 670 | struct device *dev = p->device; |
James Bottomley | 34bb61f | 2005-09-06 16:56:51 -0700 | [diff] [blame] | 671 | |
| 672 | put_device(dev); |
| 673 | } |
| 674 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 676 | * device_initialize - init device structure. |
| 677 | * @dev: device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | * |
Cornelia Huck | 5739411 | 2008-09-03 18:26:40 +0200 | [diff] [blame] | 679 | * This prepares the device for use by other layers by initializing |
| 680 | * its fields. |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 681 | * It is the first half of device_register(), if called by |
Cornelia Huck | 5739411 | 2008-09-03 18:26:40 +0200 | [diff] [blame] | 682 | * that function, though it can also be called separately, so one |
| 683 | * may use @dev's fields. In particular, get_device()/put_device() |
| 684 | * may be used for reference counting of @dev after calling this |
| 685 | * function. |
| 686 | * |
Alan Stern | b10d5ef | 2012-01-17 11:39:00 -0500 | [diff] [blame] | 687 | * All fields in @dev must be initialized by the caller to 0, except |
| 688 | * for those explicitly set to some other value. The simplest |
| 689 | * approach is to use kzalloc() to allocate the structure containing |
| 690 | * @dev. |
| 691 | * |
Cornelia Huck | 5739411 | 2008-09-03 18:26:40 +0200 | [diff] [blame] | 692 | * NOTE: Use put_device() to give up your reference instead of freeing |
| 693 | * @dev directly once you have called this function. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | void device_initialize(struct device *dev) |
| 696 | { |
Greg Kroah-Hartman | 881c6cfd | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 697 | dev->kobj.kset = devices_kset; |
Greg Kroah-Hartman | f9cb074 | 2007-12-17 23:05:35 -0700 | [diff] [blame] | 698 | kobject_init(&dev->kobj, &device_ktype); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | INIT_LIST_HEAD(&dev->dma_pools); |
Thomas Gleixner | 3142788 | 2010-01-29 20:39:02 +0000 | [diff] [blame] | 700 | mutex_init(&dev->mutex); |
Peter Zijlstra | 1704f47 | 2010-03-19 01:37:42 +0100 | [diff] [blame] | 701 | lockdep_set_novalidate_class(&dev->mutex); |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 702 | spin_lock_init(&dev->devres_lock); |
| 703 | INIT_LIST_HEAD(&dev->devres_head); |
Alan Stern | 3b98aea | 2008-08-07 13:06:12 -0400 | [diff] [blame] | 704 | device_pm_init(dev); |
Christoph Hellwig | 8734813 | 2006-12-06 20:32:33 -0800 | [diff] [blame] | 705 | set_dev_node(dev, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | } |
| 707 | |
Tejun Heo | d73ce00 | 2013-03-12 11:30:05 -0700 | [diff] [blame] | 708 | struct kobject *virtual_device_parent(struct device *dev) |
Greg Kroah-Hartman | f0ee61a | 2006-10-23 10:40:54 -0700 | [diff] [blame] | 709 | { |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 710 | static struct kobject *virtual_dir = NULL; |
Greg Kroah-Hartman | f0ee61a | 2006-10-23 10:40:54 -0700 | [diff] [blame] | 711 | |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 712 | if (!virtual_dir) |
Greg Kroah-Hartman | 4ff6abf | 2007-11-05 22:24:43 -0800 | [diff] [blame] | 713 | virtual_dir = kobject_create_and_add("virtual", |
Greg Kroah-Hartman | 881c6cfd | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 714 | &devices_kset->kobj); |
Greg Kroah-Hartman | f0ee61a | 2006-10-23 10:40:54 -0700 | [diff] [blame] | 715 | |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 716 | return virtual_dir; |
Greg Kroah-Hartman | f0ee61a | 2006-10-23 10:40:54 -0700 | [diff] [blame] | 717 | } |
| 718 | |
Eric W. Biederman | bc451f2 | 2010-03-30 11:31:25 -0700 | [diff] [blame] | 719 | struct class_dir { |
| 720 | struct kobject kobj; |
| 721 | struct class *class; |
| 722 | }; |
| 723 | |
| 724 | #define to_class_dir(obj) container_of(obj, struct class_dir, kobj) |
| 725 | |
| 726 | static void class_dir_release(struct kobject *kobj) |
| 727 | { |
| 728 | struct class_dir *dir = to_class_dir(kobj); |
| 729 | kfree(dir); |
| 730 | } |
| 731 | |
| 732 | static const |
| 733 | struct kobj_ns_type_operations *class_dir_child_ns_type(struct kobject *kobj) |
| 734 | { |
| 735 | struct class_dir *dir = to_class_dir(kobj); |
| 736 | return dir->class->ns_type; |
| 737 | } |
| 738 | |
| 739 | static struct kobj_type class_dir_ktype = { |
| 740 | .release = class_dir_release, |
| 741 | .sysfs_ops = &kobj_sysfs_ops, |
| 742 | .child_ns_type = class_dir_child_ns_type |
| 743 | }; |
| 744 | |
| 745 | static struct kobject * |
| 746 | class_dir_create_and_add(struct class *class, struct kobject *parent_kobj) |
| 747 | { |
| 748 | struct class_dir *dir; |
| 749 | int retval; |
| 750 | |
| 751 | dir = kzalloc(sizeof(*dir), GFP_KERNEL); |
| 752 | if (!dir) |
| 753 | return NULL; |
| 754 | |
| 755 | dir->class = class; |
| 756 | kobject_init(&dir->kobj, &class_dir_ktype); |
| 757 | |
Kay Sievers | 6b6e39a | 2010-11-15 23:13:18 +0100 | [diff] [blame] | 758 | dir->kobj.kset = &class->p->glue_dirs; |
Eric W. Biederman | bc451f2 | 2010-03-30 11:31:25 -0700 | [diff] [blame] | 759 | |
| 760 | retval = kobject_add(&dir->kobj, parent_kobj, "%s", class->name); |
| 761 | if (retval < 0) { |
| 762 | kobject_put(&dir->kobj); |
| 763 | return NULL; |
| 764 | } |
| 765 | return &dir->kobj; |
| 766 | } |
| 767 | |
| 768 | |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 769 | static struct kobject *get_device_parent(struct device *dev, |
| 770 | struct device *parent) |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 771 | { |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 772 | if (dev->class) { |
Tejun Heo | 77d3d7c | 2010-02-05 17:57:02 +0900 | [diff] [blame] | 773 | static DEFINE_MUTEX(gdp_mutex); |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 774 | struct kobject *kobj = NULL; |
| 775 | struct kobject *parent_kobj; |
| 776 | struct kobject *k; |
| 777 | |
Randy Dunlap | ead454f | 2010-09-24 14:36:49 -0700 | [diff] [blame] | 778 | #ifdef CONFIG_BLOCK |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 779 | /* block disks show up in /sys/block */ |
Andi Kleen | e52eec1 | 2010-09-08 16:54:17 +0200 | [diff] [blame] | 780 | if (sysfs_deprecated && dev->class == &block_class) { |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 781 | if (parent && parent->class == &block_class) |
| 782 | return &parent->kobj; |
Kay Sievers | 6b6e39a | 2010-11-15 23:13:18 +0100 | [diff] [blame] | 783 | return &block_class.p->subsys.kobj; |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 784 | } |
Randy Dunlap | ead454f | 2010-09-24 14:36:49 -0700 | [diff] [blame] | 785 | #endif |
Andi Kleen | e52eec1 | 2010-09-08 16:54:17 +0200 | [diff] [blame] | 786 | |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 787 | /* |
| 788 | * If we have no parent, we live in "virtual". |
Kay Sievers | 0f4dafc | 2007-12-19 01:40:42 +0100 | [diff] [blame] | 789 | * Class-devices with a non class-device as parent, live |
| 790 | * in a "glue" directory to prevent namespace collisions. |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 791 | */ |
| 792 | if (parent == NULL) |
| 793 | parent_kobj = virtual_device_parent(dev); |
Eric W. Biederman | 24b1442 | 2010-07-24 22:43:35 -0700 | [diff] [blame] | 794 | else if (parent->class && !dev->class->ns_type) |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 795 | return &parent->kobj; |
| 796 | else |
| 797 | parent_kobj = &parent->kobj; |
| 798 | |
Tejun Heo | 77d3d7c | 2010-02-05 17:57:02 +0900 | [diff] [blame] | 799 | mutex_lock(&gdp_mutex); |
| 800 | |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 801 | /* find our class-directory at the parent and reference it */ |
Kay Sievers | 6b6e39a | 2010-11-15 23:13:18 +0100 | [diff] [blame] | 802 | spin_lock(&dev->class->p->glue_dirs.list_lock); |
| 803 | list_for_each_entry(k, &dev->class->p->glue_dirs.list, entry) |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 804 | if (k->parent == parent_kobj) { |
| 805 | kobj = kobject_get(k); |
| 806 | break; |
| 807 | } |
Kay Sievers | 6b6e39a | 2010-11-15 23:13:18 +0100 | [diff] [blame] | 808 | spin_unlock(&dev->class->p->glue_dirs.list_lock); |
Tejun Heo | 77d3d7c | 2010-02-05 17:57:02 +0900 | [diff] [blame] | 809 | if (kobj) { |
| 810 | mutex_unlock(&gdp_mutex); |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 811 | return kobj; |
Tejun Heo | 77d3d7c | 2010-02-05 17:57:02 +0900 | [diff] [blame] | 812 | } |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 813 | |
| 814 | /* or create a new class-directory at the parent device */ |
Eric W. Biederman | bc451f2 | 2010-03-30 11:31:25 -0700 | [diff] [blame] | 815 | k = class_dir_create_and_add(dev->class, parent_kobj); |
Kay Sievers | 0f4dafc | 2007-12-19 01:40:42 +0100 | [diff] [blame] | 816 | /* do not emit an uevent for this simple "glue" directory */ |
Tejun Heo | 77d3d7c | 2010-02-05 17:57:02 +0900 | [diff] [blame] | 817 | mutex_unlock(&gdp_mutex); |
Greg Kroah-Hartman | 43968d2 | 2007-11-05 22:24:43 -0800 | [diff] [blame] | 818 | return k; |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 819 | } |
| 820 | |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 821 | /* subsystems can specify a default root directory for their devices */ |
| 822 | if (!parent && dev->bus && dev->bus->dev_root) |
| 823 | return &dev->bus->dev_root->kobj; |
| 824 | |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 825 | if (parent) |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 826 | return &parent->kobj; |
| 827 | return NULL; |
| 828 | } |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 829 | |
Cornelia Huck | 63b6971 | 2008-01-21 16:09:44 +0100 | [diff] [blame] | 830 | static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir) |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 831 | { |
Kay Sievers | 0f4dafc | 2007-12-19 01:40:42 +0100 | [diff] [blame] | 832 | /* see if we live in a "glue" directory */ |
Cornelia Huck | c1fe539 | 2008-02-27 15:38:23 +0100 | [diff] [blame] | 833 | if (!glue_dir || !dev->class || |
Kay Sievers | 6b6e39a | 2010-11-15 23:13:18 +0100 | [diff] [blame] | 834 | glue_dir->kset != &dev->class->p->glue_dirs) |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 835 | return; |
| 836 | |
Kay Sievers | 0f4dafc | 2007-12-19 01:40:42 +0100 | [diff] [blame] | 837 | kobject_put(glue_dir); |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 838 | } |
Cornelia Huck | 63b6971 | 2008-01-21 16:09:44 +0100 | [diff] [blame] | 839 | |
| 840 | static void cleanup_device_parent(struct device *dev) |
| 841 | { |
| 842 | cleanup_glue_dir(dev, dev->kobj.parent); |
| 843 | } |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 844 | |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 845 | static int device_add_class_symlinks(struct device *dev) |
| 846 | { |
| 847 | int error; |
| 848 | |
| 849 | if (!dev->class) |
| 850 | return 0; |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 851 | |
Greg Kroah-Hartman | 1fbfee6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 852 | error = sysfs_create_link(&dev->kobj, |
Kay Sievers | 6b6e39a | 2010-11-15 23:13:18 +0100 | [diff] [blame] | 853 | &dev->class->p->subsys.kobj, |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 854 | "subsystem"); |
| 855 | if (error) |
| 856 | goto out; |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 857 | |
Greg Kroah-Hartman | 4e886c2 | 2008-01-27 12:12:43 -0800 | [diff] [blame] | 858 | if (dev->parent && device_is_not_partition(dev)) { |
Dmitry Torokhov | 4f01a75 | 2007-09-18 22:46:50 -0700 | [diff] [blame] | 859 | error = sysfs_create_link(&dev->kobj, &dev->parent->kobj, |
| 860 | "device"); |
| 861 | if (error) |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 862 | goto out_subsys; |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 863 | } |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 864 | |
Randy Dunlap | ead454f | 2010-09-24 14:36:49 -0700 | [diff] [blame] | 865 | #ifdef CONFIG_BLOCK |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 866 | /* /sys/block has directories and does not need symlinks */ |
Andi Kleen | e52eec1 | 2010-09-08 16:54:17 +0200 | [diff] [blame] | 867 | if (sysfs_deprecated && dev->class == &block_class) |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 868 | return 0; |
Randy Dunlap | ead454f | 2010-09-24 14:36:49 -0700 | [diff] [blame] | 869 | #endif |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 870 | |
| 871 | /* link in the class directory pointing to the device */ |
Kay Sievers | 6b6e39a | 2010-11-15 23:13:18 +0100 | [diff] [blame] | 872 | error = sysfs_create_link(&dev->class->p->subsys.kobj, |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 873 | &dev->kobj, dev_name(dev)); |
| 874 | if (error) |
| 875 | goto out_device; |
| 876 | |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 877 | return 0; |
| 878 | |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 879 | out_device: |
| 880 | sysfs_remove_link(&dev->kobj, "device"); |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 881 | |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 882 | out_subsys: |
| 883 | sysfs_remove_link(&dev->kobj, "subsystem"); |
| 884 | out: |
| 885 | return error; |
| 886 | } |
| 887 | |
| 888 | static void device_remove_class_symlinks(struct device *dev) |
| 889 | { |
| 890 | if (!dev->class) |
| 891 | return; |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 892 | |
Greg Kroah-Hartman | 4e886c2 | 2008-01-27 12:12:43 -0800 | [diff] [blame] | 893 | if (dev->parent && device_is_not_partition(dev)) |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 894 | sysfs_remove_link(&dev->kobj, "device"); |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 895 | sysfs_remove_link(&dev->kobj, "subsystem"); |
Randy Dunlap | ead454f | 2010-09-24 14:36:49 -0700 | [diff] [blame] | 896 | #ifdef CONFIG_BLOCK |
Andi Kleen | e52eec1 | 2010-09-08 16:54:17 +0200 | [diff] [blame] | 897 | if (sysfs_deprecated && dev->class == &block_class) |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 898 | return; |
Randy Dunlap | ead454f | 2010-09-24 14:36:49 -0700 | [diff] [blame] | 899 | #endif |
Kay Sievers | 6b6e39a | 2010-11-15 23:13:18 +0100 | [diff] [blame] | 900 | sysfs_delete_link(&dev->class->p->subsys.kobj, &dev->kobj, dev_name(dev)); |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 901 | } |
| 902 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | /** |
Stephen Rothwell | 413c239 | 2008-05-30 10:16:40 +1000 | [diff] [blame] | 904 | * dev_set_name - set a device name |
| 905 | * @dev: device |
Randy Dunlap | 4623236 | 2008-06-04 21:40:43 -0700 | [diff] [blame] | 906 | * @fmt: format string for the device's name |
Stephen Rothwell | 413c239 | 2008-05-30 10:16:40 +1000 | [diff] [blame] | 907 | */ |
| 908 | int dev_set_name(struct device *dev, const char *fmt, ...) |
| 909 | { |
| 910 | va_list vargs; |
Kay Sievers | 1fa5ae8 | 2009-01-25 15:17:37 +0100 | [diff] [blame] | 911 | int err; |
Stephen Rothwell | 413c239 | 2008-05-30 10:16:40 +1000 | [diff] [blame] | 912 | |
| 913 | va_start(vargs, fmt); |
Kay Sievers | 1fa5ae8 | 2009-01-25 15:17:37 +0100 | [diff] [blame] | 914 | err = kobject_set_name_vargs(&dev->kobj, fmt, vargs); |
Stephen Rothwell | 413c239 | 2008-05-30 10:16:40 +1000 | [diff] [blame] | 915 | va_end(vargs); |
Kay Sievers | 1fa5ae8 | 2009-01-25 15:17:37 +0100 | [diff] [blame] | 916 | return err; |
Stephen Rothwell | 413c239 | 2008-05-30 10:16:40 +1000 | [diff] [blame] | 917 | } |
| 918 | EXPORT_SYMBOL_GPL(dev_set_name); |
| 919 | |
| 920 | /** |
Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 921 | * device_to_dev_kobj - select a /sys/dev/ directory for the device |
| 922 | * @dev: device |
| 923 | * |
| 924 | * By default we select char/ for new entries. Setting class->dev_obj |
| 925 | * to NULL prevents an entry from being created. class->dev_kobj must |
| 926 | * be set (or cleared) before any devices are registered to the class |
| 927 | * otherwise device_create_sys_dev_entry() and |
Peter Korsgaard | 0d4e293c | 2012-04-17 12:12:57 +0200 | [diff] [blame] | 928 | * device_remove_sys_dev_entry() will disagree about the presence of |
| 929 | * the link. |
Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 930 | */ |
| 931 | static struct kobject *device_to_dev_kobj(struct device *dev) |
| 932 | { |
| 933 | struct kobject *kobj; |
| 934 | |
| 935 | if (dev->class) |
| 936 | kobj = dev->class->dev_kobj; |
| 937 | else |
| 938 | kobj = sysfs_dev_char_kobj; |
| 939 | |
| 940 | return kobj; |
| 941 | } |
| 942 | |
| 943 | static int device_create_sys_dev_entry(struct device *dev) |
| 944 | { |
| 945 | struct kobject *kobj = device_to_dev_kobj(dev); |
| 946 | int error = 0; |
| 947 | char devt_str[15]; |
| 948 | |
| 949 | if (kobj) { |
| 950 | format_dev_t(devt_str, dev->devt); |
| 951 | error = sysfs_create_link(kobj, &dev->kobj, devt_str); |
| 952 | } |
| 953 | |
| 954 | return error; |
| 955 | } |
| 956 | |
| 957 | static void device_remove_sys_dev_entry(struct device *dev) |
| 958 | { |
| 959 | struct kobject *kobj = device_to_dev_kobj(dev); |
| 960 | char devt_str[15]; |
| 961 | |
| 962 | if (kobj) { |
| 963 | format_dev_t(devt_str, dev->devt); |
| 964 | sysfs_remove_link(kobj, devt_str); |
| 965 | } |
| 966 | } |
| 967 | |
Greg Kroah-Hartman | b402843 | 2009-05-11 14:16:57 -0700 | [diff] [blame] | 968 | int device_private_init(struct device *dev) |
| 969 | { |
| 970 | dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL); |
| 971 | if (!dev->p) |
| 972 | return -ENOMEM; |
| 973 | dev->p->device = dev; |
| 974 | klist_init(&dev->p->klist_children, klist_children_get, |
| 975 | klist_children_put); |
Greg Kroah-Hartman | ef8a3fd | 2012-03-08 12:17:22 -0800 | [diff] [blame] | 976 | INIT_LIST_HEAD(&dev->p->deferred_probe); |
Greg Kroah-Hartman | b402843 | 2009-05-11 14:16:57 -0700 | [diff] [blame] | 977 | return 0; |
| 978 | } |
| 979 | |
Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 980 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 981 | * device_add - add device to device hierarchy. |
| 982 | * @dev: device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 984 | * This is part 2 of device_register(), though may be called |
| 985 | * separately _iff_ device_initialize() has been called separately. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | * |
Cornelia Huck | 5739411 | 2008-09-03 18:26:40 +0200 | [diff] [blame] | 987 | * This adds @dev to the kobject hierarchy via kobject_add(), adds it |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 988 | * to the global and sibling lists for the device, then |
| 989 | * adds it to the other relevant subsystems of the driver model. |
Cornelia Huck | 5739411 | 2008-09-03 18:26:40 +0200 | [diff] [blame] | 990 | * |
Alan Stern | b10d5ef | 2012-01-17 11:39:00 -0500 | [diff] [blame] | 991 | * Do not call this routine or device_register() more than once for |
| 992 | * any device structure. The driver model core is not designed to work |
| 993 | * with devices that get unregistered and then spring back to life. |
| 994 | * (Among other things, it's very hard to guarantee that all references |
| 995 | * to the previous incarnation of @dev have been dropped.) Allocate |
| 996 | * and register a fresh new struct device instead. |
| 997 | * |
Cornelia Huck | 5739411 | 2008-09-03 18:26:40 +0200 | [diff] [blame] | 998 | * NOTE: _Never_ directly free @dev after calling this function, even |
| 999 | * if it returned an error! Always use put_device() to give up your |
| 1000 | * reference instead. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | */ |
| 1002 | int device_add(struct device *dev) |
| 1003 | { |
| 1004 | struct device *parent = NULL; |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 1005 | struct kobject *kobj; |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 1006 | struct class_interface *class_intf; |
Greg Kroah-Hartman | c906a48 | 2008-05-30 10:45:12 -0700 | [diff] [blame] | 1007 | int error = -EINVAL; |
Rafael J. Wysocki | 775b64d | 2008-01-12 20:40:46 +0100 | [diff] [blame] | 1008 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | dev = get_device(dev); |
Greg Kroah-Hartman | c906a48 | 2008-05-30 10:45:12 -0700 | [diff] [blame] | 1010 | if (!dev) |
| 1011 | goto done; |
| 1012 | |
Greg Kroah-Hartman | fb069a5 | 2008-12-16 12:23:36 -0800 | [diff] [blame] | 1013 | if (!dev->p) { |
Greg Kroah-Hartman | b402843 | 2009-05-11 14:16:57 -0700 | [diff] [blame] | 1014 | error = device_private_init(dev); |
| 1015 | if (error) |
| 1016 | goto done; |
Greg Kroah-Hartman | fb069a5 | 2008-12-16 12:23:36 -0800 | [diff] [blame] | 1017 | } |
Greg Kroah-Hartman | fb069a5 | 2008-12-16 12:23:36 -0800 | [diff] [blame] | 1018 | |
Kay Sievers | 1fa5ae8 | 2009-01-25 15:17:37 +0100 | [diff] [blame] | 1019 | /* |
| 1020 | * for statically allocated devices, which should all be converted |
| 1021 | * some day, we need to initialize the name. We prevent reading back |
| 1022 | * the name, and force the use of dev_name() |
| 1023 | */ |
| 1024 | if (dev->init_name) { |
Greg Kroah-Hartman | acc0e90 | 2009-06-02 15:39:55 -0700 | [diff] [blame] | 1025 | dev_set_name(dev, "%s", dev->init_name); |
Kay Sievers | 1fa5ae8 | 2009-01-25 15:17:37 +0100 | [diff] [blame] | 1026 | dev->init_name = NULL; |
| 1027 | } |
Greg Kroah-Hartman | c906a48 | 2008-05-30 10:45:12 -0700 | [diff] [blame] | 1028 | |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 1029 | /* subsystems can specify simple device enumeration */ |
| 1030 | if (!dev_name(dev) && dev->bus && dev->bus->dev_name) |
| 1031 | dev_set_name(dev, "%s%u", dev->bus->dev_name, dev->id); |
| 1032 | |
Thomas Gleixner | e6309e7 | 2009-12-10 19:32:49 +0000 | [diff] [blame] | 1033 | if (!dev_name(dev)) { |
| 1034 | error = -EINVAL; |
Kay Sievers | 5c8563d | 2009-05-28 14:24:07 -0700 | [diff] [blame] | 1035 | goto name_error; |
Thomas Gleixner | e6309e7 | 2009-12-10 19:32:49 +0000 | [diff] [blame] | 1036 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 1038 | pr_debug("device: '%s': %s\n", dev_name(dev), __func__); |
Greg Kroah-Hartman | c205ef4 | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 1039 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | parent = get_device(dev->parent); |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 1041 | kobj = get_device_parent(dev, parent); |
| 1042 | if (kobj) |
| 1043 | dev->kobj.parent = kobj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | |
Yinghai Lu | 0d358f2 | 2008-02-19 03:20:41 -0800 | [diff] [blame] | 1045 | /* use parent numa_node */ |
| 1046 | if (parent) |
| 1047 | set_dev_node(dev, dev_to_node(parent)); |
| 1048 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | /* first, register with generic layer. */ |
Kay Sievers | 8a577ff | 2009-04-18 15:05:45 -0700 | [diff] [blame] | 1050 | /* we require the name to be set before, and pass NULL */ |
| 1051 | error = kobject_add(&dev->kobj, dev->kobj.parent, NULL); |
Greg Kroah-Hartman | 40fa542 | 2006-10-24 00:37:58 +0100 | [diff] [blame] | 1052 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | goto Error; |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 1054 | |
Brian Walsh | 3702264 | 2006-08-14 22:43:19 -0700 | [diff] [blame] | 1055 | /* notify platform of device entry */ |
| 1056 | if (platform_notify) |
| 1057 | platform_notify(dev); |
| 1058 | |
Tejun Heo | ad6a1e1 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 1059 | error = device_create_file(dev, &uevent_attr); |
Cornelia Huck | a306eea | 2006-09-22 11:37:13 +0200 | [diff] [blame] | 1060 | if (error) |
| 1061 | goto attrError; |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 1062 | |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1063 | if (MAJOR(dev->devt)) { |
Tejun Heo | ad6a1e1 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 1064 | error = device_create_file(dev, &devt_attr); |
| 1065 | if (error) |
Cornelia Huck | a306eea | 2006-09-22 11:37:13 +0200 | [diff] [blame] | 1066 | goto ueventattrError; |
Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 1067 | |
| 1068 | error = device_create_sys_dev_entry(dev); |
| 1069 | if (error) |
| 1070 | goto devtattrError; |
Kay Sievers | 2b2af54 | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 1071 | |
| 1072 | devtmpfs_create_node(dev); |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1073 | } |
| 1074 | |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 1075 | error = device_add_class_symlinks(dev); |
| 1076 | if (error) |
| 1077 | goto SymlinkError; |
Cornelia Huck | dc0afa8 | 2007-07-09 11:39:18 -0700 | [diff] [blame] | 1078 | error = device_add_attrs(dev); |
| 1079 | if (error) |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 1080 | goto AttrsError; |
Cornelia Huck | dc0afa8 | 2007-07-09 11:39:18 -0700 | [diff] [blame] | 1081 | error = bus_add_device(dev); |
| 1082 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | goto BusError; |
Alan Stern | 3b98aea | 2008-08-07 13:06:12 -0400 | [diff] [blame] | 1084 | error = dpm_sysfs_add(dev); |
Rafael J. Wysocki | 57eee3d | 2008-03-12 00:59:38 +0100 | [diff] [blame] | 1085 | if (error) |
Alan Stern | 3b98aea | 2008-08-07 13:06:12 -0400 | [diff] [blame] | 1086 | goto DPMError; |
| 1087 | device_pm_add(dev); |
Alan Stern | ec0676ee | 2008-12-05 14:10:31 -0500 | [diff] [blame] | 1088 | |
| 1089 | /* Notify clients of device addition. This call must come |
majianpeng | 268863f | 2012-01-11 15:12:06 +0000 | [diff] [blame] | 1090 | * after dpm_sysfs_add() and before kobject_uevent(). |
Alan Stern | ec0676ee | 2008-12-05 14:10:31 -0500 | [diff] [blame] | 1091 | */ |
| 1092 | if (dev->bus) |
| 1093 | blocking_notifier_call_chain(&dev->bus->p->bus_notifier, |
| 1094 | BUS_NOTIFY_ADD_DEVICE, dev); |
| 1095 | |
Cornelia Huck | 83b5fb4c | 2007-03-29 11:12:11 +0200 | [diff] [blame] | 1096 | kobject_uevent(&dev->kobj, KOBJ_ADD); |
Alan Stern | 2023c61 | 2009-07-30 15:27:18 -0400 | [diff] [blame] | 1097 | bus_probe_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | if (parent) |
Greg Kroah-Hartman | f791b8c | 2008-12-16 12:24:56 -0800 | [diff] [blame] | 1099 | klist_add_tail(&dev->p->knode_parent, |
| 1100 | &parent->p->klist_children); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | |
Greg Kroah-Hartman | 5d9fd16 | 2006-06-22 17:17:32 -0700 | [diff] [blame] | 1102 | if (dev->class) { |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 1103 | mutex_lock(&dev->class->p->mutex); |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 1104 | /* tie the class to the device */ |
Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 1105 | klist_add_tail(&dev->knode_class, |
Kay Sievers | 6b6e39a | 2010-11-15 23:13:18 +0100 | [diff] [blame] | 1106 | &dev->class->p->klist_devices); |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 1107 | |
| 1108 | /* notify any interfaces that the device is here */ |
Greg Kroah-Hartman | 184f1f7 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 1109 | list_for_each_entry(class_intf, |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 1110 | &dev->class->p->interfaces, node) |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 1111 | if (class_intf->add_dev) |
| 1112 | class_intf->add_dev(dev, class_intf); |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 1113 | mutex_unlock(&dev->class->p->mutex); |
Greg Kroah-Hartman | 5d9fd16 | 2006-06-22 17:17:32 -0700 | [diff] [blame] | 1114 | } |
Greg Kroah-Hartman | c906a48 | 2008-05-30 10:45:12 -0700 | [diff] [blame] | 1115 | done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | put_device(dev); |
| 1117 | return error; |
Alan Stern | 3b98aea | 2008-08-07 13:06:12 -0400 | [diff] [blame] | 1118 | DPMError: |
Rafael J. Wysocki | 57eee3d | 2008-03-12 00:59:38 +0100 | [diff] [blame] | 1119 | bus_remove_device(dev); |
| 1120 | BusError: |
James Simmons | 82f0cf9 | 2007-02-21 17:44:51 +0000 | [diff] [blame] | 1121 | device_remove_attrs(dev); |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 1122 | AttrsError: |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 1123 | device_remove_class_symlinks(dev); |
| 1124 | SymlinkError: |
Tejun Heo | ad6a1e1 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 1125 | if (MAJOR(dev->devt)) |
Kay Sievers | ad72956 | 2009-10-28 19:51:37 +0100 | [diff] [blame] | 1126 | devtmpfs_delete_node(dev); |
| 1127 | if (MAJOR(dev->devt)) |
Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 1128 | device_remove_sys_dev_entry(dev); |
| 1129 | devtattrError: |
| 1130 | if (MAJOR(dev->devt)) |
Tejun Heo | ad6a1e1 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 1131 | device_remove_file(dev, &devt_attr); |
Cornelia Huck | a306eea | 2006-09-22 11:37:13 +0200 | [diff] [blame] | 1132 | ueventattrError: |
Tejun Heo | ad6a1e1 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 1133 | device_remove_file(dev, &uevent_attr); |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1134 | attrError: |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 1135 | kobject_uevent(&dev->kobj, KOBJ_REMOVE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | kobject_del(&dev->kobj); |
| 1137 | Error: |
Cornelia Huck | 63b6971 | 2008-01-21 16:09:44 +0100 | [diff] [blame] | 1138 | cleanup_device_parent(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | if (parent) |
| 1140 | put_device(parent); |
Kay Sievers | 5c8563d | 2009-05-28 14:24:07 -0700 | [diff] [blame] | 1141 | name_error: |
| 1142 | kfree(dev->p); |
| 1143 | dev->p = NULL; |
Greg Kroah-Hartman | c906a48 | 2008-05-30 10:45:12 -0700 | [diff] [blame] | 1144 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | } |
| 1146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1148 | * device_register - register a device with the system. |
| 1149 | * @dev: pointer to the device structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1151 | * This happens in two clean steps - initialize the device |
| 1152 | * and add it to the system. The two steps can be called |
| 1153 | * separately, but this is the easiest and most common. |
| 1154 | * I.e. you should only call the two helpers separately if |
| 1155 | * have a clearly defined need to use and refcount the device |
| 1156 | * before it is added to the hierarchy. |
Cornelia Huck | 5739411 | 2008-09-03 18:26:40 +0200 | [diff] [blame] | 1157 | * |
Alan Stern | b10d5ef | 2012-01-17 11:39:00 -0500 | [diff] [blame] | 1158 | * For more information, see the kerneldoc for device_initialize() |
| 1159 | * and device_add(). |
| 1160 | * |
Cornelia Huck | 5739411 | 2008-09-03 18:26:40 +0200 | [diff] [blame] | 1161 | * NOTE: _Never_ directly free @dev after calling this function, even |
| 1162 | * if it returned an error! Always use put_device() to give up the |
| 1163 | * reference initialized in this function instead. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | int device_register(struct device *dev) |
| 1166 | { |
| 1167 | device_initialize(dev); |
| 1168 | return device_add(dev); |
| 1169 | } |
| 1170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1172 | * get_device - increment reference count for device. |
| 1173 | * @dev: device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1175 | * This simply forwards the call to kobject_get(), though |
| 1176 | * we do take care to provide for the case that we get a NULL |
| 1177 | * pointer passed in. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1179 | struct device *get_device(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | { |
Lars-Peter Clausen | b0d1f80 | 2012-07-03 18:49:36 +0200 | [diff] [blame] | 1181 | return dev ? kobj_to_dev(kobject_get(&dev->kobj)) : NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | } |
| 1183 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1185 | * put_device - decrement reference count. |
| 1186 | * @dev: device in question. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1188 | void put_device(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | { |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1190 | /* might_sleep(); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | if (dev) |
| 1192 | kobject_put(&dev->kobj); |
| 1193 | } |
| 1194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1196 | * device_del - delete device from system. |
| 1197 | * @dev: device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1199 | * This is the first part of the device unregistration |
| 1200 | * sequence. This removes the device from the lists we control |
| 1201 | * from here, has it removed from the other driver model |
| 1202 | * subsystems it was added to in device_add(), and removes it |
| 1203 | * from the kobject hierarchy. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1205 | * NOTE: this should be called manually _iff_ device_add() was |
| 1206 | * also called manually. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1208 | void device_del(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1210 | struct device *parent = dev->parent; |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 1211 | struct class_interface *class_intf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | |
Alan Stern | ec0676ee | 2008-12-05 14:10:31 -0500 | [diff] [blame] | 1213 | /* Notify clients of device removal. This call must come |
| 1214 | * before dpm_sysfs_remove(). |
| 1215 | */ |
| 1216 | if (dev->bus) |
| 1217 | blocking_notifier_call_chain(&dev->bus->p->bus_notifier, |
| 1218 | BUS_NOTIFY_DEL_DEVICE, dev); |
Alan Stern | 3b98aea | 2008-08-07 13:06:12 -0400 | [diff] [blame] | 1219 | dpm_sysfs_remove(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | if (parent) |
Greg Kroah-Hartman | f791b8c | 2008-12-16 12:24:56 -0800 | [diff] [blame] | 1221 | klist_del(&dev->p->knode_parent); |
Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 1222 | if (MAJOR(dev->devt)) { |
Kay Sievers | 2b2af54 | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 1223 | devtmpfs_delete_node(dev); |
Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 1224 | device_remove_sys_dev_entry(dev); |
Tejun Heo | ad6a1e1 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 1225 | device_remove_file(dev, &devt_attr); |
Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 1226 | } |
Kay Sievers | b9d9c82 | 2006-06-15 15:31:56 +0200 | [diff] [blame] | 1227 | if (dev->class) { |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 1228 | device_remove_class_symlinks(dev); |
Kay Sievers | 99ef3ef | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 1229 | |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 1230 | mutex_lock(&dev->class->p->mutex); |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 1231 | /* notify any interfaces that the device is now gone */ |
Greg Kroah-Hartman | 184f1f7 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 1232 | list_for_each_entry(class_intf, |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 1233 | &dev->class->p->interfaces, node) |
Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 1234 | if (class_intf->remove_dev) |
| 1235 | class_intf->remove_dev(dev, class_intf); |
| 1236 | /* remove the device from the class list */ |
Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 1237 | klist_del(&dev->knode_class); |
Kay Sievers | ca22e56 | 2011-12-14 14:29:38 -0800 | [diff] [blame] | 1238 | mutex_unlock(&dev->class->p->mutex); |
Kay Sievers | b9d9c82 | 2006-06-15 15:31:56 +0200 | [diff] [blame] | 1239 | } |
Tejun Heo | ad6a1e1 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 1240 | device_remove_file(dev, &uevent_attr); |
Greg Kroah-Hartman | 2620efe | 2006-06-28 16:19:58 -0700 | [diff] [blame] | 1241 | device_remove_attrs(dev); |
Benjamin Herrenschmidt | 2895353 | 2006-11-08 19:46:14 -0800 | [diff] [blame] | 1242 | bus_remove_device(dev); |
LongX Zhang | 4b6d1f12 | 2012-10-25 00:21:28 +0200 | [diff] [blame] | 1243 | device_pm_remove(dev); |
Grant Likely | d1c3414 | 2012-03-05 08:47:41 -0700 | [diff] [blame] | 1244 | driver_deferred_probe_del(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | |
| 1246 | /* Notify the platform of the removal, in case they |
| 1247 | * need to do anything... |
| 1248 | */ |
| 1249 | if (platform_notify_remove) |
| 1250 | platform_notify_remove(dev); |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 1251 | kobject_uevent(&dev->kobj, KOBJ_REMOVE); |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 1252 | cleanup_device_parent(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | kobject_del(&dev->kobj); |
Kay Sievers | da231fd | 2007-11-21 17:29:15 +0100 | [diff] [blame] | 1254 | put_device(parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | } |
| 1256 | |
| 1257 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1258 | * device_unregister - unregister device from system. |
| 1259 | * @dev: device going away. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1261 | * We do this in two parts, like we do device_register(). First, |
| 1262 | * we remove it from all the subsystems with device_del(), then |
| 1263 | * we decrement the reference count via put_device(). If that |
| 1264 | * is the final reference count, the device will be cleaned up |
| 1265 | * via device_release() above. Otherwise, the structure will |
| 1266 | * stick around until the final reference to the device is dropped. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1268 | void device_unregister(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | { |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 1270 | pr_debug("device: '%s': %s\n", dev_name(dev), __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | device_del(dev); |
| 1272 | put_device(dev); |
| 1273 | } |
| 1274 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1275 | static struct device *next_device(struct klist_iter *i) |
mochel@digitalimplant.org | 3623957 | 2005-03-24 19:08:30 -0800 | [diff] [blame] | 1276 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1277 | struct klist_node *n = klist_next(i); |
Greg Kroah-Hartman | f791b8c | 2008-12-16 12:24:56 -0800 | [diff] [blame] | 1278 | struct device *dev = NULL; |
| 1279 | struct device_private *p; |
| 1280 | |
| 1281 | if (n) { |
| 1282 | p = to_device_private_parent(n); |
| 1283 | dev = p->device; |
| 1284 | } |
| 1285 | return dev; |
mochel@digitalimplant.org | 3623957 | 2005-03-24 19:08:30 -0800 | [diff] [blame] | 1286 | } |
| 1287 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | /** |
Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 1289 | * device_get_devnode - path of device node file |
Kay Sievers | 6fcf53a | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 1290 | * @dev: device |
Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 1291 | * @mode: returned file access mode |
Kay Sievers | 3c2670e | 2013-04-06 09:56:00 -0700 | [diff] [blame] | 1292 | * @uid: returned file owner |
| 1293 | * @gid: returned file group |
Kay Sievers | 6fcf53a | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 1294 | * @tmp: possibly allocated string |
| 1295 | * |
| 1296 | * Return the relative path of a possible device node. |
| 1297 | * Non-default names may need to allocate a memory to compose |
| 1298 | * a name. This memory is returned in tmp and needs to be |
| 1299 | * freed by the caller. |
| 1300 | */ |
Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 1301 | const char *device_get_devnode(struct device *dev, |
Greg Kroah-Hartman | 4e4098a | 2013-04-11 11:43:29 -0700 | [diff] [blame] | 1302 | umode_t *mode, kuid_t *uid, kgid_t *gid, |
Kay Sievers | 3c2670e | 2013-04-06 09:56:00 -0700 | [diff] [blame] | 1303 | const char **tmp) |
Kay Sievers | 6fcf53a | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 1304 | { |
| 1305 | char *s; |
| 1306 | |
| 1307 | *tmp = NULL; |
| 1308 | |
| 1309 | /* the device type may provide a specific name */ |
Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 1310 | if (dev->type && dev->type->devnode) |
Kay Sievers | 3c2670e | 2013-04-06 09:56:00 -0700 | [diff] [blame] | 1311 | *tmp = dev->type->devnode(dev, mode, uid, gid); |
Kay Sievers | 6fcf53a | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 1312 | if (*tmp) |
| 1313 | return *tmp; |
| 1314 | |
| 1315 | /* the class may provide a specific name */ |
Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 1316 | if (dev->class && dev->class->devnode) |
| 1317 | *tmp = dev->class->devnode(dev, mode); |
Kay Sievers | 6fcf53a | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 1318 | if (*tmp) |
| 1319 | return *tmp; |
| 1320 | |
| 1321 | /* return name without allocation, tmp == NULL */ |
| 1322 | if (strchr(dev_name(dev), '!') == NULL) |
| 1323 | return dev_name(dev); |
| 1324 | |
| 1325 | /* replace '!' in the name with '/' */ |
| 1326 | *tmp = kstrdup(dev_name(dev), GFP_KERNEL); |
| 1327 | if (!*tmp) |
| 1328 | return NULL; |
| 1329 | while ((s = strchr(*tmp, '!'))) |
| 1330 | s[0] = '/'; |
| 1331 | return *tmp; |
| 1332 | } |
| 1333 | |
| 1334 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1335 | * device_for_each_child - device child iterator. |
| 1336 | * @parent: parent struct device. |
| 1337 | * @data: data for the callback. |
| 1338 | * @fn: function to be called for each device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1340 | * Iterate over @parent's child devices, and call @fn for each, |
| 1341 | * passing it @data. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1343 | * We check the return of @fn each time. If it returns anything |
| 1344 | * other than 0, we break out and return that value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1346 | int device_for_each_child(struct device *parent, void *data, |
| 1347 | int (*fn)(struct device *dev, void *data)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | { |
mochel@digitalimplant.org | 3623957 | 2005-03-24 19:08:30 -0800 | [diff] [blame] | 1349 | struct klist_iter i; |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1350 | struct device *child; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | int error = 0; |
| 1352 | |
Greg Kroah-Hartman | 014c90db | 2009-04-15 16:00:12 -0700 | [diff] [blame] | 1353 | if (!parent->p) |
| 1354 | return 0; |
| 1355 | |
Greg Kroah-Hartman | f791b8c | 2008-12-16 12:24:56 -0800 | [diff] [blame] | 1356 | klist_iter_init(&parent->p->klist_children, &i); |
mochel@digitalimplant.org | 3623957 | 2005-03-24 19:08:30 -0800 | [diff] [blame] | 1357 | while ((child = next_device(&i)) && !error) |
| 1358 | error = fn(child, data); |
| 1359 | klist_iter_exit(&i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | return error; |
| 1361 | } |
| 1362 | |
Cornelia Huck | 5ab6998 | 2006-11-16 15:42:07 +0100 | [diff] [blame] | 1363 | /** |
| 1364 | * device_find_child - device iterator for locating a particular device. |
| 1365 | * @parent: parent struct device |
| 1366 | * @data: Data to pass to match function |
| 1367 | * @match: Callback function to check device |
| 1368 | * |
| 1369 | * This is similar to the device_for_each_child() function above, but it |
| 1370 | * returns a reference to a device that is 'found' for later use, as |
| 1371 | * determined by the @match callback. |
| 1372 | * |
| 1373 | * The callback should return 0 if the device doesn't match and non-zero |
| 1374 | * if it does. If the callback returns non-zero and a reference to the |
| 1375 | * current device can be obtained, this function will return to the caller |
| 1376 | * and not iterate over any more devices. |
| 1377 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1378 | struct device *device_find_child(struct device *parent, void *data, |
| 1379 | int (*match)(struct device *dev, void *data)) |
Cornelia Huck | 5ab6998 | 2006-11-16 15:42:07 +0100 | [diff] [blame] | 1380 | { |
| 1381 | struct klist_iter i; |
| 1382 | struct device *child; |
| 1383 | |
| 1384 | if (!parent) |
| 1385 | return NULL; |
| 1386 | |
Greg Kroah-Hartman | f791b8c | 2008-12-16 12:24:56 -0800 | [diff] [blame] | 1387 | klist_iter_init(&parent->p->klist_children, &i); |
Cornelia Huck | 5ab6998 | 2006-11-16 15:42:07 +0100 | [diff] [blame] | 1388 | while ((child = next_device(&i))) |
| 1389 | if (match(child, data) && get_device(child)) |
| 1390 | break; |
| 1391 | klist_iter_exit(&i); |
| 1392 | return child; |
| 1393 | } |
| 1394 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | int __init devices_init(void) |
| 1396 | { |
Greg Kroah-Hartman | 881c6cfd | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 1397 | devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL); |
| 1398 | if (!devices_kset) |
| 1399 | return -ENOMEM; |
Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 1400 | dev_kobj = kobject_create_and_add("dev", NULL); |
| 1401 | if (!dev_kobj) |
| 1402 | goto dev_kobj_err; |
| 1403 | sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj); |
| 1404 | if (!sysfs_dev_block_kobj) |
| 1405 | goto block_kobj_err; |
| 1406 | sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj); |
| 1407 | if (!sysfs_dev_char_kobj) |
| 1408 | goto char_kobj_err; |
| 1409 | |
Greg Kroah-Hartman | 881c6cfd | 2007-11-01 09:29:06 -0600 | [diff] [blame] | 1410 | return 0; |
Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 1411 | |
| 1412 | char_kobj_err: |
| 1413 | kobject_put(sysfs_dev_block_kobj); |
| 1414 | block_kobj_err: |
| 1415 | kobject_put(dev_kobj); |
| 1416 | dev_kobj_err: |
| 1417 | kset_unregister(devices_kset); |
| 1418 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | } |
| 1420 | |
| 1421 | EXPORT_SYMBOL_GPL(device_for_each_child); |
Cornelia Huck | 5ab6998 | 2006-11-16 15:42:07 +0100 | [diff] [blame] | 1422 | EXPORT_SYMBOL_GPL(device_find_child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | |
| 1424 | EXPORT_SYMBOL_GPL(device_initialize); |
| 1425 | EXPORT_SYMBOL_GPL(device_add); |
| 1426 | EXPORT_SYMBOL_GPL(device_register); |
| 1427 | |
| 1428 | EXPORT_SYMBOL_GPL(device_del); |
| 1429 | EXPORT_SYMBOL_GPL(device_unregister); |
| 1430 | EXPORT_SYMBOL_GPL(get_device); |
| 1431 | EXPORT_SYMBOL_GPL(put_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | |
| 1433 | EXPORT_SYMBOL_GPL(device_create_file); |
| 1434 | EXPORT_SYMBOL_GPL(device_remove_file); |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1435 | |
Karthigan Srinivasan | 7f100d1 | 2011-04-18 16:16:52 -0500 | [diff] [blame] | 1436 | struct root_device { |
Mark McLoughlin | 0aa0dc4 | 2008-12-15 12:58:26 +0000 | [diff] [blame] | 1437 | struct device dev; |
| 1438 | struct module *owner; |
| 1439 | }; |
| 1440 | |
Josh Triplett | 9305842 | 2012-11-18 21:27:55 -0800 | [diff] [blame] | 1441 | static inline struct root_device *to_root_device(struct device *d) |
Ferenc Wagner | 481e207 | 2011-01-07 15:17:47 +0100 | [diff] [blame] | 1442 | { |
| 1443 | return container_of(d, struct root_device, dev); |
| 1444 | } |
Mark McLoughlin | 0aa0dc4 | 2008-12-15 12:58:26 +0000 | [diff] [blame] | 1445 | |
| 1446 | static void root_device_release(struct device *dev) |
| 1447 | { |
| 1448 | kfree(to_root_device(dev)); |
| 1449 | } |
| 1450 | |
| 1451 | /** |
| 1452 | * __root_device_register - allocate and register a root device |
| 1453 | * @name: root device name |
| 1454 | * @owner: owner module of the root device, usually THIS_MODULE |
| 1455 | * |
| 1456 | * This function allocates a root device and registers it |
| 1457 | * using device_register(). In order to free the returned |
| 1458 | * device, use root_device_unregister(). |
| 1459 | * |
| 1460 | * Root devices are dummy devices which allow other devices |
| 1461 | * to be grouped under /sys/devices. Use this function to |
| 1462 | * allocate a root device and then use it as the parent of |
| 1463 | * any device which should appear under /sys/devices/{name} |
| 1464 | * |
| 1465 | * The /sys/devices/{name} directory will also contain a |
| 1466 | * 'module' symlink which points to the @owner directory |
| 1467 | * in sysfs. |
| 1468 | * |
Jani Nikula | f0eae0e | 2010-03-11 18:11:45 +0200 | [diff] [blame] | 1469 | * Returns &struct device pointer on success, or ERR_PTR() on error. |
| 1470 | * |
Mark McLoughlin | 0aa0dc4 | 2008-12-15 12:58:26 +0000 | [diff] [blame] | 1471 | * Note: You probably want to use root_device_register(). |
| 1472 | */ |
| 1473 | struct device *__root_device_register(const char *name, struct module *owner) |
| 1474 | { |
| 1475 | struct root_device *root; |
| 1476 | int err = -ENOMEM; |
| 1477 | |
| 1478 | root = kzalloc(sizeof(struct root_device), GFP_KERNEL); |
| 1479 | if (!root) |
| 1480 | return ERR_PTR(err); |
| 1481 | |
Greg Kroah-Hartman | acc0e90 | 2009-06-02 15:39:55 -0700 | [diff] [blame] | 1482 | err = dev_set_name(&root->dev, "%s", name); |
Mark McLoughlin | 0aa0dc4 | 2008-12-15 12:58:26 +0000 | [diff] [blame] | 1483 | if (err) { |
| 1484 | kfree(root); |
| 1485 | return ERR_PTR(err); |
| 1486 | } |
| 1487 | |
| 1488 | root->dev.release = root_device_release; |
| 1489 | |
| 1490 | err = device_register(&root->dev); |
| 1491 | if (err) { |
| 1492 | put_device(&root->dev); |
| 1493 | return ERR_PTR(err); |
| 1494 | } |
| 1495 | |
Christoph Egger | 1d9e882 | 2010-05-17 16:57:58 +0200 | [diff] [blame] | 1496 | #ifdef CONFIG_MODULES /* gotta find a "cleaner" way to do this */ |
Mark McLoughlin | 0aa0dc4 | 2008-12-15 12:58:26 +0000 | [diff] [blame] | 1497 | if (owner) { |
| 1498 | struct module_kobject *mk = &owner->mkobj; |
| 1499 | |
| 1500 | err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module"); |
| 1501 | if (err) { |
| 1502 | device_unregister(&root->dev); |
| 1503 | return ERR_PTR(err); |
| 1504 | } |
| 1505 | root->owner = owner; |
| 1506 | } |
| 1507 | #endif |
| 1508 | |
| 1509 | return &root->dev; |
| 1510 | } |
| 1511 | EXPORT_SYMBOL_GPL(__root_device_register); |
| 1512 | |
| 1513 | /** |
| 1514 | * root_device_unregister - unregister and free a root device |
Randy Dunlap | 7cbcf22 | 2009-01-20 16:29:13 -0800 | [diff] [blame] | 1515 | * @dev: device going away |
Mark McLoughlin | 0aa0dc4 | 2008-12-15 12:58:26 +0000 | [diff] [blame] | 1516 | * |
| 1517 | * This function unregisters and cleans up a device that was created by |
| 1518 | * root_device_register(). |
| 1519 | */ |
| 1520 | void root_device_unregister(struct device *dev) |
| 1521 | { |
| 1522 | struct root_device *root = to_root_device(dev); |
| 1523 | |
| 1524 | if (root->owner) |
| 1525 | sysfs_remove_link(&root->dev.kobj, "module"); |
| 1526 | |
| 1527 | device_unregister(dev); |
| 1528 | } |
| 1529 | EXPORT_SYMBOL_GPL(root_device_unregister); |
| 1530 | |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1531 | |
| 1532 | static void device_create_release(struct device *dev) |
| 1533 | { |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 1534 | pr_debug("device: '%s': %s\n", dev_name(dev), __func__); |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1535 | kfree(dev); |
| 1536 | } |
| 1537 | |
| 1538 | /** |
Greg Kroah-Hartman | 8882b39 | 2008-05-15 13:44:08 -0700 | [diff] [blame] | 1539 | * device_create_vargs - creates a device and registers it with sysfs |
| 1540 | * @class: pointer to the struct class that this device should be registered to |
| 1541 | * @parent: pointer to the parent struct device of this new device, if any |
| 1542 | * @devt: the dev_t for the char device to be added |
| 1543 | * @drvdata: the data to be added to the device for callbacks |
| 1544 | * @fmt: string for the device's name |
| 1545 | * @args: va_list for the device's name |
| 1546 | * |
| 1547 | * This function can be used by char device classes. A struct device |
| 1548 | * will be created in sysfs, registered to the specified class. |
| 1549 | * |
| 1550 | * A "dev" file will be created, showing the dev_t for the device, if |
| 1551 | * the dev_t is not 0,0. |
| 1552 | * If a pointer to a parent struct device is passed in, the newly created |
| 1553 | * struct device will be a child of that device in sysfs. |
| 1554 | * The pointer to the struct device will be returned from the call. |
| 1555 | * Any further sysfs files that might be required can be created using this |
| 1556 | * pointer. |
| 1557 | * |
Jani Nikula | f0eae0e | 2010-03-11 18:11:45 +0200 | [diff] [blame] | 1558 | * Returns &struct device pointer on success, or ERR_PTR() on error. |
| 1559 | * |
Greg Kroah-Hartman | 8882b39 | 2008-05-15 13:44:08 -0700 | [diff] [blame] | 1560 | * Note: the struct class passed to this function must have previously |
| 1561 | * been created with a call to class_create(). |
| 1562 | */ |
| 1563 | struct device *device_create_vargs(struct class *class, struct device *parent, |
| 1564 | dev_t devt, void *drvdata, const char *fmt, |
| 1565 | va_list args) |
| 1566 | { |
| 1567 | struct device *dev = NULL; |
| 1568 | int retval = -ENODEV; |
| 1569 | |
| 1570 | if (class == NULL || IS_ERR(class)) |
| 1571 | goto error; |
| 1572 | |
| 1573 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
| 1574 | if (!dev) { |
| 1575 | retval = -ENOMEM; |
| 1576 | goto error; |
| 1577 | } |
| 1578 | |
| 1579 | dev->devt = devt; |
| 1580 | dev->class = class; |
| 1581 | dev->parent = parent; |
| 1582 | dev->release = device_create_release; |
| 1583 | dev_set_drvdata(dev, drvdata); |
| 1584 | |
Kay Sievers | 1fa5ae8 | 2009-01-25 15:17:37 +0100 | [diff] [blame] | 1585 | retval = kobject_set_name_vargs(&dev->kobj, fmt, args); |
| 1586 | if (retval) |
| 1587 | goto error; |
| 1588 | |
Greg Kroah-Hartman | 8882b39 | 2008-05-15 13:44:08 -0700 | [diff] [blame] | 1589 | retval = device_register(dev); |
| 1590 | if (retval) |
| 1591 | goto error; |
| 1592 | |
| 1593 | return dev; |
| 1594 | |
| 1595 | error: |
Cornelia Huck | 286661b | 2008-09-03 18:26:41 +0200 | [diff] [blame] | 1596 | put_device(dev); |
Greg Kroah-Hartman | 8882b39 | 2008-05-15 13:44:08 -0700 | [diff] [blame] | 1597 | return ERR_PTR(retval); |
| 1598 | } |
| 1599 | EXPORT_SYMBOL_GPL(device_create_vargs); |
| 1600 | |
| 1601 | /** |
Greg Kroah-Hartman | 4e10673 | 2008-07-21 20:03:34 -0700 | [diff] [blame] | 1602 | * device_create - creates a device and registers it with sysfs |
Greg Kroah-Hartman | 8882b39 | 2008-05-15 13:44:08 -0700 | [diff] [blame] | 1603 | * @class: pointer to the struct class that this device should be registered to |
| 1604 | * @parent: pointer to the parent struct device of this new device, if any |
| 1605 | * @devt: the dev_t for the char device to be added |
| 1606 | * @drvdata: the data to be added to the device for callbacks |
| 1607 | * @fmt: string for the device's name |
| 1608 | * |
| 1609 | * This function can be used by char device classes. A struct device |
| 1610 | * will be created in sysfs, registered to the specified class. |
| 1611 | * |
| 1612 | * A "dev" file will be created, showing the dev_t for the device, if |
| 1613 | * the dev_t is not 0,0. |
| 1614 | * If a pointer to a parent struct device is passed in, the newly created |
| 1615 | * struct device will be a child of that device in sysfs. |
| 1616 | * The pointer to the struct device will be returned from the call. |
| 1617 | * Any further sysfs files that might be required can be created using this |
| 1618 | * pointer. |
| 1619 | * |
Jani Nikula | f0eae0e | 2010-03-11 18:11:45 +0200 | [diff] [blame] | 1620 | * Returns &struct device pointer on success, or ERR_PTR() on error. |
| 1621 | * |
Greg Kroah-Hartman | 8882b39 | 2008-05-15 13:44:08 -0700 | [diff] [blame] | 1622 | * Note: the struct class passed to this function must have previously |
| 1623 | * been created with a call to class_create(). |
| 1624 | */ |
Greg Kroah-Hartman | 4e10673 | 2008-07-21 20:03:34 -0700 | [diff] [blame] | 1625 | struct device *device_create(struct class *class, struct device *parent, |
| 1626 | dev_t devt, void *drvdata, const char *fmt, ...) |
Greg Kroah-Hartman | 8882b39 | 2008-05-15 13:44:08 -0700 | [diff] [blame] | 1627 | { |
| 1628 | va_list vargs; |
| 1629 | struct device *dev; |
| 1630 | |
| 1631 | va_start(vargs, fmt); |
| 1632 | dev = device_create_vargs(class, parent, devt, drvdata, fmt, vargs); |
| 1633 | va_end(vargs); |
| 1634 | return dev; |
| 1635 | } |
Greg Kroah-Hartman | 4e10673 | 2008-07-21 20:03:34 -0700 | [diff] [blame] | 1636 | EXPORT_SYMBOL_GPL(device_create); |
Greg Kroah-Hartman | 8882b39 | 2008-05-15 13:44:08 -0700 | [diff] [blame] | 1637 | |
Michał Mirosław | 9f3b795 | 2013-02-01 20:40:17 +0100 | [diff] [blame] | 1638 | static int __match_devt(struct device *dev, const void *data) |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1639 | { |
Michał Mirosław | 9f3b795 | 2013-02-01 20:40:17 +0100 | [diff] [blame] | 1640 | const dev_t *devt = data; |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1641 | |
Dave Young | cd35449 | 2008-01-28 16:56:11 +0800 | [diff] [blame] | 1642 | return dev->devt == *devt; |
Rafael J. Wysocki | 775b64d | 2008-01-12 20:40:46 +0100 | [diff] [blame] | 1643 | } |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1644 | |
Rafael J. Wysocki | 775b64d | 2008-01-12 20:40:46 +0100 | [diff] [blame] | 1645 | /** |
| 1646 | * device_destroy - removes a device that was created with device_create() |
| 1647 | * @class: pointer to the struct class that this device was registered with |
| 1648 | * @devt: the dev_t of the device that was previously registered |
| 1649 | * |
| 1650 | * This call unregisters and cleans up a device that was created with a |
| 1651 | * call to device_create(). |
| 1652 | */ |
| 1653 | void device_destroy(struct class *class, dev_t devt) |
| 1654 | { |
| 1655 | struct device *dev; |
| 1656 | |
Greg Kroah-Hartman | 695794a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 1657 | dev = class_find_device(class, NULL, &devt, __match_devt); |
Dave Young | cd35449 | 2008-01-28 16:56:11 +0800 | [diff] [blame] | 1658 | if (dev) { |
| 1659 | put_device(dev); |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1660 | device_unregister(dev); |
Dave Young | cd35449 | 2008-01-28 16:56:11 +0800 | [diff] [blame] | 1661 | } |
Greg Kroah-Hartman | 23681e4 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 1662 | } |
| 1663 | EXPORT_SYMBOL_GPL(device_destroy); |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1664 | |
| 1665 | /** |
| 1666 | * device_rename - renames a device |
| 1667 | * @dev: the pointer to the struct device to be renamed |
| 1668 | * @new_name: the new name of the device |
Eric W. Biederman | 030c1d2 | 2008-05-08 14:41:00 -0700 | [diff] [blame] | 1669 | * |
| 1670 | * It is the responsibility of the caller to provide mutual |
| 1671 | * exclusion between two different calls of device_rename |
| 1672 | * on the same device to ensure that new_name is valid and |
| 1673 | * won't conflict with other devices. |
Michael Ellerman | c6c0ac6 | 2010-11-25 09:44:07 +1100 | [diff] [blame] | 1674 | * |
Timur Tabi | a546251 | 2010-12-13 14:08:52 -0600 | [diff] [blame] | 1675 | * Note: Don't call this function. Currently, the networking layer calls this |
| 1676 | * function, but that will change. The following text from Kay Sievers offers |
| 1677 | * some insight: |
| 1678 | * |
| 1679 | * Renaming devices is racy at many levels, symlinks and other stuff are not |
| 1680 | * replaced atomically, and you get a "move" uevent, but it's not easy to |
| 1681 | * connect the event to the old and new device. Device nodes are not renamed at |
| 1682 | * all, there isn't even support for that in the kernel now. |
| 1683 | * |
| 1684 | * In the meantime, during renaming, your target name might be taken by another |
| 1685 | * driver, creating conflicts. Or the old name is taken directly after you |
| 1686 | * renamed it -- then you get events for the same DEVPATH, before you even see |
| 1687 | * the "move" event. It's just a mess, and nothing new should ever rely on |
| 1688 | * kernel device renaming. Besides that, it's not even implemented now for |
| 1689 | * other things than (driver-core wise very simple) network devices. |
| 1690 | * |
| 1691 | * We are currently about to change network renaming in udev to completely |
| 1692 | * disallow renaming of devices in the same namespace as the kernel uses, |
| 1693 | * because we can't solve the problems properly, that arise with swapping names |
| 1694 | * of multiple interfaces without races. Means, renaming of eth[0-9]* will only |
| 1695 | * be allowed to some other name than eth[0-9]*, for the aforementioned |
| 1696 | * reasons. |
| 1697 | * |
| 1698 | * Make up a "real" name in the driver before you register anything, or add |
| 1699 | * some other attributes for userspace to find the device, or use udev to add |
| 1700 | * symlinks -- but never rename kernel devices later, it's a complete mess. We |
| 1701 | * don't even want to get into that and try to implement the missing pieces in |
| 1702 | * the core. We really have other pieces to fix in the driver core mess. :) |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1703 | */ |
Johannes Berg | 6937e8f | 2010-08-05 17:38:18 +0200 | [diff] [blame] | 1704 | int device_rename(struct device *dev, const char *new_name) |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1705 | { |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 1706 | char *old_device_name = NULL; |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1707 | int error; |
| 1708 | |
| 1709 | dev = get_device(dev); |
| 1710 | if (!dev) |
| 1711 | return -EINVAL; |
| 1712 | |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 1713 | pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev), |
Harvey Harrison | 2b3a302 | 2008-03-04 16:41:05 -0800 | [diff] [blame] | 1714 | __func__, new_name); |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1715 | |
Kay Sievers | 1fa5ae8 | 2009-01-25 15:17:37 +0100 | [diff] [blame] | 1716 | old_device_name = kstrdup(dev_name(dev), GFP_KERNEL); |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 1717 | if (!old_device_name) { |
| 1718 | error = -ENOMEM; |
| 1719 | goto out; |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1720 | } |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1721 | |
Eric W. Biederman | f349cf3 | 2010-03-30 11:31:29 -0700 | [diff] [blame] | 1722 | if (dev->class) { |
Kay Sievers | 6b6e39a | 2010-11-15 23:13:18 +0100 | [diff] [blame] | 1723 | error = sysfs_rename_link(&dev->class->p->subsys.kobj, |
Eric W. Biederman | f349cf3 | 2010-03-30 11:31:29 -0700 | [diff] [blame] | 1724 | &dev->kobj, old_device_name, new_name); |
| 1725 | if (error) |
| 1726 | goto out; |
| 1727 | } |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 1728 | |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1729 | error = kobject_rename(&dev->kobj, new_name); |
Kay Sievers | 1fa5ae8 | 2009-01-25 15:17:37 +0100 | [diff] [blame] | 1730 | if (error) |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 1731 | goto out; |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1732 | |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 1733 | out: |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1734 | put_device(dev); |
| 1735 | |
Cornelia Huck | 2ee97ca | 2007-07-18 01:43:47 -0700 | [diff] [blame] | 1736 | kfree(old_device_name); |
Greg Kroah-Hartman | a2de48c | 2006-07-03 14:31:12 -0700 | [diff] [blame] | 1737 | |
| 1738 | return error; |
| 1739 | } |
Johannes Berg | a2807db | 2007-02-28 12:38:31 +0100 | [diff] [blame] | 1740 | EXPORT_SYMBOL_GPL(device_rename); |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1741 | |
| 1742 | static int device_move_class_links(struct device *dev, |
| 1743 | struct device *old_parent, |
| 1744 | struct device *new_parent) |
| 1745 | { |
Greg Kroah-Hartman | f7f3461 | 2007-03-06 12:55:53 -0800 | [diff] [blame] | 1746 | int error = 0; |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1747 | |
Greg Kroah-Hartman | f7f3461 | 2007-03-06 12:55:53 -0800 | [diff] [blame] | 1748 | if (old_parent) |
| 1749 | sysfs_remove_link(&dev->kobj, "device"); |
| 1750 | if (new_parent) |
| 1751 | error = sysfs_create_link(&dev->kobj, &new_parent->kobj, |
| 1752 | "device"); |
| 1753 | return error; |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1754 | } |
| 1755 | |
| 1756 | /** |
| 1757 | * device_move - moves a device to a new parent |
| 1758 | * @dev: the pointer to the struct device to be moved |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 1759 | * @new_parent: the new parent of the device (can by NULL) |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 1760 | * @dpm_order: how to reorder the dpm_list |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1761 | */ |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 1762 | int device_move(struct device *dev, struct device *new_parent, |
| 1763 | enum dpm_order dpm_order) |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1764 | { |
| 1765 | int error; |
| 1766 | struct device *old_parent; |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 1767 | struct kobject *new_parent_kobj; |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1768 | |
| 1769 | dev = get_device(dev); |
| 1770 | if (!dev) |
| 1771 | return -EINVAL; |
| 1772 | |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 1773 | device_pm_lock(); |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1774 | new_parent = get_device(new_parent); |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 1775 | new_parent_kobj = get_device_parent(dev, new_parent); |
Cornelia Huck | 63b6971 | 2008-01-21 16:09:44 +0100 | [diff] [blame] | 1776 | |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 1777 | pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev), |
| 1778 | __func__, new_parent ? dev_name(new_parent) : "<NULL>"); |
Cornelia Huck | c744aeae | 2007-01-08 20:16:44 +0100 | [diff] [blame] | 1779 | error = kobject_move(&dev->kobj, new_parent_kobj); |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1780 | if (error) { |
Cornelia Huck | 63b6971 | 2008-01-21 16:09:44 +0100 | [diff] [blame] | 1781 | cleanup_glue_dir(dev, new_parent_kobj); |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1782 | put_device(new_parent); |
| 1783 | goto out; |
| 1784 | } |
| 1785 | old_parent = dev->parent; |
| 1786 | dev->parent = new_parent; |
| 1787 | if (old_parent) |
Greg Kroah-Hartman | f791b8c | 2008-12-16 12:24:56 -0800 | [diff] [blame] | 1788 | klist_remove(&dev->p->knode_parent); |
Yinghai Lu | 0d358f2 | 2008-02-19 03:20:41 -0800 | [diff] [blame] | 1789 | if (new_parent) { |
Greg Kroah-Hartman | f791b8c | 2008-12-16 12:24:56 -0800 | [diff] [blame] | 1790 | klist_add_tail(&dev->p->knode_parent, |
| 1791 | &new_parent->p->klist_children); |
Yinghai Lu | 0d358f2 | 2008-02-19 03:20:41 -0800 | [diff] [blame] | 1792 | set_dev_node(dev, dev_to_node(new_parent)); |
| 1793 | } |
| 1794 | |
Rabin Vincent | bdd4034 | 2012-04-23 09:16:36 +0200 | [diff] [blame] | 1795 | if (dev->class) { |
| 1796 | error = device_move_class_links(dev, old_parent, new_parent); |
| 1797 | if (error) { |
| 1798 | /* We ignore errors on cleanup since we're hosed anyway... */ |
| 1799 | device_move_class_links(dev, new_parent, old_parent); |
| 1800 | if (!kobject_move(&dev->kobj, &old_parent->kobj)) { |
| 1801 | if (new_parent) |
| 1802 | klist_remove(&dev->p->knode_parent); |
| 1803 | dev->parent = old_parent; |
| 1804 | if (old_parent) { |
| 1805 | klist_add_tail(&dev->p->knode_parent, |
| 1806 | &old_parent->p->klist_children); |
| 1807 | set_dev_node(dev, dev_to_node(old_parent)); |
| 1808 | } |
Yinghai Lu | 0d358f2 | 2008-02-19 03:20:41 -0800 | [diff] [blame] | 1809 | } |
Rabin Vincent | bdd4034 | 2012-04-23 09:16:36 +0200 | [diff] [blame] | 1810 | cleanup_glue_dir(dev, new_parent_kobj); |
| 1811 | put_device(new_parent); |
| 1812 | goto out; |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1813 | } |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1814 | } |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 1815 | switch (dpm_order) { |
| 1816 | case DPM_ORDER_NONE: |
| 1817 | break; |
| 1818 | case DPM_ORDER_DEV_AFTER_PARENT: |
| 1819 | device_pm_move_after(dev, new_parent); |
| 1820 | break; |
| 1821 | case DPM_ORDER_PARENT_BEFORE_DEV: |
| 1822 | device_pm_move_before(new_parent, dev); |
| 1823 | break; |
| 1824 | case DPM_ORDER_DEV_LAST: |
| 1825 | device_pm_move_last(dev); |
| 1826 | break; |
| 1827 | } |
Rabin Vincent | bdd4034 | 2012-04-23 09:16:36 +0200 | [diff] [blame] | 1828 | |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1829 | put_device(old_parent); |
| 1830 | out: |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 1831 | device_pm_unlock(); |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1832 | put_device(dev); |
| 1833 | return error; |
| 1834 | } |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 1835 | EXPORT_SYMBOL_GPL(device_move); |
Greg Kroah-Hartman | 37b0c02 | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 1836 | |
| 1837 | /** |
| 1838 | * device_shutdown - call ->shutdown() on each device to shutdown. |
| 1839 | */ |
| 1840 | void device_shutdown(void) |
| 1841 | { |
Hugh Daschbach | 6245838 | 2010-03-22 10:36:37 -0700 | [diff] [blame] | 1842 | struct device *dev; |
Greg Kroah-Hartman | 37b0c02 | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 1843 | |
Hugh Daschbach | 6245838 | 2010-03-22 10:36:37 -0700 | [diff] [blame] | 1844 | spin_lock(&devices_kset->list_lock); |
| 1845 | /* |
| 1846 | * Walk the devices list backward, shutting down each in turn. |
| 1847 | * Beware that device unplug events may also start pulling |
| 1848 | * devices offline, even as the system is shutting down. |
| 1849 | */ |
| 1850 | while (!list_empty(&devices_kset->list)) { |
| 1851 | dev = list_entry(devices_kset->list.prev, struct device, |
| 1852 | kobj.entry); |
Ming Lei | d1c6c03 | 2012-06-22 18:01:40 +0800 | [diff] [blame] | 1853 | |
| 1854 | /* |
| 1855 | * hold reference count of device's parent to |
| 1856 | * prevent it from being freed because parent's |
| 1857 | * lock is to be held |
| 1858 | */ |
| 1859 | get_device(dev->parent); |
Hugh Daschbach | 6245838 | 2010-03-22 10:36:37 -0700 | [diff] [blame] | 1860 | get_device(dev); |
| 1861 | /* |
| 1862 | * Make sure the device is off the kset list, in the |
| 1863 | * event that dev->*->shutdown() doesn't remove it. |
| 1864 | */ |
| 1865 | list_del_init(&dev->kobj.entry); |
| 1866 | spin_unlock(&devices_kset->list_lock); |
Alan Stern | fe6b91f | 2011-12-06 23:24:52 +0100 | [diff] [blame] | 1867 | |
Ming Lei | d1c6c03 | 2012-06-22 18:01:40 +0800 | [diff] [blame] | 1868 | /* hold lock to avoid race with probe/release */ |
| 1869 | if (dev->parent) |
| 1870 | device_lock(dev->parent); |
| 1871 | device_lock(dev); |
| 1872 | |
Alan Stern | fe6b91f | 2011-12-06 23:24:52 +0100 | [diff] [blame] | 1873 | /* Don't allow any more runtime suspends */ |
| 1874 | pm_runtime_get_noresume(dev); |
| 1875 | pm_runtime_barrier(dev); |
Hugh Daschbach | 6245838 | 2010-03-22 10:36:37 -0700 | [diff] [blame] | 1876 | |
Greg Kroah-Hartman | 37b0c02 | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 1877 | if (dev->bus && dev->bus->shutdown) { |
ShuoX Liu | 0246c4f | 2012-11-23 15:14:12 +0800 | [diff] [blame] | 1878 | if (initcall_debug) |
| 1879 | dev_info(dev, "shutdown\n"); |
Greg Kroah-Hartman | 37b0c02 | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 1880 | dev->bus->shutdown(dev); |
| 1881 | } else if (dev->driver && dev->driver->shutdown) { |
ShuoX Liu | 0246c4f | 2012-11-23 15:14:12 +0800 | [diff] [blame] | 1882 | if (initcall_debug) |
| 1883 | dev_info(dev, "shutdown\n"); |
Greg Kroah-Hartman | 37b0c02 | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 1884 | dev->driver->shutdown(dev); |
| 1885 | } |
Ming Lei | d1c6c03 | 2012-06-22 18:01:40 +0800 | [diff] [blame] | 1886 | |
| 1887 | device_unlock(dev); |
| 1888 | if (dev->parent) |
| 1889 | device_unlock(dev->parent); |
| 1890 | |
Hugh Daschbach | 6245838 | 2010-03-22 10:36:37 -0700 | [diff] [blame] | 1891 | put_device(dev); |
Ming Lei | d1c6c03 | 2012-06-22 18:01:40 +0800 | [diff] [blame] | 1892 | put_device(dev->parent); |
Hugh Daschbach | 6245838 | 2010-03-22 10:36:37 -0700 | [diff] [blame] | 1893 | |
| 1894 | spin_lock(&devices_kset->list_lock); |
Greg Kroah-Hartman | 37b0c02 | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 1895 | } |
Hugh Daschbach | 6245838 | 2010-03-22 10:36:37 -0700 | [diff] [blame] | 1896 | spin_unlock(&devices_kset->list_lock); |
Shaohua Li | 401097e | 2009-05-12 13:37:57 -0700 | [diff] [blame] | 1897 | async_synchronize_full(); |
Greg Kroah-Hartman | 37b0c02 | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 1898 | } |
Joe Perches | 99bcf21 | 2010-06-27 01:02:34 +0000 | [diff] [blame] | 1899 | |
| 1900 | /* |
| 1901 | * Device logging functions |
| 1902 | */ |
| 1903 | |
| 1904 | #ifdef CONFIG_PRINTK |
Joe Perches | 666f355 | 2012-09-12 20:14:11 -0700 | [diff] [blame] | 1905 | static int |
| 1906 | create_syslog_header(const struct device *dev, char *hdr, size_t hdrlen) |
Joe Perches | 99bcf21 | 2010-06-27 01:02:34 +0000 | [diff] [blame] | 1907 | { |
Kay Sievers | c4e00da | 2012-05-03 02:29:59 +0200 | [diff] [blame] | 1908 | const char *subsys; |
Joe Perches | 798efc6 | 2012-09-12 20:11:29 -0700 | [diff] [blame] | 1909 | size_t pos = 0; |
Joe Perches | 99bcf21 | 2010-06-27 01:02:34 +0000 | [diff] [blame] | 1910 | |
Kay Sievers | c4e00da | 2012-05-03 02:29:59 +0200 | [diff] [blame] | 1911 | if (dev->class) |
| 1912 | subsys = dev->class->name; |
| 1913 | else if (dev->bus) |
| 1914 | subsys = dev->bus->name; |
| 1915 | else |
Joe Perches | 798efc6 | 2012-09-12 20:11:29 -0700 | [diff] [blame] | 1916 | return 0; |
Kay Sievers | c4e00da | 2012-05-03 02:29:59 +0200 | [diff] [blame] | 1917 | |
Joe Perches | 798efc6 | 2012-09-12 20:11:29 -0700 | [diff] [blame] | 1918 | pos += snprintf(hdr + pos, hdrlen - pos, "SUBSYSTEM=%s", subsys); |
Kay Sievers | c4e00da | 2012-05-03 02:29:59 +0200 | [diff] [blame] | 1919 | |
| 1920 | /* |
| 1921 | * Add device identifier DEVICE=: |
| 1922 | * b12:8 block dev_t |
| 1923 | * c127:3 char dev_t |
| 1924 | * n8 netdev ifindex |
| 1925 | * +sound:card0 subsystem:devname |
| 1926 | */ |
| 1927 | if (MAJOR(dev->devt)) { |
| 1928 | char c; |
| 1929 | |
| 1930 | if (strcmp(subsys, "block") == 0) |
| 1931 | c = 'b'; |
| 1932 | else |
| 1933 | c = 'c'; |
Joe Perches | 798efc6 | 2012-09-12 20:11:29 -0700 | [diff] [blame] | 1934 | pos++; |
| 1935 | pos += snprintf(hdr + pos, hdrlen - pos, |
| 1936 | "DEVICE=%c%u:%u", |
| 1937 | c, MAJOR(dev->devt), MINOR(dev->devt)); |
Kay Sievers | c4e00da | 2012-05-03 02:29:59 +0200 | [diff] [blame] | 1938 | } else if (strcmp(subsys, "net") == 0) { |
| 1939 | struct net_device *net = to_net_dev(dev); |
| 1940 | |
Joe Perches | 798efc6 | 2012-09-12 20:11:29 -0700 | [diff] [blame] | 1941 | pos++; |
| 1942 | pos += snprintf(hdr + pos, hdrlen - pos, |
| 1943 | "DEVICE=n%u", net->ifindex); |
Kay Sievers | c4e00da | 2012-05-03 02:29:59 +0200 | [diff] [blame] | 1944 | } else { |
Joe Perches | 798efc6 | 2012-09-12 20:11:29 -0700 | [diff] [blame] | 1945 | pos++; |
| 1946 | pos += snprintf(hdr + pos, hdrlen - pos, |
| 1947 | "DEVICE=+%s:%s", subsys, dev_name(dev)); |
Kay Sievers | c4e00da | 2012-05-03 02:29:59 +0200 | [diff] [blame] | 1948 | } |
Jim Cromie | af7f215 | 2012-07-19 13:46:21 -0600 | [diff] [blame] | 1949 | |
Joe Perches | 798efc6 | 2012-09-12 20:11:29 -0700 | [diff] [blame] | 1950 | return pos; |
Joe Perches | 99bcf21 | 2010-06-27 01:02:34 +0000 | [diff] [blame] | 1951 | } |
Joe Perches | 798efc6 | 2012-09-12 20:11:29 -0700 | [diff] [blame] | 1952 | EXPORT_SYMBOL(create_syslog_header); |
| 1953 | |
Joe Perches | 05e4e5b | 2012-09-12 20:13:37 -0700 | [diff] [blame] | 1954 | int dev_vprintk_emit(int level, const struct device *dev, |
| 1955 | const char *fmt, va_list args) |
| 1956 | { |
| 1957 | char hdr[128]; |
| 1958 | size_t hdrlen; |
| 1959 | |
| 1960 | hdrlen = create_syslog_header(dev, hdr, sizeof(hdr)); |
| 1961 | |
| 1962 | return vprintk_emit(0, level, hdrlen ? hdr : NULL, hdrlen, fmt, args); |
| 1963 | } |
| 1964 | EXPORT_SYMBOL(dev_vprintk_emit); |
| 1965 | |
| 1966 | int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...) |
| 1967 | { |
| 1968 | va_list args; |
| 1969 | int r; |
| 1970 | |
| 1971 | va_start(args, fmt); |
| 1972 | |
| 1973 | r = dev_vprintk_emit(level, dev, fmt, args); |
| 1974 | |
| 1975 | va_end(args); |
| 1976 | |
| 1977 | return r; |
| 1978 | } |
| 1979 | EXPORT_SYMBOL(dev_printk_emit); |
| 1980 | |
Joe Perches | 798efc6 | 2012-09-12 20:11:29 -0700 | [diff] [blame] | 1981 | static int __dev_printk(const char *level, const struct device *dev, |
| 1982 | struct va_format *vaf) |
| 1983 | { |
Joe Perches | 798efc6 | 2012-09-12 20:11:29 -0700 | [diff] [blame] | 1984 | if (!dev) |
| 1985 | return printk("%s(NULL device *): %pV", level, vaf); |
| 1986 | |
Joe Perches | 666f355 | 2012-09-12 20:14:11 -0700 | [diff] [blame] | 1987 | return dev_printk_emit(level[1] - '0', dev, |
| 1988 | "%s %s: %pV", |
| 1989 | dev_driver_string(dev), dev_name(dev), vaf); |
Joe Perches | 798efc6 | 2012-09-12 20:11:29 -0700 | [diff] [blame] | 1990 | } |
Joe Perches | 99bcf21 | 2010-06-27 01:02:34 +0000 | [diff] [blame] | 1991 | |
| 1992 | int dev_printk(const char *level, const struct device *dev, |
| 1993 | const char *fmt, ...) |
| 1994 | { |
| 1995 | struct va_format vaf; |
| 1996 | va_list args; |
| 1997 | int r; |
| 1998 | |
| 1999 | va_start(args, fmt); |
| 2000 | |
| 2001 | vaf.fmt = fmt; |
| 2002 | vaf.va = &args; |
| 2003 | |
| 2004 | r = __dev_printk(level, dev, &vaf); |
Joe Perches | 798efc6 | 2012-09-12 20:11:29 -0700 | [diff] [blame] | 2005 | |
Joe Perches | 99bcf21 | 2010-06-27 01:02:34 +0000 | [diff] [blame] | 2006 | va_end(args); |
| 2007 | |
| 2008 | return r; |
| 2009 | } |
| 2010 | EXPORT_SYMBOL(dev_printk); |
| 2011 | |
| 2012 | #define define_dev_printk_level(func, kern_level) \ |
| 2013 | int func(const struct device *dev, const char *fmt, ...) \ |
| 2014 | { \ |
| 2015 | struct va_format vaf; \ |
| 2016 | va_list args; \ |
| 2017 | int r; \ |
| 2018 | \ |
| 2019 | va_start(args, fmt); \ |
| 2020 | \ |
| 2021 | vaf.fmt = fmt; \ |
| 2022 | vaf.va = &args; \ |
| 2023 | \ |
| 2024 | r = __dev_printk(kern_level, dev, &vaf); \ |
Joe Perches | 798efc6 | 2012-09-12 20:11:29 -0700 | [diff] [blame] | 2025 | \ |
Joe Perches | 99bcf21 | 2010-06-27 01:02:34 +0000 | [diff] [blame] | 2026 | va_end(args); \ |
| 2027 | \ |
| 2028 | return r; \ |
| 2029 | } \ |
| 2030 | EXPORT_SYMBOL(func); |
| 2031 | |
| 2032 | define_dev_printk_level(dev_emerg, KERN_EMERG); |
| 2033 | define_dev_printk_level(dev_alert, KERN_ALERT); |
| 2034 | define_dev_printk_level(dev_crit, KERN_CRIT); |
| 2035 | define_dev_printk_level(dev_err, KERN_ERR); |
| 2036 | define_dev_printk_level(dev_warn, KERN_WARNING); |
| 2037 | define_dev_printk_level(dev_notice, KERN_NOTICE); |
| 2038 | define_dev_printk_level(_dev_info, KERN_INFO); |
| 2039 | |
| 2040 | #endif |