From: catalin.marinas@arm.com (Catalin Marinas)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v5 2/5] ARM: arch_timer: add support to configure and enable event stream
Date: Thu, 29 Aug 2013 12:24:21 +0100 [thread overview]
Message-ID: <20130829112421.GF13704@arm.com> (raw)
In-Reply-To: <1377686689-30828-3-git-send-email-Sudeep.KarkadaNagesha@arm.com>
On Wed, Aug 28, 2013 at 11:44:46AM +0100, Sudeep KarkadaNagesha wrote:
> From: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
>
> This patch adds support for configuring the event stream frequency
> and enabling it.
>
> It also adds the hwcaps definitions to the user to detect this event
> stream feature.
>
> Cc: Russell King <linux@arm.linux.org.uk>
> Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
> Cc: Will Deacon <will.deacon@arm.com>
> Cc: Catalin Marinas <catalin.marinas@arm.com>
> Signed-off-by: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
> ---
> arch/arm/include/asm/arch_timer.h | 33 ++++++++++++++++++++++++++++-----
> arch/arm/include/uapi/asm/hwcap.h | 1 +
> arch/arm/kernel/setup.c | 1 +
> 3 files changed, 30 insertions(+), 5 deletions(-)
>
> diff --git a/arch/arm/include/asm/arch_timer.h b/arch/arm/include/asm/arch_timer.h
> index 1a3e967..4e38609 100644
> --- a/arch/arm/include/asm/arch_timer.h
> +++ b/arch/arm/include/asm/arch_timer.h
> @@ -89,22 +89,45 @@ static inline u64 arch_counter_get_cntvct(void)
> return cval;
> }
>
> -static inline void arch_counter_set_user_access(void)
> +static inline u32 arch_timer_get_cntkctl(void)
> {
> u32 cntkctl;
> -
> asm volatile("mrc p15, 0, %0, c14, c1, 0" : "=r" (cntkctl));
> + return cntkctl;
> +}
> +
> +static inline void arch_timer_set_cntkctl(u32 cntkctl)
> +{
> + asm volatile("mcr p15, 0, %0, c14, c1, 0" : : "r" (cntkctl));
> +}
> +
> +static inline void arch_counter_set_user_access(void)
> +{
> + u32 cntkctl = arch_timer_get_cntkctl();
>
> /* Disable user access to both physical/virtual counters/timers */
> - /* Also disable virtual event stream */
> cntkctl &= ~(ARCH_TIMER_USR_PT_ACCESS_EN
> | ARCH_TIMER_USR_VT_ACCESS_EN
> - | ARCH_TIMER_VIRT_EVT_EN
> | ARCH_TIMER_USR_VCT_ACCESS_EN
> | ARCH_TIMER_USR_PCT_ACCESS_EN);
> + arch_timer_set_cntkctl(cntkctl);
> +}
You can keep the ARCH_TIMER_VIRT_EVT_EN clearing here, especially if we
drop the bool enable argument to arch_timer_evtstrm_config(). You can
add the same clearing to arm64 in one of the latter patches.
--
Catalin
WARNING: multiple messages have this Message-ID (diff)
From: Catalin Marinas <catalin.marinas@arm.com>
To: Sudeep KarkadaNagesha <Sudeep.KarkadaNagesha@arm.com>
Cc: "linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Lorenzo Pieralisi <Lorenzo.Pieralisi@arm.com>,
Will Deacon <Will.Deacon@arm.com>,
Thomas Gleixner <tglx@linutronix.de>,
Daniel Lezcano <daniel.lezcano@linaro.org>,
Russell King <linux@arm.linux.org.uk>
Subject: Re: [PATCH v5 2/5] ARM: arch_timer: add support to configure and enable event stream
Date: Thu, 29 Aug 2013 12:24:21 +0100 [thread overview]
Message-ID: <20130829112421.GF13704@arm.com> (raw)
In-Reply-To: <1377686689-30828-3-git-send-email-Sudeep.KarkadaNagesha@arm.com>
On Wed, Aug 28, 2013 at 11:44:46AM +0100, Sudeep KarkadaNagesha wrote:
> From: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
>
> This patch adds support for configuring the event stream frequency
> and enabling it.
>
> It also adds the hwcaps definitions to the user to detect this event
> stream feature.
>
> Cc: Russell King <linux@arm.linux.org.uk>
> Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
> Cc: Will Deacon <will.deacon@arm.com>
> Cc: Catalin Marinas <catalin.marinas@arm.com>
> Signed-off-by: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
> ---
> arch/arm/include/asm/arch_timer.h | 33 ++++++++++++++++++++++++++++-----
> arch/arm/include/uapi/asm/hwcap.h | 1 +
> arch/arm/kernel/setup.c | 1 +
> 3 files changed, 30 insertions(+), 5 deletions(-)
>
> diff --git a/arch/arm/include/asm/arch_timer.h b/arch/arm/include/asm/arch_timer.h
> index 1a3e967..4e38609 100644
> --- a/arch/arm/include/asm/arch_timer.h
> +++ b/arch/arm/include/asm/arch_timer.h
> @@ -89,22 +89,45 @@ static inline u64 arch_counter_get_cntvct(void)
> return cval;
> }
>
> -static inline void arch_counter_set_user_access(void)
> +static inline u32 arch_timer_get_cntkctl(void)
> {
> u32 cntkctl;
> -
> asm volatile("mrc p15, 0, %0, c14, c1, 0" : "=r" (cntkctl));
> + return cntkctl;
> +}
> +
> +static inline void arch_timer_set_cntkctl(u32 cntkctl)
> +{
> + asm volatile("mcr p15, 0, %0, c14, c1, 0" : : "r" (cntkctl));
> +}
> +
> +static inline void arch_counter_set_user_access(void)
> +{
> + u32 cntkctl = arch_timer_get_cntkctl();
>
> /* Disable user access to both physical/virtual counters/timers */
> - /* Also disable virtual event stream */
> cntkctl &= ~(ARCH_TIMER_USR_PT_ACCESS_EN
> | ARCH_TIMER_USR_VT_ACCESS_EN
> - | ARCH_TIMER_VIRT_EVT_EN
> | ARCH_TIMER_USR_VCT_ACCESS_EN
> | ARCH_TIMER_USR_PCT_ACCESS_EN);
> + arch_timer_set_cntkctl(cntkctl);
> +}
You can keep the ARCH_TIMER_VIRT_EVT_EN clearing here, especially if we
drop the bool enable argument to arch_timer_evtstrm_config(). You can
add the same clearing to arm64 in one of the latter patches.
--
Catalin
next prev parent reply other threads:[~2013-08-29 11:24 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-28 10:44 [PATCH v5 0/5] ARM/ARM64 architected timer updates Sudeep KarkadaNagesha
2013-08-28 10:44 ` Sudeep KarkadaNagesha
2013-08-28 10:44 ` [PATCH v5 1/5] ARM/ARM64: arch_timer: add macros for bits in control register Sudeep KarkadaNagesha
2013-08-28 10:44 ` Sudeep KarkadaNagesha
2013-08-28 10:44 ` [PATCH v5 2/5] ARM: arch_timer: add support to configure and enable event stream Sudeep KarkadaNagesha
2013-08-28 10:44 ` Sudeep KarkadaNagesha
2013-08-29 11:24 ` Catalin Marinas [this message]
2013-08-29 11:24 ` Catalin Marinas
2013-08-28 10:44 ` [PATCH v5 3/5] ARM64: " Sudeep KarkadaNagesha
2013-08-28 10:44 ` Sudeep KarkadaNagesha
2013-08-29 11:22 ` Catalin Marinas
2013-08-29 11:22 ` Catalin Marinas
2013-08-28 10:44 ` [PATCH v5 4/5] drivers: clocksource: add support for ARM architected timer " Sudeep KarkadaNagesha
2013-08-28 10:44 ` Sudeep KarkadaNagesha
2013-08-29 11:19 ` Catalin Marinas
2013-08-29 11:19 ` Catalin Marinas
2013-08-28 10:44 ` [PATCH v5 5/5] drivers: clocksource: add CPU PM notifier for ARM architected timer Sudeep KarkadaNagesha
2013-08-28 10:44 ` Sudeep KarkadaNagesha
2013-08-28 10:55 ` Sudeep KarkadaNagesha
2013-08-28 10:55 ` Sudeep KarkadaNagesha
2015-02-19 13:03 ` Venkappa Mala
2015-02-19 14:16 ` Sudeep Holla
2015-02-19 14:16 ` Sudeep Holla
2015-02-19 16:03 ` Venkappa Mala
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=20130829112421.GF13704@arm.com \
--to=catalin.marinas@arm.com \
--cc=linux-arm-kernel@lists.infradead.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.