aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/kernel/smp_scu.c
diff options
context:
space:
mode:
authorCatalin Marinas <catalin.marinas@arm.com>2009-05-18 11:26:27 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2009-05-28 08:52:05 -0400
commitaf73110d23fb54f940197d93a410e9fa0cee66e2 (patch)
tree29e1e92000e8933937432bc818ed42101eff8a2d /arch/arm/kernel/smp_scu.c
parent4c5158d4c3ab1f2927a740372a0ee9c3fed7ba47 (diff)
[ARM] 5516/1: Flush the D-cache after initialising the SCU
On MP systems, the data loaded by CPU0 before the SCU was initialised may not be visible to the other CPUs. Signed-off-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> This also includes the following compile fix: This patch includes 'asm/cacheflush.h' which is needed to use 'flush_cache_all()' function. Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel/smp_scu.c')
-rw-r--r--arch/arm/kernel/smp_scu.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/kernel/smp_scu.c b/arch/arm/kernel/smp_scu.c
index 7f24ee9d733..d3831f616ee 100644
--- a/arch/arm/kernel/smp_scu.c
+++ b/arch/arm/kernel/smp_scu.c
@@ -12,6 +12,7 @@
12#include <linux/io.h> 12#include <linux/io.h>
13 13
14#include <asm/smp_scu.h> 14#include <asm/smp_scu.h>
15#include <asm/cacheflush.h>
15 16
16#define SCU_CTRL 0x00 17#define SCU_CTRL 0x00
17#define SCU_CONFIG 0x04 18#define SCU_CONFIG 0x04
@@ -38,4 +39,10 @@ void __init scu_enable(void __iomem *scu_base)
38 scu_ctrl = __raw_readl(scu_base + SCU_CTRL); 39 scu_ctrl = __raw_readl(scu_base + SCU_CTRL);
39 scu_ctrl |= 1; 40 scu_ctrl |= 1;
40 __raw_writel(scu_ctrl, scu_base + SCU_CTRL); 41 __raw_writel(scu_ctrl, scu_base + SCU_CTRL);
42
43 /*
44 * Ensure that the data accessed by CPU0 before the SCU was
45 * initialised is visible to the other CPUs.
46 */
47 flush_cache_all();
41} 48}