* [RFC/PATCH 2/4] ARM: shmobile: Add cpuidle_ops for R-Car cpuidle
@ 2015-04-06 3:50 Keita Kobayashi
2015-04-07 1:50 ` Simon Horman
2015-04-07 5:56 ` keita kobayashi
0 siblings, 2 replies; 3+ messages in thread
From: Keita Kobayashi @ 2015-04-06 3:50 UTC (permalink / raw)
To: linux-sh
This patch add Core-Standby support for R-Car cpuidle.
Signed-off-by: Keita Kobayashi <keita.kobayashi.ym@renesas.com>
---
arch/arm/mach-shmobile/platsmp-apmu.c | 11 +++++++++--
arch/arm/mach-shmobile/platsmp-apmu.h | 1 +
arch/arm/mach-shmobile/pm-rcar-gen2.c | 17 +++++++++++++++++
3 files changed, 27 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-shmobile/platsmp-apmu.c b/arch/arm/mach-shmobile/platsmp-apmu.c
index f483b56..c8de95d 100644
--- a/arch/arm/mach-shmobile/platsmp-apmu.c
+++ b/arch/arm/mach-shmobile/platsmp-apmu.c
@@ -215,7 +215,7 @@ int shmobile_smp_apmu_cpu_kill(unsigned int cpu)
}
#endif
-#if defined(CONFIG_SUSPEND)
+#if defined(CONFIG_SUSPEND) || defined(CONFIG_ARM_RCAR_CPUIDLE)
static int shmobile_smp_apmu_do_suspend(unsigned long cpu)
{
shmobile_smp_hook(cpu, virt_to_phys(cpu_resume), 0);
@@ -224,10 +224,17 @@ static int shmobile_smp_apmu_do_suspend(unsigned long cpu)
return 1;
}
-static int shmobile_smp_apmu_enter_suspend(suspend_state_t state)
+void shmobile_smp_apmu_enter_corestandby(void)
{
cpu_suspend(smp_processor_id(), shmobile_smp_apmu_do_suspend);
cpu_leave_lowpower();
+}
+#endif
+
+#if defined(CONFIG_SUSPEND)
+static int shmobile_smp_apmu_enter_suspend(suspend_state_t state)
+{
+ shmobile_smp_apmu_enter_corestandby();
return 0;
}
diff --git a/arch/arm/mach-shmobile/platsmp-apmu.h b/arch/arm/mach-shmobile/platsmp-apmu.h
index 76512c9..c7dc00a 100644
--- a/arch/arm/mach-shmobile/platsmp-apmu.h
+++ b/arch/arm/mach-shmobile/platsmp-apmu.h
@@ -28,5 +28,6 @@ extern int shmobile_smp_apmu_boot_secondary(unsigned int cpu,
struct task_struct *idle);
extern void shmobile_smp_apmu_cpu_die(unsigned int cpu);
extern int shmobile_smp_apmu_cpu_kill(unsigned int cpu);
+extern void shmobile_smp_apmu_enter_corestandby(void);
#endif /* PLATSMP_APMU_H */
diff --git a/arch/arm/mach-shmobile/pm-rcar-gen2.c b/arch/arm/mach-shmobile/pm-rcar-gen2.c
index 6815781..846b8ae 100644
--- a/arch/arm/mach-shmobile/pm-rcar-gen2.c
+++ b/arch/arm/mach-shmobile/pm-rcar-gen2.c
@@ -10,11 +10,15 @@
* for more details.
*/
+#include <linux/cpuidle.h>
+#include <linux/ioport.h>
#include <linux/kernel.h>
#include <linux/of.h>
#include <linux/smp.h>
+#include <asm/cpuidle.h>
#include <asm/io.h>
#include "common.h"
+#include "platsmp-apmu.h"
#include "pm-rcar.h"
#include "rcar-gen2.h"
@@ -113,3 +117,16 @@ void __init rcar_gen2_pm_init(void)
rcar_gen2_sysc_init(syscier);
shmobile_smp_apmu_suspend_init();
}
+
+#if defined(CONFIG_ARM_RCAR_CPUIDLE)
+static int rcar_cpuidle_enter(int cpu, unsigned long index)
+{
+ shmobile_smp_apmu_enter_corestandby();
+ return 0;
+}
+
+struct cpuidle_ops rcar_cpuidle_ops __initdata = {
+ .suspend = rcar_cpuidle_enter,
+};
+CPUIDLE_METHOD_OF_DECLARE(rcar, "renesas,rcar-idle", &rcar_cpuidle_ops);
+#endif
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [RFC/PATCH 2/4] ARM: shmobile: Add cpuidle_ops for R-Car cpuidle
2015-04-06 3:50 [RFC/PATCH 2/4] ARM: shmobile: Add cpuidle_ops for R-Car cpuidle Keita Kobayashi
@ 2015-04-07 1:50 ` Simon Horman
2015-04-07 5:56 ` keita kobayashi
1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2015-04-07 1:50 UTC (permalink / raw)
To: linux-sh
On Mon, Apr 06, 2015 at 12:50:42PM +0900, Keita Kobayashi wrote:
> This patch add Core-Standby support for R-Car cpuidle.
>
> Signed-off-by: Keita Kobayashi <keita.kobayashi.ym@renesas.com>
[snip]
> diff --git a/arch/arm/mach-shmobile/pm-rcar-gen2.c b/arch/arm/mach-shmobile/pm-rcar-gen2.c
> index 6815781..846b8ae 100644
[snip]
> +struct cpuidle_ops rcar_cpuidle_ops __initdata = {
> + .suspend = rcar_cpuidle_enter,
> +};
> +CPUIDLE_METHOD_OF_DECLARE(rcar, "renesas,rcar-idle", &rcar_cpuidle_ops);
> +#endif
It seems to me that that renesas,rcar-idle should be documented
as an enable-method in Documentation/devicetree/bindings/arm/cpus.txt.
That change could be a separate patch for device tree.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFC/PATCH 2/4] ARM: shmobile: Add cpuidle_ops for R-Car cpuidle
2015-04-06 3:50 [RFC/PATCH 2/4] ARM: shmobile: Add cpuidle_ops for R-Car cpuidle Keita Kobayashi
2015-04-07 1:50 ` Simon Horman
@ 2015-04-07 5:56 ` keita kobayashi
1 sibling, 0 replies; 3+ messages in thread
From: keita kobayashi @ 2015-04-07 5:56 UTC (permalink / raw)
To: linux-sh
Hi Simon
Thank you for your feedback.
(2015/04/07 10:50), Simon Horman wrote:
> On Mon, Apr 06, 2015 at 12:50:42PM +0900, Keita Kobayashi wrote:
>> This patch add Core-Standby support for R-Car cpuidle.
>>
>> Signed-off-by: Keita Kobayashi <keita.kobayashi.ym@renesas.com>
>
> [snip]
>
>> diff --git a/arch/arm/mach-shmobile/pm-rcar-gen2.c b/arch/arm/mach-shmobile/pm-rcar-gen2.c
>> index 6815781..846b8ae 100644
>
> [snip]
>
>> +struct cpuidle_ops rcar_cpuidle_ops __initdata = {
>> + .suspend = rcar_cpuidle_enter,
>> +};
>> +CPUIDLE_METHOD_OF_DECLARE(rcar, "renesas,rcar-idle", &rcar_cpuidle_ops);
>> +#endif
>
> It seems to me that that renesas,rcar-idle should be documented
> as an enable-method in Documentation/devicetree/bindings/arm/cpus.txt.
>
> That change could be a separate patch for device tree.
I understand. I will document it.
Regards.
Keita Kobayashi
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-04-07 5:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-06 3:50 [RFC/PATCH 2/4] ARM: shmobile: Add cpuidle_ops for R-Car cpuidle Keita Kobayashi
2015-04-07 1:50 ` Simon Horman
2015-04-07 5:56 ` keita kobayashi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).