diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2025-08-26 11:21:30 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2025-08-30 16:37:22 +0100 |
commit | 7494f8bbfbb030c5c40a42e4d71430115e4f7a63 (patch) | |
tree | b6c1d4beeeab185505dbf8b730798fdb7bc0eb26 /linux-user | |
parent | 994a260feac452ca478af5bd4ba4bff45b889b6e (diff) | |
download | qemu-7494f8bbfbb030c5c40a42e4d71430115e4f7a63.zip qemu-7494f8bbfbb030c5c40a42e4d71430115e4f7a63.tar.gz qemu-7494f8bbfbb030c5c40a42e4d71430115e4f7a63.tar.bz2 |
target/arm: Enable FEAT_CSSC for -cpu max
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20250803014019.416797-7-richard.henderson@linaro.org
[PMM: rebased to handle linux-user elfload.c refactor]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/aarch64/elfload.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/aarch64/elfload.c b/linux-user/aarch64/elfload.c index 8076968..dd5f343 100644 --- a/linux-user/aarch64/elfload.c +++ b/linux-user/aarch64/elfload.c @@ -215,6 +215,7 @@ abi_ulong get_elf_hwcap2(CPUState *cs) GET_FEATURE_ID(aa64_sme_b16b16, ARM_HWCAP2_A64_SME_B16B16); GET_FEATURE_ID(aa64_sme_f16f16, ARM_HWCAP2_A64_SME_F16F16); GET_FEATURE_ID(aa64_sve_b16b16, ARM_HWCAP2_A64_SVE_B16B16); + GET_FEATURE_ID(aa64_cssc, ARM_HWCAP2_A64_CSSC); return hwcaps; } |