Re: [PATCH v3 16/21] target/riscv: adding high part of some csrs

2021-10-20 Thread Richard Henderson
On 10/19/21 2:48 AM, Frédéric Pétrot wrote: Adding the high part of a minimal set of csr. Signed-off-by: Frédéric Pétrot Co-authored-by: Fabien Portas --- target/riscv/cpu.h | 7 +++ 1 file changed, 7 insertions(+) diff --git a/target/riscv/cpu.h b/target/riscv/cpu.h index 8b96ccb37a..

Re: [PATCH v3 16/21] target/riscv: adding high part of some csrs

2021-10-20 Thread Richard Henderson
On 10/19/21 2:48 AM, Frédéric Pétrot wrote: +/* Upper 64-bits of 128-bit CSRs */ +uint64_t mtvech; +uint64_t mscratchh; +uint64_t mepch; +uint64_t satph; +uint64_t mstatush; Needs adding to the same machine.c subsection as the gprs. Otherwise, Reviewed-by: Richard Hende

[PATCH v3 16/21] target/riscv: adding high part of some csrs

2021-10-19 Thread Frédéric Pétrot
Adding the high part of a minimal set of csr. Signed-off-by: Frédéric Pétrot Co-authored-by: Fabien Portas --- target/riscv/cpu.h | 7 +++ 1 file changed, 7 insertions(+) diff --git a/target/riscv/cpu.h b/target/riscv/cpu.h index 8b96ccb37a..27ec4fec63 100644 --- a/target/riscv/cpu.h +++ b