[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 08/24] target/arm: Use field names for manipulating EL2 and EL
From: |
Richard Henderson |
Subject: |
[PATCH v2 08/24] target/arm: Use field names for manipulating EL2 and EL3 modes |
Date: |
Mon, 11 Apr 2022 17:33:10 -0700 |
Use FIELD_DP{32,64} to manipulate id_pfr1 and id_aa64pfr0
during arm_cpu_realizefn.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/arm/cpu.c | 22 +++++++++++++---------
1 file changed, 13 insertions(+), 9 deletions(-)
diff --git a/target/arm/cpu.c b/target/arm/cpu.c
index 5d4ca7a227..6521f350f9 100644
--- a/target/arm/cpu.c
+++ b/target/arm/cpu.c
@@ -1795,11 +1795,13 @@ static void arm_cpu_realizefn(DeviceState *dev, Error
**errp)
*/
unset_feature(env, ARM_FEATURE_EL3);
- /* Disable the security extension feature bits in the processor feature
- * registers as well. These are id_pfr1[7:4] and id_aa64pfr0[15:12].
+ /*
+ * Disable the security extension feature bits in the processor
+ * feature registers as well.
*/
- cpu->isar.id_pfr1 &= ~0xf0;
- cpu->isar.id_aa64pfr0 &= ~0xf000;
+ cpu->isar.id_pfr1 = FIELD_DP32(cpu->isar.id_pfr1, ID_PFR1, SECURITY,
0);
+ cpu->isar.id_aa64pfr0 = FIELD_DP64(cpu->isar.id_aa64pfr0,
+ ID_AA64PFR0, EL3, 0);
}
if (!cpu->has_el2) {
@@ -1830,12 +1832,14 @@ static void arm_cpu_realizefn(DeviceState *dev, Error
**errp)
}
if (!arm_feature(env, ARM_FEATURE_EL2)) {
- /* Disable the hypervisor feature bits in the processor feature
- * registers if we don't have EL2. These are id_pfr1[15:12] and
- * id_aa64pfr0_el1[11:8].
+ /*
+ * Disable the hypervisor feature bits in the processor feature
+ * registers if we don't have EL2.
*/
- cpu->isar.id_aa64pfr0 &= ~0xf00;
- cpu->isar.id_pfr1 &= ~0xf000;
+ cpu->isar.id_aa64pfr0 = FIELD_DP64(cpu->isar.id_aa64pfr0,
+ ID_AA64PFR0, EL2, 0);
+ cpu->isar.id_pfr1 = FIELD_DP32(cpu->isar.id_pfr1,
+ ID_PFR1, VIRTUALIZATION, 0);
}
#ifndef CONFIG_USER_ONLY
--
2.25.1
- [PATCH v2 00/24] target/arm: 8 new features, A76 and N1, Richard Henderson, 2022/04/11
- [PATCH v2 01/24] target/arm: Add isar predicates for FEAT_Debugv8p2, Richard Henderson, 2022/04/11
- [PATCH v2 02/24] target/arm: Adjust definition of CONTEXTIDR_EL2, Richard Henderson, 2022/04/11
- [PATCH v2 03/24] target/arm: Move cortex impdef sysregs to cpu_tcg.c, Richard Henderson, 2022/04/11
- [PATCH v2 04/24] target/arm: Update qemu-system-arm -cpu max to cortex-a57, Richard Henderson, 2022/04/11
- [PATCH v2 08/24] target/arm: Use field names for manipulating EL2 and EL3 modes,
Richard Henderson <=
- [PATCH v2 13/24] target/arm: Enable SCR and HCR bits for RAS, Richard Henderson, 2022/04/11
- [PATCH v2 17/24] target/arm: Enable FEAT_IESB for -cpu max, Richard Henderson, 2022/04/11
- [PATCH v2 19/24] target/arm: Update ISAR fields for ARMv8.8, Richard Henderson, 2022/04/11
- [PATCH v2 10/24] target/arm: Enable FEAT_Debugv8p4 for -cpu max, Richard Henderson, 2022/04/11
- [PATCH v2 16/24] target/arm: Enable FEAT_RAS for -cpu max, Richard Henderson, 2022/04/11
- [PATCH v2 14/24] target/arm: Implement virtual SError exceptions, Richard Henderson, 2022/04/11
- [PATCH v2 18/24] target/arm: Enable FEAT_CSV2 for -cpu max, Richard Henderson, 2022/04/11
- [PATCH v2 21/24] target/arm: Enable FEAT_CSV3 for -cpu max, Richard Henderson, 2022/04/11
- [PATCH v2 05/24] target/arm: Set ID_DFR0.PerfMon for qemu-system-arm -cpu max, Richard Henderson, 2022/04/11
- [PATCH v2 06/24] target/arm: Split out arm32_max_features, Richard Henderson, 2022/04/11