mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-26 20:18:07 +00:00
Add support for OS managed Power Management framework for Zephyr under 'subsys/power'. This framework takes care of implementing the _sys_soc_suspend/_sys_soc_resume API's, a PM policy based on SoC Low Power residencies and also provides necessary API's to do devices suspend and resume. Also add necessary changes to support the existing Application managed Power Management framework. Signed-off-by: Ramakrishna Pallala <ramakrishna.pallala@intel.com>
39 lines
636 B
Plaintext
39 lines
636 B
Plaintext
# Kconfig - Subsystem configuration options
|
|
#
|
|
# Copyright (c) 2016-2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
source "subsys/bluetooth/Kconfig"
|
|
|
|
source "subsys/console/Kconfig"
|
|
|
|
source "subsys/debug/Kconfig"
|
|
|
|
source "subsys/disk/Kconfig"
|
|
|
|
source "subsys/fs/Kconfig"
|
|
|
|
source "subsys/logging/Kconfig"
|
|
|
|
source "subsys/mgmt/Kconfig"
|
|
|
|
source "subsys/net/Kconfig"
|
|
|
|
source "subsys/shell/Kconfig"
|
|
|
|
source "subsys/usb/Kconfig"
|
|
|
|
source "subsys/dfu/Kconfig"
|
|
|
|
source "subsys/random/Kconfig"
|
|
|
|
source "subsys/storage/Kconfig"
|
|
|
|
source "subsys/settings/Kconfig"
|
|
|
|
source "subsys/app_memory/Kconfig"
|
|
|
|
source "subsys/power/Kconfig"
|