[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 02/13] s390x/cpu_models: drop "msa5" from the TCG "max" model
From: |
David Hildenbrand |
Subject: |
[PATCH v6 02/13] s390x/cpu_models: drop "msa5" from the TCG "max" model |
Date: |
Thu, 28 Apr 2022 11:46:57 +0200 |
We don't include the "msa5" feature in the "qemu" model because it
generates a warning. The PoP states:
"The message-security-assist extension 5 requires
the secure-hash-algorithm (SHA-512) capabilities of
the message-security-assist extension 2 as a prereq-
uisite. (March, 2015)"
As SHA-512 won't be supported in the near future, let's just drop the
feature from the "max" model. This avoids the warning and allows us for
making the "max" model match the "qemu" model (except for compat
machines). We don't lose much, as we only implement the function stubs
for MSA, excluding any real subfunctions.
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/897
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: David Hildenbrand <david@redhat.com>
---
target/s390x/gen-features.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/target/s390x/gen-features.c b/target/s390x/gen-features.c
index 22846121c4..7b4430f9de 100644
--- a/target/s390x/gen-features.c
+++ b/target/s390x/gen-features.c
@@ -743,8 +743,6 @@ static uint16_t qemu_LATEST[] = {
};
/* add all new definitions before this point */
static uint16_t qemu_MAX[] = {
- /* generates a dependency warning, leave it out for now */
- S390_FEAT_MSA_EXT_5,
};
/****** END FEATURE DEFS ******/
--
2.35.1
- [PATCH v6 00/13] s390x/tcg: Implement Vector-Enhancements Facility 2, David Hildenbrand, 2022/04/28
- [PATCH v6 04/13] tcg: Implement tcg_gen_{h,w}swap_{i32,i64}, David Hildenbrand, 2022/04/28
- [PATCH v6 07/13] target/s390x: vxeh2: Update for changes to vector shifts, David Hildenbrand, 2022/04/28
- [PATCH v6 02/13] s390x/cpu_models: drop "msa5" from the TCG "max" model,
David Hildenbrand <=
- [PATCH v6 01/13] target/s390x: Fix writeback to v1 in helper_vstl, David Hildenbrand, 2022/04/28
- [PATCH v6 05/13] target/s390x: vxeh2: vector convert short/32b, David Hildenbrand, 2022/04/28
- [PATCH v6 06/13] target/s390x: vxeh2: vector string search, David Hildenbrand, 2022/04/28
- [PATCH v6 03/13] s390x/cpu_models: make "max" match the unmodified "qemu" CPU model under TCG, David Hildenbrand, 2022/04/28
- [PATCH v6 12/13] target/s390x: add S390_FEAT_VECTOR_ENH2 to qemu CPU model, David Hildenbrand, 2022/04/28
- [PATCH v6 08/13] target/s390x: vxeh2: vector shift double by bit, David Hildenbrand, 2022/04/28
- [PATCH v6 09/13] target/s390x: vxeh2: vector {load, store} elements reversed, David Hildenbrand, 2022/04/28
- [PATCH v6 10/13] target/s390x: vxeh2: vector {load, store} byte reversed elements, David Hildenbrand, 2022/04/28
- [PATCH v6 11/13] target/s390x: vxeh2: vector {load, store} byte reversed element, David Hildenbrand, 2022/04/28
- [PATCH v6 13/13] tests/tcg/s390x: Tests for Vector Enhancements Facility 2, David Hildenbrand, 2022/04/28