201318b006faf74d3861a6eec62a56310d8aa7cd
[sdk/emulator/qemu.git] / hw / i386 / pc_piix.c
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
25 #include <glib.h>
26
27 #include "hw/hw.h"
28 #include "hw/loader.h"
29 #include "hw/i386/pc.h"
30 #include "hw/i386/apic.h"
31 #include "hw/i386/smbios.h"
32 #include "hw/pci/pci.h"
33 #include "hw/pci/pci_ids.h"
34 #include "hw/usb.h"
35 #include "net/net.h"
36 #include "hw/boards.h"
37 #include "hw/ide.h"
38 #include "sysemu/kvm.h"
39 #include "hw/kvm/clock.h"
40 #include "sysemu/sysemu.h"
41 #include "hw/sysbus.h"
42 #include "hw/cpu/icc_bus.h"
43 #include "sysemu/arch_init.h"
44 #include "sysemu/block-backend.h"
45 #include "hw/i2c/smbus.h"
46 #include "hw/xen/xen.h"
47 #include "exec/memory.h"
48 #include "exec/address-spaces.h"
49 #include "hw/acpi/acpi.h"
50 #include "cpu.h"
51 #include "qemu/error-report.h"
52 #ifdef CONFIG_XEN
53 #  include <xen/hvm/hvm_info_table.h>
54 #endif
55 #include "migration/migration.h"
56
57 #define MAX_IDE_BUS 2
58
59 static const int ide_iobase[MAX_IDE_BUS] = { 0x1f0, 0x170 };
60 static const int ide_iobase2[MAX_IDE_BUS] = { 0x3f6, 0x376 };
61 static const int ide_irq[MAX_IDE_BUS] = { 14, 15 };
62
63 static bool pci_enabled = true;
64 static bool has_acpi_build = true;
65 static bool rsdp_in_ram = true;
66 static int legacy_acpi_table_size;
67 static bool smbios_defaults = true;
68 static bool smbios_legacy_mode;
69 static bool smbios_uuid_encoded = true;
70 /* Make sure that guest addresses aligned at 1Gbyte boundaries get mapped to
71  * host addresses aligned at 1Gbyte boundaries.  This way we can use 1GByte
72  * pages in the host.
73  */
74 static bool gigabyte_align = true;
75 static bool has_reserved_memory = true;
76 static bool kvmclock_enabled = true;
77
78 /* PC hardware initialisation */
79 static void pc_init1(MachineState *machine)
80 {
81     PCMachineState *pc_machine = PC_MACHINE(machine);
82     MemoryRegion *system_memory = get_system_memory();
83     MemoryRegion *system_io = get_system_io();
84     int i;
85     ram_addr_t below_4g_mem_size, above_4g_mem_size;
86     PCIBus *pci_bus;
87     ISABus *isa_bus;
88     PCII440FXState *i440fx_state;
89     int piix3_devfn = -1;
90     qemu_irq *gsi;
91     qemu_irq *i8259;
92     qemu_irq smi_irq;
93     GSIState *gsi_state;
94     DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
95     BusState *idebus[MAX_IDE_BUS];
96     ISADevice *rtc_state;
97     MemoryRegion *ram_memory;
98     MemoryRegion *pci_memory;
99     MemoryRegion *rom_memory;
100     DeviceState *icc_bridge;
101     PcGuestInfo *guest_info;
102     ram_addr_t lowmem;
103
104     /* Check whether RAM fits below 4G (leaving 1/2 GByte for IO memory).
105      * If it doesn't, we need to split it in chunks below and above 4G.
106      * In any case, try to make sure that guest addresses aligned at
107      * 1G boundaries get mapped to host addresses aligned at 1G boundaries.
108      * For old machine types, use whatever split we used historically to avoid
109      * breaking migration.
110      */
111     if (machine->ram_size >= 0xe0000000) {
112         lowmem = gigabyte_align ? 0xc0000000 : 0xe0000000;
113     } else {
114         lowmem = 0xe0000000;
115     }
116
117     /* Handle the machine opt max-ram-below-4g.  It is basically doing
118      * min(qemu limit, user limit).
119      */
120     if (lowmem > pc_machine->max_ram_below_4g) {
121         lowmem = pc_machine->max_ram_below_4g;
122         if (machine->ram_size - lowmem > lowmem &&
123             lowmem & ((1ULL << 30) - 1)) {
124             error_report("Warning: Large machine and max_ram_below_4g(%"PRIu64
125                          ") not a multiple of 1G; possible bad performance.",
126                          pc_machine->max_ram_below_4g);
127         }
128     }
129
130     if (machine->ram_size >= lowmem) {
131         above_4g_mem_size = machine->ram_size - lowmem;
132         below_4g_mem_size = lowmem;
133     } else {
134         above_4g_mem_size = 0;
135         below_4g_mem_size = machine->ram_size;
136     }
137
138     if (xen_enabled() && xen_hvm_init(&below_4g_mem_size, &above_4g_mem_size,
139                                       &ram_memory) != 0) {
140         fprintf(stderr, "xen hardware virtual machine initialisation failed\n");
141         exit(1);
142     }
143
144     icc_bridge = qdev_create(NULL, TYPE_ICC_BRIDGE);
145     object_property_add_child(qdev_get_machine(), "icc-bridge",
146                               OBJECT(icc_bridge), NULL);
147
148     pc_cpus_init(machine->cpu_model, icc_bridge);
149
150     if (kvm_enabled() && kvmclock_enabled) {
151         kvmclock_create();
152     }
153
154     if (pci_enabled) {
155         pci_memory = g_new(MemoryRegion, 1);
156         memory_region_init(pci_memory, NULL, "pci", UINT64_MAX);
157         rom_memory = pci_memory;
158     } else {
159         pci_memory = NULL;
160         rom_memory = system_memory;
161     }
162
163     guest_info = pc_guest_info_init(below_4g_mem_size, above_4g_mem_size);
164
165     guest_info->has_acpi_build = has_acpi_build;
166     guest_info->legacy_acpi_table_size = legacy_acpi_table_size;
167
168     guest_info->isapc_ram_fw = !pci_enabled;
169     guest_info->has_reserved_memory = has_reserved_memory;
170     guest_info->rsdp_in_ram = rsdp_in_ram;
171
172     if (smbios_defaults) {
173         MachineClass *mc = MACHINE_GET_CLASS(machine);
174         /* These values are guest ABI, do not change */
175         smbios_set_defaults("QEMU", "Standard PC (i440FX + PIIX, 1996)",
176                             mc->name, smbios_legacy_mode, smbios_uuid_encoded);
177     }
178
179     /* allocate ram and load rom/bios */
180     if (!xen_enabled()) {
181         pc_memory_init(machine, system_memory,
182                        below_4g_mem_size, above_4g_mem_size,
183                        rom_memory, &ram_memory, guest_info);
184     } else if (machine->kernel_filename != NULL) {
185         /* For xen HVM direct kernel boot, load linux here */
186         xen_load_linux(machine->kernel_filename,
187                        machine->kernel_cmdline,
188                        machine->initrd_filename,
189                        below_4g_mem_size,
190                        guest_info);
191     }
192
193     gsi_state = g_malloc0(sizeof(*gsi_state));
194     if (kvm_irqchip_in_kernel()) {
195         kvm_pc_setup_irq_routing(pci_enabled);
196         gsi = qemu_allocate_irqs(kvm_pc_gsi_handler, gsi_state,
197                 GSI_NUM_PINS);
198     } else {
199         gsi = qemu_allocate_irqs(gsi_handler, gsi_state, GSI_NUM_PINS);
200     }
201
202     if (pci_enabled) {
203         pci_bus = i440fx_init(&i440fx_state, &piix3_devfn, &isa_bus, gsi,
204                               system_memory, system_io, machine->ram_size,
205                               below_4g_mem_size,
206                               above_4g_mem_size,
207                               pci_memory, ram_memory);
208     } else {
209         pci_bus = NULL;
210         i440fx_state = NULL;
211         isa_bus = isa_bus_new(NULL, get_system_memory(), system_io);
212         no_hpet = 1;
213     }
214     isa_bus_irqs(isa_bus, gsi);
215
216     if (kvm_irqchip_in_kernel()) {
217         i8259 = kvm_i8259_init(isa_bus);
218     } else if (xen_enabled()) {
219         i8259 = xen_interrupt_controller_init();
220     } else {
221         i8259 = i8259_init(isa_bus, pc_allocate_cpu_irq());
222     }
223
224     for (i = 0; i < ISA_NUM_IRQS; i++) {
225         gsi_state->i8259_irq[i] = i8259[i];
226     }
227     g_free(i8259);
228     if (pci_enabled) {
229         ioapic_init_gsi(gsi_state, "i440fx");
230     }
231     qdev_init_nofail(icc_bridge);
232
233     pc_register_ferr_irq(gsi[13]);
234
235     pc_vga_init(isa_bus, pci_enabled ? pci_bus : NULL);
236
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
242     /* init basic PC hardware */
243     pc_basic_device_init(isa_bus, gsi, &rtc_state, true,
244                          (pc_machine->vmport != ON_OFF_AUTO_ON), 0x4);
245
246     pc_nic_init(isa_bus, pci_bus);
247
248     ide_drive_get(hd, ARRAY_SIZE(hd));
249     if (pci_enabled) {
250         PCIDevice *dev;
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         }
256         idebus[0] = qdev_get_child_bus(&dev->qdev, "ide.0");
257         idebus[1] = qdev_get_child_bus(&dev->qdev, "ide.1");
258     } else {
259         for(i = 0; i < MAX_IDE_BUS; i++) {
260             ISADevice *dev;
261             char busname[] = "ide.0";
262             dev = isa_ide_init(isa_bus, ide_iobase[i], ide_iobase2[i],
263                                ide_irq[i],
264                                hd[MAX_IDE_DEVS * i], hd[MAX_IDE_DEVS * i + 1]);
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);
271         }
272     }
273
274     pc_cmos_init(below_4g_mem_size, above_4g_mem_size, machine->boot_order,
275                  machine, idebus[0], idebus[1], rtc_state);
276
277     if (pci_enabled && usb_enabled()) {
278         pci_create_simple(pci_bus, piix3_devfn + 2, "piix3-usb-uhci");
279     }
280
281     if (pci_enabled && acpi_enabled) {
282         DeviceState *piix4_pm;
283         I2CBus *smbus;
284
285         smi_irq = qemu_allocate_irq(pc_acpi_smi_interrupt, first_cpu, 0);
286         /* TODO: Populate SPD eeprom data.  */
287         smbus = piix4_pm_init(pci_bus, piix3_devfn + 3, 0xb100,
288                               gsi[9], smi_irq,
289                               pc_machine_is_smm_enabled(pc_machine),
290                               &piix4_pm);
291         smbus_eeprom_init(smbus, 8, NULL, 0);
292
293         object_property_add_link(OBJECT(machine), PC_MACHINE_ACPI_DEVICE_PROP,
294                                  TYPE_HOTPLUG_HANDLER,
295                                  (Object **)&pc_machine->acpi_dev,
296                                  object_property_allow_set_link,
297                                  OBJ_PROP_LINK_UNREF_ON_RELEASE, &error_abort);
298         object_property_set_link(OBJECT(machine), OBJECT(piix4_pm),
299                                  PC_MACHINE_ACPI_DEVICE_PROP, &error_abort);
300     }
301
302     if (pci_enabled) {
303         pc_pci_device_init(pci_bus);
304     }
305 }
306
307 static void pc_compat_2_3(MachineState *machine)
308 {
309     PCMachineState *pcms = PC_MACHINE(machine);
310     savevm_skip_section_footers();
311     if (kvm_enabled()) {
312         pcms->smm = ON_OFF_AUTO_OFF;
313     }
314     global_state_set_optional();
315     savevm_skip_configuration();
316 }
317
318 static void pc_compat_2_2(MachineState *machine)
319 {
320     pc_compat_2_3(machine);
321     rsdp_in_ram = false;
322     x86_cpu_compat_set_features("kvm64", FEAT_1_EDX, 0, CPUID_VME);
323     x86_cpu_compat_set_features("kvm32", FEAT_1_EDX, 0, CPUID_VME);
324     x86_cpu_compat_set_features("Conroe", FEAT_1_EDX, 0, CPUID_VME);
325     x86_cpu_compat_set_features("Penryn", FEAT_1_EDX, 0, CPUID_VME);
326     x86_cpu_compat_set_features("Nehalem", FEAT_1_EDX, 0, CPUID_VME);
327     x86_cpu_compat_set_features("Westmere", FEAT_1_EDX, 0, CPUID_VME);
328     x86_cpu_compat_set_features("SandyBridge", FEAT_1_EDX, 0, CPUID_VME);
329     x86_cpu_compat_set_features("Haswell", FEAT_1_EDX, 0, CPUID_VME);
330     x86_cpu_compat_set_features("Broadwell", FEAT_1_EDX, 0, CPUID_VME);
331     x86_cpu_compat_set_features("Opteron_G1", FEAT_1_EDX, 0, CPUID_VME);
332     x86_cpu_compat_set_features("Opteron_G2", FEAT_1_EDX, 0, CPUID_VME);
333     x86_cpu_compat_set_features("Opteron_G3", FEAT_1_EDX, 0, CPUID_VME);
334     x86_cpu_compat_set_features("Opteron_G4", FEAT_1_EDX, 0, CPUID_VME);
335     x86_cpu_compat_set_features("Opteron_G5", FEAT_1_EDX, 0, CPUID_VME);
336     x86_cpu_compat_set_features("Haswell", FEAT_1_ECX, 0, CPUID_EXT_F16C);
337     x86_cpu_compat_set_features("Haswell", FEAT_1_ECX, 0, CPUID_EXT_RDRAND);
338     x86_cpu_compat_set_features("Broadwell", FEAT_1_ECX, 0, CPUID_EXT_F16C);
339     x86_cpu_compat_set_features("Broadwell", FEAT_1_ECX, 0, CPUID_EXT_RDRAND);
340     machine->suppress_vmdesc = true;
341 }
342
343 #ifdef CONFIG_MARU
344 void maru_pc_init_pci(MachineState *machine);
345
346 void maru_pc_init_pci(MachineState *machine)
347 {
348     pc_init_pci(machine);
349 }
350 #endif
351
352 static void pc_compat_2_1(MachineState *machine)
353 {
354     PCMachineState *pcms = PC_MACHINE(machine);
355
356     pc_compat_2_2(machine);
357     smbios_uuid_encoded = false;
358     x86_cpu_compat_set_features("coreduo", FEAT_1_ECX, CPUID_EXT_VMX, 0);
359     x86_cpu_compat_set_features("core2duo", FEAT_1_ECX, CPUID_EXT_VMX, 0);
360     x86_cpu_compat_kvm_no_autodisable(FEAT_8000_0001_ECX, CPUID_EXT3_SVM);
361     pcms->enforce_aligned_dimm = false;
362 }
363
364 static void pc_compat_2_0(MachineState *machine)
365 {
366     pc_compat_2_1(machine);
367     /* This value depends on the actual DSDT and SSDT compiled into
368      * the source QEMU; unfortunately it depends on the binary and
369      * not on the machine type, so we cannot make pc-i440fx-1.7 work on
370      * both QEMU 1.7 and QEMU 2.0.
371      *
372      * Large variations cause migration to fail for more than one
373      * consecutive value of the "-smp" maxcpus option.
374      *
375      * For small variations of the kind caused by different iasl versions,
376      * the 4k rounding usually leaves slack.  However, there could be still
377      * one or two values that break.  For QEMU 1.7 and QEMU 2.0 the
378      * slack is only ~10 bytes before one "-smp maxcpus" value breaks!
379      *
380      * 6652 is valid for QEMU 2.0, the right value for pc-i440fx-1.7 on
381      * QEMU 1.7 it is 6414.  For RHEL/CentOS 7.0 it is 6418.
382      */
383     legacy_acpi_table_size = 6652;
384     smbios_legacy_mode = true;
385     has_reserved_memory = false;
386     pc_set_legacy_acpi_data_size();
387 }
388
389 static void pc_compat_1_7(MachineState *machine)
390 {
391     pc_compat_2_0(machine);
392     smbios_defaults = false;
393     gigabyte_align = false;
394     option_rom_has_mr = true;
395     legacy_acpi_table_size = 6414;
396     x86_cpu_compat_kvm_no_autoenable(FEAT_1_ECX, CPUID_EXT_X2APIC);
397 }
398
399 static void pc_compat_1_6(MachineState *machine)
400 {
401     pc_compat_1_7(machine);
402     rom_file_has_mr = false;
403     has_acpi_build = false;
404 }
405
406 static void pc_compat_1_5(MachineState *machine)
407 {
408     pc_compat_1_6(machine);
409 }
410
411 static void pc_compat_1_4(MachineState *machine)
412 {
413     pc_compat_1_5(machine);
414     x86_cpu_compat_set_features("n270", FEAT_1_ECX, 0, CPUID_EXT_MOVBE);
415     x86_cpu_compat_set_features("Westmere", FEAT_1_ECX, 0, CPUID_EXT_PCLMULQDQ);
416 }
417
418 static void pc_compat_1_3(MachineState *machine)
419 {
420     pc_compat_1_4(machine);
421     enable_compat_apic_id_mode();
422 }
423
424 /* PC compat function for pc-0.14 to pc-1.2 */
425 static void pc_compat_1_2(MachineState *machine)
426 {
427     pc_compat_1_3(machine);
428     x86_cpu_compat_kvm_no_autoenable(FEAT_KVM, 1 << KVM_FEATURE_PV_EOI);
429 }
430
431 /* PC compat function for pc-0.10 to pc-0.13 */
432 static void pc_compat_0_13(MachineState *machine)
433 {
434     pc_compat_1_2(machine);
435     kvmclock_enabled = false;
436 }
437
438 static void pc_init_isa(MachineState *machine)
439 {
440     pci_enabled = false;
441     has_acpi_build = false;
442     smbios_defaults = false;
443     gigabyte_align = false;
444     smbios_legacy_mode = true;
445     has_reserved_memory = false;
446     option_rom_has_mr = true;
447     rom_file_has_mr = false;
448     if (!machine->cpu_model) {
449         machine->cpu_model = "486";
450     }
451     x86_cpu_compat_kvm_no_autoenable(FEAT_KVM, 1 << KVM_FEATURE_PV_EOI);
452     enable_compat_apic_id_mode();
453     pc_init1(machine);
454 }
455
456 #ifdef CONFIG_XEN
457 static void pc_xen_hvm_init(MachineState *machine)
458 {
459     PCIBus *bus;
460
461     pc_init1(machine);
462
463     bus = pci_find_primary_bus();
464     if (bus != NULL) {
465         pci_create_simple(bus, -1, "xen-platform");
466     }
467 }
468 #endif
469
470 #define DEFINE_I440FX_MACHINE(suffix, name, compatfn, optionfn) \
471     static void pc_init_##suffix(MachineState *machine) \
472     { \
473         void (*compat)(MachineState *m) = (compatfn); \
474         if (compat) { \
475             compat(machine); \
476         } \
477         pc_init1(machine); \
478     } \
479     DEFINE_PC_MACHINE(suffix, name, pc_init_##suffix, optionfn)
480
481 static void pc_i440fx_machine_options(MachineClass *m)
482 {
483     pc_default_machine_options(m);
484     m->family = "pc_piix";
485     m->desc = "Standard PC (i440FX + PIIX, 1996)";
486     m->hot_add_cpu = pc_hot_add_cpu;
487 }
488
489 static void pc_i440fx_2_4_machine_options(MachineClass *m)
490 {
491     pc_i440fx_machine_options(m);
492     m->default_machine_opts = "firmware=bios-256k.bin";
493     m->default_display = "std";
494     m->alias = "pc";
495     m->is_default = 1;
496 }
497
498 DEFINE_I440FX_MACHINE(v2_4, "pc-i440fx-2.4", NULL,
499                       pc_i440fx_2_4_machine_options)
500
501
502 static void pc_i440fx_2_3_machine_options(MachineClass *m)
503 {
504     pc_i440fx_2_4_machine_options(m);
505     m->alias = NULL;
506     m->is_default = 0;
507     SET_MACHINE_COMPAT(m, PC_COMPAT_2_3);
508 }
509
510 DEFINE_I440FX_MACHINE(v2_3, "pc-i440fx-2.3", pc_compat_2_3,
511                       pc_i440fx_2_3_machine_options);
512
513
514 static void pc_i440fx_2_2_machine_options(MachineClass *m)
515 {
516     pc_i440fx_2_3_machine_options(m);
517     SET_MACHINE_COMPAT(m, PC_COMPAT_2_2);
518 }
519
520 DEFINE_I440FX_MACHINE(v2_2, "pc-i440fx-2.2", pc_compat_2_2,
521                       pc_i440fx_2_2_machine_options);
522
523
524 static void pc_i440fx_2_1_machine_options(MachineClass *m)
525 {
526     pc_i440fx_2_2_machine_options(m);
527     m->default_display = NULL;
528     SET_MACHINE_COMPAT(m, PC_COMPAT_2_1);
529 }
530
531 DEFINE_I440FX_MACHINE(v2_1, "pc-i440fx-2.1", pc_compat_2_1,
532                       pc_i440fx_2_1_machine_options);
533
534
535
536 static void pc_i440fx_2_0_machine_options(MachineClass *m)
537 {
538     pc_i440fx_2_1_machine_options(m);
539     SET_MACHINE_COMPAT(m, PC_COMPAT_2_0);
540 }
541
542 DEFINE_I440FX_MACHINE(v2_0, "pc-i440fx-2.0", pc_compat_2_0,
543                       pc_i440fx_2_0_machine_options);
544
545
546 static void pc_i440fx_1_7_machine_options(MachineClass *m)
547 {
548     pc_i440fx_2_0_machine_options(m);
549     m->default_machine_opts = NULL;
550     SET_MACHINE_COMPAT(m, PC_COMPAT_1_7);
551 }
552
553 DEFINE_I440FX_MACHINE(v1_7, "pc-i440fx-1.7", pc_compat_1_7,
554                       pc_i440fx_1_7_machine_options);
555
556
557 static void pc_i440fx_1_6_machine_options(MachineClass *m)
558 {
559     pc_i440fx_1_7_machine_options(m);
560     SET_MACHINE_COMPAT(m, PC_COMPAT_1_6);
561 }
562
563 DEFINE_I440FX_MACHINE(v1_6, "pc-i440fx-1.6", pc_compat_1_6,
564                       pc_i440fx_1_6_machine_options);
565
566
567 static void pc_i440fx_1_5_machine_options(MachineClass *m)
568 {
569     pc_i440fx_1_6_machine_options(m);
570     SET_MACHINE_COMPAT(m, PC_COMPAT_1_5);
571 }
572
573 DEFINE_I440FX_MACHINE(v1_5, "pc-i440fx-1.5", pc_compat_1_5,
574                       pc_i440fx_1_5_machine_options);
575
576
577 static void pc_i440fx_1_4_machine_options(MachineClass *m)
578 {
579     pc_i440fx_1_5_machine_options(m);
580     m->hot_add_cpu = NULL;
581     SET_MACHINE_COMPAT(m, PC_COMPAT_1_4);
582 }
583
584 DEFINE_I440FX_MACHINE(v1_4, "pc-i440fx-1.4", pc_compat_1_4,
585                       pc_i440fx_1_4_machine_options);
586
587
588 #define PC_COMPAT_1_3 \
589         PC_COMPAT_1_4 \
590         {\
591             .driver   = "usb-tablet",\
592             .property = "usb_version",\
593             .value    = stringify(1),\
594         },{\
595             .driver   = "virtio-net-pci",\
596             .property = "ctrl_mac_addr",\
597             .value    = "off",      \
598         },{ \
599             .driver   = "virtio-net-pci", \
600             .property = "mq", \
601             .value    = "off", \
602         }, {\
603             .driver   = "e1000",\
604             .property = "autonegotiation",\
605             .value    = "off",\
606         },
607
608
609 static void pc_i440fx_1_3_machine_options(MachineClass *m)
610 {
611     pc_i440fx_1_4_machine_options(m);
612     SET_MACHINE_COMPAT(m, PC_COMPAT_1_3);
613 }
614
615 DEFINE_I440FX_MACHINE(v1_3, "pc-1.3", pc_compat_1_3,
616                       pc_i440fx_1_3_machine_options);
617
618
619 #define PC_COMPAT_1_2 \
620         PC_COMPAT_1_3 \
621         {\
622             .driver   = "nec-usb-xhci",\
623             .property = "msi",\
624             .value    = "off",\
625         },{\
626             .driver   = "nec-usb-xhci",\
627             .property = "msix",\
628             .value    = "off",\
629         },{\
630             .driver   = "ivshmem",\
631             .property = "use64",\
632             .value    = "0",\
633         },{\
634             .driver   = "qxl",\
635             .property = "revision",\
636             .value    = stringify(3),\
637         },{\
638             .driver   = "qxl-vga",\
639             .property = "revision",\
640             .value    = stringify(3),\
641         },{\
642             .driver   = "VGA",\
643             .property = "mmio",\
644             .value    = "off",\
645         },
646
647 static void pc_i440fx_1_2_machine_options(MachineClass *m)
648 {
649     pc_i440fx_1_3_machine_options(m);
650     SET_MACHINE_COMPAT(m, PC_COMPAT_1_2);
651 }
652
653 DEFINE_I440FX_MACHINE(v1_2, "pc-1.2", pc_compat_1_2,
654                       pc_i440fx_1_2_machine_options);
655
656
657 #define PC_COMPAT_1_1 \
658         PC_COMPAT_1_2 \
659         {\
660             .driver   = "virtio-scsi-pci",\
661             .property = "hotplug",\
662             .value    = "off",\
663         },{\
664             .driver   = "virtio-scsi-pci",\
665             .property = "param_change",\
666             .value    = "off",\
667         },{\
668             .driver   = "VGA",\
669             .property = "vgamem_mb",\
670             .value    = stringify(8),\
671         },{\
672             .driver   = "vmware-svga",\
673             .property = "vgamem_mb",\
674             .value    = stringify(8),\
675         },{\
676             .driver   = "qxl-vga",\
677             .property = "vgamem_mb",\
678             .value    = stringify(8),\
679         },{\
680             .driver   = "qxl",\
681             .property = "vgamem_mb",\
682             .value    = stringify(8),\
683         },{\
684             .driver   = "virtio-blk-pci",\
685             .property = "config-wce",\
686             .value    = "off",\
687         },
688
689 static void pc_i440fx_1_1_machine_options(MachineClass *m)
690 {
691     pc_i440fx_1_2_machine_options(m);
692     SET_MACHINE_COMPAT(m, PC_COMPAT_1_1);
693 }
694
695 DEFINE_I440FX_MACHINE(v1_1, "pc-1.1", pc_compat_1_2,
696                       pc_i440fx_1_1_machine_options);
697
698
699 #define PC_COMPAT_1_0 \
700         PC_COMPAT_1_1 \
701         {\
702             .driver   = TYPE_ISA_FDC,\
703             .property = "check_media_rate",\
704             .value    = "off",\
705         }, {\
706             .driver   = "virtio-balloon-pci",\
707             .property = "class",\
708             .value    = stringify(PCI_CLASS_MEMORY_RAM),\
709         },{\
710             .driver   = "apic-common",\
711             .property = "vapic",\
712             .value    = "off",\
713         },{\
714             .driver   = TYPE_USB_DEVICE,\
715             .property = "full-path",\
716             .value    = "no",\
717         },
718
719 static void pc_i440fx_1_0_machine_options(MachineClass *m)
720 {
721     pc_i440fx_1_1_machine_options(m);
722     m->hw_version = "1.0";
723     SET_MACHINE_COMPAT(m, PC_COMPAT_1_0);
724 }
725
726 DEFINE_I440FX_MACHINE(v1_0, "pc-1.0", pc_compat_1_2,
727                       pc_i440fx_1_0_machine_options);
728
729
730 #define PC_COMPAT_0_15 \
731         PC_COMPAT_1_0
732
733 static void pc_i440fx_0_15_machine_options(MachineClass *m)
734 {
735     pc_i440fx_1_0_machine_options(m);
736     m->hw_version = "0.15";
737     SET_MACHINE_COMPAT(m, PC_COMPAT_0_15);
738 }
739
740 DEFINE_I440FX_MACHINE(v0_15, "pc-0.15", pc_compat_1_2,
741                       pc_i440fx_0_15_machine_options);
742
743
744 #define PC_COMPAT_0_14 \
745         PC_COMPAT_0_15 \
746         {\
747             .driver   = "virtio-blk-pci",\
748             .property = "event_idx",\
749             .value    = "off",\
750         },{\
751             .driver   = "virtio-serial-pci",\
752             .property = "event_idx",\
753             .value    = "off",\
754         },{\
755             .driver   = "virtio-net-pci",\
756             .property = "event_idx",\
757             .value    = "off",\
758         },{\
759             .driver   = "virtio-balloon-pci",\
760             .property = "event_idx",\
761             .value    = "off",\
762         },{\
763             .driver   = "qxl",\
764             .property = "revision",\
765             .value    = stringify(2),\
766         },{\
767             .driver   = "qxl-vga",\
768             .property = "revision",\
769             .value    = stringify(2),\
770         },
771
772 static void pc_i440fx_0_14_machine_options(MachineClass *m)
773 {
774     pc_i440fx_0_15_machine_options(m);
775     m->hw_version = "0.14";
776     SET_MACHINE_COMPAT(m, PC_COMPAT_0_14);
777 }
778
779 DEFINE_I440FX_MACHINE(v0_14, "pc-0.14", pc_compat_1_2,
780                       pc_i440fx_0_14_machine_options);
781
782
783 #define PC_COMPAT_0_13 \
784         PC_COMPAT_0_14 \
785         {\
786             .driver   = TYPE_PCI_DEVICE,\
787             .property = "command_serr_enable",\
788             .value    = "off",\
789         },{\
790             .driver   = "AC97",\
791             .property = "use_broken_id",\
792             .value    = stringify(1),\
793         },{\
794             .driver   = "virtio-9p-pci",\
795             .property = "vectors",\
796             .value    = stringify(0),\
797         },{\
798             .driver   = "VGA",\
799             .property = "rombar",\
800             .value    = stringify(0),\
801         },{\
802             .driver   = "vmware-svga",\
803             .property = "rombar",\
804             .value    = stringify(0),\
805         },
806
807 static void pc_i440fx_0_13_machine_options(MachineClass *m)
808 {
809     pc_i440fx_0_14_machine_options(m);
810     m->hw_version = "0.13";
811     SET_MACHINE_COMPAT(m, PC_COMPAT_0_13);
812 }
813
814 DEFINE_I440FX_MACHINE(v0_13, "pc-0.13", pc_compat_0_13,
815                       pc_i440fx_0_13_machine_options);
816
817
818 #define PC_COMPAT_0_12 \
819         PC_COMPAT_0_13 \
820         {\
821             .driver   = "virtio-serial-pci",\
822             .property = "max_ports",\
823             .value    = stringify(1),\
824         },{\
825             .driver   = "virtio-serial-pci",\
826             .property = "vectors",\
827             .value    = stringify(0),\
828         },{\
829             .driver   = "usb-mouse",\
830             .property = "serial",\
831             .value    = "1",\
832         },{\
833             .driver   = "usb-tablet",\
834             .property = "serial",\
835             .value    = "1",\
836         },{\
837             .driver   = "usb-kbd",\
838             .property = "serial",\
839             .value    = "1",\
840         },
841
842 static void pc_i440fx_0_12_machine_options(MachineClass *m)
843 {
844     pc_i440fx_0_13_machine_options(m);
845     m->hw_version = "0.12";
846     SET_MACHINE_COMPAT(m, PC_COMPAT_0_12);
847 }
848
849 DEFINE_I440FX_MACHINE(v0_12, "pc-0.12", pc_compat_0_13,
850                       pc_i440fx_0_12_machine_options);
851
852
853 #define PC_COMPAT_0_11 \
854         PC_COMPAT_0_12 \
855         {\
856             .driver   = "virtio-blk-pci",\
857             .property = "vectors",\
858             .value    = stringify(0),\
859         },{\
860             .driver   = TYPE_PCI_DEVICE,\
861             .property = "rombar",\
862             .value    = stringify(0),\
863         },{\
864             .driver   = "ide-drive",\
865             .property = "ver",\
866             .value    = "0.11",\
867         },{\
868             .driver   = "scsi-disk",\
869             .property = "ver",\
870             .value    = "0.11",\
871         },
872
873 static void pc_i440fx_0_11_machine_options(MachineClass *m)
874 {
875     pc_i440fx_0_12_machine_options(m);
876     m->hw_version = "0.11";
877     SET_MACHINE_COMPAT(m, PC_COMPAT_0_11);
878 }
879
880 DEFINE_I440FX_MACHINE(v0_11, "pc-0.11", pc_compat_0_13,
881                       pc_i440fx_0_11_machine_options);
882
883
884 #define PC_COMPAT_0_10 \
885     PC_COMPAT_0_11 \
886     {\
887         .driver   = "virtio-blk-pci",\
888         .property = "class",\
889         .value    = stringify(PCI_CLASS_STORAGE_OTHER),\
890     },{\
891         .driver   = "virtio-serial-pci",\
892         .property = "class",\
893         .value    = stringify(PCI_CLASS_DISPLAY_OTHER),\
894     },{\
895         .driver   = "virtio-net-pci",\
896         .property = "vectors",\
897         .value    = stringify(0),\
898     },{\
899         .driver   = "ide-drive",\
900         .property = "ver",\
901         .value    = "0.10",\
902     },{\
903         .driver   = "scsi-disk",\
904         .property = "ver",\
905         .value    = "0.10",\
906     },
907
908 static void pc_i440fx_0_10_machine_options(MachineClass *m)
909 {
910     pc_i440fx_0_11_machine_options(m);
911     m->hw_version = "0.10";
912     SET_MACHINE_COMPAT(m, PC_COMPAT_0_10);
913 }
914
915 DEFINE_I440FX_MACHINE(v0_10, "pc-0.10", pc_compat_0_13,
916                       pc_i440fx_0_10_machine_options);
917
918
919 static void isapc_machine_options(MachineClass *m)
920 {
921     pc_common_machine_options(m);
922     m->desc = "ISA-only PC";
923     m->max_cpus = 1;
924 }
925
926 DEFINE_PC_MACHINE(isapc, "isapc", pc_init_isa,
927                   isapc_machine_options);
928
929
930 #ifdef CONFIG_XEN
931 static void xenfv_machine_options(MachineClass *m)
932 {
933     pc_common_machine_options(m);
934     m->desc = "Xen Fully-virtualized PC";
935     m->max_cpus = HVM_MAX_VCPUS;
936     m->default_machine_opts = "accel=xen";
937     m->hot_add_cpu = pc_hot_add_cpu;
938 }
939
940 DEFINE_PC_MACHINE(xenfv, "xenfv", pc_xen_hvm_init,
941                   xenfv_machine_options);
942 #endif