2015-04-21 12:59:36 +00:00
|
|
|
menu "Integrator Options"
|
|
|
|
depends on ARCH_INTEGRATOR
|
|
|
|
|
|
|
|
choice
|
2015-04-21 12:59:37 +00:00
|
|
|
prompt "Integrator platform select"
|
2015-05-12 19:46:23 +00:00
|
|
|
optional
|
2015-04-21 12:59:36 +00:00
|
|
|
|
2015-04-21 12:59:37 +00:00
|
|
|
config ARCH_INTEGRATOR_AP
|
|
|
|
bool "Support Integrator/AP platform"
|
2015-04-21 12:59:36 +00:00
|
|
|
|
2015-04-21 12:59:37 +00:00
|
|
|
config ARCH_INTEGRATOR_CP
|
|
|
|
bool "Support Integrator/CP platform"
|
2015-04-21 12:59:39 +00:00
|
|
|
select ARCH_CINTEGRATOR
|
2015-04-21 12:59:36 +00:00
|
|
|
|
2015-04-21 12:59:37 +00:00
|
|
|
endchoice
|
2015-04-21 12:59:36 +00:00
|
|
|
|
2015-04-21 12:59:39 +00:00
|
|
|
config ARCH_CINTEGRATOR
|
|
|
|
bool
|
|
|
|
|
2015-04-21 12:59:37 +00:00
|
|
|
choice
|
|
|
|
prompt "Integrator core module select"
|
2015-05-12 19:46:23 +00:00
|
|
|
optional
|
2015-04-21 12:59:36 +00:00
|
|
|
|
2015-04-21 12:59:37 +00:00
|
|
|
config CM720T
|
|
|
|
bool "Core Module for ARM720T"
|
|
|
|
select CPU_ARM720T
|
2015-04-21 12:59:36 +00:00
|
|
|
|
2015-04-21 12:59:37 +00:00
|
|
|
config CM920T
|
|
|
|
bool "Core Module for ARM920T"
|
|
|
|
select CPU_ARM920T
|
2015-04-21 12:59:36 +00:00
|
|
|
|
2015-04-21 12:59:37 +00:00
|
|
|
config CM926EJ_S
|
|
|
|
bool "Core Module for ARM926EJ-STM"
|
|
|
|
select CPU_ARM926EJS
|
2015-04-21 12:59:36 +00:00
|
|
|
|
2015-04-21 12:59:37 +00:00
|
|
|
config CM946ES
|
|
|
|
bool "Core Module for ARM946E-STM"
|
2015-04-21 12:59:36 +00:00
|
|
|
select CPU_ARM946ES
|
|
|
|
|
2015-04-21 12:59:37 +00:00
|
|
|
config CM1136
|
|
|
|
bool "Core Module for ARM1136JF-STM"
|
|
|
|
select CPU_ARM1136
|
|
|
|
|
2015-04-21 12:59:36 +00:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config SYS_BOARD
|
|
|
|
default "integrator"
|
|
|
|
|
|
|
|
config SYS_VENDOR
|
|
|
|
default "armltd"
|
|
|
|
|
|
|
|
config SYS_CONFIG_NAME
|
2015-04-21 12:59:37 +00:00
|
|
|
default "integratorap" if ARCH_INTEGRATOR_AP
|
|
|
|
default "integratorcp" if ARCH_INTEGRATOR_CP
|
2015-04-21 12:59:36 +00:00
|
|
|
|
2015-07-27 09:22:48 +00:00
|
|
|
config SYS_MALLOC_F_LEN
|
|
|
|
default 0x2000
|
|
|
|
|
2015-04-21 12:59:36 +00:00
|
|
|
endmenu
|