Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * scan.c - support for transforming the ACPI namespace into individual objects |
| 3 | */ |
| 4 | |
| 5 | #include <linux/module.h> |
| 6 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 7 | #include <linux/slab.h> |
Randy Dunlap | 9b6d97b | 2006-07-12 02:08:00 -0400 | [diff] [blame] | 8 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/acpi.h> |
Alok N Kataria | 74523c9 | 2008-06-13 12:54:24 -0400 | [diff] [blame] | 10 | #include <linux/signal.h> |
| 11 | #include <linux/kthread.h> |
Darrick J. Wong | 222e82a | 2010-03-24 14:38:37 +0100 | [diff] [blame] | 12 | #include <linux/dmi.h> |
Lance Ortiz | d1efe3c | 2012-10-02 12:43:23 -0600 | [diff] [blame] | 13 | #include <linux/nls.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
Rafael J. Wysocki | d783156 | 2013-11-22 21:52:12 +0100 | [diff] [blame] | 15 | #include <asm/pgtable.h> |
| 16 | |
Bjorn Helgaas | e60cc7a | 2009-03-13 12:08:26 -0600 | [diff] [blame] | 17 | #include "internal.h" |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #define _COMPONENT ACPI_BUS_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 20 | ACPI_MODULE_NAME("scan"); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 21 | extern struct acpi_device *acpi_root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | #define ACPI_BUS_CLASS "system_bus" |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 24 | #define ACPI_BUS_HID "LNXSYBUS" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #define ACPI_BUS_DEVICE_NAME "System Bus" |
| 26 | |
Bjorn Helgaas | 859ac9a | 2009-09-21 19:29:50 +0000 | [diff] [blame] | 27 | #define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent) |
| 28 | |
Rafael J. Wysocki | d783156 | 2013-11-22 21:52:12 +0100 | [diff] [blame] | 29 | #define INVALID_ACPI_HANDLE ((acpi_handle)empty_zero_page) |
| 30 | |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 31 | /* |
| 32 | * If set, devices will be hot-removed even if they cannot be put offline |
| 33 | * gracefully (from the kernel's standpoint). |
| 34 | */ |
| 35 | bool acpi_force_hot_remove; |
| 36 | |
Thomas Renninger | 620e112 | 2010-10-01 10:54:00 +0200 | [diff] [blame] | 37 | static const char *dummy_hid = "device"; |
Thomas Renninger | 2b2ae7c | 2010-10-01 10:53:59 +0200 | [diff] [blame] | 38 | |
Lan Tianyu | 40e7fcb | 2014-11-23 21:22:54 +0800 | [diff] [blame^] | 39 | static LIST_HEAD(acpi_dep_list); |
| 40 | static DEFINE_MUTEX(acpi_dep_list_lock); |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 41 | static LIST_HEAD(acpi_bus_id_list); |
Rafael J. Wysocki | c511cc1 | 2013-01-27 21:17:29 +0100 | [diff] [blame] | 42 | static DEFINE_MUTEX(acpi_scan_lock); |
Rafael J. Wysocki | ca589f9 | 2013-01-30 14:27:29 +0100 | [diff] [blame] | 43 | static LIST_HEAD(acpi_scan_handlers_list); |
Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 44 | DEFINE_MUTEX(acpi_device_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | LIST_HEAD(acpi_wakeup_device_list); |
Rafael J. Wysocki | e525506 | 2014-02-04 00:43:17 +0100 | [diff] [blame] | 46 | static DEFINE_MUTEX(acpi_hp_context_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Lan Tianyu | 40e7fcb | 2014-11-23 21:22:54 +0800 | [diff] [blame^] | 48 | struct acpi_dep_data { |
| 49 | struct list_head node; |
| 50 | acpi_handle master; |
| 51 | acpi_handle slave; |
| 52 | }; |
| 53 | |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 54 | struct acpi_device_bus_id{ |
Zhang Rui | bb09585 | 2007-01-04 15:03:18 +0800 | [diff] [blame] | 55 | char bus_id[15]; |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 56 | unsigned int instance_no; |
| 57 | struct list_head node; |
| 58 | }; |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 59 | |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 60 | void acpi_scan_lock_acquire(void) |
| 61 | { |
| 62 | mutex_lock(&acpi_scan_lock); |
| 63 | } |
| 64 | EXPORT_SYMBOL_GPL(acpi_scan_lock_acquire); |
| 65 | |
| 66 | void acpi_scan_lock_release(void) |
| 67 | { |
| 68 | mutex_unlock(&acpi_scan_lock); |
| 69 | } |
| 70 | EXPORT_SYMBOL_GPL(acpi_scan_lock_release); |
| 71 | |
Rafael J. Wysocki | e525506 | 2014-02-04 00:43:17 +0100 | [diff] [blame] | 72 | void acpi_lock_hp_context(void) |
| 73 | { |
| 74 | mutex_lock(&acpi_hp_context_lock); |
| 75 | } |
| 76 | |
| 77 | void acpi_unlock_hp_context(void) |
| 78 | { |
| 79 | mutex_unlock(&acpi_hp_context_lock); |
| 80 | } |
| 81 | |
Rafael J. Wysocki | 5d51320 | 2014-02-22 00:48:31 +0100 | [diff] [blame] | 82 | void acpi_initialize_hp_context(struct acpi_device *adev, |
| 83 | struct acpi_hotplug_context *hp, |
| 84 | int (*notify)(struct acpi_device *, u32), |
| 85 | void (*uevent)(struct acpi_device *, u32)) |
| 86 | { |
| 87 | acpi_lock_hp_context(); |
Rafael J. Wysocki | ba574dc | 2014-07-15 22:03:22 +0200 | [diff] [blame] | 88 | hp->notify = notify; |
| 89 | hp->uevent = uevent; |
| 90 | acpi_set_hp_context(adev, hp); |
Rafael J. Wysocki | 5d51320 | 2014-02-22 00:48:31 +0100 | [diff] [blame] | 91 | acpi_unlock_hp_context(); |
| 92 | } |
| 93 | EXPORT_SYMBOL_GPL(acpi_initialize_hp_context); |
| 94 | |
Rafael J. Wysocki | ca589f9 | 2013-01-30 14:27:29 +0100 | [diff] [blame] | 95 | int acpi_scan_add_handler(struct acpi_scan_handler *handler) |
| 96 | { |
Rafael J. Wysocki | d34afa9 | 2014-05-30 04:27:31 +0200 | [diff] [blame] | 97 | if (!handler) |
Rafael J. Wysocki | ca589f9 | 2013-01-30 14:27:29 +0100 | [diff] [blame] | 98 | return -EINVAL; |
| 99 | |
| 100 | list_add_tail(&handler->list_node, &acpi_scan_handlers_list); |
| 101 | return 0; |
| 102 | } |
| 103 | |
Rafael J. Wysocki | 3f8055c | 2013-03-03 23:08:16 +0100 | [diff] [blame] | 104 | int acpi_scan_add_handler_with_hotplug(struct acpi_scan_handler *handler, |
| 105 | const char *hotplug_profile_name) |
| 106 | { |
| 107 | int error; |
| 108 | |
| 109 | error = acpi_scan_add_handler(handler); |
| 110 | if (error) |
| 111 | return error; |
| 112 | |
| 113 | acpi_sysfs_add_hotplug_profile(&handler->hotplug, hotplug_profile_name); |
| 114 | return 0; |
| 115 | } |
| 116 | |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 117 | /* |
| 118 | * Creates hid/cid(s) string needed for modalias and uevent |
| 119 | * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get: |
| 120 | * char *modalias: "acpi:IBM0001:ACPI0001" |
Zhang Rui | 3d8e009 | 2014-01-14 16:46:35 +0800 | [diff] [blame] | 121 | * Return: 0: no _HID and no _CID |
| 122 | * -EINVAL: output error |
| 123 | * -ENOMEM: output is truncated |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 124 | */ |
Adrian Bunk | b3e572d | 2007-08-14 23:22:35 +0200 | [diff] [blame] | 125 | static int create_modalias(struct acpi_device *acpi_dev, char *modalias, |
| 126 | int size) |
| 127 | { |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 128 | int len; |
Zhang Rui | 5c9fcb5 | 2008-03-20 16:40:32 +0800 | [diff] [blame] | 129 | int count; |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 130 | struct acpi_hardware_id *id; |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 131 | |
Thomas Renninger | 2b2ae7c | 2010-10-01 10:53:59 +0200 | [diff] [blame] | 132 | if (list_empty(&acpi_dev->pnp.ids)) |
| 133 | return 0; |
| 134 | |
Zhang Rui | 5c9fcb5 | 2008-03-20 16:40:32 +0800 | [diff] [blame] | 135 | len = snprintf(modalias, size, "acpi:"); |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 136 | size -= len; |
| 137 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 138 | list_for_each_entry(id, &acpi_dev->pnp.ids, list) { |
| 139 | count = snprintf(&modalias[len], size, "%s:", id->id); |
Zhang Rui | 3d8e009 | 2014-01-14 16:46:35 +0800 | [diff] [blame] | 140 | if (count < 0) |
Mika Westerberg | 98d28d0 | 2014-09-12 11:33:10 +0300 | [diff] [blame] | 141 | return -EINVAL; |
Zhang Rui | 3d8e009 | 2014-01-14 16:46:35 +0800 | [diff] [blame] | 142 | if (count >= size) |
| 143 | return -ENOMEM; |
Zhang Rui | 5c9fcb5 | 2008-03-20 16:40:32 +0800 | [diff] [blame] | 144 | len += count; |
| 145 | size -= count; |
| 146 | } |
| 147 | |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 148 | modalias[len] = '\0'; |
| 149 | return len; |
| 150 | } |
| 151 | |
Zhang Rui | 6eb2451 | 2014-01-14 16:46:36 +0800 | [diff] [blame] | 152 | /* |
Mika Westerberg | 5287078 | 2014-10-24 16:40:54 +0200 | [diff] [blame] | 153 | * acpi_companion_match() - Can we match via ACPI companion device |
| 154 | * @dev: Device in question |
| 155 | * |
| 156 | * Check if the given device has an ACPI companion and if that companion has |
| 157 | * a valid list of PNP IDs, and if the device is the first (primary) physical |
| 158 | * device associated with it. |
| 159 | * |
| 160 | * If multiple physical devices are attached to a single ACPI companion, we need |
| 161 | * to be careful. The usage scenario for this kind of relationship is that all |
| 162 | * of the physical devices in question use resources provided by the ACPI |
| 163 | * companion. A typical case is an MFD device where all the sub-devices share |
| 164 | * the parent's ACPI companion. In such cases we can only allow the primary |
| 165 | * (first) physical device to be matched with the help of the companion's PNP |
| 166 | * IDs. |
| 167 | * |
| 168 | * Additional physical devices sharing the ACPI companion can still use |
| 169 | * resources available from it but they will be matched normally using functions |
| 170 | * provided by their bus types (and analogously for their modalias). |
| 171 | */ |
| 172 | static bool acpi_companion_match(const struct device *dev) |
| 173 | { |
| 174 | struct acpi_device *adev; |
| 175 | bool ret; |
| 176 | |
| 177 | adev = ACPI_COMPANION(dev); |
| 178 | if (!adev) |
| 179 | return false; |
| 180 | |
| 181 | if (list_empty(&adev->pnp.ids)) |
| 182 | return false; |
| 183 | |
| 184 | mutex_lock(&adev->physical_node_lock); |
| 185 | if (list_empty(&adev->physical_node_list)) { |
| 186 | ret = false; |
| 187 | } else { |
| 188 | const struct acpi_device_physical_node *node; |
| 189 | |
| 190 | node = list_first_entry(&adev->physical_node_list, |
| 191 | struct acpi_device_physical_node, node); |
| 192 | ret = node->dev == dev; |
| 193 | } |
| 194 | mutex_unlock(&adev->physical_node_lock); |
| 195 | |
| 196 | return ret; |
| 197 | } |
| 198 | |
| 199 | /* |
Zhang Rui | 6eb2451 | 2014-01-14 16:46:36 +0800 | [diff] [blame] | 200 | * Creates uevent modalias field for ACPI enumerated devices. |
| 201 | * Because the other buses does not support ACPI HIDs & CIDs. |
| 202 | * e.g. for a device with hid:IBM0001 and cid:ACPI0001 you get: |
| 203 | * "acpi:IBM0001:ACPI0001" |
| 204 | */ |
| 205 | int acpi_device_uevent_modalias(struct device *dev, struct kobj_uevent_env *env) |
| 206 | { |
Zhang Rui | 6eb2451 | 2014-01-14 16:46:36 +0800 | [diff] [blame] | 207 | int len; |
| 208 | |
Mika Westerberg | 5287078 | 2014-10-24 16:40:54 +0200 | [diff] [blame] | 209 | if (!acpi_companion_match(dev)) |
Zhang Rui | 6eb2451 | 2014-01-14 16:46:36 +0800 | [diff] [blame] | 210 | return -ENODEV; |
| 211 | |
| 212 | if (add_uevent_var(env, "MODALIAS=")) |
| 213 | return -ENOMEM; |
Mika Westerberg | 5287078 | 2014-10-24 16:40:54 +0200 | [diff] [blame] | 214 | len = create_modalias(ACPI_COMPANION(dev), &env->buf[env->buflen - 1], |
Zhang Rui | 6eb2451 | 2014-01-14 16:46:36 +0800 | [diff] [blame] | 215 | sizeof(env->buf) - env->buflen); |
| 216 | if (len <= 0) |
| 217 | return len; |
| 218 | env->buflen += len; |
| 219 | return 0; |
| 220 | } |
| 221 | EXPORT_SYMBOL_GPL(acpi_device_uevent_modalias); |
| 222 | |
| 223 | /* |
| 224 | * Creates modalias sysfs attribute for ACPI enumerated devices. |
| 225 | * Because the other buses does not support ACPI HIDs & CIDs. |
| 226 | * e.g. for a device with hid:IBM0001 and cid:ACPI0001 you get: |
| 227 | * "acpi:IBM0001:ACPI0001" |
| 228 | */ |
| 229 | int acpi_device_modalias(struct device *dev, char *buf, int size) |
| 230 | { |
Zhang Rui | 6eb2451 | 2014-01-14 16:46:36 +0800 | [diff] [blame] | 231 | int len; |
| 232 | |
Mika Westerberg | 5287078 | 2014-10-24 16:40:54 +0200 | [diff] [blame] | 233 | if (!acpi_companion_match(dev)) |
Zhang Rui | 6eb2451 | 2014-01-14 16:46:36 +0800 | [diff] [blame] | 234 | return -ENODEV; |
| 235 | |
Mika Westerberg | 5287078 | 2014-10-24 16:40:54 +0200 | [diff] [blame] | 236 | len = create_modalias(ACPI_COMPANION(dev), buf, size -1); |
Zhang Rui | 6eb2451 | 2014-01-14 16:46:36 +0800 | [diff] [blame] | 237 | if (len <= 0) |
| 238 | return len; |
| 239 | buf[len++] = '\n'; |
| 240 | return len; |
| 241 | } |
| 242 | EXPORT_SYMBOL_GPL(acpi_device_modalias); |
| 243 | |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 244 | static ssize_t |
| 245 | acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) { |
| 246 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 247 | int len; |
| 248 | |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 249 | len = create_modalias(acpi_dev, buf, 1024); |
| 250 | if (len <= 0) |
Zhang Rui | 3d8e009 | 2014-01-14 16:46:35 +0800 | [diff] [blame] | 251 | return len; |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 252 | buf[len++] = '\n'; |
| 253 | return len; |
| 254 | } |
| 255 | static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL); |
| 256 | |
Rafael J. Wysocki | caa73ea | 2013-12-29 15:25:48 +0100 | [diff] [blame] | 257 | bool acpi_scan_is_offline(struct acpi_device *adev, bool uevent) |
Rafael J. Wysocki | d22ddcb | 2013-12-29 15:25:35 +0100 | [diff] [blame] | 258 | { |
| 259 | struct acpi_device_physical_node *pn; |
| 260 | bool offline = true; |
| 261 | |
| 262 | mutex_lock(&adev->physical_node_lock); |
| 263 | |
| 264 | list_for_each_entry(pn, &adev->physical_node_list, node) |
| 265 | if (device_supports_offline(pn->dev) && !pn->dev->offline) { |
Rafael J. Wysocki | caa73ea | 2013-12-29 15:25:48 +0100 | [diff] [blame] | 266 | if (uevent) |
| 267 | kobject_uevent(&pn->dev->kobj, KOBJ_CHANGE); |
| 268 | |
Rafael J. Wysocki | d22ddcb | 2013-12-29 15:25:35 +0100 | [diff] [blame] | 269 | offline = false; |
| 270 | break; |
| 271 | } |
| 272 | |
| 273 | mutex_unlock(&adev->physical_node_lock); |
| 274 | return offline; |
| 275 | } |
| 276 | |
Rafael J. Wysocki | 7f28dde | 2013-11-07 01:41:14 +0100 | [diff] [blame] | 277 | static acpi_status acpi_bus_offline(acpi_handle handle, u32 lvl, void *data, |
| 278 | void **ret_p) |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 279 | { |
| 280 | struct acpi_device *device = NULL; |
| 281 | struct acpi_device_physical_node *pn; |
Rafael J. Wysocki | 303bfdb | 2013-05-23 10:43:13 +0200 | [diff] [blame] | 282 | bool second_pass = (bool)data; |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 283 | acpi_status status = AE_OK; |
| 284 | |
| 285 | if (acpi_bus_get_device(handle, &device)) |
| 286 | return AE_OK; |
| 287 | |
Rafael J. Wysocki | 7f28dde | 2013-11-07 01:41:14 +0100 | [diff] [blame] | 288 | if (device->handler && !device->handler->hotplug.enabled) { |
| 289 | *ret_p = &device->dev; |
| 290 | return AE_SUPPORT; |
| 291 | } |
| 292 | |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 293 | mutex_lock(&device->physical_node_lock); |
| 294 | |
| 295 | list_for_each_entry(pn, &device->physical_node_list, node) { |
| 296 | int ret; |
| 297 | |
Rafael J. Wysocki | 303bfdb | 2013-05-23 10:43:13 +0200 | [diff] [blame] | 298 | if (second_pass) { |
| 299 | /* Skip devices offlined by the first pass. */ |
| 300 | if (pn->put_online) |
| 301 | continue; |
| 302 | } else { |
| 303 | pn->put_online = false; |
| 304 | } |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 305 | ret = device_offline(pn->dev); |
| 306 | if (acpi_force_hot_remove) |
| 307 | continue; |
| 308 | |
Rafael J. Wysocki | 303bfdb | 2013-05-23 10:43:13 +0200 | [diff] [blame] | 309 | if (ret >= 0) { |
| 310 | pn->put_online = !ret; |
| 311 | } else { |
| 312 | *ret_p = pn->dev; |
| 313 | if (second_pass) { |
| 314 | status = AE_ERROR; |
| 315 | break; |
| 316 | } |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 317 | } |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | mutex_unlock(&device->physical_node_lock); |
| 321 | |
| 322 | return status; |
| 323 | } |
| 324 | |
Rafael J. Wysocki | 7f28dde | 2013-11-07 01:41:14 +0100 | [diff] [blame] | 325 | static acpi_status acpi_bus_online(acpi_handle handle, u32 lvl, void *data, |
| 326 | void **ret_p) |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 327 | { |
| 328 | struct acpi_device *device = NULL; |
| 329 | struct acpi_device_physical_node *pn; |
| 330 | |
| 331 | if (acpi_bus_get_device(handle, &device)) |
| 332 | return AE_OK; |
| 333 | |
| 334 | mutex_lock(&device->physical_node_lock); |
| 335 | |
| 336 | list_for_each_entry(pn, &device->physical_node_list, node) |
| 337 | if (pn->put_online) { |
| 338 | device_online(pn->dev); |
| 339 | pn->put_online = false; |
| 340 | } |
| 341 | |
| 342 | mutex_unlock(&device->physical_node_lock); |
| 343 | |
| 344 | return AE_OK; |
| 345 | } |
| 346 | |
Rafael J. Wysocki | d22ddcb | 2013-12-29 15:25:35 +0100 | [diff] [blame] | 347 | static int acpi_scan_try_to_offline(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | { |
Yinghai Lu | 5993c46 | 2013-01-11 22:40:41 +0000 | [diff] [blame] | 349 | acpi_handle handle = device->handle; |
Rafael J. Wysocki | d22ddcb | 2013-12-29 15:25:35 +0100 | [diff] [blame] | 350 | struct device *errdev = NULL; |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 351 | acpi_status status; |
Rafael J. Wysocki | f058cdf | 2013-02-09 15:29:11 +0100 | [diff] [blame] | 352 | |
Rafael J. Wysocki | 303bfdb | 2013-05-23 10:43:13 +0200 | [diff] [blame] | 353 | /* |
| 354 | * Carry out two passes here and ignore errors in the first pass, |
| 355 | * because if the devices in question are memory blocks and |
| 356 | * CONFIG_MEMCG is set, one of the blocks may hold data structures |
| 357 | * that the other blocks depend on, but it is not known in advance which |
| 358 | * block holds them. |
| 359 | * |
| 360 | * If the first pass is successful, the second one isn't needed, though. |
| 361 | */ |
Rafael J. Wysocki | 7f28dde | 2013-11-07 01:41:14 +0100 | [diff] [blame] | 362 | status = acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX, |
| 363 | NULL, acpi_bus_offline, (void *)false, |
| 364 | (void **)&errdev); |
| 365 | if (status == AE_SUPPORT) { |
| 366 | dev_warn(errdev, "Offline disabled.\n"); |
| 367 | acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX, |
| 368 | acpi_bus_online, NULL, NULL, NULL); |
Rafael J. Wysocki | 7f28dde | 2013-11-07 01:41:14 +0100 | [diff] [blame] | 369 | return -EPERM; |
| 370 | } |
| 371 | acpi_bus_offline(handle, 0, (void *)false, (void **)&errdev); |
Rafael J. Wysocki | 303bfdb | 2013-05-23 10:43:13 +0200 | [diff] [blame] | 372 | if (errdev) { |
| 373 | errdev = NULL; |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 374 | acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX, |
Rafael J. Wysocki | 7f28dde | 2013-11-07 01:41:14 +0100 | [diff] [blame] | 375 | NULL, acpi_bus_offline, (void *)true, |
| 376 | (void **)&errdev); |
Rafael J. Wysocki | 303bfdb | 2013-05-23 10:43:13 +0200 | [diff] [blame] | 377 | if (!errdev || acpi_force_hot_remove) |
Rafael J. Wysocki | 7f28dde | 2013-11-07 01:41:14 +0100 | [diff] [blame] | 378 | acpi_bus_offline(handle, 0, (void *)true, |
| 379 | (void **)&errdev); |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 380 | |
Rafael J. Wysocki | 303bfdb | 2013-05-23 10:43:13 +0200 | [diff] [blame] | 381 | if (errdev && !acpi_force_hot_remove) { |
| 382 | dev_warn(errdev, "Offline failed.\n"); |
Rafael J. Wysocki | 7f28dde | 2013-11-07 01:41:14 +0100 | [diff] [blame] | 383 | acpi_bus_online(handle, 0, NULL, NULL); |
Rafael J. Wysocki | 303bfdb | 2013-05-23 10:43:13 +0200 | [diff] [blame] | 384 | acpi_walk_namespace(ACPI_TYPE_ANY, handle, |
Rafael J. Wysocki | 7f28dde | 2013-11-07 01:41:14 +0100 | [diff] [blame] | 385 | ACPI_UINT32_MAX, acpi_bus_online, |
| 386 | NULL, NULL, NULL); |
Rafael J. Wysocki | 303bfdb | 2013-05-23 10:43:13 +0200 | [diff] [blame] | 387 | return -EBUSY; |
| 388 | } |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 389 | } |
Rafael J. Wysocki | d22ddcb | 2013-12-29 15:25:35 +0100 | [diff] [blame] | 390 | return 0; |
| 391 | } |
| 392 | |
| 393 | static int acpi_scan_hot_remove(struct acpi_device *device) |
| 394 | { |
| 395 | acpi_handle handle = device->handle; |
| 396 | unsigned long long sta; |
| 397 | acpi_status status; |
| 398 | |
Tang Chen | dee1592 | 2014-08-08 10:30:45 +0800 | [diff] [blame] | 399 | if (device->handler && device->handler->hotplug.demand_offline |
| 400 | && !acpi_force_hot_remove) { |
Rafael J. Wysocki | caa73ea | 2013-12-29 15:25:48 +0100 | [diff] [blame] | 401 | if (!acpi_scan_is_offline(device, true)) |
Rafael J. Wysocki | d22ddcb | 2013-12-29 15:25:35 +0100 | [diff] [blame] | 402 | return -EBUSY; |
| 403 | } else { |
| 404 | int error = acpi_scan_try_to_offline(device); |
| 405 | if (error) |
| 406 | return error; |
| 407 | } |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 408 | |
Zhang Rui | 26d4686 | 2008-04-29 02:35:48 -0400 | [diff] [blame] | 409 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 410 | "Hot-removing device %s...\n", dev_name(&device->dev))); |
Zhang Rui | 26d4686 | 2008-04-29 02:35:48 -0400 | [diff] [blame] | 411 | |
Rafael J. Wysocki | bfee26d | 2013-01-26 00:27:44 +0100 | [diff] [blame] | 412 | acpi_bus_trim(device); |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 413 | |
Jiang Liu | 7d2421f | 2013-06-29 00:24:40 +0800 | [diff] [blame] | 414 | acpi_evaluate_lck(handle, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | /* |
| 416 | * TBD: _EJD support. |
| 417 | */ |
Jiang Liu | 7d2421f | 2013-06-29 00:24:40 +0800 | [diff] [blame] | 418 | status = acpi_evaluate_ej0(handle); |
| 419 | if (status == AE_NOT_FOUND) |
| 420 | return -ENODEV; |
| 421 | else if (ACPI_FAILURE(status)) |
| 422 | return -EIO; |
Rafael J. Wysocki | f058cdf | 2013-02-09 15:29:11 +0100 | [diff] [blame] | 423 | |
Toshi Kani | 882fd12 | 2013-03-13 19:29:26 +0000 | [diff] [blame] | 424 | /* |
| 425 | * Verify if eject was indeed successful. If not, log an error |
| 426 | * message. No need to call _OST since _EJ0 call was made OK. |
| 427 | */ |
| 428 | status = acpi_evaluate_integer(handle, "_STA", NULL, &sta); |
| 429 | if (ACPI_FAILURE(status)) { |
| 430 | acpi_handle_warn(handle, |
| 431 | "Status check after eject failed (0x%x)\n", status); |
| 432 | } else if (sta & ACPI_STA_DEVICE_ENABLED) { |
| 433 | acpi_handle_warn(handle, |
| 434 | "Eject incomplete - status 0x%llx\n", sta); |
| 435 | } |
| 436 | |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 437 | return 0; |
| 438 | } |
Rafael J. Wysocki | f058cdf | 2013-02-09 15:29:11 +0100 | [diff] [blame] | 439 | |
Rafael J. Wysocki | 443fc82 | 2013-11-22 21:55:43 +0100 | [diff] [blame] | 440 | static int acpi_scan_device_not_present(struct acpi_device *adev) |
| 441 | { |
| 442 | if (!acpi_device_enumerated(adev)) { |
| 443 | dev_warn(&adev->dev, "Still not present\n"); |
| 444 | return -EALREADY; |
| 445 | } |
| 446 | acpi_bus_trim(adev); |
| 447 | return 0; |
| 448 | } |
| 449 | |
Rafael J. Wysocki | c27b2c3 | 2013-11-22 21:55:07 +0100 | [diff] [blame] | 450 | static int acpi_scan_device_check(struct acpi_device *adev) |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 451 | { |
Rafael J. Wysocki | f943db4 | 2013-08-28 21:41:07 +0200 | [diff] [blame] | 452 | int error; |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 453 | |
Rafael J. Wysocki | 443fc82 | 2013-11-22 21:55:43 +0100 | [diff] [blame] | 454 | acpi_bus_get_status(adev); |
| 455 | if (adev->status.present || adev->status.functional) { |
| 456 | /* |
| 457 | * This function is only called for device objects for which |
| 458 | * matching scan handlers exist. The only situation in which |
| 459 | * the scan handler is not attached to this device object yet |
| 460 | * is when the device has just appeared (either it wasn't |
| 461 | * present at all before or it was removed and then added |
| 462 | * again). |
| 463 | */ |
| 464 | if (adev->handler) { |
| 465 | dev_warn(&adev->dev, "Already enumerated\n"); |
| 466 | return -EALREADY; |
| 467 | } |
| 468 | error = acpi_bus_scan(adev->handle); |
| 469 | if (error) { |
| 470 | dev_warn(&adev->dev, "Namespace scan failure\n"); |
| 471 | return error; |
| 472 | } |
| 473 | if (!adev->handler) { |
| 474 | dev_warn(&adev->dev, "Enumeration failure\n"); |
| 475 | error = -ENODEV; |
| 476 | } |
| 477 | } else { |
| 478 | error = acpi_scan_device_not_present(adev); |
| 479 | } |
| 480 | return error; |
| 481 | } |
| 482 | |
| 483 | static int acpi_scan_bus_check(struct acpi_device *adev) |
| 484 | { |
| 485 | struct acpi_scan_handler *handler = adev->handler; |
| 486 | struct acpi_device *child; |
| 487 | int error; |
| 488 | |
| 489 | acpi_bus_get_status(adev); |
| 490 | if (!(adev->status.present || adev->status.functional)) { |
| 491 | acpi_scan_device_not_present(adev); |
| 492 | return 0; |
| 493 | } |
| 494 | if (handler && handler->hotplug.scan_dependent) |
| 495 | return handler->hotplug.scan_dependent(adev); |
| 496 | |
Rafael J. Wysocki | c27b2c3 | 2013-11-22 21:55:07 +0100 | [diff] [blame] | 497 | error = acpi_bus_scan(adev->handle); |
| 498 | if (error) { |
| 499 | dev_warn(&adev->dev, "Namespace scan failure\n"); |
| 500 | return error; |
| 501 | } |
Rafael J. Wysocki | 443fc82 | 2013-11-22 21:55:43 +0100 | [diff] [blame] | 502 | list_for_each_entry(child, &adev->children, node) { |
| 503 | error = acpi_scan_bus_check(child); |
| 504 | if (error) |
| 505 | return error; |
Rafael J. Wysocki | c27b2c3 | 2013-11-22 21:55:07 +0100 | [diff] [blame] | 506 | } |
| 507 | return 0; |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 508 | } |
| 509 | |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 510 | static int acpi_generic_hotplug_event(struct acpi_device *adev, u32 type) |
| 511 | { |
| 512 | switch (type) { |
| 513 | case ACPI_NOTIFY_BUS_CHECK: |
| 514 | return acpi_scan_bus_check(adev); |
| 515 | case ACPI_NOTIFY_DEVICE_CHECK: |
| 516 | return acpi_scan_device_check(adev); |
| 517 | case ACPI_NOTIFY_EJECT_REQUEST: |
| 518 | case ACPI_OST_EC_OSPM_EJECT: |
Rafael J. Wysocki | dd2151b | 2014-02-04 00:44:02 +0100 | [diff] [blame] | 519 | if (adev->handler && !adev->handler->hotplug.enabled) { |
| 520 | dev_info(&adev->dev, "Eject disabled\n"); |
| 521 | return -EPERM; |
| 522 | } |
Rafael J. Wysocki | 700b842 | 2014-02-21 01:07:17 +0100 | [diff] [blame] | 523 | acpi_evaluate_ost(adev->handle, ACPI_NOTIFY_EJECT_REQUEST, |
| 524 | ACPI_OST_SC_EJECT_IN_PROGRESS, NULL); |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 525 | return acpi_scan_hot_remove(adev); |
| 526 | } |
| 527 | return -EINVAL; |
| 528 | } |
| 529 | |
Rafael J. Wysocki | 1e3bcb5 | 2014-03-03 00:40:38 +0100 | [diff] [blame] | 530 | void acpi_device_hotplug(struct acpi_device *adev, u32 src) |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 531 | { |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 532 | u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 533 | int error = -ENODEV; |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 534 | |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 535 | lock_device_hotplug(); |
Rafael J. Wysocki | e0ae8fe | 2013-08-30 14:19:29 +0200 | [diff] [blame] | 536 | mutex_lock(&acpi_scan_lock); |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 537 | |
Rafael J. Wysocki | c27b2c3 | 2013-11-22 21:55:07 +0100 | [diff] [blame] | 538 | /* |
| 539 | * The device object's ACPI handle cannot become invalid as long as we |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 540 | * are holding acpi_scan_lock, but it might have become invalid before |
Rafael J. Wysocki | c27b2c3 | 2013-11-22 21:55:07 +0100 | [diff] [blame] | 541 | * that lock was acquired. |
| 542 | */ |
| 543 | if (adev->handle == INVALID_ACPI_HANDLE) |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 544 | goto err_out; |
Rafael J. Wysocki | c27b2c3 | 2013-11-22 21:55:07 +0100 | [diff] [blame] | 545 | |
Rafael J. Wysocki | 1e2380c | 2014-02-16 01:51:01 +0100 | [diff] [blame] | 546 | if (adev->flags.is_dock_station) { |
| 547 | error = dock_notify(adev, src); |
| 548 | } else if (adev->flags.hotplug_notify) { |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 549 | error = acpi_generic_hotplug_event(adev, src); |
Rafael J. Wysocki | dd2151b | 2014-02-04 00:44:02 +0100 | [diff] [blame] | 550 | if (error == -EPERM) { |
| 551 | ost_code = ACPI_OST_SC_EJECT_NOT_SUPPORTED; |
| 552 | goto err_out; |
| 553 | } |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 554 | } else { |
Rafael J. Wysocki | be27b3d | 2014-02-21 01:10:27 +0100 | [diff] [blame] | 555 | int (*notify)(struct acpi_device *, u32); |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 556 | |
| 557 | acpi_lock_hp_context(); |
Rafael J. Wysocki | be27b3d | 2014-02-21 01:10:27 +0100 | [diff] [blame] | 558 | notify = adev->hp ? adev->hp->notify : NULL; |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 559 | acpi_unlock_hp_context(); |
| 560 | /* |
| 561 | * There may be additional notify handlers for device objects |
| 562 | * without the .event() callback, so ignore them here. |
| 563 | */ |
Rafael J. Wysocki | be27b3d | 2014-02-21 01:10:27 +0100 | [diff] [blame] | 564 | if (notify) |
| 565 | error = notify(adev, src); |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 566 | else |
| 567 | goto out; |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 568 | } |
Rafael J. Wysocki | c27b2c3 | 2013-11-22 21:55:07 +0100 | [diff] [blame] | 569 | if (!error) |
| 570 | ost_code = ACPI_OST_SC_SUCCESS; |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 571 | |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 572 | err_out: |
Rafael J. Wysocki | 700b842 | 2014-02-21 01:07:17 +0100 | [diff] [blame] | 573 | acpi_evaluate_ost(adev->handle, src, ost_code, NULL); |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 574 | |
| 575 | out: |
Rafael J. Wysocki | 78ea463 | 2014-02-04 00:43:05 +0100 | [diff] [blame] | 576 | acpi_bus_put_acpi_device(adev); |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 577 | mutex_unlock(&acpi_scan_lock); |
Rafael J. Wysocki | e0ae8fe | 2013-08-30 14:19:29 +0200 | [diff] [blame] | 578 | unlock_device_hotplug(); |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 579 | } |
| 580 | |
Rafael J. Wysocki | 836aedb | 2013-01-24 12:49:59 +0100 | [diff] [blame] | 581 | static ssize_t real_power_state_show(struct device *dev, |
| 582 | struct device_attribute *attr, char *buf) |
| 583 | { |
| 584 | struct acpi_device *adev = to_acpi_device(dev); |
| 585 | int state; |
| 586 | int ret; |
| 587 | |
| 588 | ret = acpi_device_get_power(adev, &state); |
| 589 | if (ret) |
| 590 | return ret; |
| 591 | |
| 592 | return sprintf(buf, "%s\n", acpi_power_state_string(state)); |
| 593 | } |
| 594 | |
| 595 | static DEVICE_ATTR(real_power_state, 0444, real_power_state_show, NULL); |
| 596 | |
| 597 | static ssize_t power_state_show(struct device *dev, |
| 598 | struct device_attribute *attr, char *buf) |
| 599 | { |
| 600 | struct acpi_device *adev = to_acpi_device(dev); |
| 601 | |
| 602 | return sprintf(buf, "%s\n", acpi_power_state_string(adev->power.state)); |
| 603 | } |
| 604 | |
| 605 | static DEVICE_ATTR(power_state, 0444, power_state_show, NULL); |
| 606 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | static ssize_t |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 608 | acpi_eject_store(struct device *d, struct device_attribute *attr, |
| 609 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | { |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 611 | struct acpi_device *acpi_device = to_acpi_device(d); |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 612 | acpi_object_type not_used; |
| 613 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 615 | if (!count || buf[0] != '1') |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 618 | if ((!acpi_device->handler || !acpi_device->handler->hotplug.enabled) |
| 619 | && !acpi_device->driver) |
| 620 | return -ENODEV; |
| 621 | |
| 622 | status = acpi_get_type(acpi_device->handle, ¬_used); |
| 623 | if (ACPI_FAILURE(status) || !acpi_device->flags.ejectable) |
| 624 | return -ENODEV; |
| 625 | |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 626 | get_device(&acpi_device->dev); |
Rafael J. Wysocki | 1e3bcb5 | 2014-03-03 00:40:38 +0100 | [diff] [blame] | 627 | status = acpi_hotplug_schedule(acpi_device, ACPI_OST_EC_OSPM_EJECT); |
Rafael J. Wysocki | f943db4 | 2013-08-28 21:41:07 +0200 | [diff] [blame] | 628 | if (ACPI_SUCCESS(status)) |
| 629 | return count; |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 630 | |
Rafael J. Wysocki | f943db4 | 2013-08-28 21:41:07 +0200 | [diff] [blame] | 631 | put_device(&acpi_device->dev); |
Rafael J. Wysocki | 700b842 | 2014-02-21 01:07:17 +0100 | [diff] [blame] | 632 | acpi_evaluate_ost(acpi_device->handle, ACPI_OST_EC_OSPM_EJECT, |
| 633 | ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL); |
Rafael J. Wysocki | 5add99c | 2013-11-07 01:41:39 +0100 | [diff] [blame] | 634 | return status == AE_NO_MEMORY ? -ENOMEM : -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | } |
| 636 | |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 637 | static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 639 | static ssize_t |
| 640 | acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) { |
| 641 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | |
Bjorn Helgaas | ea8d82f | 2009-09-21 13:35:09 -0600 | [diff] [blame] | 643 | return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev)); |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 644 | } |
| 645 | static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL); |
| 646 | |
Lv Zheng | 923d4a4 | 2012-10-30 14:43:26 +0100 | [diff] [blame] | 647 | static ssize_t acpi_device_uid_show(struct device *dev, |
| 648 | struct device_attribute *attr, char *buf) |
| 649 | { |
| 650 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 651 | |
| 652 | return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id); |
| 653 | } |
| 654 | static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL); |
| 655 | |
| 656 | static ssize_t acpi_device_adr_show(struct device *dev, |
| 657 | struct device_attribute *attr, char *buf) |
| 658 | { |
| 659 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 660 | |
| 661 | return sprintf(buf, "0x%08x\n", |
| 662 | (unsigned int)(acpi_dev->pnp.bus_address)); |
| 663 | } |
| 664 | static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL); |
| 665 | |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 666 | static ssize_t |
| 667 | acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) { |
| 668 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 669 | struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL}; |
| 670 | int result; |
| 671 | |
| 672 | result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path); |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 673 | if (result) |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 674 | goto end; |
| 675 | |
| 676 | result = sprintf(buf, "%s\n", (char*)path.pointer); |
| 677 | kfree(path.pointer); |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 678 | end: |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 679 | return result; |
| 680 | } |
| 681 | static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL); |
| 682 | |
Lance Ortiz | d1efe3c | 2012-10-02 12:43:23 -0600 | [diff] [blame] | 683 | /* sysfs file that shows description text from the ACPI _STR method */ |
| 684 | static ssize_t description_show(struct device *dev, |
| 685 | struct device_attribute *attr, |
| 686 | char *buf) { |
| 687 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 688 | int result; |
| 689 | |
| 690 | if (acpi_dev->pnp.str_obj == NULL) |
| 691 | return 0; |
| 692 | |
| 693 | /* |
| 694 | * The _STR object contains a Unicode identifier for a device. |
| 695 | * We need to convert to utf-8 so it can be displayed. |
| 696 | */ |
| 697 | result = utf16s_to_utf8s( |
| 698 | (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer, |
| 699 | acpi_dev->pnp.str_obj->buffer.length, |
| 700 | UTF16_LITTLE_ENDIAN, buf, |
| 701 | PAGE_SIZE); |
| 702 | |
| 703 | buf[result++] = '\n'; |
| 704 | |
| 705 | return result; |
| 706 | } |
| 707 | static DEVICE_ATTR(description, 0444, description_show, NULL); |
| 708 | |
Yasuaki Ishimatsu | bb74ac2 | 2012-11-16 02:56:59 +0100 | [diff] [blame] | 709 | static ssize_t |
| 710 | acpi_device_sun_show(struct device *dev, struct device_attribute *attr, |
| 711 | char *buf) { |
| 712 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
Yasuaki Ishimatsu | a383b68 | 2014-09-03 13:39:13 +0900 | [diff] [blame] | 713 | acpi_status status; |
| 714 | unsigned long long sun; |
Yasuaki Ishimatsu | bb74ac2 | 2012-11-16 02:56:59 +0100 | [diff] [blame] | 715 | |
Yasuaki Ishimatsu | a383b68 | 2014-09-03 13:39:13 +0900 | [diff] [blame] | 716 | status = acpi_evaluate_integer(acpi_dev->handle, "_SUN", NULL, &sun); |
| 717 | if (ACPI_FAILURE(status)) |
| 718 | return -ENODEV; |
| 719 | |
| 720 | return sprintf(buf, "%llu\n", sun); |
Yasuaki Ishimatsu | bb74ac2 | 2012-11-16 02:56:59 +0100 | [diff] [blame] | 721 | } |
| 722 | static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL); |
| 723 | |
Srinivas Pandruvada | c713cd7 | 2014-01-10 16:00:05 -0800 | [diff] [blame] | 724 | static ssize_t status_show(struct device *dev, struct device_attribute *attr, |
| 725 | char *buf) { |
| 726 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 727 | acpi_status status; |
| 728 | unsigned long long sta; |
| 729 | |
| 730 | status = acpi_evaluate_integer(acpi_dev->handle, "_STA", NULL, &sta); |
| 731 | if (ACPI_FAILURE(status)) |
| 732 | return -ENODEV; |
| 733 | |
| 734 | return sprintf(buf, "%llu\n", sta); |
| 735 | } |
| 736 | static DEVICE_ATTR_RO(status); |
| 737 | |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 738 | static int acpi_device_setup_files(struct acpi_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | { |
Lance Ortiz | d1efe3c | 2012-10-02 12:43:23 -0600 | [diff] [blame] | 740 | struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL}; |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 741 | acpi_status status; |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 742 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 744 | /* |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 745 | * Devices gotten from FADT don't have a "path" attribute |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 746 | */ |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 747 | if (dev->handle) { |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 748 | result = device_create_file(&dev->dev, &dev_attr_path); |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 749 | if (result) |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 750 | goto end; |
| 751 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | |
Thomas Renninger | 2b2ae7c | 2010-10-01 10:53:59 +0200 | [diff] [blame] | 753 | if (!list_empty(&dev->pnp.ids)) { |
| 754 | result = device_create_file(&dev->dev, &dev_attr_hid); |
| 755 | if (result) |
| 756 | goto end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | |
Thomas Renninger | 2b2ae7c | 2010-10-01 10:53:59 +0200 | [diff] [blame] | 758 | result = device_create_file(&dev->dev, &dev_attr_modalias); |
| 759 | if (result) |
| 760 | goto end; |
| 761 | } |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 762 | |
Lance Ortiz | d1efe3c | 2012-10-02 12:43:23 -0600 | [diff] [blame] | 763 | /* |
| 764 | * If device has _STR, 'description' file is created |
| 765 | */ |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 766 | if (acpi_has_method(dev->handle, "_STR")) { |
Lance Ortiz | d1efe3c | 2012-10-02 12:43:23 -0600 | [diff] [blame] | 767 | status = acpi_evaluate_object(dev->handle, "_STR", |
| 768 | NULL, &buffer); |
| 769 | if (ACPI_FAILURE(status)) |
| 770 | buffer.pointer = NULL; |
| 771 | dev->pnp.str_obj = buffer.pointer; |
| 772 | result = device_create_file(&dev->dev, &dev_attr_description); |
| 773 | if (result) |
| 774 | goto end; |
| 775 | } |
| 776 | |
Toshi Kani | d4e1a69 | 2013-03-04 21:30:41 +0000 | [diff] [blame] | 777 | if (dev->pnp.type.bus_address) |
Lv Zheng | 923d4a4 | 2012-10-30 14:43:26 +0100 | [diff] [blame] | 778 | result = device_create_file(&dev->dev, &dev_attr_adr); |
| 779 | if (dev->pnp.unique_id) |
| 780 | result = device_create_file(&dev->dev, &dev_attr_uid); |
| 781 | |
Yasuaki Ishimatsu | a383b68 | 2014-09-03 13:39:13 +0900 | [diff] [blame] | 782 | if (acpi_has_method(dev->handle, "_SUN")) { |
Yasuaki Ishimatsu | bb74ac2 | 2012-11-16 02:56:59 +0100 | [diff] [blame] | 783 | result = device_create_file(&dev->dev, &dev_attr_sun); |
| 784 | if (result) |
| 785 | goto end; |
Yasuaki Ishimatsu | bb74ac2 | 2012-11-16 02:56:59 +0100 | [diff] [blame] | 786 | } |
| 787 | |
Srinivas Pandruvada | c713cd7 | 2014-01-10 16:00:05 -0800 | [diff] [blame] | 788 | if (acpi_has_method(dev->handle, "_STA")) { |
| 789 | result = device_create_file(&dev->dev, &dev_attr_status); |
| 790 | if (result) |
| 791 | goto end; |
| 792 | } |
| 793 | |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 794 | /* |
| 795 | * If device has _EJ0, 'eject' file is created that is used to trigger |
| 796 | * hot-removal function from userland. |
| 797 | */ |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 798 | if (acpi_has_method(dev->handle, "_EJ0")) { |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 799 | result = device_create_file(&dev->dev, &dev_attr_eject); |
Rafael J. Wysocki | 836aedb | 2013-01-24 12:49:59 +0100 | [diff] [blame] | 800 | if (result) |
| 801 | return result; |
| 802 | } |
| 803 | |
| 804 | if (dev->flags.power_manageable) { |
| 805 | result = device_create_file(&dev->dev, &dev_attr_power_state); |
| 806 | if (result) |
| 807 | return result; |
| 808 | |
| 809 | if (dev->power.flags.power_resources) |
| 810 | result = device_create_file(&dev->dev, |
| 811 | &dev_attr_real_power_state); |
| 812 | } |
| 813 | |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 814 | end: |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 815 | return result; |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 816 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 818 | static void acpi_device_remove_files(struct acpi_device *dev) |
| 819 | { |
Rafael J. Wysocki | 836aedb | 2013-01-24 12:49:59 +0100 | [diff] [blame] | 820 | if (dev->flags.power_manageable) { |
| 821 | device_remove_file(&dev->dev, &dev_attr_power_state); |
| 822 | if (dev->power.flags.power_resources) |
| 823 | device_remove_file(&dev->dev, |
| 824 | &dev_attr_real_power_state); |
| 825 | } |
| 826 | |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 827 | /* |
Lance Ortiz | d1efe3c | 2012-10-02 12:43:23 -0600 | [diff] [blame] | 828 | * If device has _STR, remove 'description' file |
| 829 | */ |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 830 | if (acpi_has_method(dev->handle, "_STR")) { |
Lance Ortiz | d1efe3c | 2012-10-02 12:43:23 -0600 | [diff] [blame] | 831 | kfree(dev->pnp.str_obj); |
| 832 | device_remove_file(&dev->dev, &dev_attr_description); |
| 833 | } |
| 834 | /* |
| 835 | * If device has _EJ0, remove 'eject' file. |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 836 | */ |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 837 | if (acpi_has_method(dev->handle, "_EJ0")) |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 838 | device_remove_file(&dev->dev, &dev_attr_eject); |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 839 | |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 840 | if (acpi_has_method(dev->handle, "_SUN")) |
Yasuaki Ishimatsu | bb74ac2 | 2012-11-16 02:56:59 +0100 | [diff] [blame] | 841 | device_remove_file(&dev->dev, &dev_attr_sun); |
| 842 | |
Lv Zheng | 923d4a4 | 2012-10-30 14:43:26 +0100 | [diff] [blame] | 843 | if (dev->pnp.unique_id) |
| 844 | device_remove_file(&dev->dev, &dev_attr_uid); |
Toshi Kani | d4e1a69 | 2013-03-04 21:30:41 +0000 | [diff] [blame] | 845 | if (dev->pnp.type.bus_address) |
Lv Zheng | 923d4a4 | 2012-10-30 14:43:26 +0100 | [diff] [blame] | 846 | device_remove_file(&dev->dev, &dev_attr_adr); |
Bjorn Helgaas | 1131b93 | 2009-09-21 13:35:29 -0600 | [diff] [blame] | 847 | device_remove_file(&dev->dev, &dev_attr_modalias); |
| 848 | device_remove_file(&dev->dev, &dev_attr_hid); |
Srinivas Pandruvada | c713cd7 | 2014-01-10 16:00:05 -0800 | [diff] [blame] | 849 | if (acpi_has_method(dev->handle, "_STA")) |
| 850 | device_remove_file(&dev->dev, &dev_attr_status); |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 851 | if (dev->handle) |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 852 | device_remove_file(&dev->dev, &dev_attr_path); |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 853 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | /* -------------------------------------------------------------------------- |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 855 | ACPI Bus operations |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | -------------------------------------------------------------------------- */ |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 857 | |
Mika Westerberg | cf761af | 2012-10-31 22:44:41 +0100 | [diff] [blame] | 858 | static const struct acpi_device_id *__acpi_match_device( |
| 859 | struct acpi_device *device, const struct acpi_device_id *ids) |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 860 | { |
| 861 | const struct acpi_device_id *id; |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 862 | struct acpi_hardware_id *hwid; |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 863 | |
Zhao Yakui | 39a0ad8 | 2008-08-11 13:40:22 +0800 | [diff] [blame] | 864 | /* |
| 865 | * If the device is not present, it is unnecessary to load device |
| 866 | * driver for it. |
| 867 | */ |
| 868 | if (!device->status.present) |
Mika Westerberg | cf761af | 2012-10-31 22:44:41 +0100 | [diff] [blame] | 869 | return NULL; |
Zhao Yakui | 39a0ad8 | 2008-08-11 13:40:22 +0800 | [diff] [blame] | 870 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 871 | for (id = ids; id->id[0]; id++) |
| 872 | list_for_each_entry(hwid, &device->pnp.ids, list) |
| 873 | if (!strcmp((char *) id->id, hwid->id)) |
Mika Westerberg | cf761af | 2012-10-31 22:44:41 +0100 | [diff] [blame] | 874 | return id; |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 875 | |
Mika Westerberg | cf761af | 2012-10-31 22:44:41 +0100 | [diff] [blame] | 876 | return NULL; |
| 877 | } |
| 878 | |
| 879 | /** |
| 880 | * acpi_match_device - Match a struct device against a given list of ACPI IDs |
| 881 | * @ids: Array of struct acpi_device_id object to match against. |
| 882 | * @dev: The device structure to match. |
| 883 | * |
| 884 | * Check if @dev has a valid ACPI handle and if there is a struct acpi_device |
| 885 | * object for that handle and use that object to match against a given list of |
| 886 | * device IDs. |
| 887 | * |
| 888 | * Return a pointer to the first matching ID on success or %NULL on failure. |
| 889 | */ |
| 890 | const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids, |
| 891 | const struct device *dev) |
| 892 | { |
| 893 | struct acpi_device *adev; |
Rafael J. Wysocki | 0613e1f | 2013-01-31 20:54:05 +0100 | [diff] [blame] | 894 | acpi_handle handle = ACPI_HANDLE(dev); |
Mika Westerberg | cf761af | 2012-10-31 22:44:41 +0100 | [diff] [blame] | 895 | |
Rafael J. Wysocki | 0613e1f | 2013-01-31 20:54:05 +0100 | [diff] [blame] | 896 | if (!ids || !handle || acpi_bus_get_device(handle, &adev)) |
Mika Westerberg | cf761af | 2012-10-31 22:44:41 +0100 | [diff] [blame] | 897 | return NULL; |
| 898 | |
Mika Westerberg | 5287078 | 2014-10-24 16:40:54 +0200 | [diff] [blame] | 899 | if (!acpi_companion_match(dev)) |
| 900 | return NULL; |
| 901 | |
Mika Westerberg | cf761af | 2012-10-31 22:44:41 +0100 | [diff] [blame] | 902 | return __acpi_match_device(adev, ids); |
| 903 | } |
| 904 | EXPORT_SYMBOL_GPL(acpi_match_device); |
| 905 | |
| 906 | int acpi_match_device_ids(struct acpi_device *device, |
| 907 | const struct acpi_device_id *ids) |
| 908 | { |
| 909 | return __acpi_match_device(device, ids) ? 0 : -ENOENT; |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 910 | } |
| 911 | EXPORT_SYMBOL(acpi_match_device_ids); |
| 912 | |
Rafael J. Wysocki | 0b22452 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 913 | static void acpi_free_power_resources_lists(struct acpi_device *device) |
| 914 | { |
| 915 | int i; |
| 916 | |
Rafael J. Wysocki | 993cbe5 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 917 | if (device->wakeup.flags.valid) |
| 918 | acpi_power_resources_list_free(&device->wakeup.resources); |
| 919 | |
Rafael J. Wysocki | 0b22452 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 920 | if (!device->flags.power_manageable) |
| 921 | return; |
| 922 | |
| 923 | for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) { |
| 924 | struct acpi_device_power_state *ps = &device->power.states[i]; |
| 925 | acpi_power_resources_list_free(&ps->resources); |
| 926 | } |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 927 | } |
| 928 | |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 929 | static void acpi_device_release(struct device *dev) |
| 930 | { |
| 931 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 932 | |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 933 | acpi_free_pnp_ids(&acpi_dev->pnp); |
Rafael J. Wysocki | 0b22452 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 934 | acpi_free_power_resources_lists(acpi_dev); |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 935 | kfree(acpi_dev); |
| 936 | } |
| 937 | |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 938 | static int acpi_bus_match(struct device *dev, struct device_driver *drv) |
| 939 | { |
| 940 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 941 | struct acpi_driver *acpi_drv = to_acpi_driver(drv); |
| 942 | |
Rafael J. Wysocki | 209d3b1 | 2012-12-21 00:36:48 +0100 | [diff] [blame] | 943 | return acpi_dev->flags.match_driver |
Rafael J. Wysocki | 805d410 | 2012-12-21 00:36:39 +0100 | [diff] [blame] | 944 | && !acpi_match_device_ids(acpi_dev, acpi_drv->ids); |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 945 | } |
| 946 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 947 | static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env) |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 948 | { |
| 949 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 950 | int len; |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 951 | |
Thomas Renninger | 2b2ae7c | 2010-10-01 10:53:59 +0200 | [diff] [blame] | 952 | if (list_empty(&acpi_dev->pnp.ids)) |
| 953 | return 0; |
| 954 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 955 | if (add_uevent_var(env, "MODALIAS=")) |
| 956 | return -ENOMEM; |
| 957 | len = create_modalias(acpi_dev, &env->buf[env->buflen - 1], |
| 958 | sizeof(env->buf) - env->buflen); |
Zhang Rui | 3d8e009 | 2014-01-14 16:46:35 +0800 | [diff] [blame] | 959 | if (len <= 0) |
| 960 | return len; |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 961 | env->buflen += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | return 0; |
| 963 | } |
| 964 | |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 965 | static void acpi_device_notify(acpi_handle handle, u32 event, void *data) |
| 966 | { |
| 967 | struct acpi_device *device = data; |
| 968 | |
| 969 | device->driver->ops.notify(device, event); |
| 970 | } |
| 971 | |
Lan Tianyu | 236105d | 2014-08-26 01:29:24 +0200 | [diff] [blame] | 972 | static void acpi_device_notify_fixed(void *data) |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 973 | { |
| 974 | struct acpi_device *device = data; |
| 975 | |
Bjorn Helgaas | 53de535 | 2009-08-31 22:32:20 +0000 | [diff] [blame] | 976 | /* Fixed hardware devices have no handles */ |
| 977 | acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device); |
Lan Tianyu | 236105d | 2014-08-26 01:29:24 +0200 | [diff] [blame] | 978 | } |
| 979 | |
| 980 | static acpi_status acpi_device_fixed_event(void *data) |
| 981 | { |
| 982 | acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_device_notify_fixed, data); |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 983 | return AE_OK; |
| 984 | } |
| 985 | |
| 986 | static int acpi_device_install_notify_handler(struct acpi_device *device) |
| 987 | { |
| 988 | acpi_status status; |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 989 | |
Bjorn Helgaas | ccba2a3 | 2009-09-21 19:29:15 +0000 | [diff] [blame] | 990 | if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON) |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 991 | status = |
| 992 | acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON, |
Lan Tianyu | 236105d | 2014-08-26 01:29:24 +0200 | [diff] [blame] | 993 | acpi_device_fixed_event, |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 994 | device); |
Bjorn Helgaas | ccba2a3 | 2009-09-21 19:29:15 +0000 | [diff] [blame] | 995 | else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON) |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 996 | status = |
| 997 | acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON, |
Lan Tianyu | 236105d | 2014-08-26 01:29:24 +0200 | [diff] [blame] | 998 | acpi_device_fixed_event, |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 999 | device); |
| 1000 | else |
| 1001 | status = acpi_install_notify_handler(device->handle, |
| 1002 | ACPI_DEVICE_NOTIFY, |
| 1003 | acpi_device_notify, |
| 1004 | device); |
| 1005 | |
| 1006 | if (ACPI_FAILURE(status)) |
| 1007 | return -EINVAL; |
| 1008 | return 0; |
| 1009 | } |
| 1010 | |
| 1011 | static void acpi_device_remove_notify_handler(struct acpi_device *device) |
| 1012 | { |
Bjorn Helgaas | ccba2a3 | 2009-09-21 19:29:15 +0000 | [diff] [blame] | 1013 | if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON) |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 1014 | acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON, |
Lan Tianyu | 236105d | 2014-08-26 01:29:24 +0200 | [diff] [blame] | 1015 | acpi_device_fixed_event); |
Bjorn Helgaas | ccba2a3 | 2009-09-21 19:29:15 +0000 | [diff] [blame] | 1016 | else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON) |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 1017 | acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON, |
Lan Tianyu | 236105d | 2014-08-26 01:29:24 +0200 | [diff] [blame] | 1018 | acpi_device_fixed_event); |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 1019 | else |
| 1020 | acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY, |
| 1021 | acpi_device_notify); |
| 1022 | } |
| 1023 | |
Rafael J. Wysocki | d9e455f | 2013-06-10 13:00:50 +0200 | [diff] [blame] | 1024 | static int acpi_device_probe(struct device *dev) |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 1025 | { |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 1026 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 1027 | struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver); |
| 1028 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | |
Rafael J. Wysocki | fc2e0a8 | 2014-08-26 01:29:21 +0200 | [diff] [blame] | 1030 | if (acpi_dev->handler && !acpi_is_pnp_device(acpi_dev)) |
Rafael J. Wysocki | 24071f4 | 2013-06-16 00:36:41 +0200 | [diff] [blame] | 1031 | return -EINVAL; |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 1032 | |
Rafael J. Wysocki | d9e455f | 2013-06-10 13:00:50 +0200 | [diff] [blame] | 1033 | if (!acpi_drv->ops.add) |
| 1034 | return -ENOSYS; |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 1035 | |
Rafael J. Wysocki | d9e455f | 2013-06-10 13:00:50 +0200 | [diff] [blame] | 1036 | ret = acpi_drv->ops.add(acpi_dev); |
| 1037 | if (ret) |
| 1038 | return ret; |
| 1039 | |
| 1040 | acpi_dev->driver = acpi_drv; |
| 1041 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 1042 | "Driver [%s] successfully bound to device [%s]\n", |
| 1043 | acpi_drv->name, acpi_dev->pnp.bus_id)); |
| 1044 | |
| 1045 | if (acpi_drv->ops.notify) { |
| 1046 | ret = acpi_device_install_notify_handler(acpi_dev); |
| 1047 | if (ret) { |
| 1048 | if (acpi_drv->ops.remove) |
| 1049 | acpi_drv->ops.remove(acpi_dev); |
| 1050 | |
| 1051 | acpi_dev->driver = NULL; |
| 1052 | acpi_dev->driver_data = NULL; |
| 1053 | return ret; |
| 1054 | } |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 1055 | } |
Rafael J. Wysocki | d9e455f | 2013-06-10 13:00:50 +0200 | [diff] [blame] | 1056 | |
| 1057 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found driver [%s] for device [%s]\n", |
| 1058 | acpi_drv->name, acpi_dev->pnp.bus_id)); |
| 1059 | get_device(dev); |
| 1060 | return 0; |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 1061 | } |
| 1062 | |
| 1063 | static int acpi_device_remove(struct device * dev) |
| 1064 | { |
| 1065 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 1066 | struct acpi_driver *acpi_drv = acpi_dev->driver; |
| 1067 | |
| 1068 | if (acpi_drv) { |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 1069 | if (acpi_drv->ops.notify) |
| 1070 | acpi_device_remove_notify_handler(acpi_dev); |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 1071 | if (acpi_drv->ops.remove) |
Rafael J. Wysocki | 51fac83 | 2013-01-24 00:24:48 +0100 | [diff] [blame] | 1072 | acpi_drv->ops.remove(acpi_dev); |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 1073 | } |
| 1074 | acpi_dev->driver = NULL; |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 1075 | acpi_dev->driver_data = NULL; |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 1076 | |
| 1077 | put_device(dev); |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 1078 | return 0; |
| 1079 | } |
| 1080 | |
David Brownell | 55955aa | 2007-05-08 00:28:35 -0700 | [diff] [blame] | 1081 | struct bus_type acpi_bus_type = { |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 1082 | .name = "acpi", |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 1083 | .match = acpi_bus_match, |
| 1084 | .probe = acpi_device_probe, |
| 1085 | .remove = acpi_device_remove, |
| 1086 | .uevent = acpi_device_uevent, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | }; |
| 1088 | |
Rafael J. Wysocki | d783156 | 2013-11-22 21:52:12 +0100 | [diff] [blame] | 1089 | static void acpi_device_del(struct acpi_device *device) |
Rafael J. Wysocki | caf5c03 | 2013-07-30 14:38:34 +0200 | [diff] [blame] | 1090 | { |
Rafael J. Wysocki | d783156 | 2013-11-22 21:52:12 +0100 | [diff] [blame] | 1091 | mutex_lock(&acpi_device_lock); |
| 1092 | if (device->parent) |
| 1093 | list_del(&device->node); |
| 1094 | |
| 1095 | list_del(&device->wakeup_list); |
| 1096 | mutex_unlock(&acpi_device_lock); |
| 1097 | |
| 1098 | acpi_power_add_remove_device(device, false); |
| 1099 | acpi_device_remove_files(device); |
| 1100 | if (device->remove) |
| 1101 | device->remove(device); |
| 1102 | |
| 1103 | device_del(&device->dev); |
| 1104 | } |
| 1105 | |
| 1106 | static LIST_HEAD(acpi_device_del_list); |
| 1107 | static DEFINE_MUTEX(acpi_device_del_lock); |
| 1108 | |
| 1109 | static void acpi_device_del_work_fn(struct work_struct *work_not_used) |
| 1110 | { |
| 1111 | for (;;) { |
| 1112 | struct acpi_device *adev; |
| 1113 | |
| 1114 | mutex_lock(&acpi_device_del_lock); |
| 1115 | |
| 1116 | if (list_empty(&acpi_device_del_list)) { |
| 1117 | mutex_unlock(&acpi_device_del_lock); |
| 1118 | break; |
| 1119 | } |
| 1120 | adev = list_first_entry(&acpi_device_del_list, |
| 1121 | struct acpi_device, del_list); |
| 1122 | list_del(&adev->del_list); |
| 1123 | |
| 1124 | mutex_unlock(&acpi_device_del_lock); |
| 1125 | |
| 1126 | acpi_device_del(adev); |
| 1127 | /* |
| 1128 | * Drop references to all power resources that might have been |
| 1129 | * used by the device. |
| 1130 | */ |
| 1131 | acpi_power_transition(adev, ACPI_STATE_D3_COLD); |
| 1132 | put_device(&adev->dev); |
| 1133 | } |
| 1134 | } |
| 1135 | |
| 1136 | /** |
| 1137 | * acpi_scan_drop_device - Drop an ACPI device object. |
| 1138 | * @handle: Handle of an ACPI namespace node, not used. |
| 1139 | * @context: Address of the ACPI device object to drop. |
| 1140 | * |
| 1141 | * This is invoked by acpi_ns_delete_node() during the removal of the ACPI |
| 1142 | * namespace node the device object pointed to by @context is attached to. |
| 1143 | * |
| 1144 | * The unregistration is carried out asynchronously to avoid running |
| 1145 | * acpi_device_del() under the ACPICA's namespace mutex and the list is used to |
| 1146 | * ensure the correct ordering (the device objects must be unregistered in the |
| 1147 | * same order in which the corresponding namespace nodes are deleted). |
| 1148 | */ |
| 1149 | static void acpi_scan_drop_device(acpi_handle handle, void *context) |
| 1150 | { |
| 1151 | static DECLARE_WORK(work, acpi_device_del_work_fn); |
| 1152 | struct acpi_device *adev = context; |
| 1153 | |
| 1154 | mutex_lock(&acpi_device_del_lock); |
| 1155 | |
| 1156 | /* |
| 1157 | * Use the ACPI hotplug workqueue which is ordered, so this work item |
| 1158 | * won't run after any hotplug work items submitted subsequently. That |
| 1159 | * prevents attempts to register device objects identical to those being |
| 1160 | * deleted from happening concurrently (such attempts result from |
| 1161 | * hotplug events handled via the ACPI hotplug workqueue). It also will |
| 1162 | * run after all of the work items submitted previosuly, which helps |
| 1163 | * those work items to ensure that they are not accessing stale device |
| 1164 | * objects. |
| 1165 | */ |
| 1166 | if (list_empty(&acpi_device_del_list)) |
| 1167 | acpi_queue_hotplug_work(&work); |
| 1168 | |
| 1169 | list_add_tail(&adev->del_list, &acpi_device_del_list); |
| 1170 | /* Make acpi_ns_validate_handle() return NULL for this handle. */ |
| 1171 | adev->handle = INVALID_ACPI_HANDLE; |
| 1172 | |
| 1173 | mutex_unlock(&acpi_device_del_lock); |
Rafael J. Wysocki | caf5c03 | 2013-07-30 14:38:34 +0200 | [diff] [blame] | 1174 | } |
| 1175 | |
Rafael J. Wysocki | 78ea463 | 2014-02-04 00:43:05 +0100 | [diff] [blame] | 1176 | static int acpi_get_device_data(acpi_handle handle, struct acpi_device **device, |
| 1177 | void (*callback)(void *)) |
Rafael J. Wysocki | caf5c03 | 2013-07-30 14:38:34 +0200 | [diff] [blame] | 1178 | { |
| 1179 | acpi_status status; |
| 1180 | |
| 1181 | if (!device) |
| 1182 | return -EINVAL; |
| 1183 | |
Rafael J. Wysocki | 78ea463 | 2014-02-04 00:43:05 +0100 | [diff] [blame] | 1184 | status = acpi_get_data_full(handle, acpi_scan_drop_device, |
| 1185 | (void **)device, callback); |
Rafael J. Wysocki | caf5c03 | 2013-07-30 14:38:34 +0200 | [diff] [blame] | 1186 | if (ACPI_FAILURE(status) || !*device) { |
| 1187 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n", |
| 1188 | handle)); |
| 1189 | return -ENODEV; |
| 1190 | } |
| 1191 | return 0; |
| 1192 | } |
Rafael J. Wysocki | 78ea463 | 2014-02-04 00:43:05 +0100 | [diff] [blame] | 1193 | |
| 1194 | int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device) |
| 1195 | { |
| 1196 | return acpi_get_device_data(handle, device, NULL); |
| 1197 | } |
Rafael J. Wysocki | 6585925 | 2013-10-01 23:02:43 +0200 | [diff] [blame] | 1198 | EXPORT_SYMBOL(acpi_bus_get_device); |
Rafael J. Wysocki | caf5c03 | 2013-07-30 14:38:34 +0200 | [diff] [blame] | 1199 | |
Rafael J. Wysocki | 78ea463 | 2014-02-04 00:43:05 +0100 | [diff] [blame] | 1200 | static void get_acpi_device(void *dev) |
| 1201 | { |
| 1202 | if (dev) |
| 1203 | get_device(&((struct acpi_device *)dev)->dev); |
| 1204 | } |
| 1205 | |
| 1206 | struct acpi_device *acpi_bus_get_acpi_device(acpi_handle handle) |
| 1207 | { |
| 1208 | struct acpi_device *adev = NULL; |
| 1209 | |
| 1210 | acpi_get_device_data(handle, &adev, get_acpi_device); |
| 1211 | return adev; |
| 1212 | } |
| 1213 | |
| 1214 | void acpi_bus_put_acpi_device(struct acpi_device *adev) |
| 1215 | { |
| 1216 | put_device(&adev->dev); |
| 1217 | } |
| 1218 | |
Rafael J. Wysocki | cf860be | 2013-01-24 12:49:49 +0100 | [diff] [blame] | 1219 | int acpi_device_add(struct acpi_device *device, |
| 1220 | void (*release)(struct device *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | { |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1222 | int result; |
| 1223 | struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id; |
| 1224 | int found = 0; |
Bjorn Helgaas | 66b7ed4 | 2009-09-21 19:29:05 +0000 | [diff] [blame] | 1225 | |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1226 | if (device->handle) { |
| 1227 | acpi_status status; |
| 1228 | |
Rafael J. Wysocki | d783156 | 2013-11-22 21:52:12 +0100 | [diff] [blame] | 1229 | status = acpi_attach_data(device->handle, acpi_scan_drop_device, |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1230 | device); |
| 1231 | if (ACPI_FAILURE(status)) { |
| 1232 | acpi_handle_err(device->handle, |
| 1233 | "Unable to attach device data\n"); |
| 1234 | return -ENODEV; |
| 1235 | } |
| 1236 | } |
| 1237 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | /* |
| 1239 | * Linkage |
| 1240 | * ------- |
| 1241 | * Link this device to its parent and siblings. |
| 1242 | */ |
| 1243 | INIT_LIST_HEAD(&device->children); |
| 1244 | INIT_LIST_HEAD(&device->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | INIT_LIST_HEAD(&device->wakeup_list); |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 1246 | INIT_LIST_HEAD(&device->physical_node_list); |
Rafael J. Wysocki | d783156 | 2013-11-22 21:52:12 +0100 | [diff] [blame] | 1247 | INIT_LIST_HEAD(&device->del_list); |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 1248 | mutex_init(&device->physical_node_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1250 | new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL); |
| 1251 | if (!new_bus_id) { |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1252 | pr_err(PREFIX "Memory allocation error\n"); |
| 1253 | result = -ENOMEM; |
| 1254 | goto err_detach; |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1255 | } |
| 1256 | |
Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 1257 | mutex_lock(&acpi_device_lock); |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1258 | /* |
| 1259 | * Find suitable bus_id and instance number in acpi_bus_id_list |
| 1260 | * If failed, create one and link it into acpi_bus_id_list |
| 1261 | */ |
| 1262 | list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) { |
Bjorn Helgaas | 1131b93 | 2009-09-21 13:35:29 -0600 | [diff] [blame] | 1263 | if (!strcmp(acpi_device_bus_id->bus_id, |
| 1264 | acpi_device_hid(device))) { |
| 1265 | acpi_device_bus_id->instance_no++; |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1266 | found = 1; |
| 1267 | kfree(new_bus_id); |
| 1268 | break; |
| 1269 | } |
| 1270 | } |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 1271 | if (!found) { |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1272 | acpi_device_bus_id = new_bus_id; |
Bjorn Helgaas | 1131b93 | 2009-09-21 13:35:29 -0600 | [diff] [blame] | 1273 | strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device)); |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1274 | acpi_device_bus_id->instance_no = 0; |
| 1275 | list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list); |
| 1276 | } |
Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 1277 | dev_set_name(&device->dev, "%s:%02x", acpi_device_bus_id->bus_id, acpi_device_bus_id->instance_no); |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1278 | |
Len Brown | 33b5715 | 2008-12-15 22:09:26 -0500 | [diff] [blame] | 1279 | if (device->parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | list_add_tail(&device->node, &device->parent->children); |
Len Brown | 33b5715 | 2008-12-15 22:09:26 -0500 | [diff] [blame] | 1281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | if (device->wakeup.flags.valid) |
| 1283 | list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list); |
Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 1284 | mutex_unlock(&acpi_device_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 1286 | if (device->parent) |
Bjorn Helgaas | 66b7ed4 | 2009-09-21 19:29:05 +0000 | [diff] [blame] | 1287 | device->dev.parent = &device->parent->dev; |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 1288 | device->dev.bus = &acpi_bus_type; |
Rafael J. Wysocki | 82c7d5e | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1289 | device->dev.release = release; |
Rafael J. Wysocki | cf860be | 2013-01-24 12:49:49 +0100 | [diff] [blame] | 1290 | result = device_add(&device->dev); |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 1291 | if (result) { |
Alex Chiang | 8b12b92 | 2009-05-14 08:31:32 -0600 | [diff] [blame] | 1292 | dev_err(&device->dev, "Error registering device\n"); |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1293 | goto err; |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1294 | } |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 1295 | |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1296 | result = acpi_device_setup_files(device); |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 1297 | if (result) |
Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 1298 | printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n", |
| 1299 | dev_name(&device->dev)); |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1300 | |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1301 | return 0; |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1302 | |
| 1303 | err: |
Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 1304 | mutex_lock(&acpi_device_lock); |
Len Brown | 33b5715 | 2008-12-15 22:09:26 -0500 | [diff] [blame] | 1305 | if (device->parent) |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1306 | list_del(&device->node); |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1307 | list_del(&device->wakeup_list); |
Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 1308 | mutex_unlock(&acpi_device_lock); |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1309 | |
| 1310 | err_detach: |
Rafael J. Wysocki | d783156 | 2013-11-22 21:52:12 +0100 | [diff] [blame] | 1311 | acpi_detach_data(device->handle, acpi_scan_drop_device); |
Zhang Rui | e49bd2d | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 1312 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | } |
| 1314 | |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 1315 | /* -------------------------------------------------------------------------- |
| 1316 | Driver Management |
| 1317 | -------------------------------------------------------------------------- */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | /** |
Randy Dunlap | d758a8f | 2006-01-06 01:31:00 -0500 | [diff] [blame] | 1319 | * acpi_bus_register_driver - register a driver with the ACPI bus |
| 1320 | * @driver: driver being registered |
| 1321 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | * Registers a driver with the ACPI bus. Searches the namespace for all |
Bjorn Helgaas | 9d9f749 | 2006-03-28 17:04:00 -0500 | [diff] [blame] | 1323 | * devices that match the driver's criteria and binds. Returns zero for |
| 1324 | * success or a negative error status for failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1326 | int acpi_bus_register_driver(struct acpi_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | { |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 1328 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | |
| 1330 | if (acpi_disabled) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1331 | return -ENODEV; |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 1332 | driver->drv.name = driver->name; |
| 1333 | driver->drv.bus = &acpi_bus_type; |
| 1334 | driver->drv.owner = driver->owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 1336 | ret = driver_register(&driver->drv); |
| 1337 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1340 | EXPORT_SYMBOL(acpi_bus_register_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | |
| 1342 | /** |
Hanjun Guo | b27b14c | 2013-09-22 15:42:41 +0800 | [diff] [blame] | 1343 | * acpi_bus_unregister_driver - unregisters a driver with the ACPI bus |
Randy Dunlap | d758a8f | 2006-01-06 01:31:00 -0500 | [diff] [blame] | 1344 | * @driver: driver to unregister |
| 1345 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | * Unregisters a driver with the ACPI bus. Searches the namespace for all |
| 1347 | * devices that match the driver's criteria and unbinds. |
| 1348 | */ |
Bjorn Helgaas | 06ea8e08 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 1349 | void acpi_bus_unregister_driver(struct acpi_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | { |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 1351 | driver_unregister(&driver->drv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | EXPORT_SYMBOL(acpi_bus_unregister_driver); |
| 1355 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | /* -------------------------------------------------------------------------- |
| 1357 | Device Enumeration |
| 1358 | -------------------------------------------------------------------------- */ |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 1359 | static struct acpi_device *acpi_bus_get_parent(acpi_handle handle) |
| 1360 | { |
Rafael J. Wysocki | 456de89 | 2013-01-31 20:57:40 +0100 | [diff] [blame] | 1361 | struct acpi_device *device = NULL; |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 1362 | acpi_status status; |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 1363 | |
| 1364 | /* |
| 1365 | * Fixed hardware devices do not appear in the namespace and do not |
| 1366 | * have handles, but we fabricate acpi_devices for them, so we have |
| 1367 | * to deal with them specially. |
| 1368 | */ |
Rafael J. Wysocki | 456de89 | 2013-01-31 20:57:40 +0100 | [diff] [blame] | 1369 | if (!handle) |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 1370 | return acpi_root; |
| 1371 | |
| 1372 | do { |
| 1373 | status = acpi_get_parent(handle, &handle); |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 1374 | if (ACPI_FAILURE(status)) |
Rafael J. Wysocki | 456de89 | 2013-01-31 20:57:40 +0100 | [diff] [blame] | 1375 | return status == AE_NULL_ENTRY ? NULL : acpi_root; |
| 1376 | } while (acpi_bus_get_device(handle, &device)); |
| 1377 | return device; |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 1378 | } |
| 1379 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 1380 | acpi_status |
| 1381 | acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd) |
| 1382 | { |
| 1383 | acpi_status status; |
| 1384 | acpi_handle tmp; |
| 1385 | struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL}; |
| 1386 | union acpi_object *obj; |
| 1387 | |
| 1388 | status = acpi_get_handle(handle, "_EJD", &tmp); |
| 1389 | if (ACPI_FAILURE(status)) |
| 1390 | return status; |
| 1391 | |
| 1392 | status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer); |
| 1393 | if (ACPI_SUCCESS(status)) { |
| 1394 | obj = buffer.pointer; |
Holger Macht | 3b5fee5 | 2008-02-14 13:40:34 +0100 | [diff] [blame] | 1395 | status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer, |
| 1396 | ejd); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 1397 | kfree(buffer.pointer); |
| 1398 | } |
| 1399 | return status; |
| 1400 | } |
| 1401 | EXPORT_SYMBOL_GPL(acpi_bus_get_ejd); |
| 1402 | |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1403 | static int acpi_bus_extract_wakeup_device_power_package(acpi_handle handle, |
| 1404 | struct acpi_device_wakeup *wakeup) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | { |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1406 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 1407 | union acpi_object *package = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | union acpi_object *element = NULL; |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1409 | acpi_status status; |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1410 | int err = -ENODATA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1411 | |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1412 | if (!wakeup) |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1413 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1414 | |
Rafael J. Wysocki | 993cbe5 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 1415 | INIT_LIST_HEAD(&wakeup->resources); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1417 | /* _PRW */ |
| 1418 | status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer); |
| 1419 | if (ACPI_FAILURE(status)) { |
| 1420 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW")); |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1421 | return err; |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1422 | } |
| 1423 | |
| 1424 | package = (union acpi_object *)buffer.pointer; |
| 1425 | |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1426 | if (!package || package->package.count < 2) |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1427 | goto out; |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1428 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | element = &(package->package.elements[0]); |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1430 | if (!element) |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1431 | goto out; |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1432 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | if (element->type == ACPI_TYPE_PACKAGE) { |
| 1434 | if ((element->package.count < 2) || |
| 1435 | (element->package.elements[0].type != |
| 1436 | ACPI_TYPE_LOCAL_REFERENCE) |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1437 | || (element->package.elements[1].type != ACPI_TYPE_INTEGER)) |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1438 | goto out; |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1439 | |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1440 | wakeup->gpe_device = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | element->package.elements[0].reference.handle; |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1442 | wakeup->gpe_number = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | (u32) element->package.elements[1].integer.value; |
| 1444 | } else if (element->type == ACPI_TYPE_INTEGER) { |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1445 | wakeup->gpe_device = NULL; |
| 1446 | wakeup->gpe_number = element->integer.value; |
| 1447 | } else { |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1448 | goto out; |
| 1449 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | |
| 1451 | element = &(package->package.elements[1]); |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1452 | if (element->type != ACPI_TYPE_INTEGER) |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1453 | goto out; |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1454 | |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1455 | wakeup->sleep_state = element->integer.value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1457 | err = acpi_extract_power_resources(package, 2, &wakeup->resources); |
| 1458 | if (err) |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1459 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1460 | |
Rafael J. Wysocki | 0596a52 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1461 | if (!list_empty(&wakeup->resources)) { |
| 1462 | int sleep_state; |
| 1463 | |
Rafael J. Wysocki | b5d667e | 2013-02-23 23:15:21 +0100 | [diff] [blame] | 1464 | err = acpi_power_wakeup_list_init(&wakeup->resources, |
| 1465 | &sleep_state); |
| 1466 | if (err) { |
| 1467 | acpi_handle_warn(handle, "Retrieving current states " |
| 1468 | "of wakeup power resources failed\n"); |
| 1469 | acpi_power_resources_list_free(&wakeup->resources); |
| 1470 | goto out; |
| 1471 | } |
Rafael J. Wysocki | 0596a52 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1472 | if (sleep_state < wakeup->sleep_state) { |
| 1473 | acpi_handle_warn(handle, "Overriding _PRW sleep state " |
| 1474 | "(S%d) by S%d from power resources\n", |
| 1475 | (int)wakeup->sleep_state, sleep_state); |
| 1476 | wakeup->sleep_state = sleep_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | } |
Rafael J. Wysocki | 9874647 | 2010-07-08 00:43:36 +0200 | [diff] [blame] | 1479 | |
Rafael J. Wysocki | b581a7f | 2010-12-17 22:34:01 +0100 | [diff] [blame] | 1480 | out: |
| 1481 | kfree(buffer.pointer); |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1482 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | } |
| 1484 | |
Rafael J. Wysocki | bd9b2f9 | 2014-07-14 22:41:41 +0200 | [diff] [blame] | 1485 | static void acpi_wakeup_gpe_init(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | { |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 1487 | struct acpi_device_id button_device_ids[] = { |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 1488 | {"PNP0C0C", 0}, |
Zhang Rui | b7e3830 | 2012-12-04 23:23:16 +0100 | [diff] [blame] | 1489 | {"PNP0C0D", 0}, |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 1490 | {"PNP0C0E", 0}, |
| 1491 | {"", 0}, |
| 1492 | }; |
Rafael J. Wysocki | bd9b2f9 | 2014-07-14 22:41:41 +0200 | [diff] [blame] | 1493 | struct acpi_device_wakeup *wakeup = &device->wakeup; |
Rafael J. Wysocki | f517709 | 2010-02-17 23:41:49 +0100 | [diff] [blame] | 1494 | acpi_status status; |
| 1495 | acpi_event_status event_status; |
| 1496 | |
Rafael J. Wysocki | bd9b2f9 | 2014-07-14 22:41:41 +0200 | [diff] [blame] | 1497 | wakeup->flags.notifier_present = 0; |
Rafael J. Wysocki | f517709 | 2010-02-17 23:41:49 +0100 | [diff] [blame] | 1498 | |
| 1499 | /* Power button, Lid switch always enable wakeup */ |
| 1500 | if (!acpi_match_device_ids(device, button_device_ids)) { |
Rafael J. Wysocki | bd9b2f9 | 2014-07-14 22:41:41 +0200 | [diff] [blame] | 1501 | wakeup->flags.run_wake = 1; |
Zhang Rui | b7e3830 | 2012-12-04 23:23:16 +0100 | [diff] [blame] | 1502 | if (!acpi_match_device_ids(device, &button_device_ids[1])) { |
| 1503 | /* Do not use Lid/sleep button for S5 wakeup */ |
Rafael J. Wysocki | bd9b2f9 | 2014-07-14 22:41:41 +0200 | [diff] [blame] | 1504 | if (wakeup->sleep_state == ACPI_STATE_S5) |
| 1505 | wakeup->sleep_state = ACPI_STATE_S4; |
Zhang Rui | b7e3830 | 2012-12-04 23:23:16 +0100 | [diff] [blame] | 1506 | } |
Rafael J. Wysocki | bd9b2f9 | 2014-07-14 22:41:41 +0200 | [diff] [blame] | 1507 | acpi_mark_gpe_for_wake(wakeup->gpe_device, wakeup->gpe_number); |
Rafael J. Wysocki | f2b56bc | 2011-01-06 23:34:22 +0100 | [diff] [blame] | 1508 | device_set_wakeup_capable(&device->dev, true); |
Rafael J. Wysocki | f517709 | 2010-02-17 23:41:49 +0100 | [diff] [blame] | 1509 | return; |
| 1510 | } |
| 1511 | |
Rafael J. Wysocki | bd9b2f9 | 2014-07-14 22:41:41 +0200 | [diff] [blame] | 1512 | acpi_setup_gpe_for_wake(device->handle, wakeup->gpe_device, |
| 1513 | wakeup->gpe_number); |
| 1514 | status = acpi_get_gpe_status(wakeup->gpe_device, wakeup->gpe_number, |
| 1515 | &event_status); |
| 1516 | if (ACPI_FAILURE(status)) |
| 1517 | return; |
| 1518 | |
Lv Zheng | 2f85723 | 2014-10-10 10:40:05 +0800 | [diff] [blame] | 1519 | wakeup->flags.run_wake = !!(event_status & ACPI_EVENT_FLAG_HAS_HANDLER); |
Rafael J. Wysocki | f517709 | 2010-02-17 23:41:49 +0100 | [diff] [blame] | 1520 | } |
| 1521 | |
Rafael J. Wysocki | d57d09a | 2011-01-06 23:41:27 +0100 | [diff] [blame] | 1522 | static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device) |
Rafael J. Wysocki | f517709 | 2010-02-17 23:41:49 +0100 | [diff] [blame] | 1523 | { |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1524 | int err; |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 1525 | |
Rafael J. Wysocki | d57d09a | 2011-01-06 23:41:27 +0100 | [diff] [blame] | 1526 | /* Presence of _PRW indicates wake capable */ |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1527 | if (!acpi_has_method(device->handle, "_PRW")) |
Rafael J. Wysocki | d57d09a | 2011-01-06 23:41:27 +0100 | [diff] [blame] | 1528 | return; |
| 1529 | |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1530 | err = acpi_bus_extract_wakeup_device_power_package(device->handle, |
| 1531 | &device->wakeup); |
| 1532 | if (err) { |
| 1533 | dev_err(&device->dev, "_PRW evaluation error: %d\n", err); |
Rafael J. Wysocki | d57d09a | 2011-01-06 23:41:27 +0100 | [diff] [blame] | 1534 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1535 | } |
| 1536 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | device->wakeup.flags.valid = 1; |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 1538 | device->wakeup.prepare_count = 0; |
Rafael J. Wysocki | bd9b2f9 | 2014-07-14 22:41:41 +0200 | [diff] [blame] | 1539 | acpi_wakeup_gpe_init(device); |
Zhao Yakui | 729b2bd | 2008-03-19 13:26:54 +0800 | [diff] [blame] | 1540 | /* Call _PSW/_DSW object to disable its ability to wake the sleeping |
| 1541 | * system for the ACPI device with the _PRW object. |
| 1542 | * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW. |
| 1543 | * So it is necessary to call _DSW object first. Only when it is not |
| 1544 | * present will the _PSW object used. |
| 1545 | */ |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1546 | err = acpi_device_sleep_wake(device, 0, 0, 0); |
| 1547 | if (err) |
Rafael J. Wysocki | 77e7660 | 2008-07-07 03:33:34 +0200 | [diff] [blame] | 1548 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 1549 | "error in _DSW or _PSW evaluation\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 | } |
| 1551 | |
Rafael J. Wysocki | f33ce56 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 1552 | static void acpi_bus_init_power_state(struct acpi_device *device, int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | { |
Rafael J. Wysocki | f33ce56 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 1554 | struct acpi_device_power_state *ps = &device->power.states[state]; |
Rafael J. Wysocki | ef85bdb | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1555 | char pathname[5] = { '_', 'P', 'R', '0' + state, '\0' }; |
| 1556 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
Rafael J. Wysocki | f33ce56 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 1557 | acpi_status status; |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 1558 | |
Rafael J. Wysocki | f33ce56 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 1559 | INIT_LIST_HEAD(&ps->resources); |
| 1560 | |
Rafael J. Wysocki | ef85bdb | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1561 | /* Evaluate "_PRx" to get referenced power resources */ |
| 1562 | status = acpi_evaluate_object(device->handle, pathname, NULL, &buffer); |
| 1563 | if (ACPI_SUCCESS(status)) { |
| 1564 | union acpi_object *package = buffer.pointer; |
Rafael J. Wysocki | f33ce56 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 1565 | |
Rafael J. Wysocki | ef85bdb | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1566 | if (buffer.length && package |
| 1567 | && package->type == ACPI_TYPE_PACKAGE |
| 1568 | && package->package.count) { |
Rafael J. Wysocki | e88c9c6 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1569 | int err = acpi_extract_power_resources(package, 0, |
| 1570 | &ps->resources); |
| 1571 | if (!err) |
Rafael J. Wysocki | ef85bdb | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1572 | device->power.flags.power_resources = 1; |
Rafael J. Wysocki | f33ce56 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 1573 | } |
Rafael J. Wysocki | ef85bdb | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1574 | ACPI_FREE(buffer.pointer); |
Rafael J. Wysocki | f33ce56 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 1575 | } |
| 1576 | |
| 1577 | /* Evaluate "_PSx" to see if we can do explicit sets */ |
Rafael J. Wysocki | ef85bdb | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1578 | pathname[2] = 'S'; |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1579 | if (acpi_has_method(device->handle, pathname)) |
Rafael J. Wysocki | f33ce56 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 1580 | ps->flags.explicit_set = 1; |
| 1581 | |
| 1582 | /* |
| 1583 | * State is valid if there are means to put the device into it. |
| 1584 | * D3hot is only valid if _PR3 present. |
| 1585 | */ |
Rafael J. Wysocki | ef85bdb | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1586 | if (!list_empty(&ps->resources) |
Rafael J. Wysocki | f33ce56 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 1587 | || (ps->flags.explicit_set && state < ACPI_STATE_D3_HOT)) { |
| 1588 | ps->flags.valid = 1; |
| 1589 | ps->flags.os_accessible = 1; |
| 1590 | } |
| 1591 | |
| 1592 | ps->power = -1; /* Unknown - driver assigned */ |
| 1593 | ps->latency = -1; /* Unknown - driver assigned */ |
| 1594 | } |
| 1595 | |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1596 | static void acpi_bus_get_power_flags(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | { |
Rafael J. Wysocki | 8bc5053 | 2013-01-17 14:11:07 +0100 | [diff] [blame] | 1598 | u32 i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1600 | /* Presence of _PS0|_PR0 indicates 'power manageable' */ |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1601 | if (!acpi_has_method(device->handle, "_PS0") && |
| 1602 | !acpi_has_method(device->handle, "_PR0")) |
| 1603 | return; |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1604 | |
| 1605 | device->flags.power_manageable = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1606 | |
| 1607 | /* |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 1608 | * Power Management Flags |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | */ |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1610 | if (acpi_has_method(device->handle, "_PSC")) |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 1611 | device->power.flags.explicit_get = 1; |
Rafael J. Wysocki | f25c0ae | 2014-05-17 00:18:13 +0200 | [diff] [blame] | 1612 | |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1613 | if (acpi_has_method(device->handle, "_IRC")) |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 1614 | device->power.flags.inrush_current = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1615 | |
Rafael J. Wysocki | f25c0ae | 2014-05-17 00:18:13 +0200 | [diff] [blame] | 1616 | if (acpi_has_method(device->handle, "_DSW")) |
| 1617 | device->power.flags.dsw_present = 1; |
| 1618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | /* |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 1620 | * Enumerate supported power management states |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | */ |
Rafael J. Wysocki | f33ce56 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 1622 | for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) |
| 1623 | acpi_bus_init_power_state(device, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | |
Rafael J. Wysocki | 0b22452 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 1625 | INIT_LIST_HEAD(&device->power.states[ACPI_STATE_D3_COLD].resources); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 1627 | /* Set defaults for D0 and D3 states (always valid) */ |
| 1628 | device->power.states[ACPI_STATE_D0].flags.valid = 1; |
| 1629 | device->power.states[ACPI_STATE_D0].power = 100; |
Rafael J. Wysocki | 8ad928d | 2013-07-30 14:36:20 +0200 | [diff] [blame] | 1630 | device->power.states[ACPI_STATE_D3_COLD].flags.valid = 1; |
| 1631 | device->power.states[ACPI_STATE_D3_COLD].power = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | |
Rafael J. Wysocki | 5c7dd71 | 2012-05-18 00:39:35 +0200 | [diff] [blame] | 1633 | /* Set D3cold's explicit_set flag if _PS3 exists. */ |
| 1634 | if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set) |
| 1635 | device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1; |
| 1636 | |
Aaron Lu | 1399dfc | 2012-11-21 23:33:40 +0100 | [diff] [blame] | 1637 | /* Presence of _PS3 or _PRx means we can put the device into D3 cold */ |
| 1638 | if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set || |
| 1639 | device->power.flags.power_resources) |
| 1640 | device->power.states[ACPI_STATE_D3_COLD].flags.os_accessible = 1; |
| 1641 | |
Rafael J. Wysocki | b378549 | 2013-02-01 23:43:02 +0100 | [diff] [blame] | 1642 | if (acpi_bus_init_power(device)) { |
| 1643 | acpi_free_power_resources_lists(device); |
| 1644 | device->flags.power_manageable = 0; |
| 1645 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1646 | } |
| 1647 | |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1648 | static void acpi_bus_get_flags(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | /* Presence of _STA indicates 'dynamic_status' */ |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1651 | if (acpi_has_method(device->handle, "_STA")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | device->flags.dynamic_status = 1; |
| 1653 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | /* Presence of _RMV indicates 'removable' */ |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1655 | if (acpi_has_method(device->handle, "_RMV")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | device->flags.removable = 1; |
| 1657 | |
| 1658 | /* Presence of _EJD|_EJ0 indicates 'ejectable' */ |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1659 | if (acpi_has_method(device->handle, "_EJD") || |
| 1660 | acpi_has_method(device->handle, "_EJ0")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | device->flags.ejectable = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | } |
| 1663 | |
Bjorn Helgaas | c7bcb4e | 2009-09-21 19:29:25 +0000 | [diff] [blame] | 1664 | static void acpi_device_get_busid(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1666 | char bus_id[5] = { '?', 0 }; |
| 1667 | struct acpi_buffer buffer = { sizeof(bus_id), bus_id }; |
| 1668 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | |
| 1670 | /* |
| 1671 | * Bus ID |
| 1672 | * ------ |
| 1673 | * The device's Bus ID is simply the object name. |
| 1674 | * TBD: Shouldn't this value be unique (within the ACPI namespace)? |
| 1675 | */ |
Bjorn Helgaas | 859ac9a | 2009-09-21 19:29:50 +0000 | [diff] [blame] | 1676 | if (ACPI_IS_ROOT_DEVICE(device)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | strcpy(device->pnp.bus_id, "ACPI"); |
Bjorn Helgaas | 859ac9a | 2009-09-21 19:29:50 +0000 | [diff] [blame] | 1678 | return; |
| 1679 | } |
| 1680 | |
| 1681 | switch (device->device_type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1682 | case ACPI_BUS_TYPE_POWER_BUTTON: |
| 1683 | strcpy(device->pnp.bus_id, "PWRF"); |
| 1684 | break; |
| 1685 | case ACPI_BUS_TYPE_SLEEP_BUTTON: |
| 1686 | strcpy(device->pnp.bus_id, "SLPF"); |
| 1687 | break; |
| 1688 | default: |
Bjorn Helgaas | 66b7ed4 | 2009-09-21 19:29:05 +0000 | [diff] [blame] | 1689 | acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | /* Clean up trailing underscores (if any) */ |
| 1691 | for (i = 3; i > 1; i--) { |
| 1692 | if (bus_id[i] == '_') |
| 1693 | bus_id[i] = '\0'; |
| 1694 | else |
| 1695 | break; |
| 1696 | } |
| 1697 | strcpy(device->pnp.bus_id, bus_id); |
| 1698 | break; |
| 1699 | } |
| 1700 | } |
| 1701 | |
Zhang Rui | 5473526 | 2007-01-11 02:09:09 -0500 | [diff] [blame] | 1702 | /* |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1703 | * acpi_ata_match - see if an acpi object is an ATA device |
| 1704 | * |
| 1705 | * If an acpi object has one of the ACPI ATA methods defined, |
| 1706 | * then we can safely call it an ATA device. |
| 1707 | */ |
| 1708 | bool acpi_ata_match(acpi_handle handle) |
| 1709 | { |
| 1710 | return acpi_has_method(handle, "_GTF") || |
| 1711 | acpi_has_method(handle, "_GTM") || |
| 1712 | acpi_has_method(handle, "_STM") || |
| 1713 | acpi_has_method(handle, "_SDD"); |
| 1714 | } |
| 1715 | |
| 1716 | /* |
Toshi Kani | d4e1a69 | 2013-03-04 21:30:41 +0000 | [diff] [blame] | 1717 | * acpi_bay_match - see if an acpi object is an ejectable driver bay |
Zhang Rui | 5473526 | 2007-01-11 02:09:09 -0500 | [diff] [blame] | 1718 | * |
| 1719 | * If an acpi object is ejectable and has one of the ACPI ATA methods defined, |
| 1720 | * then we can safely call it an ejectable drive bay |
| 1721 | */ |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1722 | bool acpi_bay_match(acpi_handle handle) |
Toshi Kani | d4e1a69 | 2013-03-04 21:30:41 +0000 | [diff] [blame] | 1723 | { |
Zhang Rui | 5473526 | 2007-01-11 02:09:09 -0500 | [diff] [blame] | 1724 | acpi_handle phandle; |
| 1725 | |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1726 | if (!acpi_has_method(handle, "_EJ0")) |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1727 | return false; |
| 1728 | if (acpi_ata_match(handle)) |
| 1729 | return true; |
| 1730 | if (ACPI_FAILURE(acpi_get_parent(handle, &phandle))) |
| 1731 | return false; |
Zhang Rui | 5473526 | 2007-01-11 02:09:09 -0500 | [diff] [blame] | 1732 | |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1733 | return acpi_ata_match(phandle); |
Zhang Rui | 5473526 | 2007-01-11 02:09:09 -0500 | [diff] [blame] | 1734 | } |
| 1735 | |
Rafael J. Wysocki | b43109f | 2014-02-16 00:09:34 +0100 | [diff] [blame] | 1736 | bool acpi_device_is_battery(struct acpi_device *adev) |
Rafael J. Wysocki | 1e2380c | 2014-02-16 01:51:01 +0100 | [diff] [blame] | 1737 | { |
Rafael J. Wysocki | b43109f | 2014-02-16 00:09:34 +0100 | [diff] [blame] | 1738 | struct acpi_hardware_id *hwid; |
Rafael J. Wysocki | 1e2380c | 2014-02-16 01:51:01 +0100 | [diff] [blame] | 1739 | |
Rafael J. Wysocki | b43109f | 2014-02-16 00:09:34 +0100 | [diff] [blame] | 1740 | list_for_each_entry(hwid, &adev->pnp.ids, list) |
| 1741 | if (!strcmp("PNP0C0A", hwid->id)) |
| 1742 | return true; |
Rafael J. Wysocki | 1e2380c | 2014-02-16 01:51:01 +0100 | [diff] [blame] | 1743 | |
Rafael J. Wysocki | b43109f | 2014-02-16 00:09:34 +0100 | [diff] [blame] | 1744 | return false; |
Rafael J. Wysocki | 1e2380c | 2014-02-16 01:51:01 +0100 | [diff] [blame] | 1745 | } |
| 1746 | |
Rafael J. Wysocki | b43109f | 2014-02-16 00:09:34 +0100 | [diff] [blame] | 1747 | static bool is_ejectable_bay(struct acpi_device *adev) |
Rafael J. Wysocki | 1e2380c | 2014-02-16 01:51:01 +0100 | [diff] [blame] | 1748 | { |
Rafael J. Wysocki | b43109f | 2014-02-16 00:09:34 +0100 | [diff] [blame] | 1749 | acpi_handle handle = adev->handle; |
| 1750 | |
| 1751 | if (acpi_has_method(handle, "_EJ0") && acpi_device_is_battery(adev)) |
Rafael J. Wysocki | 1e2380c | 2014-02-16 01:51:01 +0100 | [diff] [blame] | 1752 | return true; |
| 1753 | |
| 1754 | return acpi_bay_match(handle); |
| 1755 | } |
| 1756 | |
Frank Seidel | 3620f2f | 2007-12-07 13:20:34 +0100 | [diff] [blame] | 1757 | /* |
Toshi Kani | d4e1a69 | 2013-03-04 21:30:41 +0000 | [diff] [blame] | 1758 | * acpi_dock_match - see if an acpi object has a _DCK method |
Frank Seidel | 3620f2f | 2007-12-07 13:20:34 +0100 | [diff] [blame] | 1759 | */ |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1760 | bool acpi_dock_match(acpi_handle handle) |
Frank Seidel | 3620f2f | 2007-12-07 13:20:34 +0100 | [diff] [blame] | 1761 | { |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1762 | return acpi_has_method(handle, "_DCK"); |
Frank Seidel | 3620f2f | 2007-12-07 13:20:34 +0100 | [diff] [blame] | 1763 | } |
| 1764 | |
Thomas Renninger | 620e112 | 2010-10-01 10:54:00 +0200 | [diff] [blame] | 1765 | const char *acpi_device_hid(struct acpi_device *device) |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1766 | { |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1767 | struct acpi_hardware_id *hid; |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1768 | |
Thomas Renninger | 2b2ae7c | 2010-10-01 10:53:59 +0200 | [diff] [blame] | 1769 | if (list_empty(&device->pnp.ids)) |
| 1770 | return dummy_hid; |
| 1771 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1772 | hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list); |
| 1773 | return hid->id; |
| 1774 | } |
| 1775 | EXPORT_SYMBOL(acpi_device_hid); |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1776 | |
Toshi Kani | d4e1a69 | 2013-03-04 21:30:41 +0000 | [diff] [blame] | 1777 | static void acpi_add_id(struct acpi_device_pnp *pnp, const char *dev_id) |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1778 | { |
| 1779 | struct acpi_hardware_id *id; |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1780 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1781 | id = kmalloc(sizeof(*id), GFP_KERNEL); |
| 1782 | if (!id) |
| 1783 | return; |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1784 | |
Thomas Meyer | 581de59 | 2011-08-06 11:32:56 +0200 | [diff] [blame] | 1785 | id->id = kstrdup(dev_id, GFP_KERNEL); |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1786 | if (!id->id) { |
| 1787 | kfree(id); |
| 1788 | return; |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1789 | } |
| 1790 | |
Toshi Kani | d4e1a69 | 2013-03-04 21:30:41 +0000 | [diff] [blame] | 1791 | list_add_tail(&id->list, &pnp->ids); |
| 1792 | pnp->type.hardware_id = 1; |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1793 | } |
| 1794 | |
Darrick J. Wong | 222e82a | 2010-03-24 14:38:37 +0100 | [diff] [blame] | 1795 | /* |
| 1796 | * Old IBM workstations have a DSDT bug wherein the SMBus object |
| 1797 | * lacks the SMBUS01 HID and the methods do not have the necessary "_" |
| 1798 | * prefix. Work around this. |
| 1799 | */ |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1800 | static bool acpi_ibm_smbus_match(acpi_handle handle) |
Darrick J. Wong | 222e82a | 2010-03-24 14:38:37 +0100 | [diff] [blame] | 1801 | { |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1802 | char node_name[ACPI_PATH_SEGMENT_LENGTH]; |
| 1803 | struct acpi_buffer path = { sizeof(node_name), node_name }; |
Darrick J. Wong | 222e82a | 2010-03-24 14:38:37 +0100 | [diff] [blame] | 1804 | |
| 1805 | if (!dmi_name_in_vendors("IBM")) |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1806 | return false; |
Darrick J. Wong | 222e82a | 2010-03-24 14:38:37 +0100 | [diff] [blame] | 1807 | |
| 1808 | /* Look for SMBS object */ |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1809 | if (ACPI_FAILURE(acpi_get_name(handle, ACPI_SINGLE_NAME, &path)) || |
| 1810 | strcmp("SMBS", path.pointer)) |
| 1811 | return false; |
Darrick J. Wong | 222e82a | 2010-03-24 14:38:37 +0100 | [diff] [blame] | 1812 | |
| 1813 | /* Does it have the necessary (but misnamed) methods? */ |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1814 | if (acpi_has_method(handle, "SBI") && |
| 1815 | acpi_has_method(handle, "SBR") && |
| 1816 | acpi_has_method(handle, "SBW")) |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1817 | return true; |
| 1818 | |
| 1819 | return false; |
Darrick J. Wong | 222e82a | 2010-03-24 14:38:37 +0100 | [diff] [blame] | 1820 | } |
| 1821 | |
Jiang Liu | ae3caa8 | 2014-02-19 14:02:19 +0800 | [diff] [blame] | 1822 | static bool acpi_object_is_system_bus(acpi_handle handle) |
| 1823 | { |
| 1824 | acpi_handle tmp; |
| 1825 | |
| 1826 | if (ACPI_SUCCESS(acpi_get_handle(NULL, "\\_SB", &tmp)) && |
| 1827 | tmp == handle) |
| 1828 | return true; |
| 1829 | if (ACPI_SUCCESS(acpi_get_handle(NULL, "\\_TZ", &tmp)) && |
| 1830 | tmp == handle) |
| 1831 | return true; |
| 1832 | |
| 1833 | return false; |
| 1834 | } |
| 1835 | |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1836 | static void acpi_set_pnp_ids(acpi_handle handle, struct acpi_device_pnp *pnp, |
| 1837 | int device_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1839 | acpi_status status; |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1840 | struct acpi_device_info *info; |
Lv Zheng | 78e25fe | 2012-10-31 02:25:24 +0000 | [diff] [blame] | 1841 | struct acpi_pnp_device_id_list *cid_list; |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1842 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1844 | switch (device_type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | case ACPI_BUS_TYPE_DEVICE: |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1846 | if (handle == ACPI_ROOT_OBJECT) { |
| 1847 | acpi_add_id(pnp, ACPI_SYSTEM_HID); |
Bjorn Helgaas | 859ac9a | 2009-09-21 19:29:50 +0000 | [diff] [blame] | 1848 | break; |
| 1849 | } |
| 1850 | |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1851 | status = acpi_get_object_info(handle, &info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | if (ACPI_FAILURE(status)) { |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1853 | pr_err(PREFIX "%s: Error reading device info\n", |
| 1854 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | return; |
| 1856 | } |
| 1857 | |
Rafael J. Wysocki | 549e684 | 2014-05-30 04:26:18 +0200 | [diff] [blame] | 1858 | if (info->valid & ACPI_VALID_HID) { |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1859 | acpi_add_id(pnp, info->hardware_id.string); |
Rafael J. Wysocki | 549e684 | 2014-05-30 04:26:18 +0200 | [diff] [blame] | 1860 | pnp->type.platform_id = 1; |
| 1861 | } |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1862 | if (info->valid & ACPI_VALID_CID) { |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1863 | cid_list = &info->compatible_id_list; |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1864 | for (i = 0; i < cid_list->count; i++) |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1865 | acpi_add_id(pnp, cid_list->ids[i].string); |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1866 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1867 | if (info->valid & ACPI_VALID_ADR) { |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1868 | pnp->bus_address = info->address; |
| 1869 | pnp->type.bus_address = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1870 | } |
Lv Zheng | ccf7804 | 2012-10-30 14:41:07 +0100 | [diff] [blame] | 1871 | if (info->valid & ACPI_VALID_UID) |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1872 | pnp->unique_id = kstrdup(info->unique_id.string, |
Lv Zheng | ccf7804 | 2012-10-30 14:41:07 +0100 | [diff] [blame] | 1873 | GFP_KERNEL); |
Zhang Rui | ae84333 | 2006-12-07 20:57:10 +0800 | [diff] [blame] | 1874 | |
Bjorn Helgaas | a83893ae | 2009-10-02 11:03:12 -0400 | [diff] [blame] | 1875 | kfree(info); |
| 1876 | |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1877 | /* |
| 1878 | * Some devices don't reliably have _HIDs & _CIDs, so add |
| 1879 | * synthetic HIDs to make sure drivers can find them. |
| 1880 | */ |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1881 | if (acpi_is_video_device(handle)) |
| 1882 | acpi_add_id(pnp, ACPI_VIDEO_HID); |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1883 | else if (acpi_bay_match(handle)) |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1884 | acpi_add_id(pnp, ACPI_BAY_HID); |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1885 | else if (acpi_dock_match(handle)) |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1886 | acpi_add_id(pnp, ACPI_DOCK_HID); |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 1887 | else if (acpi_ibm_smbus_match(handle)) |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1888 | acpi_add_id(pnp, ACPI_SMBUS_IBM_HID); |
Jiang Liu | ae3caa8 | 2014-02-19 14:02:19 +0800 | [diff] [blame] | 1889 | else if (list_empty(&pnp->ids) && |
| 1890 | acpi_object_is_system_bus(handle)) { |
| 1891 | /* \_SB, \_TZ, LNXSYBUS */ |
| 1892 | acpi_add_id(pnp, ACPI_BUS_HID); |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1893 | strcpy(pnp->device_name, ACPI_BUS_DEVICE_NAME); |
| 1894 | strcpy(pnp->device_class, ACPI_BUS_CLASS); |
Bjorn Helgaas | b7b30de | 2010-03-24 10:44:33 -0600 | [diff] [blame] | 1895 | } |
Zhang Rui | 5473526 | 2007-01-11 02:09:09 -0500 | [diff] [blame] | 1896 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | break; |
| 1898 | case ACPI_BUS_TYPE_POWER: |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1899 | acpi_add_id(pnp, ACPI_POWER_HID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | break; |
| 1901 | case ACPI_BUS_TYPE_PROCESSOR: |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1902 | acpi_add_id(pnp, ACPI_PROCESSOR_OBJECT_HID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1903 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | case ACPI_BUS_TYPE_THERMAL: |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1905 | acpi_add_id(pnp, ACPI_THERMAL_HID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1906 | break; |
| 1907 | case ACPI_BUS_TYPE_POWER_BUTTON: |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1908 | acpi_add_id(pnp, ACPI_BUTTON_HID_POWERF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | break; |
| 1910 | case ACPI_BUS_TYPE_SLEEP_BUTTON: |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1911 | acpi_add_id(pnp, ACPI_BUTTON_HID_SLEEPF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | break; |
| 1913 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | } |
| 1915 | |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1916 | void acpi_free_pnp_ids(struct acpi_device_pnp *pnp) |
| 1917 | { |
| 1918 | struct acpi_hardware_id *id, *tmp; |
| 1919 | |
| 1920 | list_for_each_entry_safe(id, tmp, &pnp->ids, list) { |
| 1921 | kfree(id->id); |
| 1922 | kfree(id); |
| 1923 | } |
| 1924 | kfree(pnp->unique_id); |
| 1925 | } |
| 1926 | |
Rafael J. Wysocki | 82c7d5e | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1927 | void acpi_init_device_object(struct acpi_device *device, acpi_handle handle, |
| 1928 | int type, unsigned long long sta) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1929 | { |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1930 | INIT_LIST_HEAD(&device->pnp.ids); |
| 1931 | device->device_type = type; |
| 1932 | device->handle = handle; |
| 1933 | device->parent = acpi_bus_get_parent(handle); |
Rafael J. Wysocki | 25db115 | 2013-11-22 21:56:06 +0100 | [diff] [blame] | 1934 | acpi_set_device_status(device, sta); |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1935 | acpi_device_get_busid(device); |
Toshi Kani | c0af417 | 2013-03-04 21:30:42 +0000 | [diff] [blame] | 1936 | acpi_set_pnp_ids(handle, &device->pnp, type); |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1937 | acpi_bus_get_flags(device); |
Rafael J. Wysocki | 2c0d4fe | 2013-01-29 13:57:20 +0100 | [diff] [blame] | 1938 | device->flags.match_driver = false; |
Rafael J. Wysocki | 202317a | 2013-11-22 21:54:37 +0100 | [diff] [blame] | 1939 | device->flags.initialized = true; |
| 1940 | device->flags.visited = false; |
Rafael J. Wysocki | cf860be | 2013-01-24 12:49:49 +0100 | [diff] [blame] | 1941 | device_initialize(&device->dev); |
| 1942 | dev_set_uevent_suppress(&device->dev, true); |
| 1943 | } |
Bjorn Helgaas | bc3b077 | 2009-09-21 19:29:20 +0000 | [diff] [blame] | 1944 | |
Rafael J. Wysocki | cf860be | 2013-01-24 12:49:49 +0100 | [diff] [blame] | 1945 | void acpi_device_add_finalize(struct acpi_device *device) |
| 1946 | { |
| 1947 | dev_set_uevent_suppress(&device->dev, false); |
| 1948 | kobject_uevent(&device->dev.kobj, KOBJ_ADD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1949 | } |
| 1950 | |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 1951 | static int acpi_add_single_object(struct acpi_device **child, |
| 1952 | acpi_handle handle, int type, |
Rafael J. Wysocki | 2c0d4fe | 2013-01-29 13:57:20 +0100 | [diff] [blame] | 1953 | unsigned long long sta) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | { |
Bjorn Helgaas | 77c2488 | 2009-09-21 19:29:30 +0000 | [diff] [blame] | 1955 | int result; |
| 1956 | struct acpi_device *device; |
Bjorn Helgaas | 29aaefa | 2009-09-21 19:28:54 +0000 | [diff] [blame] | 1957 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1958 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 1959 | device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1960 | if (!device) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 1961 | printk(KERN_ERR PREFIX "Memory allocation error\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1962 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1965 | acpi_init_device_object(device, handle, type, sta); |
| 1966 | acpi_bus_get_power_flags(device); |
Rafael J. Wysocki | d57d09a | 2011-01-06 23:41:27 +0100 | [diff] [blame] | 1967 | acpi_bus_get_wakeup_device_flags(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | |
Rafael J. Wysocki | cf860be | 2013-01-24 12:49:49 +0100 | [diff] [blame] | 1969 | result = acpi_device_add(device, acpi_device_release); |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1970 | if (result) { |
Hugh Dickins | 718fb0d | 2009-08-06 23:18:12 +0000 | [diff] [blame] | 1971 | acpi_device_release(&device->dev); |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1972 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1973 | } |
| 1974 | |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1975 | acpi_power_add_remove_device(device, true); |
Rafael J. Wysocki | cf860be | 2013-01-24 12:49:49 +0100 | [diff] [blame] | 1976 | acpi_device_add_finalize(device); |
Rafael J. Wysocki | d43e167 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 1977 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); |
| 1978 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Added %s [%s] parent %s\n", |
| 1979 | dev_name(&device->dev), (char *) buffer.pointer, |
| 1980 | device->parent ? dev_name(&device->parent->dev) : "(null)")); |
| 1981 | kfree(buffer.pointer); |
| 1982 | *child = device; |
| 1983 | return 0; |
Rafael J. Wysocki | bf325f9 | 2010-11-25 00:10:44 +0100 | [diff] [blame] | 1984 | } |
| 1985 | |
Bjorn Helgaas | 778cbc1 | 2009-09-21 19:30:06 +0000 | [diff] [blame] | 1986 | static int acpi_bus_type_and_status(acpi_handle handle, int *type, |
| 1987 | unsigned long long *sta) |
| 1988 | { |
| 1989 | acpi_status status; |
| 1990 | acpi_object_type acpi_type; |
| 1991 | |
| 1992 | status = acpi_get_type(handle, &acpi_type); |
| 1993 | if (ACPI_FAILURE(status)) |
| 1994 | return -ENODEV; |
| 1995 | |
| 1996 | switch (acpi_type) { |
| 1997 | case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */ |
| 1998 | case ACPI_TYPE_DEVICE: |
| 1999 | *type = ACPI_BUS_TYPE_DEVICE; |
| 2000 | status = acpi_bus_get_status_handle(handle, sta); |
| 2001 | if (ACPI_FAILURE(status)) |
| 2002 | return -ENODEV; |
| 2003 | break; |
| 2004 | case ACPI_TYPE_PROCESSOR: |
| 2005 | *type = ACPI_BUS_TYPE_PROCESSOR; |
| 2006 | status = acpi_bus_get_status_handle(handle, sta); |
| 2007 | if (ACPI_FAILURE(status)) |
| 2008 | return -ENODEV; |
| 2009 | break; |
| 2010 | case ACPI_TYPE_THERMAL: |
| 2011 | *type = ACPI_BUS_TYPE_THERMAL; |
| 2012 | *sta = ACPI_STA_DEFAULT; |
| 2013 | break; |
| 2014 | case ACPI_TYPE_POWER: |
| 2015 | *type = ACPI_BUS_TYPE_POWER; |
| 2016 | *sta = ACPI_STA_DEFAULT; |
| 2017 | break; |
| 2018 | default: |
| 2019 | return -ENODEV; |
| 2020 | } |
| 2021 | |
| 2022 | return 0; |
| 2023 | } |
| 2024 | |
Rafael J. Wysocki | 202317a | 2013-11-22 21:54:37 +0100 | [diff] [blame] | 2025 | bool acpi_device_is_present(struct acpi_device *adev) |
| 2026 | { |
| 2027 | if (adev->status.present || adev->status.functional) |
| 2028 | return true; |
| 2029 | |
| 2030 | adev->flags.initialized = false; |
| 2031 | return false; |
| 2032 | } |
| 2033 | |
Rafael J. Wysocki | 4b59cc1 | 2013-03-03 23:06:21 +0100 | [diff] [blame] | 2034 | static bool acpi_scan_handler_matching(struct acpi_scan_handler *handler, |
| 2035 | char *idstr, |
| 2036 | const struct acpi_device_id **matchid) |
| 2037 | { |
| 2038 | const struct acpi_device_id *devid; |
| 2039 | |
Rafael J. Wysocki | aca0a4e | 2014-05-30 04:21:52 +0200 | [diff] [blame] | 2040 | if (handler->match) |
| 2041 | return handler->match(idstr, matchid); |
| 2042 | |
Rafael J. Wysocki | 4b59cc1 | 2013-03-03 23:06:21 +0100 | [diff] [blame] | 2043 | for (devid = handler->ids; devid->id[0]; devid++) |
| 2044 | if (!strcmp((char *)devid->id, idstr)) { |
| 2045 | if (matchid) |
| 2046 | *matchid = devid; |
| 2047 | |
| 2048 | return true; |
| 2049 | } |
| 2050 | |
| 2051 | return false; |
| 2052 | } |
| 2053 | |
Toshi Kani | 6b772e8f | 2013-03-04 21:30:43 +0000 | [diff] [blame] | 2054 | static struct acpi_scan_handler *acpi_scan_match_handler(char *idstr, |
| 2055 | const struct acpi_device_id **matchid) |
| 2056 | { |
| 2057 | struct acpi_scan_handler *handler; |
| 2058 | |
| 2059 | list_for_each_entry(handler, &acpi_scan_handlers_list, list_node) |
| 2060 | if (acpi_scan_handler_matching(handler, idstr, matchid)) |
| 2061 | return handler; |
| 2062 | |
| 2063 | return NULL; |
| 2064 | } |
| 2065 | |
Rafael J. Wysocki | 3f8055c | 2013-03-03 23:08:16 +0100 | [diff] [blame] | 2066 | void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile *hotplug, bool val) |
| 2067 | { |
Rafael J. Wysocki | 3f8055c | 2013-03-03 23:08:16 +0100 | [diff] [blame] | 2068 | if (!!hotplug->enabled == !!val) |
| 2069 | return; |
| 2070 | |
| 2071 | mutex_lock(&acpi_scan_lock); |
| 2072 | |
| 2073 | hotplug->enabled = val; |
Rafael J. Wysocki | 3f8055c | 2013-03-03 23:08:16 +0100 | [diff] [blame] | 2074 | |
| 2075 | mutex_unlock(&acpi_scan_lock); |
| 2076 | } |
| 2077 | |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 2078 | static void acpi_scan_init_hotplug(struct acpi_device *adev) |
Rafael J. Wysocki | c569807 | 2013-03-03 23:05:14 +0100 | [diff] [blame] | 2079 | { |
Toshi Kani | 6b772e8f | 2013-03-04 21:30:43 +0000 | [diff] [blame] | 2080 | struct acpi_hardware_id *hwid; |
Rafael J. Wysocki | c569807 | 2013-03-03 23:05:14 +0100 | [diff] [blame] | 2081 | |
Rafael J. Wysocki | b43109f | 2014-02-16 00:09:34 +0100 | [diff] [blame] | 2082 | if (acpi_dock_match(adev->handle) || is_ejectable_bay(adev)) { |
Rafael J. Wysocki | 1e2380c | 2014-02-16 01:51:01 +0100 | [diff] [blame] | 2083 | acpi_dock_add(adev); |
| 2084 | return; |
| 2085 | } |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 2086 | list_for_each_entry(hwid, &adev->pnp.ids, list) { |
| 2087 | struct acpi_scan_handler *handler; |
Rafael J. Wysocki | c569807 | 2013-03-03 23:05:14 +0100 | [diff] [blame] | 2088 | |
Toshi Kani | 6b772e8f | 2013-03-04 21:30:43 +0000 | [diff] [blame] | 2089 | handler = acpi_scan_match_handler(hwid->id, NULL); |
Rafael J. Wysocki | 1a69947 | 2014-02-06 13:58:13 +0100 | [diff] [blame] | 2090 | if (handler) { |
| 2091 | adev->flags.hotplug_notify = true; |
| 2092 | break; |
| 2093 | } |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 2094 | } |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 2095 | } |
| 2096 | |
Lan Tianyu | 40e7fcb | 2014-11-23 21:22:54 +0800 | [diff] [blame^] | 2097 | static void acpi_device_dep_initialize(struct acpi_device *adev) |
| 2098 | { |
| 2099 | struct acpi_dep_data *dep; |
| 2100 | struct acpi_handle_list dep_devices; |
| 2101 | acpi_status status; |
| 2102 | int i; |
| 2103 | |
| 2104 | if (!acpi_has_method(adev->handle, "_DEP")) |
| 2105 | return; |
| 2106 | |
| 2107 | status = acpi_evaluate_reference(adev->handle, "_DEP", NULL, |
| 2108 | &dep_devices); |
| 2109 | if (ACPI_FAILURE(status)) { |
| 2110 | dev_err(&adev->dev, "Failed to evaluate _DEP.\n"); |
| 2111 | return; |
| 2112 | } |
| 2113 | |
| 2114 | for (i = 0; i < dep_devices.count; i++) { |
| 2115 | struct acpi_device_info *info; |
| 2116 | int skip; |
| 2117 | |
| 2118 | status = acpi_get_object_info(dep_devices.handles[i], &info); |
| 2119 | if (ACPI_FAILURE(status)) { |
| 2120 | dev_err(&adev->dev, "Error reading device info\n"); |
| 2121 | continue; |
| 2122 | } |
| 2123 | |
| 2124 | /* |
| 2125 | * Skip the dependency of Windows System Power |
| 2126 | * Management Controller |
| 2127 | */ |
| 2128 | skip = info->valid & ACPI_VALID_HID && |
| 2129 | !strcmp(info->hardware_id.string, "INT3396"); |
| 2130 | |
| 2131 | kfree(info); |
| 2132 | |
| 2133 | if (skip) |
| 2134 | continue; |
| 2135 | |
| 2136 | dep = kzalloc(sizeof(struct acpi_dep_data), GFP_KERNEL); |
| 2137 | if (!dep) |
| 2138 | return; |
| 2139 | |
| 2140 | dep->master = dep_devices.handles[i]; |
| 2141 | dep->slave = adev->handle; |
| 2142 | adev->dep_unmet++; |
| 2143 | |
| 2144 | mutex_lock(&acpi_dep_list_lock); |
| 2145 | list_add_tail(&dep->node , &acpi_dep_list); |
| 2146 | mutex_unlock(&acpi_dep_list_lock); |
| 2147 | } |
| 2148 | } |
| 2149 | |
Rafael J. Wysocki | e386309 | 2012-12-21 00:36:47 +0100 | [diff] [blame] | 2150 | static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used, |
| 2151 | void *not_used, void **return_value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | { |
Rafael J. Wysocki | 805d410 | 2012-12-21 00:36:39 +0100 | [diff] [blame] | 2153 | struct acpi_device *device = NULL; |
Bjorn Helgaas | 778cbc1 | 2009-09-21 19:30:06 +0000 | [diff] [blame] | 2154 | int type; |
| 2155 | unsigned long long sta; |
| 2156 | int result; |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 2157 | |
Rafael J. Wysocki | 4002bf3 | 2012-12-21 00:36:44 +0100 | [diff] [blame] | 2158 | acpi_bus_get_device(handle, &device); |
| 2159 | if (device) |
| 2160 | goto out; |
| 2161 | |
Bjorn Helgaas | 778cbc1 | 2009-09-21 19:30:06 +0000 | [diff] [blame] | 2162 | result = acpi_bus_type_and_status(handle, &type, &sta); |
| 2163 | if (result) |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 2164 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2165 | |
Rafael J. Wysocki | 82c7d5e | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 2166 | if (type == ACPI_BUS_TYPE_POWER) { |
| 2167 | acpi_add_power_resource(handle); |
| 2168 | return AE_OK; |
| 2169 | } |
| 2170 | |
Rafael J. Wysocki | 2c0d4fe | 2013-01-29 13:57:20 +0100 | [diff] [blame] | 2171 | acpi_add_single_object(&device, handle, type, sta); |
Bjorn Helgaas | e3b87f8 | 2009-09-21 19:30:11 +0000 | [diff] [blame] | 2172 | if (!device) |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 2173 | return AE_CTRL_DEPTH; |
| 2174 | |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 2175 | acpi_scan_init_hotplug(device); |
Lan Tianyu | 40e7fcb | 2014-11-23 21:22:54 +0800 | [diff] [blame^] | 2176 | acpi_device_dep_initialize(device); |
Rafael J. Wysocki | 3c2cc7f | 2014-02-06 17:31:37 +0100 | [diff] [blame] | 2177 | |
Rafael J. Wysocki | 4002bf3 | 2012-12-21 00:36:44 +0100 | [diff] [blame] | 2178 | out: |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 2179 | if (!*return_value) |
| 2180 | *return_value = device; |
Rafael J. Wysocki | 805d410 | 2012-12-21 00:36:39 +0100 | [diff] [blame] | 2181 | |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 2182 | return AE_OK; |
| 2183 | } |
| 2184 | |
Zhang Rui | 4845934 | 2014-05-30 14:35:34 +0200 | [diff] [blame] | 2185 | static int acpi_check_spi_i2c_slave(struct acpi_resource *ares, void *data) |
| 2186 | { |
| 2187 | bool *is_spi_i2c_slave_p = data; |
| 2188 | |
| 2189 | if (ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS) |
| 2190 | return 1; |
| 2191 | |
| 2192 | /* |
| 2193 | * devices that are connected to UART still need to be enumerated to |
| 2194 | * platform bus |
| 2195 | */ |
| 2196 | if (ares->data.common_serial_bus.type != ACPI_RESOURCE_SERIAL_TYPE_UART) |
| 2197 | *is_spi_i2c_slave_p = true; |
| 2198 | |
| 2199 | /* no need to do more checking */ |
| 2200 | return -1; |
| 2201 | } |
| 2202 | |
| 2203 | static void acpi_default_enumeration(struct acpi_device *device) |
| 2204 | { |
| 2205 | struct list_head resource_list; |
| 2206 | bool is_spi_i2c_slave = false; |
| 2207 | |
| 2208 | if (!device->pnp.type.platform_id || device->handler) |
| 2209 | return; |
| 2210 | |
| 2211 | /* |
| 2212 | * Do not enemerate SPI/I2C slaves as they will be enuerated by their |
| 2213 | * respective parents. |
| 2214 | */ |
| 2215 | INIT_LIST_HEAD(&resource_list); |
| 2216 | acpi_dev_get_resources(device, &resource_list, acpi_check_spi_i2c_slave, |
| 2217 | &is_spi_i2c_slave); |
| 2218 | acpi_dev_free_resource_list(&resource_list); |
| 2219 | if (!is_spi_i2c_slave) |
| 2220 | acpi_create_platform_device(device); |
| 2221 | } |
| 2222 | |
Rafael J. Wysocki | 87b85b3 | 2013-02-06 13:05:22 +0100 | [diff] [blame] | 2223 | static int acpi_scan_attach_handler(struct acpi_device *device) |
| 2224 | { |
| 2225 | struct acpi_hardware_id *hwid; |
| 2226 | int ret = 0; |
| 2227 | |
| 2228 | list_for_each_entry(hwid, &device->pnp.ids, list) { |
Rafael J. Wysocki | c569807 | 2013-03-03 23:05:14 +0100 | [diff] [blame] | 2229 | const struct acpi_device_id *devid; |
| 2230 | struct acpi_scan_handler *handler; |
Rafael J. Wysocki | 87b85b3 | 2013-02-06 13:05:22 +0100 | [diff] [blame] | 2231 | |
Rafael J. Wysocki | c569807 | 2013-03-03 23:05:14 +0100 | [diff] [blame] | 2232 | handler = acpi_scan_match_handler(hwid->id, &devid); |
| 2233 | if (handler) { |
Rafael J. Wysocki | d34afa9 | 2014-05-30 04:27:31 +0200 | [diff] [blame] | 2234 | if (!handler->attach) { |
| 2235 | device->pnp.type.platform_id = 0; |
| 2236 | continue; |
| 2237 | } |
Rafael J. Wysocki | 9cb32ac | 2014-02-11 00:35:46 +0100 | [diff] [blame] | 2238 | device->handler = handler; |
Rafael J. Wysocki | c569807 | 2013-03-03 23:05:14 +0100 | [diff] [blame] | 2239 | ret = handler->attach(device, devid); |
Rafael J. Wysocki | 9cb32ac | 2014-02-11 00:35:46 +0100 | [diff] [blame] | 2240 | if (ret > 0) |
Rafael J. Wysocki | c569807 | 2013-03-03 23:05:14 +0100 | [diff] [blame] | 2241 | break; |
Rafael J. Wysocki | 9cb32ac | 2014-02-11 00:35:46 +0100 | [diff] [blame] | 2242 | |
| 2243 | device->handler = NULL; |
| 2244 | if (ret < 0) |
Rafael J. Wysocki | c569807 | 2013-03-03 23:05:14 +0100 | [diff] [blame] | 2245 | break; |
Rafael J. Wysocki | c569807 | 2013-03-03 23:05:14 +0100 | [diff] [blame] | 2246 | } |
Rafael J. Wysocki | 87b85b3 | 2013-02-06 13:05:22 +0100 | [diff] [blame] | 2247 | } |
Zhang Rui | 4845934 | 2014-05-30 14:35:34 +0200 | [diff] [blame] | 2248 | if (!ret) |
| 2249 | acpi_default_enumeration(device); |
| 2250 | |
Rafael J. Wysocki | ca589f9 | 2013-01-30 14:27:29 +0100 | [diff] [blame] | 2251 | return ret; |
| 2252 | } |
| 2253 | |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2254 | static void acpi_bus_attach(struct acpi_device *device) |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 2255 | { |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2256 | struct acpi_device *child; |
Rafael J. Wysocki | 1e2380c | 2014-02-16 01:51:01 +0100 | [diff] [blame] | 2257 | acpi_handle ejd; |
Rafael J. Wysocki | ca589f9 | 2013-01-30 14:27:29 +0100 | [diff] [blame] | 2258 | int ret; |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 2259 | |
Rafael J. Wysocki | 1e2380c | 2014-02-16 01:51:01 +0100 | [diff] [blame] | 2260 | if (ACPI_SUCCESS(acpi_bus_get_ejd(device->handle, &ejd))) |
| 2261 | register_dock_dependent_device(device, ejd); |
| 2262 | |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2263 | acpi_bus_get_status(device); |
Rafael J. Wysocki | 202317a | 2013-11-22 21:54:37 +0100 | [diff] [blame] | 2264 | /* Skip devices that are not present. */ |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2265 | if (!acpi_device_is_present(device)) { |
| 2266 | device->flags.visited = false; |
| 2267 | return; |
| 2268 | } |
Rafael J. Wysocki | 3a391a3 | 2013-07-12 13:45:59 +0200 | [diff] [blame] | 2269 | if (device->handler) |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2270 | goto ok; |
Rafael J. Wysocki | 3a391a3 | 2013-07-12 13:45:59 +0200 | [diff] [blame] | 2271 | |
Rafael J. Wysocki | 202317a | 2013-11-22 21:54:37 +0100 | [diff] [blame] | 2272 | if (!device->flags.initialized) { |
| 2273 | acpi_bus_update_power(device, NULL); |
| 2274 | device->flags.initialized = true; |
| 2275 | } |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2276 | device->flags.visited = false; |
Rafael J. Wysocki | ca589f9 | 2013-01-30 14:27:29 +0100 | [diff] [blame] | 2277 | ret = acpi_scan_attach_handler(device); |
Rafael J. Wysocki | 6931007 | 2013-11-07 01:41:01 +0100 | [diff] [blame] | 2278 | if (ret < 0) |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2279 | return; |
Rafael J. Wysocki | 6931007 | 2013-11-07 01:41:01 +0100 | [diff] [blame] | 2280 | |
| 2281 | device->flags.match_driver = true; |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2282 | if (!ret) { |
| 2283 | ret = device_attach(&device->dev); |
| 2284 | if (ret < 0) |
| 2285 | return; |
| 2286 | } |
| 2287 | device->flags.visited = true; |
Rafael J. Wysocki | 202317a | 2013-11-22 21:54:37 +0100 | [diff] [blame] | 2288 | |
| 2289 | ok: |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2290 | list_for_each_entry(child, &device->children, node) |
| 2291 | acpi_bus_attach(child); |
Rafael J. Wysocki | 8ab17fc | 2014-09-21 02:58:18 +0200 | [diff] [blame] | 2292 | |
| 2293 | if (device->handler && device->handler->hotplug.notify_online) |
| 2294 | device->handler->hotplug.notify_online(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2296 | |
Lan Tianyu | 40e7fcb | 2014-11-23 21:22:54 +0800 | [diff] [blame^] | 2297 | void acpi_walk_dep_device_list(acpi_handle handle) |
| 2298 | { |
| 2299 | struct acpi_dep_data *dep, *tmp; |
| 2300 | struct acpi_device *adev; |
| 2301 | |
| 2302 | mutex_lock(&acpi_dep_list_lock); |
| 2303 | list_for_each_entry_safe(dep, tmp, &acpi_dep_list, node) { |
| 2304 | if (dep->master == handle) { |
| 2305 | acpi_bus_get_device(dep->slave, &adev); |
| 2306 | if (!adev) |
| 2307 | continue; |
| 2308 | |
| 2309 | adev->dep_unmet--; |
| 2310 | if (!adev->dep_unmet) |
| 2311 | acpi_bus_attach(adev); |
| 2312 | list_del(&dep->node); |
| 2313 | kfree(dep); |
| 2314 | } |
| 2315 | } |
| 2316 | mutex_unlock(&acpi_dep_list_lock); |
| 2317 | } |
| 2318 | EXPORT_SYMBOL_GPL(acpi_walk_dep_device_list); |
| 2319 | |
Rafael J. Wysocki | b8bd759 | 2013-01-19 01:27:35 +0100 | [diff] [blame] | 2320 | /** |
| 2321 | * acpi_bus_scan - Add ACPI device node objects in a given namespace scope. |
| 2322 | * @handle: Root of the namespace scope to scan. |
Thomas Renninger | 7779688 | 2010-01-29 17:48:52 +0100 | [diff] [blame] | 2323 | * |
Rafael J. Wysocki | b8bd759 | 2013-01-19 01:27:35 +0100 | [diff] [blame] | 2324 | * Scan a given ACPI tree (probably recently hot-plugged) and create and add |
| 2325 | * found devices. |
Thomas Renninger | 7779688 | 2010-01-29 17:48:52 +0100 | [diff] [blame] | 2326 | * |
Rafael J. Wysocki | b8bd759 | 2013-01-19 01:27:35 +0100 | [diff] [blame] | 2327 | * If no devices were found, -ENODEV is returned, but it does not mean that |
| 2328 | * there has been a real error. There just have been no suitable ACPI objects |
| 2329 | * in the table trunk from which the kernel could create a device and add an |
| 2330 | * appropriate driver. |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 2331 | * |
| 2332 | * Must be called under acpi_scan_lock. |
Thomas Renninger | 7779688 | 2010-01-29 17:48:52 +0100 | [diff] [blame] | 2333 | */ |
Rafael J. Wysocki | b8bd759 | 2013-01-19 01:27:35 +0100 | [diff] [blame] | 2334 | int acpi_bus_scan(acpi_handle handle) |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 2335 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2336 | void *device = NULL; |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 2337 | |
Rafael J. Wysocki | 0cd6ac5 | 2012-12-21 00:36:49 +0100 | [diff] [blame] | 2338 | if (ACPI_SUCCESS(acpi_bus_check_add(handle, 0, NULL, &device))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2339 | acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX, |
Rafael J. Wysocki | e386309 | 2012-12-21 00:36:47 +0100 | [diff] [blame] | 2340 | acpi_bus_check_add, NULL, NULL, &device); |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 2341 | |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2342 | if (device) { |
| 2343 | acpi_bus_attach(device); |
| 2344 | return 0; |
| 2345 | } |
| 2346 | return -ENODEV; |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 2347 | } |
Rafael J. Wysocki | b8bd759 | 2013-01-19 01:27:35 +0100 | [diff] [blame] | 2348 | EXPORT_SYMBOL(acpi_bus_scan); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2349 | |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 2350 | /** |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2351 | * acpi_bus_trim - Detach scan handlers and drivers from ACPI device objects. |
| 2352 | * @adev: Root of the ACPI namespace scope to walk. |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 2353 | * |
| 2354 | * Must be called under acpi_scan_lock. |
| 2355 | */ |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2356 | void acpi_bus_trim(struct acpi_device *adev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2357 | { |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2358 | struct acpi_scan_handler *handler = adev->handler; |
| 2359 | struct acpi_device *child; |
| 2360 | |
| 2361 | list_for_each_entry_reverse(child, &adev->children, node) |
| 2362 | acpi_bus_trim(child); |
| 2363 | |
Rafael J. Wysocki | a951c77 | 2014-01-27 23:08:09 +0100 | [diff] [blame] | 2364 | adev->flags.match_driver = false; |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2365 | if (handler) { |
| 2366 | if (handler->detach) |
| 2367 | handler->detach(adev); |
| 2368 | |
| 2369 | adev->handler = NULL; |
| 2370 | } else { |
| 2371 | device_release_driver(&adev->dev); |
| 2372 | } |
Rafael J. Wysocki | cecdb19 | 2013-01-15 13:24:02 +0100 | [diff] [blame] | 2373 | /* |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2374 | * Most likely, the device is going away, so put it into D3cold before |
| 2375 | * that. |
Rafael J. Wysocki | 05404d8 | 2013-01-15 13:24:13 +0100 | [diff] [blame] | 2376 | */ |
Rafael J. Wysocki | 2c22e65 | 2013-11-25 00:52:21 +0100 | [diff] [blame] | 2377 | acpi_device_set_power(adev, ACPI_STATE_D3_COLD); |
| 2378 | adev->flags.initialized = false; |
| 2379 | adev->flags.visited = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | } |
Kristen Accardi | ceaba66 | 2006-02-23 17:56:01 -0800 | [diff] [blame] | 2381 | EXPORT_SYMBOL_GPL(acpi_bus_trim); |
| 2382 | |
Bjorn Helgaas | e8b945c | 2009-09-21 19:28:59 +0000 | [diff] [blame] | 2383 | static int acpi_bus_scan_fixed(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2384 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 2385 | int result = 0; |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 2386 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2387 | /* |
| 2388 | * Enumerate all fixed-feature devices. |
| 2389 | */ |
Rafael J. Wysocki | 2c0d4fe | 2013-01-29 13:57:20 +0100 | [diff] [blame] | 2390 | if (!(acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON)) { |
| 2391 | struct acpi_device *device = NULL; |
| 2392 | |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 2393 | result = acpi_add_single_object(&device, NULL, |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 2394 | ACPI_BUS_TYPE_POWER_BUTTON, |
Rafael J. Wysocki | 2c0d4fe | 2013-01-29 13:57:20 +0100 | [diff] [blame] | 2395 | ACPI_STA_DEFAULT); |
| 2396 | if (result) |
| 2397 | return result; |
| 2398 | |
Rafael J. Wysocki | 8834616 | 2013-11-18 14:18:47 +0100 | [diff] [blame] | 2399 | device->flags.match_driver = true; |
Rafael J. Wysocki | 2c0d4fe | 2013-01-29 13:57:20 +0100 | [diff] [blame] | 2400 | result = device_attach(&device->dev); |
| 2401 | if (result < 0) |
| 2402 | return result; |
| 2403 | |
Daniel Drake | c10d7a1 | 2012-05-10 00:08:43 +0100 | [diff] [blame] | 2404 | device_init_wakeup(&device->dev, true); |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 2405 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2406 | |
Rafael J. Wysocki | 2c0d4fe | 2013-01-29 13:57:20 +0100 | [diff] [blame] | 2407 | if (!(acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON)) { |
| 2408 | struct acpi_device *device = NULL; |
| 2409 | |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 2410 | result = acpi_add_single_object(&device, NULL, |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 2411 | ACPI_BUS_TYPE_SLEEP_BUTTON, |
Rafael J. Wysocki | 2c0d4fe | 2013-01-29 13:57:20 +0100 | [diff] [blame] | 2412 | ACPI_STA_DEFAULT); |
| 2413 | if (result) |
| 2414 | return result; |
| 2415 | |
Rafael J. Wysocki | 8834616 | 2013-11-18 14:18:47 +0100 | [diff] [blame] | 2416 | device->flags.match_driver = true; |
Rafael J. Wysocki | 2c0d4fe | 2013-01-29 13:57:20 +0100 | [diff] [blame] | 2417 | result = device_attach(&device->dev); |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 2418 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2419 | |
Rafael J. Wysocki | 2c0d4fe | 2013-01-29 13:57:20 +0100 | [diff] [blame] | 2420 | return result < 0 ? result : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | } |
| 2422 | |
Bjorn Helgaas | e747f27 | 2009-03-24 16:49:43 -0600 | [diff] [blame] | 2423 | int __init acpi_scan_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2424 | { |
| 2425 | int result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2426 | |
Patrick Mochel | 5b32726 | 2006-05-10 10:33:00 -0400 | [diff] [blame] | 2427 | result = bus_register(&acpi_bus_type); |
| 2428 | if (result) { |
| 2429 | /* We don't want to quit even if we failed to add suspend/resume */ |
| 2430 | printk(KERN_ERR PREFIX "Could not register bus type\n"); |
| 2431 | } |
| 2432 | |
Rafael J. Wysocki | 92ef2a2 | 2012-12-21 00:36:40 +0100 | [diff] [blame] | 2433 | acpi_pci_root_init(); |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 2434 | acpi_pci_link_init(); |
Rafael J. Wysocki | ac212b6 | 2013-05-03 00:26:22 +0200 | [diff] [blame] | 2435 | acpi_processor_init(); |
Rafael J. Wysocki | f58b082 | 2013-03-06 23:46:20 +0100 | [diff] [blame] | 2436 | acpi_lpss_init(); |
Lan Tianyu | 2fa97fe | 2013-06-05 02:27:50 +0000 | [diff] [blame] | 2437 | acpi_cmos_rtc_init(); |
Rafael J. Wysocki | 737f1a9 | 2013-02-08 23:52:39 +0100 | [diff] [blame] | 2438 | acpi_container_init(); |
Rafael J. Wysocki | 0a34764 | 2013-03-03 23:18:03 +0100 | [diff] [blame] | 2439 | acpi_memory_hotplug_init(); |
Zhang Rui | eec15ed | 2014-05-30 04:23:01 +0200 | [diff] [blame] | 2440 | acpi_pnp_init(); |
Zhang Rui | 3230bbf | 2014-03-14 00:34:05 +0800 | [diff] [blame] | 2441 | acpi_int340x_thermal_init(); |
Rafael J. Wysocki | 97d9a9e | 2010-11-25 00:10:02 +0100 | [diff] [blame] | 2442 | |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 2443 | mutex_lock(&acpi_scan_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2444 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2445 | * Enumerate devices in the ACPI namespace. |
| 2446 | */ |
Rafael J. Wysocki | 0cd6ac5 | 2012-12-21 00:36:49 +0100 | [diff] [blame] | 2447 | result = acpi_bus_scan(ACPI_ROOT_OBJECT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2448 | if (result) |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 2449 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2450 | |
Rafael J. Wysocki | 0cd6ac5 | 2012-12-21 00:36:49 +0100 | [diff] [blame] | 2451 | result = acpi_bus_get_device(ACPI_ROOT_OBJECT, &acpi_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2452 | if (result) |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 2453 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 | |
Aaron Lu | 2650ef4 | 2014-04-28 10:38:04 +0800 | [diff] [blame] | 2455 | /* Fixed feature devices do not exist on HW-reduced platform */ |
| 2456 | if (!acpi_gbl_reduced_hardware) { |
| 2457 | result = acpi_bus_scan_fixed(); |
| 2458 | if (result) { |
| 2459 | acpi_detach_data(acpi_root->handle, |
| 2460 | acpi_scan_drop_device); |
| 2461 | acpi_device_del(acpi_root); |
| 2462 | put_device(&acpi_root->dev); |
| 2463 | goto out; |
| 2464 | } |
Rafael J. Wysocki | b8bd759 | 2013-01-19 01:27:35 +0100 | [diff] [blame] | 2465 | } |
| 2466 | |
| 2467 | acpi_update_all_gpes(); |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 2468 | |
| 2469 | out: |
| 2470 | mutex_unlock(&acpi_scan_lock); |
| 2471 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2472 | } |