summaryrefslogtreecommitdiff
path: root/arch/arm/mach-integrator/Kconfig
blob: 440639998927e38592afac88ceec3c9055b9a001 (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
menu "Integrator Options"
	depends on ARCH_INTEGRATOR

choice
	prompt "ARM Ltd. Integrator board select"

config TARGET_INTEGRATORAP_CM720T
	bool "Support integratorap_cm720t"
	select CPU_ARM720T

config TARGET_INTEGRATORAP_CM920T
	bool "Support integratorap_cm920t"
	select CPU_ARM920T

config TARGET_INTEGRATORCP_CM920T
	bool "Support integratorcp_cm920t"
	select CPU_ARM920T

config TARGET_INTEGRATORAP_CM926EJS
	bool "Support integratorap_cm926ejs"
	select CPU_ARM926EJS

config TARGET_INTEGRATORCP_CM926EJS
	bool "Support integratorcp_cm926ejs"
	select CPU_ARM926EJS

config TARGET_INTEGRATORCP_CM1136
	bool "Support integratorcp_cm1136"
	select CPU_ARM1136

config TARGET_INTEGRATORAP_CM946ES
	bool "Support integratorap_cm946es"
	select CPU_ARM946ES

config TARGET_INTEGRATORCP_CM946ES
	bool "Support integratorcp_cm946es"
	select CPU_ARM946ES

endchoice

config SYS_BOARD
	default "integrator"

config SYS_VENDOR
	default "armltd"

config SYS_CONFIG_NAME
	default "integratorap" if TARGET_INTEGRATORAP_CM720T || \
				  TARGET_INTEGRATORAP_CM920T || \
				  TARGET_INTEGRATORAP_CM926EJS || \
				  TARGET_INTEGRATORAP_CM946ES
	default "integratorcp" if TARGET_INTEGRATORCP_CM920T || \
				  TARGET_INTEGRATORCP_CM926EJS || \
				  TARGET_INTEGRATORCP_CM946ES || \
				  TARGET_INTEGRATORCP_CM1136

endmenu