2024-05-14 06:50:03 +00:00
|
|
|
From fa1d70b9a9cfe020e7ebe7798ebb70314658ccf7 Mon Sep 17 00:00:00 2001
|
2018-11-08 17:02:33 +00:00
|
|
|
From: Miroslav Rezanina <mrezanin@redhat.com>
|
2018-11-29 12:09:34 +00:00
|
|
|
Date: Fri, 19 Oct 2018 13:47:32 +0200
|
2023-10-16 10:42:05 +00:00
|
|
|
Subject: Add s390x machine types
|
2018-11-08 17:02:33 +00:00
|
|
|
|
|
|
|
Adding changes to add RHEL machine types for s390x architecture.
|
|
|
|
|
|
|
|
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
|
---
|
2024-01-02 12:52:01 +00:00
|
|
|
hw/s390x/s390-virtio-ccw.c | 159 +++++++++++++++++++++++++++++++
|
2023-04-20 06:33:14 +00:00
|
|
|
target/s390x/cpu_models.c | 11 +++
|
2022-09-05 08:13:56 +00:00
|
|
|
target/s390x/cpu_models.h | 2 +
|
|
|
|
target/s390x/cpu_models_sysemu.c | 2 +
|
2024-01-02 12:52:01 +00:00
|
|
|
4 files changed, 174 insertions(+)
|
2018-11-08 17:02:33 +00:00
|
|
|
|
|
|
|
diff --git a/hw/s390x/s390-virtio-ccw.c b/hw/s390x/s390-virtio-ccw.c
|
2024-05-14 06:50:03 +00:00
|
|
|
index b1dcb3857f..ff753a29e0 100644
|
2018-11-08 17:02:33 +00:00
|
|
|
--- a/hw/s390x/s390-virtio-ccw.c
|
|
|
|
+++ b/hw/s390x/s390-virtio-ccw.c
|
2024-05-14 06:50:03 +00:00
|
|
|
@@ -859,6 +859,7 @@ bool css_migration_enabled(void)
|
2019-05-07 21:00:36 +00:00
|
|
|
} \
|
|
|
|
type_init(ccw_machine_register_##suffix)
|
2018-11-08 17:02:33 +00:00
|
|
|
|
|
|
|
+#if 0 /* Disabled for Red Hat Enterprise Linux */
|
2024-05-14 06:50:03 +00:00
|
|
|
static void ccw_machine_9_0_instance_options(MachineState *machine)
|
2019-05-07 21:00:36 +00:00
|
|
|
{
|
|
|
|
}
|
2024-05-14 06:50:03 +00:00
|
|
|
@@ -1272,6 +1273,164 @@ static void ccw_machine_2_4_class_options(MachineClass *mc)
|
2019-08-15 04:45:41 +00:00
|
|
|
compat_props_add(mc->compat_props, compat, G_N_ELEMENTS(compat));
|
2018-11-08 17:02:33 +00:00
|
|
|
}
|
|
|
|
DEFINE_CCW_MACHINE(2_4, "2.4", false);
|
2019-08-15 04:45:41 +00:00
|
|
|
+#endif
|
2019-05-07 21:00:36 +00:00
|
|
|
+
|
2022-09-05 08:13:56 +00:00
|
|
|
+
|
2024-01-02 12:52:01 +00:00
|
|
|
+static void ccw_machine_rhel940_instance_options(MachineState *machine)
|
|
|
|
+{
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void ccw_machine_rhel940_class_options(MachineClass *mc)
|
|
|
|
+{
|
|
|
|
+}
|
|
|
|
+DEFINE_CCW_MACHINE(rhel940, "rhel9.4.0", true);
|
|
|
|
+
|
2023-04-20 06:33:14 +00:00
|
|
|
+static void ccw_machine_rhel920_instance_options(MachineState *machine)
|
|
|
|
+{
|
2024-01-02 12:52:01 +00:00
|
|
|
+ ccw_machine_rhel940_instance_options(machine);
|
2023-04-20 06:33:14 +00:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void ccw_machine_rhel920_class_options(MachineClass *mc)
|
|
|
|
+{
|
2024-01-02 12:52:01 +00:00
|
|
|
+ ccw_machine_rhel940_class_options(mc);
|
|
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_9_4, hw_compat_rhel_9_4_len);
|
|
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_9_3, hw_compat_rhel_9_3_len);
|
2023-08-29 12:37:47 +00:00
|
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_9_2, hw_compat_rhel_9_2_len);
|
2024-01-02 12:52:01 +00:00
|
|
|
+ mc->smp_props.drawers_supported = false; /* from ccw_machine_8_1 */
|
|
|
|
+ mc->smp_props.books_supported = false; /* from ccw_machine_8_1 */
|
2023-04-20 06:33:14 +00:00
|
|
|
+}
|
2024-01-02 12:52:01 +00:00
|
|
|
+DEFINE_CCW_MACHINE(rhel920, "rhel9.2.0", false);
|
2023-04-20 06:33:14 +00:00
|
|
|
+
|
2022-04-20 07:49:16 +00:00
|
|
|
+static void ccw_machine_rhel900_instance_options(MachineState *machine)
|
|
|
|
+{
|
2022-09-05 08:13:56 +00:00
|
|
|
+ static const S390FeatInit qemu_cpu_feat = { S390_FEAT_LIST_QEMU_V6_2 };
|
|
|
|
+
|
2023-04-20 06:33:14 +00:00
|
|
|
+ ccw_machine_rhel920_instance_options(machine);
|
|
|
|
+
|
2022-09-05 08:13:56 +00:00
|
|
|
+ s390_set_qemu_cpu_model(0x3906, 14, 2, qemu_cpu_feat);
|
2023-04-20 06:33:14 +00:00
|
|
|
+ s390_cpudef_featoff_greater(16, 1, S390_FEAT_PAIE);
|
2022-04-20 07:49:16 +00:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void ccw_machine_rhel900_class_options(MachineClass *mc)
|
|
|
|
+{
|
2023-04-20 06:33:14 +00:00
|
|
|
+ S390CcwMachineClass *s390mc = S390_CCW_MACHINE_CLASS(mc);
|
|
|
|
+ static GlobalProperty compat[] = {
|
|
|
|
+ { TYPE_S390_PCI_DEVICE, "interpret", "off", },
|
|
|
|
+ { TYPE_S390_PCI_DEVICE, "forwarding-assist", "off", },
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+ ccw_machine_rhel920_class_options(mc);
|
|
|
|
+
|
|
|
|
+ compat_props_add(mc->compat_props, compat, G_N_ELEMENTS(compat));
|
2022-12-15 06:04:15 +00:00
|
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_9_1, hw_compat_rhel_9_1_len);
|
2022-09-05 08:13:56 +00:00
|
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_9_0, hw_compat_rhel_9_0_len);
|
2023-04-20 06:33:14 +00:00
|
|
|
+ s390mc->max_threads = S390_MAX_CPUS;
|
2022-04-20 07:49:16 +00:00
|
|
|
+}
|
2023-04-20 06:33:14 +00:00
|
|
|
+DEFINE_CCW_MACHINE(rhel900, "rhel9.0.0", false);
|
2022-04-20 07:49:16 +00:00
|
|
|
+
|
|
|
|
+static void ccw_machine_rhel860_instance_options(MachineState *machine)
|
|
|
|
+{
|
|
|
|
+ /* Note: The -rhel8.6.0 and -rhel9.0.0 machines are technically identical */
|
|
|
|
+ ccw_machine_rhel900_instance_options(machine);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void ccw_machine_rhel860_class_options(MachineClass *mc)
|
|
|
|
+{
|
2023-04-20 06:33:14 +00:00
|
|
|
+ static GlobalProperty compat[] = {
|
|
|
|
+ { TYPE_S390_PCI_DEVICE, "interpret", "on", },
|
|
|
|
+ { TYPE_S390_PCI_DEVICE, "forwarding-assist", "on", },
|
|
|
|
+ };
|
|
|
|
+
|
2022-04-20 07:49:16 +00:00
|
|
|
+ ccw_machine_rhel900_class_options(mc);
|
2023-04-20 06:33:14 +00:00
|
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_8_6, hw_compat_rhel_8_6_len);
|
|
|
|
+ compat_props_add(mc->compat_props, compat, G_N_ELEMENTS(compat));
|
2022-04-20 07:49:16 +00:00
|
|
|
+
|
|
|
|
+ /* All RHEL machines for prior major releases are deprecated */
|
|
|
|
+ mc->deprecation_reason = rhel_old_machine_deprecation;
|
|
|
|
+}
|
|
|
|
+DEFINE_CCW_MACHINE(rhel860, "rhel8.6.0", false);
|
|
|
|
+
|
2021-09-02 06:44:51 +00:00
|
|
|
+static void ccw_machine_rhel850_instance_options(MachineState *machine)
|
|
|
|
+{
|
2022-04-20 07:49:16 +00:00
|
|
|
+ static const S390FeatInit qemu_cpu_feat = { S390_FEAT_LIST_QEMU_V6_0 };
|
|
|
|
+
|
|
|
|
+ ccw_machine_rhel860_instance_options(machine);
|
|
|
|
+
|
|
|
|
+ s390_set_qemu_cpu_model(0x2964, 13, 2, qemu_cpu_feat);
|
|
|
|
+
|
|
|
|
+ s390_cpudef_featoff_greater(16, 1, S390_FEAT_NNPA);
|
|
|
|
+ s390_cpudef_featoff_greater(16, 1, S390_FEAT_VECTOR_PACKED_DECIMAL_ENH2);
|
|
|
|
+ s390_cpudef_featoff_greater(16, 1, S390_FEAT_BEAR_ENH);
|
|
|
|
+ s390_cpudef_featoff_greater(16, 1, S390_FEAT_RDP);
|
|
|
|
+ s390_cpudef_featoff_greater(16, 1, S390_FEAT_PAI);
|
2021-09-02 06:44:51 +00:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void ccw_machine_rhel850_class_options(MachineClass *mc)
|
|
|
|
+{
|
2023-04-20 06:33:14 +00:00
|
|
|
+ static GlobalProperty compat[] = {
|
|
|
|
+ { TYPE_S390_PCI_DEVICE, "interpret", "off", },
|
|
|
|
+ { TYPE_S390_PCI_DEVICE, "forwarding-assist", "off", },
|
|
|
|
+ };
|
|
|
|
+
|
2022-04-20 07:49:16 +00:00
|
|
|
+ ccw_machine_rhel860_class_options(mc);
|
2021-12-16 07:06:10 +00:00
|
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_8_5, hw_compat_rhel_8_5_len);
|
2023-04-20 06:33:14 +00:00
|
|
|
+ compat_props_add(mc->compat_props, compat, G_N_ELEMENTS(compat));
|
2022-04-20 07:49:16 +00:00
|
|
|
+ mc->smp_props.prefer_sockets = true;
|
2021-09-02 06:44:51 +00:00
|
|
|
+}
|
2022-04-20 07:49:16 +00:00
|
|
|
+DEFINE_CCW_MACHINE(rhel850, "rhel8.5.0", false);
|
2021-09-02 06:44:51 +00:00
|
|
|
+
|
2021-04-30 07:28:51 +00:00
|
|
|
+static void ccw_machine_rhel840_instance_options(MachineState *machine)
|
|
|
|
+{
|
2021-09-02 06:44:51 +00:00
|
|
|
+ ccw_machine_rhel850_instance_options(machine);
|
2021-04-30 07:28:51 +00:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void ccw_machine_rhel840_class_options(MachineClass *mc)
|
|
|
|
+{
|
2021-09-02 06:44:51 +00:00
|
|
|
+ ccw_machine_rhel850_class_options(mc);
|
2021-04-30 07:28:51 +00:00
|
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_8_4, hw_compat_rhel_8_4_len);
|
|
|
|
+}
|
2021-09-02 06:44:51 +00:00
|
|
|
+DEFINE_CCW_MACHINE(rhel840, "rhel8.4.0", false);
|
2021-04-30 07:28:51 +00:00
|
|
|
+
|
2019-12-13 13:10:42 +00:00
|
|
|
+static void ccw_machine_rhel820_instance_options(MachineState *machine)
|
2019-05-07 21:00:36 +00:00
|
|
|
+{
|
2021-04-30 07:28:51 +00:00
|
|
|
+ ccw_machine_rhel840_instance_options(machine);
|
2019-05-07 21:00:36 +00:00
|
|
|
+}
|
|
|
|
+
|
2019-12-13 13:10:42 +00:00
|
|
|
+static void ccw_machine_rhel820_class_options(MachineClass *mc)
|
2019-05-07 21:00:36 +00:00
|
|
|
+{
|
2021-04-30 07:28:51 +00:00
|
|
|
+ ccw_machine_rhel840_class_options(mc);
|
2020-05-13 01:03:43 +00:00
|
|
|
+ mc->fixup_ram_size = s390_fixup_ram_size;
|
2021-04-30 07:28:51 +00:00
|
|
|
+ /* we did not publish a rhel8.3.0 machine */
|
|
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_8_3, hw_compat_rhel_8_3_len);
|
|
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_8_2, hw_compat_rhel_8_2_len);
|
2019-05-07 21:00:36 +00:00
|
|
|
+}
|
2021-04-30 07:28:51 +00:00
|
|
|
+DEFINE_CCW_MACHINE(rhel820, "rhel8.2.0", false);
|
2018-11-08 17:02:33 +00:00
|
|
|
+
|
|
|
|
+static void ccw_machine_rhel760_instance_options(MachineState *machine)
|
|
|
|
+{
|
2019-11-15 14:35:04 +00:00
|
|
|
+ static const S390FeatInit qemu_cpu_feat = { S390_FEAT_LIST_QEMU_V3_1 };
|
|
|
|
+
|
2019-12-13 13:10:42 +00:00
|
|
|
+ ccw_machine_rhel820_instance_options(machine);
|
2019-11-15 14:35:04 +00:00
|
|
|
+
|
|
|
|
+ s390_set_qemu_cpu_model(0x2827, 12, 2, qemu_cpu_feat);
|
|
|
|
+
|
|
|
|
+ /* The multiple-epoch facility was not available with rhel7.6.0 on z14GA1 */
|
|
|
|
+ s390_cpudef_featoff(14, 1, S390_FEAT_MULTIPLE_EPOCH);
|
|
|
|
+ s390_cpudef_featoff(14, 1, S390_FEAT_PTFF_QSIE);
|
|
|
|
+ s390_cpudef_featoff(14, 1, S390_FEAT_PTFF_QTOUE);
|
|
|
|
+ s390_cpudef_featoff(14, 1, S390_FEAT_PTFF_STOE);
|
|
|
|
+ s390_cpudef_featoff(14, 1, S390_FEAT_PTFF_STOUE);
|
2018-11-08 17:02:33 +00:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void ccw_machine_rhel760_class_options(MachineClass *mc)
|
|
|
|
+{
|
2019-12-13 13:10:42 +00:00
|
|
|
+ ccw_machine_rhel820_class_options(mc);
|
|
|
|
+ /* We never published the s390x version of RHEL-AV 8.0 and 8.1, so add this here */
|
2021-04-30 07:28:51 +00:00
|
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_8_1, hw_compat_rhel_8_1_len);
|
2019-11-15 14:35:04 +00:00
|
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_8_0, hw_compat_rhel_8_0_len);
|
2019-05-07 21:00:36 +00:00
|
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_7_6, hw_compat_rhel_7_6_len);
|
2018-11-08 17:02:33 +00:00
|
|
|
+}
|
2019-05-07 21:00:36 +00:00
|
|
|
+DEFINE_CCW_MACHINE(rhel760, "rhel7.6.0", false);
|
2019-08-15 04:45:41 +00:00
|
|
|
|
2018-11-08 17:02:33 +00:00
|
|
|
static void ccw_machine_register_types(void)
|
|
|
|
{
|
2022-09-05 08:13:56 +00:00
|
|
|
diff --git a/target/s390x/cpu_models.c b/target/s390x/cpu_models.c
|
2024-05-14 06:50:03 +00:00
|
|
|
index 8ed3bb6a27..370b3b3065 100644
|
2022-09-05 08:13:56 +00:00
|
|
|
--- a/target/s390x/cpu_models.c
|
|
|
|
+++ b/target/s390x/cpu_models.c
|
2023-04-20 06:33:14 +00:00
|
|
|
@@ -46,6 +46,9 @@
|
2022-09-05 08:13:56 +00:00
|
|
|
* of a following release have been a superset of the previous release. With
|
|
|
|
* generation 15 one base feature and one optional feature have been deprecated.
|
|
|
|
*/
|
|
|
|
+
|
|
|
|
+#define RHEL_CPU_DEPRECATION "use at least 'z14', or 'host' / 'qemu' / 'max'"
|
2022-04-20 07:49:16 +00:00
|
|
|
+
|
2022-09-05 08:13:56 +00:00
|
|
|
static S390CPUDef s390_cpu_defs[] = {
|
|
|
|
CPUDEF_INIT(0x2064, 7, 1, 38, 0x00000000U, "z900", "IBM zSeries 900 GA1"),
|
|
|
|
CPUDEF_INIT(0x2064, 7, 2, 38, 0x00000000U, "z900.2", "IBM zSeries 900 GA2"),
|
2024-05-14 06:50:03 +00:00
|
|
|
@@ -866,22 +869,30 @@ static void s390_host_cpu_model_class_init(ObjectClass *oc, void *data)
|
2022-09-05 08:13:56 +00:00
|
|
|
static void s390_base_cpu_model_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
S390CPUClass *xcc = S390_CPU_CLASS(oc);
|
|
|
|
+ CPUClass *cc = CPU_CLASS(oc);
|
|
|
|
|
|
|
|
/* all base models are migration safe */
|
|
|
|
xcc->cpu_def = (const S390CPUDef *) data;
|
|
|
|
xcc->is_migration_safe = true;
|
|
|
|
xcc->is_static = true;
|
|
|
|
xcc->desc = xcc->cpu_def->desc;
|
|
|
|
+ if (xcc->cpu_def->gen < 14) {
|
|
|
|
+ cc->deprecation_note = RHEL_CPU_DEPRECATION;
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
static void s390_cpu_model_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
S390CPUClass *xcc = S390_CPU_CLASS(oc);
|
|
|
|
+ CPUClass *cc = CPU_CLASS(oc);
|
|
|
|
|
|
|
|
/* model that can change between QEMU versions */
|
|
|
|
xcc->cpu_def = (const S390CPUDef *) data;
|
|
|
|
xcc->is_migration_safe = true;
|
|
|
|
xcc->desc = xcc->cpu_def->desc;
|
|
|
|
+ if (xcc->cpu_def->gen < 14) {
|
|
|
|
+ cc->deprecation_note = RHEL_CPU_DEPRECATION;
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
static void s390_qemu_cpu_model_class_init(ObjectClass *oc, void *data)
|
|
|
|
diff --git a/target/s390x/cpu_models.h b/target/s390x/cpu_models.h
|
2024-01-02 12:52:01 +00:00
|
|
|
index d7b8912989..1a806a97c4 100644
|
2022-09-05 08:13:56 +00:00
|
|
|
--- a/target/s390x/cpu_models.h
|
|
|
|
+++ b/target/s390x/cpu_models.h
|
2024-01-02 12:52:01 +00:00
|
|
|
@@ -38,6 +38,8 @@ typedef struct S390CPUDef {
|
2022-09-05 08:13:56 +00:00
|
|
|
S390FeatBitmap full_feat;
|
|
|
|
/* used to init full_feat from generated data */
|
|
|
|
S390FeatInit full_init;
|
|
|
|
+ /* if deprecated, provides a suggestion */
|
|
|
|
+ const char *deprecation_note;
|
2024-01-02 12:52:01 +00:00
|
|
|
} S390CPUDef;
|
2022-09-05 08:13:56 +00:00
|
|
|
|
|
|
|
/* CPU model based on a CPU definition */
|
|
|
|
diff --git a/target/s390x/cpu_models_sysemu.c b/target/s390x/cpu_models_sysemu.c
|
2024-05-14 06:50:03 +00:00
|
|
|
index 0728bfcc20..ca2e5d91e2 100644
|
2022-09-05 08:13:56 +00:00
|
|
|
--- a/target/s390x/cpu_models_sysemu.c
|
|
|
|
+++ b/target/s390x/cpu_models_sysemu.c
|
2024-05-14 06:50:03 +00:00
|
|
|
@@ -59,6 +59,7 @@ static void create_cpu_model_list(ObjectClass *klass, void *opaque)
|
2022-09-05 08:13:56 +00:00
|
|
|
CpuDefinitionInfo *info;
|
|
|
|
char *name = g_strdup(object_class_get_name(klass));
|
|
|
|
S390CPUClass *scc = S390_CPU_CLASS(klass);
|
|
|
|
+ CPUClass *cc = CPU_CLASS(klass);
|
|
|
|
|
|
|
|
/* strip off the -s390x-cpu */
|
|
|
|
g_strrstr(name, "-" TYPE_S390_CPU)[0] = 0;
|
2024-05-14 06:50:03 +00:00
|
|
|
@@ -68,6 +69,7 @@ static void create_cpu_model_list(ObjectClass *klass, void *opaque)
|
2022-09-05 08:13:56 +00:00
|
|
|
info->migration_safe = scc->is_migration_safe;
|
|
|
|
info->q_static = scc->is_static;
|
|
|
|
info->q_typename = g_strdup(object_class_get_name(klass));
|
|
|
|
+ info->deprecated = !!cc->deprecation_note;
|
|
|
|
/* check for unavailable features */
|
|
|
|
if (cpu_list_data->model) {
|
|
|
|
Object *obj;
|
2023-10-16 10:42:05 +00:00
|
|
|
--
|
|
|
|
2.39.3
|
|
|
|
|