Provide power modes implementation for u5 socs. For now STOP3 mode is not implemented as this mode is not compatible with LPTIM activation and hence cannot be used as a workable suspend to idle state using LPTIM as kernel tick source. Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
10 lines
164 B
CMake
10 lines
164 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_include_directories(${ZEPHYR_BASE}/drivers)
|
|
zephyr_sources(
|
|
soc.c
|
|
)
|
|
|
|
zephyr_sources_ifdef(CONFIG_PM
|
|
power.c
|
|
)
|