summaryrefslogtreecommitdiffstats
path: root/arch/arm/Kconfig
diff options
context:
space:
mode:
authorAlexey Zaytsev <alexey.zaytsev@gmail.com>2010-12-11 08:18:49 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2010-12-12 09:26:50 +0100
commitadcebd48f6a4387354a099a3c20daac560e635dd (patch)
treed18d53f0519b86ba8e040bf93b286d4c112cc596 /arch/arm/Kconfig
parentcebd35e4e89f35bd79409d68fdc92c53d6ea23e1 (diff)
downloadbarebox-adcebd48f6a4387354a099a3c20daac560e635dd.tar.gz
barebox-adcebd48f6a4387354a099a3c20daac560e635dd.tar.xz
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>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r--arch/arm/Kconfig5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 8cb86cb449..f1536a5b15 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -61,6 +61,10 @@ config ARCH_S3C24xx
select CPU_ARM920T
select GENERIC_GPIO
+config ARCH_VERSATILE
+ bool "ARM Versatile boards (ARM926EJ-S)"
+ select CPU_ARM926T
+
endchoice
source arch/arm/cpu/Kconfig
@@ -72,6 +76,7 @@ source arch/arm/mach-netx/Kconfig
source arch/arm/mach-nomadik/Kconfig
source arch/arm/mach-omap/Kconfig
source arch/arm/mach-s3c24xx/Kconfig
+source arch/arm/mach-versatile/Kconfig
config AEABI
bool "Use the ARM EABI to compile barebox"