aboutsummaryrefslogtreecommitdiff
path: root/target/arm/cpu.h
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-08-31 16:24:40 -0700
committerPeter Maydell <peter.maydell@linaro.org>2023-09-08 16:41:35 +0100
commit9cd0c0dec97be99c0b42b589e63fad6f8c6488b8 (patch)
treeeaddacd1feca81809cc68caad9047fb10e41f2b7 /target/arm/cpu.h
parent27920d3d1de2f2b0d5048030820eec4fa64b8b36 (diff)
downloadqemu-9cd0c0dec97be99c0b42b589e63fad6f8c6488b8.zip
qemu-9cd0c0dec97be99c0b42b589e63fad6f8c6488b8.tar.gz
qemu-9cd0c0dec97be99c0b42b589e63fad6f8c6488b8.tar.bz2
target/arm: Implement FEAT_TIDCP1
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20230831232441.66020-5-richard.henderson@linaro.org Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/cpu.h')
-rw-r--r--target/arm/cpu.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h
index 6f75ccf..d1aa3da 100644
--- a/target/arm/cpu.h
+++ b/target/arm/cpu.h
@@ -3980,6 +3980,11 @@ static inline bool isar_feature_aa64_hcx(const ARMISARegisters *id)
return FIELD_EX64(id->id_aa64mmfr1, ID_AA64MMFR1, HCX) != 0;
}
+static inline bool isar_feature_aa64_tidcp1(const ARMISARegisters *id)
+{
+ return FIELD_EX64(id->id_aa64mmfr2, ID_AA64MMFR1, TIDCP1) != 0;
+}
+
static inline bool isar_feature_aa64_uao(const ARMISARegisters *id)
{
return FIELD_EX64(id->id_aa64mmfr2, ID_AA64MMFR2, UAO) != 0;