diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-06-20 10:52:01 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2022-06-27 11:18:17 +0100 |
commit | e74c097638d38b46d9c68f11565432034afc0ad0 (patch) | |
tree | 8f885e504469e1bc251308e66fb0592c4d395868 /target/arm/cpu.h | |
parent | 70cc9ee19e53bc8bc597c5134e294a2ab377c4da (diff) | |
download | qemu-e74c097638d38b46d9c68f11565432034afc0ad0.zip qemu-e74c097638d38b46d9c68f11565432034afc0ad0.tar.gz qemu-e74c097638d38b46d9c68f11565432034afc0ad0.tar.bz2 |
target/arm: Add cpu properties for SME
Mirror the properties for SVE. The main difference is
that any arbitrary set of powers of 2 may be supported,
and not the stricter constraints that apply to SVE.
Include a property to control FEAT_SME_FA64, as failing
to restrict the runtime to the proper subset of insns
could be a major point for bugs.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20220620175235.60881-18-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/cpu.h')
-rw-r--r-- | target/arm/cpu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index d2b005f..c018f97 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -1060,9 +1060,11 @@ struct ArchCPU { #ifdef CONFIG_USER_ONLY /* Used to set the default vector length at process start. */ uint32_t sve_default_vq; + uint32_t sme_default_vq; #endif ARMVQMap sve_vq; + ARMVQMap sme_vq; /* Generic timer counter frequency, in Hz */ uint64_t gt_cntfrq_hz; |