summaryrefslogtreecommitdiff
path: root/arch/arm/cpu/arm720t/cpu.c
diff options
context:
space:
mode:
authorAllen Martin <amartin@nvidia.com>2012-08-31 08:30:09 +0000
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2012-09-01 14:58:22 +0200
commitc037c93bf925224b7f4da8958ae14e58c0b3c8bb (patch)
treea7a3222b4483f7f6cd476af838d3d8f425391b2f /arch/arm/cpu/arm720t/cpu.c
parent45ec5b2579e8f9e58f58d9face9147957e5a873e (diff)
downloadu-boot-imx-c037c93bf925224b7f4da8958ae14e58c0b3c8bb.zip
u-boot-imx-c037c93bf925224b7f4da8958ae14e58c0b3c8bb.tar.gz
u-boot-imx-c037c93bf925224b7f4da8958ae14e58c0b3c8bb.tar.bz2
ARM: add tegra20 support to arm720t
Add support for tegra20 arm7 boot processor. This processor is used to power on the Cortex A9 and transfer control to it. In tegra this processor is an ARM7TDMI not an ARM720T, but since we don't use cache it was easier to just reuse the ARM720T code as the processors are otherwise identical except for cache and MMU. Signed-off-by: Allen Martin <amartin@nvidia.com> Acked-by: Stephen Warren <swarren@wwwdotorg.org> Tested-by: Thierry Reding <thierry.reding@avionic-design.de> Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'arch/arm/cpu/arm720t/cpu.c')
-rw-r--r--arch/arm/cpu/arm720t/cpu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/cpu/arm720t/cpu.c b/arch/arm/cpu/arm720t/cpu.c
index 974f288..ce7b3c9 100644
--- a/arch/arm/cpu/arm720t/cpu.c
+++ b/arch/arm/cpu/arm720t/cpu.c
@@ -51,6 +51,8 @@ int cleanup_before_linux (void)
/* Nothing more needed */
#elif defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
/* No cleanup before linux for IntegratorAP/CM720T as yet */
+#elif defined(CONFIG_TEGRA)
+ /* No cleanup before linux for tegra as yet */
#else
#error No cleanup_before_linux() defined for this CPU type
#endif