From: Frank Chang <frank.chang@sifive.com>
MISA.C is set if the following extensions are selected:
* Zca and not F.
* Zca, Zcf and F (but not D) is specified (RV32 only).
* Zca, Zcf and Zcd if D is specified (RV32 only).
* Zca, Zcd if D is specified (RV64 only).
Therefore, MISA.C must be set according to the Zc* extension rules.
Warn the user if RVC is explicitly disabled but MISA.C is required by
the rules above.
Signed-off-by: Frank Chang <frank.chang@sifive.com>
Reviewed-by: Max Chou <max.chou@sifive.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-ID: <20260424050509.3935180-2-frank.chang@sifive.com>
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
---
target/riscv/tcg/tcg-cpu.c | 39 ++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/target/riscv/tcg/tcg-cpu.c b/target/riscv/tcg/tcg-cpu.c
index 02c98cc2db..216c5f9f76 100644
--- a/target/riscv/tcg/tcg-cpu.c
+++ b/target/riscv/tcg/tcg-cpu.c
@@ -1163,6 +1163,44 @@ static void riscv_cpu_enable_implied_rules(RISCVCPU *cpu)
}
}
+/*
+ * MISA.C is set if the following extensions are selected:
+ * - Zca and not F.
+ * - Zca, Zcf and F (but not D) is specified on RV32.
+ * - Zca, Zcf and Zcd if D is specified on RV32.
+ * - Zca, Zcd if D is specified on RV64.
+ */
+static void riscv_cpu_update_misa_c(RISCVCPU *cpu)
+{
+ CPURISCVState *env = &cpu->env;
+ bool set_misa_c = false;
+
+ if (riscv_has_ext(env, RVC)) {
+ return;
+ }
+
+ if (cpu->cfg.ext_zca && !riscv_has_ext(env, RVF)) {
+ set_misa_c = true;
+ } else if (riscv_cpu_mxl(env) == MXL_RV32 &&
+ cpu->cfg.ext_zca && cpu->cfg.ext_zcf &&
+ (riscv_has_ext(env, RVD) ? cpu->cfg.ext_zcd :
+ riscv_has_ext(env, RVF))) {
+ set_misa_c = true;
+ } else if (riscv_cpu_mxl(env) == MXL_RV64 &&
+ cpu->cfg.ext_zca && cpu->cfg.ext_zcd) {
+ set_misa_c = true;
+ }
+
+ if (set_misa_c) {
+ if (cpu_misa_ext_is_user_set(RVC)) {
+ warn_report("RVC mandated by Zca/Zcf/Zcd extensions");
+ return;
+ }
+
+ riscv_cpu_set_misa_ext(env, env->misa_ext | RVC);
+ }
+}
+
void riscv_tcg_cpu_finalize_features(RISCVCPU *cpu, Error **errp)
{
CPURISCVState *env = &cpu->env;
@@ -1170,6 +1208,7 @@ void riscv_tcg_cpu_finalize_features(RISCVCPU *cpu, Error **errp)
riscv_cpu_init_implied_exts_rules();
riscv_cpu_enable_implied_rules(cpu);
+ riscv_cpu_update_misa_c(cpu);
riscv_cpu_validate_misa_priv(env, &local_err);
if (local_err != NULL) {
--
2.53.0