[arch][riscv] add SSTC extension support

Pretty simple extension, just directly set the supervisor timer compare
register (new) instead of calling through to SBI to set it for you.
This commit is contained in:
Travis Geiselbrecht
2024-06-02 15:29:53 -07:00
parent b9c3603c59
commit c4effaeef0
2 changed files with 15 additions and 1 deletions

View File

@@ -58,6 +58,9 @@
#if RISCV_S_MODE // Supervisor-mode only CSRs
#define RISCV_CSR_SATP satp
// sstc feature
#define RISCV_CSR_STIMECMP stimecmp
#define RISCV_CSR_STIMECMPH stimecmph
#endif
#define RISCV_CSR_XSTATUS_IE (1ul << (RISCV_XMODE_OFFSET + 0))

View File

@@ -11,6 +11,8 @@
#include <lk/err.h>
#include <lk/trace.h>
#include <arch/riscv/feature.h>
#include <arch/riscv.h>
#include <arch/ops.h>
@@ -39,7 +41,16 @@ status_t platform_set_oneshot_timer (platform_timer_callback callback, void *arg
#if RISCV_M_MODE
clint_set_timer(ticks);
#elif RISCV_S_MODE
sbi_set_timer(ticks);
if (riscv_feature_test(RISCV_FEAT_SSTC)) {
#if __riscv_xlen == 64
riscv_csr_write(RISCV_CSR_STIMECMP, ticks);
#else
riscv_csr_write(RISCV_CSR_STIMECMPH, ticks >> 32);
riscv_csr_write(RISCV_CSR_STIMECMP, ticks);
#endif
} else {
sbi_set_timer(ticks);
}
#endif
return NO_ERROR;