diff options
| author | David Miller | 2022-02-23 23:31:15 +0100 |
|---|---|---|
| committer | Thomas Huth | 2022-02-28 11:29:15 +0100 |
| commit | 8a4eafb69cd92d323ab05850b72005e11f7a4201 (patch) | |
| tree | c9519bd09f5abd1f2c46fd7dda9b829f2b752937 /target/s390x/gen-features.c | |
| parent | s390x/tcg: Implement Miscellaneous-Instruction-Extensions Facility 3 for the ... (diff) | |
| download | qemu-8a4eafb69cd92d323ab05850b72005e11f7a4201.tar.gz qemu-8a4eafb69cd92d323ab05850b72005e11f7a4201.tar.xz qemu-8a4eafb69cd92d323ab05850b72005e11f7a4201.zip | |
s390x/cpumodel: Bump up QEMU model to a stripped-down IBM z15 GA1
TCG implements everything we need to run basic z15 OS+software
Signed-off-by: David Miller <dmiller423@gmail.com>
Message-Id: <20220223223117.66660-3-dmiller423@gmail.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'target/s390x/gen-features.c')
| -rw-r--r-- | target/s390x/gen-features.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/target/s390x/gen-features.c b/target/s390x/gen-features.c index a3f30f69d9..22846121c4 100644 --- a/target/s390x/gen-features.c +++ b/target/s390x/gen-features.c @@ -731,16 +731,18 @@ static uint16_t qemu_V6_0[] = { S390_FEAT_ESOP, }; -static uint16_t qemu_LATEST[] = { +static uint16_t qemu_V6_2[] = { S390_FEAT_INSTRUCTION_EXEC_PROT, S390_FEAT_MISC_INSTRUCTION_EXT2, S390_FEAT_MSA_EXT_8, S390_FEAT_VECTOR_ENH, }; +static uint16_t qemu_LATEST[] = { + S390_FEAT_MISC_INSTRUCTION_EXT3, +}; /* add all new definitions before this point */ static uint16_t qemu_MAX[] = { - S390_FEAT_MISC_INSTRUCTION_EXT3, /* generates a dependency warning, leave it out for now */ S390_FEAT_MSA_EXT_5, }; @@ -863,6 +865,7 @@ static FeatGroupDefSpec QemuFeatDef[] = { QEMU_FEAT_INITIALIZER(V4_0), QEMU_FEAT_INITIALIZER(V4_1), QEMU_FEAT_INITIALIZER(V6_0), + QEMU_FEAT_INITIALIZER(V6_2), QEMU_FEAT_INITIALIZER(LATEST), QEMU_FEAT_INITIALIZER(MAX), }; |
