aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorDavid Hildenbrand <david@redhat.com>2019-02-27 09:12:09 +0100
committerDavid Hildenbrand <david@redhat.com>2019-06-07 14:53:26 +0200
commit08ef92d556c584c7faf594ff3af46df456276e1b (patch)
tree6044b85c096de50d9b1217dda49099c54afe1a25 /hw
parentc7f22b31ce534be758dc01e2ed4e5ce984d5bd3d (diff)
downloadqemu-08ef92d556c584c7faf594ff3af46df456276e1b.zip
qemu-08ef92d556c584c7faf594ff3af46df456276e1b.tar.gz
qemu-08ef92d556c584c7faf594ff3af46df456276e1b.tar.bz2
s390x: Bump the "qemu" CPU model up to a stripped-down z13
We don't care about the other two missing base features: - S390_FEAT_DFP_PACKED_CONVERSION - S390_FEAT_GROUP_GEN13_PTFF Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: David Hildenbrand <david@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/s390x/s390-virtio-ccw.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/s390x/s390-virtio-ccw.c b/hw/s390x/s390-virtio-ccw.c
index bbc6e8f..4d64368 100644
--- a/hw/s390x/s390-virtio-ccw.c
+++ b/hw/s390x/s390-virtio-ccw.c
@@ -669,7 +669,9 @@ DEFINE_CCW_MACHINE(4_1, "4.1", true);
static void ccw_machine_4_0_instance_options(MachineState *machine)
{
+ static const S390FeatInit qemu_cpu_feat = { S390_FEAT_LIST_QEMU_V4_0 };
ccw_machine_4_1_instance_options(machine);
+ s390_set_qemu_cpu_model(0x2827, 12, 2, qemu_cpu_feat);
}
static void ccw_machine_4_0_class_options(MachineClass *mc)