1 // SPDX-License-Identifier: GPL-2.0-only
3 * drivers/acpi/device_pm.c - ACPI device power management routines.
5 * Copyright (C) 2012, Intel Corp.
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13 #include <linux/acpi.h>
14 #include <linux/export.h>
15 #include <linux/mutex.h>
16 #include <linux/pm_qos.h>
17 #include <linux/pm_domain.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/suspend.h>
23 #define _COMPONENT ACPI_POWER_COMPONENT
24 ACPI_MODULE_NAME("device_pm");
27 * acpi_power_state_string - String representation of ACPI device power state.
28 * @state: ACPI device power state to return the string representation of.
30 const char *acpi_power_state_string(int state)
39 case ACPI_STATE_D3_HOT:
41 case ACPI_STATE_D3_COLD:
48 static int acpi_dev_pm_explicit_get(struct acpi_device *device, int *state)
50 unsigned long long psc;
53 status = acpi_evaluate_integer(device->handle, "_PSC", NULL, &psc);
54 if (ACPI_FAILURE(status))
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.
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).
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).
75 int acpi_device_get_power(struct acpi_device *device, int *state)
77 int result = ACPI_STATE_UNKNOWN;
80 if (!device || !state)
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;
91 * Get the device's power state from power resources settings and _PSC,
94 if (device->power.flags.power_resources) {
95 error = acpi_power_get_inferred_state(device, &result);
99 if (device->power.flags.explicit_get) {
102 error = acpi_dev_pm_explicit_get(device, &psc);
107 * The power resources settings may indicate a power state
108 * shallower than the actual power state of the device, because
109 * the same power resources may be referenced by other devices.
111 * For systems predating ACPI 4.0 we assume that D3hot is the
112 * deepest state that can be supported.
114 if (psc > result && psc < ACPI_STATE_D3_COLD)
116 else if (result == ACPI_STATE_UNKNOWN)
117 result = psc > ACPI_STATE_D2 ? ACPI_STATE_D3_HOT : psc;
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
123 * to be in D0 too, except if ignore_parent is set.
125 if (!device->power.flags.ignore_parent && device->parent
126 && device->parent->power.state == ACPI_STATE_UNKNOWN
127 && result == ACPI_STATE_D0)
128 device->parent->power.state = ACPI_STATE_D0;
133 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is %s\n",
134 device->pnp.bus_id, acpi_power_state_string(*state)));
139 static int acpi_dev_pm_explicit_set(struct acpi_device *adev, int state)
141 if (adev->power.states[state].flags.explicit_set) {
142 char method[5] = { '_', 'P', 'S', '0' + state, '\0' };
145 status = acpi_evaluate_object(adev->handle, method, NULL, NULL);
146 if (ACPI_FAILURE(status))
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.
157 * Callers must ensure that the device is power manageable before using this
160 int acpi_device_set_power(struct acpi_device *device, int state)
162 int target_state = state;
165 if (!device || !device->flags.power_manageable
166 || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
169 /* Make sure this is a valid target state */
171 /* There is a special case for D0 addressed below. */
172 if (state > ACPI_STATE_D0 && state == device->power.state) {
173 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] already in %s\n",
175 acpi_power_state_string(state)));
179 if (state == ACPI_STATE_D3_COLD) {
181 * For transitions to D3cold we need to execute _PS3 and then
182 * possibly drop references to the power resources in use.
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) {
189 dev_warn(&device->dev, "Power state %s not supported\n",
190 acpi_power_state_string(state));
194 if (!device->power.flags.ignore_parent &&
195 device->parent && (state < device->parent->power.state)) {
196 dev_warn(&device->dev,
197 "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));
206 * 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.
210 if (state > ACPI_STATE_D0) {
212 * According to ACPI 6, devices cannot go from lower-power
213 * (deeper) states to higher-power (shallower) states.
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));
223 * If the device goes from D3hot to D3cold, _PS3 has been
224 * evaluated for it already, so skip it in that case.
226 if (device->power.state < ACPI_STATE_D3_HOT) {
227 result = acpi_dev_pm_explicit_set(device, state);
232 if (device->power.flags.power_resources)
233 result = acpi_power_transition(device, target_state);
235 int cur_state = device->power.state;
237 if (device->power.flags.power_resources) {
238 result = acpi_power_transition(device, ACPI_STATE_D0);
243 if (cur_state == ACPI_STATE_D0) {
246 /* Nothing to do here if _PSC is not present. */
247 if (!device->power.flags.explicit_get)
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
261 result = acpi_dev_pm_explicit_get(device, &psc);
262 if (result || psc == ACPI_STATE_D0)
266 result = acpi_dev_pm_explicit_set(device, ACPI_STATE_D0);
271 dev_warn(&device->dev, "Failed to change power state to %s\n",
272 acpi_power_state_string(state));
274 device->power.state = target_state;
275 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
276 "Device [%s] transitioned to %s\n",
278 acpi_power_state_string(state)));
283 EXPORT_SYMBOL(acpi_device_set_power);
285 int acpi_bus_set_power(acpi_handle handle, int state)
287 struct acpi_device *device;
290 result = acpi_bus_get_device(handle, &device);
294 return acpi_device_set_power(device, state);
296 EXPORT_SYMBOL(acpi_bus_set_power);
298 int acpi_bus_init_power(struct acpi_device *device)
306 device->power.state = ACPI_STATE_UNKNOWN;
307 if (!acpi_device_is_present(device)) {
308 device->flags.initialized = false;
312 result = acpi_device_get_power(device, &state);
316 if (state < ACPI_STATE_D3_COLD && device->power.flags.power_resources) {
317 /* Reference count the power resources. */
318 result = acpi_power_on_resources(device, state);
322 if (state == ACPI_STATE_D0) {
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
331 result = acpi_dev_pm_explicit_set(device, state);
335 } else if (state == ACPI_STATE_UNKNOWN) {
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.]
342 state = ACPI_STATE_D0;
344 device->power.state = state;
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.
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.
356 int acpi_device_fix_up_power(struct acpi_device *device)
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);
367 EXPORT_SYMBOL_GPL(acpi_device_fix_up_power);
369 int acpi_device_update_power(struct acpi_device *device, int *state_p)
374 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;
382 result = acpi_device_get_power(device, &state);
386 if (state == ACPI_STATE_UNKNOWN) {
387 state = ACPI_STATE_D0;
388 result = acpi_device_set_power(device, state);
392 if (device->power.flags.power_resources) {
394 * We don't need to really switch the state, bu we need
395 * to update the power resources' reference counters.
397 result = acpi_power_transition(device, state);
401 device->power.state = state;
408 EXPORT_SYMBOL_GPL(acpi_device_update_power);
410 int acpi_bus_update_power(acpi_handle handle, int *state_p)
412 struct acpi_device *device;
415 result = acpi_bus_get_device(handle, &device);
416 return result ? result : acpi_device_update_power(device, state_p);
418 EXPORT_SYMBOL_GPL(acpi_bus_update_power);
420 bool acpi_bus_power_manageable(acpi_handle handle)
422 struct acpi_device *device;
425 result = acpi_bus_get_device(handle, &device);
426 return result ? false : device->flags.power_manageable;
428 EXPORT_SYMBOL(acpi_bus_power_manageable);
431 static DEFINE_MUTEX(acpi_pm_notifier_lock);
432 static DEFINE_MUTEX(acpi_pm_notifier_install_lock);
434 void acpi_pm_wakeup_event(struct device *dev)
436 pm_wakeup_dev_event(dev, 0, acpi_s2idle_wakeup());
438 EXPORT_SYMBOL_GPL(acpi_pm_wakeup_event);
440 static void acpi_pm_notify_handler(acpi_handle handle, u32 val, void *not_used)
442 struct acpi_device *adev;
444 if (val != ACPI_NOTIFY_DEVICE_WAKE)
447 acpi_handle_debug(handle, "Wake notify\n");
449 adev = acpi_bus_get_acpi_device(handle);
453 mutex_lock(&acpi_pm_notifier_lock);
455 if (adev->wakeup.flags.notifier_present) {
456 pm_wakeup_ws_event(adev->wakeup.ws, 0, acpi_s2idle_wakeup());
457 if (adev->wakeup.context.func) {
458 acpi_handle_debug(handle, "Running %pS for %s\n",
459 adev->wakeup.context.func,
460 dev_name(adev->wakeup.context.dev));
461 adev->wakeup.context.func(&adev->wakeup.context);
465 mutex_unlock(&acpi_pm_notifier_lock);
467 acpi_bus_put_acpi_device(adev);
471 * 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.
474 * @func: Work function to execute when handling the notification.
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.
481 acpi_status acpi_add_pm_notifier(struct acpi_device *adev, struct device *dev,
482 void (*func)(struct acpi_device_wakeup_context *context))
484 acpi_status status = AE_ALREADY_EXISTS;
487 return AE_BAD_PARAMETER;
489 mutex_lock(&acpi_pm_notifier_install_lock);
491 if (adev->wakeup.flags.notifier_present)
494 status = acpi_install_notify_handler(adev->handle, ACPI_SYSTEM_NOTIFY,
495 acpi_pm_notify_handler, NULL);
496 if (ACPI_FAILURE(status))
499 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;
503 adev->wakeup.flags.notifier_present = true;
504 mutex_unlock(&acpi_pm_notifier_lock);
507 mutex_unlock(&acpi_pm_notifier_install_lock);
512 * acpi_remove_pm_notifier - Unregister PM notifier from given ACPI device.
513 * @adev: ACPI device to remove the notifier from.
515 acpi_status acpi_remove_pm_notifier(struct acpi_device *adev)
517 acpi_status status = AE_BAD_PARAMETER;
519 mutex_lock(&acpi_pm_notifier_install_lock);
521 if (!adev->wakeup.flags.notifier_present)
524 status = acpi_remove_notify_handler(adev->handle,
526 acpi_pm_notify_handler);
527 if (ACPI_FAILURE(status))
530 mutex_lock(&acpi_pm_notifier_lock);
531 adev->wakeup.context.func = NULL;
532 adev->wakeup.context.dev = NULL;
533 wakeup_source_unregister(adev->wakeup.ws);
534 adev->wakeup.flags.notifier_present = false;
535 mutex_unlock(&acpi_pm_notifier_lock);
538 mutex_unlock(&acpi_pm_notifier_install_lock);
542 bool acpi_bus_can_wakeup(acpi_handle handle)
544 struct acpi_device *device;
547 result = acpi_bus_get_device(handle, &device);
548 return result ? false : device->wakeup.flags.valid;
550 EXPORT_SYMBOL(acpi_bus_can_wakeup);
552 bool acpi_pm_device_can_wakeup(struct device *dev)
554 struct acpi_device *adev = ACPI_COMPANION(dev);
556 return adev ? acpi_device_can_wakeup(adev) : false;
560 * acpi_dev_pm_get_state - Get preferred power state of ACPI device.
561 * @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.
564 * @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.
567 * 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,
573 * Callers must ensure that @dev and @adev are valid pointers and that @adev
574 * actually corresponds to @dev before using this function.
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.
580 static int acpi_dev_pm_get_state(struct device *dev, struct acpi_device *adev,
581 u32 target_state, int *d_min_p, int *d_max_p)
583 char method[] = { '_', 'S', '0' + target_state, 'D', '\0' };
584 acpi_handle handle = adev->handle;
585 unsigned long long ret;
588 bool has_sxd = false;
592 * 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.
597 d_min = ACPI_STATE_D0;
598 d_max = ACPI_STATE_D3_COLD;
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).
605 if (target_state > ACPI_STATE_S0) {
607 * We rely on acpi_evaluate_integer() not clobbering the integer
608 * provided if AE_NOT_FOUND is returned.
611 status = acpi_evaluate_integer(handle, method, NULL, &ret);
612 if ((ACPI_FAILURE(status) && status != AE_NOT_FOUND)
613 || ret > ACPI_STATE_D3_COLD)
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.
621 if (!adev->power.states[ret].flags.valid) {
622 if (ret == ACPI_STATE_D3_HOT)
623 ret = ACPI_STATE_D3_COLD;
632 wakeup = device_may_wakeup(dev) && adev->wakeup.flags.valid
633 && adev->wakeup.sleep_state >= target_state;
635 wakeup = adev->wakeup.flags.valid;
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.
647 status = acpi_evaluate_integer(handle, method, NULL, &ret);
648 if (status == AE_NOT_FOUND) {
649 /* 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.
653 if (has_sxd && target_state > ACPI_STATE_S0)
655 } 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;
660 d_max = ret > d_min ? ret : d_min;
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
681 * if there's no 'struct acpi_device' for @dev, -EINVAL if @d_max_in is
682 * incorrect, or -ENODATA on ACPI method failure.
684 * The caller must ensure that @dev is valid before using this function.
686 int acpi_pm_device_sleep_state(struct device *dev, int *d_min_p, int d_max_in)
688 struct acpi_device *adev;
689 int ret, d_min, d_max;
691 if (d_max_in < ACPI_STATE_D0 || d_max_in > ACPI_STATE_D3_COLD)
694 if (d_max_in > ACPI_STATE_D2) {
695 enum pm_qos_flags_status stat;
697 stat = dev_pm_qos_flags(dev, PM_QOS_FLAG_NO_POWER_OFF);
698 if (stat == PM_QOS_FLAGS_ALL)
699 d_max_in = ACPI_STATE_D2;
702 adev = ACPI_COMPANION(dev);
704 dev_dbg(dev, "ACPI companion missing in %s!\n", __func__);
708 ret = acpi_dev_pm_get_state(dev, adev, acpi_target_system_state(),
713 if (d_max_in < d_min)
716 if (d_max > d_max_in) {
717 for (d_max = d_max_in; d_max > d_min; d_max--) {
718 if (adev->power.states[d_max].flags.valid)
728 EXPORT_SYMBOL(acpi_pm_device_sleep_state);
731 * acpi_pm_notify_work_func - ACPI devices wakeup notification work function.
732 * @context: Device wakeup context.
734 static void acpi_pm_notify_work_func(struct acpi_device_wakeup_context *context)
736 struct device *dev = context->dev;
739 pm_wakeup_event(dev, 0);
740 pm_request_resume(dev);
744 static DEFINE_MUTEX(acpi_wakeup_lock);
746 static int __acpi_device_wakeup_enable(struct acpi_device *adev,
747 u32 target_state, int max_count)
749 struct acpi_device_wakeup *wakeup = &adev->wakeup;
753 mutex_lock(&acpi_wakeup_lock);
755 if (wakeup->enable_count >= max_count)
758 if (wakeup->enable_count > 0)
761 error = acpi_enable_wakeup_device_power(adev, target_state);
765 status = acpi_enable_gpe(wakeup->gpe_device, wakeup->gpe_number);
766 if (ACPI_FAILURE(status)) {
767 acpi_disable_wakeup_device_power(adev);
772 acpi_handle_debug(adev->handle, "GPE%2X enabled for wakeup\n",
773 (unsigned int)wakeup->gpe_number);
776 wakeup->enable_count++;
779 mutex_unlock(&acpi_wakeup_lock);
784 * acpi_device_wakeup_enable - Enable wakeup functionality for device.
785 * @adev: ACPI device to enable wakeup functionality for.
786 * @target_state: State the system is transitioning into.
788 * 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
792 * Callers must ensure that @adev is a valid ACPI device node before executing
795 static int acpi_device_wakeup_enable(struct acpi_device *adev, u32 target_state)
797 return __acpi_device_wakeup_enable(adev, target_state, 1);
801 * acpi_device_wakeup_disable - Disable wakeup functionality for device.
802 * @adev: ACPI device to disable wakeup functionality for.
804 * Disable the GPE associated with @adev and disable wakeup power for it.
806 * Callers must ensure that @adev is a valid ACPI device node before executing
809 static void acpi_device_wakeup_disable(struct acpi_device *adev)
811 struct acpi_device_wakeup *wakeup = &adev->wakeup;
813 mutex_lock(&acpi_wakeup_lock);
815 if (!wakeup->enable_count)
818 acpi_disable_gpe(wakeup->gpe_device, wakeup->gpe_number);
819 acpi_disable_wakeup_device_power(adev);
821 wakeup->enable_count--;
824 mutex_unlock(&acpi_wakeup_lock);
827 static int __acpi_pm_set_device_wakeup(struct device *dev, bool enable,
830 struct acpi_device *adev;
833 adev = ACPI_COMPANION(dev);
835 dev_dbg(dev, "ACPI companion missing in %s!\n", __func__);
839 if (!acpi_device_can_wakeup(adev))
843 acpi_device_wakeup_disable(adev);
844 dev_dbg(dev, "Wakeup disabled by ACPI\n");
848 error = __acpi_device_wakeup_enable(adev, acpi_target_system_state(),
851 dev_dbg(dev, "Wakeup enabled by ACPI\n");
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.
861 int acpi_pm_set_device_wakeup(struct device *dev, bool enable)
863 return __acpi_pm_set_device_wakeup(dev, enable, 1);
865 EXPORT_SYMBOL_GPL(acpi_pm_set_device_wakeup);
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.
872 int acpi_pm_set_bridge_wakeup(struct device *dev, bool enable)
874 return __acpi_pm_set_device_wakeup(dev, enable, INT_MAX);
876 EXPORT_SYMBOL_GPL(acpi_pm_set_bridge_wakeup);
879 * 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.
884 static int acpi_dev_pm_low_power(struct device *dev, struct acpi_device *adev,
889 if (!acpi_device_power_manageable(adev))
892 ret = acpi_dev_pm_get_state(dev, adev, system_state, NULL, &state);
893 return ret ? ret : acpi_device_set_power(adev, state);
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.
900 static int acpi_dev_pm_full_power(struct acpi_device *adev)
902 return acpi_device_power_manageable(adev) ?
903 acpi_device_set_power(adev, ACPI_STATE_D0) : 0;
907 * acpi_dev_suspend - Put device into a low-power state using ACPI.
908 * @dev: Device to put into a low-power state.
909 * @wakeup: Whether or not to enable wakeup for the device.
911 * Put the given device into a low-power state using the standard ACPI
912 * 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.
916 int acpi_dev_suspend(struct device *dev, bool wakeup)
918 struct acpi_device *adev = ACPI_COMPANION(dev);
919 u32 target_state = acpi_target_system_state();
925 if (wakeup && acpi_device_can_wakeup(adev)) {
926 error = acpi_device_wakeup_enable(adev, target_state);
933 error = acpi_dev_pm_low_power(dev, adev, target_state);
935 acpi_device_wakeup_disable(adev);
939 EXPORT_SYMBOL_GPL(acpi_dev_suspend);
942 * acpi_dev_resume - Put device into the full-power state using ACPI.
943 * @dev: Device to put into the full-power state.
945 * Put the given device into the full-power state using the standard ACPI
946 * mechanism. Set the power state of the device to ACPI D0 and disable wakeup.
948 int acpi_dev_resume(struct device *dev)
950 struct acpi_device *adev = ACPI_COMPANION(dev);
956 error = acpi_dev_pm_full_power(adev);
957 acpi_device_wakeup_disable(adev);
960 EXPORT_SYMBOL_GPL(acpi_dev_resume);
963 * acpi_subsys_runtime_suspend - Suspend device using ACPI.
964 * @dev: Device to suspend.
966 * Carry out the generic runtime suspend procedure for @dev and use ACPI to put
967 * it into a runtime low-power state.
969 int acpi_subsys_runtime_suspend(struct device *dev)
971 int ret = pm_generic_runtime_suspend(dev);
972 return ret ? ret : acpi_dev_suspend(dev, true);
974 EXPORT_SYMBOL_GPL(acpi_subsys_runtime_suspend);
977 * acpi_subsys_runtime_resume - Resume device using ACPI.
978 * @dev: Device to Resume.
980 * Use ACPI to put the given device into the full-power state and carry out the
981 * generic runtime resume procedure for it.
983 int acpi_subsys_runtime_resume(struct device *dev)
985 int ret = acpi_dev_resume(dev);
986 return ret ? ret : pm_generic_runtime_resume(dev);
988 EXPORT_SYMBOL_GPL(acpi_subsys_runtime_resume);
990 #ifdef CONFIG_PM_SLEEP
991 static bool acpi_dev_needs_resume(struct device *dev, struct acpi_device *adev)
993 u32 sys_target = acpi_target_system_state();
996 if (!pm_runtime_suspended(dev) || !adev || (adev->wakeup.flags.valid &&
997 device_may_wakeup(dev) != !!adev->wakeup.prepare_count))
1000 if (sys_target == ACPI_STATE_S0)
1003 if (adev->power.flags.dsw_present)
1006 ret = acpi_dev_pm_get_state(dev, adev, sys_target, NULL, &state);
1010 return state != adev->power.state;
1014 * acpi_subsys_prepare - Prepare device for system transition to a sleep state.
1015 * @dev: Device to prepare.
1017 int acpi_subsys_prepare(struct device *dev)
1019 struct acpi_device *adev = ACPI_COMPANION(dev);
1021 if (dev->driver && dev->driver->pm && dev->driver->pm->prepare) {
1022 int ret = dev->driver->pm->prepare(dev);
1027 if (!ret && dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_PREPARE))
1031 return !acpi_dev_needs_resume(dev, adev);
1033 EXPORT_SYMBOL_GPL(acpi_subsys_prepare);
1036 * acpi_subsys_complete - Finalize device's resume during system resume.
1037 * @dev: Device to handle.
1039 void acpi_subsys_complete(struct device *dev)
1041 pm_generic_complete(dev);
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.
1047 if (pm_runtime_suspended(dev) && pm_resume_via_firmware())
1048 pm_request_resume(dev);
1050 EXPORT_SYMBOL_GPL(acpi_subsys_complete);
1053 * acpi_subsys_suspend - Run the device driver's suspend callback.
1054 * @dev: Device to handle.
1056 * 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
1061 int acpi_subsys_suspend(struct device *dev)
1063 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);
1067 return pm_generic_suspend(dev);
1069 EXPORT_SYMBOL_GPL(acpi_subsys_suspend);
1072 * acpi_subsys_suspend_late - Suspend device using ACPI.
1073 * @dev: Device to suspend.
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.
1078 int acpi_subsys_suspend_late(struct device *dev)
1082 if (dev_pm_smart_suspend_and_suspended(dev))
1085 ret = pm_generic_suspend_late(dev);
1086 return ret ? ret : acpi_dev_suspend(dev, device_may_wakeup(dev));
1088 EXPORT_SYMBOL_GPL(acpi_subsys_suspend_late);
1091 * acpi_subsys_suspend_noirq - Run the device driver's "noirq" suspend callback.
1092 * @dev: Device to suspend.
1094 int acpi_subsys_suspend_noirq(struct device *dev)
1098 if (dev_pm_smart_suspend_and_suspended(dev)) {
1099 dev->power.may_skip_resume = true;
1103 ret = pm_generic_suspend_noirq(dev);
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.
1114 dev->power.may_skip_resume = device_may_wakeup(dev) ||
1115 !device_can_wakeup(dev);
1119 EXPORT_SYMBOL_GPL(acpi_subsys_suspend_noirq);
1122 * acpi_subsys_resume_noirq - Run the device driver's "noirq" resume callback.
1123 * @dev: Device to handle.
1125 static int acpi_subsys_resume_noirq(struct device *dev)
1127 if (dev_pm_may_skip_resume(dev))
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.
1135 if (dev_pm_smart_suspend_and_suspended(dev))
1136 pm_runtime_set_active(dev);
1138 return pm_generic_resume_noirq(dev);
1142 * acpi_subsys_resume_early - Resume device using ACPI.
1143 * @dev: Device to Resume.
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
1149 static int acpi_subsys_resume_early(struct device *dev)
1151 int ret = acpi_dev_resume(dev);
1152 return ret ? ret : pm_generic_resume_early(dev);
1156 * acpi_subsys_freeze - Run the device driver's freeze callback.
1157 * @dev: Device to handle.
1159 int acpi_subsys_freeze(struct device *dev)
1162 * 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.
1169 pm_runtime_resume(dev);
1171 return pm_generic_freeze(dev);
1173 EXPORT_SYMBOL_GPL(acpi_subsys_freeze);
1176 * acpi_subsys_restore_early - Restore device using ACPI.
1177 * @dev: Device to restore.
1179 int acpi_subsys_restore_early(struct device *dev)
1181 int ret = acpi_dev_resume(dev);
1182 return ret ? ret : pm_generic_restore_early(dev);
1184 EXPORT_SYMBOL_GPL(acpi_subsys_restore_early);
1187 * acpi_subsys_poweroff - Run the device driver's poweroff callback.
1188 * @dev: Device to handle.
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
1195 int acpi_subsys_poweroff(struct device *dev)
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);
1201 return pm_generic_poweroff(dev);
1203 EXPORT_SYMBOL_GPL(acpi_subsys_poweroff);
1206 * acpi_subsys_poweroff_late - Run the device driver's poweroff callback.
1207 * @dev: Device to handle.
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.
1212 static int acpi_subsys_poweroff_late(struct device *dev)
1216 if (dev_pm_smart_suspend_and_suspended(dev))
1219 ret = pm_generic_poweroff_late(dev);
1223 return acpi_dev_suspend(dev, device_may_wakeup(dev));
1227 * acpi_subsys_poweroff_noirq - Run the driver's "noirq" poweroff callback.
1228 * @dev: Device to suspend.
1230 static int acpi_subsys_poweroff_noirq(struct device *dev)
1232 if (dev_pm_smart_suspend_and_suspended(dev))
1235 return pm_generic_poweroff_noirq(dev);
1237 #endif /* CONFIG_PM_SLEEP */
1239 static struct dev_pm_domain acpi_general_pm_domain = {
1241 .runtime_suspend = acpi_subsys_runtime_suspend,
1242 .runtime_resume = acpi_subsys_runtime_resume,
1243 #ifdef CONFIG_PM_SLEEP
1244 .prepare = acpi_subsys_prepare,
1245 .complete = acpi_subsys_complete,
1246 .suspend = acpi_subsys_suspend,
1247 .suspend_late = acpi_subsys_suspend_late,
1248 .suspend_noirq = acpi_subsys_suspend_noirq,
1249 .resume_noirq = acpi_subsys_resume_noirq,
1250 .resume_early = acpi_subsys_resume_early,
1251 .freeze = acpi_subsys_freeze,
1252 .poweroff = acpi_subsys_poweroff,
1253 .poweroff_late = acpi_subsys_poweroff_late,
1254 .poweroff_noirq = acpi_subsys_poweroff_noirq,
1255 .restore_early = acpi_subsys_restore_early,
1261 * 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.
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
1269 * Callers must ensure proper synchronization of this function with power
1270 * management callbacks.
1272 static void acpi_dev_pm_detach(struct device *dev, bool power_off)
1274 struct acpi_device *adev = ACPI_COMPANION(dev);
1276 if (adev && dev->pm_domain == &acpi_general_pm_domain) {
1277 dev_pm_domain_set(dev, NULL);
1278 acpi_remove_pm_notifier(adev);
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.
1286 dev_pm_qos_hide_latency_limit(dev);
1287 dev_pm_qos_hide_flags(dev);
1288 acpi_device_wakeup_disable(adev);
1289 acpi_dev_pm_low_power(dev, adev, ACPI_STATE_S0);
1295 * acpi_dev_pm_attach - Prepare device for ACPI power management.
1296 * @dev: Device to prepare.
1297 * @power_on: Whether or not to power on the device.
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
1301 * 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.
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).
1307 * Callers must ensure proper synchronization of this function with power
1308 * management callbacks.
1310 int acpi_dev_pm_attach(struct device *dev, bool power_on)
1312 struct acpi_device *adev = ACPI_COMPANION(dev);
1318 * Only attach the power domain to the first device if the
1319 * companion is shared by multiple. This is to prevent doing power
1322 if (!acpi_device_is_first_physical_node(adev, dev))
1325 acpi_add_pm_notifier(adev, dev, acpi_pm_notify_work_func);
1326 dev_pm_domain_set(dev, &acpi_general_pm_domain);
1328 acpi_dev_pm_full_power(adev);
1329 acpi_device_wakeup_disable(adev);
1332 dev->pm_domain->detach = acpi_dev_pm_detach;
1335 EXPORT_SYMBOL_GPL(acpi_dev_pm_attach);
1336 #endif /* CONFIG_PM */