[PATCH 10/17] ARM: exynos: cpuidle: Move exynos_set_wakeupmask in the cpu_pm notifier

2014-04-04 Thread Daniel Lezcano
Let's encapsulate more the PM code inside the PM file by moving the
'exynos_set_wakeupmask' function inside the pm.c and the call in the cpu_pm
notifier.

Signed-off-by: Daniel Lezcano daniel.lezc...@linaro.org
---
 arch/arm/mach-exynos/cpuidle.c |7 ---
 arch/arm/mach-exynos/pm.c  |7 +++
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/arch/arm/mach-exynos/cpuidle.c b/arch/arm/mach-exynos/cpuidle.c
index c63ad05..7014654 100644
--- a/arch/arm/mach-exynos/cpuidle.c
+++ b/arch/arm/mach-exynos/cpuidle.c
@@ -59,15 +59,8 @@
 #define PWR_CTRL2_CORE2_UP_RATIO   (1  4)
 #define PWR_CTRL2_CORE1_UP_RATIO   (1  0)
 
-/* Ext-GIC nIRQ/nFIQ is the only wakeup source in AFTR */
-static void exynos_set_wakeupmask(void)
-{
-   __raw_writel(0xff3e, S5P_WAKEUP_MASK);
-}
-
 static int idle_finisher(unsigned long flags)
 {
-   exynos_set_wakeupmask();
 
__raw_writel(virt_to_phys(s3c_cpu_resume), REG_DIRECTGO_ADDR);
__raw_writel(S5P_CHECK_AFTR, REG_DIRECTGO_FLAG);
diff --git a/arch/arm/mach-exynos/pm.c b/arch/arm/mach-exynos/pm.c
index c0d8640..3f2ddef 100644
--- a/arch/arm/mach-exynos/pm.c
+++ b/arch/arm/mach-exynos/pm.c
@@ -374,12 +374,19 @@ early_wakeup:
return;
 }
 
+/* Ext-GIC nIRQ/nFIQ is the only wakeup source in AFTR */
+static void exynos_set_wakeupmask(void)
+{
+   __raw_writel(0xff3e, S5P_WAKEUP_MASK);
+}
+
 static int exynos_cpu_pm_notifier(struct notifier_block *self,
  unsigned long cmd, void *v)
 {
switch (cmd) {
case CPU_PM_ENTER:
exynos_cpu_save_register();
+   exynos_set_wakeupmask();
break;
 
case CPU_PM_EXIT:
-- 
1.7.9.5

--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 10/17] ARM: exynos: cpuidle: Move exynos_set_wakeupmask in the cpu_pm notifier

2014-04-04 Thread Viresh Kumar
On 4 April 2014 13:17, Daniel Lezcano daniel.lezc...@linaro.org wrote:
 Let's encapsulate more the PM code inside the PM file by moving the
 'exynos_set_wakeupmask' function inside the pm.c and the call in the cpu_pm
 notifier.

 Signed-off-by: Daniel Lezcano daniel.lezc...@linaro.org
 ---
  arch/arm/mach-exynos/cpuidle.c |7 ---
  arch/arm/mach-exynos/pm.c  |7 +++
  2 files changed, 7 insertions(+), 7 deletions(-)

 diff --git a/arch/arm/mach-exynos/cpuidle.c b/arch/arm/mach-exynos/cpuidle.c
 index c63ad05..7014654 100644
 --- a/arch/arm/mach-exynos/cpuidle.c
 +++ b/arch/arm/mach-exynos/cpuidle.c
 @@ -59,15 +59,8 @@
  #define PWR_CTRL2_CORE2_UP_RATIO   (1  4)
  #define PWR_CTRL2_CORE1_UP_RATIO   (1  0)

 -/* Ext-GIC nIRQ/nFIQ is the only wakeup source in AFTR */
 -static void exynos_set_wakeupmask(void)
 -{
 -   __raw_writel(0xff3e, S5P_WAKEUP_MASK);
 -}
 -
  static int idle_finisher(unsigned long flags)
  {
 -   exynos_set_wakeupmask();


Remove this blank line as well..

 __raw_writel(virt_to_phys(s3c_cpu_resume), REG_DIRECTGO_ADDR);
 __raw_writel(S5P_CHECK_AFTR, REG_DIRECTGO_FLAG);
 diff --git a/arch/arm/mach-exynos/pm.c b/arch/arm/mach-exynos/pm.c
 index c0d8640..3f2ddef 100644
 --- a/arch/arm/mach-exynos/pm.c
 +++ b/arch/arm/mach-exynos/pm.c
 @@ -374,12 +374,19 @@ early_wakeup:
 return;
  }

 +/* Ext-GIC nIRQ/nFIQ is the only wakeup source in AFTR */
 +static void exynos_set_wakeupmask(void)
 +{
 +   __raw_writel(0xff3e, S5P_WAKEUP_MASK);
 +}
 +
  static int exynos_cpu_pm_notifier(struct notifier_block *self,
   unsigned long cmd, void *v)
  {
 switch (cmd) {
 case CPU_PM_ENTER:
 exynos_cpu_save_register();
 +   exynos_set_wakeupmask();
 break;

 case CPU_PM_EXIT:

Reviewed-by: Viresh Kumar viresh.ku...@linaro.org
--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html