diff options
author | Weiwei Li <liweiwei@iscas.ac.cn> | 2022-04-23 10:34:57 +0800 |
---|---|---|
committer | Alistair Francis <alistair.francis@wdc.com> | 2022-04-29 10:47:45 +1000 |
commit | eef82872be58f4e0362319bfe4348bbe4ad71c5b (patch) | |
tree | 6c957a80f5f732a6e2e592eb0f0a04842e539d56 /target/riscv/cpu.h | |
parent | 9951ba948a359c595f6216dcf399cb6232426e98 (diff) | |
download | qemu-eef82872be58f4e0362319bfe4348bbe4ad71c5b.zip qemu-eef82872be58f4e0362319bfe4348bbe4ad71c5b.tar.gz qemu-eef82872be58f4e0362319bfe4348bbe4ad71c5b.tar.bz2 |
target/riscv: rvk: add cfg properties for zbk* and zk*
Signed-off-by: Weiwei Li <liweiwei@iscas.ac.cn>
Signed-off-by: Junqiang Wang <wangjunqiang@iscas.ac.cn>
Acked-by: Alistair Francis <alistair.francis@wdc.com>
Message-Id: <20220423023510.30794-2-liweiwei@iscas.ac.cn>
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Diffstat (limited to 'target/riscv/cpu.h')
-rw-r--r-- | target/riscv/cpu.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/target/riscv/cpu.h b/target/riscv/cpu.h index 46c66fb..fe6c9a2 100644 --- a/target/riscv/cpu.h +++ b/target/riscv/cpu.h @@ -377,7 +377,20 @@ struct RISCVCPUConfig { bool ext_zba; bool ext_zbb; bool ext_zbc; + bool ext_zbkb; + bool ext_zbkc; + bool ext_zbkx; bool ext_zbs; + bool ext_zk; + bool ext_zkn; + bool ext_zknd; + bool ext_zkne; + bool ext_zknh; + bool ext_zkr; + bool ext_zks; + bool ext_zksed; + bool ext_zksh; + bool ext_zkt; bool ext_counters; bool ext_ifencei; bool ext_icsr; |