From: Rémi Denis-Courmont Date: Tue, 12 Jan 2021 10:44:58 +0000 (+0200) Subject: target/arm: Define isar_feature function to test for presence of SEL2 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5ca192dfc551c8a40871c4e30a8b8ceb879adc31;p=qemu.git target/arm: Define isar_feature function to test for presence of SEL2 Signed-off-by: Rémi Denis-Courmont Reviewed-by: Richard Henderson Message-id: 20210112104511.36576-6-remi.denis.courmont@huawei.com [PMM: tweaked commit message to match reduced scope of patch following rebase] Signed-off-by: Peter Maydell --- diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 66e3603294..22a3c8a4cf 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -4011,6 +4011,11 @@ static inline bool isar_feature_aa64_sve(const ARMISARegisters *id) return FIELD_EX64(id->id_aa64pfr0, ID_AA64PFR0, SVE) != 0; } +static inline bool isar_feature_aa64_sel2(const ARMISARegisters *id) +{ + return FIELD_EX64(id->id_aa64pfr0, ID_AA64PFR0, SEL2) != 0; +} + static inline bool isar_feature_aa64_vh(const ARMISARegisters *id) { return FIELD_EX64(id->id_aa64mmfr1, ID_AA64MMFR1, VH) != 0;