]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
riscv: clocksource: Fix stimecmp update hazard on RV32
authorNaohiko Shimizu <naohiko.shimizu@gmail.com>
Sun, 4 Jan 2026 13:59:36 +0000 (22:59 +0900)
committerPaul Walmsley <pjw@kernel.org>
Thu, 15 Jan 2026 00:42:46 +0000 (17:42 -0700)
commiteaa9bb1d39d59e7c17b06cec12622b7c586ab629
tree77d6a1f31b450f722dcc17852e72bb8f3068ef7e
parent69132c2d4c11858fa43edeb19a911eab625567f9
riscv: clocksource: Fix stimecmp update hazard on RV32

On RV32, updating the 64-bit stimecmp (or vstimecmp) CSR requires two
separate 32-bit writes. A race condition exists if the timer triggers
during these two writes.

The RISC-V Privileged Specification (e.g., Section 3.2.1 for mtimecmp)
recommends a specific 3-step sequence to avoid spurious interrupts
when updating 64-bit comparison registers on 32-bit systems:

1. Set the low-order bits (stimecmp) to all ones (ULONG_MAX).
2. Set the high-order bits (stimecmph) to the desired value.
3. Set the low-order bits (stimecmp) to the desired value.

Current implementation writes the LSB first without ensuring a future
value, which may lead to a transient state where the 64-bit comparison
is incorrectly evaluated as "expired" by the hardware. This results in
spurious timer interrupts.

This patch adopts the spec-recommended 3-step sequence to ensure the
intermediate 64-bit state is never smaller than the current time.

Fixes: 9f7a8ff6391f ("RISC-V: Prefer sstc extension if available")
Signed-off-by: Naohiko Shimizu <naohiko.shimizu@gmail.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
Link: https://patch.msgid.link/20260104135938.524-2-naohiko.shimizu@gmail.com
Signed-off-by: Paul Walmsley <pjw@kernel.org>
drivers/clocksource/timer-riscv.c