diff options
Diffstat (limited to 'arch/arm/mach-vexpress/platsmp.c')
-rw-r--r-- | arch/arm/mach-vexpress/platsmp.c | 31 |
1 files changed, 2 insertions, 29 deletions
diff --git a/arch/arm/mach-vexpress/platsmp.c b/arch/arm/mach-vexpress/platsmp.c index 18927023c2cc..2b5f7ac001a3 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 | ||
25 | extern void versatile_secondary_startup(void); | 23 | extern void versatile_secondary_startup(void); |
26 | 24 | ||
27 | static 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 | */ |
36 | void __init smp_init_cpus(void) | 29 | void __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 | ||
56 | void __init platform_smp_prepare_cpus(unsigned int max_cpus) | 34 | void __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 |