From: Alistair Francis Date: Sat, 20 Apr 2019 02:27:35 +0000 (+0000) Subject: target/riscv: Add the HSTATUS register masks X-Git-Tag: v4.1.0-rc0~86^2~4 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=d28b15a4d3b1e000ec7bf9090fe870cbc5f1eb2c;p=users%2Fdwmw2%2Fqemu.git target/riscv: Add the HSTATUS register masks Signed-off-by: Alistair Francis Reviwed-by: Palmer Dabbelt Signed-off-by: Palmer Dabbelt --- diff --git a/target/riscv/cpu_bits.h b/target/riscv/cpu_bits.h index 52c2169977..a179137bc1 100644 --- a/target/riscv/cpu_bits.h +++ b/target/riscv/cpu_bits.h @@ -382,6 +382,24 @@ #define SSTATUS_SD SSTATUS64_SD #endif +/* hstatus CSR bits */ +#define HSTATUS_SPRV 0x00000001 +#define HSTATUS_STL 0x00000040 +#define HSTATUS_SPV 0x00000080 +#define HSTATUS_SP2P 0x00000100 +#define HSTATUS_SP2V 0x00000200 +#define HSTATUS_VTVM 0x00100000 +#define HSTATUS_VTSR 0x00400000 + +#define HSTATUS32_WPRI 0xFF8FF87E +#define HSTATUS64_WPRI 0xFFFFFFFFFF8FF87EULL + +#if defined(TARGET_RISCV32) +#define HSTATUS_WPRI HSTATUS32_WPRI +#elif defined(TARGET_RISCV64) +#define HSTATUS_WPRI HSTATUS64_WPRI +#endif + /* Privilege modes */ #define PRV_U 0 #define PRV_S 1