Skip to content

Commit

Permalink
ARM: mach-imx: convert logical CPU numbers to physical numbers
Browse files Browse the repository at this point in the history
This patch uses the new cpu_logical_map() macro for converting logical
CPU numbers into physical numbers when releasing CPUs during the SMP
boot and CPU hotplug paths.

Cc: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
  • Loading branch information
Will Deacon committed Nov 16, 2011
1 parent bf14fc5 commit eaa142c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions arch/arm/mach-imx/src.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <linux/io.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/smp.h>
#include <asm/unified.h>

#define SRC_SCR 0x000
Expand All @@ -23,10 +24,15 @@

static void __iomem *src_base;

#ifndef CONFIG_SMP
#define cpu_logical_map(cpu) 0
#endif

void imx_enable_cpu(int cpu, bool enable)
{
u32 mask, val;

cpu = cpu_logical_map(cpu);
mask = 1 << (BP_SRC_SCR_CORE1_ENABLE + cpu - 1);
val = readl_relaxed(src_base + SRC_SCR);
val = enable ? val | mask : val & ~mask;
Expand All @@ -35,6 +41,7 @@ void imx_enable_cpu(int cpu, bool enable)

void imx_set_cpu_jump(int cpu, void *jump_addr)
{
cpu = cpu_logical_map(cpu);
writel_relaxed(BSYM(virt_to_phys(jump_addr)),
src_base + SRC_GPR1 + cpu * 8);
}
Expand Down

0 comments on commit eaa142c

Please sign in to comment.