diff options
author | Dave Martin <dave.martin@linaro.org> | 2013-10-01 14:57:28 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-10-29 07:06:34 -0400 |
commit | 1e5660999aa7703654ec345caaf06b83415dbdff (patch) | |
tree | 56e734297369033a9c3d217f853a9501042caa72 /arch/arm/common/mcpm_platsmp.c | |
parent | 49649cad34c29dc26ed928191425e6677ca07918 (diff) |
ARM: 7847/1: mcpm: Factor out logical-to-physical CPU translation
This patch factors the logical-to-physical CPU translation out of
mcpm_boot_secondary(), so that it can be reused elsewhere.
Signed-off-by: Dave Martin <Dave.Martin@arm.com>
Acked-by: Nicolas Pitre <nico@linaro.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/common/mcpm_platsmp.c')
-rw-r--r-- | arch/arm/common/mcpm_platsmp.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/arch/arm/common/mcpm_platsmp.c b/arch/arm/common/mcpm_platsmp.c index 1bc34c7567fd..c0c3cd799ccc 100644 --- a/arch/arm/common/mcpm_platsmp.c +++ b/arch/arm/common/mcpm_platsmp.c | |||
@@ -19,14 +19,23 @@ | |||
19 | #include <asm/smp.h> | 19 | #include <asm/smp.h> |
20 | #include <asm/smp_plat.h> | 20 | #include <asm/smp_plat.h> |
21 | 21 | ||
22 | static void cpu_to_pcpu(unsigned int cpu, | ||
23 | unsigned int *pcpu, unsigned int *pcluster) | ||
24 | { | ||
25 | unsigned int mpidr; | ||
26 | |||
27 | mpidr = cpu_logical_map(cpu); | ||
28 | *pcpu = MPIDR_AFFINITY_LEVEL(mpidr, 0); | ||
29 | *pcluster = MPIDR_AFFINITY_LEVEL(mpidr, 1); | ||
30 | } | ||
31 | |||
22 | static int mcpm_boot_secondary(unsigned int cpu, struct task_struct *idle) | 32 | static int mcpm_boot_secondary(unsigned int cpu, struct task_struct *idle) |
23 | { | 33 | { |
24 | unsigned int mpidr, pcpu, pcluster, ret; | 34 | unsigned int pcpu, pcluster, ret; |
25 | extern void secondary_startup(void); | 35 | extern void secondary_startup(void); |
26 | 36 | ||
27 | mpidr = cpu_logical_map(cpu); | 37 | cpu_to_pcpu(cpu, &pcpu, &pcluster); |
28 | pcpu = MPIDR_AFFINITY_LEVEL(mpidr, 0); | 38 | |
29 | pcluster = MPIDR_AFFINITY_LEVEL(mpidr, 1); | ||
30 | pr_debug("%s: logical CPU %d is physical CPU %d cluster %d\n", | 39 | pr_debug("%s: logical CPU %d is physical CPU %d cluster %d\n", |
31 | __func__, cpu, pcpu, pcluster); | 40 | __func__, cpu, pcpu, pcluster); |
32 | 41 | ||