1menu "Integrator Options"
2	depends on ARCH_INTEGRATOR
3
4choice
5	prompt "Integrator platform select"
6	optional
7
8config ARCH_INTEGRATOR_AP
9	bool "Support Integrator/AP platform"
10
11config ARCH_INTEGRATOR_CP
12	bool "Support Integrator/CP platform"
13	select ARCH_CINTEGRATOR
14	imply ENV_IS_IN_FLASH
15
16endchoice
17
18config ARCH_CINTEGRATOR
19	bool
20	imply ENV_IS_IN_FLASH
21
22choice
23	prompt "Integrator core module select"
24	optional
25
26config CM720T
27	bool "Core Module for ARM720T"
28	select CPU_ARM720T
29
30config CM920T
31	bool "Core Module for ARM920T"
32	select CPU_ARM920T
33
34config CM926EJ_S
35	bool "Core Module for ARM926EJ-STM"
36	select CPU_ARM926EJS
37
38config CM946ES
39	bool "Core Module for ARM946E-STM"
40	select CPU_ARM946ES
41
42config CM1136
43	bool "Core Module for ARM1136JF-STM"
44	select CPU_ARM1136
45
46endchoice
47
48config SYS_BOARD
49	default "integrator"
50
51config SYS_VENDOR
52	default "armltd"
53
54config SYS_CONFIG_NAME
55	default "integratorap" if ARCH_INTEGRATOR_AP
56	default "integratorcp" if ARCH_INTEGRATOR_CP
57
58config SYS_MALLOC_F_LEN
59	default 0x2000
60
61endmenu
62