]> git.proxmox.com Git - mirror_qemu.git/blame - hw/i386/pc_piix.c
piix: Eliminate pc_init_pci()
[mirror_qemu.git] / hw / i386 / pc_piix.c
CommitLineData
845773ab
IY
1/*
2 * QEMU PC System Emulator
3 *
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
ae0a5466
AK
25#include <glib.h>
26
83c9f4ca 27#include "hw/hw.h"
04920fc0 28#include "hw/loader.h"
0d09e41a
PB
29#include "hw/i386/pc.h"
30#include "hw/i386/apic.h"
b29ad07e 31#include "hw/i386/smbios.h"
83c9f4ca
PB
32#include "hw/pci/pci.h"
33#include "hw/pci/pci_ids.h"
34#include "hw/usb.h"
1422e32d 35#include "net/net.h"
83c9f4ca
PB
36#include "hw/boards.h"
37#include "hw/ide.h"
9c17d615 38#include "sysemu/kvm.h"
83c9f4ca 39#include "hw/kvm/clock.h"
9c17d615 40#include "sysemu/sysemu.h"
83c9f4ca 41#include "hw/sysbus.h"
f0513d2c 42#include "hw/cpu/icc_bus.h"
9c17d615 43#include "sysemu/arch_init.h"
4be74634 44#include "sysemu/block-backend.h"
0d09e41a
PB
45#include "hw/i2c/smbus.h"
46#include "hw/xen/xen.h"
022c62cb
PB
47#include "exec/memory.h"
48#include "exec/address-spaces.h"
0445259b 49#include "hw/acpi/acpi.h"
dc59944b 50#include "cpu.h"
c87b1520 51#include "qemu/error-report.h"
29d3ccde
AP
52#ifdef CONFIG_XEN
53# include <xen/hvm/hvm_info_table.h>
54#endif
845773ab
IY
55
56#define MAX_IDE_BUS 2
57
58static const int ide_iobase[MAX_IDE_BUS] = { 0x1f0, 0x170 };
59static const int ide_iobase2[MAX_IDE_BUS] = { 0x3f6, 0x376 };
60static const int ide_irq[MAX_IDE_BUS] = { 14, 15 };
61
72d164aa 62static bool pci_enabled = true;
72c194f7 63static bool has_acpi_build = true;
384fb32e 64static bool rsdp_in_ram = true;
07fb6176 65static int legacy_acpi_table_size;
e6667f71 66static bool smbios_defaults = true;
c97294ec 67static bool smbios_legacy_mode;
caad057b 68static bool smbios_uuid_encoded = true;
ecdbfceb
MT
69/* Make sure that guest addresses aligned at 1Gbyte boundaries get mapped to
70 * host addresses aligned at 1Gbyte boundaries. This way we can use 1GByte
71 * pages in the host.
72 */
bb43d383 73static bool gigabyte_align = true;
de268e13 74static bool has_reserved_memory = true;
72d164aa 75static bool kvmclock_enabled = true;
3ab135f3 76
845773ab 77/* PC hardware initialisation */
72d164aa 78static void pc_init1(MachineState *machine)
845773ab 79{
781bbd6b 80 PCMachineState *pc_machine = PC_MACHINE(machine);
1e099556
EH
81 MemoryRegion *system_memory = get_system_memory();
82 MemoryRegion *system_io = get_system_io();
845773ab
IY
83 int i;
84 ram_addr_t below_4g_mem_size, above_4g_mem_size;
85 PCIBus *pci_bus;
48a18b3c 86 ISABus *isa_bus;
845773ab
IY
87 PCII440FXState *i440fx_state;
88 int piix3_devfn = -1;
89 qemu_irq *cpu_irq;
b881fbe9 90 qemu_irq *gsi;
845773ab 91 qemu_irq *i8259;
845773ab 92 qemu_irq *smi_irq;
b881fbe9 93 GSIState *gsi_state;
845773ab 94 DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
c0897e0c 95 BusState *idebus[MAX_IDE_BUS];
1d914fa0 96 ISADevice *rtc_state;
34d4260e 97 ISADevice *floppy;
ae0a5466
AK
98 MemoryRegion *ram_memory;
99 MemoryRegion *pci_memory;
4463aee6 100 MemoryRegion *rom_memory;
f0513d2c 101 DeviceState *icc_bridge;
a88b362c 102 FWCfgState *fw_cfg = NULL;
3459a625 103 PcGuestInfo *guest_info;
c87b1520 104 ram_addr_t lowmem;
845773ab 105
ecdbfceb
MT
106 /* Check whether RAM fits below 4G (leaving 1/2 GByte for IO memory).
107 * If it doesn't, we need to split it in chunks below and above 4G.
108 * In any case, try to make sure that guest addresses aligned at
109 * 1G boundaries get mapped to host addresses aligned at 1G boundaries.
110 * For old machine types, use whatever split we used historically to avoid
111 * breaking migration.
112 */
3ef96221 113 if (machine->ram_size >= 0xe0000000) {
c87b1520
DS
114 lowmem = gigabyte_align ? 0xc0000000 : 0xe0000000;
115 } else {
116 lowmem = 0xe0000000;
117 }
118
a9dd38db 119 /* Handle the machine opt max-ram-below-4g. It is basically doing
c87b1520
DS
120 * min(qemu limit, user limit).
121 */
122 if (lowmem > pc_machine->max_ram_below_4g) {
123 lowmem = pc_machine->max_ram_below_4g;
124 if (machine->ram_size - lowmem > lowmem &&
125 lowmem & ((1ULL << 30) - 1)) {
126 error_report("Warning: Large machine and max_ram_below_4g(%"PRIu64
127 ") not a multiple of 1G; possible bad performance.",
128 pc_machine->max_ram_below_4g);
129 }
130 }
131
132 if (machine->ram_size >= lowmem) {
3ef96221 133 above_4g_mem_size = machine->ram_size - lowmem;
bb43d383 134 below_4g_mem_size = lowmem;
e0e7e67b
AP
135 } else {
136 above_4g_mem_size = 0;
3ef96221 137 below_4g_mem_size = machine->ram_size;
e0e7e67b
AP
138 }
139
3c2a9669
DS
140 if (xen_enabled() && xen_hvm_init(&below_4g_mem_size, &above_4g_mem_size,
141 &ram_memory) != 0) {
142 fprintf(stderr, "xen hardware virtual machine initialisation failed\n");
143 exit(1);
144 }
145
146 icc_bridge = qdev_create(NULL, TYPE_ICC_BRIDGE);
147 object_property_add_child(qdev_get_machine(), "icc-bridge",
148 OBJECT(icc_bridge), NULL);
149
150 pc_cpus_init(machine->cpu_model, icc_bridge);
151
152 if (kvm_enabled() && kvmclock_enabled) {
153 kvmclock_create();
154 }
155
4463aee6
JK
156 if (pci_enabled) {
157 pci_memory = g_new(MemoryRegion, 1);
286690e3 158 memory_region_init(pci_memory, NULL, "pci", UINT64_MAX);
4463aee6
JK
159 rom_memory = pci_memory;
160 } else {
161 pci_memory = NULL;
162 rom_memory = system_memory;
163 }
ae0a5466 164
3459a625 165 guest_info = pc_guest_info_init(below_4g_mem_size, above_4g_mem_size);
72c194f7
MT
166
167 guest_info->has_acpi_build = has_acpi_build;
07fb6176 168 guest_info->legacy_acpi_table_size = legacy_acpi_table_size;
72c194f7 169
6dd2a5c9 170 guest_info->isapc_ram_fw = !pci_enabled;
de268e13 171 guest_info->has_reserved_memory = has_reserved_memory;
384fb32e 172 guest_info->rsdp_in_ram = rsdp_in_ram;
3459a625 173
e6667f71 174 if (smbios_defaults) {
3ef96221 175 MachineClass *mc = MACHINE_GET_CLASS(machine);
b29ad07e 176 /* These values are guest ABI, do not change */
e6667f71 177 smbios_set_defaults("QEMU", "Standard PC (i440FX + PIIX, 1996)",
caad057b 178 mc->name, smbios_legacy_mode, smbios_uuid_encoded);
b29ad07e
MA
179 }
180
845773ab 181 /* allocate ram and load rom/bios */
29d3ccde 182 if (!xen_enabled()) {
9521d42b
PB
183 fw_cfg = pc_memory_init(machine, system_memory,
184 below_4g_mem_size, above_4g_mem_size,
185 rom_memory, &ram_memory, guest_info);
b33a5bbf
CL
186 } else if (machine->kernel_filename != NULL) {
187 /* For xen HVM direct kernel boot, load linux here */
188 fw_cfg = xen_load_linux(machine->kernel_filename,
189 machine->kernel_cmdline,
190 machine->initrd_filename,
191 below_4g_mem_size,
192 guest_info);
29d3ccde 193 }
845773ab 194
b881fbe9 195 gsi_state = g_malloc0(sizeof(*gsi_state));
3d4b2649 196 if (kvm_irqchip_in_kernel()) {
d8ee0384
JB
197 kvm_pc_setup_irq_routing(pci_enabled);
198 gsi = qemu_allocate_irqs(kvm_pc_gsi_handler, gsi_state,
10b61882
JK
199 GSI_NUM_PINS);
200 } else {
201 gsi = qemu_allocate_irqs(gsi_handler, gsi_state, GSI_NUM_PINS);
202 }
845773ab
IY
203
204 if (pci_enabled) {
60573079 205 pci_bus = i440fx_init(&i440fx_state, &piix3_devfn, &isa_bus, gsi,
3ef96221 206 system_memory, system_io, machine->ram_size,
ddaaefb4 207 below_4g_mem_size,
39848901 208 above_4g_mem_size,
ae0a5466 209 pci_memory, ram_memory);
845773ab
IY
210 } else {
211 pci_bus = NULL;
02a89b21 212 i440fx_state = NULL;
bb2ed009 213 isa_bus = isa_bus_new(NULL, get_system_memory(), system_io);
57285cc3 214 no_hpet = 1;
845773ab 215 }
48a18b3c 216 isa_bus_irqs(isa_bus, gsi);
845773ab 217
3d4b2649 218 if (kvm_irqchip_in_kernel()) {
10b61882
JK
219 i8259 = kvm_i8259_init(isa_bus);
220 } else if (xen_enabled()) {
221 i8259 = xen_interrupt_controller_init();
222 } else {
4bae1efe 223 cpu_irq = pc_allocate_cpu_irq();
48a18b3c 224 i8259 = i8259_init(isa_bus, cpu_irq[0]);
4bae1efe
RH
225 }
226
43a0db35
JK
227 for (i = 0; i < ISA_NUM_IRQS; i++) {
228 gsi_state->i8259_irq[i] = i8259[i];
229 }
4bae1efe 230 if (pci_enabled) {
a39e3564 231 ioapic_init_gsi(gsi_state, "i440fx");
4bae1efe 232 }
f0513d2c 233 qdev_init_nofail(icc_bridge);
4bae1efe 234
b881fbe9 235 pc_register_ferr_irq(gsi[13]);
845773ab 236
f424d5c4 237 pc_vga_init(isa_bus, pci_enabled ? pci_bus : NULL);
01195b73 238
d1048bef
DS
239 assert(pc_machine->vmport != ON_OFF_AUTO_MAX);
240 if (pc_machine->vmport == ON_OFF_AUTO_AUTO) {
241 pc_machine->vmport = xen_enabled() ? ON_OFF_AUTO_OFF : ON_OFF_AUTO_ON;
242 }
243
845773ab 244 /* init basic PC hardware */
9b23cfb7 245 pc_basic_device_init(isa_bus, gsi, &rtc_state, &floppy,
d1048bef 246 (pc_machine->vmport != ON_OFF_AUTO_ON), 0x4);
845773ab 247
9011a1a7 248 pc_nic_init(isa_bus, pci_bus);
845773ab 249
d8f94e1b 250 ide_drive_get(hd, ARRAY_SIZE(hd));
845773ab 251 if (pci_enabled) {
c0897e0c 252 PCIDevice *dev;
679f4f8b
SS
253 if (xen_enabled()) {
254 dev = pci_piix3_xen_ide_init(pci_bus, hd, piix3_devfn + 1);
255 } else {
256 dev = pci_piix3_ide_init(pci_bus, hd, piix3_devfn + 1);
257 }
c0897e0c
MA
258 idebus[0] = qdev_get_child_bus(&dev->qdev, "ide.0");
259 idebus[1] = qdev_get_child_bus(&dev->qdev, "ide.1");
845773ab
IY
260 } else {
261 for(i = 0; i < MAX_IDE_BUS; i++) {
c0897e0c 262 ISADevice *dev;
61de3676 263 char busname[] = "ide.0";
48a18b3c
HP
264 dev = isa_ide_init(isa_bus, ide_iobase[i], ide_iobase2[i],
265 ide_irq[i],
c0897e0c 266 hd[MAX_IDE_DEVS * i], hd[MAX_IDE_DEVS * i + 1]);
61de3676
AG
267 /*
268 * The ide bus name is ide.0 for the first bus and ide.1 for the
269 * second one.
270 */
271 busname[4] = '0' + i;
272 idebus[i] = qdev_get_child_bus(DEVICE(dev), busname);
845773ab
IY
273 }
274 }
275
3ef96221 276 pc_cmos_init(below_4g_mem_size, above_4g_mem_size, machine->boot_order,
2d996150 277 machine, floppy, idebus[0], idebus[1], rtc_state);
845773ab 278
de77a243 279 if (pci_enabled && usb_enabled()) {
afb9a60e 280 pci_create_simple(pci_bus, piix3_devfn + 2, "piix3-usb-uhci");
845773ab
IY
281 }
282
283 if (pci_enabled && acpi_enabled) {
781bbd6b 284 DeviceState *piix4_pm;
a5c82852 285 I2CBus *smbus;
845773ab 286
182735ef 287 smi_irq = qemu_allocate_irqs(pc_acpi_smi_interrupt, first_cpu, 1);
845773ab
IY
288 /* TODO: Populate SPD eeprom data. */
289 smbus = piix4_pm_init(pci_bus, piix3_devfn + 3, 0xb100,
da98c8eb 290 gsi[9], *smi_irq,
781bbd6b 291 kvm_enabled(), fw_cfg, &piix4_pm);
a88df0b9 292 smbus_eeprom_init(smbus, 8, NULL, 0);
781bbd6b
IM
293
294 object_property_add_link(OBJECT(machine), PC_MACHINE_ACPI_DEVICE_PROP,
295 TYPE_HOTPLUG_HANDLER,
296 (Object **)&pc_machine->acpi_dev,
297 object_property_allow_set_link,
298 OBJ_PROP_LINK_UNREF_ON_RELEASE, &error_abort);
299 object_property_set_link(OBJECT(machine), OBJECT(piix4_pm),
300 PC_MACHINE_ACPI_DEVICE_PROP, &error_abort);
845773ab
IY
301 }
302
845773ab
IY
303 if (pci_enabled) {
304 pc_pci_device_init(pci_bus);
305 }
306}
307
5cb50e0a
JW
308static void pc_compat_2_3(MachineState *machine)
309{
310}
311
64bbd372
PB
312static void pc_compat_2_2(MachineState *machine)
313{
5cb50e0a 314 pc_compat_2_3(machine);
384fb32e 315 rsdp_in_ram = false;
b3a4f0b1
PB
316 x86_cpu_compat_set_features("kvm64", FEAT_1_EDX, 0, CPUID_VME);
317 x86_cpu_compat_set_features("kvm32", FEAT_1_EDX, 0, CPUID_VME);
318 x86_cpu_compat_set_features("Conroe", FEAT_1_EDX, 0, CPUID_VME);
319 x86_cpu_compat_set_features("Penryn", FEAT_1_EDX, 0, CPUID_VME);
320 x86_cpu_compat_set_features("Nehalem", FEAT_1_EDX, 0, CPUID_VME);
321 x86_cpu_compat_set_features("Westmere", FEAT_1_EDX, 0, CPUID_VME);
322 x86_cpu_compat_set_features("SandyBridge", FEAT_1_EDX, 0, CPUID_VME);
323 x86_cpu_compat_set_features("Haswell", FEAT_1_EDX, 0, CPUID_VME);
324 x86_cpu_compat_set_features("Broadwell", FEAT_1_EDX, 0, CPUID_VME);
325 x86_cpu_compat_set_features("Opteron_G1", FEAT_1_EDX, 0, CPUID_VME);
326 x86_cpu_compat_set_features("Opteron_G2", FEAT_1_EDX, 0, CPUID_VME);
327 x86_cpu_compat_set_features("Opteron_G3", FEAT_1_EDX, 0, CPUID_VME);
328 x86_cpu_compat_set_features("Opteron_G4", FEAT_1_EDX, 0, CPUID_VME);
329 x86_cpu_compat_set_features("Opteron_G5", FEAT_1_EDX, 0, CPUID_VME);
78a611f1
PB
330 x86_cpu_compat_set_features("Haswell", FEAT_1_ECX, 0, CPUID_EXT_F16C);
331 x86_cpu_compat_set_features("Haswell", FEAT_1_ECX, 0, CPUID_EXT_RDRAND);
332 x86_cpu_compat_set_features("Broadwell", FEAT_1_ECX, 0, CPUID_EXT_F16C);
333 x86_cpu_compat_set_features("Broadwell", FEAT_1_ECX, 0, CPUID_EXT_RDRAND);
54ed388b 334 machine->suppress_vmdesc = true;
64bbd372
PB
335}
336
2cad57c7
EH
337static void pc_compat_2_1(MachineState *machine)
338{
91aa70ab 339 PCMachineState *pcms = PC_MACHINE(machine);
64bbd372
PB
340
341 pc_compat_2_2(machine);
caad057b 342 smbios_uuid_encoded = false;
e93abc14
EH
343 x86_cpu_compat_set_features("coreduo", FEAT_1_ECX, CPUID_EXT_VMX, 0);
344 x86_cpu_compat_set_features("core2duo", FEAT_1_ECX, CPUID_EXT_VMX, 0);
75d373ef 345 x86_cpu_compat_kvm_no_autodisable(FEAT_8000_0001_ECX, CPUID_EXT3_SVM);
91aa70ab 346 pcms->enforce_aligned_dimm = false;
2cad57c7
EH
347}
348
3ef96221 349static void pc_compat_2_0(MachineState *machine)
3458b2b0 350{
2cad57c7 351 pc_compat_2_1(machine);
07fb6176
PB
352 /* This value depends on the actual DSDT and SSDT compiled into
353 * the source QEMU; unfortunately it depends on the binary and
354 * not on the machine type, so we cannot make pc-i440fx-1.7 work on
355 * both QEMU 1.7 and QEMU 2.0.
356 *
357 * Large variations cause migration to fail for more than one
358 * consecutive value of the "-smp" maxcpus option.
359 *
360 * For small variations of the kind caused by different iasl versions,
361 * the 4k rounding usually leaves slack. However, there could be still
362 * one or two values that break. For QEMU 1.7 and QEMU 2.0 the
363 * slack is only ~10 bytes before one "-smp maxcpus" value breaks!
364 *
365 * 6652 is valid for QEMU 2.0, the right value for pc-i440fx-1.7 on
366 * QEMU 1.7 it is 6414. For RHEL/CentOS 7.0 it is 6418.
367 */
368 legacy_acpi_table_size = 6652;
c97294ec 369 smbios_legacy_mode = true;
de268e13 370 has_reserved_memory = false;
927766c7 371 pc_set_legacy_acpi_data_size();
3458b2b0
MT
372}
373
3ef96221 374static void pc_compat_1_7(MachineState *machine)
b29ad07e 375{
3ef96221 376 pc_compat_2_0(machine);
e6667f71 377 smbios_defaults = false;
bb43d383 378 gigabyte_align = false;
ac41881b 379 option_rom_has_mr = true;
f47337cb 380 legacy_acpi_table_size = 6414;
1cadaa94 381 x86_cpu_compat_kvm_no_autoenable(FEAT_1_ECX, CPUID_EXT_X2APIC);
b29ad07e
MA
382}
383
3ef96221 384static void pc_compat_1_6(MachineState *machine)
f8c457b8 385{
3ef96221 386 pc_compat_1_7(machine);
98bc3ab0 387 rom_file_has_mr = false;
72c194f7 388 has_acpi_build = false;
f8c457b8
MT
389}
390
3ef96221 391static void pc_compat_1_5(MachineState *machine)
9604f70f 392{
3ef96221 393 pc_compat_1_6(machine);
9604f70f
MT
394}
395
3ef96221 396static void pc_compat_1_4(MachineState *machine)
9953f882 397{
3ef96221 398 pc_compat_1_5(machine);
4458c236 399 x86_cpu_compat_set_features("n270", FEAT_1_ECX, 0, CPUID_EXT_MOVBE);
56383703 400 x86_cpu_compat_set_features("Westmere", FEAT_1_ECX, 0, CPUID_EXT_PCLMULQDQ);
9953f882
MA
401}
402
3ef96221 403static void pc_compat_1_3(MachineState *machine)
8932cfdf 404{
3ef96221 405 pc_compat_1_4(machine);
8932cfdf 406 enable_compat_apic_id_mode();
89b439f3
EH
407}
408
409/* PC compat function for pc-0.14 to pc-1.2 */
3ef96221 410static void pc_compat_1_2(MachineState *machine)
89b439f3 411{
3ef96221 412 pc_compat_1_3(machine);
0034a0f2 413 x86_cpu_compat_kvm_no_autoenable(FEAT_KVM, 1 << KVM_FEATURE_PV_EOI);
89b439f3
EH
414}
415
5cb50e0a
JW
416static void pc_init_pci_2_3(MachineState *machine)
417{
418 pc_compat_2_3(machine);
211b5b1d 419 pc_init1(machine);
5cb50e0a
JW
420}
421
64bbd372
PB
422static void pc_init_pci_2_2(MachineState *machine)
423{
424 pc_compat_2_2(machine);
211b5b1d 425 pc_init1(machine);
64bbd372
PB
426}
427
72d164aa
EH
428/* PC compat function for pc-0.10 to pc-0.13 */
429static void pc_compat_0_13(MachineState *machine)
430{
431 pc_compat_1_2(machine);
432 kvmclock_enabled = false;
433}
434
2cad57c7
EH
435static void pc_init_pci_2_1(MachineState *machine)
436{
437 pc_compat_2_1(machine);
211b5b1d 438 pc_init1(machine);
2cad57c7
EH
439}
440
3ef96221 441static void pc_init_pci_2_0(MachineState *machine)
3458b2b0 442{
3ef96221 443 pc_compat_2_0(machine);
211b5b1d 444 pc_init1(machine);
3458b2b0
MT
445}
446
3ef96221 447static void pc_init_pci_1_7(MachineState *machine)
b29ad07e 448{
3ef96221 449 pc_compat_1_7(machine);
211b5b1d 450 pc_init1(machine);
b29ad07e
MA
451}
452
3ef96221 453static void pc_init_pci_1_6(MachineState *machine)
89b439f3 454{
3ef96221 455 pc_compat_1_6(machine);
211b5b1d 456 pc_init1(machine);
89b439f3
EH
457}
458
3ef96221 459static void pc_init_pci_1_5(MachineState *machine)
89b439f3 460{
3ef96221 461 pc_compat_1_5(machine);
211b5b1d 462 pc_init1(machine);
89b439f3
EH
463}
464
3ef96221 465static void pc_init_pci_1_4(MachineState *machine)
89b439f3 466{
3ef96221 467 pc_compat_1_4(machine);
211b5b1d 468 pc_init1(machine);
89b439f3
EH
469}
470
3ef96221 471static void pc_init_pci_1_3(MachineState *machine)
89b439f3 472{
3ef96221 473 pc_compat_1_3(machine);
211b5b1d 474 pc_init1(machine);
8932cfdf
EH
475}
476
43a52ce6 477/* PC machine init function for pc-0.14 to pc-1.2 */
3ef96221 478static void pc_init_pci_1_2(MachineState *machine)
dc59944b 479{
3ef96221 480 pc_compat_1_2(machine);
211b5b1d 481 pc_init1(machine);
dc59944b
MT
482}
483
faab4597 484/* PC init function for pc-0.10 to pc-0.13 */
3ef96221 485static void pc_init_pci_no_kvmclock(MachineState *machine)
0ec329da 486{
72d164aa 487 pc_compat_0_13(machine);
211b5b1d 488 pc_init1(machine);
845773ab
IY
489}
490
3ef96221 491static void pc_init_isa(MachineState *machine)
845773ab 492{
72d164aa 493 pci_enabled = false;
98af2ac9 494 has_acpi_build = false;
e6667f71 495 smbios_defaults = false;
5f8632d3
DS
496 gigabyte_align = false;
497 smbios_legacy_mode = true;
498 has_reserved_memory = false;
499 option_rom_has_mr = true;
500 rom_file_has_mr = false;
3ef96221
MA
501 if (!machine->cpu_model) {
502 machine->cpu_model = "486";
5650f5f4 503 }
0034a0f2 504 x86_cpu_compat_kvm_no_autoenable(FEAT_KVM, 1 << KVM_FEATURE_PV_EOI);
8932cfdf 505 enable_compat_apic_id_mode();
72d164aa 506 pc_init1(machine);
845773ab
IY
507}
508
29d3ccde 509#ifdef CONFIG_XEN
3ef96221 510static void pc_xen_hvm_init(MachineState *machine)
29d3ccde 511{
39ae4972
PD
512 PCIBus *bus;
513
211b5b1d 514 pc_init1(machine);
39ae4972 515
1ef7a2a2 516 bus = pci_find_primary_bus();
39ae4972
PD
517 if (bus != NULL) {
518 pci_create_simple(bus, -1, "xen-platform");
519 }
29d3ccde
AP
520}
521#endif
522
fddd179a 523
865906f7 524static void pc_i440fx_machine_options(MachineClass *m)
fddd179a
EH
525{
526 pc_default_machine_options(m);
527 m->family = "pc_piix";
528 m->desc = "Standard PC (i440FX + PIIX, 1996)";
529 m->hot_add_cpu = pc_hot_add_cpu;
530}
531
865906f7 532static void pc_i440fx_2_4_machine_options(MachineClass *m)
fddd179a
EH
533{
534 pc_i440fx_machine_options(m);
535 m->default_machine_opts = "firmware=bios-256k.bin";
536 m->default_display = "std";
537 m->alias = "pc";
538 m->is_default = 1;
539}
aeca6e8d 540
211b5b1d 541DEFINE_PC_MACHINE(v2_4, "pc-i440fx-2.4", pc_init1,
25519b06 542 pc_i440fx_2_4_machine_options)
5cb50e0a 543
f9f21873 544
865906f7 545static void pc_i440fx_2_3_machine_options(MachineClass *m)
fddd179a
EH
546{
547 pc_i440fx_machine_options(m);
548 m->alias = NULL;
549 m->is_default = 0;
25519b06 550 SET_MACHINE_COMPAT(m, PC_COMPAT_2_3);
fddd179a 551}
5cb50e0a 552
61f219df 553DEFINE_PC_MACHINE(v2_3, "pc-i440fx-2.3", pc_init_pci_2_3,
25519b06 554 pc_i440fx_2_3_machine_options);
61f219df 555
5cb50e0a 556
865906f7 557static void pc_i440fx_2_2_machine_options(MachineClass *m)
fddd179a
EH
558{
559 pc_i440fx_2_3_machine_options(m);
25519b06 560 SET_MACHINE_COMPAT(m, PC_COMPAT_2_2);
fddd179a 561}
64bbd372 562
61f219df 563DEFINE_PC_MACHINE(v2_2, "pc-i440fx-2.2", pc_init_pci_2_2,
25519b06 564 pc_i440fx_2_2_machine_options);
61f219df 565
64bbd372 566
865906f7 567static void pc_i440fx_2_1_machine_options(MachineClass *m)
fddd179a
EH
568{
569 pc_i440fx_2_2_machine_options(m);
570 m->default_display = NULL;
25519b06 571 SET_MACHINE_COMPAT(m, PC_COMPAT_2_1);
fddd179a 572}
f9f21873 573
61f219df 574DEFINE_PC_MACHINE(v2_1, "pc-i440fx-2.1", pc_init_pci_2_1,
25519b06 575 pc_i440fx_2_1_machine_options);
61f219df 576
aeca6e8d 577
fddd179a 578
865906f7 579static void pc_i440fx_2_0_machine_options(MachineClass *m)
fddd179a
EH
580{
581 pc_i440fx_2_1_machine_options(m);
25519b06 582 SET_MACHINE_COMPAT(m, PC_COMPAT_2_0);
fddd179a 583}
3458b2b0 584
61f219df 585DEFINE_PC_MACHINE(v2_0, "pc-i440fx-2.0", pc_init_pci_2_0,
25519b06 586 pc_i440fx_2_0_machine_options);
61f219df 587
3458b2b0 588
865906f7 589static void pc_i440fx_1_7_machine_options(MachineClass *m)
fddd179a
EH
590{
591 pc_i440fx_2_0_machine_options(m);
592 m->default_machine_opts = NULL;
25519b06 593 SET_MACHINE_COMPAT(m, PC_COMPAT_1_7);
fddd179a 594}
aeca6e8d 595
61f219df 596DEFINE_PC_MACHINE(v1_7, "pc-i440fx-1.7", pc_init_pci_1_7,
25519b06 597 pc_i440fx_1_7_machine_options);
61f219df 598
e9845f09 599
865906f7 600static void pc_i440fx_1_6_machine_options(MachineClass *m)
fddd179a
EH
601{
602 pc_i440fx_1_7_machine_options(m);
25519b06 603 SET_MACHINE_COMPAT(m, PC_COMPAT_1_6);
fddd179a 604}
a0dba644 605
61f219df 606DEFINE_PC_MACHINE(v1_6, "pc-i440fx-1.6", pc_init_pci_1_6,
25519b06 607 pc_i440fx_1_6_machine_options);
61f219df 608
845773ab 609
865906f7 610static void pc_i440fx_1_5_machine_options(MachineClass *m)
fddd179a
EH
611{
612 pc_i440fx_1_6_machine_options(m);
25519b06 613 SET_MACHINE_COMPAT(m, PC_COMPAT_1_5);
fddd179a 614}
b6b5c8e4 615
61f219df 616DEFINE_PC_MACHINE(v1_5, "pc-i440fx-1.5", pc_init_pci_1_5,
25519b06 617 pc_i440fx_1_5_machine_options);
61f219df 618
45053fde 619
865906f7 620static void pc_i440fx_1_4_machine_options(MachineClass *m)
fddd179a
EH
621{
622 pc_i440fx_1_5_machine_options(m);
623 m->hot_add_cpu = NULL;
25519b06 624 SET_MACHINE_COMPAT(m, PC_COMPAT_1_4);
fddd179a 625}
a0dba644 626
61f219df 627DEFINE_PC_MACHINE(v1_4, "pc-i440fx-1.4", pc_init_pci_1_4,
25519b06 628 pc_i440fx_1_4_machine_options);
61f219df 629
bf3caa3d 630
427e3aa1 631#define PC_COMPAT_1_3 \
a7cde24d 632 PC_COMPAT_1_4 \
427e3aa1
HG
633 {\
634 .driver = "usb-tablet",\
635 .property = "usb_version",\
636 .value = stringify(1),\
c1943a3f
AK
637 },{\
638 .driver = "virtio-net-pci",\
639 .property = "ctrl_mac_addr",\
640 .value = "off", \
a9c87c58
JW
641 },{ \
642 .driver = "virtio-net-pci", \
643 .property = "mq", \
644 .value = "off", \
2af234e6
MT
645 }, {\
646 .driver = "e1000",\
647 .property = "autonegotiation",\
648 .value = "off",\
a7cde24d 649 },
427e3aa1 650
fddd179a 651
865906f7 652static void pc_i440fx_1_3_machine_options(MachineClass *m)
fddd179a
EH
653{
654 pc_i440fx_1_4_machine_options(m);
25519b06 655 SET_MACHINE_COMPAT(m, PC_COMPAT_1_3);
fddd179a 656}
b6b5c8e4 657
61f219df 658DEFINE_PC_MACHINE(v1_3, "pc-1.3", pc_init_pci_1_3,
25519b06 659 pc_i440fx_1_3_machine_options);
61f219df 660
f1ae2e38 661
183c5eaa 662#define PC_COMPAT_1_2 \
a7cde24d 663 PC_COMPAT_1_3 \
183c5eaa
GH
664 {\
665 .driver = "nec-usb-xhci",\
666 .property = "msi",\
667 .value = "off",\
668 },{\
669 .driver = "nec-usb-xhci",\
670 .property = "msix",\
671 .value = "off",\
c08ba66f
GH
672 },{\
673 .driver = "ivshmem",\
674 .property = "use64",\
675 .value = "0",\
591af143
GH
676 },{\
677 .driver = "qxl",\
678 .property = "revision",\
679 .value = stringify(3),\
680 },{\
681 .driver = "qxl-vga",\
682 .property = "revision",\
683 .value = stringify(3),\
803ff052
GH
684 },{\
685 .driver = "VGA",\
686 .property = "mmio",\
687 .value = "off",\
a7cde24d 688 },
183c5eaa 689
865906f7 690static void pc_i440fx_1_2_machine_options(MachineClass *m)
fddd179a
EH
691{
692 pc_i440fx_1_3_machine_options(m);
25519b06 693 SET_MACHINE_COMPAT(m, PC_COMPAT_1_2);
fddd179a 694}
a0dba644 695
61f219df 696DEFINE_PC_MACHINE(v1_2, "pc-1.2", pc_init_pci_1_2,
25519b06 697 pc_i440fx_1_2_machine_options);
61f219df 698
f4306941 699
9e56edcf 700#define PC_COMPAT_1_1 \
a7cde24d 701 PC_COMPAT_1_2 \
9e56edcf 702 {\
07a5298c
PB
703 .driver = "virtio-scsi-pci",\
704 .property = "hotplug",\
705 .value = "off",\
706 },{\
707 .driver = "virtio-scsi-pci",\
708 .property = "param_change",\
709 .value = "off",\
710 },{\
9e56edcf
GH
711 .driver = "VGA",\
712 .property = "vgamem_mb",\
713 .value = stringify(8),\
714 },{\
715 .driver = "vmware-svga",\
716 .property = "vgamem_mb",\
717 .value = stringify(8),\
718 },{\
719 .driver = "qxl-vga",\
720 .property = "vgamem_mb",\
721 .value = stringify(8),\
722 },{\
723 .driver = "qxl",\
724 .property = "vgamem_mb",\
725 .value = stringify(8),\
ea776abc
SH
726 },{\
727 .driver = "virtio-blk-pci",\
728 .property = "config-wce",\
729 .value = "off",\
a7cde24d 730 },
9e56edcf 731
865906f7 732static void pc_i440fx_1_1_machine_options(MachineClass *m)
fddd179a
EH
733{
734 pc_i440fx_1_2_machine_options(m);
25519b06 735 SET_MACHINE_COMPAT(m, PC_COMPAT_1_1);
fddd179a 736}
b6b5c8e4 737
61f219df 738DEFINE_PC_MACHINE(v1_1, "pc-1.1", pc_init_pci_1_2,
25519b06 739 pc_i440fx_1_1_machine_options);
61f219df 740
f1dacf1c 741
d6c73008 742#define PC_COMPAT_1_0 \
a7cde24d 743 PC_COMPAT_1_1 \
d6c73008 744 {\
020c8e76 745 .driver = TYPE_ISA_FDC,\
d6c73008
MT
746 .property = "check_media_rate",\
747 .value = "off",\
2ba1d381
DG
748 }, {\
749 .driver = "virtio-balloon-pci",\
750 .property = "class",\
751 .value = stringify(PCI_CLASS_MEMORY_RAM),\
fc34e77b 752 },{\
df1fd4b5 753 .driver = "apic-common",\
fc34e77b
AL
754 .property = "vapic",\
755 .value = "off",\
eeb0cf9a 756 },{\
bce54474 757 .driver = TYPE_USB_DEVICE,\
eeb0cf9a
GH
758 .property = "full-path",\
759 .value = "no",\
a7cde24d 760 },
d6c73008 761
865906f7 762static void pc_i440fx_1_0_machine_options(MachineClass *m)
fddd179a
EH
763{
764 pc_i440fx_1_1_machine_options(m);
765 m->hw_version = "1.0";
25519b06 766 SET_MACHINE_COMPAT(m, PC_COMPAT_1_0);
fddd179a 767}
b6b5c8e4 768
61f219df 769DEFINE_PC_MACHINE(v1_0, "pc-1.0", pc_init_pci_1_2,
25519b06 770 pc_i440fx_1_0_machine_options);
61f219df 771
382b3a68 772
d6c73008
MT
773#define PC_COMPAT_0_15 \
774 PC_COMPAT_1_0
775
865906f7 776static void pc_i440fx_0_15_machine_options(MachineClass *m)
fddd179a
EH
777{
778 pc_i440fx_1_0_machine_options(m);
779 m->hw_version = "0.15";
25519b06 780 SET_MACHINE_COMPAT(m, PC_COMPAT_0_15);
fddd179a 781}
b6b5c8e4 782
61f219df 783DEFINE_PC_MACHINE(v0_15, "pc-0.15", pc_init_pci_1_2,
25519b06 784 pc_i440fx_0_15_machine_options);
61f219df 785
ce01a508 786
d6c73008 787#define PC_COMPAT_0_14 \
a7cde24d 788 PC_COMPAT_0_15 \
d6c73008
MT
789 {\
790 .driver = "virtio-blk-pci",\
791 .property = "event_idx",\
792 .value = "off",\
793 },{\
794 .driver = "virtio-serial-pci",\
795 .property = "event_idx",\
796 .value = "off",\
797 },{\
798 .driver = "virtio-net-pci",\
799 .property = "event_idx",\
800 .value = "off",\
801 },{\
802 .driver = "virtio-balloon-pci",\
803 .property = "event_idx",\
804 .value = "off",\
bb08d882
EH
805 },{\
806 .driver = "qxl",\
807 .property = "revision",\
808 .value = stringify(2),\
809 },{\
810 .driver = "qxl-vga",\
811 .property = "revision",\
812 .value = stringify(2),\
a7cde24d 813 },
d6c73008 814
865906f7 815static void pc_i440fx_0_14_machine_options(MachineClass *m)
fddd179a
EH
816{
817 pc_i440fx_0_15_machine_options(m);
818 m->hw_version = "0.14";
25519b06 819 SET_MACHINE_COMPAT(m, PC_COMPAT_0_14);
fddd179a 820}
b6b5c8e4 821
61f219df 822DEFINE_PC_MACHINE(v0_14, "pc-0.14", pc_init_pci_1_2,
25519b06 823 pc_i440fx_0_14_machine_options);
61f219df 824
19857e62 825
d6c73008 826#define PC_COMPAT_0_13 \
a7cde24d 827 PC_COMPAT_0_14 \
d6c73008 828 {\
bce54474 829 .driver = TYPE_PCI_DEVICE,\
d6c73008
MT
830 .property = "command_serr_enable",\
831 .value = "off",\
832 },{\
833 .driver = "AC97",\
834 .property = "use_broken_id",\
835 .value = stringify(1),\
d765519b
EH
836 },{\
837 .driver = "virtio-9p-pci",\
838 .property = "vectors",\
839 .value = stringify(0),\
faf7e425
EH
840 },{\
841 .driver = "VGA",\
842 .property = "rombar",\
843 .value = stringify(0),\
844 },{\
845 .driver = "vmware-svga",\
846 .property = "rombar",\
847 .value = stringify(0),\
a7cde24d 848 },
d6c73008 849
865906f7 850static void pc_i440fx_0_13_machine_options(MachineClass *m)
fddd179a
EH
851{
852 pc_i440fx_0_14_machine_options(m);
853 m->hw_version = "0.13";
25519b06 854 SET_MACHINE_COMPAT(m, PC_COMPAT_0_13);
fddd179a 855}
a0dba644 856
61f219df 857DEFINE_PC_MACHINE(v0_13, "pc-0.13", pc_init_pci_no_kvmclock,
25519b06 858 pc_i440fx_0_13_machine_options);
61f219df 859
b903a0f7 860
d6c73008 861#define PC_COMPAT_0_12 \
a7cde24d 862 PC_COMPAT_0_13 \
d6c73008
MT
863 {\
864 .driver = "virtio-serial-pci",\
865 .property = "max_ports",\
866 .value = stringify(1),\
867 },{\
868 .driver = "virtio-serial-pci",\
869 .property = "vectors",\
870 .value = stringify(0),\
93c8e4dc
GH
871 },{\
872 .driver = "usb-mouse",\
873 .property = "serial",\
874 .value = "1",\
875 },{\
876 .driver = "usb-tablet",\
877 .property = "serial",\
878 .value = "1",\
879 },{\
880 .driver = "usb-kbd",\
881 .property = "serial",\
882 .value = "1",\
a7cde24d 883 },
d6c73008 884
865906f7 885static void pc_i440fx_0_12_machine_options(MachineClass *m)
fddd179a
EH
886{
887 pc_i440fx_0_13_machine_options(m);
888 m->hw_version = "0.12";
25519b06 889 SET_MACHINE_COMPAT(m, PC_COMPAT_0_12);
fddd179a 890}
b6b5c8e4 891
61f219df 892DEFINE_PC_MACHINE(v0_12, "pc-0.12", pc_init_pci_no_kvmclock,
25519b06 893 pc_i440fx_0_12_machine_options);
61f219df 894
845773ab 895
d6c73008 896#define PC_COMPAT_0_11 \
a7cde24d 897 PC_COMPAT_0_12 \
d6c73008
MT
898 {\
899 .driver = "virtio-blk-pci",\
900 .property = "vectors",\
901 .value = stringify(0),\
c115cd65 902 },{\
bce54474 903 .driver = TYPE_PCI_DEVICE,\
c115cd65
PB
904 .property = "rombar",\
905 .value = stringify(0),\
d5303df7
EH
906 },{\
907 .driver = "ide-drive",\
908 .property = "ver",\
909 .value = "0.11",\
910 },{\
911 .driver = "scsi-disk",\
912 .property = "ver",\
913 .value = "0.11",\
a7cde24d 914 },
d6c73008 915
865906f7 916static void pc_i440fx_0_11_machine_options(MachineClass *m)
fddd179a
EH
917{
918 pc_i440fx_0_12_machine_options(m);
919 m->hw_version = "0.11";
25519b06 920 SET_MACHINE_COMPAT(m, PC_COMPAT_0_11);
fddd179a 921}
b6b5c8e4 922
61f219df 923DEFINE_PC_MACHINE(v0_11, "pc-0.11", pc_init_pci_no_kvmclock,
25519b06 924 pc_i440fx_0_11_machine_options);
61f219df 925
845773ab 926
f6d5a0ba
EH
927#define PC_COMPAT_0_10 \
928 PC_COMPAT_0_11 \
929 {\
930 .driver = "virtio-blk-pci",\
931 .property = "class",\
932 .value = stringify(PCI_CLASS_STORAGE_OTHER),\
933 },{\
934 .driver = "virtio-serial-pci",\
935 .property = "class",\
936 .value = stringify(PCI_CLASS_DISPLAY_OTHER),\
937 },{\
938 .driver = "virtio-net-pci",\
939 .property = "vectors",\
940 .value = stringify(0),\
941 },{\
942 .driver = "ide-drive",\
943 .property = "ver",\
944 .value = "0.10",\
945 },{\
946 .driver = "scsi-disk",\
947 .property = "ver",\
948 .value = "0.10",\
949 },
950
865906f7 951static void pc_i440fx_0_10_machine_options(MachineClass *m)
fddd179a
EH
952{
953 pc_i440fx_0_11_machine_options(m);
954 m->hw_version = "0.10";
25519b06 955 SET_MACHINE_COMPAT(m, PC_COMPAT_0_10);
fddd179a 956}
b6b5c8e4 957
61f219df 958DEFINE_PC_MACHINE(v0_10, "pc-0.10", pc_init_pci_no_kvmclock,
25519b06 959 pc_i440fx_0_10_machine_options);
61f219df 960
845773ab 961
865906f7 962static void isapc_machine_options(MachineClass *m)
fddd179a
EH
963{
964 pc_common_machine_options(m);
965 m->desc = "ISA-only PC";
966 m->max_cpus = 1;
967}
b6b5c8e4 968
61f219df 969DEFINE_PC_MACHINE(isapc, "isapc", pc_init_isa,
25519b06 970 isapc_machine_options);
61f219df 971
845773ab 972
29d3ccde 973#ifdef CONFIG_XEN
865906f7 974static void xenfv_machine_options(MachineClass *m)
fddd179a
EH
975{
976 pc_common_machine_options(m);
977 m->desc = "Xen Fully-virtualized PC";
978 m->max_cpus = HVM_MAX_VCPUS;
979 m->default_machine_opts = "accel=xen";
980 m->hot_add_cpu = pc_hot_add_cpu;
981}
b6b5c8e4 982
61f219df 983DEFINE_PC_MACHINE(xenfv, "xenfv", pc_xen_hvm_init,
25519b06 984 xenfv_machine_options);
29d3ccde 985#endif