-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
power: Add device idle power management support
Add framework for device Idle Power Management(IPM) for suspending devices based on device idle. This will help in saving power even while system(CPU) is active. The framework uses device_set_power_state() API set the device power state accordingly based on the usage count. Signed-off-by: Ramakrishna Pallala <ramakrishna.pallala@intel.com>
- Loading branch information
Ramakrishna Pallala
committed
Mar 13, 2019
1 parent
c3b0da8
commit b4eb42f
Showing
6 changed files
with
423 additions
and
4 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
zephyr_sources_ifdef(CONFIG_SYS_POWER_MANAGEMENT power.c) | ||
zephyr_sources_ifdef(CONFIG_DEVICE_POWER_MANAGEMENT device.c) | ||
zephyr_sources_ifdef(CONFIG_SYS_PM_STATE_LOCK pm_ctrl.c) | ||
zephyr_sources_ifdef(CONFIG_DEVICE_IDLE_PM device_pm.c) | ||
zephyr_sources_if_kconfig(reboot.c) | ||
add_subdirectory(policy) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.