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)
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)
Wed, Apr 3, 11:18 PM
Unknown Object (File)
Feb 18 2024, 8:29 AM
Unknown Object (File)
Feb 15 2024, 11:10 AM
Unknown Object (File)
Dec 12 2023, 3:02 AM
Unknown Object (File)
Nov 26 2023, 10:49 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 Not Applicable
Unit
Tests Not Applicable

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.