[PATCH] Help fix SMP boot issues with L2 cache

Catalin Marinas catalin.marinas at arm.com
Fri Feb 19 10:42:01 EST 2010


On Sun, 2010-02-14 at 00:18 +0000, Russell King - ARM Linux wrote:
> On Sat, Feb 13, 2010 at 11:47:03PM +0000, Catalin Marinas wrote:
> > Russell King - ARM Linux wrote:
> >>     ARM: Add L2 cache handling to smp boot support
> >>         The page table and secondary data which we're asking the
> >> secondary CPU
> >>     to make use of has to hit RAM to ensure that the secondary CPU can see
> >>     it since it may not be taking part in coherency or cache searches at
> >>     this point.
> >>         Signed-off-by: Russell King <rmk+kernel at arm.linux.org.uk>
> >>
> >>  arch/arm/kernel/smp.c |    4 +++-
> >>  1 files changed, 3 insertions(+), 1 deletions(-)
> >>
> >> diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c
> >> index 57162af..577543f 100644
> >> --- a/arch/arm/kernel/smp.c
> >> +++ b/arch/arm/kernel/smp.c
> >> @@ -99,6 +99,7 @@ int __cpuinit __cpu_up(unsigned int cpu)
> >>      *pmd = __pmd((PHYS_OFFSET & PGDIR_MASK) |
> >>                   PMD_TYPE_SECT | PMD_SECT_AP_WRITE);
> >>      flush_pmd_entry(pmd);
> >> +    outer_clean_range(__pa(pmd), __pa(pmd + 1));
> >>      /*
> >>       * We need to tell the secondary core where to find
> >> @@ -106,7 +107,8 @@ int __cpuinit __cpu_up(unsigned int cpu)
> >>       */
> >>      secondary_data.stack = task_stack_page(idle) + THREAD_START_SP;
> >>      secondary_data.pgdir = virt_to_phys(pgd);
> >> -    wmb();
> >> +    __cpuc_flush_dcache_area(&secondary_data, sizeof(secondary_data));
> >> +    outer_clean_range(__pa(&secondary_data), __pa(&secondary_data + 1));
> >>      /*
> >>       * Now bring the CPU into our world.
> >
> > But is the outer_cache initialised at this point?
> 
> If it isn't, the calls are no-ops, so are harmless.  However, there are
> platforms where the L2 is already initialized at this point, and therefore
> this needs to be handled.

Yes, for what it is intended the patch is fine:

Acked-by: Catalin Marinas <catalin.marinas at arm.com>

-- 
Catalin




More information about the linux-arm-kernel mailing list