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