* [PATCH] ARM: imx: add cpuidle support for i.mx6sx
@ 2014-06-20 5:44 Anson Huang
2014-06-21 9:33 ` Shawn Guo
0 siblings, 1 reply; 3+ messages in thread
From: Anson Huang @ 2014-06-20 5:44 UTC (permalink / raw)
To: linux-arm-kernel
Add cpuidle support for i.MX6SX, derive from i.MX6Q's
cpuidle, two levels supported:
1. WFI;
2. WAIT mode.
Signed-off-by: Anson Huang <b20788@freescale.com>
---
arch/arm/mach-imx/cpuidle-imx6q.c | 4 +++-
arch/arm/mach-imx/mach-imx6sx.c | 7 +++++++
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/arch/arm/mach-imx/cpuidle-imx6q.c b/arch/arm/mach-imx/cpuidle-imx6q.c
index 6bcae04..fc0bb1e 100644
--- a/arch/arm/mach-imx/cpuidle-imx6q.c
+++ b/arch/arm/mach-imx/cpuidle-imx6q.c
@@ -13,6 +13,7 @@
#include "common.h"
#include "cpuidle.h"
+#include "hardware.h"
static atomic_t master = ATOMIC_INIT(0);
static DEFINE_SPINLOCK(master_lock);
@@ -66,7 +67,8 @@ static struct cpuidle_driver imx6q_cpuidle_driver = {
int __init imx6q_cpuidle_init(void)
{
/* Need to enable SCU standby for entering WAIT modes */
- imx_scu_standby_enable();
+ if (!cpu_is_imx6sx())
+ imx_scu_standby_enable();
/* Set INT_MEM_CLK_LPM bit to get a reliable WAIT mode support */
imx6q_set_int_mem_clk_lpm();
diff --git a/arch/arm/mach-imx/mach-imx6sx.c b/arch/arm/mach-imx/mach-imx6sx.c
index b7a0bde..74ff7d6 100644
--- a/arch/arm/mach-imx/mach-imx6sx.c
+++ b/arch/arm/mach-imx/mach-imx6sx.c
@@ -12,6 +12,7 @@
#include <asm/mach/map.h>
#include "common.h"
+#include "cpuidle.h"
static void __init imx6sx_init_machine(void)
{
@@ -38,6 +39,11 @@ static void __init imx6sx_init_irq(void)
irqchip_init();
}
+static void __init imx6sx_init_late(void)
+{
+ imx6q_cpuidle_init();
+}
+
static const char *imx6sx_dt_compat[] __initconst = {
"fsl,imx6sx",
NULL,
@@ -48,5 +54,6 @@ DT_MACHINE_START(IMX6SX, "Freescale i.MX6 SoloX (Device Tree)")
.init_irq = imx6sx_init_irq,
.init_machine = imx6sx_init_machine,
.dt_compat = imx6sx_dt_compat,
+ .init_late = imx6sx_init_late,
.restart = mxc_restart,
MACHINE_END
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH] ARM: imx: add cpuidle support for i.mx6sx
2014-06-20 5:44 [PATCH] ARM: imx: add cpuidle support for i.mx6sx Anson Huang
@ 2014-06-21 9:33 ` Shawn Guo
2014-06-21 9:43 ` Shawn Guo
0 siblings, 1 reply; 3+ messages in thread
From: Shawn Guo @ 2014-06-21 9:33 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Jun 20, 2014 at 01:44:05PM +0800, Anson Huang wrote:
> Add cpuidle support for i.MX6SX, derive from i.MX6Q's
> cpuidle, two levels supported:
>
> 1. WFI;
> 2. WAIT mode.
>
> Signed-off-by: Anson Huang <b20788@freescale.com>
> ---
> arch/arm/mach-imx/cpuidle-imx6q.c | 4 +++-
> arch/arm/mach-imx/mach-imx6sx.c | 7 +++++++
> 2 files changed, 10 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-imx/cpuidle-imx6q.c b/arch/arm/mach-imx/cpuidle-imx6q.c
> index 6bcae04..fc0bb1e 100644
> --- a/arch/arm/mach-imx/cpuidle-imx6q.c
> +++ b/arch/arm/mach-imx/cpuidle-imx6q.c
> @@ -13,6 +13,7 @@
>
> #include "common.h"
> #include "cpuidle.h"
> +#include "hardware.h"
>
> static atomic_t master = ATOMIC_INIT(0);
> static DEFINE_SPINLOCK(master_lock);
> @@ -66,7 +67,8 @@ static struct cpuidle_driver imx6q_cpuidle_driver = {
> int __init imx6q_cpuidle_init(void)
> {
> /* Need to enable SCU standby for entering WAIT modes */
> - imx_scu_standby_enable();
> + if (!cpu_is_imx6sx())
> + imx_scu_standby_enable();
Hmm, why is SoloX special in this regarding? Does SoloLite work well
without this change?
Shawn
>
> /* Set INT_MEM_CLK_LPM bit to get a reliable WAIT mode support */
> imx6q_set_int_mem_clk_lpm();
> diff --git a/arch/arm/mach-imx/mach-imx6sx.c b/arch/arm/mach-imx/mach-imx6sx.c
> index b7a0bde..74ff7d6 100644
> --- a/arch/arm/mach-imx/mach-imx6sx.c
> +++ b/arch/arm/mach-imx/mach-imx6sx.c
> @@ -12,6 +12,7 @@
> #include <asm/mach/map.h>
>
> #include "common.h"
> +#include "cpuidle.h"
>
> static void __init imx6sx_init_machine(void)
> {
> @@ -38,6 +39,11 @@ static void __init imx6sx_init_irq(void)
> irqchip_init();
> }
>
> +static void __init imx6sx_init_late(void)
> +{
> + imx6q_cpuidle_init();
> +}
> +
> static const char *imx6sx_dt_compat[] __initconst = {
> "fsl,imx6sx",
> NULL,
> @@ -48,5 +54,6 @@ DT_MACHINE_START(IMX6SX, "Freescale i.MX6 SoloX (Device Tree)")
> .init_irq = imx6sx_init_irq,
> .init_machine = imx6sx_init_machine,
> .dt_compat = imx6sx_dt_compat,
> + .init_late = imx6sx_init_late,
> .restart = mxc_restart,
> MACHINE_END
> --
> 1.7.9.5
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] ARM: imx: add cpuidle support for i.mx6sx
2014-06-21 9:33 ` Shawn Guo
@ 2014-06-21 9:43 ` Shawn Guo
0 siblings, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2014-06-21 9:43 UTC (permalink / raw)
To: linux-arm-kernel
On Sat, Jun 21, 2014 at 05:33:26PM +0800, Shawn Guo wrote:
> > @@ -66,7 +67,8 @@ static struct cpuidle_driver imx6q_cpuidle_driver = {
> > int __init imx6q_cpuidle_init(void)
> > {
> > /* Need to enable SCU standby for entering WAIT modes */
> > - imx_scu_standby_enable();
> > + if (!cpu_is_imx6sx())
> > + imx_scu_standby_enable();
>
> Hmm, why is SoloX special in this regarding? Does SoloLite work well
> without this change?
Sorry. I missed that SoloLite is handled by imx6sl_cpuidle_init()
separately.
Patch applied, thanks.
Shawn
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-06-21 9:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-20 5:44 [PATCH] ARM: imx: add cpuidle support for i.mx6sx Anson Huang
2014-06-21 9:33 ` Shawn Guo
2014-06-21 9:43 ` Shawn Guo
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).