[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v11 20/20] target/riscv: Expose zicfiss extension as a cpu proper
From: |
Deepak Gupta |
Subject: |
[PATCH v11 20/20] target/riscv: Expose zicfiss extension as a cpu property |
Date: |
Wed, 28 Aug 2024 10:47:38 -0700 |
Signed-off-by: Deepak Gupta <debug@rivosinc.com>
---
target/riscv/cpu.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/target/riscv/cpu.c b/target/riscv/cpu.c
index c5ebcefeb5..2592465e24 100644
--- a/target/riscv/cpu.c
+++ b/target/riscv/cpu.c
@@ -1485,6 +1485,7 @@ const RISCVCPUMultiExtConfig riscv_cpu_extensions[] = {
MULTI_EXT_CFG_BOOL("sscofpmf", ext_sscofpmf, false),
MULTI_EXT_CFG_BOOL("zifencei", ext_zifencei, true),
MULTI_EXT_CFG_BOOL("zicfilp", ext_zicfilp, false),
+ MULTI_EXT_CFG_BOOL("zicfiss", ext_zicfiss, false),
MULTI_EXT_CFG_BOOL("zicsr", ext_zicsr, true),
MULTI_EXT_CFG_BOOL("zihintntl", ext_zihintntl, true),
MULTI_EXT_CFG_BOOL("zihintpause", ext_zihintpause, true),
--
2.44.0
- Re: [PATCH v11 14/20] target/riscv: AMO operations always raise store/AMO fault, (continued)
- [PATCH v11 17/20] target/riscv: compressed encodings for sspush and sspopchk, Deepak Gupta, 2024/08/28
- [PATCH v11 13/20] target/riscv: mmu changes for zicfiss shadow stack protection, Deepak Gupta, 2024/08/28
- [PATCH v11 18/20] disas/riscv: enable disassembly for zicfiss instructions, Deepak Gupta, 2024/08/28
- [PATCH v11 20/20] target/riscv: Expose zicfiss extension as a cpu property,
Deepak Gupta <=
- [PATCH v11 19/20] disas/riscv: enable disassembly for compressed sspush/sspopchk, Deepak Gupta, 2024/08/28
- [PATCH v11 15/20] target/riscv: update `decode_save_opc` to store extra word2, Deepak Gupta, 2024/08/28
- Re: [PATCH v11 00/20] riscv support for control flow integrity extensions, Deepak Gupta, 2024/08/28