aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-vexpress/platsmp.c
diff options
context:
space:
mode:
authorWill Deacon <will.deacon@arm.com>2011-02-28 11:01:04 -0500
committerRussell King <rmk+kernel@arm.linux.org.uk>2011-03-20 05:32:21 -0400
commit80b5efbd43f0a21e9fc6db87823be32fcfe3e7ce (patch)
tree12a213968fa7c0bac41ff539f82ba64f0e979c4c /arch/arm/mach-vexpress/platsmp.c
parent196f020fbbb83d246960548e73a40fd08f3e7866 (diff)
ARM: 6771/1: vexpress: add support for multiple core tiles
The current Versatile Express BSP defines the MACHINE_START macro in the core tile code. This patch moves this into the generic board code and introduces a method for determining the current tile at runtime, allowing the Kernel to have support for multiple tiles compiled in. Tile-specific functions are executed via a descriptor struct containing the correct implementations for the current tile. Signed-off-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-vexpress/platsmp.c')
-rw-r--r--arch/arm/mach-vexpress/platsmp.c31
1 files changed, 2 insertions, 29 deletions
diff --git a/arch/arm/mach-vexpress/platsmp.c b/arch/arm/mach-vexpress/platsmp.c
index 18927023c2c..2b5f7ac001a 100644
--- a/arch/arm/mach-vexpress/platsmp.c
+++ b/arch/arm/mach-vexpress/platsmp.c
@@ -13,10 +13,8 @@
13#include <linux/smp.h> 13#include <linux/smp.h>
14#include <linux/io.h> 14#include <linux/io.h>
15 15
16#include <asm/smp_scu.h>
17#include <asm/unified.h> 16#include <asm/unified.h>
18 17
19#include <mach/ct-ca9x4.h>
20#include <mach/motherboard.h> 18#include <mach/motherboard.h>
21#define V2M_PA_CS7 0x10000000 19#define V2M_PA_CS7 0x10000000
22 20
@@ -24,47 +22,22 @@
24 22
25extern void versatile_secondary_startup(void); 23extern void versatile_secondary_startup(void);
26 24
27static void __iomem *scu_base_addr(void)
28{
29 return MMIO_P2V(A9_MPCORE_SCU);
30}
31
32/* 25/*
33 * Initialise the CPU possible map early - this describes the CPUs 26 * Initialise the CPU possible map early - this describes the CPUs
34 * which may be present or become present in the system. 27 * which may be present or become present in the system.
35 */ 28 */
36void __init smp_init_cpus(void) 29void __init smp_init_cpus(void)
37{ 30{
38 void __iomem *scu_base = scu_base_addr(); 31 ct_desc->init_cpu_map();
39 unsigned int i, ncores;
40
41 ncores = scu_base ? scu_get_core_count(scu_base) : 1;
42
43 /* sanity check */
44 if (ncores > NR_CPUS) {
45 printk(KERN_WARNING
46 "vexpress: no. of cores (%d) greater than configured "
47 "maximum of %d - clipping\n",
48 ncores, NR_CPUS);
49 ncores = NR_CPUS;
50 }
51
52 for (i = 0; i < ncores; i++)
53 set_cpu_possible(i, true);
54} 32}
55 33
56void __init platform_smp_prepare_cpus(unsigned int max_cpus) 34void __init platform_smp_prepare_cpus(unsigned int max_cpus)
57{ 35{
58 int i;
59
60 /* 36 /*
61 * Initialise the present map, which describes the set of CPUs 37 * Initialise the present map, which describes the set of CPUs
62 * actually populated at the present time. 38 * actually populated at the present time.
63 */ 39 */
64 for (i = 0; i < max_cpus; i++) 40 ct_desc->smp_enable(max_cpus);
65 set_cpu_present(i, true);
66
67 scu_enable(scu_base_addr());
68 41
69 /* 42 /*
70 * Write the address of secondary startup into the 43 * Write the address of secondary startup into the