summaryrefslogtreecommitdiffstats
path: root/src/arch/arm/armv4/Kconfig
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2013-10-01 05:20:17 -0700
committerIsaac Christensen <isaac.christensen@se-eng.com>2014-09-09 19:49:31 +0200
commitf2f817ed1d5494b8ded166306564d16673fbf02c (patch)
tree779b5e5e058ccfcf4629228aa35196fe6d7f2825 /src/arch/arm/armv4/Kconfig
parent70ad39e77524a45109830fdcba53143b0e0e2723 (diff)
downloadcoreboot-f2f817ed1d5494b8ded166306564d16673fbf02c.tar.gz
coreboot-f2f817ed1d5494b8ded166306564d16673fbf02c.tar.bz2
coreboot-f2f817ed1d5494b8ded166306564d16673fbf02c.zip
ARM: Add an ARMv4 architecture version.
This is needed for the tegra124's bootblock and includes enough implementation to support that use. No caching is supported, although there are function prototypes and stub implementations to satisfy includes and linking. Change-Id: Ib79dde8c30eda98b3e823cba2ff6115a610bb2e8 Signed-off-by: Gabe Black <gabeblack@google.com> Reviewed-on: https://chromium-review.googlesource.com/171401 Reviewed-by: Gabe Black <gabeblack@chromium.org> Tested-by: Gabe Black <gabeblack@chromium.org> Commit-Queue: Gabe Black <gabeblack@chromium.org> (cherry picked from commit 221dc76b3ce4c1d73851c432333e091e1c60f0cb) Signed-off-by: Isaac Christensen <isaac.christensen@se-eng.com> Reviewed-on: http://review.coreboot.org/6783 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/arch/arm/armv4/Kconfig')
-rw-r--r--src/arch/arm/armv4/Kconfig11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/arch/arm/armv4/Kconfig b/src/arch/arm/armv4/Kconfig
new file mode 100644
index 000000000000..e40a6e1af90a
--- /dev/null
+++ b/src/arch/arm/armv4/Kconfig
@@ -0,0 +1,11 @@
+config ARCH_BOOTBLOCK_ARMV4
+ def_bool n
+ select ARCH_BOOTBLOCK_ARM
+
+config ARCH_ROMSTAGE_ARMV4
+ def_bool n
+ select ARCH_ROMSTAGE_ARM
+
+config ARCH_RAMSTAGE_ARMV4
+ def_bool n
+ select ARCH_RAMSTAGE_ARM