2020-07-15 20:28:51 +00:00
|
|
|
From 8b509ce5c11a82d05ad0d43270e4b76e0010015b Mon Sep 17 00:00:00 2001
|
2020-07-08 13:37:45 +00:00
|
|
|
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
|
2020-07-15 20:28:51 +00:00
|
|
|
Date: Fri, 19 Jun 2020 15:42:27 -0400
|
2020-07-08 13:37:45 +00:00
|
|
|
Subject: x86: Add 8.3.0 x86_64 machine type
|
|
|
|
|
|
|
|
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
|
|
Message-id: <20200619154227.23845-3-dgilbert@redhat.com>
|
|
|
|
Patchwork-id: 97663
|
|
|
|
O-Subject: [RHEL-AV 8.3.0 qemu-kvm PATCH 2/2] x86: Add 8.3.0 x86_64 machine type
|
|
|
|
Bugzilla: 1842902
|
2020-07-14 14:45:56 +00:00
|
|
|
RH-Acked-by: Eduardo Habkost <ehabkost@redhat.com>
|
2020-07-08 13:37:45 +00:00
|
|
|
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
|
|
|
|
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
|
|
|
|
|
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
|
|
|
|
|
|
|
|
Not much change, just the smbase-smram.
|
|
|
|
|
|
|
|
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
2020-07-15 20:28:51 +00:00
|
|
|
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
2020-07-08 13:37:45 +00:00
|
|
|
---
|
|
|
|
hw/i386/pc.c | 6 ++++++
|
|
|
|
hw/i386/pc_piix.c | 4 ++++
|
|
|
|
hw/i386/pc_q35.c | 22 ++++++++++++++++++++++
|
|
|
|
include/hw/i386/pc.h | 3 +++
|
|
|
|
4 files changed, 35 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/hw/i386/pc.c b/hw/i386/pc.c
|
2020-07-15 20:28:51 +00:00
|
|
|
index fe37bdec7a..94c857ea97 100644
|
2020-07-08 13:37:45 +00:00
|
|
|
--- a/hw/i386/pc.c
|
|
|
|
+++ b/hw/i386/pc.c
|
2020-07-14 14:45:56 +00:00
|
|
|
@@ -360,6 +360,12 @@ GlobalProperty pc_rhel_compat[] = {
|
2020-07-08 13:37:45 +00:00
|
|
|
};
|
|
|
|
const size_t pc_rhel_compat_len = G_N_ELEMENTS(pc_rhel_compat);
|
|
|
|
|
|
|
|
+GlobalProperty pc_rhel_8_2_compat[] = {
|
|
|
|
+ /* pc_rhel_8_2_compat from pc_compat_4_2 */
|
|
|
|
+ { "mch", "smbase-smram", "off" },
|
|
|
|
+};
|
|
|
|
+const size_t pc_rhel_8_2_compat_len = G_N_ELEMENTS(pc_rhel_8_2_compat);
|
|
|
|
+
|
|
|
|
/* pc_rhel_8_1_compat is empty since pc_4_1_compat is */
|
|
|
|
GlobalProperty pc_rhel_8_1_compat[] = { };
|
|
|
|
const size_t pc_rhel_8_1_compat_len = G_N_ELEMENTS(pc_rhel_8_1_compat);
|
|
|
|
diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
|
2020-07-15 20:28:51 +00:00
|
|
|
index eeadd896c2..f14ddcb472 100644
|
2020-07-08 13:37:45 +00:00
|
|
|
--- a/hw/i386/pc_piix.c
|
|
|
|
+++ b/hw/i386/pc_piix.c
|
2020-07-14 14:45:56 +00:00
|
|
|
@@ -1028,6 +1028,10 @@ static void pc_machine_rhel760_options(MachineClass *m)
|
2020-07-08 13:37:45 +00:00
|
|
|
m->smbus_no_migration_support = true;
|
|
|
|
pcmc->pvh_enabled = false;
|
|
|
|
pcmc->default_cpu_version = CPU_VERSION_LEGACY;
|
|
|
|
+ compat_props_add(m->compat_props, hw_compat_rhel_8_2,
|
|
|
|
+ hw_compat_rhel_8_2_len);
|
|
|
|
+ compat_props_add(m->compat_props, pc_rhel_8_2_compat,
|
|
|
|
+ pc_rhel_8_2_compat_len);
|
|
|
|
compat_props_add(m->compat_props, hw_compat_rhel_8_1, hw_compat_rhel_8_1_len);
|
|
|
|
compat_props_add(m->compat_props, pc_rhel_8_1_compat, pc_rhel_8_1_compat_len);
|
|
|
|
compat_props_add(m->compat_props, hw_compat_rhel_8_0, hw_compat_rhel_8_0_len);
|
|
|
|
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
|
2020-07-15 20:28:51 +00:00
|
|
|
index 1cd4e15297..b9e8dcb392 100644
|
2020-07-08 13:37:45 +00:00
|
|
|
--- a/hw/i386/pc_q35.c
|
|
|
|
+++ b/hw/i386/pc_q35.c
|
2020-07-14 14:45:56 +00:00
|
|
|
@@ -590,6 +590,23 @@ static void pc_q35_machine_rhel_options(MachineClass *m)
|
2020-07-08 13:37:45 +00:00
|
|
|
compat_props_add(m->compat_props, pc_rhel_compat, pc_rhel_compat_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
+static void pc_q35_init_rhel830(MachineState *machine)
|
|
|
|
+{
|
|
|
|
+ pc_q35_init(machine);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void pc_q35_machine_rhel830_options(MachineClass *m)
|
|
|
|
+{
|
|
|
|
+ PCMachineClass *pcmc = PC_MACHINE_CLASS(m);
|
|
|
|
+ pc_q35_machine_rhel_options(m);
|
|
|
|
+ m->desc = "RHEL-8.3.0 PC (Q35 + ICH9, 2009)";
|
|
|
|
+ pcmc->smbios_stream_product = "RHEL-AV";
|
|
|
|
+ pcmc->smbios_stream_version = "8.3.0";
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+DEFINE_PC_MACHINE(q35_rhel830, "pc-q35-rhel8.3.0", pc_q35_init_rhel830,
|
|
|
|
+ pc_q35_machine_rhel830_options);
|
|
|
|
+
|
|
|
|
static void pc_q35_init_rhel820(MachineState *machine)
|
|
|
|
{
|
|
|
|
pc_q35_init(machine);
|
2020-07-14 14:45:56 +00:00
|
|
|
@@ -600,8 +617,13 @@ static void pc_q35_machine_rhel820_options(MachineClass *m)
|
2020-07-08 13:37:45 +00:00
|
|
|
PCMachineClass *pcmc = PC_MACHINE_CLASS(m);
|
|
|
|
pc_q35_machine_rhel_options(m);
|
|
|
|
m->desc = "RHEL-8.2.0 PC (Q35 + ICH9, 2009)";
|
|
|
|
+ m->alias = NULL;
|
|
|
|
pcmc->smbios_stream_product = "RHEL-AV";
|
|
|
|
pcmc->smbios_stream_version = "8.2.0";
|
|
|
|
+ compat_props_add(m->compat_props, hw_compat_rhel_8_2,
|
|
|
|
+ hw_compat_rhel_8_2_len);
|
|
|
|
+ compat_props_add(m->compat_props, pc_rhel_8_2_compat,
|
|
|
|
+ pc_rhel_8_2_compat_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_PC_MACHINE(q35_rhel820, "pc-q35-rhel8.2.0", pc_q35_init_rhel820,
|
|
|
|
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h
|
2020-07-15 20:28:51 +00:00
|
|
|
index 95d07f81a0..e67468ba41 100644
|
2020-07-08 13:37:45 +00:00
|
|
|
--- a/include/hw/i386/pc.h
|
|
|
|
+++ b/include/hw/i386/pc.h
|
|
|
|
@@ -270,6 +270,9 @@ extern const size_t pc_compat_1_4_len;
|
|
|
|
extern GlobalProperty pc_rhel_compat[];
|
|
|
|
extern const size_t pc_rhel_compat_len;
|
|
|
|
|
|
|
|
+extern GlobalProperty pc_rhel_8_2_compat[];
|
|
|
|
+extern const size_t pc_rhel_8_2_compat_len;
|
|
|
|
+
|
|
|
|
extern GlobalProperty pc_rhel_8_1_compat[];
|
|
|
|
extern const size_t pc_rhel_8_1_compat_len;
|
|
|
|
|
|
|
|
--
|
2020-07-15 20:28:51 +00:00
|
|
|
2.27.0
|
2020-07-08 13:37:45 +00:00
|
|
|
|