[U-Boot] [PATCH 11/11 v2] snowball: Adding board specific cache cleanup routine

mathieu.poirier at linaro.org mathieu.poirier at linaro.org
Mon Jun 25 22:41:57 CEST 2012


From: "Mathieu J. Poirier" <mathieu.poirier at linaro.org>

Following ARM's reference manuel for initializing the cache - the
kernel won't boot otherwise.

Signed-off-by: Mathieu Poirier <mathieu.poirier at linaro.org>
Signed-off-by: John Rigby <john.rigby at linaro.org>
---
Changes for v2:
   - Correcting cache maintenance register address.
   - Invalidating all 16 bits in cache maintenance register.
   - Polling cache maintenance register for cleared bits.
   - Added comments to the code.
   - Re-worked commit description.
---
 arch/arm/cpu/armv7/u8500/cpu.c |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/arch/arm/cpu/armv7/u8500/cpu.c b/arch/arm/cpu/armv7/u8500/cpu.c
index 02bb332..50d5a83 100644
--- a/arch/arm/cpu/armv7/u8500/cpu.c
+++ b/arch/arm/cpu/armv7/u8500/cpu.c
@@ -73,6 +73,22 @@ static unsigned int read_asicid(void)
 	return readl(address);
 }
 
+void cpu_cache_initialization(void)
+{
+	/* invalidate all cache entries */
+	*((volatile unsigned int *)(0xA041277C)) = 0xFFFF;
+
+	/* ways are set to '0' when they are totally
+	 * cleaned and invalidated
+	 */
+	while (*((volatile unsigned int *)(0xA041277C)) & 0xFF)
+		;
+
+	/* Invalidate register 9 D and I lockdown */
+	*((volatile unsigned int *)(0xA0412900)) = 0xFF;
+	*((volatile unsigned int *)(0xA0412904)) = 0xFF;
+}
+
 #ifdef CONFIG_ARCH_CPU_INIT
 /*
  * SOC specific cpu init
-- 
1.7.5.4



More information about the U-Boot mailing list