blob: 096153761ebc35d01c565a4b7aa71d909a274612 [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. Wysockic56fd5e2021-01-20 19:58:18 +010013#define pr_fmt(fmt) "ACPI: PM: " fmt
14
Rafael J. Wysocki7b199812013-11-11 22:41:56 +010015#include <linux/acpi.h>
Rafael J. Wysocki86b38322012-11-02 01:40:18 +010016#include <linux/export.h>
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +010017#include <linux/mutex.h>
Rafael J. Wysocki86b38322012-11-02 01:40:18 +010018#include <linux/pm_qos.h>
Tomeu Vizoso989561d2016-01-07 16:46:13 +010019#include <linux/pm_domain.h>
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +010020#include <linux/pm_runtime.h>
Rafael J. Wysocki33e4f802017-06-12 22:56:34 +020021#include <linux/suspend.h>
Rafael J. Wysockiec2cd812012-11-02 01:40:09 +010022
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010023#include "internal.h"
24
Rafael J. Wysocki86b38322012-11-02 01:40:18 +010025/**
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010026 * acpi_power_state_string - String representation of ACPI device power state.
27 * @state: ACPI device power state to return the string representation of.
28 */
29const char *acpi_power_state_string(int state)
30{
31 switch (state) {
32 case ACPI_STATE_D0:
33 return "D0";
34 case ACPI_STATE_D1:
35 return "D1";
36 case ACPI_STATE_D2:
37 return "D2";
38 case ACPI_STATE_D3_HOT:
39 return "D3hot";
40 case ACPI_STATE_D3_COLD:
Rafael J. Wysocki898fee42013-01-22 12:56:26 +010041 return "D3cold";
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010042 default:
43 return "(unknown)";
44 }
45}
46
Rafael J. Wysockif850a482019-06-25 14:06:13 +020047static int acpi_dev_pm_explicit_get(struct acpi_device *device, int *state)
48{
49 unsigned long long psc;
50 acpi_status status;
51
52 status = acpi_evaluate_integer(device->handle, "_PSC", NULL, &psc);
53 if (ACPI_FAILURE(status))
54 return -ENODEV;
55
56 *state = psc;
57 return 0;
58}
59
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010060/**
61 * acpi_device_get_power - Get power state of an ACPI device.
62 * @device: Device to get the power state of.
63 * @state: Place to store the power state of the device.
64 *
65 * This function does not update the device's power.state field, but it may
66 * update its parent's power.state field (when the parent's power state is
67 * unknown and the device's power state turns out to be D0).
Rafael J. Wysocki9ed411c2019-07-04 01:02:49 +020068 *
69 * Also, it does not update power resource reference counters to ensure that
70 * the power state returned by it will be persistent and it may return a power
71 * state shallower than previously set by acpi_device_set_power() for @device
72 * (if that power state depends on any power resources).
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010073 */
74int acpi_device_get_power(struct acpi_device *device, int *state)
75{
76 int result = ACPI_STATE_UNKNOWN;
Rafael J. Wysockif850a482019-06-25 14:06:13 +020077 int error;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010078
79 if (!device || !state)
80 return -EINVAL;
81
82 if (!device->flags.power_manageable) {
83 /* TBD: Non-recursive algorithm for walking up hierarchy. */
84 *state = device->parent ?
85 device->parent->power.state : ACPI_STATE_D0;
86 goto out;
87 }
88
89 /*
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +010090 * Get the device's power state from power resources settings and _PSC,
91 * if available.
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010092 */
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +010093 if (device->power.flags.power_resources) {
Rafael J. Wysockif850a482019-06-25 14:06:13 +020094 error = acpi_power_get_inferred_state(device, &result);
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +010095 if (error)
96 return error;
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +010097 }
98 if (device->power.flags.explicit_get) {
Rafael J. Wysockif850a482019-06-25 14:06:13 +020099 int psc;
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +0100100
Rafael J. Wysockif850a482019-06-25 14:06:13 +0200101 error = acpi_dev_pm_explicit_get(device, &psc);
102 if (error)
103 return error;
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +0100104
105 /*
106 * The power resources settings may indicate a power state
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200107 * shallower than the actual power state of the device, because
108 * the same power resources may be referenced by other devices.
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +0100109 *
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200110 * For systems predating ACPI 4.0 we assume that D3hot is the
111 * deepest state that can be supported.
Rafael J. Wysocki75eb2d12013-03-24 22:54:40 +0100112 */
113 if (psc > result && psc < ACPI_STATE_D3_COLD)
114 result = psc;
115 else if (result == ACPI_STATE_UNKNOWN)
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200116 result = psc > ACPI_STATE_D2 ? ACPI_STATE_D3_HOT : psc;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100117 }
118
119 /*
120 * If we were unsure about the device parent's power state up to this
121 * point, the fact that the device is in D0 implies that the parent has
Mika Westerberg644f17a2013-10-10 13:28:46 +0300122 * to be in D0 too, except if ignore_parent is set.
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100123 */
Mika Westerberg644f17a2013-10-10 13:28:46 +0300124 if (!device->power.flags.ignore_parent && device->parent
125 && device->parent->power.state == ACPI_STATE_UNKNOWN
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100126 && result == ACPI_STATE_D0)
127 device->parent->power.state = ACPI_STATE_D0;
128
129 *state = result;
130
131 out:
Rafael J. Wysockic56fd5e2021-01-20 19:58:18 +0100132 dev_dbg(&device->dev, "Device power state is %s\n",
133 acpi_power_state_string(*state));
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100134
135 return 0;
136}
137
Rafael J. Wysocki9c0f45e2013-01-22 12:55:52 +0100138static int acpi_dev_pm_explicit_set(struct acpi_device *adev, int state)
139{
140 if (adev->power.states[state].flags.explicit_set) {
141 char method[5] = { '_', 'P', 'S', '0' + state, '\0' };
142 acpi_status status;
143
144 status = acpi_evaluate_object(adev->handle, method, NULL, NULL);
145 if (ACPI_FAILURE(status))
146 return -ENODEV;
147 }
148 return 0;
149}
150
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100151/**
152 * acpi_device_set_power - Set power state of an ACPI device.
153 * @device: Device to set the power state of.
154 * @state: New power state to set.
155 *
156 * Callers must ensure that the device is power manageable before using this
157 * function.
158 */
159int acpi_device_set_power(struct acpi_device *device, int state)
160{
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200161 int target_state = state;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100162 int result = 0;
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100163
Rafael J. Wysocki2c7d1322013-07-30 14:34:00 +0200164 if (!device || !device->flags.power_manageable
165 || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100166 return -EINVAL;
167
Rafael J. Wysockiee8193e2019-08-02 12:26:02 +0200168 acpi_handle_debug(device->handle, "Power state change: %s -> %s\n",
169 acpi_power_state_string(device->power.state),
170 acpi_power_state_string(state));
171
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100172 /* Make sure this is a valid target state */
173
Rafael J. Wysockif850a482019-06-25 14:06:13 +0200174 /* There is a special case for D0 addressed below. */
175 if (state > ACPI_STATE_D0 && state == device->power.state) {
Rafael J. Wysockic56fd5e2021-01-20 19:58:18 +0100176 dev_dbg(&device->dev, "Device already in %s\n",
177 acpi_power_state_string(state));
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100178 return 0;
179 }
180
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200181 if (state == ACPI_STATE_D3_COLD) {
182 /*
183 * For transitions to D3cold we need to execute _PS3 and then
184 * possibly drop references to the power resources in use.
185 */
186 state = ACPI_STATE_D3_HOT;
Rafael J. Wysocki956ad9d92020-06-04 19:22:26 +0200187 /* If D3cold is not supported, use D3hot as the target state. */
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200188 if (!device->power.states[ACPI_STATE_D3_COLD].flags.valid)
189 target_state = state;
190 } else if (!device->power.states[state].flags.valid) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200191 dev_warn(&device->dev, "Power state %s not supported\n",
192 acpi_power_state_string(state));
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100193 return -ENODEV;
194 }
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200195
Mika Westerberg644f17a2013-10-10 13:28:46 +0300196 if (!device->power.flags.ignore_parent &&
197 device->parent && (state < device->parent->power.state)) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200198 dev_warn(&device->dev,
Aaron Lu593298e2013-08-03 21:13:22 +0200199 "Cannot transition to power state %s for parent in %s\n",
200 acpi_power_state_string(state),
201 acpi_power_state_string(device->parent->power.state));
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100202 return -ENODEV;
203 }
204
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100205 /*
206 * Transition Power
207 * ----------------
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200208 * In accordance with ACPI 6, _PSx is executed before manipulating power
209 * resources, unless the target state is D0, in which case _PS0 is
210 * supposed to be executed after turning the power resources on.
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100211 */
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200212 if (state > ACPI_STATE_D0) {
213 /*
214 * According to ACPI 6, devices cannot go from lower-power
215 * (deeper) states to higher-power (shallower) states.
216 */
217 if (state < device->power.state) {
218 dev_warn(&device->dev, "Cannot transition from %s to %s\n",
219 acpi_power_state_string(device->power.state),
220 acpi_power_state_string(state));
221 return -ENODEV;
222 }
223
Rafael J. Wysocki21ba2372019-06-25 14:04:45 +0200224 /*
225 * If the device goes from D3hot to D3cold, _PS3 has been
226 * evaluated for it already, so skip it in that case.
227 */
228 if (device->power.state < ACPI_STATE_D3_HOT) {
229 result = acpi_dev_pm_explicit_set(device, state);
230 if (result)
231 goto end;
232 }
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100233
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200234 if (device->power.flags.power_resources)
235 result = acpi_power_transition(device, target_state);
236 } else {
Rafael J. Wysocki42787ed2019-08-01 01:31:08 +0200237 int cur_state = device->power.state;
238
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200239 if (device->power.flags.power_resources) {
240 result = acpi_power_transition(device, ACPI_STATE_D0);
241 if (result)
242 goto end;
243 }
Rafael J. Wysockif850a482019-06-25 14:06:13 +0200244
Rafael J. Wysocki42787ed2019-08-01 01:31:08 +0200245 if (cur_state == ACPI_STATE_D0) {
Rafael J. Wysockif850a482019-06-25 14:06:13 +0200246 int psc;
247
248 /* Nothing to do here if _PSC is not present. */
249 if (!device->power.flags.explicit_get)
250 return 0;
251
252 /*
253 * The power state of the device was set to D0 last
254 * time, but that might have happened before a
255 * system-wide transition involving the platform
256 * firmware, so it may be necessary to evaluate _PS0
257 * for the device here. However, use extra care here
258 * and evaluate _PSC to check the device's current power
259 * state, and only invoke _PS0 if the evaluation of _PSC
260 * is successful and it returns a power state different
261 * from D0.
262 */
263 result = acpi_dev_pm_explicit_get(device, &psc);
264 if (result || psc == ACPI_STATE_D0)
265 return 0;
266 }
267
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200268 result = acpi_dev_pm_explicit_set(device, ACPI_STATE_D0);
Rafael J. Wysockie5656272013-01-22 12:56:35 +0100269 }
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100270
Rafael J. Wysockie78adb72013-01-22 12:56:04 +0100271 end:
272 if (result) {
Rafael J. Wysockib69137a2013-07-30 14:34:55 +0200273 dev_warn(&device->dev, "Failed to change power state to %s\n",
Kai-Heng Fenga9b760b2020-04-21 15:55:16 +0800274 acpi_power_state_string(target_state));
Rafael J. Wysockie78adb72013-01-22 12:56:04 +0100275 } else {
Mika Westerberg71b65442015-07-28 13:51:21 +0300276 device->power.state = target_state;
Rafael J. Wysockic56fd5e2021-01-20 19:58:18 +0100277 dev_dbg(&device->dev, "Power state changed to %s\n",
278 acpi_power_state_string(target_state));
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100279 }
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);
Tri Voc8377ad2019-08-06 18:48:46 -0700500 adev->wakeup.ws = wakeup_source_register(&adev->dev,
501 dev_name(&adev->dev));
Ville Syrjäläff165672017-11-07 23:08:10 +0200502 adev->wakeup.context.dev = dev;
503 adev->wakeup.context.func = func;
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200504 adev->wakeup.flags.notifier_present = true;
Ville Syrjäläff165672017-11-07 23:08:10 +0200505 mutex_unlock(&acpi_pm_notifier_lock);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200506
507 out:
Ville Syrjäläff165672017-11-07 23:08:10 +0200508 mutex_unlock(&acpi_pm_notifier_install_lock);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200509 return status;
510}
511
512/**
513 * acpi_remove_pm_notifier - Unregister PM notifier from given ACPI device.
514 * @adev: ACPI device to remove the notifier from.
515 */
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200516acpi_status acpi_remove_pm_notifier(struct acpi_device *adev)
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200517{
518 acpi_status status = AE_BAD_PARAMETER;
519
Ville Syrjäläff165672017-11-07 23:08:10 +0200520 mutex_lock(&acpi_pm_notifier_install_lock);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200521
522 if (!adev->wakeup.flags.notifier_present)
523 goto out;
524
525 status = acpi_remove_notify_handler(adev->handle,
526 ACPI_SYSTEM_NOTIFY,
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200527 acpi_pm_notify_handler);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200528 if (ACPI_FAILURE(status))
529 goto out;
530
Ville Syrjäläff165672017-11-07 23:08:10 +0200531 mutex_lock(&acpi_pm_notifier_lock);
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200532 adev->wakeup.context.func = NULL;
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200533 adev->wakeup.context.dev = NULL;
534 wakeup_source_unregister(adev->wakeup.ws);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200535 adev->wakeup.flags.notifier_present = false;
Ville Syrjäläff165672017-11-07 23:08:10 +0200536 mutex_unlock(&acpi_pm_notifier_lock);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200537
538 out:
Ville Syrjäläff165672017-11-07 23:08:10 +0200539 mutex_unlock(&acpi_pm_notifier_install_lock);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +0200540 return status;
541}
542
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100543bool acpi_bus_can_wakeup(acpi_handle handle)
544{
545 struct acpi_device *device;
546 int result;
547
548 result = acpi_bus_get_device(handle, &device);
549 return result ? false : device->wakeup.flags.valid;
550}
551EXPORT_SYMBOL(acpi_bus_can_wakeup);
552
Rafael J. Wysocki8370c2d2017-06-24 01:56:13 +0200553bool acpi_pm_device_can_wakeup(struct device *dev)
554{
555 struct acpi_device *adev = ACPI_COMPANION(dev);
556
557 return adev ? acpi_device_can_wakeup(adev) : false;
558}
559
Rafael J. Wysocki9ce4e602013-01-17 14:11:08 +0100560/**
Rafael J. Wysockib25c77e2013-06-16 00:37:42 +0200561 * acpi_dev_pm_get_state - Get preferred power state of ACPI device.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100562 * @dev: Device whose preferred target power state to return.
563 * @adev: ACPI device node corresponding to @dev.
564 * @target_state: System state to match the resultant device state.
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200565 * @d_min_p: Location to store the highest power state available to the device.
566 * @d_max_p: Location to store the lowest power state available to the device.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100567 *
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200568 * Find the lowest power (highest number) and highest power (lowest number) ACPI
569 * device power states that the device can be in while the system is in the
570 * state represented by @target_state. Store the integer numbers representing
571 * those stats in the memory locations pointed to by @d_max_p and @d_min_p,
572 * respectively.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100573 *
574 * Callers must ensure that @dev and @adev are valid pointers and that @adev
575 * actually corresponds to @dev before using this function.
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200576 *
577 * Returns 0 on success or -ENODATA when one of the ACPI methods fails or
578 * returns a value that doesn't make sense. The memory locations pointed to by
579 * @d_max_p and @d_min_p are only modified on success.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100580 */
Rafael J. Wysockib25c77e2013-06-16 00:37:42 +0200581static int acpi_dev_pm_get_state(struct device *dev, struct acpi_device *adev,
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200582 u32 target_state, int *d_min_p, int *d_max_p)
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100583{
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200584 char method[] = { '_', 'S', '0' + target_state, 'D', '\0' };
585 acpi_handle handle = adev->handle;
586 unsigned long long ret;
587 int d_min, d_max;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100588 bool wakeup = false;
Daniel Drakebf8c6182018-03-20 12:07:35 +0800589 bool has_sxd = false;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200590 acpi_status status;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100591
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100592 /*
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200593 * If the system state is S0, the lowest power state the device can be
594 * in is D3cold, unless the device has _S0W and is supposed to signal
595 * wakeup, in which case the return value of _S0W has to be used as the
596 * lowest power state available to the device.
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100597 */
598 d_min = ACPI_STATE_D0;
Rafael J. Wysocki4c164ae2013-06-16 00:37:50 +0200599 d_max = ACPI_STATE_D3_COLD;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100600
601 /*
602 * If present, _SxD methods return the minimum D-state (highest power
603 * state) we can use for the corresponding S-states. Otherwise, the
604 * minimum D-state is D0 (ACPI 3.x).
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100605 */
606 if (target_state > ACPI_STATE_S0) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200607 /*
608 * We rely on acpi_evaluate_integer() not clobbering the integer
609 * provided if AE_NOT_FOUND is returned.
610 */
611 ret = d_min;
612 status = acpi_evaluate_integer(handle, method, NULL, &ret);
613 if ((ACPI_FAILURE(status) && status != AE_NOT_FOUND)
614 || ret > ACPI_STATE_D3_COLD)
615 return -ENODATA;
616
617 /*
618 * We need to handle legacy systems where D3hot and D3cold are
619 * the same and 3 is returned in both cases, so fall back to
620 * D3cold if D3hot is not a valid state.
621 */
622 if (!adev->power.states[ret].flags.valid) {
623 if (ret == ACPI_STATE_D3_HOT)
624 ret = ACPI_STATE_D3_COLD;
625 else
626 return -ENODATA;
627 }
Daniel Drakebf8c6182018-03-20 12:07:35 +0800628
629 if (status == AE_OK)
630 has_sxd = true;
631
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200632 d_min = ret;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100633 wakeup = device_may_wakeup(dev) && adev->wakeup.flags.valid
634 && adev->wakeup.sleep_state >= target_state;
Rafael J. Wysocki20f97ca2017-10-13 15:27:24 +0200635 } else {
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100636 wakeup = adev->wakeup.flags.valid;
637 }
638
639 /*
640 * If _PRW says we can wake up the system from the target sleep state,
641 * the D-state returned by _SxD is sufficient for that (we assume a
642 * wakeup-aware driver if wake is set). Still, if _SxW exists
643 * (ACPI 3.x), it should return the maximum (lowest power) D-state that
644 * can wake the system. _S0W may be valid, too.
645 */
646 if (wakeup) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200647 method[3] = 'W';
648 status = acpi_evaluate_integer(handle, method, NULL, &ret);
649 if (status == AE_NOT_FOUND) {
Daniel Drakebf8c6182018-03-20 12:07:35 +0800650 /* No _SxW. In this case, the ACPI spec says that we
651 * must not go into any power state deeper than the
652 * value returned from _SxD.
653 */
654 if (has_sxd && target_state > ACPI_STATE_S0)
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100655 d_max = d_min;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200656 } else if (ACPI_SUCCESS(status) && ret <= ACPI_STATE_D3_COLD) {
657 /* Fall back to D3cold if ret is not a valid state. */
658 if (!adev->power.states[ret].flags.valid)
659 ret = ACPI_STATE_D3_COLD;
660
661 d_max = ret > d_min ? ret : d_min;
662 } else {
663 return -ENODATA;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100664 }
665 }
666
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100667 if (d_min_p)
668 *d_min_p = d_min;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200669
670 if (d_max_p)
671 *d_max_p = d_max;
672
673 return 0;
Rafael J. Wysocki86b38322012-11-02 01:40:18 +0100674}
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100675
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100676/**
677 * acpi_pm_device_sleep_state - Get preferred power state of ACPI device.
678 * @dev: Device whose preferred target power state to return.
679 * @d_min_p: Location to store the upper limit of the allowed states range.
680 * @d_max_in: Deepest low-power state to take into consideration.
681 * Return value: Preferred power state of the device on success, -ENODEV
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200682 * if there's no 'struct acpi_device' for @dev, -EINVAL if @d_max_in is
683 * incorrect, or -ENODATA on ACPI method failure.
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100684 *
685 * The caller must ensure that @dev is valid before using this function.
686 */
687int acpi_pm_device_sleep_state(struct device *dev, int *d_min_p, int d_max_in)
688{
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100689 struct acpi_device *adev;
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200690 int ret, d_min, d_max;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200691
692 if (d_max_in < ACPI_STATE_D0 || d_max_in > ACPI_STATE_D3_COLD)
693 return -EINVAL;
694
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200695 if (d_max_in > ACPI_STATE_D2) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200696 enum pm_qos_flags_status stat;
697
698 stat = dev_pm_qos_flags(dev, PM_QOS_FLAG_NO_POWER_OFF);
699 if (stat == PM_QOS_FLAGS_ALL)
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200700 d_max_in = ACPI_STATE_D2;
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200701 }
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100702
Rafael J. Wysocki17653a32014-07-23 01:01:41 +0200703 adev = ACPI_COMPANION(dev);
704 if (!adev) {
705 dev_dbg(dev, "ACPI companion missing in %s!\n", __func__);
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100706 return -ENODEV;
707 }
708
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200709 ret = acpi_dev_pm_get_state(dev, adev, acpi_target_system_state(),
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200710 &d_min, &d_max);
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200711 if (ret)
712 return ret;
713
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200714 if (d_max_in < d_min)
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200715 return -EINVAL;
716
717 if (d_max > d_max_in) {
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200718 for (d_max = d_max_in; d_max > d_min; d_max--) {
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200719 if (adev->power.states[d_max].flags.valid)
720 break;
721 }
722 }
Rafael J. Wysocki9b5c7a52013-06-27 14:01:02 +0200723
724 if (d_min_p)
725 *d_min_p = d_min;
726
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200727 return d_max;
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100728}
729EXPORT_SYMBOL(acpi_pm_device_sleep_state);
730
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100731/**
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200732 * acpi_pm_notify_work_func - ACPI devices wakeup notification work function.
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200733 * @context: Device wakeup context.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100734 */
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200735static void acpi_pm_notify_work_func(struct acpi_device_wakeup_context *context)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100736{
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200737 struct device *dev = context->dev;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100738
Rafael J. Wysockic0725302014-07-23 01:00:45 +0200739 if (dev) {
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100740 pm_wakeup_event(dev, 0);
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200741 pm_request_resume(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100742 }
743}
744
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200745static DEFINE_MUTEX(acpi_wakeup_lock);
746
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200747static int __acpi_device_wakeup_enable(struct acpi_device *adev,
Rafael J. Wysocki7482c5c2020-11-24 20:44:00 +0100748 u32 target_state)
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200749{
750 struct acpi_device_wakeup *wakeup = &adev->wakeup;
751 acpi_status status;
752 int error = 0;
753
754 mutex_lock(&acpi_wakeup_lock);
755
Rafael J. Wysockib93b7ef2020-11-24 20:46:38 +0100756 /*
757 * If the device wakeup power is already enabled, disable it and enable
758 * it again in case it depends on the configuration of subordinate
759 * devices and the conditions have changed since it was enabled last
760 * time.
761 */
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200762 if (wakeup->enable_count > 0)
Rafael J. Wysockib93b7ef2020-11-24 20:46:38 +0100763 acpi_disable_wakeup_device_power(adev);
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200764
765 error = acpi_enable_wakeup_device_power(adev, target_state);
Rafael J. Wysockib93b7ef2020-11-24 20:46:38 +0100766 if (error) {
767 if (wakeup->enable_count > 0) {
768 acpi_disable_gpe(wakeup->gpe_device, wakeup->gpe_number);
769 wakeup->enable_count = 0;
770 }
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200771 goto out;
Rafael J. Wysockib93b7ef2020-11-24 20:46:38 +0100772 }
773
774 if (wakeup->enable_count > 0)
775 goto inc;
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200776
777 status = acpi_enable_gpe(wakeup->gpe_device, wakeup->gpe_number);
778 if (ACPI_FAILURE(status)) {
779 acpi_disable_wakeup_device_power(adev);
780 error = -EIO;
781 goto out;
782 }
783
Rafael J. Wysockifbc94182019-04-03 23:58:01 +0200784 acpi_handle_debug(adev->handle, "GPE%2X enabled for wakeup\n",
785 (unsigned int)wakeup->gpe_number);
786
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200787inc:
Rafael J. Wysockib93b7ef2020-11-24 20:46:38 +0100788 if (wakeup->enable_count < INT_MAX)
789 wakeup->enable_count++;
790 else
791 acpi_handle_info(adev->handle, "Wakeup enable count out of bounds!\n");
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200792
793out:
794 mutex_unlock(&acpi_wakeup_lock);
795 return error;
796}
797
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100798/**
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200799 * acpi_device_wakeup_enable - Enable wakeup functionality for device.
800 * @adev: ACPI device to enable wakeup functionality for.
Rafael J. Wysockif35cec22014-07-23 01:00:53 +0200801 * @target_state: State the system is transitioning into.
Rafael J. Wysockicd7bd022012-11-02 01:40:28 +0100802 *
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200803 * Enable the GPE associated with @adev so that it can generate wakeup signals
804 * for the device in response to external (remote) events and enable wakeup
805 * power for it.
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100806 *
807 * Callers must ensure that @adev is a valid ACPI device node before executing
808 * this function.
809 */
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200810static int acpi_device_wakeup_enable(struct acpi_device *adev, u32 target_state)
811{
Rafael J. Wysocki7482c5c2020-11-24 20:44:00 +0100812 return __acpi_device_wakeup_enable(adev, target_state);
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200813}
814
815/**
816 * acpi_device_wakeup_disable - Disable wakeup functionality for device.
817 * @adev: ACPI device to disable wakeup functionality for.
818 *
819 * Disable the GPE associated with @adev and disable wakeup power for it.
820 *
821 * Callers must ensure that @adev is a valid ACPI device node before executing
822 * this function.
823 */
824static void acpi_device_wakeup_disable(struct acpi_device *adev)
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100825{
826 struct acpi_device_wakeup *wakeup = &adev->wakeup;
827
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200828 mutex_lock(&acpi_wakeup_lock);
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100829
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200830 if (!wakeup->enable_count)
831 goto out;
Rafael J. Wysocki235d81a2017-06-12 22:51:07 +0200832
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200833 acpi_disable_gpe(wakeup->gpe_device, wakeup->gpe_number);
834 acpi_disable_wakeup_device_power(adev);
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100835
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200836 wakeup->enable_count--;
837
838out:
839 mutex_unlock(&acpi_wakeup_lock);
Rafael J. Wysockidee83702012-11-02 01:40:36 +0100840}
841
Rafael J. Wysocki7482c5c2020-11-24 20:44:00 +0100842/**
843 * acpi_pm_set_device_wakeup - Enable/disable remote wakeup for given device.
844 * @dev: Device to enable/disable to generate wakeup events.
845 * @enable: Whether to enable or disable the wakeup functionality.
846 */
847int acpi_pm_set_device_wakeup(struct device *dev, bool enable)
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100848{
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100849 struct acpi_device *adev;
850 int error;
851
Rafael J. Wysocki17653a32014-07-23 01:01:41 +0200852 adev = ACPI_COMPANION(dev);
853 if (!adev) {
854 dev_dbg(dev, "ACPI companion missing in %s!\n", __func__);
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100855 return -ENODEV;
856 }
857
Rafael J. Wysocki4d183d02017-06-24 01:54:39 +0200858 if (!acpi_device_can_wakeup(adev))
859 return -EINVAL;
860
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200861 if (!enable) {
862 acpi_device_wakeup_disable(adev);
863 dev_dbg(dev, "Wakeup disabled by ACPI\n");
864 return 0;
865 }
866
Rafael J. Wysocki7482c5c2020-11-24 20:44:00 +0100867 error = __acpi_device_wakeup_enable(adev, acpi_target_system_state());
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100868 if (!error)
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200869 dev_dbg(dev, "Wakeup enabled by ACPI\n");
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100870
871 return error;
872}
Rafael J. Wysocki1ba51a72017-08-01 02:56:18 +0200873EXPORT_SYMBOL_GPL(acpi_pm_set_device_wakeup);
874
875/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100876 * acpi_dev_pm_low_power - Put ACPI device into a low-power state.
877 * @dev: Device to put into a low-power state.
878 * @adev: ACPI device node corresponding to @dev.
879 * @system_state: System state to choose the device state for.
880 */
881static int acpi_dev_pm_low_power(struct device *dev, struct acpi_device *adev,
882 u32 system_state)
883{
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200884 int ret, state;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100885
886 if (!acpi_device_power_manageable(adev))
887 return 0;
888
Rafael J. Wysockifa1675b2013-06-16 00:37:59 +0200889 ret = acpi_dev_pm_get_state(dev, adev, system_state, NULL, &state);
890 return ret ? ret : acpi_device_set_power(adev, state);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100891}
892
893/**
894 * acpi_dev_pm_full_power - Put ACPI device into the full-power state.
895 * @adev: ACPI device node to put into the full-power state.
896 */
897static int acpi_dev_pm_full_power(struct acpi_device *adev)
898{
899 return acpi_device_power_manageable(adev) ?
900 acpi_device_set_power(adev, ACPI_STATE_D0) : 0;
901}
902
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100903/**
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200904 * acpi_dev_suspend - Put device into a low-power state using ACPI.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100905 * @dev: Device to put into a low-power state.
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200906 * @wakeup: Whether or not to enable wakeup for the device.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100907 *
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200908 * Put the given device into a low-power state using the standard ACPI
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100909 * mechanism. Set up remote wakeup if desired, choose the state to put the
910 * device into (this checks if remote wakeup is expected to work too), and set
911 * the power state of the device.
912 */
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200913int acpi_dev_suspend(struct device *dev, bool wakeup)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100914{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +0100915 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200916 u32 target_state = acpi_target_system_state();
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100917 int error;
918
919 if (!adev)
920 return 0;
921
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200922 if (wakeup && acpi_device_can_wakeup(adev)) {
923 error = acpi_device_wakeup_enable(adev, target_state);
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200924 if (error)
925 return -EAGAIN;
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200926 } else {
927 wakeup = false;
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200928 }
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100929
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200930 error = acpi_dev_pm_low_power(dev, adev, target_state);
931 if (error && wakeup)
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200932 acpi_device_wakeup_disable(adev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100933
934 return error;
935}
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200936EXPORT_SYMBOL_GPL(acpi_dev_suspend);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100937
938/**
Rafael J. Wysocki63705c42017-10-10 18:49:22 +0200939 * acpi_dev_resume - Put device into the full-power state using ACPI.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100940 * @dev: Device to put into the full-power state.
941 *
942 * Put the given device into the full-power state using the standard ACPI
Rafael J. Wysocki63705c42017-10-10 18:49:22 +0200943 * mechanism. Set the power state of the device to ACPI D0 and disable wakeup.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100944 */
Rafael J. Wysocki63705c42017-10-10 18:49:22 +0200945int acpi_dev_resume(struct device *dev)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100946{
Rafael J. Wysocki79c03732014-01-27 23:10:24 +0100947 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100948 int error;
949
950 if (!adev)
951 return 0;
952
953 error = acpi_dev_pm_full_power(adev);
Rafael J. Wysocki99d88452017-07-21 14:40:49 +0200954 acpi_device_wakeup_disable(adev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100955 return error;
956}
Rafael J. Wysocki63705c42017-10-10 18:49:22 +0200957EXPORT_SYMBOL_GPL(acpi_dev_resume);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100958
959/**
960 * acpi_subsys_runtime_suspend - Suspend device using ACPI.
961 * @dev: Device to suspend.
962 *
963 * Carry out the generic runtime suspend procedure for @dev and use ACPI to put
964 * it into a runtime low-power state.
965 */
966int acpi_subsys_runtime_suspend(struct device *dev)
967{
968 int ret = pm_generic_runtime_suspend(dev);
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +0200969 return ret ? ret : acpi_dev_suspend(dev, true);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100970}
971EXPORT_SYMBOL_GPL(acpi_subsys_runtime_suspend);
972
973/**
974 * acpi_subsys_runtime_resume - Resume device using ACPI.
975 * @dev: Device to Resume.
976 *
977 * Use ACPI to put the given device into the full-power state and carry out the
978 * generic runtime resume procedure for it.
979 */
980int acpi_subsys_runtime_resume(struct device *dev)
981{
Rafael J. Wysocki63705c42017-10-10 18:49:22 +0200982 int ret = acpi_dev_resume(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100983 return ret ? ret : pm_generic_runtime_resume(dev);
984}
985EXPORT_SYMBOL_GPL(acpi_subsys_runtime_resume);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +0100986
987#ifdef CONFIG_PM_SLEEP
Ulf Hanssonc2ebf782017-10-03 09:11:08 +0200988static bool acpi_dev_needs_resume(struct device *dev, struct acpi_device *adev)
989{
990 u32 sys_target = acpi_target_system_state();
991 int ret, state;
992
Rafael J. Wysocki9a51c6b2019-05-16 12:42:20 +0200993 if (!pm_runtime_suspended(dev) || !adev || (adev->wakeup.flags.valid &&
994 device_may_wakeup(dev) != !!adev->wakeup.prepare_count))
Ulf Hanssonc2ebf782017-10-03 09:11:08 +0200995 return true;
996
997 if (sys_target == ACPI_STATE_S0)
998 return false;
999
1000 if (adev->power.flags.dsw_present)
1001 return true;
1002
1003 ret = acpi_dev_pm_get_state(dev, adev, sys_target, NULL, &state);
1004 if (ret)
1005 return true;
1006
1007 return state != adev->power.state;
1008}
1009
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001010/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001011 * acpi_subsys_prepare - Prepare device for system transition to a sleep state.
1012 * @dev: Device to prepare.
1013 */
1014int acpi_subsys_prepare(struct device *dev)
1015{
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +02001016 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001017
Rafael J. Wysocki08810a412017-10-25 14:12:29 +02001018 if (dev->driver && dev->driver->pm && dev->driver->pm->prepare) {
1019 int ret = dev->driver->pm->prepare(dev);
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +02001020
Rafael J. Wysocki08810a412017-10-25 14:12:29 +02001021 if (ret < 0)
1022 return ret;
1023
1024 if (!ret && dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_PREPARE))
1025 return 0;
1026 }
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +02001027
Ulf Hanssonc2ebf782017-10-03 09:11:08 +02001028 return !acpi_dev_needs_resume(dev, adev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001029}
1030EXPORT_SYMBOL_GPL(acpi_subsys_prepare);
1031
1032/**
Ulf Hanssone4da8172017-10-03 09:11:06 +02001033 * acpi_subsys_complete - Finalize device's resume during system resume.
1034 * @dev: Device to handle.
1035 */
1036void acpi_subsys_complete(struct device *dev)
1037{
1038 pm_generic_complete(dev);
1039 /*
1040 * If the device had been runtime-suspended before the system went into
1041 * the sleep state it is going out of and it has never been resumed till
1042 * now, resume it in case the firmware powered it up.
1043 */
Rafael J. Wysockidb68daf2017-11-18 15:35:00 +01001044 if (pm_runtime_suspended(dev) && pm_resume_via_firmware())
Ulf Hanssone4da8172017-10-03 09:11:06 +02001045 pm_request_resume(dev);
1046}
1047EXPORT_SYMBOL_GPL(acpi_subsys_complete);
1048
1049/**
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001050 * acpi_subsys_suspend - Run the device driver's suspend callback.
1051 * @dev: Device to handle.
1052 *
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001053 * Follow PCI and resume devices from runtime suspend before running their
1054 * system suspend callbacks, unless the driver can cope with runtime-suspended
1055 * devices during system suspend and there are no ACPI-specific reasons for
1056 * resuming them.
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001057 */
1058int acpi_subsys_suspend(struct device *dev)
1059{
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001060 if (!dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_SUSPEND) ||
1061 acpi_dev_needs_resume(dev, ACPI_COMPANION(dev)))
1062 pm_runtime_resume(dev);
1063
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001064 return pm_generic_suspend(dev);
1065}
Heikki Krogerus4cf563c2014-05-15 16:40:23 +03001066EXPORT_SYMBOL_GPL(acpi_subsys_suspend);
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001067
1068/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001069 * acpi_subsys_suspend_late - Suspend device using ACPI.
1070 * @dev: Device to suspend.
1071 *
1072 * Carry out the generic late suspend procedure for @dev and use ACPI to put
1073 * it into a low-power state during system transition into a sleep state.
1074 */
1075int acpi_subsys_suspend_late(struct device *dev)
1076{
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001077 int ret;
1078
Rafael J. Wysockifa2bfea2020-04-18 18:52:48 +02001079 if (dev_pm_skip_suspend(dev))
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001080 return 0;
1081
1082 ret = pm_generic_suspend_late(dev);
Rafael J. Wysockicbe25ce2017-10-14 17:43:15 +02001083 return ret ? ret : acpi_dev_suspend(dev, device_may_wakeup(dev));
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001084}
1085EXPORT_SYMBOL_GPL(acpi_subsys_suspend_late);
1086
1087/**
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001088 * acpi_subsys_suspend_noirq - Run the device driver's "noirq" suspend callback.
1089 * @dev: Device to suspend.
1090 */
1091int acpi_subsys_suspend_noirq(struct device *dev)
1092{
Rafael J. Wysockidb68daf2017-11-18 15:35:00 +01001093 int ret;
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001094
Rafael J. Wysockifa2bfea2020-04-18 18:52:48 +02001095 if (dev_pm_skip_suspend(dev))
Rafael J. Wysockidb68daf2017-11-18 15:35:00 +01001096 return 0;
Rafael J. Wysockidb68daf2017-11-18 15:35:00 +01001097
1098 ret = pm_generic_suspend_noirq(dev);
1099 if (ret)
1100 return ret;
1101
1102 /*
1103 * If the target system sleep state is suspend-to-idle, it is sufficient
1104 * to check whether or not the device's wakeup settings are good for
1105 * runtime PM. Otherwise, the pm_resume_via_firmware() check will cause
1106 * acpi_subsys_complete() to take care of fixing up the device's state
1107 * anyway, if need be.
1108 */
Rafael J. Wysocki0fe8a1b2020-04-18 18:52:19 +02001109 if (device_can_wakeup(dev) && !device_may_wakeup(dev))
1110 dev->power.may_skip_resume = false;
Rafael J. Wysockidb68daf2017-11-18 15:35:00 +01001111
1112 return 0;
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001113}
1114EXPORT_SYMBOL_GPL(acpi_subsys_suspend_noirq);
1115
1116/**
1117 * acpi_subsys_resume_noirq - Run the device driver's "noirq" resume callback.
1118 * @dev: Device to handle.
1119 */
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001120static int acpi_subsys_resume_noirq(struct device *dev)
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001121{
Rafael J. Wysocki76c70cb2020-04-18 18:52:30 +02001122 if (dev_pm_skip_resume(dev))
Rafael J. Wysockidb68daf2017-11-18 15:35:00 +01001123 return 0;
1124
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001125 return pm_generic_resume_noirq(dev);
1126}
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001127
1128/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001129 * acpi_subsys_resume_early - Resume device using ACPI.
1130 * @dev: Device to Resume.
1131 *
1132 * Use ACPI to put the given device into the full-power state and carry out the
1133 * generic early resume procedure for it during system transition into the
1134 * working state.
1135 */
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001136static int acpi_subsys_resume_early(struct device *dev)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001137{
Rafael J. Wysocki6e176bf2020-04-18 18:52:08 +02001138 int ret;
1139
Rafael J. Wysocki76c70cb2020-04-18 18:52:30 +02001140 if (dev_pm_skip_resume(dev))
Rafael J. Wysocki6e176bf2020-04-18 18:52:08 +02001141 return 0;
1142
1143 ret = acpi_dev_resume(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001144 return ret ? ret : pm_generic_resume_early(dev);
1145}
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001146
1147/**
1148 * acpi_subsys_freeze - Run the device driver's freeze callback.
1149 * @dev: Device to handle.
1150 */
1151int acpi_subsys_freeze(struct device *dev)
1152{
1153 /*
Rafael J. Wysocki501debd2019-07-01 12:44:25 +02001154 * Resume all runtime-suspended devices before creating a snapshot
1155 * image of system memory, because the restore kernel generally cannot
1156 * be expected to always handle them consistently and they need to be
1157 * put into the runtime-active metastate during system resume anyway,
1158 * so it is better to ensure that the state saved in the image will be
1159 * always consistent with that.
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001160 */
Rafael J. Wysocki501debd2019-07-01 12:44:25 +02001161 pm_runtime_resume(dev);
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001162
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001163 return pm_generic_freeze(dev);
1164}
Heikki Krogerus4cf563c2014-05-15 16:40:23 +03001165EXPORT_SYMBOL_GPL(acpi_subsys_freeze);
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001166
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001167/**
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001168 * acpi_subsys_restore_early - Restore device using ACPI.
1169 * @dev: Device to restore.
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001170 */
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001171int acpi_subsys_restore_early(struct device *dev)
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001172{
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001173 int ret = acpi_dev_resume(dev);
1174 return ret ? ret : pm_generic_restore_early(dev);
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001175}
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001176EXPORT_SYMBOL_GPL(acpi_subsys_restore_early);
Rafael J. Wysockic95b7592019-07-01 12:54:29 +02001177
1178/**
1179 * acpi_subsys_poweroff - Run the device driver's poweroff callback.
1180 * @dev: Device to handle.
1181 *
1182 * Follow PCI and resume devices from runtime suspend before running their
1183 * system poweroff callbacks, unless the driver can cope with runtime-suspended
1184 * devices during system suspend and there are no ACPI-specific reasons for
1185 * resuming them.
1186 */
1187int acpi_subsys_poweroff(struct device *dev)
1188{
1189 if (!dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_SUSPEND) ||
1190 acpi_dev_needs_resume(dev, ACPI_COMPANION(dev)))
1191 pm_runtime_resume(dev);
1192
1193 return pm_generic_poweroff(dev);
1194}
1195EXPORT_SYMBOL_GPL(acpi_subsys_poweroff);
1196
1197/**
1198 * acpi_subsys_poweroff_late - Run the device driver's poweroff callback.
1199 * @dev: Device to handle.
1200 *
1201 * Carry out the generic late poweroff procedure for @dev and use ACPI to put
1202 * it into a low-power state during system transition into a sleep state.
1203 */
1204static int acpi_subsys_poweroff_late(struct device *dev)
1205{
1206 int ret;
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001207
Rafael J. Wysockifa2bfea2020-04-18 18:52:48 +02001208 if (dev_pm_skip_suspend(dev))
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001209 return 0;
1210
Rafael J. Wysockic95b7592019-07-01 12:54:29 +02001211 ret = pm_generic_poweroff_late(dev);
1212 if (ret)
1213 return ret;
1214
1215 return acpi_dev_suspend(dev, device_may_wakeup(dev));
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001216}
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001217
1218/**
Rafael J. Wysockic95b7592019-07-01 12:54:29 +02001219 * acpi_subsys_poweroff_noirq - Run the driver's "noirq" poweroff callback.
1220 * @dev: Device to suspend.
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001221 */
Rafael J. Wysockic95b7592019-07-01 12:54:29 +02001222static int acpi_subsys_poweroff_noirq(struct device *dev)
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001223{
Rafael J. Wysockifa2bfea2020-04-18 18:52:48 +02001224 if (dev_pm_skip_suspend(dev))
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001225 return 0;
1226
Rafael J. Wysockic95b7592019-07-01 12:54:29 +02001227 return pm_generic_poweroff_noirq(dev);
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001228}
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001229#endif /* CONFIG_PM_SLEEP */
1230
1231static struct dev_pm_domain acpi_general_pm_domain = {
1232 .ops = {
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001233 .runtime_suspend = acpi_subsys_runtime_suspend,
1234 .runtime_resume = acpi_subsys_runtime_resume,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001235#ifdef CONFIG_PM_SLEEP
1236 .prepare = acpi_subsys_prepare,
Ulf Hanssone4da8172017-10-03 09:11:06 +02001237 .complete = acpi_subsys_complete,
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001238 .suspend = acpi_subsys_suspend,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001239 .suspend_late = acpi_subsys_suspend_late,
Rafael J. Wysocki05087362017-10-27 10:10:16 +02001240 .suspend_noirq = acpi_subsys_suspend_noirq,
1241 .resume_noirq = acpi_subsys_resume_noirq,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001242 .resume_early = acpi_subsys_resume_early,
Rafael J. Wysocki92858c42014-02-26 01:00:19 +01001243 .freeze = acpi_subsys_freeze,
Rafael J. Wysockic95b7592019-07-01 12:54:29 +02001244 .poweroff = acpi_subsys_poweroff,
1245 .poweroff_late = acpi_subsys_poweroff_late,
1246 .poweroff_noirq = acpi_subsys_poweroff_noirq,
Rafael J. Wysocki3cd79572019-07-01 12:54:10 +02001247 .restore_early = acpi_subsys_restore_early,
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001248#endif
1249 },
1250};
1251
1252/**
Ulf Hansson91d66cd2014-09-19 20:27:44 +02001253 * acpi_dev_pm_detach - Remove ACPI power management from the device.
1254 * @dev: Device to take care of.
1255 * @power_off: Whether or not to try to remove power from the device.
1256 *
1257 * Remove the device from the general ACPI PM domain and remove its wakeup
1258 * notifier. If @power_off is set, additionally remove power from the device if
1259 * possible.
1260 *
1261 * Callers must ensure proper synchronization of this function with power
1262 * management callbacks.
1263 */
1264static void acpi_dev_pm_detach(struct device *dev, bool power_off)
1265{
1266 struct acpi_device *adev = ACPI_COMPANION(dev);
1267
1268 if (adev && dev->pm_domain == &acpi_general_pm_domain) {
Tomeu Vizoso989561d2016-01-07 16:46:13 +01001269 dev_pm_domain_set(dev, NULL);
Ulf Hansson91d66cd2014-09-19 20:27:44 +02001270 acpi_remove_pm_notifier(adev);
1271 if (power_off) {
1272 /*
1273 * If the device's PM QoS resume latency limit or flags
1274 * have been exposed to user space, they have to be
1275 * hidden at this point, so that they don't affect the
1276 * choice of the low-power state to put the device into.
1277 */
1278 dev_pm_qos_hide_latency_limit(dev);
1279 dev_pm_qos_hide_flags(dev);
Rafael J. Wysocki99d88452017-07-21 14:40:49 +02001280 acpi_device_wakeup_disable(adev);
Ulf Hansson91d66cd2014-09-19 20:27:44 +02001281 acpi_dev_pm_low_power(dev, adev, ACPI_STATE_S0);
1282 }
1283 }
1284}
1285
1286/**
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001287 * acpi_dev_pm_attach - Prepare device for ACPI power management.
1288 * @dev: Device to prepare.
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001289 * @power_on: Whether or not to power on the device.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001290 *
1291 * If @dev has a valid ACPI handle that has a valid struct acpi_device object
1292 * attached to it, install a wakeup notification handler for the device and
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001293 * add it to the general ACPI PM domain. If @power_on is set, the device will
1294 * be put into the ACPI D0 state before the function returns.
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001295 *
1296 * This assumes that the @dev's bus type uses generic power management callbacks
1297 * (or doesn't use any power management callbacks at all).
1298 *
1299 * Callers must ensure proper synchronization of this function with power
1300 * management callbacks.
1301 */
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001302int acpi_dev_pm_attach(struct device *dev, bool power_on)
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001303{
Rafael J. Wysockib9ea0ba2019-12-04 02:54:27 +01001304 /*
1305 * Skip devices whose ACPI companions match the device IDs below,
1306 * because they require special power management handling incompatible
1307 * with the generic ACPI PM domain.
1308 */
1309 static const struct acpi_device_id special_pm_ids[] = {
1310 {"PNP0C0B", }, /* Generic ACPI fan */
1311 {"INT3404", }, /* Fan */
Gayatri Kammelab62c7702020-03-27 14:28:19 -07001312 {"INTC1044", }, /* Fan for Tiger Lake generation */
Rafael J. Wysockib9ea0ba2019-12-04 02:54:27 +01001313 {}
1314 };
Rafael J. Wysocki79c03732014-01-27 23:10:24 +01001315 struct acpi_device *adev = ACPI_COMPANION(dev);
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001316
Rafael J. Wysockib9ea0ba2019-12-04 02:54:27 +01001317 if (!adev || !acpi_match_device_ids(adev, special_pm_ids))
Ulf Hansson919b7302018-05-09 12:17:52 +02001318 return 0;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001319
Mika Westerberg712e9602015-07-27 18:03:57 +03001320 /*
1321 * Only attach the power domain to the first device if the
1322 * companion is shared by multiple. This is to prevent doing power
1323 * management twice.
1324 */
1325 if (!acpi_device_is_first_physical_node(adev, dev))
Ulf Hansson919b7302018-05-09 12:17:52 +02001326 return 0;
Mika Westerberg712e9602015-07-27 18:03:57 +03001327
Rafael J. Wysockic0725302014-07-23 01:00:45 +02001328 acpi_add_pm_notifier(adev, dev, acpi_pm_notify_work_func);
Tomeu Vizoso989561d2016-01-07 16:46:13 +01001329 dev_pm_domain_set(dev, &acpi_general_pm_domain);
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001330 if (power_on) {
1331 acpi_dev_pm_full_power(adev);
Rafael J. Wysocki99d88452017-07-21 14:40:49 +02001332 acpi_device_wakeup_disable(adev);
Rafael J. Wysockib88ce2a2012-11-26 10:03:06 +01001333 }
Ulf Hansson86f1e152014-09-19 20:27:35 +02001334
1335 dev->pm_domain->detach = acpi_dev_pm_detach;
Ulf Hansson919b7302018-05-09 12:17:52 +02001336 return 1;
Rafael J. Wysockie5cc8ef2012-11-02 01:41:01 +01001337}
1338EXPORT_SYMBOL_GPL(acpi_dev_pm_attach);
Rafael J. Wysockiec4602a2013-05-16 22:29:28 +02001339#endif /* CONFIG_PM */