Page MenuHomeFreeBSD

riscv timer: use stimecmp CSR when available
ClosedPublic

Authored by mhorne on May 23 2023, 5:16 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, May 10, 3:06 AM
Unknown Object (File)
Sun, May 5, 9:35 PM
Unknown Object (File)
Sun, May 5, 8:53 PM
Unknown Object (File)
Sun, Apr 28, 5:47 PM
Unknown Object (File)
Mon, Apr 22, 10:12 AM
Unknown Object (File)
Sun, Apr 21, 5:49 AM
Unknown Object (File)
Tue, Apr 16, 9:19 PM
Unknown Object (File)
Apr 3 2024, 11:18 PM

Details

Summary

The Sstc extension defines a new stimecmp CSR, allowing supervisor
software to set the timer, rather than just read it. When supported,
using this avoids the frequent trips through the SBI every time the
CPU's timer expires.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 51645
Build 48536: arc lint + arc unit

Event Timeline

This revision is now accepted and ready to land.May 23 2023, 9:03 PM

Thanks for adding this - I was recently trying to debug RISC-V issues using qemu tracing and the constant SBI calls meant that it made essentially zero progress since tracing slowed down qemu so much that the next timer interrupt fired once it returned from the sbi call.

This revision was automatically updated to reflect the committed changes.