diff options
author | Alistair Francis <alistair.francis@wdc.com> | 2019-06-17 18:31:19 -0700 |
---|---|---|
committer | Palmer Dabbelt <palmer@sifive.com> | 2019-06-25 03:05:41 -0700 |
commit | c9a73910c34a2147bcf6a3b5194d27abb19c2e54 (patch) | |
tree | b1d8957c266c8efbce73a3a72ffc7001d2551e8f /target/riscv/cpu.h | |
parent | bdddd44635a7d3b0f746e449ff7a02328bc2b405 (diff) | |
download | qemu-c9a73910c34a2147bcf6a3b5194d27abb19c2e54.zip qemu-c9a73910c34a2147bcf6a3b5194d27abb19c2e54.tar.gz qemu-c9a73910c34a2147bcf6a3b5194d27abb19c2e54.tar.bz2 |
target/riscv: Remove user version information
Remove the user version information. This was never used and never
publically exposed in a release of QEMU, so let's just remove it. In
future to manage versions we can extend the extension properties to
specify version.
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Palmer Dabbelt <palmer@sifive.com>
Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
Diffstat (limited to 'target/riscv/cpu.h')
-rw-r--r-- | target/riscv/cpu.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target/riscv/cpu.h b/target/riscv/cpu.h index d559d28..0855277 100644 --- a/target/riscv/cpu.h +++ b/target/riscv/cpu.h @@ -78,7 +78,6 @@ enum { RISCV_FEATURE_MISA }; -#define USER_VERSION_2_02_0 0x00020200 #define PRIV_VERSION_1_09_1 0x00010901 #define PRIV_VERSION_1_10_0 0x00011000 #define PRIV_VERSION_1_11_0 0x00011100 @@ -105,7 +104,6 @@ struct CPURISCVState { target_ulong badaddr; - target_ulong user_ver; target_ulong priv_ver; target_ulong misa; target_ulong misa_mask; |