* [PATCH v3] clocksource: timer-riscv: Clear timer interrupt on timer initialization
@ 2024-03-06 17:23 Ley Foon Tan
2024-03-12 17:40 ` Samuel Holland
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Ley Foon Tan @ 2024-03-06 17:23 UTC (permalink / raw)
To: Daniel Lezcano, Thomas Gleixner, Palmer Dabbelt, Paul Walmsley,
Albert Ou
Cc: atishp, Samuel Holland, Anup Patel, linux-riscv, linux-kernel,
Ley Foon Tan, stable
In the RISC-V specification, the stimecmp register doesn't have a default
value. To prevent the timer interrupt from being triggered during timer
initialization, clear the timer interrupt by writing stimecmp with a
maximum value.
Fixes: 9f7a8ff6391f ("RISC-V: Prefer sstc extension if available")
Cc: <stable@vger.kernel.org>
Signed-off-by: Ley Foon Tan <leyfoon.tan@starfivetech.com>
---
v3:
Resolved comment from Samuel Holland.
- Function riscv_clock_event_stop() needs to be called before
clockevents_config_and_register(), move riscv_clock_event_stop().
v2:
Resolved comments from Anup.
- Moved riscv_clock_event_stop() to riscv_timer_starting_cpu().
- Added Fixes tag
---
drivers/clocksource/timer-riscv.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/clocksource/timer-riscv.c b/drivers/clocksource/timer-riscv.c
index e66dcbd66566..79bb9a98baa7 100644
--- a/drivers/clocksource/timer-riscv.c
+++ b/drivers/clocksource/timer-riscv.c
@@ -108,6 +108,9 @@ static int riscv_timer_starting_cpu(unsigned int cpu)
{
struct clock_event_device *ce = per_cpu_ptr(&riscv_clock_event, cpu);
+ /* Clear timer interrupt */
+ riscv_clock_event_stop();
+
ce->cpumask = cpumask_of(cpu);
ce->irq = riscv_clock_event_irq;
if (riscv_timer_cannot_wake_cpu)
--
2.43.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v3] clocksource: timer-riscv: Clear timer interrupt on timer initialization
2024-03-06 17:23 [PATCH v3] clocksource: timer-riscv: Clear timer interrupt on timer initialization Ley Foon Tan
@ 2024-03-12 17:40 ` Samuel Holland
2024-03-12 19:08 ` Atish Kumar Patra
2024-03-13 11:11 ` Daniel Lezcano
2024-03-18 10:07 ` [tip: timers/core] clocksource/drivers/timer-riscv: " tip-bot2 for Ley Foon Tan
2 siblings, 1 reply; 5+ messages in thread
From: Samuel Holland @ 2024-03-12 17:40 UTC (permalink / raw)
To: Ley Foon Tan, Daniel Lezcano, Thomas Gleixner, Palmer Dabbelt,
Paul Walmsley, Albert Ou
Cc: atishp, Anup Patel, linux-riscv, linux-kernel, Ley Foon Tan, stable
On 2024-03-06 11:23 AM, Ley Foon Tan wrote:
> In the RISC-V specification, the stimecmp register doesn't have a default
> value. To prevent the timer interrupt from being triggered during timer
> initialization, clear the timer interrupt by writing stimecmp with a
> maximum value.
>
> Fixes: 9f7a8ff6391f ("RISC-V: Prefer sstc extension if available")
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Ley Foon Tan <leyfoon.tan@starfivetech.com>
>
> ---
> v3:
> Resolved comment from Samuel Holland.
> - Function riscv_clock_event_stop() needs to be called before
> clockevents_config_and_register(), move riscv_clock_event_stop().
>
> v2:
> Resolved comments from Anup.
> - Moved riscv_clock_event_stop() to riscv_timer_starting_cpu().
> - Added Fixes tag
> ---
> drivers/clocksource/timer-riscv.c | 3 +++
> 1 file changed, 3 insertions(+)
Reviewed-by: Samuel Holland <samuel.holland@sifive.com>
Tested-by: Samuel Holland <samuel.holland@sifive.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v3] clocksource: timer-riscv: Clear timer interrupt on timer initialization
2024-03-12 17:40 ` Samuel Holland
@ 2024-03-12 19:08 ` Atish Kumar Patra
0 siblings, 0 replies; 5+ messages in thread
From: Atish Kumar Patra @ 2024-03-12 19:08 UTC (permalink / raw)
To: Samuel Holland
Cc: Ley Foon Tan, Daniel Lezcano, Thomas Gleixner, Palmer Dabbelt,
Paul Walmsley, Albert Ou, Anup Patel, linux-riscv, linux-kernel,
Ley Foon Tan, stable
On Tue, Mar 12, 2024 at 10:40 AM Samuel Holland
<samuel.holland@sifive.com> wrote:
>
> On 2024-03-06 11:23 AM, Ley Foon Tan wrote:
> > In the RISC-V specification, the stimecmp register doesn't have a default
> > value. To prevent the timer interrupt from being triggered during timer
> > initialization, clear the timer interrupt by writing stimecmp with a
> > maximum value.
> >
> > Fixes: 9f7a8ff6391f ("RISC-V: Prefer sstc extension if available")
> > Cc: <stable@vger.kernel.org>
> > Signed-off-by: Ley Foon Tan <leyfoon.tan@starfivetech.com>
> >
> > ---
> > v3:
> > Resolved comment from Samuel Holland.
> > - Function riscv_clock_event_stop() needs to be called before
> > clockevents_config_and_register(), move riscv_clock_event_stop().
> >
> > v2:
> > Resolved comments from Anup.
> > - Moved riscv_clock_event_stop() to riscv_timer_starting_cpu().
> > - Added Fixes tag
> > ---
> > drivers/clocksource/timer-riscv.c | 3 +++
> > 1 file changed, 3 insertions(+)
>
> Reviewed-by: Samuel Holland <samuel.holland@sifive.com>
> Tested-by: Samuel Holland <samuel.holland@sifive.com>
>
Reviewed-by: Atish Patra <atishp@rivosinc.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v3] clocksource: timer-riscv: Clear timer interrupt on timer initialization
2024-03-06 17:23 [PATCH v3] clocksource: timer-riscv: Clear timer interrupt on timer initialization Ley Foon Tan
2024-03-12 17:40 ` Samuel Holland
@ 2024-03-13 11:11 ` Daniel Lezcano
2024-03-18 10:07 ` [tip: timers/core] clocksource/drivers/timer-riscv: " tip-bot2 for Ley Foon Tan
2 siblings, 0 replies; 5+ messages in thread
From: Daniel Lezcano @ 2024-03-13 11:11 UTC (permalink / raw)
To: Ley Foon Tan, Thomas Gleixner, Palmer Dabbelt, Paul Walmsley, Albert Ou
Cc: atishp, Samuel Holland, Anup Patel, linux-riscv, linux-kernel,
Ley Foon Tan, stable
On 06/03/2024 18:23, Ley Foon Tan wrote:
> In the RISC-V specification, the stimecmp register doesn't have a default
> value. To prevent the timer interrupt from being triggered during timer
> initialization, clear the timer interrupt by writing stimecmp with a
> maximum value.
>
> Fixes: 9f7a8ff6391f ("RISC-V: Prefer sstc extension if available")
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Ley Foon Tan <leyfoon.tan@starfivetech.com>
>
> ---
Applied, thanks
--
<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
^ permalink raw reply [flat|nested] 5+ messages in thread
* [tip: timers/core] clocksource/drivers/timer-riscv: Clear timer interrupt on timer initialization
2024-03-06 17:23 [PATCH v3] clocksource: timer-riscv: Clear timer interrupt on timer initialization Ley Foon Tan
2024-03-12 17:40 ` Samuel Holland
2024-03-13 11:11 ` Daniel Lezcano
@ 2024-03-18 10:07 ` tip-bot2 for Ley Foon Tan
2 siblings, 0 replies; 5+ messages in thread
From: tip-bot2 for Ley Foon Tan @ 2024-03-18 10:07 UTC (permalink / raw)
To: linux-tip-commits
Cc: stable, Ley Foon Tan, Samuel Holland, Atish Patra,
Daniel Lezcano, x86, linux-kernel
The following commit has been merged into the timers/core branch of tip:
Commit-ID: 8248ca30ef89f9cc74ace62ae1b9a22b5f16736c
Gitweb: https://git.kernel.org/tip/8248ca30ef89f9cc74ace62ae1b9a22b5f16736c
Author: Ley Foon Tan <leyfoon.tan@starfivetech.com>
AuthorDate: Thu, 07 Mar 2024 01:23:30 +08:00
Committer: Daniel Lezcano <daniel.lezcano@linaro.org>
CommitterDate: Wed, 13 Mar 2024 12:08:59 +01:00
clocksource/drivers/timer-riscv: Clear timer interrupt on timer initialization
In the RISC-V specification, the stimecmp register doesn't have a default
value. To prevent the timer interrupt from being triggered during timer
initialization, clear the timer interrupt by writing stimecmp with a
maximum value.
Fixes: 9f7a8ff6391f ("RISC-V: Prefer sstc extension if available")
Cc: <stable@vger.kernel.org>
Signed-off-by: Ley Foon Tan <leyfoon.tan@starfivetech.com>
Reviewed-by: Samuel Holland <samuel.holland@sifive.com>
Tested-by: Samuel Holland <samuel.holland@sifive.com>
Reviewed-by: Atish Patra <atishp@rivosinc.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20240306172330.255844-1-leyfoon.tan@starfivetech.com
---
drivers/clocksource/timer-riscv.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/clocksource/timer-riscv.c b/drivers/clocksource/timer-riscv.c
index e66dcbd..79bb9a9 100644
--- a/drivers/clocksource/timer-riscv.c
+++ b/drivers/clocksource/timer-riscv.c
@@ -108,6 +108,9 @@ static int riscv_timer_starting_cpu(unsigned int cpu)
{
struct clock_event_device *ce = per_cpu_ptr(&riscv_clock_event, cpu);
+ /* Clear timer interrupt */
+ riscv_clock_event_stop();
+
ce->cpumask = cpumask_of(cpu);
ce->irq = riscv_clock_event_irq;
if (riscv_timer_cannot_wake_cpu)
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-03-18 10:07 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-06 17:23 [PATCH v3] clocksource: timer-riscv: Clear timer interrupt on timer initialization Ley Foon Tan
2024-03-12 17:40 ` Samuel Holland
2024-03-12 19:08 ` Atish Kumar Patra
2024-03-13 11:11 ` Daniel Lezcano
2024-03-18 10:07 ` [tip: timers/core] clocksource/drivers/timer-riscv: " tip-bot2 for Ley Foon Tan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®