summaryrefslogtreecommitdiff
path: root/zephyr/app/ec/soc/Kconfig
blob: d7befb39b76675f99ff7b65eb0ed5c778d25b2b9 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
menuconfig AP
	bool "Enable AP SoC support code"
	default y
	help
	  This device has an application processor (AP) on-board and
	  support code should be enabled.

if AP

choice
	prompt "SoC chipset generation"

config AP_X86_INTEL_CML
	bool "AP is CML chipset"
	select AP_X86_INTEL
	help
	  The application processor is Intel Comet Lake (CML) chipset.

config AP_X86_INTEL_TGL
	bool "AP is TGL chipset"
	select AP_X86_INTEL
	help
	  The application processor is Intel Tiger Lake (TGL) chipset.

config AP_X86_INTEL_ADL
	bool "AP is ADL chipset"
	select AP_X86_INTEL
	help
	  The application processor is Intel Alder Lake (ADL) chipset.

config AP_X86_AMD
	bool "AP is an AMD chipset"
	select AP_x86
	help
	  The application processor is a product of AMD.

config AP_ARM_MTK_MT8192
	bool "MediaTek MT8192"
	select AP_AARCH64
	help
	  The application processor is a MediaTek MT8192 processor.

config AP_ARM_QUALCOMM_SC7180
	bool "Qualcomm Snapdragon SC7180"
	select AP_AARCH64
	help
	  The application processor is a Qualcomm Snapdragon SC7180
	  ARMv8 processor.

config AP_ARM_QUALCOMM_SC7280
	bool "Qualcomm Snapdragon SC7280"
	select AP_AARCH64
	help
	  The application processor is a Qualcomm Snapdragon SC7280
	  ARMv8 processor.

endchoice

# Invisible meta-symbols generated by the selected chipset.
config AP_X86_INTEL
	bool
	select AP_X86
	help
	  The application processor (AP) is an Intel SoC.

config AP_X86
	bool
	help
	  The application processor (AP) is X86-like.

config AP_AARCH64
	bool
	select AP_ARM
	help
	  The application processor (AP) is 64-bit ARMv8 architecture.

config AP_ARM
	bool
	help
	  The application processor (AP) is ARM-like.

endif # AP