barebox/arch/arm/mach-versatile/Kconfig
Alexey Zaytsev adcebd48f6 Add basic support from ARM Versatile/PB
tested with qemu only

qemu-system-arm -M versatilepb -monitor null -kernel barebox -net nic -net user -tftp "<uImage-path>/" -serial stdio

add -nographic if you do not want the lcd via sdl

Signed-off-by: Alexey Zaytsev <alexey.zaytsev@gmail.com>

update:
 - use default env
 - move arm_timer.h as in the kernel
 - add nor flash support
 - udpate defconfig
 - fix copyright copy from linux
 - fix ARCH_TEXT_BASE

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2010-12-12 09:26:50 +01:00

17 lines
214 B
Text

if ARCH_VERSATILE
choice
prompt "ARM Board type"
config MACH_VERSATILEPB
bool "ARM Versatile/PB (ARM926EJ-S)"
select ARM_AMBA
select CLKDEV_LOOKUP
endchoice
source arch/arm/boards/versatile/Kconfig
endif