From: Will Deacon Date: Fri, 24 Feb 2012 11:20:16 +0000 (+0100) Subject: ARM: 7347/1: SCU: use cpu_logical_map for per-CPU low power mode X-Git-Tag: v3.5-rc1~182^2~1^2~8 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=0bd82adee38046fcf180a60ca56c181702287646;p=~emulex%2Finfiniband.git ARM: 7347/1: SCU: use cpu_logical_map for per-CPU low power mode scu_power_mode changes the power mode for the current CPU, which it determines from smp_processor_id(). However, this assumes that the physical CPU number is equal to Linux's logical CPU number and if this is not true, we will power off the wrong CPU. This patch uses cpu_logical_map to translate the logical CPU number into a physical one in scu_power_mode. Reported-by: Lorenzo Pieralisi Signed-off-by: Will Deacon Signed-off-by: Russell King --- diff --git a/arch/arm/kernel/smp_scu.c b/arch/arm/kernel/smp_scu.c index 8f5dd796335..b9f015e843d 100644 --- a/arch/arm/kernel/smp_scu.c +++ b/arch/arm/kernel/smp_scu.c @@ -11,6 +11,7 @@ #include #include +#include #include #include #include @@ -74,7 +75,7 @@ void scu_enable(void __iomem *scu_base) int scu_power_mode(void __iomem *scu_base, unsigned int mode) { unsigned int val; - int cpu = smp_processor_id(); + int cpu = cpu_logical_map(smp_processor_id()); if (mode > 3 || mode == 1 || cpu > 3) return -EINVAL;