9
0
Fork 0
barebox/arch/arm/mach-pxa/Kconfig

59 lines
928 B
Plaintext

if ARCH_PXA
config ARCH_TEXT_BASE
hex
default 0xa0000000 if MACH_MIOA701
default 0xa3f00000 if MACH_PCM027
# ----------------------------------------------------------
config ARCH_PXA2XX
bool
select CPU_XSCALE
choice
prompt "Intel/Marvell PXA Processor"
config ARCH_PXA27X
bool "PXA27x"
select ARCH_PXA2XX
endchoice
# ----------------------------------------------------------
if ARCH_PXA27X
choice
prompt "PXA27x Board Type"
bool
config MACH_MIOA701
bool "Mitac Mio A701"
select BCH_CONST_PARAMS
select PWM
help
Say Y here if you are using a Mitac Mio A701 smartphone
config MACH_PCM027
bool "Phytec phyCORE-PXA270"
help
Say Y here if you are using a Phytec phyCORE PXA270
board
endchoice
if MACH_MIOA701
config BCH_CONST_M
int
default 14 if MACH_MIOA701
config BCH_CONST_T
int
default 4 if MACH_MIOA701
endif
endif
# ----------------------------------------------------------
endif