blob: f616b16c1f0be267aa5c116b14a35b095a5ac5d5 [file] [log] [blame]
Thomas Gleixner1802d0b2019-05-27 08:55:21 +02001// SPDX-License-Identifier: GPL-2.0-only
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +01002/*
3 * drivers/acpi/device_pm.c - ACPI device power management routines.
4 *
5 * Copyright (C) 2012, Intel Corp.
6 * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
7 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +010010 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 */
12
Rafael J. Wysocki7b199812013-11-11 22:41:56 +010013#include <linux/acpi.h>
Rafael J. Wysocki86b38322012-11-02 01:40:18 +010014#include <linux/export.h>
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +010015#include <linux/mutex.h>
Rafael J. Wysocki86b38322012-11-02 01:40:18 +010016#include <linux/pm_qos.h>
Tomeu Vizoso989561d2016-01-07 16:46:13 +010017#include <linux/pm_domain.h>
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +010018#include <linux/pm_runtime.h>
Rafael J. Wysocki33e4f802017-06-12 22:56:34 +020019#include <linux/suspend.h>
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +010020
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010021#include "internal.h"
22
23#define _COMPONENT ACPI_POWER_COMPONENT
24ACPI_MODULE_NAME("device_pm");
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +010025
Rafael J. Wysocki86b38322012-11-02 01:40:18 +010026/**
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010027 * acpi_power_state_string - String representation of ACPI device power state.
28 * @state: ACPI device power state to return the string representation of.
29 */
30const char *acpi_power_state_string(int state)
31{
32 switch (state) {
33 case ACPI_STATE_D0:
34 return "D0";
35 case ACPI_STATE_D1:
36 return "D1";
37 case ACPI_STATE_D2:
38 return "D2";
39 case ACPI_STATE_D3_HOT:
40 return "D3hot";
41 case ACPI_STATE_D3_COLD:
Rafael J. Wysocki898fee42013-01-22 12:56:26 +010042 return "D3cold";
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010043 default:
44 return "(unknown)";
45 }
46}
47
Rafael J. Wysockif850a482019-06-25 14:06:13 +020048static int acpi_dev_pm_explicit_get(struct acpi_device *device, int *state)
49{
50 unsigned long long psc;
51 acpi_status status;
52
53 status = acpi_evaluate_integer(device->handle, "_PSC", NULL, &psc);
54 if (ACPI_FAILURE(status))
55 return -ENODEV;
56
57 *state = psc;
58 return 0;
59}
60
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010061/**
62 * acpi_device_get_power - Get power state of an ACPI device.
63 * @device: Device to get the power state of.
64 * @state: Place to store the power state of the device.
65 *
66 * This function does not update the device's power.state field, but it may
67 * update its parent's power.state field (when the parent's power state is
68 * unknown and the device's power state turns out to be D0).
Rafael J. Wysocki9ed411c2019-07-04 01:02:49 +020069 *
70 * Also, it does not update power resource reference counters to ensure that
71 * the power state returned by it will be persistent and it may return a power
72 * state shallower than previously set by acpi_device_set_power() for @device
73 * (if that power state depends on any power resources).
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010074 */
75int acpi_device_get_power(struct acpi_device *device, int *state)
76{
77 int result = ACPI_STATE_UNKNOWN;
Rafael J. Wysockif850a482019-06-25 14:06:13 +020078 int error;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010079
80 if (!device || !state)
81 return -EINVAL;
82
83 if (!device->flags.power_manageable) {
84 /* TBD: Non-recursive algorithm for walking up hierarchy. */
85 *state = device->parent ?
86 device->parent->power.state : ACPI_STATE_D0;
87 goto out;
88 }
89
90 /*
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +010091 * Get the device's power state from power resources settings and _PSC,
92 * if available.
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010093 */
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +010094 if (device->power.flags.power_resources) {
Rafael J. Wysockif850a482019-06-25 14:06:13 +020095 error = acpi_power_get_inferred_state(device, &result);
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010096 if (error)
97 return error;
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +010098 }
99 if (device->power.flags.explicit_get) {
Rafael J. Wysockif850a482019-06-25 14:06:13 +0200100 int psc;
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +0100101
Rafael J. Wysockif850a482019-06-25 14:06:13 +0200102 error = acpi_dev_pm_explicit_get(device, &psc);
103 if (error)
104 return error;
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +0100105
106 /*
107 * The power resources settings may indicate a power state
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200108 * shallower than the actual power state of the device, because
109 * the same power resources may be referenced by other devices.
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +0100110 *
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200111 * For systems predating ACPI 4.0 we assume that D3hot is the
112 * deepest state that can be supported.
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +0100113 */
114 if (psc > result && psc < ACPI_STATE_D3_COLD)
115 result = psc;
116 else if (result == ACPI_STATE_UNKNOWN)
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200117 result = psc > ACPI_STATE_D2 ? ACPI_STATE_D3_HOT : psc;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100118 }
119
120 /*
121 * If we were unsure about the device parent's power state up to this
122 * point, the fact that the device is in D0 implies that the parent has
Mika Westerberg644f17a2013-10-10 13:28:46 +0300123 * to be in D0 too, except if ignore_parent is set.
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100124 */
Mika Westerberg644f17a2013-10-10 13:28:46 +0300125 if (!device->power.flags.ignore_parent && device->parent
126 && device->parent->power.state == ACPI_STATE_UNKNOWN
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100127 && result == ACPI_STATE_D0)
128 device->parent->power.state = ACPI_STATE_D0;
129
130 *state = result;
131
132 out:
133 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is %s\n",
134 device->pnp.bus_id, acpi_power_state_string(*state)));
135
136 return 0;
137}
138
Rafael J. Wysocki9c0f45e2013-01-22 12:55:52 +0100139static int acpi_dev_pm_explicit_set(struct acpi_device *adev, int state)
140{
141 if (adev->power.states[state].flags.explicit_set) {
142 char method[5] = { '_', 'P', 'S', '0' + state, '\0' };
143 acpi_status status;
144
145 status = acpi_evaluate_object(adev->handle, method, NULL, NULL);
146 if (ACPI_FAILURE(status))
147 return -ENODEV;
148 }
149 return 0;
150}
151
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100152/**
153 * acpi_device_set_power - Set power state of an ACPI device.
154 * @device: Device to set the power state of.
155 * @state: New power state to set.
156 *
157 * Callers must ensure that the device is power manageable before using this
158 * function.
159 */
160int acpi_device_set_power(struct acpi_device *device, int state)
161{
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200162 int target_state = state;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100163 int result = 0;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100164
Rafael J. Wysocki2c7d1322013-07-30 14:34:00 +0200165 if (!device || !device->flags.power_manageable
166 || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100167 return -EINVAL;
168
169 /* Make sure this is a valid target state */
170
Rafael J. Wysockif850a482019-06-25 14:06:13 +0200171 /* There is a special case for D0 addressed below. */
172 if (state > ACPI_STATE_D0 && state == device->power.state) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200173 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] already in %s\n",
174 device->pnp.bus_id,
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100175 acpi_power_state_string(state)));
176 return 0;
177 }
178
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200179 if (state == ACPI_STATE_D3_COLD) {
180 /*
181 * For transitions to D3cold we need to execute _PS3 and then
182 * possibly drop references to the power resources in use.
183 */
184 state = ACPI_STATE_D3_HOT;
185 /* If _PR3 is not available, use D3hot as the target state. */
186 if (!device->power.states[ACPI_STATE_D3_COLD].flags.valid)
187 target_state = state;
188 } else if (!device->power.states[state].flags.valid) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200189 dev_warn(&device->dev, "Power state %s not supported\n",
190 acpi_power_state_string(state));
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100191 return -ENODEV;
192 }
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200193
Mika Westerberg644f17a2013-10-10 13:28:46 +0300194 if (!device->power.flags.ignore_parent &&
195 device->parent && (state < device->parent->power.state)) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200196 dev_warn(&device->dev,
Aaron Lu593298e2013-08-03 21:13:22 +0200197 "Cannot transition to power state %s for parent in %s\n",
198 acpi_power_state_string(state),
199 acpi_power_state_string(device->parent->power.state));
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100200 return -ENODEV;
201 }
202
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100203 /*
204 * Transition Power
205 * ----------------
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200206 * In accordance with ACPI 6, _PSx is executed before manipulating power
207 * resources, unless the target state is D0, in which case _PS0 is
208 * supposed to be executed after turning the power resources on.
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100209 */
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200210 if (state > ACPI_STATE_D0) {
211 /*
212 * According to ACPI 6, devices cannot go from lower-power
213 * (deeper) states to higher-power (shallower) states.
214 */
215 if (state < device->power.state) {
216 dev_warn(&device->dev, "Cannot transition from %s to %s\n",
217 acpi_power_state_string(device->power.state),
218 acpi_power_state_string(state));
219 return -ENODEV;
220 }
221
Rafael J. Wysocki21ba2372019-06-25 14:04:45 +0200222 /*
223 * If the device goes from D3hot to D3cold, _PS3 has been
224 * evaluated for it already, so skip it in that case.
225 */
226 if (device->power.state < ACPI_STATE_D3_HOT) {
227 result = acpi_dev_pm_explicit_set(device, state);
228 if (result)
229 goto end;
230 }
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100231
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200232 if (device->power.flags.power_resources)
233 result = acpi_power_transition(device, target_state);
234 } else {
Rafael J. Wysocki42787ed2019-08-01 01:31:08 +0200235 int cur_state = device->power.state;
236
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200237 if (device->power.flags.power_resources) {
238 result = acpi_power_transition(device, ACPI_STATE_D0);
239 if (result)
240 goto end;
241 }
Rafael J. Wysockif850a482019-06-25 14:06:13 +0200242
Rafael J. Wysocki42787ed2019-08-01 01:31:08 +0200243 if (cur_state == ACPI_STATE_D0) {
Rafael J. Wysockif850a482019-06-25 14:06:13 +0200244 int psc;
245
246 /* Nothing to do here if _PSC is not present. */
247 if (!device->power.flags.explicit_get)
248 return 0;
249
250 /*
251 * The power state of the device was set to D0 last
252 * time, but that might have happened before a
253 * system-wide transition involving the platform
254 * firmware, so it may be necessary to evaluate _PS0
255 * for the device here. However, use extra care here
256 * and evaluate _PSC to check the device's current power
257 * state, and only invoke _PS0 if the evaluation of _PSC
258 * is successful and it returns a power state different
259 * from D0.
260 */
261 result = acpi_dev_pm_explicit_get(device, &psc);
262 if (result || psc == ACPI_STATE_D0)
263 return 0;
264 }
265
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200266 result = acpi_dev_pm_explicit_set(device, ACPI_STATE_D0);
Rafael J. Wysockie5656272013-01-22 12:56:35 +0100267 }
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100268
Rafael J. Wysockie78adb72013-01-22 12:56:04 +0100269 end:
270 if (result) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200271 dev_warn(&device->dev, "Failed to change power state to %s\n",
272 acpi_power_state_string(state));
Rafael J. Wysockie78adb72013-01-22 12:56:04 +0100273 } else {
Mika Westerberg71b65442015-07-28 13:51:21 +0300274 device->power.state = target_state;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100275 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
276 "Device [%s] transitioned to %s\n",
277 device->pnp.bus_id,
278 acpi_power_state_string(state)));
279 }
280
281 return result;
282}
283EXPORT_SYMBOL(acpi_device_set_power);
284
285int acpi_bus_set_power(acpi_handle handle, int state)
286{
287 struct acpi_device *device;
288 int result;
289
290 result = acpi_bus_get_device(handle, &device);
291 if (result)
292 return result;
293
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100294 return acpi_device_set_power(device, state);
295}
296EXPORT_SYMBOL(acpi_bus_set_power);
297
298int acpi_bus_init_power(struct acpi_device *device)
299{
300 int state;
301 int result;
302
303 if (!device)
304 return -EINVAL;
305
306 device->power.state = ACPI_STATE_UNKNOWN;
Sakari Ailuscde1f952017-06-06 12:37:36 +0300307 if (!acpi_device_is_present(device)) {
308 device->flags.initialized = false;
Rafael J. Wysocki1b1f3e12015-01-01 23:38:28 +0100309 return -ENXIO;
Sakari Ailuscde1f952017-06-06 12:37:36 +0300310 }
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100311
312 result = acpi_device_get_power(device, &state);
313 if (result)
314 return result;
315
Rafael J. Wysockia2367802013-01-22 12:54:38 +0100316 if (state < ACPI_STATE_D3_COLD && device->power.flags.power_resources) {
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200317 /* Reference count the power resources. */
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100318 result = acpi_power_on_resources(device, state);
Rafael J. Wysockia2367802013-01-22 12:54:38 +0100319 if (result)
320 return result;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100321
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200322 if (state == ACPI_STATE_D0) {
323 /*
324 * If _PSC is not present and the state inferred from
325 * power resources appears to be D0, it still may be
326 * necessary to execute _PS0 at this point, because
327 * another device using the same power resources may
328 * have been put into D0 previously and that's why we
329 * see D0 here.
330 */
331 result = acpi_dev_pm_explicit_set(device, state);
332 if (result)
333 return result;
334 }
Rafael J. Wysockib3785492013-02-01 23:43:02 +0100335 } else if (state == ACPI_STATE_UNKNOWN) {
Rafael J. Wysocki7cd84072013-06-05 14:01:19 +0200336 /*
337 * No power resources and missing _PSC? Cross fingers and make
338 * it D0 in hope that this is what the BIOS put the device into.
339 * [We tried to force D0 here by executing _PS0, but that broke
340 * Toshiba P870-303 in a nasty way.]
341 */
Rafael J. Wysockib3785492013-02-01 23:43:02 +0100342 state = ACPI_STATE_D0;
Rafael J. Wysockia2367802013-01-22 12:54:38 +0100343 }
344 device->power.state = state;
345 return 0;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100346}
347
Rafael J. Wysockib9e95fc2013-06-19 00:45:34 +0200348/**
349 * acpi_device_fix_up_power - Force device with missing _PSC into D0.
350 * @device: Device object whose power state is to be fixed up.
351 *
352 * Devices without power resources and _PSC, but having _PS0 and _PS3 defined,
353 * are assumed to be put into D0 by the BIOS. However, in some cases that may
354 * not be the case and this function should be used then.
355 */
356int acpi_device_fix_up_power(struct acpi_device *device)
357{
358 int ret = 0;
359
360 if (!device->power.flags.power_resources
361 && !device->power.flags.explicit_get
362 && device->power.state == ACPI_STATE_D0)
363 ret = acpi_dev_pm_explicit_set(device, ACPI_STATE_D0);
364
365 return ret;
366}
Ulf Hansson78a898d2016-05-19 15:25:41 +0200367EXPORT_SYMBOL_GPL(acpi_device_fix_up_power);
Rafael J. Wysockib9e95fc2013-06-19 00:45:34 +0200368
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100369int acpi_device_update_power(struct acpi_device *device, int *state_p)
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100370{
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100371 int state;
372 int result;
373
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100374 if (device->power.state == ACPI_STATE_UNKNOWN) {
375 result = acpi_bus_init_power(device);
376 if (!result && state_p)
377 *state_p = device->power.state;
378
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100379 return result;
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100380 }
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100381
382 result = acpi_device_get_power(device, &state);
383 if (result)
384 return result;
385
Rafael J. Wysocki91bdad02013-07-04 13:22:11 +0200386 if (state == ACPI_STATE_UNKNOWN) {
Rafael J. Wysocki511d5c42013-02-03 14:57:32 +0100387 state = ACPI_STATE_D0;
Rafael J. Wysocki91bdad02013-07-04 13:22:11 +0200388 result = acpi_device_set_power(device, state);
389 if (result)
390 return result;
391 } else {
392 if (device->power.flags.power_resources) {
393 /*
394 * We don't need to really switch the state, bu we need
395 * to update the power resources' reference counters.
396 */
397 result = acpi_power_transition(device, state);
398 if (result)
399 return result;
400 }
401 device->power.state = state;
402 }
403 if (state_p)
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100404 *state_p = state;
405
Rafael J. Wysocki91bdad02013-07-04 13:22:11 +0200406 return 0;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100407}
Aaron Lu2bb3a2b2013-11-19 15:43:52 +0800408EXPORT_SYMBOL_GPL(acpi_device_update_power);
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100409
410int acpi_bus_update_power(acpi_handle handle, int *state_p)
411{
412 struct acpi_device *device;
413 int result;
414
415 result = acpi_bus_get_device(handle, &device);
416 return result ? result : acpi_device_update_power(device, state_p);
417}
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100418EXPORT_SYMBOL_GPL(acpi_bus_update_power);
419
420bool acpi_bus_power_manageable(acpi_handle handle)
421{
422 struct acpi_device *device;
423 int result;
424
425 result = acpi_bus_get_device(handle, &device);
426 return result ? false : device->flags.power_manageable;
427}
428EXPORT_SYMBOL(acpi_bus_power_manageable);
429
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200430#ifdef CONFIG_PM
431static DEFINE_MUTEX(acpi_pm_notifier_lock);
Ville Syrjäläff165672017-11-07 23:08:10 +0200432static DEFINE_MUTEX(acpi_pm_notifier_install_lock);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200433
Rafael J. Wysocki33e4f802017-06-12 22:56:34 +0200434void acpi_pm_wakeup_event(struct device *dev)
435{
436 pm_wakeup_dev_event(dev, 0, acpi_s2idle_wakeup());
437}
438EXPORT_SYMBOL_GPL(acpi_pm_wakeup_event);
439
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200440static void acpi_pm_notify_handler(acpi_handle handle, u32 val, void *not_used)
441{
442 struct acpi_device *adev;
443
444 if (val != ACPI_NOTIFY_DEVICE_WAKE)
445 return;
446
Rafael J. Wysocki020a6372017-08-11 01:32:40 +0200447 acpi_handle_debug(handle, "Wake notify\n");
448
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200449 adev = acpi_bus_get_acpi_device(handle);
450 if (!adev)
451 return;
452
453 mutex_lock(&acpi_pm_notifier_lock);
454
455 if (adev->wakeup.flags.notifier_present) {
Rafael J. Wysocki33e4f802017-06-12 22:56:34 +0200456 pm_wakeup_ws_event(adev->wakeup.ws, 0, acpi_s2idle_wakeup());
Rafael J. Wysocki020a6372017-08-11 01:32:40 +0200457 if (adev->wakeup.context.func) {
Sakari Ailusd75f7732019-03-25 21:32:28 +0200458 acpi_handle_debug(handle, "Running %pS for %s\n",
Rafael J. Wysocki020a6372017-08-11 01:32:40 +0200459 adev->wakeup.context.func,
460 dev_name(adev->wakeup.context.dev));
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200461 adev->wakeup.context.func(&adev->wakeup.context);
Rafael J. Wysocki020a6372017-08-11 01:32:40 +0200462 }
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200463 }
464
465 mutex_unlock(&acpi_pm_notifier_lock);
466
467 acpi_bus_put_acpi_device(adev);
468}
469
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200470/**
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200471 * acpi_add_pm_notifier - Register PM notify handler for given ACPI device.
472 * @adev: ACPI device to add the notify handler for.
473 * @dev: Device to generate a wakeup event for while handling the notification.
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200474 * @func: Work function to execute when handling the notification.
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200475 *
476 * NOTE: @adev need not be a run-wake or wakeup device to be a valid source of
477 * PM wakeup events. For example, wakeup events may be generated for bridges
478 * if one of the devices below the bridge is signaling wakeup, even if the
479 * bridge itself doesn't have a wakeup GPE associated with it.
480 */
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200481acpi_status acpi_add_pm_notifier(struct acpi_device *adev, struct device *dev,
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200482 void (*func)(struct acpi_device_wakeup_context *context))
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200483{
484 acpi_status status = AE_ALREADY_EXISTS;
485
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200486 if (!dev && !func)
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200487 return AE_BAD_PARAMETER;
488
Ville Syrjäläff165672017-11-07 23:08:10 +0200489 mutex_lock(&acpi_pm_notifier_install_lock);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200490
491 if (adev->wakeup.flags.notifier_present)
492 goto out;
493
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200494 status = acpi_install_notify_handler(adev->handle, ACPI_SYSTEM_NOTIFY,
495 acpi_pm_notify_handler, NULL);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200496 if (ACPI_FAILURE(status))
497 goto out;
498
Ville Syrjäläff165672017-11-07 23:08:10 +0200499 mutex_lock(&acpi_pm_notifier_lock);
500 adev->wakeup.ws = wakeup_source_register(dev_name(&adev->dev));
501 adev->wakeup.context.dev = dev;
502 adev->wakeup.context.func = func;
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200503 adev->wakeup.flags.notifier_present = true;
Ville Syrjäläff165672017-11-07 23:08:10 +0200504 mutex_unlock(&acpi_pm_notifier_lock);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200505
506 out:
Ville Syrjäläff165672017-11-07 23:08:10 +0200507 mutex_unlock(&acpi_pm_notifier_install_lock);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200508 return status;
509}
510
511/**
512 * acpi_remove_pm_notifier - Unregister PM notifier from given ACPI device.
513 * @adev: ACPI device to remove the notifier from.
514 */
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200515acpi_status acpi_remove_pm_notifier(struct acpi_device *adev)
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200516{
517 acpi_status status = AE_BAD_PARAMETER;
518
Ville Syrjäläff165672017-11-07 23:08:10 +0200519 mutex_lock(&acpi_pm_notifier_install_lock);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200520
521 if (!adev->wakeup.flags.notifier_present)
522 goto out;
523
524 status = acpi_remove_notify_handler(adev->handle,
525 ACPI_SYSTEM_NOTIFY,
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200526 acpi_pm_notify_handler);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200527 if (ACPI_FAILURE(status))
528 goto out;
529
Ville Syrjäläff165672017-11-07 23:08:10 +0200530 mutex_lock(&acpi_pm_notifier_lock);
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200531 adev->wakeup.context.func = NULL;
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200532 adev->wakeup.context.dev = NULL;
533 wakeup_source_unregister(adev->wakeup.ws);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200534 adev->wakeup.flags.notifier_present = false;
Ville Syrjäläff165672017-11-07 23:08:10 +0200535 mutex_unlock(&acpi_pm_notifier_lock);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200536
537 out:
Ville Syrjäläff165672017-11-07 23:08:10 +0200538 mutex_unlock(&acpi_pm_notifier_install_lock);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200539 return status;
540}
541
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100542bool acpi_bus_can_wakeup(acpi_handle handle)
543{
544 struct acpi_device *device;
545 int result;
546
547 result = acpi_bus_get_device(handle, &device);
548 return result ? false : device->wakeup.flags.valid;
549}
550EXPORT_SYMBOL(acpi_bus_can_wakeup);
551
Rafael J. Wysocki8370c2d2017-06-24 01:56:13 +0200552bool acpi_pm_device_can_wakeup(struct device *dev)
553{
554 struct acpi_device *adev = ACPI_COMPANION(dev);
555
556 return adev ? acpi_device_can_wakeup(adev) : false;
557}
558
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100559/**
Rafael J. Wysockib25c77e2013-06-16 00:37:42 +0200560 * acpi_dev_pm_get_state - Get preferred power state of ACPI device.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100561 * @dev: Device whose preferred target power state to return.
562 * @adev: ACPI device node corresponding to @dev.
563 * @target_state: System state to match the resultant device state.
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200564 * @d_min_p: Location to store the highest power state available to the device.
565 * @d_max_p: Location to store the lowest power state available to the device.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100566 *
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200567 * Find the lowest power (highest number) and highest power (lowest number) ACPI
568 * device power states that the device can be in while the system is in the
569 * state represented by @target_state. Store the integer numbers representing
570 * those stats in the memory locations pointed to by @d_max_p and @d_min_p,
571 * respectively.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100572 *
573 * Callers must ensure that @dev and @adev are valid pointers and that @adev
574 * actually corresponds to @dev before using this function.
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200575 *
576 * Returns 0 on success or -ENODATA when one of the ACPI methods fails or
577 * returns a value that doesn't make sense. The memory locations pointed to by
578 * @d_max_p and @d_min_p are only modified on success.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100579 */
Rafael J. Wysockib25c77e2013-06-16 00:37:42 +0200580static int acpi_dev_pm_get_state(struct device *dev, struct acpi_device *adev,
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200581 u32 target_state, int *d_min_p, int *d_max_p)
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100582{
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200583 char method[] = { '_', 'S', '0' + target_state, 'D', '\0' };
584 acpi_handle handle = adev->handle;
585 unsigned long long ret;
586 int d_min, d_max;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100587 bool wakeup = false;
Daniel Drakebf8c6182018-03-20 12:07:35 +0800588 bool has_sxd = false;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200589 acpi_status status;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100590
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100591 /*
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200592 * If the system state is S0, the lowest power state the device can be
593 * in is D3cold, unless the device has _S0W and is supposed to signal
594 * wakeup, in which case the return value of _S0W has to be used as the
595 * lowest power state available to the device.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100596 */
597 d_min = ACPI_STATE_D0;
Rafael J. Wysocki4c164ae2013-06-16 00:37:50 +0200598 d_max = ACPI_STATE_D3_COLD;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100599
600 /*
601 * If present, _SxD methods return the minimum D-state (highest power
602 * state) we can use for the corresponding S-states. Otherwise, the
603 * minimum D-state is D0 (ACPI 3.x).
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100604 */
605 if (target_state > ACPI_STATE_S0) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200606 /*
607 * We rely on acpi_evaluate_integer() not clobbering the integer
608 * provided if AE_NOT_FOUND is returned.
609 */
610 ret = d_min;
611 status = acpi_evaluate_integer(handle, method, NULL, &ret);
612 if ((ACPI_FAILURE(status) && status != AE_NOT_FOUND)
613 || ret > ACPI_STATE_D3_COLD)
614 return -ENODATA;
615
616 /*
617 * We need to handle legacy systems where D3hot and D3cold are
618 * the same and 3 is returned in both cases, so fall back to
619 * D3cold if D3hot is not a valid state.
620 */
621 if (!adev->power.states[ret].flags.valid) {
622 if (ret == ACPI_STATE_D3_HOT)
623 ret = ACPI_STATE_D3_COLD;
624 else
625 return -ENODATA;
626 }
Daniel Drakebf8c6182018-03-20 12:07:35 +0800627
628 if (status == AE_OK)
629 has_sxd = true;
630
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200631 d_min = ret;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100632 wakeup = device_may_wakeup(dev) && adev->wakeup.flags.valid
633 && adev->wakeup.sleep_state >= target_state;
Rafael J. Wysocki20f97ca2017-10-13 15:27:24 +0200634 } else {
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100635 wakeup = adev->wakeup.flags.valid;
636 }
637
638 /*
639 * If _PRW says we can wake up the system from the target sleep state,
640 * the D-state returned by _SxD is sufficient for that (we assume a
641 * wakeup-aware driver if wake is set). Still, if _SxW exists
642 * (ACPI 3.x), it should return the maximum (lowest power) D-state that
643 * can wake the system. _S0W may be valid, too.
644 */
645 if (wakeup) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200646 method[3] = 'W';
647 status = acpi_evaluate_integer(handle, method, NULL, &ret);
648 if (status == AE_NOT_FOUND) {
Daniel Drakebf8c6182018-03-20 12:07:35 +0800649 /* No _SxW. In this case, the ACPI spec says that we
650 * must not go into any power state deeper than the
651 * value returned from _SxD.
652 */
653 if (has_sxd && target_state > ACPI_STATE_S0)
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100654 d_max = d_min;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200655 } else if (ACPI_SUCCESS(status) && ret <= ACPI_STATE_D3_COLD) {
656 /* Fall back to D3cold if ret is not a valid state. */
657 if (!adev->power.states[ret].flags.valid)
658 ret = ACPI_STATE_D3_COLD;
659
660 d_max = ret > d_min ? ret : d_min;
661 } else {
662 return -ENODATA;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100663 }
664 }
665
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100666 if (d_min_p)
667 *d_min_p = d_min;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200668
669 if (d_max_p)
670 *d_max_p = d_max;
671
672 return 0;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100673}
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100674
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100675/**
676 * acpi_pm_device_sleep_state - Get preferred power state of ACPI device.
677 * @dev: Device whose preferred target power state to return.
678 * @d_min_p: Location to store the upper limit of the allowed states range.
679 * @d_max_in: Deepest low-power state to take into consideration.
680 * Return value: Preferred power state of the device on success, -ENODEV
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200681 * if there's no 'struct acpi_device' for @dev, -EINVAL if @d_max_in is
682 * incorrect, or -ENODATA on ACPI method failure.
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100683 *
684 * The caller must ensure that @dev is valid before using this function.
685 */
686int acpi_pm_device_sleep_state(struct device *dev, int *d_min_p, int d_max_in)
687{
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100688 struct acpi_device *adev;
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200689 int ret, d_min, d_max;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200690
691 if (d_max_in < ACPI_STATE_D0 || d_max_in > ACPI_STATE_D3_COLD)
692 return -EINVAL;
693
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200694 if (d_max_in > ACPI_STATE_D2) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200695 enum pm_qos_flags_status stat;
696
697 stat = dev_pm_qos_flags(dev, PM_QOS_FLAG_NO_POWER_OFF);
698 if (stat == PM_QOS_FLAGS_ALL)
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200699 d_max_in = ACPI_STATE_D2;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200700 }
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100701
Rafael J. Wysocki17653a32014-07-23 01:01:41 +0200702 adev = ACPI_COMPANION(dev);
703 if (!adev) {
704 dev_dbg(dev, "ACPI companion missing in %s!\n", __func__);
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100705 return -ENODEV;
706 }
707
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200708 ret = acpi_dev_pm_get_state(dev, adev, acpi_target_system_state(),
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200709 &d_min, &d_max);
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200710 if (ret)
711 return ret;
712
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200713 if (d_max_in < d_min)
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200714 return -EINVAL;
715
716 if (d_max > d_max_in) {
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200717 for (d_max = d_max_in; d_max > d_min; d_max--) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200718 if (adev->power.states[d_max].flags.valid)
719 break;
720 }
721 }
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200722
723 if (d_min_p)
724 *d_min_p = d_min;
725
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200726 return d_max;
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100727}
728EXPORT_SYMBOL(acpi_pm_device_sleep_state);
729
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100730/**
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200731 * acpi_pm_notify_work_func - ACPI devices wakeup notification work function.
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200732 * @context: Device wakeup context.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100733 */
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200734static void acpi_pm_notify_work_func(struct acpi_device_wakeup_context *context)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100735{
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200736 struct device *dev = context->dev;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100737
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200738 if (dev) {
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100739 pm_wakeup_event(dev, 0);
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200740 pm_request_resume(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100741 }
742}
743
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200744static DEFINE_MUTEX(acpi_wakeup_lock);
745
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200746static int __acpi_device_wakeup_enable(struct acpi_device *adev,
747 u32 target_state, int max_count)
748{
749 struct acpi_device_wakeup *wakeup = &adev->wakeup;
750 acpi_status status;
751 int error = 0;
752
753 mutex_lock(&acpi_wakeup_lock);
754
755 if (wakeup->enable_count >= max_count)
756 goto out;
757
758 if (wakeup->enable_count > 0)
759 goto inc;
760
761 error = acpi_enable_wakeup_device_power(adev, target_state);
762 if (error)
763 goto out;
764
765 status = acpi_enable_gpe(wakeup->gpe_device, wakeup->gpe_number);
766 if (ACPI_FAILURE(status)) {
767 acpi_disable_wakeup_device_power(adev);
768 error = -EIO;
769 goto out;
770 }
771
Rafael J. Wysockifbc94182019-04-03 23:58:01 +0200772 acpi_handle_debug(adev->handle, "GPE%2X enabled for wakeup\n",
773 (unsigned int)wakeup->gpe_number);
774
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200775inc:
776 wakeup->enable_count++;
777
778out:
779 mutex_unlock(&acpi_wakeup_lock);
780 return error;
781}
782
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100783/**
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200784 * acpi_device_wakeup_enable - Enable wakeup functionality for device.
785 * @adev: ACPI device to enable wakeup functionality for.
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200786 * @target_state: State the system is transitioning into.
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100787 *
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200788 * Enable the GPE associated with @adev so that it can generate wakeup signals
789 * for the device in response to external (remote) events and enable wakeup
790 * power for it.
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100791 *
792 * Callers must ensure that @adev is a valid ACPI device node before executing
793 * this function.
794 */
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200795static int acpi_device_wakeup_enable(struct acpi_device *adev, u32 target_state)
796{
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200797 return __acpi_device_wakeup_enable(adev, target_state, 1);
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200798}
799
800/**
801 * acpi_device_wakeup_disable - Disable wakeup functionality for device.
802 * @adev: ACPI device to disable wakeup functionality for.
803 *
804 * Disable the GPE associated with @adev and disable wakeup power for it.
805 *
806 * Callers must ensure that @adev is a valid ACPI device node before executing
807 * this function.
808 */
809static void acpi_device_wakeup_disable(struct acpi_device *adev)
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100810{
811 struct acpi_device_wakeup *wakeup = &adev->wakeup;
812
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200813 mutex_lock(&acpi_wakeup_lock);
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100814
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200815 if (!wakeup->enable_count)
816 goto out;
Rafael J. Wysocki235d81a2017-06-12 22:51:07 +0200817
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200818 acpi_disable_gpe(wakeup->gpe_device, wakeup->gpe_number);
819 acpi_disable_wakeup_device_power(adev);
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100820
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200821 wakeup->enable_count--;
822
823out:
824 mutex_unlock(&acpi_wakeup_lock);
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100825}
826
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200827static int __acpi_pm_set_device_wakeup(struct device *dev, bool enable,
828 int max_count)
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100829{
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100830 struct acpi_device *adev;
831 int error;
832
Rafael J. Wysocki17653a32014-07-23 01:01:41 +0200833 adev = ACPI_COMPANION(dev);
834 if (!adev) {
835 dev_dbg(dev, "ACPI companion missing in %s!\n", __func__);
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100836 return -ENODEV;
837 }
838
Rafael J. Wysocki4d183d02017-06-24 01:54:39 +0200839 if (!acpi_device_can_wakeup(adev))
840 return -EINVAL;
841
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200842 if (!enable) {
843 acpi_device_wakeup_disable(adev);
844 dev_dbg(dev, "Wakeup disabled by ACPI\n");
845 return 0;
846 }
847
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200848 error = __acpi_device_wakeup_enable(adev, acpi_target_system_state(),
849 max_count);
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100850 if (!error)
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200851 dev_dbg(dev, "Wakeup enabled by ACPI\n");
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100852
853 return error;
854}
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200855
856/**
857 * acpi_pm_set_device_wakeup - Enable/disable remote wakeup for given device.
858 * @dev: Device to enable/disable to generate wakeup events.
859 * @enable: Whether to enable or disable the wakeup functionality.
860 */
861int acpi_pm_set_device_wakeup(struct device *dev, bool enable)
862{
863 return __acpi_pm_set_device_wakeup(dev, enable, 1);
864}
865EXPORT_SYMBOL_GPL(acpi_pm_set_device_wakeup);
866
867/**
868 * acpi_pm_set_bridge_wakeup - Enable/disable remote wakeup for given bridge.
869 * @dev: Bridge device to enable/disable to generate wakeup events.
870 * @enable: Whether to enable or disable the wakeup functionality.
871 */
872int acpi_pm_set_bridge_wakeup(struct device *dev, bool enable)
873{
874 return __acpi_pm_set_device_wakeup(dev, enable, INT_MAX);
875}
876EXPORT_SYMBOL_GPL(acpi_pm_set_bridge_wakeup);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100877
878/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100879 * acpi_dev_pm_low_power - Put ACPI device into a low-power state.
880 * @dev: Device to put into a low-power state.
881 * @adev: ACPI device node corresponding to @dev.
882 * @system_state: System state to choose the device state for.
883 */
884static int acpi_dev_pm_low_power(struct device *dev, struct acpi_device *adev,
885 u32 system_state)
886{
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200887 int ret, state;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100888
889 if (!acpi_device_power_manageable(adev))
890 return 0;
891
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200892 ret = acpi_dev_pm_get_state(dev, adev, system_state, NULL, &state);
893 return ret ? ret : acpi_device_set_power(adev, state);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100894}
895
896/**
897 * acpi_dev_pm_full_power - Put ACPI device into the full-power state.
898 * @adev: ACPI device node to put into the full-power state.
899 */
900static int acpi_dev_pm_full_power(struct acpi_device *adev)
901{
902 return acpi_device_power_manageable(adev) ?
903 acpi_device_set_power(adev, ACPI_STATE_D0) : 0;
904}
905
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100906/**
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200907 * acpi_dev_suspend - Put device into a low-power state using ACPI.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100908 * @dev: Device to put into a low-power state.
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200909 * @wakeup: Whether or not to enable wakeup for the device.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100910 *
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200911 * Put the given device into a low-power state using the standard ACPI
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100912 * mechanism. Set up remote wakeup if desired, choose the state to put the
913 * device into (this checks if remote wakeup is expected to work too), and set
914 * the power state of the device.
915 */
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200916int acpi_dev_suspend(struct device *dev, bool wakeup)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100917{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +0100918 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200919 u32 target_state = acpi_target_system_state();
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100920 int error;
921
922 if (!adev)
923 return 0;
924
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200925 if (wakeup && acpi_device_can_wakeup(adev)) {
926 error = acpi_device_wakeup_enable(adev, target_state);
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200927 if (error)
928 return -EAGAIN;
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200929 } else {
930 wakeup = false;
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200931 }
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100932
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200933 error = acpi_dev_pm_low_power(dev, adev, target_state);
934 if (error && wakeup)
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200935 acpi_device_wakeup_disable(adev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100936
937 return error;
938}
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200939EXPORT_SYMBOL_GPL(acpi_dev_suspend);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100940
941/**
Rafael J. Wysocki63705c42017-10-10 18:49:22 +0200942 * acpi_dev_resume - Put device into the full-power state using ACPI.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100943 * @dev: Device to put into the full-power state.
944 *
945 * Put the given device into the full-power state using the standard ACPI
Rafael J. Wysocki63705c42017-10-10 18:49:22 +0200946 * mechanism. Set the power state of the device to ACPI D0 and disable wakeup.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100947 */
Rafael J. Wysocki63705c42017-10-10 18:49:22 +0200948int acpi_dev_resume(struct device *dev)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100949{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +0100950 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100951 int error;
952
953 if (!adev)
954 return 0;
955
956 error = acpi_dev_pm_full_power(adev);
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200957 acpi_device_wakeup_disable(adev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100958 return error;
959}
Rafael J. Wysocki63705c42017-10-10 18:49:22 +0200960EXPORT_SYMBOL_GPL(acpi_dev_resume);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100961
962/**
963 * acpi_subsys_runtime_suspend - Suspend device using ACPI.
964 * @dev: Device to suspend.
965 *
966 * Carry out the generic runtime suspend procedure for @dev and use ACPI to put
967 * it into a runtime low-power state.
968 */
969int acpi_subsys_runtime_suspend(struct device *dev)
970{
971 int ret = pm_generic_runtime_suspend(dev);
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200972 return ret ? ret : acpi_dev_suspend(dev, true);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100973}
974EXPORT_SYMBOL_GPL(acpi_subsys_runtime_suspend);
975
976/**
977 * acpi_subsys_runtime_resume - Resume device using ACPI.
978 * @dev: Device to Resume.
979 *
980 * Use ACPI to put the given device into the full-power state and carry out the
981 * generic runtime resume procedure for it.
982 */
983int acpi_subsys_runtime_resume(struct device *dev)
984{
Rafael J. Wysocki63705c42017-10-10 18:49:22 +0200985 int ret = acpi_dev_resume(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100986 return ret ? ret : pm_generic_runtime_resume(dev);
987}
988EXPORT_SYMBOL_GPL(acpi_subsys_runtime_resume);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100989
990#ifdef CONFIG_PM_SLEEP
Ulf Hanssonc2ebf782017-10-03 09:11:08 +0200991static bool acpi_dev_needs_resume(struct device *dev, struct acpi_device *adev)
992{
993 u32 sys_target = acpi_target_system_state();
994 int ret, state;
995
Rafael J. Wysocki9a51c6b2019-05-16 12:42:20 +0200996 if (!pm_runtime_suspended(dev) || !adev || (adev->wakeup.flags.valid &&
997 device_may_wakeup(dev) != !!adev->wakeup.prepare_count))
Ulf Hanssonc2ebf782017-10-03 09:11:08 +0200998 return true;
999
1000 if (sys_target == ACPI_STATE_S0)
1001 return false;
1002
1003 if (adev->power.flags.dsw_present)
1004 return true;
1005
1006 ret = acpi_dev_pm_get_state(dev, adev, sys_target, NULL, &state);
1007 if (ret)
1008 return true;
1009
1010 return state != adev->power.state;
1011}
1012
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001013/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001014 * acpi_subsys_prepare - Prepare device for system transition to a sleep state.
1015 * @dev: Device to prepare.
1016 */
1017int acpi_subsys_prepare(struct device *dev)
1018{
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +02001019 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001020
Rafael J. Wysocki08810a412017-10-25 14:12:29 +02001021 if (dev->driver && dev->driver->pm && dev->driver->pm->prepare) {
1022 int ret = dev->driver->pm->prepare(dev);
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +02001023
Rafael J. Wysocki08810a412017-10-25 14:12:29 +02001024 if (ret < 0)
1025 return ret;
1026
1027 if (!ret && dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_PREPARE))
1028 return 0;
1029 }
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +02001030
Ulf Hanssonc2ebf782017-10-03 09:11:08 +02001031 return !acpi_dev_needs_resume(dev, adev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001032}
1033EXPORT_SYMBOL_GPL(acpi_subsys_prepare);
1034
1035/**
Ulf Hanssone4da8172017-10-03 09:11:06 +02001036 * acpi_subsys_complete - Finalize device's resume during system resume.
1037 * @dev: Device to handle.
1038 */
1039void acpi_subsys_complete(struct device *dev)
1040{
1041 pm_generic_complete(dev);
1042 /*
1043 * If the device had been runtime-suspended before the system went into
1044 * the sleep state it is going out of and it has never been resumed till
1045 * now, resume it in case the firmware powered it up.
1046 */
Rafael J. Wysockidb68daf2017-11-18 15:35:00 +01001047 if (pm_runtime_suspended(dev) && pm_resume_via_firmware())
Ulf Hanssone4da8172017-10-03 09:11:06 +02001048 pm_request_resume(dev);
1049}
1050EXPORT_SYMBOL_GPL(acpi_subsys_complete);
1051
1052/**
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001053 * acpi_subsys_suspend - Run the device driver's suspend callback.
1054 * @dev: Device to handle.
1055 *
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001056 * Follow PCI and resume devices from runtime suspend before running their
1057 * system suspend callbacks, unless the driver can cope with runtime-suspended
1058 * devices during system suspend and there are no ACPI-specific reasons for
1059 * resuming them.
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001060 */
1061int acpi_subsys_suspend(struct device *dev)
1062{
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001063 if (!dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_SUSPEND) ||
1064 acpi_dev_needs_resume(dev, ACPI_COMPANION(dev)))
1065 pm_runtime_resume(dev);
1066
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001067 return pm_generic_suspend(dev);
1068}
Heikki Krogerus4cf563c2014-05-15 16:40:23 +03001069EXPORT_SYMBOL_GPL(acpi_subsys_suspend);
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001070
1071/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001072 * acpi_subsys_suspend_late - Suspend device using ACPI.
1073 * @dev: Device to suspend.
1074 *
1075 * Carry out the generic late suspend procedure for @dev and use ACPI to put
1076 * it into a low-power state during system transition into a sleep state.
1077 */
1078int acpi_subsys_suspend_late(struct device *dev)
1079{
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001080 int ret;
1081
1082 if (dev_pm_smart_suspend_and_suspended(dev))
1083 return 0;
1084
1085 ret = pm_generic_suspend_late(dev);
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +02001086 return ret ? ret : acpi_dev_suspend(dev, device_may_wakeup(dev));
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001087}
1088EXPORT_SYMBOL_GPL(acpi_subsys_suspend_late);
1089
1090/**
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001091 * acpi_subsys_suspend_noirq - Run the device driver's "noirq" suspend callback.
1092 * @dev: Device to suspend.
1093 */
1094int acpi_subsys_suspend_noirq(struct device *dev)
1095{
Rafael J. Wysockidb68daf2017-11-18 15:35:00 +01001096 int ret;
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001097
Rafael J. Wysockidb68daf2017-11-18 15:35:00 +01001098 if (dev_pm_smart_suspend_and_suspended(dev)) {
1099 dev->power.may_skip_resume = true;
1100 return 0;
1101 }
1102
1103 ret = pm_generic_suspend_noirq(dev);
1104 if (ret)
1105 return ret;
1106
1107 /*
1108 * If the target system sleep state is suspend-to-idle, it is sufficient
1109 * to check whether or not the device's wakeup settings are good for
1110 * runtime PM. Otherwise, the pm_resume_via_firmware() check will cause
1111 * acpi_subsys_complete() to take care of fixing up the device's state
1112 * anyway, if need be.
1113 */
1114 dev->power.may_skip_resume = device_may_wakeup(dev) ||
1115 !device_can_wakeup(dev);
1116
1117 return 0;
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001118}
1119EXPORT_SYMBOL_GPL(acpi_subsys_suspend_noirq);
1120
1121/**
1122 * acpi_subsys_resume_noirq - Run the device driver's "noirq" resume callback.
1123 * @dev: Device to handle.
1124 */
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001125static int acpi_subsys_resume_noirq(struct device *dev)
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001126{
Rafael J. Wysockidb68daf2017-11-18 15:35:00 +01001127 if (dev_pm_may_skip_resume(dev))
1128 return 0;
1129
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001130 /*
1131 * Devices with DPM_FLAG_SMART_SUSPEND may be left in runtime suspend
1132 * during system suspend, so update their runtime PM status to "active"
1133 * as they will be put into D0 going forward.
1134 */
1135 if (dev_pm_smart_suspend_and_suspended(dev))
1136 pm_runtime_set_active(dev);
1137
1138 return pm_generic_resume_noirq(dev);
1139}
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001140
1141/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001142 * acpi_subsys_resume_early - Resume device using ACPI.
1143 * @dev: Device to Resume.
1144 *
1145 * Use ACPI to put the given device into the full-power state and carry out the
1146 * generic early resume procedure for it during system transition into the
1147 * working state.
1148 */
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001149static int acpi_subsys_resume_early(struct device *dev)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001150{
Rafael J. Wysocki63705c42017-10-10 18:49:22 +02001151 int ret = acpi_dev_resume(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001152 return ret ? ret : pm_generic_resume_early(dev);
1153}
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001154
1155/**
1156 * acpi_subsys_freeze - Run the device driver's freeze callback.
1157 * @dev: Device to handle.
1158 */
1159int acpi_subsys_freeze(struct device *dev)
1160{
1161 /*
Rafael J. Wysocki501debd2019-07-01 12:44:25 +02001162 * Resume all runtime-suspended devices before creating a snapshot
1163 * image of system memory, because the restore kernel generally cannot
1164 * be expected to always handle them consistently and they need to be
1165 * put into the runtime-active metastate during system resume anyway,
1166 * so it is better to ensure that the state saved in the image will be
1167 * always consistent with that.
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001168 */
Rafael J. Wysocki501debd2019-07-01 12:44:25 +02001169 pm_runtime_resume(dev);
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001170
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001171 return pm_generic_freeze(dev);
1172}
Heikki Krogerus4cf563c2014-05-15 16:40:23 +03001173EXPORT_SYMBOL_GPL(acpi_subsys_freeze);
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001174
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001175/**
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001176 * acpi_subsys_restore_early - Restore device using ACPI.
1177 * @dev: Device to restore.
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001178 */
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001179int acpi_subsys_restore_early(struct device *dev)
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001180{
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001181 int ret = acpi_dev_resume(dev);
1182 return ret ? ret : pm_generic_restore_early(dev);
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001183}
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001184EXPORT_SYMBOL_GPL(acpi_subsys_restore_early);
Rafael J. Wysockic95b7592019-07-01 12:54:29 +02001185
1186/**
1187 * acpi_subsys_poweroff - Run the device driver's poweroff callback.
1188 * @dev: Device to handle.
1189 *
1190 * Follow PCI and resume devices from runtime suspend before running their
1191 * system poweroff callbacks, unless the driver can cope with runtime-suspended
1192 * devices during system suspend and there are no ACPI-specific reasons for
1193 * resuming them.
1194 */
1195int acpi_subsys_poweroff(struct device *dev)
1196{
1197 if (!dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_SUSPEND) ||
1198 acpi_dev_needs_resume(dev, ACPI_COMPANION(dev)))
1199 pm_runtime_resume(dev);
1200
1201 return pm_generic_poweroff(dev);
1202}
1203EXPORT_SYMBOL_GPL(acpi_subsys_poweroff);
1204
1205/**
1206 * acpi_subsys_poweroff_late - Run the device driver's poweroff callback.
1207 * @dev: Device to handle.
1208 *
1209 * Carry out the generic late poweroff procedure for @dev and use ACPI to put
1210 * it into a low-power state during system transition into a sleep state.
1211 */
1212static int acpi_subsys_poweroff_late(struct device *dev)
1213{
1214 int ret;
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001215
1216 if (dev_pm_smart_suspend_and_suspended(dev))
1217 return 0;
1218
Rafael J. Wysockic95b7592019-07-01 12:54:29 +02001219 ret = pm_generic_poweroff_late(dev);
1220 if (ret)
1221 return ret;
1222
1223 return acpi_dev_suspend(dev, device_may_wakeup(dev));
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001224}
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001225
1226/**
Rafael J. Wysockic95b7592019-07-01 12:54:29 +02001227 * acpi_subsys_poweroff_noirq - Run the driver's "noirq" poweroff callback.
1228 * @dev: Device to suspend.
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001229 */
Rafael J. Wysockic95b7592019-07-01 12:54:29 +02001230static int acpi_subsys_poweroff_noirq(struct device *dev)
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001231{
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001232 if (dev_pm_smart_suspend_and_suspended(dev))
1233 return 0;
1234
Rafael J. Wysockic95b7592019-07-01 12:54:29 +02001235 return pm_generic_poweroff_noirq(dev);
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001236}
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001237#endif /* CONFIG_PM_SLEEP */
1238
1239static struct dev_pm_domain acpi_general_pm_domain = {
1240 .ops = {
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001241 .runtime_suspend = acpi_subsys_runtime_suspend,
1242 .runtime_resume = acpi_subsys_runtime_resume,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001243#ifdef CONFIG_PM_SLEEP
1244 .prepare = acpi_subsys_prepare,
Ulf Hanssone4da8172017-10-03 09:11:06 +02001245 .complete = acpi_subsys_complete,
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001246 .suspend = acpi_subsys_suspend,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001247 .suspend_late = acpi_subsys_suspend_late,
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001248 .suspend_noirq = acpi_subsys_suspend_noirq,
1249 .resume_noirq = acpi_subsys_resume_noirq,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001250 .resume_early = acpi_subsys_resume_early,
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001251 .freeze = acpi_subsys_freeze,
Rafael J. Wysockic95b7592019-07-01 12:54:29 +02001252 .poweroff = acpi_subsys_poweroff,
1253 .poweroff_late = acpi_subsys_poweroff_late,
1254 .poweroff_noirq = acpi_subsys_poweroff_noirq,
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001255 .restore_early = acpi_subsys_restore_early,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001256#endif
1257 },
1258};
1259
1260/**
Ulf Hansson91d66cd2014-09-19 20:27:44 +02001261 * acpi_dev_pm_detach - Remove ACPI power management from the device.
1262 * @dev: Device to take care of.
1263 * @power_off: Whether or not to try to remove power from the device.
1264 *
1265 * Remove the device from the general ACPI PM domain and remove its wakeup
1266 * notifier. If @power_off is set, additionally remove power from the device if
1267 * possible.
1268 *
1269 * Callers must ensure proper synchronization of this function with power
1270 * management callbacks.
1271 */
1272static void acpi_dev_pm_detach(struct device *dev, bool power_off)
1273{
1274 struct acpi_device *adev = ACPI_COMPANION(dev);
1275
1276 if (adev && dev->pm_domain == &acpi_general_pm_domain) {
Tomeu Vizoso989561d2016-01-07 16:46:13 +01001277 dev_pm_domain_set(dev, NULL);
Ulf Hansson91d66cd2014-09-19 20:27:44 +02001278 acpi_remove_pm_notifier(adev);
1279 if (power_off) {
1280 /*
1281 * If the device's PM QoS resume latency limit or flags
1282 * have been exposed to user space, they have to be
1283 * hidden at this point, so that they don't affect the
1284 * choice of the low-power state to put the device into.
1285 */
1286 dev_pm_qos_hide_latency_limit(dev);
1287 dev_pm_qos_hide_flags(dev);
Rafael J. Wysocki99d88452017-07-21 14:40:49 +02001288 acpi_device_wakeup_disable(adev);
Ulf Hansson91d66cd2014-09-19 20:27:44 +02001289 acpi_dev_pm_low_power(dev, adev, ACPI_STATE_S0);
1290 }
1291 }
1292}
1293
1294/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001295 * acpi_dev_pm_attach - Prepare device for ACPI power management.
1296 * @dev: Device to prepare.
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001297 * @power_on: Whether or not to power on the device.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001298 *
1299 * If @dev has a valid ACPI handle that has a valid struct acpi_device object
1300 * attached to it, install a wakeup notification handler for the device and
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001301 * add it to the general ACPI PM domain. If @power_on is set, the device will
1302 * be put into the ACPI D0 state before the function returns.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001303 *
1304 * This assumes that the @dev's bus type uses generic power management callbacks
1305 * (or doesn't use any power management callbacks at all).
1306 *
1307 * Callers must ensure proper synchronization of this function with power
1308 * management callbacks.
1309 */
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001310int acpi_dev_pm_attach(struct device *dev, bool power_on)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001311{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +01001312 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001313
1314 if (!adev)
Ulf Hansson919b7302018-05-09 12:17:52 +02001315 return 0;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001316
Mika Westerberg712e9602015-07-27 18:03:57 +03001317 /*
1318 * Only attach the power domain to the first device if the
1319 * companion is shared by multiple. This is to prevent doing power
1320 * management twice.
1321 */
1322 if (!acpi_device_is_first_physical_node(adev, dev))
Ulf Hansson919b7302018-05-09 12:17:52 +02001323 return 0;
Mika Westerberg712e9602015-07-27 18:03:57 +03001324
Rafael J. Wysockic0725302014-07-23 01:00:45 +02001325 acpi_add_pm_notifier(adev, dev, acpi_pm_notify_work_func);
Tomeu Vizoso989561d2016-01-07 16:46:13 +01001326 dev_pm_domain_set(dev, &acpi_general_pm_domain);
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001327 if (power_on) {
1328 acpi_dev_pm_full_power(adev);
Rafael J. Wysocki99d88452017-07-21 14:40:49 +02001329 acpi_device_wakeup_disable(adev);
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001330 }
Ulf Hansson86f1e152014-09-19 20:27:35 +02001331
1332 dev->pm_domain->detach = acpi_dev_pm_detach;
Ulf Hansson919b7302018-05-09 12:17:52 +02001333 return 1;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001334}
1335EXPORT_SYMBOL_GPL(acpi_dev_pm_attach);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +02001336#endif /* CONFIG_PM */