@samitouri / QOSamiQemu / commits / 697910f67f

target/arm: Enable FEAT_FAMINMAX for -cpu max

Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20260522220306.235200-6-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

Richard Henderson committed May 22, 2026 at 15:02 UTC 697910f67f53537ab3cbf1799be9226d559bb385
3 files changed +6
docs/system/arm/emulation.rst
+1
@@ -68,6 +68,7 @@ the following architecture extensions:
68 - FEAT_EVT (Enhanced Virtualization Traps)
69 - FEAT_F32MM (Single-precision Matrix Multiplication)
70 - FEAT_F64MM (Double-precision Matrix Multiplication)
71 +- FEAT_FAMINMAX (Floating-point maximum and minimum absolute value instructions)
72 - FEAT_FCMA (Floating-point complex number instructions)
73 - FEAT_FGT (Fine-Grained Traps)
74 - FEAT_FHM (Floating-point half-precision multiplication instructions)
linux-user/aarch64/elfload.c
+1
@@ -218,6 +218,7 @@ abi_ulong get_elf_hwcap2(CPUState *cs)
218 GET_FEATURE_ID(aa64_sve_b16b16, ARM_HWCAP2_A64_SVE_B16B16);
219 GET_FEATURE_ID(aa64_cssc, ARM_HWCAP2_A64_CSSC);
220 GET_FEATURE_ID(aa64_lse128, ARM_HWCAP2_A64_LSE128);
221 + GET_FEATURE_ID(aa64_faminmax, ARM_HWCAP2_A64_FAMINMAX);
222
223 return hwcaps;
224 }
target/arm/tcg/cpu64.c
+4
@@ -1266,6 +1266,10 @@ void aarch64_max_tcg_initfn(Object *obj)
1266 t = FIELD_DP64(t, ID_AA64ISAR2, ATS1A, 1); /* FEAT_ATS1A */
1267 SET_IDREG(isar, ID_AA64ISAR2, t);
1268
1269 + t = GET_IDREG(isar, ID_AA64ISAR3);
1270 + t = FIELD_DP64(t, ID_AA64ISAR3, FAMINMAX, 1); /* FEAT_FAMINMAX */
1271 + SET_IDREG(isar, ID_AA64ISAR3, t);
1272 +
1273 t = GET_IDREG(isar, ID_AA64PFR0);
1274 t = FIELD_DP64(t, ID_AA64PFR0, FP, 1); /* FEAT_FP16 */
1275 t = FIELD_DP64(t, ID_AA64PFR0, ADVSIMD, 1); /* FEAT_FP16 */