xref: /openbmc/qemu/hw/i386/pc_piix.c (revision b0dc5ee6)
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/i386/pc.h"
29 #include "hw/i386/apic.h"
30 #include "hw/pci/pci.h"
31 #include "hw/pci/pci_ids.h"
32 #include "hw/usb.h"
33 #include "net/net.h"
34 #include "hw/boards.h"
35 #include "hw/ide.h"
36 #include "sysemu/kvm.h"
37 #include "hw/kvm/clock.h"
38 #include "sysemu/sysemu.h"
39 #include "hw/sysbus.h"
40 #include "sysemu/arch_init.h"
41 #include "sysemu/blockdev.h"
42 #include "hw/i2c/smbus.h"
43 #include "hw/xen/xen.h"
44 #include "exec/memory.h"
45 #include "exec/address-spaces.h"
46 #include "hw/acpi/acpi.h"
47 #include "cpu.h"
48 #ifdef CONFIG_XEN
49 #  include <xen/hvm/hvm_info_table.h>
50 #endif
51 
52 #define MAX_IDE_BUS 2
53 
54 static const int ide_iobase[MAX_IDE_BUS] = { 0x1f0, 0x170 };
55 static const int ide_iobase2[MAX_IDE_BUS] = { 0x3f6, 0x376 };
56 static const int ide_irq[MAX_IDE_BUS] = { 14, 15 };
57 
58 /* PC hardware initialisation */
59 static void pc_init1(MemoryRegion *system_memory,
60                      MemoryRegion *system_io,
61                      ram_addr_t ram_size,
62                      const char *boot_device,
63                      const char *kernel_filename,
64                      const char *kernel_cmdline,
65                      const char *initrd_filename,
66                      const char *cpu_model,
67                      int pci_enabled,
68                      int kvmclock_enabled)
69 {
70     int i;
71     ram_addr_t below_4g_mem_size, above_4g_mem_size;
72     PCIBus *pci_bus;
73     ISABus *isa_bus;
74     PCII440FXState *i440fx_state;
75     int piix3_devfn = -1;
76     qemu_irq *cpu_irq;
77     qemu_irq *gsi;
78     qemu_irq *i8259;
79     qemu_irq *smi_irq;
80     GSIState *gsi_state;
81     DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
82     BusState *idebus[MAX_IDE_BUS];
83     ISADevice *rtc_state;
84     ISADevice *floppy;
85     MemoryRegion *ram_memory;
86     MemoryRegion *pci_memory;
87     MemoryRegion *rom_memory;
88     void *fw_cfg = NULL;
89 
90     pc_cpus_init(cpu_model);
91     pc_acpi_init("acpi-dsdt.aml");
92 
93     if (kvmclock_enabled) {
94         kvmclock_create();
95     }
96 
97     if (ram_size >= 0xe0000000 ) {
98         above_4g_mem_size = ram_size - 0xe0000000;
99         below_4g_mem_size = 0xe0000000;
100     } else {
101         above_4g_mem_size = 0;
102         below_4g_mem_size = ram_size;
103     }
104 
105     if (pci_enabled) {
106         pci_memory = g_new(MemoryRegion, 1);
107         memory_region_init(pci_memory, "pci", INT64_MAX);
108         rom_memory = pci_memory;
109     } else {
110         pci_memory = NULL;
111         rom_memory = system_memory;
112     }
113 
114     /* allocate ram and load rom/bios */
115     if (!xen_enabled()) {
116         fw_cfg = pc_memory_init(system_memory,
117                        kernel_filename, kernel_cmdline, initrd_filename,
118                        below_4g_mem_size, above_4g_mem_size,
119                        rom_memory, &ram_memory);
120     }
121 
122     gsi_state = g_malloc0(sizeof(*gsi_state));
123     if (kvm_irqchip_in_kernel()) {
124         kvm_pc_setup_irq_routing(pci_enabled);
125         gsi = qemu_allocate_irqs(kvm_pc_gsi_handler, gsi_state,
126                                  GSI_NUM_PINS);
127     } else {
128         gsi = qemu_allocate_irqs(gsi_handler, gsi_state, GSI_NUM_PINS);
129     }
130 
131     if (pci_enabled) {
132         pci_bus = i440fx_init(&i440fx_state, &piix3_devfn, &isa_bus, gsi,
133                               system_memory, system_io, ram_size,
134                               below_4g_mem_size,
135                               0x100000000ULL - below_4g_mem_size,
136                               0x100000000ULL + above_4g_mem_size,
137                               (sizeof(hwaddr) == 4
138                                ? 0
139                                : ((uint64_t)1 << 62)),
140                               pci_memory, ram_memory);
141     } else {
142         pci_bus = NULL;
143         i440fx_state = NULL;
144         isa_bus = isa_bus_new(NULL, system_io);
145         no_hpet = 1;
146     }
147     isa_bus_irqs(isa_bus, gsi);
148 
149     if (kvm_irqchip_in_kernel()) {
150         i8259 = kvm_i8259_init(isa_bus);
151     } else if (xen_enabled()) {
152         i8259 = xen_interrupt_controller_init();
153     } else {
154         cpu_irq = pc_allocate_cpu_irq();
155         i8259 = i8259_init(isa_bus, cpu_irq[0]);
156     }
157 
158     for (i = 0; i < ISA_NUM_IRQS; i++) {
159         gsi_state->i8259_irq[i] = i8259[i];
160     }
161     if (pci_enabled) {
162         ioapic_init_gsi(gsi_state, "i440fx");
163     }
164 
165     pc_register_ferr_irq(gsi[13]);
166 
167     pc_vga_init(isa_bus, pci_enabled ? pci_bus : NULL);
168     if (xen_enabled()) {
169         pci_create_simple(pci_bus, -1, "xen-platform");
170     }
171 
172     /* init basic PC hardware */
173     pc_basic_device_init(isa_bus, gsi, &rtc_state, &floppy, xen_enabled());
174 
175     pc_nic_init(isa_bus, pci_bus);
176 
177     ide_drive_get(hd, MAX_IDE_BUS);
178     if (pci_enabled) {
179         PCIDevice *dev;
180         if (xen_enabled()) {
181             dev = pci_piix3_xen_ide_init(pci_bus, hd, piix3_devfn + 1);
182         } else {
183             dev = pci_piix3_ide_init(pci_bus, hd, piix3_devfn + 1);
184         }
185         idebus[0] = qdev_get_child_bus(&dev->qdev, "ide.0");
186         idebus[1] = qdev_get_child_bus(&dev->qdev, "ide.1");
187     } else {
188         for(i = 0; i < MAX_IDE_BUS; i++) {
189             ISADevice *dev;
190             dev = isa_ide_init(isa_bus, ide_iobase[i], ide_iobase2[i],
191                                ide_irq[i],
192                                hd[MAX_IDE_DEVS * i], hd[MAX_IDE_DEVS * i + 1]);
193             idebus[i] = qdev_get_child_bus(&dev->qdev, "ide.0");
194         }
195     }
196 
197     audio_init(isa_bus, pci_enabled ? pci_bus : NULL);
198 
199     pc_cmos_init(below_4g_mem_size, above_4g_mem_size, boot_device,
200                  floppy, idebus[0], idebus[1], rtc_state);
201 
202     if (pci_enabled && usb_enabled(false)) {
203         pci_create_simple(pci_bus, piix3_devfn + 2, "piix3-usb-uhci");
204     }
205 
206     if (pci_enabled && acpi_enabled) {
207         i2c_bus *smbus;
208 
209         smi_irq = qemu_allocate_irqs(pc_acpi_smi_interrupt,
210                                      x86_env_get_cpu(first_cpu), 1);
211         /* TODO: Populate SPD eeprom data.  */
212         smbus = piix4_pm_init(pci_bus, piix3_devfn + 3, 0xb100,
213                               gsi[9], *smi_irq,
214                               kvm_enabled(), fw_cfg);
215         smbus_eeprom_init(smbus, 8, NULL, 0);
216     }
217 
218     if (pci_enabled) {
219         pc_pci_device_init(pci_bus);
220     }
221 }
222 
223 static void pc_init_pci(QEMUMachineInitArgs *args)
224 {
225     ram_addr_t ram_size = args->ram_size;
226     const char *cpu_model = args->cpu_model;
227     const char *kernel_filename = args->kernel_filename;
228     const char *kernel_cmdline = args->kernel_cmdline;
229     const char *initrd_filename = args->initrd_filename;
230     const char *boot_device = args->boot_device;
231     pc_init1(get_system_memory(),
232              get_system_io(),
233              ram_size, boot_device,
234              kernel_filename, kernel_cmdline,
235              initrd_filename, cpu_model, 1, 1);
236 }
237 
238 static void pc_init_pci_1_4(QEMUMachineInitArgs *args)
239 {
240     pc_sysfw_flash_vs_rom_bug_compatible = true;
241     pc_init_pci(args);
242 }
243 
244 static void pc_init_pci_1_3(QEMUMachineInitArgs *args)
245 {
246     enable_compat_apic_id_mode();
247     pc_sysfw_flash_vs_rom_bug_compatible = true;
248     pc_init_pci(args);
249 }
250 
251 /* PC machine init function for pc-1.1 to pc-1.2 */
252 static void pc_init_pci_1_2(QEMUMachineInitArgs *args)
253 {
254     disable_kvm_pv_eoi();
255     enable_compat_apic_id_mode();
256     pc_sysfw_flash_vs_rom_bug_compatible = true;
257     pc_init_pci(args);
258 }
259 
260 /* PC machine init function for pc-0.14 to pc-1.0 */
261 static void pc_init_pci_1_0(QEMUMachineInitArgs *args)
262 {
263     disable_kvm_pv_eoi();
264     enable_compat_apic_id_mode();
265     pc_init_pci(args);
266 }
267 
268 /* PC init function for pc-0.10 to pc-0.13, and reused by xenfv */
269 static void pc_init_pci_no_kvmclock(QEMUMachineInitArgs *args)
270 {
271     ram_addr_t ram_size = args->ram_size;
272     const char *cpu_model = args->cpu_model;
273     const char *kernel_filename = args->kernel_filename;
274     const char *kernel_cmdline = args->kernel_cmdline;
275     const char *initrd_filename = args->initrd_filename;
276     const char *boot_device = args->boot_device;
277     disable_kvm_pv_eoi();
278     enable_compat_apic_id_mode();
279     pc_init1(get_system_memory(),
280              get_system_io(),
281              ram_size, boot_device,
282              kernel_filename, kernel_cmdline,
283              initrd_filename, cpu_model, 1, 0);
284 }
285 
286 static void pc_init_isa(QEMUMachineInitArgs *args)
287 {
288     ram_addr_t ram_size = args->ram_size;
289     const char *cpu_model = args->cpu_model;
290     const char *kernel_filename = args->kernel_filename;
291     const char *kernel_cmdline = args->kernel_cmdline;
292     const char *initrd_filename = args->initrd_filename;
293     const char *boot_device = args->boot_device;
294     if (cpu_model == NULL)
295         cpu_model = "486";
296     disable_kvm_pv_eoi();
297     enable_compat_apic_id_mode();
298     pc_init1(get_system_memory(),
299              get_system_io(),
300              ram_size, boot_device,
301              kernel_filename, kernel_cmdline,
302              initrd_filename, cpu_model, 0, 1);
303 }
304 
305 #ifdef CONFIG_XEN
306 static void pc_xen_hvm_init(QEMUMachineInitArgs *args)
307 {
308     if (xen_hvm_init() != 0) {
309         hw_error("xen hardware virtual machine initialisation failed");
310     }
311     pc_init_pci_no_kvmclock(args);
312     xen_vcpu_init();
313 }
314 #endif
315 
316 static QEMUMachine pc_i440fx_machine_v1_5 = {
317     .name = "pc-i440fx-1.5",
318     .alias = "pc",
319     .desc = "Standard PC (i440FX + PIIX, 1996)",
320     .init = pc_init_pci,
321     .max_cpus = 255,
322     .is_default = 1,
323     DEFAULT_MACHINE_OPTIONS,
324 };
325 
326 static QEMUMachine pc_i440fx_machine_v1_4 = {
327     .name = "pc-i440fx-1.4",
328     .desc = "Standard PC (i440FX + PIIX, 1996)",
329     .init = pc_init_pci_1_4,
330     .max_cpus = 255,
331     .compat_props = (GlobalProperty[]) {
332         PC_COMPAT_1_4,
333         { /* end of list */ }
334     },
335     DEFAULT_MACHINE_OPTIONS,
336 };
337 
338 #define PC_COMPAT_1_3 \
339 	PC_COMPAT_1_4, \
340         {\
341             .driver   = "usb-tablet",\
342             .property = "usb_version",\
343             .value    = stringify(1),\
344         },{\
345             .driver   = "virtio-net-pci",\
346             .property = "ctrl_mac_addr",\
347             .value    = "off",      \
348         },{ \
349             .driver   = "virtio-net-pci", \
350             .property = "mq", \
351             .value    = "off", \
352         }, {\
353             .driver   = "e1000",\
354             .property = "autonegotiation",\
355             .value    = "off",\
356         }
357 
358 static QEMUMachine pc_machine_v1_3 = {
359     .name = "pc-1.3",
360     .desc = "Standard PC",
361     .init = pc_init_pci_1_3,
362     .max_cpus = 255,
363     .compat_props = (GlobalProperty[]) {
364         PC_COMPAT_1_3,
365         { /* end of list */ }
366     },
367     DEFAULT_MACHINE_OPTIONS,
368 };
369 
370 #define PC_COMPAT_1_2 \
371         PC_COMPAT_1_3,\
372         {\
373             .driver   = "nec-usb-xhci",\
374             .property = "msi",\
375             .value    = "off",\
376         },{\
377             .driver   = "nec-usb-xhci",\
378             .property = "msix",\
379             .value    = "off",\
380         },{\
381             .driver   = "ivshmem",\
382             .property = "use64",\
383             .value    = "0",\
384         },{\
385             .driver   = "qxl",\
386             .property = "revision",\
387             .value    = stringify(3),\
388         },{\
389             .driver   = "qxl-vga",\
390             .property = "revision",\
391             .value    = stringify(3),\
392         },{\
393             .driver   = "VGA",\
394             .property = "mmio",\
395             .value    = "off",\
396         }
397 
398 static QEMUMachine pc_machine_v1_2 = {
399     .name = "pc-1.2",
400     .desc = "Standard PC",
401     .init = pc_init_pci_1_2,
402     .max_cpus = 255,
403     .compat_props = (GlobalProperty[]) {
404         PC_COMPAT_1_2,
405         { /* end of list */ }
406     },
407     DEFAULT_MACHINE_OPTIONS,
408 };
409 
410 #define PC_COMPAT_1_1 \
411         PC_COMPAT_1_2,\
412         {\
413             .driver   = "virtio-scsi-pci",\
414             .property = "hotplug",\
415             .value    = "off",\
416         },{\
417             .driver   = "virtio-scsi-pci",\
418             .property = "param_change",\
419             .value    = "off",\
420         },{\
421             .driver   = "VGA",\
422             .property = "vgamem_mb",\
423             .value    = stringify(8),\
424         },{\
425             .driver   = "vmware-svga",\
426             .property = "vgamem_mb",\
427             .value    = stringify(8),\
428         },{\
429             .driver   = "qxl-vga",\
430             .property = "vgamem_mb",\
431             .value    = stringify(8),\
432         },{\
433             .driver   = "qxl",\
434             .property = "vgamem_mb",\
435             .value    = stringify(8),\
436         },{\
437             .driver   = "virtio-blk-pci",\
438             .property = "config-wce",\
439             .value    = "off",\
440         }
441 
442 static QEMUMachine pc_machine_v1_1 = {
443     .name = "pc-1.1",
444     .desc = "Standard PC",
445     .init = pc_init_pci_1_2,
446     .max_cpus = 255,
447     .compat_props = (GlobalProperty[]) {
448         PC_COMPAT_1_1,
449         { /* end of list */ }
450     },
451     DEFAULT_MACHINE_OPTIONS,
452 };
453 
454 #define PC_COMPAT_1_0 \
455         PC_COMPAT_1_1,\
456         {\
457             .driver   = "pc-sysfw",\
458             .property = "rom_only",\
459             .value    = stringify(1),\
460         }, {\
461             .driver   = TYPE_ISA_FDC,\
462             .property = "check_media_rate",\
463             .value    = "off",\
464         }, {\
465             .driver   = "virtio-balloon-pci",\
466             .property = "class",\
467             .value    = stringify(PCI_CLASS_MEMORY_RAM),\
468         },{\
469             .driver   = "apic",\
470             .property = "vapic",\
471             .value    = "off",\
472         },{\
473             .driver   = TYPE_USB_DEVICE,\
474             .property = "full-path",\
475             .value    = "no",\
476         }
477 
478 static QEMUMachine pc_machine_v1_0 = {
479     .name = "pc-1.0",
480     .desc = "Standard PC",
481     .init = pc_init_pci_1_0,
482     .max_cpus = 255,
483     .compat_props = (GlobalProperty[]) {
484         PC_COMPAT_1_0,
485         { /* end of list */ }
486     },
487     .hw_version = "1.0",
488     DEFAULT_MACHINE_OPTIONS,
489 };
490 
491 #define PC_COMPAT_0_15 \
492         PC_COMPAT_1_0
493 
494 static QEMUMachine pc_machine_v0_15 = {
495     .name = "pc-0.15",
496     .desc = "Standard PC",
497     .init = pc_init_pci_1_0,
498     .max_cpus = 255,
499     .compat_props = (GlobalProperty[]) {
500         PC_COMPAT_0_15,
501         { /* end of list */ }
502     },
503     .hw_version = "0.15",
504     DEFAULT_MACHINE_OPTIONS,
505 };
506 
507 #define PC_COMPAT_0_14 \
508         PC_COMPAT_0_15,\
509         {\
510             .driver   = "virtio-blk-pci",\
511             .property = "event_idx",\
512             .value    = "off",\
513         },{\
514             .driver   = "virtio-serial-pci",\
515             .property = "event_idx",\
516             .value    = "off",\
517         },{\
518             .driver   = "virtio-net-pci",\
519             .property = "event_idx",\
520             .value    = "off",\
521         },{\
522             .driver   = "virtio-balloon-pci",\
523             .property = "event_idx",\
524             .value    = "off",\
525         }
526 
527 static QEMUMachine pc_machine_v0_14 = {
528     .name = "pc-0.14",
529     .desc = "Standard PC",
530     .init = pc_init_pci_1_0,
531     .max_cpus = 255,
532     .compat_props = (GlobalProperty[]) {
533         PC_COMPAT_0_14,
534         {
535             .driver   = "qxl",
536             .property = "revision",
537             .value    = stringify(2),
538         },{
539             .driver   = "qxl-vga",
540             .property = "revision",
541             .value    = stringify(2),
542         },
543         { /* end of list */ }
544     },
545     .hw_version = "0.14",
546     DEFAULT_MACHINE_OPTIONS,
547 };
548 
549 #define PC_COMPAT_0_13 \
550         PC_COMPAT_0_14,\
551         {\
552             .driver   = TYPE_PCI_DEVICE,\
553             .property = "command_serr_enable",\
554             .value    = "off",\
555         },{\
556             .driver   = "AC97",\
557             .property = "use_broken_id",\
558             .value    = stringify(1),\
559         }
560 
561 static QEMUMachine pc_machine_v0_13 = {
562     .name = "pc-0.13",
563     .desc = "Standard PC",
564     .init = pc_init_pci_no_kvmclock,
565     .max_cpus = 255,
566     .compat_props = (GlobalProperty[]) {
567         PC_COMPAT_0_13,
568         {
569             .driver   = "virtio-9p-pci",
570             .property = "vectors",
571             .value    = stringify(0),
572         },{
573             .driver   = "VGA",
574             .property = "rombar",
575             .value    = stringify(0),
576         },{
577             .driver   = "vmware-svga",
578             .property = "rombar",
579             .value    = stringify(0),
580         },
581         { /* end of list */ }
582     },
583     .hw_version = "0.13",
584     DEFAULT_MACHINE_OPTIONS,
585 };
586 
587 #define PC_COMPAT_0_12 \
588         PC_COMPAT_0_13,\
589         {\
590             .driver   = "virtio-serial-pci",\
591             .property = "max_ports",\
592             .value    = stringify(1),\
593         },{\
594             .driver   = "virtio-serial-pci",\
595             .property = "vectors",\
596             .value    = stringify(0),\
597         }
598 
599 static QEMUMachine pc_machine_v0_12 = {
600     .name = "pc-0.12",
601     .desc = "Standard PC",
602     .init = pc_init_pci_no_kvmclock,
603     .max_cpus = 255,
604     .compat_props = (GlobalProperty[]) {
605         PC_COMPAT_0_12,
606         {
607             .driver   = "VGA",
608             .property = "rombar",
609             .value    = stringify(0),
610         },{
611             .driver   = "vmware-svga",
612             .property = "rombar",
613             .value    = stringify(0),
614         },
615         { /* end of list */ }
616     },
617     .hw_version = "0.12",
618     DEFAULT_MACHINE_OPTIONS,
619 };
620 
621 #define PC_COMPAT_0_11 \
622         PC_COMPAT_0_12,\
623         {\
624             .driver   = "virtio-blk-pci",\
625             .property = "vectors",\
626             .value    = stringify(0),\
627         },{\
628             .driver   = TYPE_PCI_DEVICE,\
629             .property = "rombar",\
630             .value    = stringify(0),\
631         }
632 
633 static QEMUMachine pc_machine_v0_11 = {
634     .name = "pc-0.11",
635     .desc = "Standard PC, qemu 0.11",
636     .init = pc_init_pci_no_kvmclock,
637     .max_cpus = 255,
638     .compat_props = (GlobalProperty[]) {
639         PC_COMPAT_0_11,
640         {
641             .driver   = "ide-drive",
642             .property = "ver",
643             .value    = "0.11",
644         },{
645             .driver   = "scsi-disk",
646             .property = "ver",
647             .value    = "0.11",
648         },
649         { /* end of list */ }
650     },
651     .hw_version = "0.11",
652     DEFAULT_MACHINE_OPTIONS,
653 };
654 
655 static QEMUMachine pc_machine_v0_10 = {
656     .name = "pc-0.10",
657     .desc = "Standard PC, qemu 0.10",
658     .init = pc_init_pci_no_kvmclock,
659     .max_cpus = 255,
660     .compat_props = (GlobalProperty[]) {
661         PC_COMPAT_0_11,
662         {
663             .driver   = "virtio-blk-pci",
664             .property = "class",
665             .value    = stringify(PCI_CLASS_STORAGE_OTHER),
666         },{
667             .driver   = "virtio-serial-pci",
668             .property = "class",
669             .value    = stringify(PCI_CLASS_DISPLAY_OTHER),
670         },{
671             .driver   = "virtio-net-pci",
672             .property = "vectors",
673             .value    = stringify(0),
674         },{
675             .driver   = "ide-drive",
676             .property = "ver",
677             .value    = "0.10",
678         },{
679             .driver   = "scsi-disk",
680             .property = "ver",
681             .value    = "0.10",
682         },
683         { /* end of list */ }
684     },
685     .hw_version = "0.10",
686     DEFAULT_MACHINE_OPTIONS,
687 };
688 
689 static QEMUMachine isapc_machine = {
690     .name = "isapc",
691     .desc = "ISA-only PC",
692     .init = pc_init_isa,
693     .max_cpus = 1,
694     .compat_props = (GlobalProperty[]) {
695         {
696             .driver   = "pc-sysfw",
697             .property = "rom_only",
698             .value    = stringify(1),
699         },
700         { /* end of list */ }
701     },
702     DEFAULT_MACHINE_OPTIONS,
703 };
704 
705 #ifdef CONFIG_XEN
706 static QEMUMachine xenfv_machine = {
707     .name = "xenfv",
708     .desc = "Xen Fully-virtualized PC",
709     .init = pc_xen_hvm_init,
710     .max_cpus = HVM_MAX_VCPUS,
711     .default_machine_opts = "accel=xen",
712     DEFAULT_MACHINE_OPTIONS,
713 };
714 #endif
715 
716 static void pc_machine_init(void)
717 {
718     qemu_register_machine(&pc_i440fx_machine_v1_5);
719     qemu_register_machine(&pc_i440fx_machine_v1_4);
720     qemu_register_machine(&pc_machine_v1_3);
721     qemu_register_machine(&pc_machine_v1_2);
722     qemu_register_machine(&pc_machine_v1_1);
723     qemu_register_machine(&pc_machine_v1_0);
724     qemu_register_machine(&pc_machine_v0_15);
725     qemu_register_machine(&pc_machine_v0_14);
726     qemu_register_machine(&pc_machine_v0_13);
727     qemu_register_machine(&pc_machine_v0_12);
728     qemu_register_machine(&pc_machine_v0_11);
729     qemu_register_machine(&pc_machine_v0_10);
730     qemu_register_machine(&isapc_machine);
731 #ifdef CONFIG_XEN
732     qemu_register_machine(&xenfv_machine);
733 #endif
734 }
735 
736 machine_init(pc_machine_init);
737