summaryrefslogtreecommitdiff
path: root/zephyr/subsys/ap_pwrseq/CMakeLists.txt
blob: 30edfae4ddf623d093bf716e3eb858d991a6482d (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
# 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)
zephyr_library_sources_ifdef(CONFIG_X86_NON_DSX_PWRSEQ
	x86_non_dsx_chipset_power_state.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)