blob: 717afcdb5f4a9657a9ca6f6af9825e109eba9688 [file] [log] [blame]
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +01001/*
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
Rafael J. Wysocki7b199812013-11-11 22:41:56 +010025#include <linux/acpi.h>
Rafael J. Wysocki86b38322012-11-02 01:40:18 +010026#include <linux/export.h>
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +010027#include <linux/mutex.h>
Rafael J. Wysocki86b38322012-11-02 01:40:18 +010028#include <linux/pm_qos.h>
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +010029#include <linux/pm_runtime.h>
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +010030
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010031#include "internal.h"
32
33#define _COMPONENT ACPI_POWER_COMPONENT
34ACPI_MODULE_NAME("device_pm");
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +010035
Rafael J. Wysocki86b38322012-11-02 01:40:18 +010036/**
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010037 * acpi_power_state_string - String representation of ACPI device power state.
38 * @state: ACPI device power state to return the string representation of.
39 */
40const char *acpi_power_state_string(int state)
41{
42 switch (state) {
43 case ACPI_STATE_D0:
44 return "D0";
45 case ACPI_STATE_D1:
46 return "D1";
47 case ACPI_STATE_D2:
48 return "D2";
49 case ACPI_STATE_D3_HOT:
50 return "D3hot";
51 case ACPI_STATE_D3_COLD:
Rafael J. Wysocki898fee42013-01-22 12:56:26 +010052 return "D3cold";
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010053 default:
54 return "(unknown)";
55 }
56}
57
58/**
59 * acpi_device_get_power - Get power state of an ACPI device.
60 * @device: Device to get the power state of.
61 * @state: Place to store the power state of the device.
62 *
63 * This function does not update the device's power.state field, but it may
64 * update its parent's power.state field (when the parent's power state is
65 * unknown and the device's power state turns out to be D0).
66 */
67int acpi_device_get_power(struct acpi_device *device, int *state)
68{
69 int result = ACPI_STATE_UNKNOWN;
70
71 if (!device || !state)
72 return -EINVAL;
73
74 if (!device->flags.power_manageable) {
75 /* TBD: Non-recursive algorithm for walking up hierarchy. */
76 *state = device->parent ?
77 device->parent->power.state : ACPI_STATE_D0;
78 goto out;
79 }
80
81 /*
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +010082 * Get the device's power state from power resources settings and _PSC,
83 * if available.
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010084 */
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +010085 if (device->power.flags.power_resources) {
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010086 int error = acpi_power_get_inferred_state(device, &result);
87 if (error)
88 return error;
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +010089 }
90 if (device->power.flags.explicit_get) {
91 acpi_handle handle = device->handle;
92 unsigned long long psc;
93 acpi_status status;
94
95 status = acpi_evaluate_integer(handle, "_PSC", NULL, &psc);
96 if (ACPI_FAILURE(status))
97 return -ENODEV;
98
99 /*
100 * The power resources settings may indicate a power state
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200101 * shallower than the actual power state of the device, because
102 * the same power resources may be referenced by other devices.
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +0100103 *
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200104 * For systems predating ACPI 4.0 we assume that D3hot is the
105 * deepest state that can be supported.
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +0100106 */
107 if (psc > result && psc < ACPI_STATE_D3_COLD)
108 result = psc;
109 else if (result == ACPI_STATE_UNKNOWN)
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200110 result = psc > ACPI_STATE_D2 ? ACPI_STATE_D3_HOT : psc;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100111 }
112
113 /*
114 * If we were unsure about the device parent's power state up to this
115 * point, the fact that the device is in D0 implies that the parent has
Mika Westerberg644f17a2013-10-10 13:28:46 +0300116 * to be in D0 too, except if ignore_parent is set.
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100117 */
Mika Westerberg644f17a2013-10-10 13:28:46 +0300118 if (!device->power.flags.ignore_parent && device->parent
119 && device->parent->power.state == ACPI_STATE_UNKNOWN
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100120 && result == ACPI_STATE_D0)
121 device->parent->power.state = ACPI_STATE_D0;
122
123 *state = result;
124
125 out:
126 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is %s\n",
127 device->pnp.bus_id, acpi_power_state_string(*state)));
128
129 return 0;
130}
131
Rafael J. Wysocki9c0f45e2013-01-22 12:55:52 +0100132static int acpi_dev_pm_explicit_set(struct acpi_device *adev, int state)
133{
134 if (adev->power.states[state].flags.explicit_set) {
135 char method[5] = { '_', 'P', 'S', '0' + state, '\0' };
136 acpi_status status;
137
138 status = acpi_evaluate_object(adev->handle, method, NULL, NULL);
139 if (ACPI_FAILURE(status))
140 return -ENODEV;
141 }
142 return 0;
143}
144
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100145/**
146 * acpi_device_set_power - Set power state of an ACPI device.
147 * @device: Device to set the power state of.
148 * @state: New power state to set.
149 *
150 * Callers must ensure that the device is power manageable before using this
151 * function.
152 */
153int acpi_device_set_power(struct acpi_device *device, int state)
154{
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200155 int target_state = state;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100156 int result = 0;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100157
Rafael J. Wysocki2c7d1322013-07-30 14:34:00 +0200158 if (!device || !device->flags.power_manageable
159 || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100160 return -EINVAL;
161
162 /* Make sure this is a valid target state */
163
164 if (state == device->power.state) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200165 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] already in %s\n",
166 device->pnp.bus_id,
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100167 acpi_power_state_string(state)));
168 return 0;
169 }
170
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200171 if (state == ACPI_STATE_D3_COLD) {
172 /*
173 * For transitions to D3cold we need to execute _PS3 and then
174 * possibly drop references to the power resources in use.
175 */
176 state = ACPI_STATE_D3_HOT;
177 /* If _PR3 is not available, use D3hot as the target state. */
178 if (!device->power.states[ACPI_STATE_D3_COLD].flags.valid)
179 target_state = state;
180 } else if (!device->power.states[state].flags.valid) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200181 dev_warn(&device->dev, "Power state %s not supported\n",
182 acpi_power_state_string(state));
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100183 return -ENODEV;
184 }
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200185
Mika Westerberg644f17a2013-10-10 13:28:46 +0300186 if (!device->power.flags.ignore_parent &&
187 device->parent && (state < device->parent->power.state)) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200188 dev_warn(&device->dev,
Aaron Lu593298e2013-08-03 21:13:22 +0200189 "Cannot transition to power state %s for parent in %s\n",
190 acpi_power_state_string(state),
191 acpi_power_state_string(device->parent->power.state));
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100192 return -ENODEV;
193 }
194
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100195 /*
196 * Transition Power
197 * ----------------
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200198 * In accordance with ACPI 6, _PSx is executed before manipulating power
199 * resources, unless the target state is D0, in which case _PS0 is
200 * supposed to be executed after turning the power resources on.
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100201 */
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200202 if (state > ACPI_STATE_D0) {
203 /*
204 * According to ACPI 6, devices cannot go from lower-power
205 * (deeper) states to higher-power (shallower) states.
206 */
207 if (state < device->power.state) {
208 dev_warn(&device->dev, "Cannot transition from %s to %s\n",
209 acpi_power_state_string(device->power.state),
210 acpi_power_state_string(state));
211 return -ENODEV;
212 }
213
214 result = acpi_dev_pm_explicit_set(device, state);
Rafael J. Wysocki9c0f45e2013-01-22 12:55:52 +0100215 if (result)
216 goto end;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100217
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200218 if (device->power.flags.power_resources)
219 result = acpi_power_transition(device, target_state);
220 } else {
221 if (device->power.flags.power_resources) {
222 result = acpi_power_transition(device, ACPI_STATE_D0);
223 if (result)
224 goto end;
225 }
226 result = acpi_dev_pm_explicit_set(device, ACPI_STATE_D0);
Rafael J. Wysockie5656272013-01-22 12:56:35 +0100227 }
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100228
Rafael J. Wysockie78adb72013-01-22 12:56:04 +0100229 end:
230 if (result) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200231 dev_warn(&device->dev, "Failed to change power state to %s\n",
232 acpi_power_state_string(state));
Rafael J. Wysockie78adb72013-01-22 12:56:04 +0100233 } else {
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100234 device->power.state = state;
235 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
236 "Device [%s] transitioned to %s\n",
237 device->pnp.bus_id,
238 acpi_power_state_string(state)));
239 }
240
241 return result;
242}
243EXPORT_SYMBOL(acpi_device_set_power);
244
245int acpi_bus_set_power(acpi_handle handle, int state)
246{
247 struct acpi_device *device;
248 int result;
249
250 result = acpi_bus_get_device(handle, &device);
251 if (result)
252 return result;
253
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100254 return acpi_device_set_power(device, state);
255}
256EXPORT_SYMBOL(acpi_bus_set_power);
257
258int acpi_bus_init_power(struct acpi_device *device)
259{
260 int state;
261 int result;
262
263 if (!device)
264 return -EINVAL;
265
266 device->power.state = ACPI_STATE_UNKNOWN;
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100267 if (!acpi_device_is_present(device))
Rafael J. Wysocki1b1f3e12015-01-01 23:38:28 +0100268 return -ENXIO;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100269
270 result = acpi_device_get_power(device, &state);
271 if (result)
272 return result;
273
Rafael J. Wysockia2367802013-01-22 12:54:38 +0100274 if (state < ACPI_STATE_D3_COLD && device->power.flags.power_resources) {
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200275 /* Reference count the power resources. */
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100276 result = acpi_power_on_resources(device, state);
Rafael J. Wysockia2367802013-01-22 12:54:38 +0100277 if (result)
278 return result;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100279
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200280 if (state == ACPI_STATE_D0) {
281 /*
282 * If _PSC is not present and the state inferred from
283 * power resources appears to be D0, it still may be
284 * necessary to execute _PS0 at this point, because
285 * another device using the same power resources may
286 * have been put into D0 previously and that's why we
287 * see D0 here.
288 */
289 result = acpi_dev_pm_explicit_set(device, state);
290 if (result)
291 return result;
292 }
Rafael J. Wysockib3785492013-02-01 23:43:02 +0100293 } else if (state == ACPI_STATE_UNKNOWN) {
Rafael J. Wysocki7cd84072013-06-05 14:01:19 +0200294 /*
295 * No power resources and missing _PSC? Cross fingers and make
296 * it D0 in hope that this is what the BIOS put the device into.
297 * [We tried to force D0 here by executing _PS0, but that broke
298 * Toshiba P870-303 in a nasty way.]
299 */
Rafael J. Wysockib3785492013-02-01 23:43:02 +0100300 state = ACPI_STATE_D0;
Rafael J. Wysockia2367802013-01-22 12:54:38 +0100301 }
302 device->power.state = state;
303 return 0;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100304}
305
Rafael J. Wysockib9e95fc2013-06-19 00:45:34 +0200306/**
307 * acpi_device_fix_up_power - Force device with missing _PSC into D0.
308 * @device: Device object whose power state is to be fixed up.
309 *
310 * Devices without power resources and _PSC, but having _PS0 and _PS3 defined,
311 * are assumed to be put into D0 by the BIOS. However, in some cases that may
312 * not be the case and this function should be used then.
313 */
314int acpi_device_fix_up_power(struct acpi_device *device)
315{
316 int ret = 0;
317
318 if (!device->power.flags.power_resources
319 && !device->power.flags.explicit_get
320 && device->power.state == ACPI_STATE_D0)
321 ret = acpi_dev_pm_explicit_set(device, ACPI_STATE_D0);
322
323 return ret;
324}
325
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100326int acpi_device_update_power(struct acpi_device *device, int *state_p)
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100327{
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100328 int state;
329 int result;
330
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100331 if (device->power.state == ACPI_STATE_UNKNOWN) {
332 result = acpi_bus_init_power(device);
333 if (!result && state_p)
334 *state_p = device->power.state;
335
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100336 return result;
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100337 }
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100338
339 result = acpi_device_get_power(device, &state);
340 if (result)
341 return result;
342
Rafael J. Wysocki91bdad02013-07-04 13:22:11 +0200343 if (state == ACPI_STATE_UNKNOWN) {
Rafael J. Wysocki511d5c42013-02-03 14:57:32 +0100344 state = ACPI_STATE_D0;
Rafael J. Wysocki91bdad02013-07-04 13:22:11 +0200345 result = acpi_device_set_power(device, state);
346 if (result)
347 return result;
348 } else {
349 if (device->power.flags.power_resources) {
350 /*
351 * We don't need to really switch the state, bu we need
352 * to update the power resources' reference counters.
353 */
354 result = acpi_power_transition(device, state);
355 if (result)
356 return result;
357 }
358 device->power.state = state;
359 }
360 if (state_p)
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100361 *state_p = state;
362
Rafael J. Wysocki91bdad02013-07-04 13:22:11 +0200363 return 0;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100364}
Aaron Lu2bb3a2b2013-11-19 15:43:52 +0800365EXPORT_SYMBOL_GPL(acpi_device_update_power);
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100366
367int acpi_bus_update_power(acpi_handle handle, int *state_p)
368{
369 struct acpi_device *device;
370 int result;
371
372 result = acpi_bus_get_device(handle, &device);
373 return result ? result : acpi_device_update_power(device, state_p);
374}
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100375EXPORT_SYMBOL_GPL(acpi_bus_update_power);
376
377bool acpi_bus_power_manageable(acpi_handle handle)
378{
379 struct acpi_device *device;
380 int result;
381
382 result = acpi_bus_get_device(handle, &device);
383 return result ? false : device->flags.power_manageable;
384}
385EXPORT_SYMBOL(acpi_bus_power_manageable);
386
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200387#ifdef CONFIG_PM
388static DEFINE_MUTEX(acpi_pm_notifier_lock);
389
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200390static void acpi_pm_notify_handler(acpi_handle handle, u32 val, void *not_used)
391{
392 struct acpi_device *adev;
393
394 if (val != ACPI_NOTIFY_DEVICE_WAKE)
395 return;
396
397 adev = acpi_bus_get_acpi_device(handle);
398 if (!adev)
399 return;
400
401 mutex_lock(&acpi_pm_notifier_lock);
402
403 if (adev->wakeup.flags.notifier_present) {
404 __pm_wakeup_event(adev->wakeup.ws, 0);
405 if (adev->wakeup.context.work.func)
406 queue_pm_work(&adev->wakeup.context.work);
407 }
408
409 mutex_unlock(&acpi_pm_notifier_lock);
410
411 acpi_bus_put_acpi_device(adev);
412}
413
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200414/**
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200415 * acpi_add_pm_notifier - Register PM notify handler for given ACPI device.
416 * @adev: ACPI device to add the notify handler for.
417 * @dev: Device to generate a wakeup event for while handling the notification.
418 * @work_func: Work function to execute when handling the notification.
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200419 *
420 * NOTE: @adev need not be a run-wake or wakeup device to be a valid source of
421 * PM wakeup events. For example, wakeup events may be generated for bridges
422 * if one of the devices below the bridge is signaling wakeup, even if the
423 * bridge itself doesn't have a wakeup GPE associated with it.
424 */
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200425acpi_status acpi_add_pm_notifier(struct acpi_device *adev, struct device *dev,
426 void (*work_func)(struct work_struct *work))
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200427{
428 acpi_status status = AE_ALREADY_EXISTS;
429
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200430 if (!dev && !work_func)
431 return AE_BAD_PARAMETER;
432
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200433 mutex_lock(&acpi_pm_notifier_lock);
434
435 if (adev->wakeup.flags.notifier_present)
436 goto out;
437
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200438 adev->wakeup.ws = wakeup_source_register(dev_name(&adev->dev));
439 adev->wakeup.context.dev = dev;
440 if (work_func)
441 INIT_WORK(&adev->wakeup.context.work, work_func);
442
443 status = acpi_install_notify_handler(adev->handle, ACPI_SYSTEM_NOTIFY,
444 acpi_pm_notify_handler, NULL);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200445 if (ACPI_FAILURE(status))
446 goto out;
447
448 adev->wakeup.flags.notifier_present = true;
449
450 out:
451 mutex_unlock(&acpi_pm_notifier_lock);
452 return status;
453}
454
455/**
456 * acpi_remove_pm_notifier - Unregister PM notifier from given ACPI device.
457 * @adev: ACPI device to remove the notifier from.
458 */
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200459acpi_status acpi_remove_pm_notifier(struct acpi_device *adev)
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200460{
461 acpi_status status = AE_BAD_PARAMETER;
462
463 mutex_lock(&acpi_pm_notifier_lock);
464
465 if (!adev->wakeup.flags.notifier_present)
466 goto out;
467
468 status = acpi_remove_notify_handler(adev->handle,
469 ACPI_SYSTEM_NOTIFY,
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200470 acpi_pm_notify_handler);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200471 if (ACPI_FAILURE(status))
472 goto out;
473
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200474 if (adev->wakeup.context.work.func) {
475 cancel_work_sync(&adev->wakeup.context.work);
476 adev->wakeup.context.work.func = NULL;
477 }
478 adev->wakeup.context.dev = NULL;
479 wakeup_source_unregister(adev->wakeup.ws);
480
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200481 adev->wakeup.flags.notifier_present = false;
482
483 out:
484 mutex_unlock(&acpi_pm_notifier_lock);
485 return status;
486}
487
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100488bool acpi_bus_can_wakeup(acpi_handle handle)
489{
490 struct acpi_device *device;
491 int result;
492
493 result = acpi_bus_get_device(handle, &device);
494 return result ? false : device->wakeup.flags.valid;
495}
496EXPORT_SYMBOL(acpi_bus_can_wakeup);
497
498/**
Rafael J. Wysockib25c77e2013-06-16 00:37:42 +0200499 * acpi_dev_pm_get_state - Get preferred power state of ACPI device.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100500 * @dev: Device whose preferred target power state to return.
501 * @adev: ACPI device node corresponding to @dev.
502 * @target_state: System state to match the resultant device state.
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200503 * @d_min_p: Location to store the highest power state available to the device.
504 * @d_max_p: Location to store the lowest power state available to the device.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100505 *
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200506 * Find the lowest power (highest number) and highest power (lowest number) ACPI
507 * device power states that the device can be in while the system is in the
508 * state represented by @target_state. Store the integer numbers representing
509 * those stats in the memory locations pointed to by @d_max_p and @d_min_p,
510 * respectively.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100511 *
512 * Callers must ensure that @dev and @adev are valid pointers and that @adev
513 * actually corresponds to @dev before using this function.
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200514 *
515 * Returns 0 on success or -ENODATA when one of the ACPI methods fails or
516 * returns a value that doesn't make sense. The memory locations pointed to by
517 * @d_max_p and @d_min_p are only modified on success.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100518 */
Rafael J. Wysockib25c77e2013-06-16 00:37:42 +0200519static int acpi_dev_pm_get_state(struct device *dev, struct acpi_device *adev,
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200520 u32 target_state, int *d_min_p, int *d_max_p)
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100521{
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200522 char method[] = { '_', 'S', '0' + target_state, 'D', '\0' };
523 acpi_handle handle = adev->handle;
524 unsigned long long ret;
525 int d_min, d_max;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100526 bool wakeup = false;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200527 acpi_status status;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100528
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100529 /*
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200530 * If the system state is S0, the lowest power state the device can be
531 * in is D3cold, unless the device has _S0W and is supposed to signal
532 * wakeup, in which case the return value of _S0W has to be used as the
533 * lowest power state available to the device.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100534 */
535 d_min = ACPI_STATE_D0;
Rafael J. Wysocki4c164ae2013-06-16 00:37:50 +0200536 d_max = ACPI_STATE_D3_COLD;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100537
538 /*
539 * If present, _SxD methods return the minimum D-state (highest power
540 * state) we can use for the corresponding S-states. Otherwise, the
541 * minimum D-state is D0 (ACPI 3.x).
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100542 */
543 if (target_state > ACPI_STATE_S0) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200544 /*
545 * We rely on acpi_evaluate_integer() not clobbering the integer
546 * provided if AE_NOT_FOUND is returned.
547 */
548 ret = d_min;
549 status = acpi_evaluate_integer(handle, method, NULL, &ret);
550 if ((ACPI_FAILURE(status) && status != AE_NOT_FOUND)
551 || ret > ACPI_STATE_D3_COLD)
552 return -ENODATA;
553
554 /*
555 * We need to handle legacy systems where D3hot and D3cold are
556 * the same and 3 is returned in both cases, so fall back to
557 * D3cold if D3hot is not a valid state.
558 */
559 if (!adev->power.states[ret].flags.valid) {
560 if (ret == ACPI_STATE_D3_HOT)
561 ret = ACPI_STATE_D3_COLD;
562 else
563 return -ENODATA;
564 }
565 d_min = ret;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100566 wakeup = device_may_wakeup(dev) && adev->wakeup.flags.valid
567 && adev->wakeup.sleep_state >= target_state;
568 } else if (dev_pm_qos_flags(dev, PM_QOS_FLAG_REMOTE_WAKEUP) !=
569 PM_QOS_FLAGS_NONE) {
570 wakeup = adev->wakeup.flags.valid;
571 }
572
573 /*
574 * If _PRW says we can wake up the system from the target sleep state,
575 * the D-state returned by _SxD is sufficient for that (we assume a
576 * wakeup-aware driver if wake is set). Still, if _SxW exists
577 * (ACPI 3.x), it should return the maximum (lowest power) D-state that
578 * can wake the system. _S0W may be valid, too.
579 */
580 if (wakeup) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200581 method[3] = 'W';
582 status = acpi_evaluate_integer(handle, method, NULL, &ret);
583 if (status == AE_NOT_FOUND) {
584 if (target_state > ACPI_STATE_S0)
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100585 d_max = d_min;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200586 } else if (ACPI_SUCCESS(status) && ret <= ACPI_STATE_D3_COLD) {
587 /* Fall back to D3cold if ret is not a valid state. */
588 if (!adev->power.states[ret].flags.valid)
589 ret = ACPI_STATE_D3_COLD;
590
591 d_max = ret > d_min ? ret : d_min;
592 } else {
593 return -ENODATA;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100594 }
595 }
596
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100597 if (d_min_p)
598 *d_min_p = d_min;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200599
600 if (d_max_p)
601 *d_max_p = d_max;
602
603 return 0;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100604}
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100605
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100606/**
607 * acpi_pm_device_sleep_state - Get preferred power state of ACPI device.
608 * @dev: Device whose preferred target power state to return.
609 * @d_min_p: Location to store the upper limit of the allowed states range.
610 * @d_max_in: Deepest low-power state to take into consideration.
611 * Return value: Preferred power state of the device on success, -ENODEV
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200612 * if there's no 'struct acpi_device' for @dev, -EINVAL if @d_max_in is
613 * incorrect, or -ENODATA on ACPI method failure.
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100614 *
615 * The caller must ensure that @dev is valid before using this function.
616 */
617int acpi_pm_device_sleep_state(struct device *dev, int *d_min_p, int d_max_in)
618{
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100619 struct acpi_device *adev;
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200620 int ret, d_min, d_max;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200621
622 if (d_max_in < ACPI_STATE_D0 || d_max_in > ACPI_STATE_D3_COLD)
623 return -EINVAL;
624
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200625 if (d_max_in > ACPI_STATE_D2) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200626 enum pm_qos_flags_status stat;
627
628 stat = dev_pm_qos_flags(dev, PM_QOS_FLAG_NO_POWER_OFF);
629 if (stat == PM_QOS_FLAGS_ALL)
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200630 d_max_in = ACPI_STATE_D2;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200631 }
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100632
Rafael J. Wysocki17653a32014-07-23 01:01:41 +0200633 adev = ACPI_COMPANION(dev);
634 if (!adev) {
635 dev_dbg(dev, "ACPI companion missing in %s!\n", __func__);
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100636 return -ENODEV;
637 }
638
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200639 ret = acpi_dev_pm_get_state(dev, adev, acpi_target_system_state(),
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200640 &d_min, &d_max);
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200641 if (ret)
642 return ret;
643
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200644 if (d_max_in < d_min)
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200645 return -EINVAL;
646
647 if (d_max > d_max_in) {
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200648 for (d_max = d_max_in; d_max > d_min; d_max--) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200649 if (adev->power.states[d_max].flags.valid)
650 break;
651 }
652 }
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200653
654 if (d_min_p)
655 *d_min_p = d_min;
656
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200657 return d_max;
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100658}
659EXPORT_SYMBOL(acpi_pm_device_sleep_state);
660
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100661/**
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200662 * acpi_pm_notify_work_func - ACPI devices wakeup notification work function.
663 * @work: Work item to handle.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100664 */
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200665static void acpi_pm_notify_work_func(struct work_struct *work)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100666{
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200667 struct device *dev;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100668
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200669 dev = container_of(work, struct acpi_device_wakeup_context, work)->dev;
670 if (dev) {
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100671 pm_wakeup_event(dev, 0);
672 pm_runtime_resume(dev);
673 }
674}
675
676/**
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200677 * acpi_device_wakeup - Enable/disable wakeup functionality for device.
678 * @adev: ACPI device to enable/disable wakeup functionality for.
679 * @target_state: State the system is transitioning into.
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100680 * @enable: Whether to enable or disable the wakeup functionality.
681 *
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100682 * Enable/disable the GPE associated with @adev so that it can generate
683 * wakeup signals for the device in response to external (remote) events and
684 * enable/disable device wakeup power.
685 *
686 * Callers must ensure that @adev is a valid ACPI device node before executing
687 * this function.
688 */
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200689static int acpi_device_wakeup(struct acpi_device *adev, u32 target_state,
690 bool enable)
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100691{
692 struct acpi_device_wakeup *wakeup = &adev->wakeup;
693
694 if (enable) {
695 acpi_status res;
696 int error;
697
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200698 error = acpi_enable_wakeup_device_power(adev, target_state);
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100699 if (error)
700 return error;
701
Rafael J. Wysocki175f8e22014-12-12 22:51:58 +0100702 if (adev->wakeup.flags.enabled)
703 return 0;
704
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100705 res = acpi_enable_gpe(wakeup->gpe_device, wakeup->gpe_number);
Rafael J. Wysocki175f8e22014-12-12 22:51:58 +0100706 if (ACPI_SUCCESS(res)) {
707 adev->wakeup.flags.enabled = 1;
708 } else {
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100709 acpi_disable_wakeup_device_power(adev);
710 return -EIO;
711 }
712 } else {
Rafael J. Wysocki175f8e22014-12-12 22:51:58 +0100713 if (adev->wakeup.flags.enabled) {
714 acpi_disable_gpe(wakeup->gpe_device, wakeup->gpe_number);
715 adev->wakeup.flags.enabled = 0;
716 }
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100717 acpi_disable_wakeup_device_power(adev);
718 }
719 return 0;
720}
721
722/**
723 * acpi_pm_device_run_wake - Enable/disable remote wakeup for given device.
724 * @dev: Device to enable/disable the platform to wake up.
725 * @enable: Whether to enable or disable the wakeup functionality.
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100726 */
727int acpi_pm_device_run_wake(struct device *phys_dev, bool enable)
728{
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100729 struct acpi_device *adev;
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100730
731 if (!device_run_wake(phys_dev))
732 return -EINVAL;
733
Rafael J. Wysocki17653a32014-07-23 01:01:41 +0200734 adev = ACPI_COMPANION(phys_dev);
735 if (!adev) {
736 dev_dbg(phys_dev, "ACPI companion missing in %s!\n", __func__);
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100737 return -ENODEV;
738 }
739
Zhang Rui67598a12014-10-23 20:20:00 +0800740 return acpi_device_wakeup(adev, ACPI_STATE_S0, enable);
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100741}
742EXPORT_SYMBOL(acpi_pm_device_run_wake);
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100743
Mika Westerberg4d564102013-01-14 20:13:37 +0000744#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100745/**
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100746 * acpi_pm_device_sleep_wake - Enable or disable device to wake up the system.
747 * @dev: Device to enable/desible to wake up the system from sleep states.
748 * @enable: Whether to enable or disable @dev to wake up the system.
749 */
750int acpi_pm_device_sleep_wake(struct device *dev, bool enable)
751{
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100752 struct acpi_device *adev;
753 int error;
754
755 if (!device_can_wakeup(dev))
756 return -EINVAL;
757
Rafael J. Wysocki17653a32014-07-23 01:01:41 +0200758 adev = ACPI_COMPANION(dev);
759 if (!adev) {
760 dev_dbg(dev, "ACPI companion missing in %s!\n", __func__);
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100761 return -ENODEV;
762 }
763
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200764 error = acpi_device_wakeup(adev, acpi_target_system_state(), enable);
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100765 if (!error)
766 dev_info(dev, "System wakeup %s by ACPI\n",
767 enable ? "enabled" : "disabled");
768
769 return error;
770}
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100771#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100772
773/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100774 * acpi_dev_pm_low_power - Put ACPI device into a low-power state.
775 * @dev: Device to put into a low-power state.
776 * @adev: ACPI device node corresponding to @dev.
777 * @system_state: System state to choose the device state for.
778 */
779static int acpi_dev_pm_low_power(struct device *dev, struct acpi_device *adev,
780 u32 system_state)
781{
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200782 int ret, state;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100783
784 if (!acpi_device_power_manageable(adev))
785 return 0;
786
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200787 ret = acpi_dev_pm_get_state(dev, adev, system_state, NULL, &state);
788 return ret ? ret : acpi_device_set_power(adev, state);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100789}
790
791/**
792 * acpi_dev_pm_full_power - Put ACPI device into the full-power state.
793 * @adev: ACPI device node to put into the full-power state.
794 */
795static int acpi_dev_pm_full_power(struct acpi_device *adev)
796{
797 return acpi_device_power_manageable(adev) ?
798 acpi_device_set_power(adev, ACPI_STATE_D0) : 0;
799}
800
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100801/**
802 * acpi_dev_runtime_suspend - Put device into a low-power state using ACPI.
803 * @dev: Device to put into a low-power state.
804 *
805 * Put the given device into a runtime low-power state using the standard ACPI
806 * mechanism. Set up remote wakeup if desired, choose the state to put the
807 * device into (this checks if remote wakeup is expected to work too), and set
808 * the power state of the device.
809 */
810int acpi_dev_runtime_suspend(struct device *dev)
811{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +0100812 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100813 bool remote_wakeup;
814 int error;
815
816 if (!adev)
817 return 0;
818
819 remote_wakeup = dev_pm_qos_flags(dev, PM_QOS_FLAG_REMOTE_WAKEUP) >
820 PM_QOS_FLAGS_NONE;
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200821 error = acpi_device_wakeup(adev, ACPI_STATE_S0, remote_wakeup);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100822 if (remote_wakeup && error)
823 return -EAGAIN;
824
825 error = acpi_dev_pm_low_power(dev, adev, ACPI_STATE_S0);
826 if (error)
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200827 acpi_device_wakeup(adev, ACPI_STATE_S0, false);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100828
829 return error;
830}
831EXPORT_SYMBOL_GPL(acpi_dev_runtime_suspend);
832
833/**
834 * acpi_dev_runtime_resume - Put device into the full-power state using ACPI.
835 * @dev: Device to put into the full-power state.
836 *
837 * Put the given device into the full-power state using the standard ACPI
838 * mechanism at run time. Set the power state of the device to ACPI D0 and
839 * disable remote wakeup.
840 */
841int acpi_dev_runtime_resume(struct device *dev)
842{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +0100843 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100844 int error;
845
846 if (!adev)
847 return 0;
848
849 error = acpi_dev_pm_full_power(adev);
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200850 acpi_device_wakeup(adev, ACPI_STATE_S0, false);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100851 return error;
852}
853EXPORT_SYMBOL_GPL(acpi_dev_runtime_resume);
854
855/**
856 * acpi_subsys_runtime_suspend - Suspend device using ACPI.
857 * @dev: Device to suspend.
858 *
859 * Carry out the generic runtime suspend procedure for @dev and use ACPI to put
860 * it into a runtime low-power state.
861 */
862int acpi_subsys_runtime_suspend(struct device *dev)
863{
864 int ret = pm_generic_runtime_suspend(dev);
865 return ret ? ret : acpi_dev_runtime_suspend(dev);
866}
867EXPORT_SYMBOL_GPL(acpi_subsys_runtime_suspend);
868
869/**
870 * acpi_subsys_runtime_resume - Resume device using ACPI.
871 * @dev: Device to Resume.
872 *
873 * Use ACPI to put the given device into the full-power state and carry out the
874 * generic runtime resume procedure for it.
875 */
876int acpi_subsys_runtime_resume(struct device *dev)
877{
878 int ret = acpi_dev_runtime_resume(dev);
879 return ret ? ret : pm_generic_runtime_resume(dev);
880}
881EXPORT_SYMBOL_GPL(acpi_subsys_runtime_resume);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100882
883#ifdef CONFIG_PM_SLEEP
884/**
885 * acpi_dev_suspend_late - Put device into a low-power state using ACPI.
886 * @dev: Device to put into a low-power state.
887 *
888 * Put the given device into a low-power state during system transition to a
889 * sleep state using the standard ACPI mechanism. Set up system wakeup if
890 * desired, choose the state to put the device into (this checks if system
891 * wakeup is expected to work too), and set the power state of the device.
892 */
893int acpi_dev_suspend_late(struct device *dev)
894{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +0100895 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100896 u32 target_state;
897 bool wakeup;
898 int error;
899
900 if (!adev)
901 return 0;
902
903 target_state = acpi_target_system_state();
Rafael J. Wysocki78579b72014-11-19 01:44:11 +0100904 wakeup = device_may_wakeup(dev) && acpi_device_can_wakeup(adev);
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200905 error = acpi_device_wakeup(adev, target_state, wakeup);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100906 if (wakeup && error)
907 return error;
908
909 error = acpi_dev_pm_low_power(dev, adev, target_state);
910 if (error)
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200911 acpi_device_wakeup(adev, ACPI_STATE_UNKNOWN, false);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100912
913 return error;
914}
915EXPORT_SYMBOL_GPL(acpi_dev_suspend_late);
916
917/**
918 * acpi_dev_resume_early - Put device into the full-power state using ACPI.
919 * @dev: Device to put into the full-power state.
920 *
921 * Put the given device into the full-power state using the standard ACPI
922 * mechanism during system transition to the working state. Set the power
923 * state of the device to ACPI D0 and disable remote wakeup.
924 */
925int acpi_dev_resume_early(struct device *dev)
926{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +0100927 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100928 int error;
929
930 if (!adev)
931 return 0;
932
933 error = acpi_dev_pm_full_power(adev);
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200934 acpi_device_wakeup(adev, ACPI_STATE_UNKNOWN, false);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100935 return error;
936}
937EXPORT_SYMBOL_GPL(acpi_dev_resume_early);
938
939/**
940 * acpi_subsys_prepare - Prepare device for system transition to a sleep state.
941 * @dev: Device to prepare.
942 */
943int acpi_subsys_prepare(struct device *dev)
944{
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +0200945 struct acpi_device *adev = ACPI_COMPANION(dev);
946 u32 sys_target;
947 int ret, state;
Rafael J. Wysocki92858c42014-02-26 01:00:19 +0100948
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +0200949 ret = pm_generic_prepare(dev);
950 if (ret < 0)
951 return ret;
952
953 if (!adev || !pm_runtime_suspended(dev)
954 || device_may_wakeup(dev) != !!adev->wakeup.prepare_count)
955 return 0;
956
957 sys_target = acpi_target_system_state();
958 if (sys_target == ACPI_STATE_S0)
959 return 1;
960
961 if (adev->power.flags.dsw_present)
962 return 0;
963
964 ret = acpi_dev_pm_get_state(dev, adev, sys_target, NULL, &state);
965 return !ret && state == adev->power.state;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100966}
967EXPORT_SYMBOL_GPL(acpi_subsys_prepare);
968
969/**
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +0200970 * acpi_subsys_complete - Finalize device's resume during system resume.
971 * @dev: Device to handle.
972 */
Heikki Krogerus4cf563c2014-05-15 16:40:23 +0300973void acpi_subsys_complete(struct device *dev)
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +0200974{
Rafael J. Wysocki3d564022015-06-10 01:32:38 +0200975 pm_generic_complete(dev);
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +0200976 /*
977 * If the device had been runtime-suspended before the system went into
978 * the sleep state it is going out of and it has never been resumed till
979 * now, resume it in case the firmware powered it up.
980 */
981 if (dev->power.direct_complete)
982 pm_request_resume(dev);
983}
Heikki Krogerus4cf563c2014-05-15 16:40:23 +0300984EXPORT_SYMBOL_GPL(acpi_subsys_complete);
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +0200985
986/**
Rafael J. Wysocki92858c42014-02-26 01:00:19 +0100987 * acpi_subsys_suspend - Run the device driver's suspend callback.
988 * @dev: Device to handle.
989 *
990 * Follow PCI and resume devices suspended at run time before running their
991 * system suspend callbacks.
992 */
993int acpi_subsys_suspend(struct device *dev)
994{
995 pm_runtime_resume(dev);
996 return pm_generic_suspend(dev);
997}
Heikki Krogerus4cf563c2014-05-15 16:40:23 +0300998EXPORT_SYMBOL_GPL(acpi_subsys_suspend);
Rafael J. Wysocki92858c42014-02-26 01:00:19 +0100999
1000/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001001 * acpi_subsys_suspend_late - Suspend device using ACPI.
1002 * @dev: Device to suspend.
1003 *
1004 * Carry out the generic late suspend procedure for @dev and use ACPI to put
1005 * it into a low-power state during system transition into a sleep state.
1006 */
1007int acpi_subsys_suspend_late(struct device *dev)
1008{
1009 int ret = pm_generic_suspend_late(dev);
1010 return ret ? ret : acpi_dev_suspend_late(dev);
1011}
1012EXPORT_SYMBOL_GPL(acpi_subsys_suspend_late);
1013
1014/**
1015 * acpi_subsys_resume_early - Resume device using ACPI.
1016 * @dev: Device to Resume.
1017 *
1018 * Use ACPI to put the given device into the full-power state and carry out the
1019 * generic early resume procedure for it during system transition into the
1020 * working state.
1021 */
1022int acpi_subsys_resume_early(struct device *dev)
1023{
1024 int ret = acpi_dev_resume_early(dev);
1025 return ret ? ret : pm_generic_resume_early(dev);
1026}
1027EXPORT_SYMBOL_GPL(acpi_subsys_resume_early);
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001028
1029/**
1030 * acpi_subsys_freeze - Run the device driver's freeze callback.
1031 * @dev: Device to handle.
1032 */
1033int acpi_subsys_freeze(struct device *dev)
1034{
1035 /*
1036 * This used to be done in acpi_subsys_prepare() for all devices and
1037 * some drivers may depend on it, so do it here. Ideally, however,
1038 * runtime-suspended devices should not be touched during freeze/thaw
1039 * transitions.
1040 */
1041 pm_runtime_resume(dev);
1042 return pm_generic_freeze(dev);
1043}
Heikki Krogerus4cf563c2014-05-15 16:40:23 +03001044EXPORT_SYMBOL_GPL(acpi_subsys_freeze);
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001045
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001046#endif /* CONFIG_PM_SLEEP */
1047
1048static struct dev_pm_domain acpi_general_pm_domain = {
1049 .ops = {
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001050 .runtime_suspend = acpi_subsys_runtime_suspend,
1051 .runtime_resume = acpi_subsys_runtime_resume,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001052#ifdef CONFIG_PM_SLEEP
1053 .prepare = acpi_subsys_prepare,
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +02001054 .complete = acpi_subsys_complete,
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001055 .suspend = acpi_subsys_suspend,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001056 .suspend_late = acpi_subsys_suspend_late,
1057 .resume_early = acpi_subsys_resume_early,
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001058 .freeze = acpi_subsys_freeze,
1059 .poweroff = acpi_subsys_suspend,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001060 .poweroff_late = acpi_subsys_suspend_late,
1061 .restore_early = acpi_subsys_resume_early,
1062#endif
1063 },
1064};
1065
1066/**
Ulf Hansson91d66cd2014-09-19 20:27:44 +02001067 * acpi_dev_pm_detach - Remove ACPI power management from the device.
1068 * @dev: Device to take care of.
1069 * @power_off: Whether or not to try to remove power from the device.
1070 *
1071 * Remove the device from the general ACPI PM domain and remove its wakeup
1072 * notifier. If @power_off is set, additionally remove power from the device if
1073 * possible.
1074 *
1075 * Callers must ensure proper synchronization of this function with power
1076 * management callbacks.
1077 */
1078static void acpi_dev_pm_detach(struct device *dev, bool power_off)
1079{
1080 struct acpi_device *adev = ACPI_COMPANION(dev);
1081
1082 if (adev && dev->pm_domain == &acpi_general_pm_domain) {
1083 dev->pm_domain = NULL;
1084 acpi_remove_pm_notifier(adev);
1085 if (power_off) {
1086 /*
1087 * If the device's PM QoS resume latency limit or flags
1088 * have been exposed to user space, they have to be
1089 * hidden at this point, so that they don't affect the
1090 * choice of the low-power state to put the device into.
1091 */
1092 dev_pm_qos_hide_latency_limit(dev);
1093 dev_pm_qos_hide_flags(dev);
1094 acpi_device_wakeup(adev, ACPI_STATE_S0, false);
1095 acpi_dev_pm_low_power(dev, adev, ACPI_STATE_S0);
1096 }
1097 }
1098}
1099
1100/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001101 * acpi_dev_pm_attach - Prepare device for ACPI power management.
1102 * @dev: Device to prepare.
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001103 * @power_on: Whether or not to power on the device.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001104 *
1105 * If @dev has a valid ACPI handle that has a valid struct acpi_device object
1106 * attached to it, install a wakeup notification handler for the device and
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001107 * add it to the general ACPI PM domain. If @power_on is set, the device will
1108 * be put into the ACPI D0 state before the function returns.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001109 *
1110 * This assumes that the @dev's bus type uses generic power management callbacks
1111 * (or doesn't use any power management callbacks at all).
1112 *
1113 * Callers must ensure proper synchronization of this function with power
1114 * management callbacks.
1115 */
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001116int acpi_dev_pm_attach(struct device *dev, bool power_on)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001117{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +01001118 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001119
1120 if (!adev)
1121 return -ENODEV;
1122
1123 if (dev->pm_domain)
1124 return -EEXIST;
1125
Rafael J. Wysockic0725302014-07-23 01:00:45 +02001126 acpi_add_pm_notifier(adev, dev, acpi_pm_notify_work_func);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001127 dev->pm_domain = &acpi_general_pm_domain;
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001128 if (power_on) {
1129 acpi_dev_pm_full_power(adev);
Rafael J. Wysockif35cec22014-07-23 01:00:53 +02001130 acpi_device_wakeup(adev, ACPI_STATE_S0, false);
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001131 }
Ulf Hansson86f1e152014-09-19 20:27:35 +02001132
1133 dev->pm_domain->detach = acpi_dev_pm_detach;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001134 return 0;
1135}
1136EXPORT_SYMBOL_GPL(acpi_dev_pm_attach);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +02001137#endif /* CONFIG_PM */