Home | History | Annotate | Download | only in mach-integrator
      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 
     15 endchoice
     16 
     17 config ARCH_CINTEGRATOR
     18 	bool
     19 
     20 choice
     21 	prompt "Integrator core module select"
     22 	optional
     23 
     24 config CM720T
     25 	bool "Core Module for ARM720T"
     26 	select CPU_ARM720T
     27 
     28 config CM920T
     29 	bool "Core Module for ARM920T"
     30 	select CPU_ARM920T
     31 
     32 config CM926EJ_S
     33 	bool "Core Module for ARM926EJ-STM"
     34 	select CPU_ARM926EJS
     35 
     36 config CM946ES
     37 	bool "Core Module for ARM946E-STM"
     38 	select CPU_ARM946ES
     39 
     40 config CM1136
     41 	bool "Core Module for ARM1136JF-STM"
     42 	select CPU_ARM1136
     43 
     44 endchoice
     45 
     46 config SYS_BOARD
     47 	default "integrator"
     48 
     49 config SYS_VENDOR
     50 	default "armltd"
     51 
     52 config SYS_CONFIG_NAME
     53 	default "integratorap" if ARCH_INTEGRATOR_AP
     54 	default "integratorcp" if ARCH_INTEGRATOR_CP
     55 
     56 config SYS_MALLOC_F_LEN
     57 	default 0x2000
     58 
     59 endmenu
     60