linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] ARM: imx: Enable cpuidle for i.MX6DL starting at 1.1
@ 2017-10-11 12:08 Leonard Crestez
  2017-10-11 12:09 ` Lucas Stach
  2017-10-14 15:05 ` Shawn Guo
  0 siblings, 2 replies; 3+ messages in thread
From: Leonard Crestez @ 2017-10-11 12:08 UTC (permalink / raw)
  To: Shawn Guo, Fabio Estevam, Lucas Stach
  Cc: Rafael J. Wysocki, Daniel Lezcano, linux-arm-kernel, linux-pm,
	linux-kernel, kernel, Bai Ping

Enable cpuidle support on i.MX6DL starting from IMX_CHIP_REVISION_1_1.

This also makes the code cleaner because 6q and 6dl actually have
different revision histories.

Signed-off-by: Bai Ping <ping.bai@nxp.com>
Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
---

Changes since v1: https://www.spinics.net/lists/arm-kernel/msg610461.html
* Clarified comment but kept > instead of >= because that's what the
old code used. Would be OK to change with further feedback.

 arch/arm/mach-imx/mach-imx6q.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/arch/arm/mach-imx/mach-imx6q.c b/arch/arm/mach-imx/mach-imx6q.c
index 45801b2..5707113 100644
--- a/arch/arm/mach-imx/mach-imx6q.c
+++ b/arch/arm/mach-imx/mach-imx6q.c
@@ -371,10 +371,13 @@ static struct platform_device imx6q_cpufreq_pdev = {
 static void __init imx6q_init_late(void)
 {
 	/*
-	 * WAIT mode is broken on TO 1.0 and 1.1, so there is no point
-	 * to run cpuidle on them.
+	 * WAIT mode is broken on imx6 Dual/Quad revision 1.0 and 1.1 so
+	 * there is no point to run cpuidle on them.
+	 *
+	 * It does work on imx6 Solo/DualLite starting from 1.1
 	 */
-	if (imx_get_soc_revision() > IMX_CHIP_REVISION_1_1)
+	if ((cpu_is_imx6q() && imx_get_soc_revision() > IMX_CHIP_REVISION_1_1) ||
+	    (cpu_is_imx6dl() && imx_get_soc_revision() > IMX_CHIP_REVISION_1_0))
 		imx6q_cpuidle_init();
 
 	if (IS_ENABLED(CONFIG_ARM_IMX6Q_CPUFREQ)) {
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] ARM: imx: Enable cpuidle for i.MX6DL starting at 1.1
  2017-10-11 12:08 [PATCH v2] ARM: imx: Enable cpuidle for i.MX6DL starting at 1.1 Leonard Crestez
@ 2017-10-11 12:09 ` Lucas Stach
  2017-10-14 15:05 ` Shawn Guo
  1 sibling, 0 replies; 3+ messages in thread
From: Lucas Stach @ 2017-10-11 12:09 UTC (permalink / raw)
  To: Leonard Crestez, Shawn Guo, Fabio Estevam
  Cc: Rafael J. Wysocki, Daniel Lezcano, linux-arm-kernel, linux-pm,
	linux-kernel, kernel, Bai Ping

Am Mittwoch, den 11.10.2017, 15:08 +0300 schrieb Leonard Crestez:
> Enable cpuidle support on i.MX6DL starting from
> IMX_CHIP_REVISION_1_1.
> 
> This also makes the code cleaner because 6q and 6dl actually have
> different revision histories.
> 
> Signed-off-by: Bai Ping <ping.bai@nxp.com>
> Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>

Reviewed-by: Lucas Stach <l.stach@pengutronix.de>

> ---
> 
> Changes since v1: https://www.spinics.net/lists/arm-kernel/msg610461.
> html
> * Clarified comment but kept > instead of >= because that's what the
> old code used. Would be OK to change with further feedback.
> 
>  arch/arm/mach-imx/mach-imx6q.c | 9 ++++++---
>  1 file changed, 6 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm/mach-imx/mach-imx6q.c b/arch/arm/mach-imx/mach-
> imx6q.c
> index 45801b2..5707113 100644
> --- a/arch/arm/mach-imx/mach-imx6q.c
> +++ b/arch/arm/mach-imx/mach-imx6q.c
> @@ -371,10 +371,13 @@ static struct platform_device
> imx6q_cpufreq_pdev = {
>  static void __init imx6q_init_late(void)
>  {
>  	/*
> -	 * WAIT mode is broken on TO 1.0 and 1.1, so there is no
> point
> -	 * to run cpuidle on them.
> +	 * WAIT mode is broken on imx6 Dual/Quad revision 1.0 and
> 1.1 so
> +	 * there is no point to run cpuidle on them.
> +	 *
> +	 * It does work on imx6 Solo/DualLite starting from 1.1
>  	 */
> -	if (imx_get_soc_revision() > IMX_CHIP_REVISION_1_1)
> +	if ((cpu_is_imx6q() && imx_get_soc_revision() >
> IMX_CHIP_REVISION_1_1) ||
> +	    (cpu_is_imx6dl() && imx_get_soc_revision() >
> IMX_CHIP_REVISION_1_0))
>  		imx6q_cpuidle_init();
>  
>  	if (IS_ENABLED(CONFIG_ARM_IMX6Q_CPUFREQ)) {

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] ARM: imx: Enable cpuidle for i.MX6DL starting at 1.1
  2017-10-11 12:08 [PATCH v2] ARM: imx: Enable cpuidle for i.MX6DL starting at 1.1 Leonard Crestez
  2017-10-11 12:09 ` Lucas Stach
@ 2017-10-14 15:05 ` Shawn Guo
  1 sibling, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2017-10-14 15:05 UTC (permalink / raw)
  To: Leonard Crestez
  Cc: Fabio Estevam, Lucas Stach, Bai Ping, linux-pm, Daniel Lezcano,
	Rafael J. Wysocki, linux-kernel, kernel, linux-arm-kernel

On Wed, Oct 11, 2017 at 03:08:23PM +0300, Leonard Crestez wrote:
> Enable cpuidle support on i.MX6DL starting from IMX_CHIP_REVISION_1_1.
> 
> This also makes the code cleaner because 6q and 6dl actually have
> different revision histories.
> 
> Signed-off-by: Bai Ping <ping.bai@nxp.com>
> Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>

Applied, thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-10-14 15:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-11 12:08 [PATCH v2] ARM: imx: Enable cpuidle for i.MX6DL starting at 1.1 Leonard Crestez
2017-10-11 12:09 ` Lucas Stach
2017-10-14 15:05 ` 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).