diff options
author | Rob Herring <rob.herring@calxeda.com> | 2012-10-25 12:13:47 -0500 |
---|---|---|
committer | Rob Herring <rob.herring@calxeda.com> | 2012-10-31 13:46:50 -0500 |
commit | 7a2848d369b2b9281400e6c9f08e21ec71cd1dcb (patch) | |
tree | abb8983696264faee745f49a8132589134f0e791 /arch/arm/mach-highbank/pm.c | |
parent | 0336517b38c5fd643784eeee8f0d73efd48e3361 (diff) |
ARM: highbank: abstract out SCU usage
In preparation for A15 support on ECX-2000, the direct calls to SCU
registers must be conditional. The SCU power mode register is replaced by
a custom register on ECX-2000.
Rather than read the number of cores from the SCU, just hardcode it to 4.
This removes one use of SCU and removes the need for the SCU to be
statically mapped. The cpu initialization will ultimately come from DT.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-highbank/pm.c')
-rw-r--r-- | arch/arm/mach-highbank/pm.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/mach-highbank/pm.c b/arch/arm/mach-highbank/pm.c index de866f21331..74aa135966f 100644 --- a/arch/arm/mach-highbank/pm.c +++ b/arch/arm/mach-highbank/pm.c @@ -19,7 +19,6 @@ #include <linux/suspend.h> #include <asm/proc-fns.h> -#include <asm/smp_scu.h> #include <asm/suspend.h> #include "core.h" @@ -35,8 +34,6 @@ static int highbank_pm_enter(suspend_state_t state) { hignbank_set_pwr_suspend(); highbank_set_cpu_jump(0, cpu_resume); - - scu_power_mode(scu_base_addr, SCU_PM_POWEROFF); cpu_suspend(0, highbank_suspend_finish); return 0; |