This is an automated email from Gerrit. "Jerry Zhang Jian <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9805
-- gerrit commit f320384950cc5d8fa1577f9adffa79ecc7410143 Author: Jerry Zhang Jian <[email protected]> Date: Tue Jul 21 15:33:07 2026 +0800 target/riscv: add Ssqosid srmcfg CSR Add the supervisor resource management configuration CSR (srmcfg) from the Ssqosid extension. Change-Id: Ia1d944935187eb5fd34d4b0a79a9862009dc35ac Signed-off-by: Jerry Zhang Jian <[email protected]> diff --git a/src/target/riscv/encoding.h b/src/target/riscv/encoding.h index 2f91b57716..288323884b 100644 --- a/src/target/riscv/encoding.h +++ b/src/target/riscv/encoding.h @@ -2859,6 +2859,7 @@ #define CSR_STOPEI 0x15c #define CSR_SCTRDEPTH 0x15f #define CSR_SATP 0x180 +#define CSR_SRMCFG 0x181 #define CSR_SCONTEXT 0x5a8 #define CSR_VSSTATUS 0x200 #define CSR_VSIE 0x204 @@ -4636,6 +4637,7 @@ DECLARE_CSR(sireg6, CSR_SIREG6) DECLARE_CSR(stopei, CSR_STOPEI) DECLARE_CSR(sctrdepth, CSR_SCTRDEPTH) DECLARE_CSR(satp, CSR_SATP) +DECLARE_CSR(srmcfg, CSR_SRMCFG) DECLARE_CSR(scontext, CSR_SCONTEXT) DECLARE_CSR(vsstatus, CSR_VSSTATUS) DECLARE_CSR(vsie, CSR_VSIE) --
