summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mvebu/Kconfig
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2013-05-09 11:52:47 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-05-13 10:17:10 +0200
commitb3522a5b80a30c1b91c68bca4321af75c5f68757 (patch)
tree664a7583d9b5068c493b522f10be6c9a5d077e0a /arch/arm/mach-mvebu/Kconfig
parent0535713bbfa059c1bc20da24d33bb183c4f555dc (diff)
downloadbarebox-b3522a5b80a30c1b91c68bca4321af75c5f68757.tar.gz
barebox-b3522a5b80a30c1b91c68bca4321af75c5f68757.tar.xz
arm: initial support for Marvell Armada 370/XP SoCs
This commit adds minimal support for the Armada 370 and Armada XP SoCs from Marvell. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Gregory CLEMENT <gregory.clement@free-electrons.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mvebu/Kconfig')
-rw-r--r--arch/arm/mach-mvebu/Kconfig40
1 files changed, 40 insertions, 0 deletions
diff --git a/arch/arm/mach-mvebu/Kconfig b/arch/arm/mach-mvebu/Kconfig
new file mode 100644
index 0000000000..c7afcaed46
--- /dev/null
+++ b/arch/arm/mach-mvebu/Kconfig
@@ -0,0 +1,40 @@
+if ARCH_MVEBU
+
+config ARCH_TEXT_BASE
+ hex
+
+#config BOARDINFO
+# default
+
+choice
+ prompt "Marvell EBU Processor"
+
+config ARCH_ARMADA_370
+ bool "Armada 370"
+ select CPU_V7
+
+config ARCH_ARMADA_XP
+ bool "Armada XP"
+ select CPU_V7
+
+endchoice
+
+if ARCH_ARMADA_370
+
+#choice
+# prompt "Armada 370 Board Type"
+#
+#endchoice
+
+endif # ARCH_ARMADA_370
+
+if ARCH_ARMADA_XP
+
+#choice
+# prompt "Armada XP Board Type"
+#
+#endchoice
+
+endif # ARCH_ARMADA_XP
+
+endif # ARCH_MVEBU