aboutsummaryrefslogtreecommitdiff
path: root/linux-user
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2025-08-15 22:26:53 +1000
committerPeter Maydell <peter.maydell@linaro.org>2025-08-30 16:38:47 +0100
commit23f5b02447503d9e28f6fad690ccce850c7bb656 (patch)
treec4059e82a35a76d88d75d2a4946327da69e65241 /linux-user
parent99e441107efb34a8af990cedbfbda0567d0bb387 (diff)
downloadqemu-23f5b02447503d9e28f6fad690ccce850c7bb656.zip
qemu-23f5b02447503d9e28f6fad690ccce850c7bb656.tar.gz
qemu-23f5b02447503d9e28f6fad690ccce850c7bb656.tar.bz2
target/arm: Enable FEAT_LSE128 for -cpu max
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 20250815122653.701782-8-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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/aarch64/elfload.c b/linux-user/aarch64/elfload.c
index 8bf39c4..77d03b5 100644
--- a/linux-user/aarch64/elfload.c
+++ b/linux-user/aarch64/elfload.c
@@ -216,6 +216,7 @@ abi_ulong get_elf_hwcap2(CPUState *cs)
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);
+ GET_FEATURE_ID(aa64_lse128, ARM_HWCAP2_A64_LSE128);
return hwcaps;
}