[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 13/24] target/arm: Enable SCR and HCR bits for RAS
From: |
Richard Henderson |
Subject: |
[PATCH v2 13/24] target/arm: Enable SCR and HCR bits for RAS |
Date: |
Mon, 11 Apr 2022 17:33:15 -0700 |
Enable writes to the TERR and TEA bits when RAS is enabled.
These bits are otherwise RES0.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/arm/helper.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/target/arm/helper.c b/target/arm/helper.c
index b066a86f04..aa05a15e5c 100644
--- a/target/arm/helper.c
+++ b/target/arm/helper.c
@@ -1765,6 +1765,9 @@ static void scr_write(CPUARMState *env, const
ARMCPRegInfo *ri, uint64_t value)
}
valid_mask &= ~SCR_NET;
+ if (cpu_isar_feature(aa64_ras, cpu)) {
+ valid_mask |= SCR_TERR;
+ }
if (cpu_isar_feature(aa64_lor, cpu)) {
valid_mask |= SCR_TLOR;
}
@@ -1779,6 +1782,9 @@ static void scr_write(CPUARMState *env, const
ARMCPRegInfo *ri, uint64_t value)
}
} else {
valid_mask &= ~(SCR_RW | SCR_ST);
+ if (cpu_isar_feature(aa32_ras, cpu)) {
+ valid_mask |= SCR_TERR;
+ }
}
if (!arm_feature(env, ARM_FEATURE_EL2)) {
@@ -5289,6 +5295,9 @@ static void do_hcr_write(CPUARMState *env, uint64_t
value, uint64_t valid_mask)
if (cpu_isar_feature(aa64_vh, cpu)) {
valid_mask |= HCR_E2H;
}
+ if (cpu_isar_feature(aa64_ras, cpu)) {
+ valid_mask |= HCR_TERR | HCR_TEA;
+ }
if (cpu_isar_feature(aa64_lor, cpu)) {
valid_mask |= HCR_TLOR;
}
--
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, 2022/04/11
- [PATCH v2 13/24] target/arm: Enable SCR and HCR bits for RAS,
Richard Henderson <=
- [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
- [PATCH v2 07/24] target/arm: Annotate arm_max_initfn with FEAT identifiers, Richard Henderson, 2022/04/11