Lines Matching full:device

3  * drivers/acpi/device_pm.c - ACPI device power management routines.
27 * acpi_power_state_string - String representation of ACPI device power state.
28 * @state: ACPI device power state to return the string representation of.
48 static int acpi_dev_pm_explicit_get(struct acpi_device *device, int *state) in acpi_dev_pm_explicit_get() argument
53 status = acpi_evaluate_integer(device->handle, "_PSC", NULL, &psc); in acpi_dev_pm_explicit_get()
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
68 * unknown and the device's power state turns out to be D0).
72 * state shallower than previously set by acpi_device_set_power() for @device
75 int acpi_device_get_power(struct acpi_device *device, int *state) in acpi_device_get_power() argument
80 if (!device || !state) in acpi_device_get_power()
83 if (!device->flags.power_manageable) { in acpi_device_get_power()
85 *state = device->parent ? in acpi_device_get_power()
86 device->parent->power.state : ACPI_STATE_D0; in acpi_device_get_power()
91 * Get the device's power state from power resources settings and _PSC, in acpi_device_get_power()
94 if (device->power.flags.power_resources) { in acpi_device_get_power()
95 error = acpi_power_get_inferred_state(device, &result); in acpi_device_get_power()
99 if (device->power.flags.explicit_get) { in acpi_device_get_power()
102 error = acpi_dev_pm_explicit_get(device, &psc); in acpi_device_get_power()
108 * shallower than the actual power state of the device, because in acpi_device_get_power()
121 * If we were unsure about the device parent's power state up to this in acpi_device_get_power()
122 * point, the fact that the device is in D0 implies that the parent has in acpi_device_get_power()
125 if (!device->power.flags.ignore_parent && device->parent in acpi_device_get_power()
126 && device->parent->power.state == ACPI_STATE_UNKNOWN in acpi_device_get_power()
128 device->parent->power.state = ACPI_STATE_D0; in acpi_device_get_power()
133 dev_dbg(&device->dev, "Device power state is %s\n", in acpi_device_get_power()
153 * acpi_device_set_power - Set power state of an ACPI device.
154 * @device: Device to set the power state of.
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) in acpi_device_set_power() argument
165 if (!device || !device->flags.power_manageable in acpi_device_set_power()
169 acpi_handle_debug(device->handle, "Power state change: %s -> %s\n", in acpi_device_set_power()
170 acpi_power_state_string(device->power.state), in acpi_device_set_power()
176 if (state > ACPI_STATE_D0 && state == device->power.state) { in acpi_device_set_power()
177 dev_dbg(&device->dev, "Device already in %s\n", in acpi_device_set_power()
189 if (!device->power.states[ACPI_STATE_D3_COLD].flags.valid) in acpi_device_set_power()
191 } else if (!device->power.states[state].flags.valid) { in acpi_device_set_power()
192 dev_warn(&device->dev, "Power state %s not supported\n", in acpi_device_set_power()
197 if (!device->power.flags.ignore_parent && in acpi_device_set_power()
198 device->parent && (state < device->parent->power.state)) { in acpi_device_set_power()
199 dev_warn(&device->dev, in acpi_device_set_power()
202 acpi_power_state_string(device->parent->power.state)); in acpi_device_set_power()
218 if (state < device->power.state) { in acpi_device_set_power()
219 dev_warn(&device->dev, "Cannot transition from %s to %s\n", in acpi_device_set_power()
220 acpi_power_state_string(device->power.state), in acpi_device_set_power()
226 * If the device goes from D3hot to D3cold, _PS3 has been in acpi_device_set_power()
229 if (device->power.state < ACPI_STATE_D3_HOT) { in acpi_device_set_power()
230 result = acpi_dev_pm_explicit_set(device, state); in acpi_device_set_power()
235 if (device->power.flags.power_resources) in acpi_device_set_power()
236 result = acpi_power_transition(device, target_state); in acpi_device_set_power()
238 int cur_state = device->power.state; in acpi_device_set_power()
240 if (device->power.flags.power_resources) { in acpi_device_set_power()
241 result = acpi_power_transition(device, ACPI_STATE_D0); in acpi_device_set_power()
250 if (!device->power.flags.explicit_get) in acpi_device_set_power()
254 * The power state of the device was set to D0 last in acpi_device_set_power()
258 * for the device here. However, use extra care here in acpi_device_set_power()
259 * and evaluate _PSC to check the device's current power in acpi_device_set_power()
264 result = acpi_dev_pm_explicit_get(device, &psc); in acpi_device_set_power()
269 result = acpi_dev_pm_explicit_set(device, ACPI_STATE_D0); in acpi_device_set_power()
274 dev_warn(&device->dev, "Failed to change power state to %s\n", in acpi_device_set_power()
277 device->power.state = target_state; in acpi_device_set_power()
278 dev_dbg(&device->dev, "Power state changed to %s\n", in acpi_device_set_power()
288 struct acpi_device *device; in acpi_bus_set_power() local
291 result = acpi_bus_get_device(handle, &device); in acpi_bus_set_power()
295 return acpi_device_set_power(device, state); in acpi_bus_set_power()
299 int acpi_bus_init_power(struct acpi_device *device) in acpi_bus_init_power() argument
304 if (!device) in acpi_bus_init_power()
307 device->power.state = ACPI_STATE_UNKNOWN; in acpi_bus_init_power()
308 if (!acpi_device_is_present(device)) { in acpi_bus_init_power()
309 device->flags.initialized = false; in acpi_bus_init_power()
313 result = acpi_device_get_power(device, &state); in acpi_bus_init_power()
317 if (state < ACPI_STATE_D3_COLD && device->power.flags.power_resources) { in acpi_bus_init_power()
319 result = acpi_power_on_resources(device, state); in acpi_bus_init_power()
328 * another device using the same power resources may in acpi_bus_init_power()
332 result = acpi_dev_pm_explicit_set(device, state); in acpi_bus_init_power()
339 * it D0 in hope that this is what the BIOS put the device into. in acpi_bus_init_power()
345 device->power.state = state; in acpi_bus_init_power()
350 * acpi_device_fix_up_power - Force device with missing _PSC into D0.
351 * @device: Device object whose power state is to be fixed up.
357 int acpi_device_fix_up_power(struct acpi_device *device) in acpi_device_fix_up_power() argument
361 if (!device->power.flags.power_resources in acpi_device_fix_up_power()
362 && !device->power.flags.explicit_get in acpi_device_fix_up_power()
363 && device->power.state == ACPI_STATE_D0) in acpi_device_fix_up_power()
364 ret = acpi_dev_pm_explicit_set(device, ACPI_STATE_D0); in acpi_device_fix_up_power()
370 int acpi_device_update_power(struct acpi_device *device, int *state_p) in acpi_device_update_power() argument
375 if (device->power.state == ACPI_STATE_UNKNOWN) { in acpi_device_update_power()
376 result = acpi_bus_init_power(device); in acpi_device_update_power()
378 *state_p = device->power.state; in acpi_device_update_power()
383 result = acpi_device_get_power(device, &state); in acpi_device_update_power()
389 result = acpi_device_set_power(device, state); in acpi_device_update_power()
393 if (device->power.flags.power_resources) { in acpi_device_update_power()
398 result = acpi_power_transition(device, state); in acpi_device_update_power()
402 device->power.state = state; in acpi_device_update_power()
413 struct acpi_device *device; in acpi_bus_update_power() local
416 result = acpi_bus_get_device(handle, &device); in acpi_bus_update_power()
417 return result ? result : acpi_device_update_power(device, state_p); in acpi_bus_update_power()
423 struct acpi_device *device; in acpi_bus_power_manageable() local
426 result = acpi_bus_get_device(handle, &device); in acpi_bus_power_manageable()
427 return result ? false : device->flags.power_manageable; in acpi_bus_power_manageable()
435 void acpi_pm_wakeup_event(struct device *dev) in acpi_pm_wakeup_event()
472 * acpi_add_pm_notifier - Register PM notify handler for given ACPI device.
473 * @adev: ACPI device to add the notify handler for.
474 * @dev: Device to generate a wakeup event for while handling the notification.
477 * NOTE: @adev need not be a run-wake or wakeup device to be a valid source of
482 acpi_status acpi_add_pm_notifier(struct acpi_device *adev, struct device *dev, in acpi_add_pm_notifier()
514 * acpi_remove_pm_notifier - Unregister PM notifier from given ACPI device.
515 * @adev: ACPI device to remove the notifier from.
546 struct acpi_device *device; in acpi_bus_can_wakeup() local
549 result = acpi_bus_get_device(handle, &device); in acpi_bus_can_wakeup()
550 return result ? false : device->wakeup.flags.valid; in acpi_bus_can_wakeup()
554 bool acpi_pm_device_can_wakeup(struct device *dev) in acpi_pm_device_can_wakeup()
562 * acpi_dev_pm_get_state - Get preferred power state of ACPI device.
563 * @dev: Device whose preferred target power state to return.
564 * @adev: ACPI device node corresponding to @dev.
565 * @target_state: System state to match the resultant device state.
566 * @d_min_p: Location to store the highest power state available to the device.
567 * @d_max_p: Location to store the lowest power state available to the device.
570 * device power states that the device can be in while the system is in the
582 static int acpi_dev_pm_get_state(struct device *dev, struct acpi_device *adev, in acpi_dev_pm_get_state()
594 * If the system state is S0, the lowest power state the device can be in acpi_dev_pm_get_state()
595 * in is D3cold, unless the device has _S0W and is supposed to signal in acpi_dev_pm_get_state()
597 * lowest power state available to the device. in acpi_dev_pm_get_state()
678 * acpi_pm_device_sleep_state - Get preferred power state of ACPI device.
679 * @dev: Device whose preferred target power state to return.
682 * Return value: Preferred power state of the device on success, -ENODEV
688 int acpi_pm_device_sleep_state(struct device *dev, int *d_min_p, int d_max_in) in acpi_pm_device_sleep_state()
734 * @context: Device wakeup context.
738 struct device *dev = context->dev; in acpi_pm_notify_work_func()
758 * If the device wakeup power is already enabled, disable it and enable in __acpi_device_wakeup_enable()
800 * acpi_device_wakeup_enable - Enable wakeup functionality for device.
801 * @adev: ACPI device to enable wakeup functionality for.
805 * for the device in response to external (remote) events and enable wakeup
808 * Callers must ensure that @adev is a valid ACPI device node before executing
817 * acpi_device_wakeup_disable - Disable wakeup functionality for device.
818 * @adev: ACPI device to disable wakeup functionality for.
822 * Callers must ensure that @adev is a valid ACPI device node before executing
844 * acpi_pm_set_device_wakeup - Enable/disable remote wakeup for given device.
845 * @dev: Device to enable/disable to generate wakeup events.
848 int acpi_pm_set_device_wakeup(struct device *dev, bool enable) in acpi_pm_set_device_wakeup()
877 * acpi_dev_pm_low_power - Put ACPI device into a low-power state.
878 * @dev: Device to put into a low-power state.
879 * @adev: ACPI device node corresponding to @dev.
880 * @system_state: System state to choose the device state for.
882 static int acpi_dev_pm_low_power(struct device *dev, struct acpi_device *adev, in acpi_dev_pm_low_power()
895 * acpi_dev_pm_full_power - Put ACPI device into the full-power state.
896 * @adev: ACPI device node to put into the full-power state.
905 * acpi_dev_suspend - Put device into a low-power state using ACPI.
906 * @dev: Device to put into a low-power state.
907 * @wakeup: Whether or not to enable wakeup for the device.
909 * Put the given device into a low-power state using the standard ACPI
911 * device into (this checks if remote wakeup is expected to work too), and set
912 * the power state of the device.
914 int acpi_dev_suspend(struct device *dev, bool wakeup) in acpi_dev_suspend()
940 * acpi_dev_resume - Put device into the full-power state using ACPI.
941 * @dev: Device to put into the full-power state.
943 * Put the given device into the full-power state using the standard ACPI
944 * mechanism. Set the power state of the device to ACPI D0 and disable wakeup.
946 int acpi_dev_resume(struct device *dev) in acpi_dev_resume()
961 * acpi_subsys_runtime_suspend - Suspend device using ACPI.
962 * @dev: Device to suspend.
967 int acpi_subsys_runtime_suspend(struct device *dev) in acpi_subsys_runtime_suspend()
976 * acpi_subsys_runtime_resume - Resume device using ACPI.
977 * @dev: Device to Resume.
979 * Use ACPI to put the given device into the full-power state and carry out the
982 int acpi_subsys_runtime_resume(struct device *dev) in acpi_subsys_runtime_resume()
991 static bool acpi_dev_needs_resume(struct device *dev, struct acpi_device *adev) in acpi_dev_needs_resume()
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) in 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) in acpi_subsys_complete()
1043 * If the device had been runtime-suspended before the system went into in acpi_subsys_complete()
1053 * acpi_subsys_suspend - Run the device driver's suspend callback.
1054 * @dev: Device to handle.
1061 int acpi_subsys_suspend(struct device *dev) in acpi_subsys_suspend()
1072 * acpi_subsys_suspend_late - Suspend device using ACPI.
1073 * @dev: Device to suspend.
1078 int acpi_subsys_suspend_late(struct device *dev) in 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) in acpi_subsys_suspend_noirq()
1107 * to check whether or not the device's wakeup settings are good for in acpi_subsys_suspend_noirq()
1109 * acpi_subsys_complete() to take care of fixing up the device's state in acpi_subsys_suspend_noirq()
1120 * acpi_subsys_resume_noirq - Run the device driver's "noirq" resume callback.
1121 * @dev: Device to handle.
1123 static int acpi_subsys_resume_noirq(struct device *dev) in acpi_subsys_resume_noirq()
1132 * acpi_subsys_resume_early - Resume device using ACPI.
1133 * @dev: Device to Resume.
1135 * Use ACPI to put the given device into the full-power state and carry out the
1137 * working state, but only do that if device either defines early resume
1139 * of the device is postponed to the normal resume phase.
1141 static int acpi_subsys_resume_early(struct device *dev) in acpi_subsys_resume_early()
1159 * acpi_subsys_resume - Resume device using ACPI.
1160 * @dev: Device to Resume.
1162 * Use ACPI to put the given device into the full-power state if it has not been
1166 static int acpi_subsys_resume(struct device *dev) in acpi_subsys_resume()
1180 * acpi_subsys_freeze - Run the device driver's freeze callback.
1181 * @dev: Device to handle.
1183 int acpi_subsys_freeze(struct device *dev) in acpi_subsys_freeze()
1200 * acpi_subsys_restore_early - Restore device using ACPI.
1201 * @dev: Device to restore.
1203 int acpi_subsys_restore_early(struct device *dev) in acpi_subsys_restore_early()
1212 * acpi_subsys_poweroff - Run the device driver's poweroff callback.
1213 * @dev: Device to handle.
1220 int acpi_subsys_poweroff(struct device *dev) in acpi_subsys_poweroff()
1231 * acpi_subsys_poweroff_late - Run the device driver's poweroff callback.
1232 * @dev: Device to handle.
1237 static int acpi_subsys_poweroff_late(struct device *dev) in acpi_subsys_poweroff_late()
1253 * @dev: Device to suspend.
1255 static int acpi_subsys_poweroff_noirq(struct device *dev) in acpi_subsys_poweroff_noirq()
1287 * acpi_dev_pm_detach - Remove ACPI power management from the device.
1288 * @dev: Device to take care of.
1289 * @power_off: Whether or not to try to remove power from the device.
1291 * Remove the device from the general ACPI PM domain and remove its wakeup
1292 * notifier. If @power_off is set, additionally remove power from the device if
1298 static void acpi_dev_pm_detach(struct device *dev, bool power_off) in acpi_dev_pm_detach()
1307 * If the device's PM QoS resume latency limit or flags in acpi_dev_pm_detach()
1310 * choice of the low-power state to put the device into. in acpi_dev_pm_detach()
1321 * acpi_dev_pm_attach - Prepare device for ACPI power management.
1322 * @dev: Device to prepare.
1323 * @power_on: Whether or not to power on the device.
1326 * attached to it, install a wakeup notification handler for the device and
1327 * add it to the general ACPI PM domain. If @power_on is set, the device will
1336 int acpi_dev_pm_attach(struct device *dev, bool power_on) in acpi_dev_pm_attach()
1339 * Skip devices whose ACPI companions match the device IDs below, in acpi_dev_pm_attach()
1353 * Only attach the power domain to the first device if the in acpi_dev_pm_attach()
1374 * @dev: Device to check
1383 * applied to the PCIe slot and plugging in a non-storage device the
1386 bool acpi_storage_d3(struct device *dev) in acpi_storage_d3()