Rafael J. Wysocki | ec2cd81 | 2012-11-02 01:40:09 +0100 | [diff] [blame] | 1 | /* |
| 2 | * drivers/acpi/device_pm.c - ACPI device power management routines. |
| 3 | * |
| 4 | * Copyright (C) 2012, Intel Corp. |
| 5 | * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com> |
| 6 | * |
| 7 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as published |
| 11 | * by the Free Software Foundation. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, but |
| 14 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along |
| 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 20 | * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
| 21 | * |
| 22 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 23 | */ |
| 24 | |
| 25 | #include <linux/device.h> |
Rafael J. Wysocki | 86b3832 | 2012-11-02 01:40:18 +0100 | [diff] [blame] | 26 | #include <linux/export.h> |
Rafael J. Wysocki | ec2cd81 | 2012-11-02 01:40:09 +0100 | [diff] [blame] | 27 | #include <linux/mutex.h> |
Rafael J. Wysocki | 86b3832 | 2012-11-02 01:40:18 +0100 | [diff] [blame] | 28 | #include <linux/pm_qos.h> |
Rafael J. Wysocki | cd7bd02 | 2012-11-02 01:40:28 +0100 | [diff] [blame] | 29 | #include <linux/pm_runtime.h> |
Rafael J. Wysocki | ec2cd81 | 2012-11-02 01:40:09 +0100 | [diff] [blame] | 30 | |
| 31 | #include <acpi/acpi.h> |
| 32 | #include <acpi/acpi_bus.h> |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 33 | #include <acpi/acpi_drivers.h> |
| 34 | |
| 35 | #include "internal.h" |
| 36 | |
| 37 | #define _COMPONENT ACPI_POWER_COMPONENT |
| 38 | ACPI_MODULE_NAME("device_pm"); |
Rafael J. Wysocki | ec2cd81 | 2012-11-02 01:40:09 +0100 | [diff] [blame] | 39 | |
| 40 | static DEFINE_MUTEX(acpi_pm_notifier_lock); |
| 41 | |
| 42 | /** |
| 43 | * acpi_add_pm_notifier - Register PM notifier for given ACPI device. |
| 44 | * @adev: ACPI device to add the notifier for. |
| 45 | * @context: Context information to pass to the notifier routine. |
| 46 | * |
| 47 | * NOTE: @adev need not be a run-wake or wakeup device to be a valid source of |
| 48 | * PM wakeup events. For example, wakeup events may be generated for bridges |
| 49 | * if one of the devices below the bridge is signaling wakeup, even if the |
| 50 | * bridge itself doesn't have a wakeup GPE associated with it. |
| 51 | */ |
| 52 | acpi_status acpi_add_pm_notifier(struct acpi_device *adev, |
| 53 | acpi_notify_handler handler, void *context) |
| 54 | { |
| 55 | acpi_status status = AE_ALREADY_EXISTS; |
| 56 | |
| 57 | mutex_lock(&acpi_pm_notifier_lock); |
| 58 | |
| 59 | if (adev->wakeup.flags.notifier_present) |
| 60 | goto out; |
| 61 | |
| 62 | status = acpi_install_notify_handler(adev->handle, |
| 63 | ACPI_SYSTEM_NOTIFY, |
| 64 | handler, context); |
| 65 | if (ACPI_FAILURE(status)) |
| 66 | goto out; |
| 67 | |
| 68 | adev->wakeup.flags.notifier_present = true; |
| 69 | |
| 70 | out: |
| 71 | mutex_unlock(&acpi_pm_notifier_lock); |
| 72 | return status; |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * acpi_remove_pm_notifier - Unregister PM notifier from given ACPI device. |
| 77 | * @adev: ACPI device to remove the notifier from. |
| 78 | */ |
| 79 | acpi_status acpi_remove_pm_notifier(struct acpi_device *adev, |
| 80 | acpi_notify_handler handler) |
| 81 | { |
| 82 | acpi_status status = AE_BAD_PARAMETER; |
| 83 | |
| 84 | mutex_lock(&acpi_pm_notifier_lock); |
| 85 | |
| 86 | if (!adev->wakeup.flags.notifier_present) |
| 87 | goto out; |
| 88 | |
| 89 | status = acpi_remove_notify_handler(adev->handle, |
| 90 | ACPI_SYSTEM_NOTIFY, |
| 91 | handler); |
| 92 | if (ACPI_FAILURE(status)) |
| 93 | goto out; |
| 94 | |
| 95 | adev->wakeup.flags.notifier_present = false; |
| 96 | |
| 97 | out: |
| 98 | mutex_unlock(&acpi_pm_notifier_lock); |
| 99 | return status; |
| 100 | } |
Rafael J. Wysocki | 86b3832 | 2012-11-02 01:40:18 +0100 | [diff] [blame] | 101 | |
| 102 | /** |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 103 | * acpi_power_state_string - String representation of ACPI device power state. |
| 104 | * @state: ACPI device power state to return the string representation of. |
| 105 | */ |
| 106 | const char *acpi_power_state_string(int state) |
| 107 | { |
| 108 | switch (state) { |
| 109 | case ACPI_STATE_D0: |
| 110 | return "D0"; |
| 111 | case ACPI_STATE_D1: |
| 112 | return "D1"; |
| 113 | case ACPI_STATE_D2: |
| 114 | return "D2"; |
| 115 | case ACPI_STATE_D3_HOT: |
| 116 | return "D3hot"; |
| 117 | case ACPI_STATE_D3_COLD: |
Rafael J. Wysocki | 898fee4 | 2013-01-22 12:56:26 +0100 | [diff] [blame] | 118 | return "D3cold"; |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 119 | default: |
| 120 | return "(unknown)"; |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * acpi_device_get_power - Get power state of an ACPI device. |
| 126 | * @device: Device to get the power state of. |
| 127 | * @state: Place to store the power state of the device. |
| 128 | * |
| 129 | * This function does not update the device's power.state field, but it may |
| 130 | * update its parent's power.state field (when the parent's power state is |
| 131 | * unknown and the device's power state turns out to be D0). |
| 132 | */ |
| 133 | int acpi_device_get_power(struct acpi_device *device, int *state) |
| 134 | { |
| 135 | int result = ACPI_STATE_UNKNOWN; |
| 136 | |
| 137 | if (!device || !state) |
| 138 | return -EINVAL; |
| 139 | |
| 140 | if (!device->flags.power_manageable) { |
| 141 | /* TBD: Non-recursive algorithm for walking up hierarchy. */ |
| 142 | *state = device->parent ? |
| 143 | device->parent->power.state : ACPI_STATE_D0; |
| 144 | goto out; |
| 145 | } |
| 146 | |
| 147 | /* |
| 148 | * Get the device's power state either directly (via _PSC) or |
| 149 | * indirectly (via power resources). |
| 150 | */ |
| 151 | if (device->power.flags.explicit_get) { |
| 152 | unsigned long long psc; |
| 153 | acpi_status status = acpi_evaluate_integer(device->handle, |
| 154 | "_PSC", NULL, &psc); |
| 155 | if (ACPI_FAILURE(status)) |
| 156 | return -ENODEV; |
| 157 | |
| 158 | result = psc; |
| 159 | } |
| 160 | /* The test below covers ACPI_STATE_UNKNOWN too. */ |
| 161 | if (result <= ACPI_STATE_D2) { |
| 162 | ; /* Do nothing. */ |
| 163 | } else if (device->power.flags.power_resources) { |
| 164 | int error = acpi_power_get_inferred_state(device, &result); |
| 165 | if (error) |
| 166 | return error; |
| 167 | } else if (result == ACPI_STATE_D3_HOT) { |
| 168 | result = ACPI_STATE_D3; |
| 169 | } |
| 170 | |
| 171 | /* |
| 172 | * If we were unsure about the device parent's power state up to this |
| 173 | * point, the fact that the device is in D0 implies that the parent has |
| 174 | * to be in D0 too. |
| 175 | */ |
| 176 | if (device->parent && device->parent->power.state == ACPI_STATE_UNKNOWN |
| 177 | && result == ACPI_STATE_D0) |
| 178 | device->parent->power.state = ACPI_STATE_D0; |
| 179 | |
| 180 | *state = result; |
| 181 | |
| 182 | out: |
| 183 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is %s\n", |
| 184 | device->pnp.bus_id, acpi_power_state_string(*state))); |
| 185 | |
| 186 | return 0; |
| 187 | } |
| 188 | |
Rafael J. Wysocki | 9c0f45e | 2013-01-22 12:55:52 +0100 | [diff] [blame] | 189 | static int acpi_dev_pm_explicit_set(struct acpi_device *adev, int state) |
| 190 | { |
| 191 | if (adev->power.states[state].flags.explicit_set) { |
| 192 | char method[5] = { '_', 'P', 'S', '0' + state, '\0' }; |
| 193 | acpi_status status; |
| 194 | |
| 195 | status = acpi_evaluate_object(adev->handle, method, NULL, NULL); |
| 196 | if (ACPI_FAILURE(status)) |
| 197 | return -ENODEV; |
| 198 | } |
| 199 | return 0; |
| 200 | } |
| 201 | |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 202 | /** |
| 203 | * acpi_device_set_power - Set power state of an ACPI device. |
| 204 | * @device: Device to set the power state of. |
| 205 | * @state: New power state to set. |
| 206 | * |
| 207 | * Callers must ensure that the device is power manageable before using this |
| 208 | * function. |
| 209 | */ |
| 210 | int acpi_device_set_power(struct acpi_device *device, int state) |
| 211 | { |
| 212 | int result = 0; |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 213 | bool cut_power = false; |
| 214 | |
| 215 | if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD)) |
| 216 | return -EINVAL; |
| 217 | |
| 218 | /* Make sure this is a valid target state */ |
| 219 | |
| 220 | if (state == device->power.state) { |
| 221 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at %s\n", |
| 222 | acpi_power_state_string(state))); |
| 223 | return 0; |
| 224 | } |
| 225 | |
| 226 | if (!device->power.states[state].flags.valid) { |
| 227 | printk(KERN_WARNING PREFIX "Device does not support %s\n", |
| 228 | acpi_power_state_string(state)); |
| 229 | return -ENODEV; |
| 230 | } |
| 231 | if (device->parent && (state < device->parent->power.state)) { |
| 232 | printk(KERN_WARNING PREFIX |
| 233 | "Cannot set device to a higher-powered" |
| 234 | " state than parent\n"); |
| 235 | return -ENODEV; |
| 236 | } |
| 237 | |
| 238 | /* For D3cold we should first transition into D3hot. */ |
| 239 | if (state == ACPI_STATE_D3_COLD |
| 240 | && device->power.states[ACPI_STATE_D3_COLD].flags.os_accessible) { |
| 241 | state = ACPI_STATE_D3_HOT; |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 242 | cut_power = true; |
| 243 | } |
| 244 | |
Rafael J. Wysocki | e78adb7 | 2013-01-22 12:56:04 +0100 | [diff] [blame] | 245 | if (state < device->power.state && state != ACPI_STATE_D0 |
| 246 | && device->power.state >= ACPI_STATE_D3_HOT) { |
| 247 | printk(KERN_WARNING PREFIX |
| 248 | "Cannot transition to non-D0 state from D3\n"); |
| 249 | return -ENODEV; |
| 250 | } |
| 251 | |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 252 | /* |
| 253 | * Transition Power |
| 254 | * ---------------- |
Rafael J. Wysocki | e78adb7 | 2013-01-22 12:56:04 +0100 | [diff] [blame] | 255 | * In accordance with the ACPI specification first apply power (via |
| 256 | * power resources) and then evalute _PSx. |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 257 | */ |
Rafael J. Wysocki | e78adb7 | 2013-01-22 12:56:04 +0100 | [diff] [blame] | 258 | if (device->power.flags.power_resources) { |
| 259 | result = acpi_power_transition(device, state); |
Rafael J. Wysocki | 9c0f45e | 2013-01-22 12:55:52 +0100 | [diff] [blame] | 260 | if (result) |
| 261 | goto end; |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 262 | } |
Rafael J. Wysocki | e78adb7 | 2013-01-22 12:56:04 +0100 | [diff] [blame] | 263 | result = acpi_dev_pm_explicit_set(device, state); |
| 264 | if (result) |
| 265 | goto end; |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 266 | |
Rafael J. Wysocki | e565627 | 2013-01-22 12:56:35 +0100 | [diff] [blame] | 267 | if (cut_power) { |
| 268 | device->power.state = state; |
| 269 | state = ACPI_STATE_D3_COLD; |
| 270 | result = acpi_power_transition(device, state); |
| 271 | } |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 272 | |
Rafael J. Wysocki | e78adb7 | 2013-01-22 12:56:04 +0100 | [diff] [blame] | 273 | end: |
| 274 | if (result) { |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 275 | printk(KERN_WARNING PREFIX |
| 276 | "Device [%s] failed to transition to %s\n", |
| 277 | device->pnp.bus_id, |
| 278 | acpi_power_state_string(state)); |
Rafael J. Wysocki | e78adb7 | 2013-01-22 12:56:04 +0100 | [diff] [blame] | 279 | } else { |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 280 | device->power.state = state; |
| 281 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 282 | "Device [%s] transitioned to %s\n", |
| 283 | device->pnp.bus_id, |
| 284 | acpi_power_state_string(state))); |
| 285 | } |
| 286 | |
| 287 | return result; |
| 288 | } |
| 289 | EXPORT_SYMBOL(acpi_device_set_power); |
| 290 | |
| 291 | int acpi_bus_set_power(acpi_handle handle, int state) |
| 292 | { |
| 293 | struct acpi_device *device; |
| 294 | int result; |
| 295 | |
| 296 | result = acpi_bus_get_device(handle, &device); |
| 297 | if (result) |
| 298 | return result; |
| 299 | |
| 300 | if (!device->flags.power_manageable) { |
| 301 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 302 | "Device [%s] is not power manageable\n", |
| 303 | dev_name(&device->dev))); |
| 304 | return -ENODEV; |
| 305 | } |
| 306 | |
| 307 | return acpi_device_set_power(device, state); |
| 308 | } |
| 309 | EXPORT_SYMBOL(acpi_bus_set_power); |
| 310 | |
| 311 | int acpi_bus_init_power(struct acpi_device *device) |
| 312 | { |
| 313 | int state; |
| 314 | int result; |
| 315 | |
| 316 | if (!device) |
| 317 | return -EINVAL; |
| 318 | |
| 319 | device->power.state = ACPI_STATE_UNKNOWN; |
| 320 | |
| 321 | result = acpi_device_get_power(device, &state); |
| 322 | if (result) |
| 323 | return result; |
| 324 | |
Rafael J. Wysocki | a236780 | 2013-01-22 12:54:38 +0100 | [diff] [blame] | 325 | if (state < ACPI_STATE_D3_COLD && device->power.flags.power_resources) { |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 326 | result = acpi_power_on_resources(device, state); |
Rafael J. Wysocki | a236780 | 2013-01-22 12:54:38 +0100 | [diff] [blame] | 327 | if (result) |
| 328 | return result; |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 329 | |
Rafael J. Wysocki | 9c0f45e | 2013-01-22 12:55:52 +0100 | [diff] [blame] | 330 | result = acpi_dev_pm_explicit_set(device, state); |
| 331 | if (result) |
| 332 | return result; |
Rafael J. Wysocki | b378549 | 2013-02-01 23:43:02 +0100 | [diff] [blame^] | 333 | } else if (state == ACPI_STATE_UNKNOWN) { |
| 334 | /* No power resources and missing _PSC? Try to force D0. */ |
| 335 | state = ACPI_STATE_D0; |
| 336 | result = acpi_dev_pm_explicit_set(device, state); |
| 337 | if (result) |
| 338 | return result; |
Rafael J. Wysocki | a236780 | 2013-01-22 12:54:38 +0100 | [diff] [blame] | 339 | } |
| 340 | device->power.state = state; |
| 341 | return 0; |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | int acpi_bus_update_power(acpi_handle handle, int *state_p) |
| 345 | { |
| 346 | struct acpi_device *device; |
| 347 | int state; |
| 348 | int result; |
| 349 | |
| 350 | result = acpi_bus_get_device(handle, &device); |
| 351 | if (result) |
| 352 | return result; |
| 353 | |
| 354 | result = acpi_device_get_power(device, &state); |
| 355 | if (result) |
| 356 | return result; |
| 357 | |
| 358 | result = acpi_device_set_power(device, state); |
| 359 | if (!result && state_p) |
| 360 | *state_p = state; |
| 361 | |
| 362 | return result; |
| 363 | } |
| 364 | EXPORT_SYMBOL_GPL(acpi_bus_update_power); |
| 365 | |
| 366 | bool acpi_bus_power_manageable(acpi_handle handle) |
| 367 | { |
| 368 | struct acpi_device *device; |
| 369 | int result; |
| 370 | |
| 371 | result = acpi_bus_get_device(handle, &device); |
| 372 | return result ? false : device->flags.power_manageable; |
| 373 | } |
| 374 | EXPORT_SYMBOL(acpi_bus_power_manageable); |
| 375 | |
| 376 | bool acpi_bus_can_wakeup(acpi_handle handle) |
| 377 | { |
| 378 | struct acpi_device *device; |
| 379 | int result; |
| 380 | |
| 381 | result = acpi_bus_get_device(handle, &device); |
| 382 | return result ? false : device->wakeup.flags.valid; |
| 383 | } |
| 384 | EXPORT_SYMBOL(acpi_bus_can_wakeup); |
| 385 | |
| 386 | /** |
Rafael J. Wysocki | 86b3832 | 2012-11-02 01:40:18 +0100 | [diff] [blame] | 387 | * acpi_device_power_state - Get preferred power state of ACPI device. |
| 388 | * @dev: Device whose preferred target power state to return. |
| 389 | * @adev: ACPI device node corresponding to @dev. |
| 390 | * @target_state: System state to match the resultant device state. |
| 391 | * @d_max_in: Deepest low-power state to take into consideration. |
| 392 | * @d_min_p: Location to store the upper limit of the allowed states range. |
| 393 | * Return value: Preferred power state of the device on success, -ENODEV |
| 394 | * (if there's no 'struct acpi_device' for @dev) or -EINVAL on failure |
| 395 | * |
| 396 | * Find the lowest power (highest number) ACPI device power state that the |
| 397 | * device can be in while the system is in the state represented by |
| 398 | * @target_state. If @d_min_p is set, the highest power (lowest number) device |
| 399 | * power state that @dev can be in for the given system sleep state is stored |
| 400 | * at the location pointed to by it. |
| 401 | * |
| 402 | * Callers must ensure that @dev and @adev are valid pointers and that @adev |
| 403 | * actually corresponds to @dev before using this function. |
| 404 | */ |
| 405 | int acpi_device_power_state(struct device *dev, struct acpi_device *adev, |
| 406 | u32 target_state, int d_max_in, int *d_min_p) |
| 407 | { |
| 408 | char acpi_method[] = "_SxD"; |
| 409 | unsigned long long d_min, d_max; |
| 410 | bool wakeup = false; |
| 411 | |
| 412 | if (d_max_in < ACPI_STATE_D0 || d_max_in > ACPI_STATE_D3) |
| 413 | return -EINVAL; |
| 414 | |
| 415 | if (d_max_in > ACPI_STATE_D3_HOT) { |
| 416 | enum pm_qos_flags_status stat; |
| 417 | |
| 418 | stat = dev_pm_qos_flags(dev, PM_QOS_FLAG_NO_POWER_OFF); |
| 419 | if (stat == PM_QOS_FLAGS_ALL) |
| 420 | d_max_in = ACPI_STATE_D3_HOT; |
| 421 | } |
| 422 | |
| 423 | acpi_method[2] = '0' + target_state; |
| 424 | /* |
| 425 | * If the sleep state is S0, the lowest limit from ACPI is D3, |
| 426 | * but if the device has _S0W, we will use the value from _S0W |
| 427 | * as the lowest limit from ACPI. Finally, we will constrain |
| 428 | * the lowest limit with the specified one. |
| 429 | */ |
| 430 | d_min = ACPI_STATE_D0; |
| 431 | d_max = ACPI_STATE_D3; |
| 432 | |
| 433 | /* |
| 434 | * If present, _SxD methods return the minimum D-state (highest power |
| 435 | * state) we can use for the corresponding S-states. Otherwise, the |
| 436 | * minimum D-state is D0 (ACPI 3.x). |
| 437 | * |
| 438 | * NOTE: We rely on acpi_evaluate_integer() not clobbering the integer |
| 439 | * provided -- that's our fault recovery, we ignore retval. |
| 440 | */ |
| 441 | if (target_state > ACPI_STATE_S0) { |
| 442 | acpi_evaluate_integer(adev->handle, acpi_method, NULL, &d_min); |
| 443 | wakeup = device_may_wakeup(dev) && adev->wakeup.flags.valid |
| 444 | && adev->wakeup.sleep_state >= target_state; |
| 445 | } else if (dev_pm_qos_flags(dev, PM_QOS_FLAG_REMOTE_WAKEUP) != |
| 446 | PM_QOS_FLAGS_NONE) { |
| 447 | wakeup = adev->wakeup.flags.valid; |
| 448 | } |
| 449 | |
| 450 | /* |
| 451 | * If _PRW says we can wake up the system from the target sleep state, |
| 452 | * the D-state returned by _SxD is sufficient for that (we assume a |
| 453 | * wakeup-aware driver if wake is set). Still, if _SxW exists |
| 454 | * (ACPI 3.x), it should return the maximum (lowest power) D-state that |
| 455 | * can wake the system. _S0W may be valid, too. |
| 456 | */ |
| 457 | if (wakeup) { |
| 458 | acpi_status status; |
| 459 | |
| 460 | acpi_method[3] = 'W'; |
| 461 | status = acpi_evaluate_integer(adev->handle, acpi_method, NULL, |
| 462 | &d_max); |
| 463 | if (ACPI_FAILURE(status)) { |
| 464 | if (target_state != ACPI_STATE_S0 || |
| 465 | status != AE_NOT_FOUND) |
| 466 | d_max = d_min; |
| 467 | } else if (d_max < d_min) { |
| 468 | /* Warn the user of the broken DSDT */ |
| 469 | printk(KERN_WARNING "ACPI: Wrong value from %s\n", |
| 470 | acpi_method); |
| 471 | /* Sanitize it */ |
| 472 | d_min = d_max; |
| 473 | } |
| 474 | } |
| 475 | |
| 476 | if (d_max_in < d_min) |
| 477 | return -EINVAL; |
| 478 | if (d_min_p) |
| 479 | *d_min_p = d_min; |
| 480 | /* constrain d_max with specified lowest limit (max number) */ |
| 481 | if (d_max > d_max_in) { |
| 482 | for (d_max = d_max_in; d_max > d_min; d_max--) { |
| 483 | if (adev->power.states[d_max].flags.valid) |
| 484 | break; |
| 485 | } |
| 486 | } |
| 487 | return d_max; |
| 488 | } |
| 489 | EXPORT_SYMBOL_GPL(acpi_device_power_state); |
Rafael J. Wysocki | cd7bd02 | 2012-11-02 01:40:28 +0100 | [diff] [blame] | 490 | |
Rafael J. Wysocki | a6ae759 | 2012-11-02 01:40:53 +0100 | [diff] [blame] | 491 | /** |
| 492 | * acpi_pm_device_sleep_state - Get preferred power state of ACPI device. |
| 493 | * @dev: Device whose preferred target power state to return. |
| 494 | * @d_min_p: Location to store the upper limit of the allowed states range. |
| 495 | * @d_max_in: Deepest low-power state to take into consideration. |
| 496 | * Return value: Preferred power state of the device on success, -ENODEV |
| 497 | * (if there's no 'struct acpi_device' for @dev) or -EINVAL on failure |
| 498 | * |
| 499 | * The caller must ensure that @dev is valid before using this function. |
| 500 | */ |
| 501 | int acpi_pm_device_sleep_state(struct device *dev, int *d_min_p, int d_max_in) |
| 502 | { |
| 503 | acpi_handle handle = DEVICE_ACPI_HANDLE(dev); |
| 504 | struct acpi_device *adev; |
| 505 | |
Yasuaki Ishimatsu | dde3bb4 | 2013-01-31 03:22:14 +0000 | [diff] [blame] | 506 | if (!handle || acpi_bus_get_device(handle, &adev)) { |
Rafael J. Wysocki | a6ae759 | 2012-11-02 01:40:53 +0100 | [diff] [blame] | 507 | dev_dbg(dev, "ACPI handle without context in %s!\n", __func__); |
| 508 | return -ENODEV; |
| 509 | } |
| 510 | |
| 511 | return acpi_device_power_state(dev, adev, acpi_target_system_state(), |
| 512 | d_max_in, d_min_p); |
| 513 | } |
| 514 | EXPORT_SYMBOL(acpi_pm_device_sleep_state); |
| 515 | |
Rafael J. Wysocki | cd7bd02 | 2012-11-02 01:40:28 +0100 | [diff] [blame] | 516 | #ifdef CONFIG_PM_RUNTIME |
| 517 | /** |
Rafael J. Wysocki | e5cc8ef | 2012-11-02 01:41:01 +0100 | [diff] [blame] | 518 | * acpi_wakeup_device - Wakeup notification handler for ACPI devices. |
| 519 | * @handle: ACPI handle of the device the notification is for. |
| 520 | * @event: Type of the signaled event. |
| 521 | * @context: Device corresponding to @handle. |
| 522 | */ |
| 523 | static void acpi_wakeup_device(acpi_handle handle, u32 event, void *context) |
| 524 | { |
| 525 | struct device *dev = context; |
| 526 | |
| 527 | if (event == ACPI_NOTIFY_DEVICE_WAKE && dev) { |
| 528 | pm_wakeup_event(dev, 0); |
| 529 | pm_runtime_resume(dev); |
| 530 | } |
| 531 | } |
| 532 | |
| 533 | /** |
Rafael J. Wysocki | dee8370 | 2012-11-02 01:40:36 +0100 | [diff] [blame] | 534 | * __acpi_device_run_wake - Enable/disable runtime remote wakeup for device. |
| 535 | * @adev: ACPI device to enable/disable the remote wakeup for. |
Rafael J. Wysocki | cd7bd02 | 2012-11-02 01:40:28 +0100 | [diff] [blame] | 536 | * @enable: Whether to enable or disable the wakeup functionality. |
| 537 | * |
Rafael J. Wysocki | dee8370 | 2012-11-02 01:40:36 +0100 | [diff] [blame] | 538 | * Enable/disable the GPE associated with @adev so that it can generate |
| 539 | * wakeup signals for the device in response to external (remote) events and |
| 540 | * enable/disable device wakeup power. |
| 541 | * |
| 542 | * Callers must ensure that @adev is a valid ACPI device node before executing |
| 543 | * this function. |
| 544 | */ |
| 545 | int __acpi_device_run_wake(struct acpi_device *adev, bool enable) |
| 546 | { |
| 547 | struct acpi_device_wakeup *wakeup = &adev->wakeup; |
| 548 | |
| 549 | if (enable) { |
| 550 | acpi_status res; |
| 551 | int error; |
| 552 | |
| 553 | error = acpi_enable_wakeup_device_power(adev, ACPI_STATE_S0); |
| 554 | if (error) |
| 555 | return error; |
| 556 | |
| 557 | res = acpi_enable_gpe(wakeup->gpe_device, wakeup->gpe_number); |
| 558 | if (ACPI_FAILURE(res)) { |
| 559 | acpi_disable_wakeup_device_power(adev); |
| 560 | return -EIO; |
| 561 | } |
| 562 | } else { |
| 563 | acpi_disable_gpe(wakeup->gpe_device, wakeup->gpe_number); |
| 564 | acpi_disable_wakeup_device_power(adev); |
| 565 | } |
| 566 | return 0; |
| 567 | } |
| 568 | |
| 569 | /** |
| 570 | * acpi_pm_device_run_wake - Enable/disable remote wakeup for given device. |
| 571 | * @dev: Device to enable/disable the platform to wake up. |
| 572 | * @enable: Whether to enable or disable the wakeup functionality. |
Rafael J. Wysocki | cd7bd02 | 2012-11-02 01:40:28 +0100 | [diff] [blame] | 573 | */ |
| 574 | int acpi_pm_device_run_wake(struct device *phys_dev, bool enable) |
| 575 | { |
Rafael J. Wysocki | dee8370 | 2012-11-02 01:40:36 +0100 | [diff] [blame] | 576 | struct acpi_device *adev; |
Rafael J. Wysocki | cd7bd02 | 2012-11-02 01:40:28 +0100 | [diff] [blame] | 577 | acpi_handle handle; |
| 578 | |
| 579 | if (!device_run_wake(phys_dev)) |
| 580 | return -EINVAL; |
| 581 | |
| 582 | handle = DEVICE_ACPI_HANDLE(phys_dev); |
Yasuaki Ishimatsu | dde3bb4 | 2013-01-31 03:22:14 +0000 | [diff] [blame] | 583 | if (!handle || acpi_bus_get_device(handle, &adev)) { |
Rafael J. Wysocki | dee8370 | 2012-11-02 01:40:36 +0100 | [diff] [blame] | 584 | dev_dbg(phys_dev, "ACPI handle without context in %s!\n", |
Rafael J. Wysocki | cd7bd02 | 2012-11-02 01:40:28 +0100 | [diff] [blame] | 585 | __func__); |
| 586 | return -ENODEV; |
| 587 | } |
| 588 | |
Rafael J. Wysocki | dee8370 | 2012-11-02 01:40:36 +0100 | [diff] [blame] | 589 | return __acpi_device_run_wake(adev, enable); |
Rafael J. Wysocki | cd7bd02 | 2012-11-02 01:40:28 +0100 | [diff] [blame] | 590 | } |
| 591 | EXPORT_SYMBOL(acpi_pm_device_run_wake); |
Rafael J. Wysocki | e5cc8ef | 2012-11-02 01:41:01 +0100 | [diff] [blame] | 592 | #else |
| 593 | static inline void acpi_wakeup_device(acpi_handle handle, u32 event, |
| 594 | void *context) {} |
Rafael J. Wysocki | cd7bd02 | 2012-11-02 01:40:28 +0100 | [diff] [blame] | 595 | #endif /* CONFIG_PM_RUNTIME */ |
Rafael J. Wysocki | dee8370 | 2012-11-02 01:40:36 +0100 | [diff] [blame] | 596 | |
Mika Westerberg | 4d56410 | 2013-01-14 20:13:37 +0000 | [diff] [blame] | 597 | #ifdef CONFIG_PM_SLEEP |
Rafael J. Wysocki | dee8370 | 2012-11-02 01:40:36 +0100 | [diff] [blame] | 598 | /** |
| 599 | * __acpi_device_sleep_wake - Enable or disable device to wake up the system. |
| 600 | * @dev: Device to enable/desible to wake up the system. |
| 601 | * @target_state: System state the device is supposed to wake up from. |
| 602 | * @enable: Whether to enable or disable @dev to wake up the system. |
| 603 | */ |
| 604 | int __acpi_device_sleep_wake(struct acpi_device *adev, u32 target_state, |
| 605 | bool enable) |
| 606 | { |
| 607 | return enable ? |
| 608 | acpi_enable_wakeup_device_power(adev, target_state) : |
| 609 | acpi_disable_wakeup_device_power(adev); |
| 610 | } |
Rafael J. Wysocki | a6ae759 | 2012-11-02 01:40:53 +0100 | [diff] [blame] | 611 | |
| 612 | /** |
| 613 | * acpi_pm_device_sleep_wake - Enable or disable device to wake up the system. |
| 614 | * @dev: Device to enable/desible to wake up the system from sleep states. |
| 615 | * @enable: Whether to enable or disable @dev to wake up the system. |
| 616 | */ |
| 617 | int acpi_pm_device_sleep_wake(struct device *dev, bool enable) |
| 618 | { |
| 619 | acpi_handle handle; |
| 620 | struct acpi_device *adev; |
| 621 | int error; |
| 622 | |
| 623 | if (!device_can_wakeup(dev)) |
| 624 | return -EINVAL; |
| 625 | |
| 626 | handle = DEVICE_ACPI_HANDLE(dev); |
Yasuaki Ishimatsu | dde3bb4 | 2013-01-31 03:22:14 +0000 | [diff] [blame] | 627 | if (!handle || acpi_bus_get_device(handle, &adev)) { |
Rafael J. Wysocki | a6ae759 | 2012-11-02 01:40:53 +0100 | [diff] [blame] | 628 | dev_dbg(dev, "ACPI handle without context in %s!\n", __func__); |
| 629 | return -ENODEV; |
| 630 | } |
| 631 | |
| 632 | error = __acpi_device_sleep_wake(adev, acpi_target_system_state(), |
| 633 | enable); |
| 634 | if (!error) |
| 635 | dev_info(dev, "System wakeup %s by ACPI\n", |
| 636 | enable ? "enabled" : "disabled"); |
| 637 | |
| 638 | return error; |
| 639 | } |
Rafael J. Wysocki | dee8370 | 2012-11-02 01:40:36 +0100 | [diff] [blame] | 640 | #endif /* CONFIG_PM_SLEEP */ |
Rafael J. Wysocki | e5cc8ef | 2012-11-02 01:41:01 +0100 | [diff] [blame] | 641 | |
| 642 | /** |
| 643 | * acpi_dev_pm_get_node - Get ACPI device node for the given physical device. |
| 644 | * @dev: Device to get the ACPI node for. |
| 645 | */ |
Rafael J. Wysocki | d2e5f0c | 2012-12-23 00:02:44 +0100 | [diff] [blame] | 646 | struct acpi_device *acpi_dev_pm_get_node(struct device *dev) |
Rafael J. Wysocki | e5cc8ef | 2012-11-02 01:41:01 +0100 | [diff] [blame] | 647 | { |
| 648 | acpi_handle handle = DEVICE_ACPI_HANDLE(dev); |
| 649 | struct acpi_device *adev; |
| 650 | |
Rafael J. Wysocki | 5cc36c7 | 2012-12-16 23:28:53 +0100 | [diff] [blame] | 651 | return handle && !acpi_bus_get_device(handle, &adev) ? adev : NULL; |
Rafael J. Wysocki | e5cc8ef | 2012-11-02 01:41:01 +0100 | [diff] [blame] | 652 | } |
| 653 | |
| 654 | /** |
| 655 | * acpi_dev_pm_low_power - Put ACPI device into a low-power state. |
| 656 | * @dev: Device to put into a low-power state. |
| 657 | * @adev: ACPI device node corresponding to @dev. |
| 658 | * @system_state: System state to choose the device state for. |
| 659 | */ |
| 660 | static int acpi_dev_pm_low_power(struct device *dev, struct acpi_device *adev, |
| 661 | u32 system_state) |
| 662 | { |
| 663 | int power_state; |
| 664 | |
| 665 | if (!acpi_device_power_manageable(adev)) |
| 666 | return 0; |
| 667 | |
| 668 | power_state = acpi_device_power_state(dev, adev, system_state, |
| 669 | ACPI_STATE_D3, NULL); |
| 670 | if (power_state < ACPI_STATE_D0 || power_state > ACPI_STATE_D3) |
| 671 | return -EIO; |
| 672 | |
| 673 | return acpi_device_set_power(adev, power_state); |
| 674 | } |
| 675 | |
| 676 | /** |
| 677 | * acpi_dev_pm_full_power - Put ACPI device into the full-power state. |
| 678 | * @adev: ACPI device node to put into the full-power state. |
| 679 | */ |
| 680 | static int acpi_dev_pm_full_power(struct acpi_device *adev) |
| 681 | { |
| 682 | return acpi_device_power_manageable(adev) ? |
| 683 | acpi_device_set_power(adev, ACPI_STATE_D0) : 0; |
| 684 | } |
| 685 | |
| 686 | #ifdef CONFIG_PM_RUNTIME |
| 687 | /** |
| 688 | * acpi_dev_runtime_suspend - Put device into a low-power state using ACPI. |
| 689 | * @dev: Device to put into a low-power state. |
| 690 | * |
| 691 | * Put the given device into a runtime low-power state using the standard ACPI |
| 692 | * mechanism. Set up remote wakeup if desired, choose the state to put the |
| 693 | * device into (this checks if remote wakeup is expected to work too), and set |
| 694 | * the power state of the device. |
| 695 | */ |
| 696 | int acpi_dev_runtime_suspend(struct device *dev) |
| 697 | { |
| 698 | struct acpi_device *adev = acpi_dev_pm_get_node(dev); |
| 699 | bool remote_wakeup; |
| 700 | int error; |
| 701 | |
| 702 | if (!adev) |
| 703 | return 0; |
| 704 | |
| 705 | remote_wakeup = dev_pm_qos_flags(dev, PM_QOS_FLAG_REMOTE_WAKEUP) > |
| 706 | PM_QOS_FLAGS_NONE; |
| 707 | error = __acpi_device_run_wake(adev, remote_wakeup); |
| 708 | if (remote_wakeup && error) |
| 709 | return -EAGAIN; |
| 710 | |
| 711 | error = acpi_dev_pm_low_power(dev, adev, ACPI_STATE_S0); |
| 712 | if (error) |
| 713 | __acpi_device_run_wake(adev, false); |
| 714 | |
| 715 | return error; |
| 716 | } |
| 717 | EXPORT_SYMBOL_GPL(acpi_dev_runtime_suspend); |
| 718 | |
| 719 | /** |
| 720 | * acpi_dev_runtime_resume - Put device into the full-power state using ACPI. |
| 721 | * @dev: Device to put into the full-power state. |
| 722 | * |
| 723 | * Put the given device into the full-power state using the standard ACPI |
| 724 | * mechanism at run time. Set the power state of the device to ACPI D0 and |
| 725 | * disable remote wakeup. |
| 726 | */ |
| 727 | int acpi_dev_runtime_resume(struct device *dev) |
| 728 | { |
| 729 | struct acpi_device *adev = acpi_dev_pm_get_node(dev); |
| 730 | int error; |
| 731 | |
| 732 | if (!adev) |
| 733 | return 0; |
| 734 | |
| 735 | error = acpi_dev_pm_full_power(adev); |
| 736 | __acpi_device_run_wake(adev, false); |
| 737 | return error; |
| 738 | } |
| 739 | EXPORT_SYMBOL_GPL(acpi_dev_runtime_resume); |
| 740 | |
| 741 | /** |
| 742 | * acpi_subsys_runtime_suspend - Suspend device using ACPI. |
| 743 | * @dev: Device to suspend. |
| 744 | * |
| 745 | * Carry out the generic runtime suspend procedure for @dev and use ACPI to put |
| 746 | * it into a runtime low-power state. |
| 747 | */ |
| 748 | int acpi_subsys_runtime_suspend(struct device *dev) |
| 749 | { |
| 750 | int ret = pm_generic_runtime_suspend(dev); |
| 751 | return ret ? ret : acpi_dev_runtime_suspend(dev); |
| 752 | } |
| 753 | EXPORT_SYMBOL_GPL(acpi_subsys_runtime_suspend); |
| 754 | |
| 755 | /** |
| 756 | * acpi_subsys_runtime_resume - Resume device using ACPI. |
| 757 | * @dev: Device to Resume. |
| 758 | * |
| 759 | * Use ACPI to put the given device into the full-power state and carry out the |
| 760 | * generic runtime resume procedure for it. |
| 761 | */ |
| 762 | int acpi_subsys_runtime_resume(struct device *dev) |
| 763 | { |
| 764 | int ret = acpi_dev_runtime_resume(dev); |
| 765 | return ret ? ret : pm_generic_runtime_resume(dev); |
| 766 | } |
| 767 | EXPORT_SYMBOL_GPL(acpi_subsys_runtime_resume); |
| 768 | #endif /* CONFIG_PM_RUNTIME */ |
| 769 | |
| 770 | #ifdef CONFIG_PM_SLEEP |
| 771 | /** |
| 772 | * acpi_dev_suspend_late - Put device into a low-power state using ACPI. |
| 773 | * @dev: Device to put into a low-power state. |
| 774 | * |
| 775 | * Put the given device into a low-power state during system transition to a |
| 776 | * sleep state using the standard ACPI mechanism. Set up system wakeup if |
| 777 | * desired, choose the state to put the device into (this checks if system |
| 778 | * wakeup is expected to work too), and set the power state of the device. |
| 779 | */ |
| 780 | int acpi_dev_suspend_late(struct device *dev) |
| 781 | { |
| 782 | struct acpi_device *adev = acpi_dev_pm_get_node(dev); |
| 783 | u32 target_state; |
| 784 | bool wakeup; |
| 785 | int error; |
| 786 | |
| 787 | if (!adev) |
| 788 | return 0; |
| 789 | |
| 790 | target_state = acpi_target_system_state(); |
| 791 | wakeup = device_may_wakeup(dev); |
| 792 | error = __acpi_device_sleep_wake(adev, target_state, wakeup); |
| 793 | if (wakeup && error) |
| 794 | return error; |
| 795 | |
| 796 | error = acpi_dev_pm_low_power(dev, adev, target_state); |
| 797 | if (error) |
| 798 | __acpi_device_sleep_wake(adev, ACPI_STATE_UNKNOWN, false); |
| 799 | |
| 800 | return error; |
| 801 | } |
| 802 | EXPORT_SYMBOL_GPL(acpi_dev_suspend_late); |
| 803 | |
| 804 | /** |
| 805 | * acpi_dev_resume_early - Put device into the full-power state using ACPI. |
| 806 | * @dev: Device to put into the full-power state. |
| 807 | * |
| 808 | * Put the given device into the full-power state using the standard ACPI |
| 809 | * mechanism during system transition to the working state. Set the power |
| 810 | * state of the device to ACPI D0 and disable remote wakeup. |
| 811 | */ |
| 812 | int acpi_dev_resume_early(struct device *dev) |
| 813 | { |
| 814 | struct acpi_device *adev = acpi_dev_pm_get_node(dev); |
| 815 | int error; |
| 816 | |
| 817 | if (!adev) |
| 818 | return 0; |
| 819 | |
| 820 | error = acpi_dev_pm_full_power(adev); |
| 821 | __acpi_device_sleep_wake(adev, ACPI_STATE_UNKNOWN, false); |
| 822 | return error; |
| 823 | } |
| 824 | EXPORT_SYMBOL_GPL(acpi_dev_resume_early); |
| 825 | |
| 826 | /** |
| 827 | * acpi_subsys_prepare - Prepare device for system transition to a sleep state. |
| 828 | * @dev: Device to prepare. |
| 829 | */ |
| 830 | int acpi_subsys_prepare(struct device *dev) |
| 831 | { |
| 832 | /* |
| 833 | * Follow PCI and resume devices suspended at run time before running |
| 834 | * their system suspend callbacks. |
| 835 | */ |
| 836 | pm_runtime_resume(dev); |
| 837 | return pm_generic_prepare(dev); |
| 838 | } |
| 839 | EXPORT_SYMBOL_GPL(acpi_subsys_prepare); |
| 840 | |
| 841 | /** |
| 842 | * acpi_subsys_suspend_late - Suspend device using ACPI. |
| 843 | * @dev: Device to suspend. |
| 844 | * |
| 845 | * Carry out the generic late suspend procedure for @dev and use ACPI to put |
| 846 | * it into a low-power state during system transition into a sleep state. |
| 847 | */ |
| 848 | int acpi_subsys_suspend_late(struct device *dev) |
| 849 | { |
| 850 | int ret = pm_generic_suspend_late(dev); |
| 851 | return ret ? ret : acpi_dev_suspend_late(dev); |
| 852 | } |
| 853 | EXPORT_SYMBOL_GPL(acpi_subsys_suspend_late); |
| 854 | |
| 855 | /** |
| 856 | * acpi_subsys_resume_early - Resume device using ACPI. |
| 857 | * @dev: Device to Resume. |
| 858 | * |
| 859 | * Use ACPI to put the given device into the full-power state and carry out the |
| 860 | * generic early resume procedure for it during system transition into the |
| 861 | * working state. |
| 862 | */ |
| 863 | int acpi_subsys_resume_early(struct device *dev) |
| 864 | { |
| 865 | int ret = acpi_dev_resume_early(dev); |
| 866 | return ret ? ret : pm_generic_resume_early(dev); |
| 867 | } |
| 868 | EXPORT_SYMBOL_GPL(acpi_subsys_resume_early); |
| 869 | #endif /* CONFIG_PM_SLEEP */ |
| 870 | |
| 871 | static struct dev_pm_domain acpi_general_pm_domain = { |
| 872 | .ops = { |
| 873 | #ifdef CONFIG_PM_RUNTIME |
| 874 | .runtime_suspend = acpi_subsys_runtime_suspend, |
| 875 | .runtime_resume = acpi_subsys_runtime_resume, |
| 876 | .runtime_idle = pm_generic_runtime_idle, |
| 877 | #endif |
| 878 | #ifdef CONFIG_PM_SLEEP |
| 879 | .prepare = acpi_subsys_prepare, |
| 880 | .suspend_late = acpi_subsys_suspend_late, |
| 881 | .resume_early = acpi_subsys_resume_early, |
| 882 | .poweroff_late = acpi_subsys_suspend_late, |
| 883 | .restore_early = acpi_subsys_resume_early, |
| 884 | #endif |
| 885 | }, |
| 886 | }; |
| 887 | |
| 888 | /** |
| 889 | * acpi_dev_pm_attach - Prepare device for ACPI power management. |
| 890 | * @dev: Device to prepare. |
Rafael J. Wysocki | b88ce2a | 2012-11-26 10:03:06 +0100 | [diff] [blame] | 891 | * @power_on: Whether or not to power on the device. |
Rafael J. Wysocki | e5cc8ef | 2012-11-02 01:41:01 +0100 | [diff] [blame] | 892 | * |
| 893 | * If @dev has a valid ACPI handle that has a valid struct acpi_device object |
| 894 | * attached to it, install a wakeup notification handler for the device and |
Rafael J. Wysocki | b88ce2a | 2012-11-26 10:03:06 +0100 | [diff] [blame] | 895 | * add it to the general ACPI PM domain. If @power_on is set, the device will |
| 896 | * be put into the ACPI D0 state before the function returns. |
Rafael J. Wysocki | e5cc8ef | 2012-11-02 01:41:01 +0100 | [diff] [blame] | 897 | * |
| 898 | * This assumes that the @dev's bus type uses generic power management callbacks |
| 899 | * (or doesn't use any power management callbacks at all). |
| 900 | * |
| 901 | * Callers must ensure proper synchronization of this function with power |
| 902 | * management callbacks. |
| 903 | */ |
Rafael J. Wysocki | b88ce2a | 2012-11-26 10:03:06 +0100 | [diff] [blame] | 904 | int acpi_dev_pm_attach(struct device *dev, bool power_on) |
Rafael J. Wysocki | e5cc8ef | 2012-11-02 01:41:01 +0100 | [diff] [blame] | 905 | { |
| 906 | struct acpi_device *adev = acpi_dev_pm_get_node(dev); |
| 907 | |
| 908 | if (!adev) |
| 909 | return -ENODEV; |
| 910 | |
| 911 | if (dev->pm_domain) |
| 912 | return -EEXIST; |
| 913 | |
| 914 | acpi_add_pm_notifier(adev, acpi_wakeup_device, dev); |
| 915 | dev->pm_domain = &acpi_general_pm_domain; |
Rafael J. Wysocki | b88ce2a | 2012-11-26 10:03:06 +0100 | [diff] [blame] | 916 | if (power_on) { |
| 917 | acpi_dev_pm_full_power(adev); |
| 918 | __acpi_device_run_wake(adev, false); |
| 919 | } |
Rafael J. Wysocki | e5cc8ef | 2012-11-02 01:41:01 +0100 | [diff] [blame] | 920 | return 0; |
| 921 | } |
| 922 | EXPORT_SYMBOL_GPL(acpi_dev_pm_attach); |
| 923 | |
| 924 | /** |
| 925 | * acpi_dev_pm_detach - Remove ACPI power management from the device. |
| 926 | * @dev: Device to take care of. |
Rafael J. Wysocki | b88ce2a | 2012-11-26 10:03:06 +0100 | [diff] [blame] | 927 | * @power_off: Whether or not to try to remove power from the device. |
Rafael J. Wysocki | e5cc8ef | 2012-11-02 01:41:01 +0100 | [diff] [blame] | 928 | * |
| 929 | * Remove the device from the general ACPI PM domain and remove its wakeup |
Rafael J. Wysocki | b88ce2a | 2012-11-26 10:03:06 +0100 | [diff] [blame] | 930 | * notifier. If @power_off is set, additionally remove power from the device if |
| 931 | * possible. |
Rafael J. Wysocki | e5cc8ef | 2012-11-02 01:41:01 +0100 | [diff] [blame] | 932 | * |
| 933 | * Callers must ensure proper synchronization of this function with power |
| 934 | * management callbacks. |
| 935 | */ |
Rafael J. Wysocki | b88ce2a | 2012-11-26 10:03:06 +0100 | [diff] [blame] | 936 | void acpi_dev_pm_detach(struct device *dev, bool power_off) |
Rafael J. Wysocki | e5cc8ef | 2012-11-02 01:41:01 +0100 | [diff] [blame] | 937 | { |
| 938 | struct acpi_device *adev = acpi_dev_pm_get_node(dev); |
| 939 | |
| 940 | if (adev && dev->pm_domain == &acpi_general_pm_domain) { |
| 941 | dev->pm_domain = NULL; |
| 942 | acpi_remove_pm_notifier(adev, acpi_wakeup_device); |
Rafael J. Wysocki | b88ce2a | 2012-11-26 10:03:06 +0100 | [diff] [blame] | 943 | if (power_off) { |
| 944 | /* |
| 945 | * If the device's PM QoS resume latency limit or flags |
| 946 | * have been exposed to user space, they have to be |
| 947 | * hidden at this point, so that they don't affect the |
| 948 | * choice of the low-power state to put the device into. |
| 949 | */ |
| 950 | dev_pm_qos_hide_latency_limit(dev); |
| 951 | dev_pm_qos_hide_flags(dev); |
| 952 | __acpi_device_run_wake(adev, false); |
| 953 | acpi_dev_pm_low_power(dev, adev, ACPI_STATE_S0); |
| 954 | } |
Rafael J. Wysocki | e5cc8ef | 2012-11-02 01:41:01 +0100 | [diff] [blame] | 955 | } |
| 956 | } |
| 957 | EXPORT_SYMBOL_GPL(acpi_dev_pm_detach); |
Rafael J. Wysocki | bc9b640 | 2013-01-17 14:11:05 +0100 | [diff] [blame] | 958 | |
| 959 | /** |
| 960 | * acpi_dev_pm_add_dependent - Add physical device depending for PM. |
| 961 | * @handle: Handle of ACPI device node. |
| 962 | * @depdev: Device depending on that node for PM. |
| 963 | */ |
| 964 | void acpi_dev_pm_add_dependent(acpi_handle handle, struct device *depdev) |
| 965 | { |
| 966 | struct acpi_device_physical_node *dep; |
| 967 | struct acpi_device *adev; |
| 968 | |
| 969 | if (!depdev || acpi_bus_get_device(handle, &adev)) |
| 970 | return; |
| 971 | |
| 972 | mutex_lock(&adev->physical_node_lock); |
| 973 | |
| 974 | list_for_each_entry(dep, &adev->power_dependent, node) |
| 975 | if (dep->dev == depdev) |
| 976 | goto out; |
| 977 | |
| 978 | dep = kzalloc(sizeof(*dep), GFP_KERNEL); |
| 979 | if (dep) { |
| 980 | dep->dev = depdev; |
| 981 | list_add_tail(&dep->node, &adev->power_dependent); |
| 982 | } |
| 983 | |
| 984 | out: |
| 985 | mutex_unlock(&adev->physical_node_lock); |
| 986 | } |
| 987 | EXPORT_SYMBOL_GPL(acpi_dev_pm_add_dependent); |
| 988 | |
| 989 | /** |
| 990 | * acpi_dev_pm_remove_dependent - Remove physical device depending for PM. |
| 991 | * @handle: Handle of ACPI device node. |
| 992 | * @depdev: Device depending on that node for PM. |
| 993 | */ |
| 994 | void acpi_dev_pm_remove_dependent(acpi_handle handle, struct device *depdev) |
| 995 | { |
| 996 | struct acpi_device_physical_node *dep; |
| 997 | struct acpi_device *adev; |
| 998 | |
| 999 | if (!depdev || acpi_bus_get_device(handle, &adev)) |
| 1000 | return; |
| 1001 | |
| 1002 | mutex_lock(&adev->physical_node_lock); |
| 1003 | |
| 1004 | list_for_each_entry(dep, &adev->power_dependent, node) |
| 1005 | if (dep->dev == depdev) { |
| 1006 | list_del(&dep->node); |
| 1007 | kfree(dep); |
| 1008 | break; |
| 1009 | } |
| 1010 | |
| 1011 | mutex_unlock(&adev->physical_node_lock); |
| 1012 | } |
| 1013 | EXPORT_SYMBOL_GPL(acpi_dev_pm_remove_dependent); |