xref: /qemu/hw/i386/pc_q35.c (revision 00d0f9fd6602a27b204f672ef5bc8e69736c7ff1)
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"
42b094f2e0SRita Sinha #include "hw/i386/pc.h"
430d09e41aSPaolo Bonzini #include "hw/i386/ich9.h"
4460d8f328SWei Huang #include "hw/smbios/smbios.h"
45df2d8b3eSIsaku Yamahata #include "hw/ide/pci.h"
46df2d8b3eSIsaku Yamahata #include "hw/ide/ahci.h"
47df2d8b3eSIsaku Yamahata #include "hw/usb.h"
48c87b1520SDon Slutz #include "qemu/error-report.h"
4937fb569cSDr. David Alan Gilbert #include "migration/migration.h"
50df2d8b3eSIsaku Yamahata 
51df2d8b3eSIsaku Yamahata /* ICH9 AHCI has 6 ports */
52df2d8b3eSIsaku Yamahata #define MAX_SATA_PORTS     6
53df2d8b3eSIsaku Yamahata 
54df2d8b3eSIsaku Yamahata /* PC hardware initialisation */
553ef96221SMarcel Apfelbaum static void pc_q35_init(MachineState *machine)
56df2d8b3eSIsaku Yamahata {
57ec68007aSEduardo Habkost     PCMachineState *pcms = PC_MACHINE(machine);
587102fa70SEduardo Habkost     PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms);
59df2d8b3eSIsaku Yamahata     Q35PCIHost *q35_host;
60ce88812fSHu Tao     PCIHostState *phb;
61df2d8b3eSIsaku Yamahata     PCIBus *host_bus;
62df2d8b3eSIsaku Yamahata     PCIDevice *lpc;
63f999c0deSEfimov Vasily     DeviceState *lpc_dev;
64df2d8b3eSIsaku Yamahata     BusState *idebus[MAX_SATA_PORTS];
65df2d8b3eSIsaku Yamahata     ISADevice *rtc_state;
665fe79386SXiao Guangrong     MemoryRegion *system_io = get_system_io();
67df2d8b3eSIsaku Yamahata     MemoryRegion *pci_memory;
68df2d8b3eSIsaku Yamahata     MemoryRegion *rom_memory;
69df2d8b3eSIsaku Yamahata     MemoryRegion *ram_memory;
70df2d8b3eSIsaku Yamahata     GSIState *gsi_state;
71df2d8b3eSIsaku Yamahata     ISABus *isa_bus;
72df2d8b3eSIsaku Yamahata     qemu_irq *i8259;
73df2d8b3eSIsaku Yamahata     int i;
74df2d8b3eSIsaku Yamahata     ICH9LPCState *ich9_lpc;
75df2d8b3eSIsaku Yamahata     PCIDevice *ahci;
76c87b1520SDon Slutz     ram_addr_t lowmem;
77d93162e1SJohn Snow     DriveInfo *hd[MAX_SATA_PORTS];
786cd2234cSLaszlo Ersek     MachineClass *mc = MACHINE_GET_CLASS(machine);
79f0513d2cSIgor Mammedov 
804e17997dSMichael S. Tsirkin     /* Check whether RAM fits below 4G (leaving 1/2 GByte for IO memory
814e17997dSMichael S. Tsirkin      * and 256 Mbytes for PCI Express Enhanced Configuration Access Mapping
824e17997dSMichael S. Tsirkin      * also known as MMCFG).
834e17997dSMichael S. Tsirkin      * If it doesn't, we need to split it in chunks below and above 4G.
844e17997dSMichael S. Tsirkin      * In any case, try to make sure that guest addresses aligned at
854e17997dSMichael S. Tsirkin      * 1G boundaries get mapped to host addresses aligned at 1G boundaries.
864e17997dSMichael S. Tsirkin      */
873ef96221SMarcel Apfelbaum     if (machine->ram_size >= 0xb0000000) {
88533e8bbbSEduardo Habkost         lowmem = 0x80000000;
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      */
965ec7d098SGerd Hoffmann     if (!pcms->max_ram_below_4g) {
975ec7d098SGerd Hoffmann         pcms->max_ram_below_4g = 1ULL << 32; /* default: 4G */;
985ec7d098SGerd Hoffmann     }
99ec68007aSEduardo Habkost     if (lowmem > pcms->max_ram_below_4g) {
100ec68007aSEduardo Habkost         lowmem = pcms->max_ram_below_4g;
101c87b1520SDon Slutz         if (machine->ram_size - lowmem > lowmem &&
102c87b1520SDon Slutz             lowmem & ((1ULL << 30) - 1)) {
103c87b1520SDon Slutz             error_report("Warning: Large machine and max_ram_below_4g(%"PRIu64
104c87b1520SDon Slutz                          ") not a multiple of 1G; possible bad performance.",
105ec68007aSEduardo Habkost                          pcms->max_ram_below_4g);
106c87b1520SDon Slutz         }
107c87b1520SDon Slutz     }
108c87b1520SDon Slutz 
109c87b1520SDon Slutz     if (machine->ram_size >= lowmem) {
110c0aa4e1eSEduardo Habkost         pcms->above_4g_mem_size = machine->ram_size - lowmem;
111c0aa4e1eSEduardo Habkost         pcms->below_4g_mem_size = lowmem;
112df2d8b3eSIsaku Yamahata     } else {
113c0aa4e1eSEduardo Habkost         pcms->above_4g_mem_size = 0;
114c0aa4e1eSEduardo Habkost         pcms->below_4g_mem_size = machine->ram_size;
115df2d8b3eSIsaku Yamahata     }
116df2d8b3eSIsaku Yamahata 
117dced4d2fSMarkus Armbruster     if (xen_enabled()) {
118dced4d2fSMarkus Armbruster         xen_hvm_init(pcms, &ram_memory);
1193c2a9669SDon Slutz     }
1203c2a9669SDon Slutz 
1214884b7bfSZhu Guihua     pc_cpus_init(pcms);
1223c2a9669SDon Slutz 
1233c2a9669SDon Slutz     kvmclock_create();
1243c2a9669SDon Slutz 
125df2d8b3eSIsaku Yamahata     /* pci enabled */
1267102fa70SEduardo Habkost     if (pcmc->pci_enabled) {
127df2d8b3eSIsaku Yamahata         pci_memory = g_new(MemoryRegion, 1);
128286690e3SPaolo Bonzini         memory_region_init(pci_memory, NULL, "pci", UINT64_MAX);
129df2d8b3eSIsaku Yamahata         rom_memory = pci_memory;
130df2d8b3eSIsaku Yamahata     } else {
131df2d8b3eSIsaku Yamahata         pci_memory = NULL;
132df2d8b3eSIsaku Yamahata         rom_memory = get_system_memory();
133df2d8b3eSIsaku Yamahata     }
134df2d8b3eSIsaku Yamahata 
1355db3f0deSEduardo Habkost     pc_guest_info_init(pcms);
13607fb6176SPaolo Bonzini 
1377102fa70SEduardo Habkost     if (pcmc->smbios_defaults) {
138b29ad07eSMarkus Armbruster         /* These values are guest ABI, do not change */
139e6667f71SGabriel L. Somlo         smbios_set_defaults("QEMU", "Standard PC (Q35 + ICH9, 2009)",
1407102fa70SEduardo Habkost                             mc->name, pcmc->smbios_legacy_mode,
1417102fa70SEduardo Habkost                             pcmc->smbios_uuid_encoded,
14286299120SWei Huang                             SMBIOS_ENTRY_POINT_21);
143b29ad07eSMarkus Armbruster     }
144b29ad07eSMarkus Armbruster 
145df2d8b3eSIsaku Yamahata     /* allocate ram and load rom/bios */
146df2d8b3eSIsaku Yamahata     if (!xen_enabled()) {
14762b160c0SEduardo Habkost         pc_memory_init(pcms, get_system_memory(),
1485934e216SEduardo Habkost                        rom_memory, &ram_memory);
149df2d8b3eSIsaku Yamahata     }
150df2d8b3eSIsaku Yamahata 
151df2d8b3eSIsaku Yamahata     /* irq lines */
152df2d8b3eSIsaku Yamahata     gsi_state = g_malloc0(sizeof(*gsi_state));
153b094f2e0SRita Sinha     if (kvm_ioapic_in_kernel()) {
1547102fa70SEduardo Habkost         kvm_pc_setup_irq_routing(pcmc->pci_enabled);
1553e6c0c4cSMarc-André Lureau         pcms->gsi = qemu_allocate_irqs(kvm_pc_gsi_handler, gsi_state,
156df2d8b3eSIsaku Yamahata                                        GSI_NUM_PINS);
157df2d8b3eSIsaku Yamahata     } else {
1583e6c0c4cSMarc-André Lureau         pcms->gsi = qemu_allocate_irqs(gsi_handler, gsi_state, GSI_NUM_PINS);
159df2d8b3eSIsaku Yamahata     }
160df2d8b3eSIsaku Yamahata 
161df2d8b3eSIsaku Yamahata     /* create pci host bus */
162df2d8b3eSIsaku Yamahata     q35_host = Q35_HOST_DEVICE(qdev_create(NULL, TYPE_Q35_HOST_DEVICE));
163df2d8b3eSIsaku Yamahata 
164c52dc697SIgor Mammedov     object_property_add_child(qdev_get_machine(), "q35", OBJECT(q35_host), NULL);
1658d1c7158SEfimov Vasily     object_property_set_link(OBJECT(q35_host), OBJECT(ram_memory),
1668d1c7158SEfimov Vasily                              MCH_HOST_PROP_RAM_MEM, NULL);
1678d1c7158SEfimov Vasily     object_property_set_link(OBJECT(q35_host), OBJECT(pci_memory),
1688d1c7158SEfimov Vasily                              MCH_HOST_PROP_PCI_MEM, NULL);
1698d1c7158SEfimov Vasily     object_property_set_link(OBJECT(q35_host), OBJECT(get_system_memory()),
1708d1c7158SEfimov Vasily                              MCH_HOST_PROP_SYSTEM_MEM, NULL);
1718d1c7158SEfimov Vasily     object_property_set_link(OBJECT(q35_host), OBJECT(system_io),
1728d1c7158SEfimov Vasily                              MCH_HOST_PROP_IO_MEM, NULL);
1738d1c7158SEfimov Vasily     object_property_set_int(OBJECT(q35_host), pcms->below_4g_mem_size,
1748d1c7158SEfimov Vasily                             PCI_HOST_BELOW_4G_MEM_SIZE, NULL);
1758d1c7158SEfimov Vasily     object_property_set_int(OBJECT(q35_host), pcms->above_4g_mem_size,
1768d1c7158SEfimov Vasily                             PCI_HOST_ABOVE_4G_MEM_SIZE, NULL);
177df2d8b3eSIsaku Yamahata     /* pci */
178df2d8b3eSIsaku Yamahata     qdev_init_nofail(DEVICE(q35_host));
179ce88812fSHu Tao     phb = PCI_HOST_BRIDGE(q35_host);
180ce88812fSHu Tao     host_bus = phb->bus;
181df2d8b3eSIsaku Yamahata     /* create ISA bus */
182df2d8b3eSIsaku Yamahata     lpc = pci_create_simple_multifunction(host_bus, PCI_DEVFN(ICH9_LPC_DEV,
183df2d8b3eSIsaku Yamahata                                           ICH9_LPC_FUNC), true,
184df2d8b3eSIsaku Yamahata                                           TYPE_ICH9_LPC_DEVICE);
185781bbd6bSIgor Mammedov 
186781bbd6bSIgor Mammedov     object_property_add_link(OBJECT(machine), PC_MACHINE_ACPI_DEVICE_PROP,
187781bbd6bSIgor Mammedov                              TYPE_HOTPLUG_HANDLER,
188ec68007aSEduardo Habkost                              (Object **)&pcms->acpi_dev,
189781bbd6bSIgor Mammedov                              object_property_allow_set_link,
190781bbd6bSIgor Mammedov                              OBJ_PROP_LINK_UNREF_ON_RELEASE, &error_abort);
191781bbd6bSIgor Mammedov     object_property_set_link(OBJECT(machine), OBJECT(lpc),
192781bbd6bSIgor Mammedov                              PC_MACHINE_ACPI_DEVICE_PROP, &error_abort);
193781bbd6bSIgor Mammedov 
194df2d8b3eSIsaku Yamahata     ich9_lpc = ICH9_LPC_DEVICE(lpc);
195f999c0deSEfimov Vasily     lpc_dev = DEVICE(lpc);
196f999c0deSEfimov Vasily     for (i = 0; i < GSI_NUM_PINS; i++) {
1973e6c0c4cSMarc-André Lureau         qdev_connect_gpio_out_named(lpc_dev, ICH9_GPIO_GSI, i, pcms->gsi[i]);
198f999c0deSEfimov Vasily     }
199df2d8b3eSIsaku Yamahata     pci_bus_irqs(host_bus, ich9_lpc_set_irq, ich9_lpc_map_irq, ich9_lpc,
200df2d8b3eSIsaku Yamahata                  ICH9_LPC_NB_PIRQS);
20191c3f2f0SJason Baron     pci_bus_set_route_irq_fn(host_bus, ich9_route_intx_pin_to_irq);
202df2d8b3eSIsaku Yamahata     isa_bus = ich9_lpc->isa_bus;
203df2d8b3eSIsaku Yamahata 
204b094f2e0SRita Sinha     if (kvm_pic_in_kernel()) {
205df2d8b3eSIsaku Yamahata         i8259 = kvm_i8259_init(isa_bus);
206df2d8b3eSIsaku Yamahata     } else if (xen_enabled()) {
207df2d8b3eSIsaku Yamahata         i8259 = xen_interrupt_controller_init();
208df2d8b3eSIsaku Yamahata     } else {
2090b0cc076SShannon Zhao         i8259 = i8259_init(isa_bus, pc_allocate_cpu_irq());
210df2d8b3eSIsaku Yamahata     }
211df2d8b3eSIsaku Yamahata 
212df2d8b3eSIsaku Yamahata     for (i = 0; i < ISA_NUM_IRQS; i++) {
213df2d8b3eSIsaku Yamahata         gsi_state->i8259_irq[i] = i8259[i];
214df2d8b3eSIsaku Yamahata     }
2158197e24cSMarc-André Lureau     g_free(i8259);
2168197e24cSMarc-André Lureau 
2177102fa70SEduardo Habkost     if (pcmc->pci_enabled) {
218552b48f4SJohn Snow         ioapic_init_gsi(gsi_state, "q35");
219df2d8b3eSIsaku Yamahata     }
220df2d8b3eSIsaku Yamahata 
2213e6c0c4cSMarc-André Lureau     pc_register_ferr_irq(pcms->gsi[13]);
222df2d8b3eSIsaku Yamahata 
2237fb1cf16SEric Blake     assert(pcms->vmport != ON_OFF_AUTO__MAX);
224ec68007aSEduardo Habkost     if (pcms->vmport == ON_OFF_AUTO_AUTO) {
225ec68007aSEduardo Habkost         pcms->vmport = xen_enabled() ? ON_OFF_AUTO_OFF : ON_OFF_AUTO_ON;
226d1048befSDon Slutz     }
227d1048befSDon Slutz 
228df2d8b3eSIsaku Yamahata     /* init basic PC hardware */
2293e6c0c4cSMarc-André Lureau     pc_basic_device_init(isa_bus, pcms->gsi, &rtc_state, !mc->no_floppy,
230ec68007aSEduardo Habkost                          (pcms->vmport != ON_OFF_AUTO_ON), 0xff0104);
231df2d8b3eSIsaku Yamahata 
232df2d8b3eSIsaku Yamahata     /* connect pm stuff to lpc */
23318d6abaeSEduardo Habkost     ich9_lpc_pm_init(lpc, pc_machine_is_smm_enabled(pcms));
234df2d8b3eSIsaku Yamahata 
235df2d8b3eSIsaku Yamahata     /* ahci and SATA device, for q35 1 ahci controller is built-in */
236df2d8b3eSIsaku Yamahata     ahci = pci_create_simple_multifunction(host_bus,
237df2d8b3eSIsaku Yamahata                                            PCI_DEVFN(ICH9_SATA1_DEV,
238df2d8b3eSIsaku Yamahata                                                      ICH9_SATA1_FUNC),
239df2d8b3eSIsaku Yamahata                                            true, "ich9-ahci");
240df2d8b3eSIsaku Yamahata     idebus[0] = qdev_get_child_bus(&ahci->qdev, "ide.0");
241df2d8b3eSIsaku Yamahata     idebus[1] = qdev_get_child_bus(&ahci->qdev, "ide.1");
24201a2050fSPeter Maydell     g_assert(MAX_SATA_PORTS == ICH_AHCI(ahci)->ahci.ports);
243d93162e1SJohn Snow     ide_drive_get(hd, ICH_AHCI(ahci)->ahci.ports);
244d93162e1SJohn Snow     ahci_ide_create_devs(ahci, hd);
245df2d8b3eSIsaku Yamahata 
2464bcbe0b6SEduardo Habkost     if (machine_usb(machine)) {
247df2d8b3eSIsaku Yamahata         /* Should we create 6 UHCI according to ich9 spec? */
248df2d8b3eSIsaku Yamahata         ehci_create_ich9_with_companions(host_bus, 0x1d);
249df2d8b3eSIsaku Yamahata     }
250df2d8b3eSIsaku Yamahata 
251df2d8b3eSIsaku Yamahata     /* TODO: Populate SPD eeprom data.  */
252df2d8b3eSIsaku Yamahata     smbus_eeprom_init(ich9_smb_init(host_bus,
253df2d8b3eSIsaku Yamahata                                     PCI_DEVFN(ICH9_SMB_DEV, ICH9_SMB_FUNC),
254df2d8b3eSIsaku Yamahata                                     0xb100),
255df2d8b3eSIsaku Yamahata                       8, NULL, 0);
256df2d8b3eSIsaku Yamahata 
25788076854SEduardo Habkost     pc_cmos_init(pcms, idebus[0], idebus[1], rtc_state);
258df2d8b3eSIsaku Yamahata 
259df2d8b3eSIsaku Yamahata     /* the rest devices to which pci devfn is automatically assigned */
260df2d8b3eSIsaku Yamahata     pc_vga_init(isa_bus, host_bus);
261df2d8b3eSIsaku Yamahata     pc_nic_init(isa_bus, host_bus);
2627102fa70SEduardo Habkost     if (pcmc->pci_enabled) {
263df2d8b3eSIsaku Yamahata         pc_pci_device_init(host_bus);
264df2d8b3eSIsaku Yamahata     }
2655fe79386SXiao Guangrong 
2665fe79386SXiao Guangrong     if (pcms->acpi_nvdimm_state.is_enabled) {
2675fe79386SXiao Guangrong         nvdimm_init_acpi_state(&pcms->acpi_nvdimm_state, system_io,
2685fe79386SXiao Guangrong                                pcms->fw_cfg, OBJECT(pcms));
2695fe79386SXiao Guangrong     }
270df2d8b3eSIsaku Yamahata }
271df2d8b3eSIsaku Yamahata 
27299fbeafeSEduardo Habkost #define DEFINE_Q35_MACHINE(suffix, name, compatfn, optionfn) \
27399fbeafeSEduardo Habkost     static void pc_init_##suffix(MachineState *machine) \
27499fbeafeSEduardo Habkost     { \
27599fbeafeSEduardo Habkost         void (*compat)(MachineState *m) = (compatfn); \
27699fbeafeSEduardo Habkost         if (compat) { \
27799fbeafeSEduardo Habkost             compat(machine); \
27899fbeafeSEduardo Habkost         } \
27999fbeafeSEduardo Habkost         pc_q35_init(machine); \
28099fbeafeSEduardo Habkost     } \
28199fbeafeSEduardo Habkost     DEFINE_PC_MACHINE(suffix, name, pc_init_##suffix, optionfn)
2825cb50e0aSJason Wang 
2839953f882SMarkus Armbruster 
284865906f7SEduardo Habkost static void pc_q35_machine_options(MachineClass *m)
285fddd179aSEduardo Habkost {
286fddd179aSEduardo Habkost     m->family = "pc_q35";
287fddd179aSEduardo Habkost     m->desc = "Standard PC (Q35 + ICH9, 2009)";
288fddd179aSEduardo Habkost     m->hot_add_cpu = pc_hot_add_cpu;
289fddd179aSEduardo Habkost     m->units_per_default_bus = 1;
2900b7783a7SEduardo Habkost     m->default_machine_opts = "firmware=bios-256k.bin";
2910b7783a7SEduardo Habkost     m->default_display = "std";
2920b7783a7SEduardo Habkost     m->no_floppy = 1;
293bf8d4924SMarcel Apfelbaum     m->has_dynamic_sysbus = true;
294*00d0f9fdSIgor Mammedov     m->max_cpus = 288;
295fddd179aSEduardo Habkost }
296a0dba644SMichael S. Tsirkin 
297a4d3c834SLongpeng(Mike) static void pc_q35_2_8_machine_options(MachineClass *m)
29887e896abSEduardo Habkost {
29987e896abSEduardo Habkost     pc_q35_machine_options(m);
30087e896abSEduardo Habkost     m->alias = "q35";
30187e896abSEduardo Habkost }
30287e896abSEduardo Habkost 
303a4d3c834SLongpeng(Mike) DEFINE_Q35_MACHINE(v2_8, "pc-q35-2.8", NULL,
304a4d3c834SLongpeng(Mike)                    pc_q35_2_8_machine_options);
305a4d3c834SLongpeng(Mike) 
306a4d3c834SLongpeng(Mike) static void pc_q35_2_7_machine_options(MachineClass *m)
307a4d3c834SLongpeng(Mike) {
308a4d3c834SLongpeng(Mike)     pc_q35_2_8_machine_options(m);
309a4d3c834SLongpeng(Mike)     m->alias = NULL;
310*00d0f9fdSIgor Mammedov     m->max_cpus = 255;
311a4d3c834SLongpeng(Mike)     SET_MACHINE_COMPAT(m, PC_COMPAT_2_7);
312a4d3c834SLongpeng(Mike) }
313a4d3c834SLongpeng(Mike) 
314d86c1451SIgor Mammedov DEFINE_Q35_MACHINE(v2_7, "pc-q35-2.7", NULL,
315d86c1451SIgor Mammedov                    pc_q35_2_7_machine_options);
316d86c1451SIgor Mammedov 
317d86c1451SIgor Mammedov static void pc_q35_2_6_machine_options(MachineClass *m)
318d86c1451SIgor Mammedov {
319679dd1a9SIgor Mammedov     PCMachineClass *pcmc = PC_MACHINE_CLASS(m);
320d86c1451SIgor Mammedov     pc_q35_2_7_machine_options(m);
321679dd1a9SIgor Mammedov     pcmc->legacy_cpu_hotplug = true;
322d86c1451SIgor Mammedov     SET_MACHINE_COMPAT(m, PC_COMPAT_2_6);
323d86c1451SIgor Mammedov }
324d86c1451SIgor Mammedov 
325240240d5SEduardo Habkost DEFINE_Q35_MACHINE(v2_6, "pc-q35-2.6", NULL,
326240240d5SEduardo Habkost                    pc_q35_2_6_machine_options);
327240240d5SEduardo Habkost 
328240240d5SEduardo Habkost static void pc_q35_2_5_machine_options(MachineClass *m)
329240240d5SEduardo Habkost {
33036f96c4bSHaozhong Zhang     PCMachineClass *pcmc = PC_MACHINE_CLASS(m);
331240240d5SEduardo Habkost     pc_q35_2_6_machine_options(m);
33236f96c4bSHaozhong Zhang     pcmc->save_tsc_khz = false;
333bab47d9aSGerd Hoffmann     m->legacy_fw_cfg_order = 1;
334240240d5SEduardo Habkost     SET_MACHINE_COMPAT(m, PC_COMPAT_2_5);
335240240d5SEduardo Habkost }
336240240d5SEduardo Habkost 
33787e896abSEduardo Habkost DEFINE_Q35_MACHINE(v2_5, "pc-q35-2.5", NULL,
33887e896abSEduardo Habkost                    pc_q35_2_5_machine_options);
33987e896abSEduardo Habkost 
340865906f7SEduardo Habkost static void pc_q35_2_4_machine_options(MachineClass *m)
341fddd179aSEduardo Habkost {
3422f8b5008SIgor Mammedov     PCMachineClass *pcmc = PC_MACHINE_CLASS(m);
34387e896abSEduardo Habkost     pc_q35_2_5_machine_options(m);
344de796d93SEduardo Habkost     m->hw_version = "2.4.0";
3452f8b5008SIgor Mammedov     pcmc->broken_reserved_end = true;
34687e896abSEduardo Habkost     SET_MACHINE_COMPAT(m, PC_COMPAT_2_4);
347fddd179aSEduardo Habkost }
348aeca6e8dSGerd Hoffmann 
34999fbeafeSEduardo Habkost DEFINE_Q35_MACHINE(v2_4, "pc-q35-2.4", NULL,
35025519b06SEduardo Habkost                    pc_q35_2_4_machine_options);
351