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