From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
Kukjin Kim <kgene.kim@samsung.com>
Cc: Tomasz Figa <t.figa@samsung.com>,
Sachin Kamat <sachin.kamat@linaro.org>,
Viresh Kumar <viresh.kumar@linaro.org>,
"Rafael J. Wysocki" <rjw@rjwysocki.net>,
Kyungmin Park <kyungmin.park@samsung.com>,
linux-samsung-soc@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, linux-pm@vger.kernel.org,
linux-kernel@vger.kernel.org, linaro-kernel@lists.linaro.org
Subject: Re: [PATCH 6/7] ARM: EXYNOS: PM: fix register setup on EXYNOS4x12 for AFTR mode code
Date: Fri, 16 May 2014 11:03:11 +0200 [thread overview]
Message-ID: <5375D44F.7000505@linaro.org> (raw)
In-Reply-To: <1399287439-31376-7-git-send-email-b.zolnierkie@samsung.com>
On 05/05/2014 12:57 PM, Bartlomiej Zolnierkiewicz wrote:
> Add S5P_CENTRAL_SEQ_OPTION register setup for EXYNOS4x12 to AFTR
> mode code. Without this setup AFTR mode doesn't show any benefit
> over WFI one. When this setup is applied AFTR mode reduces power
> consumption by ~12% (as measured on Trats2 board).
>
> This change is a preparation for adding secure firmware support to
> EXYNOS cpuidle driver.
>
> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> ---
> arch/arm/mach-exynos/pm.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/arch/arm/mach-exynos/pm.c b/arch/arm/mach-exynos/pm.c
> index 18f6bf8..3922968 100644
> --- a/arch/arm/mach-exynos/pm.c
> +++ b/arch/arm/mach-exynos/pm.c
> @@ -391,6 +391,10 @@ static int exynos_cpu_pm_notifier(struct notifier_block *self,
> case CPU_PM_ENTER:
> if (cpu == 0) {
> exynos_pm_central_suspend();
> + if (soc_is_exynos4212() || soc_is_exynos4412())
> + __raw_writel(S5P_USE_STANDBY_WFI0 |
> + S5P_USE_STANDBY_WFE0,
> + S5P_CENTRAL_SEQ_OPTION);
Why not put this code in the exynos_enter_aftr() ?
> exynos_cpu_save_register();
> }
> break;
--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
WARNING: multiple messages have this Message-ID (diff)
From: daniel.lezcano@linaro.org (Daniel Lezcano)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 6/7] ARM: EXYNOS: PM: fix register setup on EXYNOS4x12 for AFTR mode code
Date: Fri, 16 May 2014 11:03:11 +0200 [thread overview]
Message-ID: <5375D44F.7000505@linaro.org> (raw)
In-Reply-To: <1399287439-31376-7-git-send-email-b.zolnierkie@samsung.com>
On 05/05/2014 12:57 PM, Bartlomiej Zolnierkiewicz wrote:
> Add S5P_CENTRAL_SEQ_OPTION register setup for EXYNOS4x12 to AFTR
> mode code. Without this setup AFTR mode doesn't show any benefit
> over WFI one. When this setup is applied AFTR mode reduces power
> consumption by ~12% (as measured on Trats2 board).
>
> This change is a preparation for adding secure firmware support to
> EXYNOS cpuidle driver.
>
> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> ---
> arch/arm/mach-exynos/pm.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/arch/arm/mach-exynos/pm.c b/arch/arm/mach-exynos/pm.c
> index 18f6bf8..3922968 100644
> --- a/arch/arm/mach-exynos/pm.c
> +++ b/arch/arm/mach-exynos/pm.c
> @@ -391,6 +391,10 @@ static int exynos_cpu_pm_notifier(struct notifier_block *self,
> case CPU_PM_ENTER:
> if (cpu == 0) {
> exynos_pm_central_suspend();
> + if (soc_is_exynos4212() || soc_is_exynos4412())
> + __raw_writel(S5P_USE_STANDBY_WFI0 |
> + S5P_USE_STANDBY_WFE0,
> + S5P_CENTRAL_SEQ_OPTION);
Why not put this code in the exynos_enter_aftr() ?
> exynos_cpu_save_register();
> }
> break;
--
<http://www.linaro.org/> Linaro.org ? Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
next prev parent reply other threads:[~2014-05-16 9:03 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-05 10:57 [PATCH 0/7] ARM: EXYNOS: cpuidle: fix AFTR mode on boards with secure firmware enabled Bartlomiej Zolnierkiewicz
2014-05-05 10:57 ` Bartlomiej Zolnierkiewicz
2014-05-05 10:57 ` [PATCH 1/7] arm: firmware: Check firmware is running or not Bartlomiej Zolnierkiewicz
2014-05-05 10:57 ` Bartlomiej Zolnierkiewicz
2014-05-05 10:57 ` [PATCH 2/7] ARM: EXYNOS: add support for firmware-assisted c15resume Bartlomiej Zolnierkiewicz
2014-05-05 10:57 ` Bartlomiej Zolnierkiewicz
2014-05-05 10:57 ` [PATCH 3/7] ARM: EXYNOS: add AFTR mode support to firmware do_idle method Bartlomiej Zolnierkiewicz
2014-05-05 10:57 ` Bartlomiej Zolnierkiewicz
2014-05-05 10:57 ` [PATCH 4/7] ARM: EXYNOS: PM: replace EXYNOS_BOOT_VECTOR_* macros by static inlines Bartlomiej Zolnierkiewicz
2014-05-05 10:57 ` Bartlomiej Zolnierkiewicz
2014-05-16 8:59 ` Daniel Lezcano
2014-05-16 8:59 ` Daniel Lezcano
2014-05-05 10:57 ` [PATCH 5/7] ARM: EXYNOS: PM: use c15resume firmware method if secure firmware is enabled Bartlomiej Zolnierkiewicz
2014-05-05 10:57 ` Bartlomiej Zolnierkiewicz
2014-05-05 10:57 ` [PATCH 6/7] ARM: EXYNOS: PM: fix register setup on EXYNOS4x12 for AFTR mode code Bartlomiej Zolnierkiewicz
2014-05-05 10:57 ` Bartlomiej Zolnierkiewicz
2014-05-16 9:03 ` Daniel Lezcano [this message]
2014-05-16 9:03 ` Daniel Lezcano
2014-06-02 12:08 ` Bartlomiej Zolnierkiewicz
2014-06-02 12:08 ` Bartlomiej Zolnierkiewicz
2014-06-02 16:05 ` Daniel Lezcano
2014-06-02 16:05 ` Daniel Lezcano
2014-05-05 10:57 ` [PATCH 7/7] ARM: EXYNOS: cpuidle: add secure firmware support to " Bartlomiej Zolnierkiewicz
2014-05-05 10:57 ` Bartlomiej Zolnierkiewicz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5375D44F.7000505@linaro.org \
--to=daniel.lezcano@linaro.org \
--cc=b.zolnierkie@samsung.com \
--cc=kgene.kim@samsung.com \
--cc=kyungmin.park@samsung.com \
--cc=linaro-kernel@lists.linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=rjw@rjwysocki.net \
--cc=sachin.kamat@linaro.org \
--cc=t.figa@samsung.com \
--cc=viresh.kumar@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.