From: Tomasz Figa <tomasz.figa@gmail.com>
To: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
Kukjin Kim <kgene.kim@samsung.com>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>,
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 v2 3/7] ARM: EXYNOS: add AFTR mode support to firmware do_idle method
Date: Mon, 02 Jun 2014 15:01:59 +0200 [thread overview]
Message-ID: <538C75C7.4030708@gmail.com> (raw)
In-Reply-To: <1401712543-14281-4-git-send-email-b.zolnierkie@samsung.com>
Hi,
On 02.06.2014 14:35, Bartlomiej Zolnierkiewicz wrote:
> On some platforms (i.e. EXYNOS ones) more than one idle mode is
> available and we need to distinguish them in firmware do_idle method.
>
> Add mode parameter to do_idle firmware method and AFTR mode support
> to EXYNOS do_idle implementation.
>
> This change is a preparation for adding secure firmware support to
> EXYNOS cpuidle driver.
>
> This patch shouldn't cause any functionality changes (please note
> that do_idle firmware method is unused currently).
>
> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
> arch/arm/include/asm/firmware.h | 7 ++++++-
> arch/arm/mach-exynos/firmware.c | 10 ++++++++--
> 2 files changed, 14 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/include/asm/firmware.h b/arch/arm/include/asm/firmware.h
> index 70883c7..63989c3 100644
> --- a/arch/arm/include/asm/firmware.h
> +++ b/arch/arm/include/asm/firmware.h
> @@ -28,7 +28,7 @@ struct firmware_ops {
> /*
> * Enters CPU idle mode
> */
> - int (*do_idle)(void);
> + int (*do_idle)(int mode);
> /*
> * Sets boot address of specified physical CPU
> */
> @@ -47,6 +47,11 @@ struct firmware_ops {
> int (*c15resume)(u32 *regs);
> };
>
> +enum {
What about making this enum named and using it instead of int for mode
argument of do_idle operation?
> + FW_DO_IDLE_NORMAL,
IMHO this should be called FW_DO_IDLE_SLEEP, as this is how it is used
on Exynos4x12.
OR (which is probably a better idea)
This is probably too Exynos-specific, so mode argument could be kept int
or maybe unsigned long to make it more universal and this enum defined
in an Exynos-specific header instead.
Best regards,
Tomasz
WARNING: multiple messages have this Message-ID (diff)
From: tomasz.figa@gmail.com (Tomasz Figa)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 3/7] ARM: EXYNOS: add AFTR mode support to firmware do_idle method
Date: Mon, 02 Jun 2014 15:01:59 +0200 [thread overview]
Message-ID: <538C75C7.4030708@gmail.com> (raw)
In-Reply-To: <1401712543-14281-4-git-send-email-b.zolnierkie@samsung.com>
Hi,
On 02.06.2014 14:35, Bartlomiej Zolnierkiewicz wrote:
> On some platforms (i.e. EXYNOS ones) more than one idle mode is
> available and we need to distinguish them in firmware do_idle method.
>
> Add mode parameter to do_idle firmware method and AFTR mode support
> to EXYNOS do_idle implementation.
>
> This change is a preparation for adding secure firmware support to
> EXYNOS cpuidle driver.
>
> This patch shouldn't cause any functionality changes (please note
> that do_idle firmware method is unused currently).
>
> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
> arch/arm/include/asm/firmware.h | 7 ++++++-
> arch/arm/mach-exynos/firmware.c | 10 ++++++++--
> 2 files changed, 14 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/include/asm/firmware.h b/arch/arm/include/asm/firmware.h
> index 70883c7..63989c3 100644
> --- a/arch/arm/include/asm/firmware.h
> +++ b/arch/arm/include/asm/firmware.h
> @@ -28,7 +28,7 @@ struct firmware_ops {
> /*
> * Enters CPU idle mode
> */
> - int (*do_idle)(void);
> + int (*do_idle)(int mode);
> /*
> * Sets boot address of specified physical CPU
> */
> @@ -47,6 +47,11 @@ struct firmware_ops {
> int (*c15resume)(u32 *regs);
> };
>
> +enum {
What about making this enum named and using it instead of int for mode
argument of do_idle operation?
> + FW_DO_IDLE_NORMAL,
IMHO this should be called FW_DO_IDLE_SLEEP, as this is how it is used
on Exynos4x12.
OR (which is probably a better idea)
This is probably too Exynos-specific, so mode argument could be kept int
or maybe unsigned long to make it more universal and this enum defined
in an Exynos-specific header instead.
Best regards,
Tomasz
next prev parent reply other threads:[~2014-06-02 13:01 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-02 12:35 [PATCH v2 0/7] ARM: EXYNOS: cpuidle: fix AFTR mode on boards with secure firmware enabled Bartlomiej Zolnierkiewicz
2014-06-02 12:35 ` Bartlomiej Zolnierkiewicz
2014-06-02 12:35 ` [PATCH v2 1/7] arm: firmware: Check firmware is running or not Bartlomiej Zolnierkiewicz
2014-06-02 12:35 ` Bartlomiej Zolnierkiewicz
2014-06-02 12:51 ` Tomasz Figa
2014-06-02 12:51 ` Tomasz Figa
2014-06-02 13:05 ` Bartlomiej Zolnierkiewicz
2014-06-02 13:05 ` Bartlomiej Zolnierkiewicz
2014-06-02 12:35 ` [PATCH v2 2/7] ARM: EXYNOS: add support for firmware-assisted c15resume Bartlomiej Zolnierkiewicz
2014-06-02 12:35 ` Bartlomiej Zolnierkiewicz
2014-06-02 12:56 ` Tomasz Figa
2014-06-02 12:56 ` Tomasz Figa
2014-06-02 12:35 ` [PATCH v2 3/7] ARM: EXYNOS: add AFTR mode support to firmware do_idle method Bartlomiej Zolnierkiewicz
2014-06-02 12:35 ` Bartlomiej Zolnierkiewicz
2014-06-02 13:01 ` Tomasz Figa [this message]
2014-06-02 13:01 ` Tomasz Figa
2014-06-02 12:35 ` [PATCH v2 4/7] ARM: EXYNOS: PM: replace EXYNOS_BOOT_VECTOR_* macros by static inlines Bartlomiej Zolnierkiewicz
2014-06-02 12:35 ` Bartlomiej Zolnierkiewicz
2014-06-02 13:05 ` Tomasz Figa
2014-06-02 13:05 ` Tomasz Figa
2014-06-02 13:16 ` Bartlomiej Zolnierkiewicz
2014-06-02 13:16 ` Bartlomiej Zolnierkiewicz
2014-06-02 16:13 ` Daniel Lezcano
2014-06-02 16:13 ` Daniel Lezcano
2014-06-02 12:35 ` [PATCH v2 5/7] ARM: EXYNOS: PM: use c15resume firmware method if secure firmware is enabled Bartlomiej Zolnierkiewicz
2014-06-02 12:35 ` Bartlomiej Zolnierkiewicz
2014-06-02 13:07 ` Tomasz Figa
2014-06-02 13:07 ` Tomasz Figa
2014-06-02 12:35 ` [PATCH v2 6/7] ARM: EXYNOS: PM: fix register setup on EXYNOS4x12 for AFTR mode code Bartlomiej Zolnierkiewicz
2014-06-02 12:35 ` Bartlomiej Zolnierkiewicz
2014-06-02 13:10 ` Tomasz Figa
2014-06-02 13:10 ` Tomasz Figa
2014-06-02 12:35 ` [PATCH v2 7/7] ARM: EXYNOS: cpuidle: add secure firmware support to " Bartlomiej Zolnierkiewicz
2014-06-02 12:35 ` Bartlomiej Zolnierkiewicz
2014-06-02 13:15 ` Tomasz Figa
2014-06-02 13:15 ` Tomasz Figa
2014-06-02 13:40 ` Bartlomiej Zolnierkiewicz
2014-06-02 13:40 ` Bartlomiej Zolnierkiewicz
2014-06-02 16:28 ` Daniel Lezcano
2014-06-02 16:28 ` Daniel Lezcano
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=538C75C7.4030708@gmail.com \
--to=tomasz.figa@gmail.com \
--cc=b.zolnierkie@samsung.com \
--cc=daniel.lezcano@linaro.org \
--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.