blob: 4806b7f856c46047bb0b4bd38bbc66717e33a6e0 [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 *
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +010018 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19 */
20
Rafael J. Wysocki7b199812013-11-11 22:41:56 +010021#include <linux/acpi.h>
Rafael J. Wysocki86b38322012-11-02 01:40:18 +010022#include <linux/export.h>
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +010023#include <linux/mutex.h>
Rafael J. Wysocki86b38322012-11-02 01:40:18 +010024#include <linux/pm_qos.h>
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +010025#include <linux/pm_runtime.h>
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +010026
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010027#include "internal.h"
28
29#define _COMPONENT ACPI_POWER_COMPONENT
30ACPI_MODULE_NAME("device_pm");
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +010031
Rafael J. Wysocki86b38322012-11-02 01:40:18 +010032/**
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010033 * acpi_power_state_string - String representation of ACPI device power state.
34 * @state: ACPI device power state to return the string representation of.
35 */
36const char *acpi_power_state_string(int state)
37{
38 switch (state) {
39 case ACPI_STATE_D0:
40 return "D0";
41 case ACPI_STATE_D1:
42 return "D1";
43 case ACPI_STATE_D2:
44 return "D2";
45 case ACPI_STATE_D3_HOT:
46 return "D3hot";
47 case ACPI_STATE_D3_COLD:
Rafael J. Wysocki898fee42013-01-22 12:56:26 +010048 return "D3cold";
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010049 default:
50 return "(unknown)";
51 }
52}
53
54/**
55 * acpi_device_get_power - Get power state of an ACPI device.
56 * @device: Device to get the power state of.
57 * @state: Place to store the power state of the device.
58 *
59 * This function does not update the device's power.state field, but it may
60 * update its parent's power.state field (when the parent's power state is
61 * unknown and the device's power state turns out to be D0).
62 */
63int acpi_device_get_power(struct acpi_device *device, int *state)
64{
65 int result = ACPI_STATE_UNKNOWN;
66
67 if (!device || !state)
68 return -EINVAL;
69
70 if (!device->flags.power_manageable) {
71 /* TBD: Non-recursive algorithm for walking up hierarchy. */
72 *state = device->parent ?
73 device->parent->power.state : ACPI_STATE_D0;
74 goto out;
75 }
76
77 /*
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +010078 * Get the device's power state from power resources settings and _PSC,
79 * if available.
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010080 */
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +010081 if (device->power.flags.power_resources) {
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010082 int error = acpi_power_get_inferred_state(device, &result);
83 if (error)
84 return error;
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +010085 }
86 if (device->power.flags.explicit_get) {
87 acpi_handle handle = device->handle;
88 unsigned long long psc;
89 acpi_status status;
90
91 status = acpi_evaluate_integer(handle, "_PSC", NULL, &psc);
92 if (ACPI_FAILURE(status))
93 return -ENODEV;
94
95 /*
96 * The power resources settings may indicate a power state
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +020097 * shallower than the actual power state of the device, because
98 * the same power resources may be referenced by other devices.
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +010099 *
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200100 * For systems predating ACPI 4.0 we assume that D3hot is the
101 * deepest state that can be supported.
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +0100102 */
103 if (psc > result && psc < ACPI_STATE_D3_COLD)
104 result = psc;
105 else if (result == ACPI_STATE_UNKNOWN)
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200106 result = psc > ACPI_STATE_D2 ? ACPI_STATE_D3_HOT : psc;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100107 }
108
109 /*
110 * If we were unsure about the device parent's power state up to this
111 * point, the fact that the device is in D0 implies that the parent has
Mika Westerberg644f17a2013-10-10 13:28:46 +0300112 * to be in D0 too, except if ignore_parent is set.
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100113 */
Mika Westerberg644f17a2013-10-10 13:28:46 +0300114 if (!device->power.flags.ignore_parent && device->parent
115 && device->parent->power.state == ACPI_STATE_UNKNOWN
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100116 && result == ACPI_STATE_D0)
117 device->parent->power.state = ACPI_STATE_D0;
118
119 *state = result;
120
121 out:
122 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is %s\n",
123 device->pnp.bus_id, acpi_power_state_string(*state)));
124
125 return 0;
126}
127
Rafael J. Wysocki9c0f45e2013-01-22 12:55:52 +0100128static int acpi_dev_pm_explicit_set(struct acpi_device *adev, int state)
129{
130 if (adev->power.states[state].flags.explicit_set) {
131 char method[5] = { '_', 'P', 'S', '0' + state, '\0' };
132 acpi_status status;
133
134 status = acpi_evaluate_object(adev->handle, method, NULL, NULL);
135 if (ACPI_FAILURE(status))
136 return -ENODEV;
137 }
138 return 0;
139}
140
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100141/**
142 * acpi_device_set_power - Set power state of an ACPI device.
143 * @device: Device to set the power state of.
144 * @state: New power state to set.
145 *
146 * Callers must ensure that the device is power manageable before using this
147 * function.
148 */
149int acpi_device_set_power(struct acpi_device *device, int state)
150{
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200151 int target_state = state;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100152 int result = 0;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100153
Rafael J. Wysocki2c7d1322013-07-30 14:34:00 +0200154 if (!device || !device->flags.power_manageable
155 || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100156 return -EINVAL;
157
158 /* Make sure this is a valid target state */
159
160 if (state == device->power.state) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200161 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] already in %s\n",
162 device->pnp.bus_id,
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100163 acpi_power_state_string(state)));
164 return 0;
165 }
166
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200167 if (state == ACPI_STATE_D3_COLD) {
168 /*
169 * For transitions to D3cold we need to execute _PS3 and then
170 * possibly drop references to the power resources in use.
171 */
172 state = ACPI_STATE_D3_HOT;
173 /* If _PR3 is not available, use D3hot as the target state. */
174 if (!device->power.states[ACPI_STATE_D3_COLD].flags.valid)
175 target_state = state;
176 } else if (!device->power.states[state].flags.valid) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200177 dev_warn(&device->dev, "Power state %s not supported\n",
178 acpi_power_state_string(state));
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100179 return -ENODEV;
180 }
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200181
Mika Westerberg644f17a2013-10-10 13:28:46 +0300182 if (!device->power.flags.ignore_parent &&
183 device->parent && (state < device->parent->power.state)) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200184 dev_warn(&device->dev,
Aaron Lu593298e2013-08-03 21:13:22 +0200185 "Cannot transition to power state %s for parent in %s\n",
186 acpi_power_state_string(state),
187 acpi_power_state_string(device->parent->power.state));
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100188 return -ENODEV;
189 }
190
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100191 /*
192 * Transition Power
193 * ----------------
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200194 * In accordance with ACPI 6, _PSx is executed before manipulating power
195 * resources, unless the target state is D0, in which case _PS0 is
196 * supposed to be executed after turning the power resources on.
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100197 */
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200198 if (state > ACPI_STATE_D0) {
199 /*
200 * According to ACPI 6, devices cannot go from lower-power
201 * (deeper) states to higher-power (shallower) states.
202 */
203 if (state < device->power.state) {
204 dev_warn(&device->dev, "Cannot transition from %s to %s\n",
205 acpi_power_state_string(device->power.state),
206 acpi_power_state_string(state));
207 return -ENODEV;
208 }
209
210 result = acpi_dev_pm_explicit_set(device, state);
Rafael J. Wysocki9c0f45e2013-01-22 12:55:52 +0100211 if (result)
212 goto end;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100213
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200214 if (device->power.flags.power_resources)
215 result = acpi_power_transition(device, target_state);
216 } else {
217 if (device->power.flags.power_resources) {
218 result = acpi_power_transition(device, ACPI_STATE_D0);
219 if (result)
220 goto end;
221 }
222 result = acpi_dev_pm_explicit_set(device, ACPI_STATE_D0);
Rafael J. Wysockie5656272013-01-22 12:56:35 +0100223 }
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100224
Rafael J. Wysockie78adb72013-01-22 12:56:04 +0100225 end:
226 if (result) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200227 dev_warn(&device->dev, "Failed to change power state to %s\n",
228 acpi_power_state_string(state));
Rafael J. Wysockie78adb72013-01-22 12:56:04 +0100229 } else {
Mika Westerberg71b65442015-07-28 13:51:21 +0300230 device->power.state = target_state;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100231 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
232 "Device [%s] transitioned to %s\n",
233 device->pnp.bus_id,
234 acpi_power_state_string(state)));
235 }
236
237 return result;
238}
239EXPORT_SYMBOL(acpi_device_set_power);
240
241int acpi_bus_set_power(acpi_handle handle, int state)
242{
243 struct acpi_device *device;
244 int result;
245
246 result = acpi_bus_get_device(handle, &device);
247 if (result)
248 return result;
249
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100250 return acpi_device_set_power(device, state);
251}
252EXPORT_SYMBOL(acpi_bus_set_power);
253
254int acpi_bus_init_power(struct acpi_device *device)
255{
256 int state;
257 int result;
258
259 if (!device)
260 return -EINVAL;
261
262 device->power.state = ACPI_STATE_UNKNOWN;
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100263 if (!acpi_device_is_present(device))
Rafael J. Wysocki1b1f3e12015-01-01 23:38:28 +0100264 return -ENXIO;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100265
266 result = acpi_device_get_power(device, &state);
267 if (result)
268 return result;
269
Rafael J. Wysockia2367802013-01-22 12:54:38 +0100270 if (state < ACPI_STATE_D3_COLD && device->power.flags.power_resources) {
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200271 /* Reference count the power resources. */
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100272 result = acpi_power_on_resources(device, state);
Rafael J. Wysockia2367802013-01-22 12:54:38 +0100273 if (result)
274 return result;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100275
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200276 if (state == ACPI_STATE_D0) {
277 /*
278 * If _PSC is not present and the state inferred from
279 * power resources appears to be D0, it still may be
280 * necessary to execute _PS0 at this point, because
281 * another device using the same power resources may
282 * have been put into D0 previously and that's why we
283 * see D0 here.
284 */
285 result = acpi_dev_pm_explicit_set(device, state);
286 if (result)
287 return result;
288 }
Rafael J. Wysockib3785492013-02-01 23:43:02 +0100289 } else if (state == ACPI_STATE_UNKNOWN) {
Rafael J. Wysocki7cd84072013-06-05 14:01:19 +0200290 /*
291 * No power resources and missing _PSC? Cross fingers and make
292 * it D0 in hope that this is what the BIOS put the device into.
293 * [We tried to force D0 here by executing _PS0, but that broke
294 * Toshiba P870-303 in a nasty way.]
295 */
Rafael J. Wysockib3785492013-02-01 23:43:02 +0100296 state = ACPI_STATE_D0;
Rafael J. Wysockia2367802013-01-22 12:54:38 +0100297 }
298 device->power.state = state;
299 return 0;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100300}
301
Rafael J. Wysockib9e95fc2013-06-19 00:45:34 +0200302/**
303 * acpi_device_fix_up_power - Force device with missing _PSC into D0.
304 * @device: Device object whose power state is to be fixed up.
305 *
306 * Devices without power resources and _PSC, but having _PS0 and _PS3 defined,
307 * are assumed to be put into D0 by the BIOS. However, in some cases that may
308 * not be the case and this function should be used then.
309 */
310int acpi_device_fix_up_power(struct acpi_device *device)
311{
312 int ret = 0;
313
314 if (!device->power.flags.power_resources
315 && !device->power.flags.explicit_get
316 && device->power.state == ACPI_STATE_D0)
317 ret = acpi_dev_pm_explicit_set(device, ACPI_STATE_D0);
318
319 return ret;
320}
321
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100322int acpi_device_update_power(struct acpi_device *device, int *state_p)
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100323{
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100324 int state;
325 int result;
326
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100327 if (device->power.state == ACPI_STATE_UNKNOWN) {
328 result = acpi_bus_init_power(device);
329 if (!result && state_p)
330 *state_p = device->power.state;
331
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100332 return result;
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100333 }
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100334
335 result = acpi_device_get_power(device, &state);
336 if (result)
337 return result;
338
Rafael J. Wysocki91bdad02013-07-04 13:22:11 +0200339 if (state == ACPI_STATE_UNKNOWN) {
Rafael J. Wysocki511d5c42013-02-03 14:57:32 +0100340 state = ACPI_STATE_D0;
Rafael J. Wysocki91bdad02013-07-04 13:22:11 +0200341 result = acpi_device_set_power(device, state);
342 if (result)
343 return result;
344 } else {
345 if (device->power.flags.power_resources) {
346 /*
347 * We don't need to really switch the state, bu we need
348 * to update the power resources' reference counters.
349 */
350 result = acpi_power_transition(device, state);
351 if (result)
352 return result;
353 }
354 device->power.state = state;
355 }
356 if (state_p)
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100357 *state_p = state;
358
Rafael J. Wysocki91bdad02013-07-04 13:22:11 +0200359 return 0;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100360}
Aaron Lu2bb3a2b2013-11-19 15:43:52 +0800361EXPORT_SYMBOL_GPL(acpi_device_update_power);
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100362
363int acpi_bus_update_power(acpi_handle handle, int *state_p)
364{
365 struct acpi_device *device;
366 int result;
367
368 result = acpi_bus_get_device(handle, &device);
369 return result ? result : acpi_device_update_power(device, state_p);
370}
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100371EXPORT_SYMBOL_GPL(acpi_bus_update_power);
372
373bool acpi_bus_power_manageable(acpi_handle handle)
374{
375 struct acpi_device *device;
376 int result;
377
378 result = acpi_bus_get_device(handle, &device);
379 return result ? false : device->flags.power_manageable;
380}
381EXPORT_SYMBOL(acpi_bus_power_manageable);
382
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200383#ifdef CONFIG_PM
384static DEFINE_MUTEX(acpi_pm_notifier_lock);
385
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200386static void acpi_pm_notify_handler(acpi_handle handle, u32 val, void *not_used)
387{
388 struct acpi_device *adev;
389
390 if (val != ACPI_NOTIFY_DEVICE_WAKE)
391 return;
392
393 adev = acpi_bus_get_acpi_device(handle);
394 if (!adev)
395 return;
396
397 mutex_lock(&acpi_pm_notifier_lock);
398
399 if (adev->wakeup.flags.notifier_present) {
400 __pm_wakeup_event(adev->wakeup.ws, 0);
401 if (adev->wakeup.context.work.func)
402 queue_pm_work(&adev->wakeup.context.work);
403 }
404
405 mutex_unlock(&acpi_pm_notifier_lock);
406
407 acpi_bus_put_acpi_device(adev);
408}
409
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200410/**
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200411 * acpi_add_pm_notifier - Register PM notify handler for given ACPI device.
412 * @adev: ACPI device to add the notify handler for.
413 * @dev: Device to generate a wakeup event for while handling the notification.
414 * @work_func: Work function to execute when handling the notification.
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200415 *
416 * NOTE: @adev need not be a run-wake or wakeup device to be a valid source of
417 * PM wakeup events. For example, wakeup events may be generated for bridges
418 * if one of the devices below the bridge is signaling wakeup, even if the
419 * bridge itself doesn't have a wakeup GPE associated with it.
420 */
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200421acpi_status acpi_add_pm_notifier(struct acpi_device *adev, struct device *dev,
422 void (*work_func)(struct work_struct *work))
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200423{
424 acpi_status status = AE_ALREADY_EXISTS;
425
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200426 if (!dev && !work_func)
427 return AE_BAD_PARAMETER;
428
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200429 mutex_lock(&acpi_pm_notifier_lock);
430
431 if (adev->wakeup.flags.notifier_present)
432 goto out;
433
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200434 adev->wakeup.ws = wakeup_source_register(dev_name(&adev->dev));
435 adev->wakeup.context.dev = dev;
436 if (work_func)
437 INIT_WORK(&adev->wakeup.context.work, work_func);
438
439 status = acpi_install_notify_handler(adev->handle, ACPI_SYSTEM_NOTIFY,
440 acpi_pm_notify_handler, NULL);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200441 if (ACPI_FAILURE(status))
442 goto out;
443
444 adev->wakeup.flags.notifier_present = true;
445
446 out:
447 mutex_unlock(&acpi_pm_notifier_lock);
448 return status;
449}
450
451/**
452 * acpi_remove_pm_notifier - Unregister PM notifier from given ACPI device.
453 * @adev: ACPI device to remove the notifier from.
454 */
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200455acpi_status acpi_remove_pm_notifier(struct acpi_device *adev)
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200456{
457 acpi_status status = AE_BAD_PARAMETER;
458
459 mutex_lock(&acpi_pm_notifier_lock);
460
461 if (!adev->wakeup.flags.notifier_present)
462 goto out;
463
464 status = acpi_remove_notify_handler(adev->handle,
465 ACPI_SYSTEM_NOTIFY,
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200466 acpi_pm_notify_handler);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200467 if (ACPI_FAILURE(status))
468 goto out;
469
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200470 if (adev->wakeup.context.work.func) {
471 cancel_work_sync(&adev->wakeup.context.work);
472 adev->wakeup.context.work.func = NULL;
473 }
474 adev->wakeup.context.dev = NULL;
475 wakeup_source_unregister(adev->wakeup.ws);
476
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200477 adev->wakeup.flags.notifier_present = false;
478
479 out:
480 mutex_unlock(&acpi_pm_notifier_lock);
481 return status;
482}
483
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100484bool acpi_bus_can_wakeup(acpi_handle handle)
485{
486 struct acpi_device *device;
487 int result;
488
489 result = acpi_bus_get_device(handle, &device);
490 return result ? false : device->wakeup.flags.valid;
491}
492EXPORT_SYMBOL(acpi_bus_can_wakeup);
493
494/**
Rafael J. Wysockib25c77e2013-06-16 00:37:42 +0200495 * acpi_dev_pm_get_state - Get preferred power state of ACPI device.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100496 * @dev: Device whose preferred target power state to return.
497 * @adev: ACPI device node corresponding to @dev.
498 * @target_state: System state to match the resultant device state.
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200499 * @d_min_p: Location to store the highest power state available to the device.
500 * @d_max_p: Location to store the lowest power state available to the device.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100501 *
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200502 * Find the lowest power (highest number) and highest power (lowest number) ACPI
503 * device power states that the device can be in while the system is in the
504 * state represented by @target_state. Store the integer numbers representing
505 * those stats in the memory locations pointed to by @d_max_p and @d_min_p,
506 * respectively.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100507 *
508 * Callers must ensure that @dev and @adev are valid pointers and that @adev
509 * actually corresponds to @dev before using this function.
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200510 *
511 * Returns 0 on success or -ENODATA when one of the ACPI methods fails or
512 * returns a value that doesn't make sense. The memory locations pointed to by
513 * @d_max_p and @d_min_p are only modified on success.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100514 */
Rafael J. Wysockib25c77e2013-06-16 00:37:42 +0200515static int acpi_dev_pm_get_state(struct device *dev, struct acpi_device *adev,
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200516 u32 target_state, int *d_min_p, int *d_max_p)
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100517{
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200518 char method[] = { '_', 'S', '0' + target_state, 'D', '\0' };
519 acpi_handle handle = adev->handle;
520 unsigned long long ret;
521 int d_min, d_max;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100522 bool wakeup = false;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200523 acpi_status status;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100524
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100525 /*
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200526 * If the system state is S0, the lowest power state the device can be
527 * in is D3cold, unless the device has _S0W and is supposed to signal
528 * wakeup, in which case the return value of _S0W has to be used as the
529 * lowest power state available to the device.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100530 */
531 d_min = ACPI_STATE_D0;
Rafael J. Wysocki4c164ae2013-06-16 00:37:50 +0200532 d_max = ACPI_STATE_D3_COLD;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100533
534 /*
535 * If present, _SxD methods return the minimum D-state (highest power
536 * state) we can use for the corresponding S-states. Otherwise, the
537 * minimum D-state is D0 (ACPI 3.x).
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100538 */
539 if (target_state > ACPI_STATE_S0) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200540 /*
541 * We rely on acpi_evaluate_integer() not clobbering the integer
542 * provided if AE_NOT_FOUND is returned.
543 */
544 ret = d_min;
545 status = acpi_evaluate_integer(handle, method, NULL, &ret);
546 if ((ACPI_FAILURE(status) && status != AE_NOT_FOUND)
547 || ret > ACPI_STATE_D3_COLD)
548 return -ENODATA;
549
550 /*
551 * We need to handle legacy systems where D3hot and D3cold are
552 * the same and 3 is returned in both cases, so fall back to
553 * D3cold if D3hot is not a valid state.
554 */
555 if (!adev->power.states[ret].flags.valid) {
556 if (ret == ACPI_STATE_D3_HOT)
557 ret = ACPI_STATE_D3_COLD;
558 else
559 return -ENODATA;
560 }
561 d_min = ret;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100562 wakeup = device_may_wakeup(dev) && adev->wakeup.flags.valid
563 && adev->wakeup.sleep_state >= target_state;
564 } else if (dev_pm_qos_flags(dev, PM_QOS_FLAG_REMOTE_WAKEUP) !=
565 PM_QOS_FLAGS_NONE) {
566 wakeup = adev->wakeup.flags.valid;
567 }
568
569 /*
570 * If _PRW says we can wake up the system from the target sleep state,
571 * the D-state returned by _SxD is sufficient for that (we assume a
572 * wakeup-aware driver if wake is set). Still, if _SxW exists
573 * (ACPI 3.x), it should return the maximum (lowest power) D-state that
574 * can wake the system. _S0W may be valid, too.
575 */
576 if (wakeup) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200577 method[3] = 'W';
578 status = acpi_evaluate_integer(handle, method, NULL, &ret);
579 if (status == AE_NOT_FOUND) {
580 if (target_state > ACPI_STATE_S0)
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100581 d_max = d_min;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200582 } else if (ACPI_SUCCESS(status) && ret <= ACPI_STATE_D3_COLD) {
583 /* Fall back to D3cold if ret is not a valid state. */
584 if (!adev->power.states[ret].flags.valid)
585 ret = ACPI_STATE_D3_COLD;
586
587 d_max = ret > d_min ? ret : d_min;
588 } else {
589 return -ENODATA;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100590 }
591 }
592
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100593 if (d_min_p)
594 *d_min_p = d_min;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200595
596 if (d_max_p)
597 *d_max_p = d_max;
598
599 return 0;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100600}
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100601
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100602/**
603 * acpi_pm_device_sleep_state - Get preferred power state of ACPI device.
604 * @dev: Device whose preferred target power state to return.
605 * @d_min_p: Location to store the upper limit of the allowed states range.
606 * @d_max_in: Deepest low-power state to take into consideration.
607 * Return value: Preferred power state of the device on success, -ENODEV
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200608 * if there's no 'struct acpi_device' for @dev, -EINVAL if @d_max_in is
609 * incorrect, or -ENODATA on ACPI method failure.
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100610 *
611 * The caller must ensure that @dev is valid before using this function.
612 */
613int acpi_pm_device_sleep_state(struct device *dev, int *d_min_p, int d_max_in)
614{
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100615 struct acpi_device *adev;
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200616 int ret, d_min, d_max;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200617
618 if (d_max_in < ACPI_STATE_D0 || d_max_in > ACPI_STATE_D3_COLD)
619 return -EINVAL;
620
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200621 if (d_max_in > ACPI_STATE_D2) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200622 enum pm_qos_flags_status stat;
623
624 stat = dev_pm_qos_flags(dev, PM_QOS_FLAG_NO_POWER_OFF);
625 if (stat == PM_QOS_FLAGS_ALL)
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200626 d_max_in = ACPI_STATE_D2;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200627 }
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100628
Rafael J. Wysocki17653a32014-07-23 01:01:41 +0200629 adev = ACPI_COMPANION(dev);
630 if (!adev) {
631 dev_dbg(dev, "ACPI companion missing in %s!\n", __func__);
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100632 return -ENODEV;
633 }
634
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200635 ret = acpi_dev_pm_get_state(dev, adev, acpi_target_system_state(),
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200636 &d_min, &d_max);
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200637 if (ret)
638 return ret;
639
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200640 if (d_max_in < d_min)
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200641 return -EINVAL;
642
643 if (d_max > d_max_in) {
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200644 for (d_max = d_max_in; d_max > d_min; d_max--) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200645 if (adev->power.states[d_max].flags.valid)
646 break;
647 }
648 }
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200649
650 if (d_min_p)
651 *d_min_p = d_min;
652
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200653 return d_max;
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100654}
655EXPORT_SYMBOL(acpi_pm_device_sleep_state);
656
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100657/**
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200658 * acpi_pm_notify_work_func - ACPI devices wakeup notification work function.
659 * @work: Work item to handle.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100660 */
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200661static void acpi_pm_notify_work_func(struct work_struct *work)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100662{
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200663 struct device *dev;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100664
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200665 dev = container_of(work, struct acpi_device_wakeup_context, work)->dev;
666 if (dev) {
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100667 pm_wakeup_event(dev, 0);
668 pm_runtime_resume(dev);
669 }
670}
671
672/**
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200673 * acpi_device_wakeup - Enable/disable wakeup functionality for device.
674 * @adev: ACPI device to enable/disable wakeup functionality for.
675 * @target_state: State the system is transitioning into.
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100676 * @enable: Whether to enable or disable the wakeup functionality.
677 *
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100678 * Enable/disable the GPE associated with @adev so that it can generate
679 * wakeup signals for the device in response to external (remote) events and
680 * enable/disable device wakeup power.
681 *
682 * Callers must ensure that @adev is a valid ACPI device node before executing
683 * this function.
684 */
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200685static int acpi_device_wakeup(struct acpi_device *adev, u32 target_state,
686 bool enable)
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100687{
688 struct acpi_device_wakeup *wakeup = &adev->wakeup;
689
690 if (enable) {
691 acpi_status res;
692 int error;
693
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200694 error = acpi_enable_wakeup_device_power(adev, target_state);
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100695 if (error)
696 return error;
697
Rafael J. Wysocki175f8e22014-12-12 22:51:58 +0100698 if (adev->wakeup.flags.enabled)
699 return 0;
700
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100701 res = acpi_enable_gpe(wakeup->gpe_device, wakeup->gpe_number);
Rafael J. Wysocki175f8e22014-12-12 22:51:58 +0100702 if (ACPI_SUCCESS(res)) {
703 adev->wakeup.flags.enabled = 1;
704 } else {
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100705 acpi_disable_wakeup_device_power(adev);
706 return -EIO;
707 }
708 } else {
Rafael J. Wysocki175f8e22014-12-12 22:51:58 +0100709 if (adev->wakeup.flags.enabled) {
710 acpi_disable_gpe(wakeup->gpe_device, wakeup->gpe_number);
711 adev->wakeup.flags.enabled = 0;
712 }
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100713 acpi_disable_wakeup_device_power(adev);
714 }
715 return 0;
716}
717
718/**
719 * acpi_pm_device_run_wake - Enable/disable remote wakeup for given device.
720 * @dev: Device to enable/disable the platform to wake up.
721 * @enable: Whether to enable or disable the wakeup functionality.
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100722 */
723int acpi_pm_device_run_wake(struct device *phys_dev, bool enable)
724{
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100725 struct acpi_device *adev;
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100726
727 if (!device_run_wake(phys_dev))
728 return -EINVAL;
729
Rafael J. Wysocki17653a32014-07-23 01:01:41 +0200730 adev = ACPI_COMPANION(phys_dev);
731 if (!adev) {
732 dev_dbg(phys_dev, "ACPI companion missing in %s!\n", __func__);
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100733 return -ENODEV;
734 }
735
Zhang Rui67598a12014-10-23 20:20:00 +0800736 return acpi_device_wakeup(adev, ACPI_STATE_S0, enable);
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100737}
738EXPORT_SYMBOL(acpi_pm_device_run_wake);
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100739
Mika Westerberg4d564102013-01-14 20:13:37 +0000740#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100741/**
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100742 * acpi_pm_device_sleep_wake - Enable or disable device to wake up the system.
743 * @dev: Device to enable/desible to wake up the system from sleep states.
744 * @enable: Whether to enable or disable @dev to wake up the system.
745 */
746int acpi_pm_device_sleep_wake(struct device *dev, bool enable)
747{
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100748 struct acpi_device *adev;
749 int error;
750
751 if (!device_can_wakeup(dev))
752 return -EINVAL;
753
Rafael J. Wysocki17653a32014-07-23 01:01:41 +0200754 adev = ACPI_COMPANION(dev);
755 if (!adev) {
756 dev_dbg(dev, "ACPI companion missing in %s!\n", __func__);
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100757 return -ENODEV;
758 }
759
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200760 error = acpi_device_wakeup(adev, acpi_target_system_state(), enable);
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100761 if (!error)
762 dev_info(dev, "System wakeup %s by ACPI\n",
763 enable ? "enabled" : "disabled");
764
765 return error;
766}
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100767#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100768
769/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100770 * acpi_dev_pm_low_power - Put ACPI device into a low-power state.
771 * @dev: Device to put into a low-power state.
772 * @adev: ACPI device node corresponding to @dev.
773 * @system_state: System state to choose the device state for.
774 */
775static int acpi_dev_pm_low_power(struct device *dev, struct acpi_device *adev,
776 u32 system_state)
777{
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200778 int ret, state;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100779
780 if (!acpi_device_power_manageable(adev))
781 return 0;
782
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200783 ret = acpi_dev_pm_get_state(dev, adev, system_state, NULL, &state);
784 return ret ? ret : acpi_device_set_power(adev, state);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100785}
786
787/**
788 * acpi_dev_pm_full_power - Put ACPI device into the full-power state.
789 * @adev: ACPI device node to put into the full-power state.
790 */
791static int acpi_dev_pm_full_power(struct acpi_device *adev)
792{
793 return acpi_device_power_manageable(adev) ?
794 acpi_device_set_power(adev, ACPI_STATE_D0) : 0;
795}
796
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100797/**
798 * acpi_dev_runtime_suspend - Put device into a low-power state using ACPI.
799 * @dev: Device to put into a low-power state.
800 *
801 * Put the given device into a runtime low-power state using the standard ACPI
802 * mechanism. Set up remote wakeup if desired, choose the state to put the
803 * device into (this checks if remote wakeup is expected to work too), and set
804 * the power state of the device.
805 */
806int acpi_dev_runtime_suspend(struct device *dev)
807{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +0100808 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100809 bool remote_wakeup;
810 int error;
811
812 if (!adev)
813 return 0;
814
815 remote_wakeup = dev_pm_qos_flags(dev, PM_QOS_FLAG_REMOTE_WAKEUP) >
816 PM_QOS_FLAGS_NONE;
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200817 error = acpi_device_wakeup(adev, ACPI_STATE_S0, remote_wakeup);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100818 if (remote_wakeup && error)
819 return -EAGAIN;
820
821 error = acpi_dev_pm_low_power(dev, adev, ACPI_STATE_S0);
822 if (error)
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200823 acpi_device_wakeup(adev, ACPI_STATE_S0, false);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100824
825 return error;
826}
827EXPORT_SYMBOL_GPL(acpi_dev_runtime_suspend);
828
829/**
830 * acpi_dev_runtime_resume - Put device into the full-power state using ACPI.
831 * @dev: Device to put into the full-power state.
832 *
833 * Put the given device into the full-power state using the standard ACPI
834 * mechanism at run time. Set the power state of the device to ACPI D0 and
835 * disable remote wakeup.
836 */
837int acpi_dev_runtime_resume(struct device *dev)
838{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +0100839 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100840 int error;
841
842 if (!adev)
843 return 0;
844
845 error = acpi_dev_pm_full_power(adev);
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200846 acpi_device_wakeup(adev, ACPI_STATE_S0, false);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100847 return error;
848}
849EXPORT_SYMBOL_GPL(acpi_dev_runtime_resume);
850
851/**
852 * acpi_subsys_runtime_suspend - Suspend device using ACPI.
853 * @dev: Device to suspend.
854 *
855 * Carry out the generic runtime suspend procedure for @dev and use ACPI to put
856 * it into a runtime low-power state.
857 */
858int acpi_subsys_runtime_suspend(struct device *dev)
859{
860 int ret = pm_generic_runtime_suspend(dev);
861 return ret ? ret : acpi_dev_runtime_suspend(dev);
862}
863EXPORT_SYMBOL_GPL(acpi_subsys_runtime_suspend);
864
865/**
866 * acpi_subsys_runtime_resume - Resume device using ACPI.
867 * @dev: Device to Resume.
868 *
869 * Use ACPI to put the given device into the full-power state and carry out the
870 * generic runtime resume procedure for it.
871 */
872int acpi_subsys_runtime_resume(struct device *dev)
873{
874 int ret = acpi_dev_runtime_resume(dev);
875 return ret ? ret : pm_generic_runtime_resume(dev);
876}
877EXPORT_SYMBOL_GPL(acpi_subsys_runtime_resume);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100878
879#ifdef CONFIG_PM_SLEEP
880/**
881 * acpi_dev_suspend_late - Put device into a low-power state using ACPI.
882 * @dev: Device to put into a low-power state.
883 *
884 * Put the given device into a low-power state during system transition to a
885 * sleep state using the standard ACPI mechanism. Set up system wakeup if
886 * desired, choose the state to put the device into (this checks if system
887 * wakeup is expected to work too), and set the power state of the device.
888 */
889int acpi_dev_suspend_late(struct device *dev)
890{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +0100891 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100892 u32 target_state;
893 bool wakeup;
894 int error;
895
896 if (!adev)
897 return 0;
898
899 target_state = acpi_target_system_state();
Rafael J. Wysocki78579b72014-11-19 01:44:11 +0100900 wakeup = device_may_wakeup(dev) && acpi_device_can_wakeup(adev);
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200901 error = acpi_device_wakeup(adev, target_state, wakeup);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100902 if (wakeup && error)
903 return error;
904
905 error = acpi_dev_pm_low_power(dev, adev, target_state);
906 if (error)
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200907 acpi_device_wakeup(adev, ACPI_STATE_UNKNOWN, false);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100908
909 return error;
910}
911EXPORT_SYMBOL_GPL(acpi_dev_suspend_late);
912
913/**
914 * acpi_dev_resume_early - Put device into the full-power state using ACPI.
915 * @dev: Device to put into the full-power state.
916 *
917 * Put the given device into the full-power state using the standard ACPI
918 * mechanism during system transition to the working state. Set the power
919 * state of the device to ACPI D0 and disable remote wakeup.
920 */
921int acpi_dev_resume_early(struct device *dev)
922{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +0100923 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100924 int error;
925
926 if (!adev)
927 return 0;
928
929 error = acpi_dev_pm_full_power(adev);
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200930 acpi_device_wakeup(adev, ACPI_STATE_UNKNOWN, false);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100931 return error;
932}
933EXPORT_SYMBOL_GPL(acpi_dev_resume_early);
934
935/**
936 * acpi_subsys_prepare - Prepare device for system transition to a sleep state.
937 * @dev: Device to prepare.
938 */
939int acpi_subsys_prepare(struct device *dev)
940{
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +0200941 struct acpi_device *adev = ACPI_COMPANION(dev);
942 u32 sys_target;
943 int ret, state;
Rafael J. Wysocki92858c42014-02-26 01:00:19 +0100944
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +0200945 ret = pm_generic_prepare(dev);
946 if (ret < 0)
947 return ret;
948
949 if (!adev || !pm_runtime_suspended(dev)
950 || device_may_wakeup(dev) != !!adev->wakeup.prepare_count)
951 return 0;
952
953 sys_target = acpi_target_system_state();
954 if (sys_target == ACPI_STATE_S0)
955 return 1;
956
957 if (adev->power.flags.dsw_present)
958 return 0;
959
960 ret = acpi_dev_pm_get_state(dev, adev, sys_target, NULL, &state);
961 return !ret && state == adev->power.state;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100962}
963EXPORT_SYMBOL_GPL(acpi_subsys_prepare);
964
965/**
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +0200966 * acpi_subsys_complete - Finalize device's resume during system resume.
967 * @dev: Device to handle.
968 */
Heikki Krogerus4cf563c2014-05-15 16:40:23 +0300969void acpi_subsys_complete(struct device *dev)
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +0200970{
Rafael J. Wysocki3d564022015-06-10 01:32:38 +0200971 pm_generic_complete(dev);
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +0200972 /*
973 * If the device had been runtime-suspended before the system went into
974 * the sleep state it is going out of and it has never been resumed till
975 * now, resume it in case the firmware powered it up.
976 */
977 if (dev->power.direct_complete)
978 pm_request_resume(dev);
979}
Heikki Krogerus4cf563c2014-05-15 16:40:23 +0300980EXPORT_SYMBOL_GPL(acpi_subsys_complete);
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +0200981
982/**
Rafael J. Wysocki92858c42014-02-26 01:00:19 +0100983 * acpi_subsys_suspend - Run the device driver's suspend callback.
984 * @dev: Device to handle.
985 *
986 * Follow PCI and resume devices suspended at run time before running their
987 * system suspend callbacks.
988 */
989int acpi_subsys_suspend(struct device *dev)
990{
991 pm_runtime_resume(dev);
992 return pm_generic_suspend(dev);
993}
Heikki Krogerus4cf563c2014-05-15 16:40:23 +0300994EXPORT_SYMBOL_GPL(acpi_subsys_suspend);
Rafael J. Wysocki92858c42014-02-26 01:00:19 +0100995
996/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100997 * acpi_subsys_suspend_late - Suspend device using ACPI.
998 * @dev: Device to suspend.
999 *
1000 * Carry out the generic late suspend procedure for @dev and use ACPI to put
1001 * it into a low-power state during system transition into a sleep state.
1002 */
1003int acpi_subsys_suspend_late(struct device *dev)
1004{
1005 int ret = pm_generic_suspend_late(dev);
1006 return ret ? ret : acpi_dev_suspend_late(dev);
1007}
1008EXPORT_SYMBOL_GPL(acpi_subsys_suspend_late);
1009
1010/**
1011 * acpi_subsys_resume_early - Resume device using ACPI.
1012 * @dev: Device to Resume.
1013 *
1014 * Use ACPI to put the given device into the full-power state and carry out the
1015 * generic early resume procedure for it during system transition into the
1016 * working state.
1017 */
1018int acpi_subsys_resume_early(struct device *dev)
1019{
1020 int ret = acpi_dev_resume_early(dev);
1021 return ret ? ret : pm_generic_resume_early(dev);
1022}
1023EXPORT_SYMBOL_GPL(acpi_subsys_resume_early);
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001024
1025/**
1026 * acpi_subsys_freeze - Run the device driver's freeze callback.
1027 * @dev: Device to handle.
1028 */
1029int acpi_subsys_freeze(struct device *dev)
1030{
1031 /*
1032 * This used to be done in acpi_subsys_prepare() for all devices and
1033 * some drivers may depend on it, so do it here. Ideally, however,
1034 * runtime-suspended devices should not be touched during freeze/thaw
1035 * transitions.
1036 */
1037 pm_runtime_resume(dev);
1038 return pm_generic_freeze(dev);
1039}
Heikki Krogerus4cf563c2014-05-15 16:40:23 +03001040EXPORT_SYMBOL_GPL(acpi_subsys_freeze);
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001041
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001042#endif /* CONFIG_PM_SLEEP */
1043
1044static struct dev_pm_domain acpi_general_pm_domain = {
1045 .ops = {
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001046 .runtime_suspend = acpi_subsys_runtime_suspend,
1047 .runtime_resume = acpi_subsys_runtime_resume,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001048#ifdef CONFIG_PM_SLEEP
1049 .prepare = acpi_subsys_prepare,
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +02001050 .complete = acpi_subsys_complete,
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001051 .suspend = acpi_subsys_suspend,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001052 .suspend_late = acpi_subsys_suspend_late,
1053 .resume_early = acpi_subsys_resume_early,
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001054 .freeze = acpi_subsys_freeze,
1055 .poweroff = acpi_subsys_suspend,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001056 .poweroff_late = acpi_subsys_suspend_late,
1057 .restore_early = acpi_subsys_resume_early,
1058#endif
1059 },
1060};
1061
1062/**
Ulf Hansson91d66cd2014-09-19 20:27:44 +02001063 * acpi_dev_pm_detach - Remove ACPI power management from the device.
1064 * @dev: Device to take care of.
1065 * @power_off: Whether or not to try to remove power from the device.
1066 *
1067 * Remove the device from the general ACPI PM domain and remove its wakeup
1068 * notifier. If @power_off is set, additionally remove power from the device if
1069 * possible.
1070 *
1071 * Callers must ensure proper synchronization of this function with power
1072 * management callbacks.
1073 */
1074static void acpi_dev_pm_detach(struct device *dev, bool power_off)
1075{
1076 struct acpi_device *adev = ACPI_COMPANION(dev);
1077
1078 if (adev && dev->pm_domain == &acpi_general_pm_domain) {
1079 dev->pm_domain = NULL;
1080 acpi_remove_pm_notifier(adev);
1081 if (power_off) {
1082 /*
1083 * If the device's PM QoS resume latency limit or flags
1084 * have been exposed to user space, they have to be
1085 * hidden at this point, so that they don't affect the
1086 * choice of the low-power state to put the device into.
1087 */
1088 dev_pm_qos_hide_latency_limit(dev);
1089 dev_pm_qos_hide_flags(dev);
1090 acpi_device_wakeup(adev, ACPI_STATE_S0, false);
1091 acpi_dev_pm_low_power(dev, adev, ACPI_STATE_S0);
1092 }
1093 }
1094}
1095
1096/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001097 * acpi_dev_pm_attach - Prepare device for ACPI power management.
1098 * @dev: Device to prepare.
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001099 * @power_on: Whether or not to power on the device.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001100 *
1101 * If @dev has a valid ACPI handle that has a valid struct acpi_device object
1102 * attached to it, install a wakeup notification handler for the device and
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001103 * add it to the general ACPI PM domain. If @power_on is set, the device will
1104 * be put into the ACPI D0 state before the function returns.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001105 *
1106 * This assumes that the @dev's bus type uses generic power management callbacks
1107 * (or doesn't use any power management callbacks at all).
1108 *
1109 * Callers must ensure proper synchronization of this function with power
1110 * management callbacks.
1111 */
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001112int acpi_dev_pm_attach(struct device *dev, bool power_on)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001113{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +01001114 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001115
1116 if (!adev)
1117 return -ENODEV;
1118
1119 if (dev->pm_domain)
1120 return -EEXIST;
1121
Mika Westerberg712e9602015-07-27 18:03:57 +03001122 /*
1123 * Only attach the power domain to the first device if the
1124 * companion is shared by multiple. This is to prevent doing power
1125 * management twice.
1126 */
1127 if (!acpi_device_is_first_physical_node(adev, dev))
1128 return -EBUSY;
1129
Rafael J. Wysockic0725302014-07-23 01:00:45 +02001130 acpi_add_pm_notifier(adev, dev, acpi_pm_notify_work_func);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001131 dev->pm_domain = &acpi_general_pm_domain;
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001132 if (power_on) {
1133 acpi_dev_pm_full_power(adev);
Rafael J. Wysockif35cec22014-07-23 01:00:53 +02001134 acpi_device_wakeup(adev, ACPI_STATE_S0, false);
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001135 }
Ulf Hansson86f1e152014-09-19 20:27:35 +02001136
1137 dev->pm_domain->detach = acpi_dev_pm_detach;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001138 return 0;
1139}
1140EXPORT_SYMBOL_GPL(acpi_dev_pm_attach);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +02001141#endif /* CONFIG_PM */