summaryrefslogtreecommitdiff
path: root/zephyr/subsys/ap_pwrseq/CMakeLists.txt
blob: 0a77bc821d4c8e3e7172144e213cdc61b5bba245 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# SPDX-License-Identifier: Apache-2.0

zephyr_library_include_directories(include)
zephyr_library_sources(
	ap_events.c
	)
zephyr_library_sources_ifdef(CONFIG_AP_PWRSEQ
	ap_power_interface.c
	power_host_sleep.c
	power_signals.c
	signal_gpio.c
	signal_vw.c
	signal_adc.c
	)
zephyr_library_sources_ifdef(CONFIG_X86_NON_DSX_PWRSEQ
	x86_non_dsx_common_pwrseq_sm_handler.c
	x86_non_dsx_chipset_power_state.c)
zephyr_library_sources_ifdef(CONFIG_AP_PWRSEQ_S0IX_ERROR_RECOVERY
	x86_non_dsx_common_pwrseq_host_sleep.c)
zephyr_library_sources_ifdef(CONFIG_X86_NON_DSX_PWRSEQ_CONSOLE
	x86_non_dsx_common_pwrseq_console.c)
zephyr_library_sources_ifdef(CONFIG_X86_NON_DSX_PWRSEQ_HOST_CMD
	x86_non_dsx_common_pwrseq_host_command.c)
zephyr_library_sources_ifdef(CONFIG_X86_NON_DSX_PWRSEQ_ADL
	x86_non_dsx_adlp_pwrseq_sm.c)
zephyr_library_sources_ifdef(CONFIG_X86_NON_DSX_PWRSEQ_MTL
	x86_non_dsx_mtl_pwrseq_sm.c)