diff options
author | Will Deacon <will.deacon@arm.com> | 2011-08-23 17:19:29 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-10-17 04:02:43 -0400 |
commit | d6257288c4052465feeff7e283e35ec0ed06ca03 (patch) | |
tree | e9dbc251dfb47716d592681d228bda73a3a63121 | |
parent | c9018aab8eee24b993c12c7aff7fc99d3d73f298 (diff) |
ARM: 7060/1: smp: populate logical CPU mapping during boot
To allow booting Linux on a CPU with physical ID != 0, we need to
provide a mapping from the logical CPU number to the physical CPU
number.
This patch adds such a mapping and populates it during boot.
Signed-off-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r-- | arch/arm/include/asm/smp.h | 6 | ||||
-rw-r--r-- | arch/arm/kernel/smp.c | 15 |
2 files changed, 21 insertions, 0 deletions
diff --git a/arch/arm/include/asm/smp.h b/arch/arm/include/asm/smp.h index e42d96a45d3e..674ebcd337fe 100644 --- a/arch/arm/include/asm/smp.h +++ b/arch/arm/include/asm/smp.h | |||
@@ -66,6 +66,12 @@ extern void platform_secondary_init(unsigned int cpu); | |||
66 | extern void platform_smp_prepare_cpus(unsigned int); | 66 | extern void platform_smp_prepare_cpus(unsigned int); |
67 | 67 | ||
68 | /* | 68 | /* |
69 | * Logical CPU mapping. | ||
70 | */ | ||
71 | extern int __cpu_logical_map[NR_CPUS]; | ||
72 | #define cpu_logical_map(cpu) __cpu_logical_map[cpu] | ||
73 | |||
74 | /* | ||
69 | * Initial data for bringing up a secondary CPU. | 75 | * Initial data for bringing up a secondary CPU. |
70 | */ | 76 | */ |
71 | struct secondary_data { | 77 | struct secondary_data { |
diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c index 62775c5c5ba0..3f12ce9b0796 100644 --- a/arch/arm/kernel/smp.c +++ b/arch/arm/kernel/smp.c | |||
@@ -40,6 +40,7 @@ | |||
40 | #include <asm/tlbflush.h> | 40 | #include <asm/tlbflush.h> |
41 | #include <asm/ptrace.h> | 41 | #include <asm/ptrace.h> |
42 | #include <asm/localtimer.h> | 42 | #include <asm/localtimer.h> |
43 | #include <asm/smp_plat.h> | ||
43 | 44 | ||
44 | /* | 45 | /* |
45 | * as from 2.5, kernels no longer have an init_tasks structure | 46 | * as from 2.5, kernels no longer have an init_tasks structure |
@@ -260,6 +261,20 @@ void __ref cpu_die(void) | |||
260 | } | 261 | } |
261 | #endif /* CONFIG_HOTPLUG_CPU */ | 262 | #endif /* CONFIG_HOTPLUG_CPU */ |
262 | 263 | ||
264 | int __cpu_logical_map[NR_CPUS]; | ||
265 | |||
266 | void __init smp_setup_processor_id(void) | ||
267 | { | ||
268 | int i; | ||
269 | u32 cpu = is_smp() ? read_cpuid_mpidr() & 0xff : 0; | ||
270 | |||
271 | cpu_logical_map(0) = cpu; | ||
272 | for (i = 1; i < NR_CPUS; ++i) | ||
273 | cpu_logical_map(i) = i == cpu ? 0 : i; | ||
274 | |||
275 | printk(KERN_INFO "Booting Linux on physical CPU %d\n", cpu); | ||
276 | } | ||
277 | |||
263 | /* | 278 | /* |
264 | * Called by both boot and secondaries to move global data into | 279 | * Called by both boot and secondaries to move global data into |
265 | * per-processor storage. | 280 | * per-processor storage. |