xref: /qemu/hw/i386/pc_q35.c (revision 18d6abae3ea092950629e5d26aff1dcfc9a2d78e)
1df2d8b3eSIsaku Yamahata /*
2df2d8b3eSIsaku Yamahata  * Q35 chipset based pc system emulator
3df2d8b3eSIsaku Yamahata  *
4df2d8b3eSIsaku Yamahata  * Copyright (c) 2003-2004 Fabrice Bellard
5df2d8b3eSIsaku Yamahata  * Copyright (c) 2009, 2010
6df2d8b3eSIsaku Yamahata  *               Isaku Yamahata <yamahata at valinux co jp>
7df2d8b3eSIsaku Yamahata  *               VA Linux Systems Japan K.K.
8df2d8b3eSIsaku Yamahata  * Copyright (C) 2012 Jason Baron <jbaron@redhat.com>
9df2d8b3eSIsaku Yamahata  *
10df2d8b3eSIsaku Yamahata  * This is based on pc.c, but heavily modified.
11df2d8b3eSIsaku Yamahata  *
12df2d8b3eSIsaku Yamahata  * Permission is hereby granted, free of charge, to any person obtaining a copy
13df2d8b3eSIsaku Yamahata  * of this software and associated documentation files (the "Software"), to deal
14df2d8b3eSIsaku Yamahata  * in the Software without restriction, including without limitation the rights
15df2d8b3eSIsaku Yamahata  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16df2d8b3eSIsaku Yamahata  * copies of the Software, and to permit persons to whom the Software is
17df2d8b3eSIsaku Yamahata  * furnished to do so, subject to the following conditions:
18df2d8b3eSIsaku Yamahata  *
19df2d8b3eSIsaku Yamahata  * The above copyright notice and this permission notice shall be included in
20df2d8b3eSIsaku Yamahata  * all copies or substantial portions of the Software.
21df2d8b3eSIsaku Yamahata  *
22df2d8b3eSIsaku Yamahata  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23df2d8b3eSIsaku Yamahata  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24df2d8b3eSIsaku Yamahata  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25df2d8b3eSIsaku Yamahata  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26df2d8b3eSIsaku Yamahata  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27df2d8b3eSIsaku Yamahata  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
28df2d8b3eSIsaku Yamahata  * THE SOFTWARE.
29df2d8b3eSIsaku Yamahata  */
30b6a0aa05SPeter Maydell #include "qemu/osdep.h"
3183c9f4caSPaolo Bonzini #include "hw/hw.h"
3204920fc0SMichael S. Tsirkin #include "hw/loader.h"
339c17d615SPaolo Bonzini #include "sysemu/arch_init.h"
340d09e41aSPaolo Bonzini #include "hw/i2c/smbus.h"
3583c9f4caSPaolo Bonzini #include "hw/boards.h"
360d09e41aSPaolo Bonzini #include "hw/timer/mc146818rtc.h"
370d09e41aSPaolo Bonzini #include "hw/xen/xen.h"
389c17d615SPaolo Bonzini #include "sysemu/kvm.h"
3983c9f4caSPaolo Bonzini #include "hw/kvm/clock.h"
400d09e41aSPaolo Bonzini #include "hw/pci-host/q35.h"
41022c62cbSPaolo Bonzini #include "exec/address-spaces.h"
420d09e41aSPaolo Bonzini #include "hw/i386/ich9.h"
4360d8f328SWei Huang #include "hw/smbios/smbios.h"
44df2d8b3eSIsaku Yamahata #include "hw/ide/pci.h"
45df2d8b3eSIsaku Yamahata #include "hw/ide/ahci.h"
46df2d8b3eSIsaku Yamahata #include "hw/usb.h"
47c87b1520SDon Slutz #include "qemu/error-report.h"
4837fb569cSDr. David Alan Gilbert #include "migration/migration.h"
49df2d8b3eSIsaku Yamahata 
50df2d8b3eSIsaku Yamahata /* ICH9 AHCI has 6 ports */
51df2d8b3eSIsaku Yamahata #define MAX_SATA_PORTS     6
52df2d8b3eSIsaku Yamahata 
53df2d8b3eSIsaku Yamahata /* PC hardware initialisation */
543ef96221SMarcel Apfelbaum static void pc_q35_init(MachineState *machine)
55df2d8b3eSIsaku Yamahata {
56ec68007aSEduardo Habkost     PCMachineState *pcms = PC_MACHINE(machine);
577102fa70SEduardo Habkost     PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms);
58df2d8b3eSIsaku Yamahata     Q35PCIHost *q35_host;
59ce88812fSHu Tao     PCIHostState *phb;
60df2d8b3eSIsaku Yamahata     PCIBus *host_bus;
61df2d8b3eSIsaku Yamahata     PCIDevice *lpc;
62df2d8b3eSIsaku Yamahata     BusState *idebus[MAX_SATA_PORTS];
63df2d8b3eSIsaku Yamahata     ISADevice *rtc_state;
64df2d8b3eSIsaku Yamahata     MemoryRegion *pci_memory;
65df2d8b3eSIsaku Yamahata     MemoryRegion *rom_memory;
66df2d8b3eSIsaku Yamahata     MemoryRegion *ram_memory;
67df2d8b3eSIsaku Yamahata     GSIState *gsi_state;
68df2d8b3eSIsaku Yamahata     ISABus *isa_bus;
69df2d8b3eSIsaku Yamahata     qemu_irq *gsi;
70df2d8b3eSIsaku Yamahata     qemu_irq *i8259;
71df2d8b3eSIsaku Yamahata     int i;
72df2d8b3eSIsaku Yamahata     ICH9LPCState *ich9_lpc;
73df2d8b3eSIsaku Yamahata     PCIDevice *ahci;
74c87b1520SDon Slutz     ram_addr_t lowmem;
75d93162e1SJohn Snow     DriveInfo *hd[MAX_SATA_PORTS];
766cd2234cSLaszlo Ersek     MachineClass *mc = MACHINE_GET_CLASS(machine);
77f0513d2cSIgor Mammedov 
784e17997dSMichael S. Tsirkin     /* Check whether RAM fits below 4G (leaving 1/2 GByte for IO memory
794e17997dSMichael S. Tsirkin      * and 256 Mbytes for PCI Express Enhanced Configuration Access Mapping
804e17997dSMichael S. Tsirkin      * also known as MMCFG).
814e17997dSMichael S. Tsirkin      * If it doesn't, we need to split it in chunks below and above 4G.
824e17997dSMichael S. Tsirkin      * In any case, try to make sure that guest addresses aligned at
834e17997dSMichael S. Tsirkin      * 1G boundaries get mapped to host addresses aligned at 1G boundaries.
844e17997dSMichael S. Tsirkin      * For old machine types, use whatever split we used historically to avoid
854e17997dSMichael S. Tsirkin      * breaking migration.
864e17997dSMichael S. Tsirkin      */
873ef96221SMarcel Apfelbaum     if (machine->ram_size >= 0xb0000000) {
887102fa70SEduardo Habkost         lowmem = pcmc->gigabyte_align ? 0x80000000 : 0xb0000000;
89c87b1520SDon Slutz     } else {
90c87b1520SDon Slutz         lowmem = 0xb0000000;
91c87b1520SDon Slutz     }
92c87b1520SDon Slutz 
93a9dd38dbSStefan Weil     /* Handle the machine opt max-ram-below-4g.  It is basically doing
94c87b1520SDon Slutz      * min(qemu limit, user limit).
95c87b1520SDon Slutz      */
96ec68007aSEduardo Habkost     if (lowmem > pcms->max_ram_below_4g) {
97ec68007aSEduardo Habkost         lowmem = pcms->max_ram_below_4g;
98c87b1520SDon Slutz         if (machine->ram_size - lowmem > lowmem &&
99c87b1520SDon Slutz             lowmem & ((1ULL << 30) - 1)) {
100c87b1520SDon Slutz             error_report("Warning: Large machine and max_ram_below_4g(%"PRIu64
101c87b1520SDon Slutz                          ") not a multiple of 1G; possible bad performance.",
102ec68007aSEduardo Habkost                          pcms->max_ram_below_4g);
103c87b1520SDon Slutz         }
104c87b1520SDon Slutz     }
105c87b1520SDon Slutz 
106c87b1520SDon Slutz     if (machine->ram_size >= lowmem) {
107c0aa4e1eSEduardo Habkost         pcms->above_4g_mem_size = machine->ram_size - lowmem;
108c0aa4e1eSEduardo Habkost         pcms->below_4g_mem_size = lowmem;
109df2d8b3eSIsaku Yamahata     } else {
110c0aa4e1eSEduardo Habkost         pcms->above_4g_mem_size = 0;
111c0aa4e1eSEduardo Habkost         pcms->below_4g_mem_size = machine->ram_size;
112df2d8b3eSIsaku Yamahata     }
113df2d8b3eSIsaku Yamahata 
114dced4d2fSMarkus Armbruster     if (xen_enabled()) {
115dced4d2fSMarkus Armbruster         xen_hvm_init(pcms, &ram_memory);
1163c2a9669SDon Slutz     }
1173c2a9669SDon Slutz 
1184884b7bfSZhu Guihua     pc_cpus_init(pcms);
119aa8abbedSGerd Hoffmann     if (!pcmc->has_acpi_build) {
120aa8abbedSGerd Hoffmann         /* only machine types 1.7 & older need this */
1213c2a9669SDon Slutz         pc_acpi_init("q35-acpi-dsdt.aml");
122aa8abbedSGerd Hoffmann     }
1233c2a9669SDon Slutz 
1243c2a9669SDon Slutz     kvmclock_create();
1253c2a9669SDon Slutz 
126df2d8b3eSIsaku Yamahata     /* pci enabled */
1277102fa70SEduardo Habkost     if (pcmc->pci_enabled) {
128df2d8b3eSIsaku Yamahata         pci_memory = g_new(MemoryRegion, 1);
129286690e3SPaolo Bonzini         memory_region_init(pci_memory, NULL, "pci", UINT64_MAX);
130df2d8b3eSIsaku Yamahata         rom_memory = pci_memory;
131df2d8b3eSIsaku Yamahata     } else {
132df2d8b3eSIsaku Yamahata         pci_memory = NULL;
133df2d8b3eSIsaku Yamahata         rom_memory = get_system_memory();
134df2d8b3eSIsaku Yamahata     }
135df2d8b3eSIsaku Yamahata 
1365db3f0deSEduardo Habkost     pc_guest_info_init(pcms);
13707fb6176SPaolo Bonzini 
1387102fa70SEduardo Habkost     if (pcmc->smbios_defaults) {
139b29ad07eSMarkus Armbruster         /* These values are guest ABI, do not change */
140e6667f71SGabriel L. Somlo         smbios_set_defaults("QEMU", "Standard PC (Q35 + ICH9, 2009)",
1417102fa70SEduardo Habkost                             mc->name, pcmc->smbios_legacy_mode,
1427102fa70SEduardo Habkost                             pcmc->smbios_uuid_encoded,
14386299120SWei Huang                             SMBIOS_ENTRY_POINT_21);
144b29ad07eSMarkus Armbruster     }
145b29ad07eSMarkus Armbruster 
146df2d8b3eSIsaku Yamahata     /* allocate ram and load rom/bios */
147df2d8b3eSIsaku Yamahata     if (!xen_enabled()) {
14862b160c0SEduardo Habkost         pc_memory_init(pcms, get_system_memory(),
1495934e216SEduardo Habkost                        rom_memory, &ram_memory);
150df2d8b3eSIsaku Yamahata     }
151df2d8b3eSIsaku Yamahata 
152df2d8b3eSIsaku Yamahata     /* irq lines */
153df2d8b3eSIsaku Yamahata     gsi_state = g_malloc0(sizeof(*gsi_state));
154df2d8b3eSIsaku Yamahata     if (kvm_irqchip_in_kernel()) {
1557102fa70SEduardo Habkost         kvm_pc_setup_irq_routing(pcmc->pci_enabled);
156df2d8b3eSIsaku Yamahata         gsi = qemu_allocate_irqs(kvm_pc_gsi_handler, gsi_state,
157df2d8b3eSIsaku Yamahata                                  GSI_NUM_PINS);
158df2d8b3eSIsaku Yamahata     } else {
159df2d8b3eSIsaku Yamahata         gsi = qemu_allocate_irqs(gsi_handler, gsi_state, GSI_NUM_PINS);
160df2d8b3eSIsaku Yamahata     }
161df2d8b3eSIsaku Yamahata 
162df2d8b3eSIsaku Yamahata     /* create pci host bus */
163df2d8b3eSIsaku Yamahata     q35_host = Q35_HOST_DEVICE(qdev_create(NULL, TYPE_Q35_HOST_DEVICE));
164df2d8b3eSIsaku Yamahata 
165c52dc697SIgor Mammedov     object_property_add_child(qdev_get_machine(), "q35", OBJECT(q35_host), NULL);
166df2d8b3eSIsaku Yamahata     q35_host->mch.ram_memory = ram_memory;
167df2d8b3eSIsaku Yamahata     q35_host->mch.pci_address_space = pci_memory;
168df2d8b3eSIsaku Yamahata     q35_host->mch.system_memory = get_system_memory();
169c7e775e4SDong Xu Wang     q35_host->mch.address_space_io = get_system_io();
170c0aa4e1eSEduardo Habkost     q35_host->mch.below_4g_mem_size = pcms->below_4g_mem_size;
171c0aa4e1eSEduardo Habkost     q35_host->mch.above_4g_mem_size = pcms->above_4g_mem_size;
172df2d8b3eSIsaku Yamahata     /* pci */
173df2d8b3eSIsaku Yamahata     qdev_init_nofail(DEVICE(q35_host));
174ce88812fSHu Tao     phb = PCI_HOST_BRIDGE(q35_host);
175ce88812fSHu Tao     host_bus = phb->bus;
17681ed6482SMarcel Apfelbaum     pcms->bus = phb->bus;
177df2d8b3eSIsaku Yamahata     /* create ISA bus */
178df2d8b3eSIsaku Yamahata     lpc = pci_create_simple_multifunction(host_bus, PCI_DEVFN(ICH9_LPC_DEV,
179df2d8b3eSIsaku Yamahata                                           ICH9_LPC_FUNC), true,
180df2d8b3eSIsaku Yamahata                                           TYPE_ICH9_LPC_DEVICE);
181781bbd6bSIgor Mammedov 
182781bbd6bSIgor Mammedov     object_property_add_link(OBJECT(machine), PC_MACHINE_ACPI_DEVICE_PROP,
183781bbd6bSIgor Mammedov                              TYPE_HOTPLUG_HANDLER,
184ec68007aSEduardo Habkost                              (Object **)&pcms->acpi_dev,
185781bbd6bSIgor Mammedov                              object_property_allow_set_link,
186781bbd6bSIgor Mammedov                              OBJ_PROP_LINK_UNREF_ON_RELEASE, &error_abort);
187781bbd6bSIgor Mammedov     object_property_set_link(OBJECT(machine), OBJECT(lpc),
188781bbd6bSIgor Mammedov                              PC_MACHINE_ACPI_DEVICE_PROP, &error_abort);
189781bbd6bSIgor Mammedov 
190df2d8b3eSIsaku Yamahata     ich9_lpc = ICH9_LPC_DEVICE(lpc);
191df2d8b3eSIsaku Yamahata     ich9_lpc->pic = gsi;
192df2d8b3eSIsaku Yamahata     ich9_lpc->ioapic = gsi_state->ioapic_irq;
193df2d8b3eSIsaku Yamahata     pci_bus_irqs(host_bus, ich9_lpc_set_irq, ich9_lpc_map_irq, ich9_lpc,
194df2d8b3eSIsaku Yamahata                  ICH9_LPC_NB_PIRQS);
19591c3f2f0SJason Baron     pci_bus_set_route_irq_fn(host_bus, ich9_route_intx_pin_to_irq);
196df2d8b3eSIsaku Yamahata     isa_bus = ich9_lpc->isa_bus;
197df2d8b3eSIsaku Yamahata 
198df2d8b3eSIsaku Yamahata     /*end early*/
199df2d8b3eSIsaku Yamahata     isa_bus_irqs(isa_bus, gsi);
200df2d8b3eSIsaku Yamahata 
201df2d8b3eSIsaku Yamahata     if (kvm_irqchip_in_kernel()) {
202df2d8b3eSIsaku Yamahata         i8259 = kvm_i8259_init(isa_bus);
203df2d8b3eSIsaku Yamahata     } else if (xen_enabled()) {
204df2d8b3eSIsaku Yamahata         i8259 = xen_interrupt_controller_init();
205df2d8b3eSIsaku Yamahata     } else {
2060b0cc076SShannon Zhao         i8259 = i8259_init(isa_bus, pc_allocate_cpu_irq());
207df2d8b3eSIsaku Yamahata     }
208df2d8b3eSIsaku Yamahata 
209df2d8b3eSIsaku Yamahata     for (i = 0; i < ISA_NUM_IRQS; i++) {
210df2d8b3eSIsaku Yamahata         gsi_state->i8259_irq[i] = i8259[i];
211df2d8b3eSIsaku Yamahata     }
2127102fa70SEduardo Habkost     if (pcmc->pci_enabled) {
213552b48f4SJohn Snow         ioapic_init_gsi(gsi_state, "q35");
214df2d8b3eSIsaku Yamahata     }
215df2d8b3eSIsaku Yamahata 
216df2d8b3eSIsaku Yamahata     pc_register_ferr_irq(gsi[13]);
217df2d8b3eSIsaku Yamahata 
2187fb1cf16SEric Blake     assert(pcms->vmport != ON_OFF_AUTO__MAX);
219ec68007aSEduardo Habkost     if (pcms->vmport == ON_OFF_AUTO_AUTO) {
220ec68007aSEduardo Habkost         pcms->vmport = xen_enabled() ? ON_OFF_AUTO_OFF : ON_OFF_AUTO_ON;
221d1048befSDon Slutz     }
222d1048befSDon Slutz 
223df2d8b3eSIsaku Yamahata     /* init basic PC hardware */
224220a8846SLaszlo Ersek     pc_basic_device_init(isa_bus, gsi, &rtc_state, !mc->no_floppy,
225ec68007aSEduardo Habkost                          (pcms->vmport != ON_OFF_AUTO_ON), 0xff0104);
226df2d8b3eSIsaku Yamahata 
227df2d8b3eSIsaku Yamahata     /* connect pm stuff to lpc */
228*18d6abaeSEduardo Habkost     ich9_lpc_pm_init(lpc, pc_machine_is_smm_enabled(pcms));
229df2d8b3eSIsaku Yamahata 
230df2d8b3eSIsaku Yamahata     /* ahci and SATA device, for q35 1 ahci controller is built-in */
231df2d8b3eSIsaku Yamahata     ahci = pci_create_simple_multifunction(host_bus,
232df2d8b3eSIsaku Yamahata                                            PCI_DEVFN(ICH9_SATA1_DEV,
233df2d8b3eSIsaku Yamahata                                                      ICH9_SATA1_FUNC),
234df2d8b3eSIsaku Yamahata                                            true, "ich9-ahci");
235df2d8b3eSIsaku Yamahata     idebus[0] = qdev_get_child_bus(&ahci->qdev, "ide.0");
236df2d8b3eSIsaku Yamahata     idebus[1] = qdev_get_child_bus(&ahci->qdev, "ide.1");
23701a2050fSPeter Maydell     g_assert(MAX_SATA_PORTS == ICH_AHCI(ahci)->ahci.ports);
238d93162e1SJohn Snow     ide_drive_get(hd, ICH_AHCI(ahci)->ahci.ports);
239d93162e1SJohn Snow     ahci_ide_create_devs(ahci, hd);
240df2d8b3eSIsaku Yamahata 
241de77a243SMarcel Apfelbaum     if (usb_enabled()) {
242df2d8b3eSIsaku Yamahata         /* Should we create 6 UHCI according to ich9 spec? */
243df2d8b3eSIsaku Yamahata         ehci_create_ich9_with_companions(host_bus, 0x1d);
244df2d8b3eSIsaku Yamahata     }
245df2d8b3eSIsaku Yamahata 
246df2d8b3eSIsaku Yamahata     /* TODO: Populate SPD eeprom data.  */
247df2d8b3eSIsaku Yamahata     smbus_eeprom_init(ich9_smb_init(host_bus,
248df2d8b3eSIsaku Yamahata                                     PCI_DEVFN(ICH9_SMB_DEV, ICH9_SMB_FUNC),
249df2d8b3eSIsaku Yamahata                                     0xb100),
250df2d8b3eSIsaku Yamahata                       8, NULL, 0);
251df2d8b3eSIsaku Yamahata 
25288076854SEduardo Habkost     pc_cmos_init(pcms, idebus[0], idebus[1], rtc_state);
253df2d8b3eSIsaku Yamahata 
254df2d8b3eSIsaku Yamahata     /* the rest devices to which pci devfn is automatically assigned */
255df2d8b3eSIsaku Yamahata     pc_vga_init(isa_bus, host_bus);
256df2d8b3eSIsaku Yamahata     pc_nic_init(isa_bus, host_bus);
2577102fa70SEduardo Habkost     if (pcmc->pci_enabled) {
258df2d8b3eSIsaku Yamahata         pc_pci_device_init(host_bus);
259df2d8b3eSIsaku Yamahata     }
260df2d8b3eSIsaku Yamahata }
261df2d8b3eSIsaku Yamahata 
26299fbeafeSEduardo Habkost #define DEFINE_Q35_MACHINE(suffix, name, compatfn, optionfn) \
26399fbeafeSEduardo Habkost     static void pc_init_##suffix(MachineState *machine) \
26499fbeafeSEduardo Habkost     { \
26599fbeafeSEduardo Habkost         void (*compat)(MachineState *m) = (compatfn); \
26699fbeafeSEduardo Habkost         if (compat) { \
26799fbeafeSEduardo Habkost             compat(machine); \
26899fbeafeSEduardo Habkost         } \
26999fbeafeSEduardo Habkost         pc_q35_init(machine); \
27099fbeafeSEduardo Habkost     } \
27199fbeafeSEduardo Habkost     DEFINE_PC_MACHINE(suffix, name, pc_init_##suffix, optionfn)
2725cb50e0aSJason Wang 
2739953f882SMarkus Armbruster 
274865906f7SEduardo Habkost static void pc_q35_machine_options(MachineClass *m)
275fddd179aSEduardo Habkost {
276fddd179aSEduardo Habkost     m->family = "pc_q35";
277fddd179aSEduardo Habkost     m->desc = "Standard PC (Q35 + ICH9, 2009)";
278fddd179aSEduardo Habkost     m->hot_add_cpu = pc_hot_add_cpu;
279fddd179aSEduardo Habkost     m->units_per_default_bus = 1;
2800b7783a7SEduardo Habkost     m->default_machine_opts = "firmware=bios-256k.bin";
2810b7783a7SEduardo Habkost     m->default_display = "std";
2820b7783a7SEduardo Habkost     m->no_floppy = 1;
283fddd179aSEduardo Habkost }
284a0dba644SMichael S. Tsirkin 
285240240d5SEduardo Habkost static void pc_q35_2_6_machine_options(MachineClass *m)
28687e896abSEduardo Habkost {
28787e896abSEduardo Habkost     pc_q35_machine_options(m);
28887e896abSEduardo Habkost     m->alias = "q35";
28987e896abSEduardo Habkost }
29087e896abSEduardo Habkost 
291240240d5SEduardo Habkost DEFINE_Q35_MACHINE(v2_6, "pc-q35-2.6", NULL,
292240240d5SEduardo Habkost                    pc_q35_2_6_machine_options);
293240240d5SEduardo Habkost 
294240240d5SEduardo Habkost static void pc_q35_2_5_machine_options(MachineClass *m)
295240240d5SEduardo Habkost {
29636f96c4bSHaozhong Zhang     PCMachineClass *pcmc = PC_MACHINE_CLASS(m);
297240240d5SEduardo Habkost     pc_q35_2_6_machine_options(m);
298240240d5SEduardo Habkost     m->alias = NULL;
29936f96c4bSHaozhong Zhang     pcmc->save_tsc_khz = false;
300240240d5SEduardo Habkost     SET_MACHINE_COMPAT(m, PC_COMPAT_2_5);
301240240d5SEduardo Habkost }
302240240d5SEduardo Habkost 
30387e896abSEduardo Habkost DEFINE_Q35_MACHINE(v2_5, "pc-q35-2.5", NULL,
30487e896abSEduardo Habkost                    pc_q35_2_5_machine_options);
30587e896abSEduardo Habkost 
306865906f7SEduardo Habkost static void pc_q35_2_4_machine_options(MachineClass *m)
307fddd179aSEduardo Habkost {
3082f8b5008SIgor Mammedov     PCMachineClass *pcmc = PC_MACHINE_CLASS(m);
30987e896abSEduardo Habkost     pc_q35_2_5_machine_options(m);
310de796d93SEduardo Habkost     m->hw_version = "2.4.0";
3112f8b5008SIgor Mammedov     pcmc->broken_reserved_end = true;
31287e896abSEduardo Habkost     SET_MACHINE_COMPAT(m, PC_COMPAT_2_4);
313fddd179aSEduardo Habkost }
314aeca6e8dSGerd Hoffmann 
31599fbeafeSEduardo Habkost DEFINE_Q35_MACHINE(v2_4, "pc-q35-2.4", NULL,
31625519b06SEduardo Habkost                    pc_q35_2_4_machine_options);
317