[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 44/45] target/arm: Enable SME for user-only
From: |
Richard Henderson |
Subject: |
[PATCH v6 44/45] target/arm: Enable SME for user-only |
Date: |
Fri, 8 Jul 2022 20:45:39 +0530 |
Enable SME, TPIDR2_EL0, and FA64 if supported by the cpu.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/arm/cpu.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/target/arm/cpu.c b/target/arm/cpu.c
index 9b54443843..5de7e097e9 100644
--- a/target/arm/cpu.c
+++ b/target/arm/cpu.c
@@ -210,6 +210,17 @@ static void arm_cpu_reset(DeviceState *dev)
CPACR_EL1, ZEN, 3);
env->vfp.zcr_el[1] = cpu->sve_default_vq - 1;
}
+ /* and for SME instructions, with default vector length, and TPIDR2 */
+ if (cpu_isar_feature(aa64_sme, cpu)) {
+ env->cp15.sctlr_el[1] |= SCTLR_EnTP2;
+ env->cp15.cpacr_el1 = FIELD_DP64(env->cp15.cpacr_el1,
+ CPACR_EL1, SMEN, 3);
+ env->vfp.smcr_el[1] = cpu->sme_default_vq - 1;
+ if (cpu_isar_feature(aa64_sme_fa64, cpu)) {
+ env->vfp.smcr_el[1] = FIELD_DP64(env->vfp.smcr_el[1],
+ SMCR, FA64, 1);
+ }
+ }
/*
* Enable 48-bit address space (TODO: take reserved_va into account).
* Enable TBI0 but not TBI1.
--
2.34.1
- [PATCH v6 36/45] linux-user/aarch64: Tidy target_restore_sigframe error return, (continued)
- [PATCH v6 36/45] linux-user/aarch64: Tidy target_restore_sigframe error return, Richard Henderson, 2022/07/08
- [PATCH v6 38/45] linux-user/aarch64: Verify extra record lock succeeded, Richard Henderson, 2022/07/08
- [PATCH v6 39/45] linux-user/aarch64: Move sve record checks into restore, Richard Henderson, 2022/07/08
- [PATCH v6 33/45] linux-user/aarch64: Clear tpidr2_el0 if CLONE_SETTLS, Richard Henderson, 2022/07/08
- [PATCH v6 35/45] linux-user/aarch64: Add SM bit to SVE signal context, Richard Henderson, 2022/07/08
- [PATCH v6 34/45] linux-user/aarch64: Reset PSTATE.SM on syscalls, Richard Henderson, 2022/07/08
- [PATCH v6 40/45] linux-user/aarch64: Implement SME signal handling, Richard Henderson, 2022/07/08
- [PATCH v6 41/45] linux-user: Rename sve prctls, Richard Henderson, 2022/07/08
- [PATCH v6 42/45] linux-user/aarch64: Implement PR_SME_GET_VL, PR_SME_SET_VL, Richard Henderson, 2022/07/08
- [PATCH v6 43/45] target/arm: Only set ZEN in reset if SVE present, Richard Henderson, 2022/07/08
- [PATCH v6 44/45] target/arm: Enable SME for user-only,
Richard Henderson <=
- [PATCH v6 45/45] linux-user/aarch64: Add SME related hwcap entries, Richard Henderson, 2022/07/08
- Re: [PATCH v6 00/45] target/arm: Scalable Matrix Extension, Peter Maydell, 2022/07/11