2005-11-07 22:05:42 +01:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/mach-realview/platsmp.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 ARM Ltd.
|
|
|
|
* All Rights Reserved
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/smp.h>
|
2008-09-06 13:10:45 +02:00
|
|
|
#include <linux/io.h>
|
2005-11-07 22:05:42 +01:00
|
|
|
|
2008-08-05 17:14:15 +02:00
|
|
|
#include <mach/hardware.h>
|
2011-04-03 14:01:30 +02:00
|
|
|
#include <asm/hardware/gic.h>
|
2008-02-04 17:39:00 +01:00
|
|
|
#include <asm/mach-types.h>
|
2011-01-19 11:24:56 +01:00
|
|
|
#include <asm/smp_scu.h>
|
2009-07-24 13:33:00 +02:00
|
|
|
#include <asm/unified.h>
|
2005-11-07 22:05:42 +01:00
|
|
|
|
2008-08-05 17:14:15 +02:00
|
|
|
#include <mach/board-eb.h>
|
|
|
|
#include <mach/board-pb11mp.h>
|
2009-05-30 14:56:12 +02:00
|
|
|
#include <mach/board-pbx.h>
|
2008-04-18 23:43:08 +02:00
|
|
|
|
2008-12-01 15:54:58 +01:00
|
|
|
#include "core.h"
|
|
|
|
|
2011-01-19 11:24:56 +01:00
|
|
|
extern void versatile_secondary_startup(void);
|
ARM: Fix subtle race in CPU pen_release hotplug code
There is a subtle race in the CPU hotplug code, where a CPU which has
been offlined can online itself before being requested, which results
in things going astray on the next online/offline cycle.
What happens in the normal online/offline/online cycle is:
CPU0 CPU3
requests boot of CPU3
pen_release = 3
flush cache line
checks pen_release, reads 3
starts boot
pen_release = -1
... requests CPU3 offline ...
... dies ...
checks pen_release, reads -1
requests boot of CPU3
pen_release = 3
flush cache line
checks pen_release, reads 3
starts boot
pen_release = -1
However, as the write of -1 of pen_release is not fully flushed back to
memory, and the checking of pen_release is done with caches disabled,
this allows CPU3 the opportunity to read the old value of pen_release:
CPU0 CPU3
requests boot of CPU3
pen_release = 3
flush cache line
checks pen_release, reads 3
starts boot
pen_release = -1
... requests CPU3 offline ...
... dies ...
checks pen_release, reads 3
starts boot
pen_release = -1
requests boot of CPU3
pen_release = 3
flush cache line
Fix this by grouping the write of pen_release along with its cache line
flushing code to ensure that any update to pen_release is always pushed
out to physical memory.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2010-12-18 11:53:12 +01:00
|
|
|
|
2008-12-01 15:54:58 +01:00
|
|
|
static void __iomem *scu_base_addr(void)
|
|
|
|
{
|
|
|
|
if (machine_is_realview_eb_mp())
|
|
|
|
return __io_address(REALVIEW_EB11MP_SCU_BASE);
|
|
|
|
else if (machine_is_realview_pb11mp())
|
|
|
|
return __io_address(REALVIEW_TC11MP_SCU_BASE);
|
2009-05-30 14:56:12 +02:00
|
|
|
else if (machine_is_realview_pbx() &&
|
|
|
|
(core_tile_pbx11mp() || core_tile_pbxa9mp()))
|
|
|
|
return __io_address(REALVIEW_PBX_TILE_SCU_BASE);
|
2008-12-01 15:54:58 +01:00
|
|
|
else
|
|
|
|
return (void __iomem *)0;
|
|
|
|
}
|
|
|
|
|
2006-02-16 12:08:09 +01:00
|
|
|
/*
|
|
|
|
* Initialise the CPU possible map early - this describes the CPUs
|
|
|
|
* which may be present or become present in the system.
|
|
|
|
*/
|
|
|
|
void __init smp_init_cpus(void)
|
|
|
|
{
|
2010-12-02 19:09:37 +01:00
|
|
|
void __iomem *scu_base = scu_base_addr();
|
|
|
|
unsigned int i, ncores;
|
2006-02-16 12:08:09 +01:00
|
|
|
|
2010-12-02 19:09:37 +01:00
|
|
|
ncores = scu_base ? scu_get_core_count(scu_base) : 1;
|
2005-11-07 22:05:42 +01:00
|
|
|
|
|
|
|
/* sanity check */
|
|
|
|
if (ncores > NR_CPUS) {
|
|
|
|
printk(KERN_WARNING
|
|
|
|
"Realview: no. of cores (%d) greater than configured "
|
|
|
|
"maximum of %d - clipping\n",
|
|
|
|
ncores, NR_CPUS);
|
|
|
|
ncores = NR_CPUS;
|
|
|
|
}
|
|
|
|
|
2010-12-03 11:42:58 +01:00
|
|
|
for (i = 0; i < ncores; i++)
|
|
|
|
set_cpu_possible(i, true);
|
2011-04-03 14:01:30 +02:00
|
|
|
|
|
|
|
set_smp_cross_call(gic_raise_softirq);
|
2010-12-03 11:42:58 +01:00
|
|
|
}
|
2005-11-07 22:05:42 +01:00
|
|
|
|
2010-12-03 12:09:48 +01:00
|
|
|
void __init platform_smp_prepare_cpus(unsigned int max_cpus)
|
2010-12-03 11:42:58 +01:00
|
|
|
{
|
2005-11-07 22:05:42 +01:00
|
|
|
|
2010-12-03 12:09:48 +01:00
|
|
|
scu_enable(scu_base_addr());
|
|
|
|
|
2005-11-07 22:05:42 +01:00
|
|
|
/*
|
2010-12-03 12:09:48 +01:00
|
|
|
* Write the address of secondary startup into the
|
|
|
|
* system-wide flags register. The BootMonitor waits
|
|
|
|
* until it receives a soft interrupt, and then the
|
|
|
|
* secondary CPU branches to this address.
|
2005-11-07 22:05:42 +01:00
|
|
|
*/
|
2011-01-19 11:24:56 +01:00
|
|
|
__raw_writel(BSYM(virt_to_phys(versatile_secondary_startup)),
|
2010-12-03 12:09:48 +01:00
|
|
|
__io_address(REALVIEW_SYS_FLAGSSET));
|
2005-11-07 22:05:42 +01:00
|
|
|
}
|