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