]> git.karo-electronics.de Git - linux-beck.git/commitdiff
sh: Only invalidate the I-cache range for secondary CPUs stack_start.
authorPaul Mundt <lethal@linux-sh.org>
Wed, 14 Oct 2009 02:51:28 +0000 (11:51 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Wed, 14 Oct 2009 02:51:28 +0000 (11:51 +0900)
Secondary CPUs already take care of the D-cache bits through the common
cache initialization path, and the only thing that is necessary after
twiddling around with stack_start is ensuring that the I-cache changes
are visible (particularly since this tends to be the only part lacking
coherency).

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/kernel/smp.c

index 442d8d47a41e40baa75f18476667929d0aff9f98..6a27c657648d8b853b07f977bdb7916e49bba972 100644 (file)
@@ -120,7 +120,9 @@ int __cpuinit __cpu_up(unsigned int cpu)
        stack_start.bss_start = 0; /* don't clear bss for secondary cpus */
        stack_start.start_kernel_fn = start_secondary;
 
-       flush_cache_all();
+       flush_icache_range((unsigned long)&stack_start,
+                          (unsigned long)&stack_start + sizeof(stack_start));
+       wmb();
 
        plat_start_cpu(cpu, (unsigned long)_stext);