barebox/arch/arm/mach-pxa/Kconfig
Marc Kleine-Budde 05e58adca0 pcm027: add board support
The pcm027 is a PXA270 based Phytec phyCORE board.

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2012-04-10 10:39:57 +02:00

67 lines
1.1 KiB
Text

if ARCH_PXA
config ARCH_TEXT_BASE
hex
default 0xa0000000 if MACH_MIOA701
default 0xa3f00000 if MACH_PCM027
config BOARDINFO
string
default "Scoter Mitac Mio A701" if MACH_MIOA701
default "Phytec phyCORE-PXA270" 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"
select HAS_CFI
select MACH_HAS_LOWLEVEL_INIT
select HAVE_MMU
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