diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2026-06-09 12:20:48 -0700 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2026-06-10 16:54:40 +0100 |
| commit | a918a18f0ef682d57e9f34bbdcf2468580131137 (patch) | |
| tree | 53eea108c157211c8ea0236723906bc9a11874fd /linux-user | |
| parent | 215ad1fa328bcc7b70eec8509b6a0df01d18657a (diff) | |
| download | qemu-a918a18f0ef682d57e9f34bbdcf2468580131137.tar.gz qemu-a918a18f0ef682d57e9f34bbdcf2468580131137.zip | |
target/arm: Enable FEAT_FP8 for -cpu max
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20260609192110.752384-25-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'linux-user')
| -rw-r--r-- | linux-user/aarch64/elfload.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux-user/aarch64/elfload.c b/linux-user/aarch64/elfload.c index 5ed7a7badb..1c0c404b7c 100644 --- a/linux-user/aarch64/elfload.c +++ b/linux-user/aarch64/elfload.c @@ -222,6 +222,9 @@ abi_ulong get_elf_hwcap2(CPUState *cs) GET_FEATURE_ID(aa64_faminmax, ARM_HWCAP2_A64_FAMINMAX); GET_FEATURE_ID(aa64_fpmr, ARM_HWCAP2_A64_FPMR); GET_FEATURE_ID(aa64_lut, ARM_HWCAP2_A64_LUT); + GET_FEATURE_ID(aa64_f8cvt, ARM_HWCAP2_A64_F8CVT | + ARM_HWCAP2_A64_F8E4M3 | + ARM_HWCAP2_A64_F8E5M2); return hwcaps; } |
