[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 22/23] target/arm: Enable MTE for user-only
From: |
Richard Henderson |
Subject: |
[PATCH v4 22/23] target/arm: Enable MTE for user-only |
Date: |
Thu, 28 Jan 2021 12:41:40 -1000 |
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/arm/cpu.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/target/arm/cpu.c b/target/arm/cpu.c
index db81a12418..43933550c3 100644
--- a/target/arm/cpu.c
+++ b/target/arm/cpu.c
@@ -204,6 +204,21 @@ static void arm_cpu_reset(DeviceState *dev)
* Note that this must match useronly_clean_ptr.
*/
env->cp15.tcr_el[1].raw_tcr = (1ULL << 37);
+
+ /* Enable MTE */
+ if (cpu_isar_feature(aa64_mte, cpu)) {
+ /* Enable tag access, but leave TCF0 as No Effect (0). */
+ env->cp15.sctlr_el[1] |= SCTLR_ATA0;
+ /*
+ * Exclude all tags, so that tag 0 is always used.
+ * This corresponds to Linux current->thread.gcr_incl = 0.
+ *
+ * Set RRND, so that helper_irg() will generate a seed later.
+ * Here in cpu_reset(), the crypto subsystem has not yet been
+ * initialized.
+ */
+ env->cp15.gcr_el1 = 0x1ffff;
+ }
#else
/* Reset into the highest available EL */
if (arm_feature(env, ARM_FEATURE_EL3)) {
--
2.25.1
- [PATCH v4 12/23] linux-user/aarch64: Implement PR_TAGGED_ADDR_ENABLE, (continued)
- [PATCH v4 12/23] linux-user/aarch64: Implement PR_TAGGED_ADDR_ENABLE, Richard Henderson, 2021/01/28
- [PATCH v4 13/23] target/arm: Improve gen_top_byte_ignore, Richard Henderson, 2021/01/28
- [PATCH v4 10/23] linux-user: Fix guest_addr_valid vs reserved_va, Richard Henderson, 2021/01/28
- [PATCH v4 14/23] target/arm: Use the proper TBI settings for linux-user, Richard Henderson, 2021/01/28
- [PATCH v4 16/23] linux-user/aarch64: Implement PROT_MTE, Richard Henderson, 2021/01/28
- [PATCH v4 18/23] linux-user/aarch64: Pass syndrome to EXC_*_ABORT, Richard Henderson, 2021/01/28
- [PATCH v4 21/23] target/arm: Add allocation tag storage for user mode, Richard Henderson, 2021/01/28
- [PATCH v4 15/23] linux-user/aarch64: Implement PR_MTE_TCF and PR_MTE_TAG, Richard Henderson, 2021/01/28
- [PATCH v4 19/23] linux-user/aarch64: Signal SEGV_MTESERR for sync tag check fault, Richard Henderson, 2021/01/28
- [PATCH v4 20/23] linux-user/aarch64: Signal SEGV_MTEAERR for async tag check error, Richard Henderson, 2021/01/28
- [PATCH v4 22/23] target/arm: Enable MTE for user-only,
Richard Henderson <=
- [PATCH v4 17/23] target/arm: Split out syndrome.h from internals.h, Richard Henderson, 2021/01/28
- [PATCH v4 23/23] tests/tcg/aarch64: Add mte smoke tests, Richard Henderson, 2021/01/28
- Re: [PATCH v4 00/23] target-arm: Implement ARMv8.5-MemTag, user mode, no-reply, 2021/01/28