From: Bin Meng Date: Tue, 28 Feb 2023 13:45:31 +0000 (+0800) Subject: target/riscv: Allow debugger to access seed CSR X-Git-Tag: coverity-fixes-pull-request~73^2~8^2~4 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=ddb10742f1acce17dbb8f3551af01bf5bfc4fa14;p=qemu-nvme.git target/riscv: Allow debugger to access seed CSR At present seed CSR is not reported in the CSR XML hence gdb cannot access it. Fix it by adding a debugger check in its predicate() routine. Signed-off-by: Bin Meng Reviewed-by: Weiwei Li Reviewed-by: LIU Zhiwei Message-ID: <20230228104035.1879882-15-bmeng@tinylab.org> Signed-off-by: Palmer Dabbelt --- diff --git a/target/riscv/csr.c b/target/riscv/csr.c index 10ae5df5e6..15b23b9b5a 100644 --- a/target/riscv/csr.c +++ b/target/riscv/csr.c @@ -459,6 +459,10 @@ static RISCVException seed(CPURISCVState *env, int csrno) } #if !defined(CONFIG_USER_ONLY) + if (env->debugger) { + return RISCV_EXCP_NONE; + } + /* * With a CSR read-write instruction: * 1) The seed CSR is always available in machine mode as normal.