[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 11/20] target/arm: default SVE length to 64 bytes for linux-us
From: |
Alex Bennée |
Subject: |
[PATCH v3 11/20] target/arm: default SVE length to 64 bytes for linux-user |
Date: |
Wed, 11 Dec 2019 17:05:11 +0000 |
The Linux kernel chooses the default of 64 bytes for SVE registers on
the basis that it is the largest size on known hardware that won't
grow the signal frame. We still honour the sve-max-vq property and
userspace can expand the number of lanes by calling PR_SVE_SET_VL.
This should not make any difference to SVE enabled software as the SVE
is of course vector length agnostic.
Signed-off-by: Alex Bennée <address@hidden>
---
v2
- tweak zcr_el[1] instead
---
target/arm/cpu.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/target/arm/cpu.c b/target/arm/cpu.c
index 7a4ac9339bf..d42b88c9b73 100644
--- a/target/arm/cpu.c
+++ b/target/arm/cpu.c
@@ -199,9 +199,9 @@ static void arm_cpu_reset(CPUState *s)
/* and to the SVE instructions */
env->cp15.cpacr_el1 = deposit64(env->cp15.cpacr_el1, 16, 2, 3);
env->cp15.cptr_el[3] |= CPTR_EZ;
- /* with maximum vector length */
+ /* with reasonable vector length */
env->vfp.zcr_el[1] = cpu_isar_feature(aa64_sve, cpu) ?
- cpu->sve_max_vq - 1 : 0;
+ MIN(cpu->sve_max_vq - 1, 3) : 0;
env->vfp.zcr_el[2] = env->vfp.zcr_el[1];
env->vfp.zcr_el[3] = env->vfp.zcr_el[1];
/*
--
2.20.1
- [PATCH v3 01/20] gdbstub: make GDBState static and have common init function, (continued)
- [PATCH v3 01/20] gdbstub: make GDBState static and have common init function, Alex Bennée, 2019/12/11
- [PATCH v3 04/20] gdbstub: move mem_buf to GDBState and use GByteArray, Alex Bennée, 2019/12/11
- [PATCH v3 06/20] target/arm: use gdb_get_reg helpers, Alex Bennée, 2019/12/11
- [PATCH v3 03/20] gdbstub: move str_buf to GDBState and use GString, Alex Bennée, 2019/12/11
- [PATCH v3 07/20] target/m68k: use gdb_get_reg helpers, Alex Bennée, 2019/12/11
- [PATCH v3 10/20] target/arm: explicitly encode regnum in our XML, Alex Bennée, 2019/12/11
- [PATCH v3 11/20] target/arm: default SVE length to 64 bytes for linux-user,
Alex Bennée <=
- [PATCH v3 09/20] target/arm: prepare for multiple dynamic XMLs, Alex Bennée, 2019/12/11
- [PATCH v3 19/20] tests/tcg/aarch64: add SVE iotcl test, Alex Bennée, 2019/12/11
- [PATCH v3 13/20] tests/tcg: add a configure compiler check for ARMv8.1 and SVE, Alex Bennée, 2019/12/11
- [PATCH v3 02/20] gdbstub: stop passing GDBState * around and use global, Alex Bennée, 2019/12/11
- [PATCH v3 08/20] gdbstub: extend GByteArray to read register helpers, Alex Bennée, 2019/12/11