pc: Add pc_compat_2_1() function
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
a3614c65cf
commit
2cad57c717
@ -302,8 +302,13 @@ static void pc_init_pci(MachineState *machine)
|
|||||||
pc_init1(machine, 1, 1);
|
pc_init1(machine, 1, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void pc_compat_2_1(MachineState *machine)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
static void pc_compat_2_0(MachineState *machine)
|
static void pc_compat_2_0(MachineState *machine)
|
||||||
{
|
{
|
||||||
|
pc_compat_2_1(machine);
|
||||||
/* This value depends on the actual DSDT and SSDT compiled into
|
/* This value depends on the actual DSDT and SSDT compiled into
|
||||||
* the source QEMU; unfortunately it depends on the binary and
|
* the source QEMU; unfortunately it depends on the binary and
|
||||||
* not on the machine type, so we cannot make pc-i440fx-1.7 work on
|
* not on the machine type, so we cannot make pc-i440fx-1.7 work on
|
||||||
@ -368,6 +373,12 @@ static void pc_compat_1_2(MachineState *machine)
|
|||||||
x86_cpu_compat_disable_kvm_features(FEAT_KVM, KVM_FEATURE_PV_EOI);
|
x86_cpu_compat_disable_kvm_features(FEAT_KVM, KVM_FEATURE_PV_EOI);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void pc_init_pci_2_1(MachineState *machine)
|
||||||
|
{
|
||||||
|
pc_compat_2_1(machine);
|
||||||
|
pc_init_pci(machine);
|
||||||
|
}
|
||||||
|
|
||||||
static void pc_init_pci_2_0(MachineState *machine)
|
static void pc_init_pci_2_0(MachineState *machine)
|
||||||
{
|
{
|
||||||
pc_compat_2_0(machine);
|
pc_compat_2_0(machine);
|
||||||
@ -472,7 +483,7 @@ static QEMUMachine pc_i440fx_machine_v2_2 = {
|
|||||||
static QEMUMachine pc_i440fx_machine_v2_1 = {
|
static QEMUMachine pc_i440fx_machine_v2_1 = {
|
||||||
PC_I440FX_2_1_MACHINE_OPTIONS,
|
PC_I440FX_2_1_MACHINE_OPTIONS,
|
||||||
.name = "pc-i440fx-2.1",
|
.name = "pc-i440fx-2.1",
|
||||||
.init = pc_init_pci,
|
.init = pc_init_pci_2_1,
|
||||||
.compat_props = (GlobalProperty[]) {
|
.compat_props = (GlobalProperty[]) {
|
||||||
HW_COMPAT_2_1,
|
HW_COMPAT_2_1,
|
||||||
{ /* end of list */ }
|
{ /* end of list */ }
|
||||||
|
@ -281,8 +281,13 @@ static void pc_q35_init(MachineState *machine)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void pc_compat_2_1(MachineState *machine)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
static void pc_compat_2_0(MachineState *machine)
|
static void pc_compat_2_0(MachineState *machine)
|
||||||
{
|
{
|
||||||
|
pc_compat_2_1(machine);
|
||||||
smbios_legacy_mode = true;
|
smbios_legacy_mode = true;
|
||||||
has_reserved_memory = false;
|
has_reserved_memory = false;
|
||||||
pc_set_legacy_acpi_data_size();
|
pc_set_legacy_acpi_data_size();
|
||||||
@ -316,6 +321,12 @@ static void pc_compat_1_4(MachineState *machine)
|
|||||||
x86_cpu_compat_set_features("Westmere", FEAT_1_ECX, 0, CPUID_EXT_PCLMULQDQ);
|
x86_cpu_compat_set_features("Westmere", FEAT_1_ECX, 0, CPUID_EXT_PCLMULQDQ);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void pc_q35_init_2_1(MachineState *machine)
|
||||||
|
{
|
||||||
|
pc_compat_2_1(machine);
|
||||||
|
pc_q35_init(machine);
|
||||||
|
}
|
||||||
|
|
||||||
static void pc_q35_init_2_0(MachineState *machine)
|
static void pc_q35_init_2_0(MachineState *machine)
|
||||||
{
|
{
|
||||||
pc_compat_2_0(machine);
|
pc_compat_2_0(machine);
|
||||||
@ -369,7 +380,7 @@ static QEMUMachine pc_q35_machine_v2_2 = {
|
|||||||
static QEMUMachine pc_q35_machine_v2_1 = {
|
static QEMUMachine pc_q35_machine_v2_1 = {
|
||||||
PC_Q35_2_1_MACHINE_OPTIONS,
|
PC_Q35_2_1_MACHINE_OPTIONS,
|
||||||
.name = "pc-q35-2.1",
|
.name = "pc-q35-2.1",
|
||||||
.init = pc_q35_init,
|
.init = pc_q35_init_2_1,
|
||||||
.compat_props = (GlobalProperty[]) {
|
.compat_props = (GlobalProperty[]) {
|
||||||
HW_COMPAT_2_1,
|
HW_COMPAT_2_1,
|
||||||
{ /* end of list */ }
|
{ /* end of list */ }
|
||||||
|
Loading…
Reference in New Issue
Block a user