qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 13/18] target/riscv: Allow debugger to access seed CSR


From: weiwei
Subject: Re: [PATCH 13/18] target/riscv: Allow debugger to access seed CSR
Date: Tue, 14 Feb 2023 17:18:50 +0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.7.1


On 2023/2/14 09:09, Bin Meng wrote:
At present seed CSR is not reported in the CSR XML hence gdb cannot
access it.

Fix it by addding a debugger check in its predicate() routine.

typo: adding

Otherwise, Reviewed-by: Weiwei Li <liweiwei@iscas.ac.cn>

Regards,
Weiwei Li


Signed-off-by: Bin Meng <bmeng@tinylab.org>
---

  target/riscv/csr.c | 4 ++++
  1 file changed, 4 insertions(+)

diff --git a/target/riscv/csr.c b/target/riscv/csr.c
index 515b05348b..f1075b5728 100644
--- a/target/riscv/csr.c
+++ b/target/riscv/csr.c
@@ -458,6 +458,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.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]