]>
Commit | Line | Data |
---|---|---|
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" | |
83c9f4ca PB |
31 | #include "hw/pci/pci.h" |
32 | #include "hw/pci/pci_ids.h" | |
33 | #include "hw/usb.h" | |
1422e32d | 34 | #include "net/net.h" |
83c9f4ca PB |
35 | #include "hw/boards.h" |
36 | #include "hw/ide.h" | |
9c17d615 | 37 | #include "sysemu/kvm.h" |
83c9f4ca | 38 | #include "hw/kvm/clock.h" |
9c17d615 | 39 | #include "sysemu/sysemu.h" |
83c9f4ca | 40 | #include "hw/sysbus.h" |
f0513d2c | 41 | #include "hw/cpu/icc_bus.h" |
9c17d615 PB |
42 | #include "sysemu/arch_init.h" |
43 | #include "sysemu/blockdev.h" | |
0d09e41a PB |
44 | #include "hw/i2c/smbus.h" |
45 | #include "hw/xen/xen.h" | |
022c62cb PB |
46 | #include "exec/memory.h" |
47 | #include "exec/address-spaces.h" | |
0445259b | 48 | #include "hw/acpi/acpi.h" |
dc59944b | 49 | #include "cpu.h" |
29d3ccde AP |
50 | #ifdef CONFIG_XEN |
51 | # include <xen/hvm/hvm_info_table.h> | |
52 | #endif | |
845773ab IY |
53 | |
54 | #define MAX_IDE_BUS 2 | |
55 | ||
56 | static const int ide_iobase[MAX_IDE_BUS] = { 0x1f0, 0x170 }; | |
57 | static const int ide_iobase2[MAX_IDE_BUS] = { 0x3f6, 0x376 }; | |
58 | static const int ide_irq[MAX_IDE_BUS] = { 14, 15 }; | |
59 | ||
7f1bb742 | 60 | static bool has_pci_info; |
72c194f7 | 61 | static bool has_acpi_build = true; |
3ab135f3 | 62 | |
845773ab | 63 | /* PC hardware initialisation */ |
5650f5f4 | 64 | static void pc_init1(QEMUMachineInitArgs *args, |
0ec329da JK |
65 | int pci_enabled, |
66 | int kvmclock_enabled) | |
845773ab | 67 | { |
1e099556 EH |
68 | MemoryRegion *system_memory = get_system_memory(); |
69 | MemoryRegion *system_io = get_system_io(); | |
845773ab IY |
70 | int i; |
71 | ram_addr_t below_4g_mem_size, above_4g_mem_size; | |
72 | PCIBus *pci_bus; | |
48a18b3c | 73 | ISABus *isa_bus; |
845773ab IY |
74 | PCII440FXState *i440fx_state; |
75 | int piix3_devfn = -1; | |
76 | qemu_irq *cpu_irq; | |
b881fbe9 | 77 | qemu_irq *gsi; |
845773ab | 78 | qemu_irq *i8259; |
845773ab | 79 | qemu_irq *smi_irq; |
b881fbe9 | 80 | GSIState *gsi_state; |
845773ab | 81 | DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS]; |
c0897e0c | 82 | BusState *idebus[MAX_IDE_BUS]; |
1d914fa0 | 83 | ISADevice *rtc_state; |
34d4260e | 84 | ISADevice *floppy; |
ae0a5466 AK |
85 | MemoryRegion *ram_memory; |
86 | MemoryRegion *pci_memory; | |
4463aee6 | 87 | MemoryRegion *rom_memory; |
f0513d2c | 88 | DeviceState *icc_bridge; |
a88b362c | 89 | FWCfgState *fw_cfg = NULL; |
3459a625 | 90 | PcGuestInfo *guest_info; |
845773ab | 91 | |
04d7bad8 | 92 | if (xen_enabled() && xen_hvm_init(&ram_memory) != 0) { |
a97d6fe6 PD |
93 | fprintf(stderr, "xen hardware virtual machine initialisation failed\n"); |
94 | exit(1); | |
95 | } | |
96 | ||
f0513d2c IM |
97 | icc_bridge = qdev_create(NULL, TYPE_ICC_BRIDGE); |
98 | object_property_add_child(qdev_get_machine(), "icc-bridge", | |
99 | OBJECT(icc_bridge), NULL); | |
100 | ||
5650f5f4 | 101 | pc_cpus_init(args->cpu_model, icc_bridge); |
845773ab | 102 | |
9cdf79d0 | 103 | if (kvm_enabled() && kvmclock_enabled) { |
0ec329da JK |
104 | kvmclock_create(); |
105 | } | |
106 | ||
5650f5f4 MA |
107 | if (args->ram_size >= 0xe0000000) { |
108 | above_4g_mem_size = args->ram_size - 0xe0000000; | |
fc744bb1 | 109 | below_4g_mem_size = 0xe0000000; |
e0e7e67b AP |
110 | } else { |
111 | above_4g_mem_size = 0; | |
5650f5f4 | 112 | below_4g_mem_size = args->ram_size; |
e0e7e67b AP |
113 | } |
114 | ||
4463aee6 JK |
115 | if (pci_enabled) { |
116 | pci_memory = g_new(MemoryRegion, 1); | |
2c9b15ca | 117 | memory_region_init(pci_memory, NULL, "pci", INT64_MAX); |
4463aee6 JK |
118 | rom_memory = pci_memory; |
119 | } else { | |
120 | pci_memory = NULL; | |
121 | rom_memory = system_memory; | |
122 | } | |
ae0a5466 | 123 | |
3459a625 | 124 | guest_info = pc_guest_info_init(below_4g_mem_size, above_4g_mem_size); |
72c194f7 MT |
125 | |
126 | guest_info->has_acpi_build = has_acpi_build; | |
127 | ||
f8c457b8 | 128 | guest_info->has_pci_info = has_pci_info; |
6dd2a5c9 | 129 | guest_info->isapc_ram_fw = !pci_enabled; |
3459a625 | 130 | |
845773ab | 131 | /* allocate ram and load rom/bios */ |
29d3ccde | 132 | if (!xen_enabled()) { |
459ae5ea | 133 | fw_cfg = pc_memory_init(system_memory, |
5650f5f4 MA |
134 | args->kernel_filename, args->kernel_cmdline, |
135 | args->initrd_filename, | |
ae0a5466 | 136 | below_4g_mem_size, above_4g_mem_size, |
3459a625 | 137 | rom_memory, &ram_memory, guest_info); |
29d3ccde | 138 | } |
845773ab | 139 | |
b881fbe9 | 140 | gsi_state = g_malloc0(sizeof(*gsi_state)); |
3d4b2649 | 141 | if (kvm_irqchip_in_kernel()) { |
d8ee0384 JB |
142 | kvm_pc_setup_irq_routing(pci_enabled); |
143 | gsi = qemu_allocate_irqs(kvm_pc_gsi_handler, gsi_state, | |
10b61882 JK |
144 | GSI_NUM_PINS); |
145 | } else { | |
146 | gsi = qemu_allocate_irqs(gsi_handler, gsi_state, GSI_NUM_PINS); | |
147 | } | |
845773ab IY |
148 | |
149 | if (pci_enabled) { | |
60573079 | 150 | pci_bus = i440fx_init(&i440fx_state, &piix3_devfn, &isa_bus, gsi, |
5650f5f4 | 151 | system_memory, system_io, args->ram_size, |
ae0a5466 AK |
152 | below_4g_mem_size, |
153 | 0x100000000ULL - below_4g_mem_size, | |
39848901 | 154 | above_4g_mem_size, |
ae0a5466 | 155 | pci_memory, ram_memory); |
845773ab IY |
156 | } else { |
157 | pci_bus = NULL; | |
02a89b21 | 158 | i440fx_state = NULL; |
48a18b3c | 159 | isa_bus = isa_bus_new(NULL, system_io); |
57285cc3 | 160 | no_hpet = 1; |
845773ab | 161 | } |
48a18b3c | 162 | isa_bus_irqs(isa_bus, gsi); |
845773ab | 163 | |
3d4b2649 | 164 | if (kvm_irqchip_in_kernel()) { |
10b61882 JK |
165 | i8259 = kvm_i8259_init(isa_bus); |
166 | } else if (xen_enabled()) { | |
167 | i8259 = xen_interrupt_controller_init(); | |
168 | } else { | |
4bae1efe | 169 | cpu_irq = pc_allocate_cpu_irq(); |
48a18b3c | 170 | i8259 = i8259_init(isa_bus, cpu_irq[0]); |
4bae1efe RH |
171 | } |
172 | ||
43a0db35 JK |
173 | for (i = 0; i < ISA_NUM_IRQS; i++) { |
174 | gsi_state->i8259_irq[i] = i8259[i]; | |
175 | } | |
4bae1efe | 176 | if (pci_enabled) { |
a39e3564 | 177 | ioapic_init_gsi(gsi_state, "i440fx"); |
4bae1efe | 178 | } |
f0513d2c | 179 | qdev_init_nofail(icc_bridge); |
4bae1efe | 180 | |
b881fbe9 | 181 | pc_register_ferr_irq(gsi[13]); |
845773ab | 182 | |
f424d5c4 | 183 | pc_vga_init(isa_bus, pci_enabled ? pci_bus : NULL); |
01195b73 | 184 | |
845773ab | 185 | /* init basic PC hardware */ |
48a18b3c | 186 | pc_basic_device_init(isa_bus, gsi, &rtc_state, &floppy, xen_enabled()); |
845773ab | 187 | |
9011a1a7 | 188 | pc_nic_init(isa_bus, pci_bus); |
845773ab | 189 | |
75717903 | 190 | ide_drive_get(hd, MAX_IDE_BUS); |
845773ab | 191 | if (pci_enabled) { |
c0897e0c | 192 | PCIDevice *dev; |
679f4f8b SS |
193 | if (xen_enabled()) { |
194 | dev = pci_piix3_xen_ide_init(pci_bus, hd, piix3_devfn + 1); | |
195 | } else { | |
196 | dev = pci_piix3_ide_init(pci_bus, hd, piix3_devfn + 1); | |
197 | } | |
c0897e0c MA |
198 | idebus[0] = qdev_get_child_bus(&dev->qdev, "ide.0"); |
199 | idebus[1] = qdev_get_child_bus(&dev->qdev, "ide.1"); | |
845773ab IY |
200 | } else { |
201 | for(i = 0; i < MAX_IDE_BUS; i++) { | |
c0897e0c | 202 | ISADevice *dev; |
48a18b3c HP |
203 | dev = isa_ide_init(isa_bus, ide_iobase[i], ide_iobase2[i], |
204 | ide_irq[i], | |
c0897e0c | 205 | hd[MAX_IDE_DEVS * i], hd[MAX_IDE_DEVS * i + 1]); |
4a17cc4f | 206 | idebus[i] = qdev_get_child_bus(DEVICE(dev), "ide.0"); |
845773ab IY |
207 | } |
208 | } | |
209 | ||
c1654732 | 210 | pc_cmos_init(below_4g_mem_size, above_4g_mem_size, args->boot_order, |
34d4260e | 211 | floppy, idebus[0], idebus[1], rtc_state); |
845773ab | 212 | |
094b287f | 213 | if (pci_enabled && usb_enabled(false)) { |
afb9a60e | 214 | pci_create_simple(pci_bus, piix3_devfn + 2, "piix3-usb-uhci"); |
845773ab IY |
215 | } |
216 | ||
217 | if (pci_enabled && acpi_enabled) { | |
845773ab IY |
218 | i2c_bus *smbus; |
219 | ||
182735ef | 220 | smi_irq = qemu_allocate_irqs(pc_acpi_smi_interrupt, first_cpu, 1); |
845773ab IY |
221 | /* TODO: Populate SPD eeprom data. */ |
222 | smbus = piix4_pm_init(pci_bus, piix3_devfn + 3, 0xb100, | |
da98c8eb | 223 | gsi[9], *smi_irq, |
459ae5ea | 224 | kvm_enabled(), fw_cfg); |
a88df0b9 | 225 | smbus_eeprom_init(smbus, 8, NULL, 0); |
845773ab IY |
226 | } |
227 | ||
845773ab IY |
228 | if (pci_enabled) { |
229 | pc_pci_device_init(pci_bus); | |
230 | } | |
231 | } | |
232 | ||
5f072e1f | 233 | static void pc_init_pci(QEMUMachineInitArgs *args) |
845773ab | 234 | { |
1e099556 | 235 | pc_init1(args, 1, 1); |
0ec329da JK |
236 | } |
237 | ||
89b439f3 | 238 | static void pc_compat_1_6(QEMUMachineInitArgs *args) |
f8c457b8 MT |
239 | { |
240 | has_pci_info = false; | |
04920fc0 | 241 | rom_file_in_ram = false; |
72c194f7 | 242 | has_acpi_build = false; |
f8c457b8 MT |
243 | } |
244 | ||
89b439f3 | 245 | static void pc_compat_1_5(QEMUMachineInitArgs *args) |
9604f70f | 246 | { |
89b439f3 | 247 | pc_compat_1_6(args); |
9604f70f MT |
248 | } |
249 | ||
89b439f3 | 250 | static void pc_compat_1_4(QEMUMachineInitArgs *args) |
9953f882 | 251 | { |
396f79f4 | 252 | pc_compat_1_5(args); |
4458c236 | 253 | x86_cpu_compat_set_features("n270", FEAT_1_ECX, 0, CPUID_EXT_MOVBE); |
56383703 | 254 | x86_cpu_compat_set_features("Westmere", FEAT_1_ECX, 0, CPUID_EXT_PCLMULQDQ); |
9953f882 MA |
255 | } |
256 | ||
89b439f3 | 257 | static void pc_compat_1_3(QEMUMachineInitArgs *args) |
8932cfdf | 258 | { |
89b439f3 | 259 | pc_compat_1_4(args); |
8932cfdf | 260 | enable_compat_apic_id_mode(); |
89b439f3 EH |
261 | } |
262 | ||
263 | /* PC compat function for pc-0.14 to pc-1.2 */ | |
264 | static void pc_compat_1_2(QEMUMachineInitArgs *args) | |
265 | { | |
266 | pc_compat_1_3(args); | |
267 | disable_kvm_pv_eoi(); | |
268 | } | |
269 | ||
270 | static void pc_init_pci_1_6(QEMUMachineInitArgs *args) | |
271 | { | |
272 | pc_compat_1_6(args); | |
273 | pc_init_pci(args); | |
274 | } | |
275 | ||
276 | static void pc_init_pci_1_5(QEMUMachineInitArgs *args) | |
277 | { | |
278 | pc_compat_1_5(args); | |
279 | pc_init_pci(args); | |
280 | } | |
281 | ||
282 | static void pc_init_pci_1_4(QEMUMachineInitArgs *args) | |
283 | { | |
284 | pc_compat_1_4(args); | |
285 | pc_init_pci(args); | |
286 | } | |
287 | ||
288 | static void pc_init_pci_1_3(QEMUMachineInitArgs *args) | |
289 | { | |
290 | pc_compat_1_3(args); | |
291 | pc_init_pci(args); | |
8932cfdf EH |
292 | } |
293 | ||
43a52ce6 | 294 | /* PC machine init function for pc-0.14 to pc-1.2 */ |
29694758 | 295 | static void pc_init_pci_1_2(QEMUMachineInitArgs *args) |
dc59944b | 296 | { |
89b439f3 EH |
297 | pc_compat_1_2(args); |
298 | pc_init_pci(args); | |
dc59944b MT |
299 | } |
300 | ||
29694758 | 301 | /* PC init function for pc-0.10 to pc-0.13, and reused by xenfv */ |
5f072e1f | 302 | static void pc_init_pci_no_kvmclock(QEMUMachineInitArgs *args) |
0ec329da | 303 | { |
f8c457b8 | 304 | has_pci_info = false; |
98af2ac9 | 305 | has_acpi_build = false; |
29694758 | 306 | disable_kvm_pv_eoi(); |
8932cfdf | 307 | enable_compat_apic_id_mode(); |
1e099556 | 308 | pc_init1(args, 1, 0); |
845773ab IY |
309 | } |
310 | ||
5f072e1f | 311 | static void pc_init_isa(QEMUMachineInitArgs *args) |
845773ab | 312 | { |
f8c457b8 | 313 | has_pci_info = false; |
98af2ac9 | 314 | has_acpi_build = false; |
5650f5f4 MA |
315 | if (!args->cpu_model) { |
316 | args->cpu_model = "486"; | |
317 | } | |
29694758 | 318 | disable_kvm_pv_eoi(); |
8932cfdf | 319 | enable_compat_apic_id_mode(); |
1e099556 | 320 | pc_init1(args, 0, 1); |
845773ab IY |
321 | } |
322 | ||
29d3ccde | 323 | #ifdef CONFIG_XEN |
5f072e1f | 324 | static void pc_xen_hvm_init(QEMUMachineInitArgs *args) |
29d3ccde | 325 | { |
39ae4972 PD |
326 | PCIBus *bus; |
327 | ||
9cdf79d0 | 328 | pc_init_pci(args); |
39ae4972 | 329 | |
1ef7a2a2 | 330 | bus = pci_find_primary_bus(); |
39ae4972 PD |
331 | if (bus != NULL) { |
332 | pci_create_simple(bus, -1, "xen-platform"); | |
333 | } | |
29d3ccde AP |
334 | } |
335 | #endif | |
336 | ||
a0dba644 MT |
337 | #define PC_I440FX_MACHINE_OPTIONS \ |
338 | PC_DEFAULT_MACHINE_OPTIONS, \ | |
339 | .desc = "Standard PC (i440FX + PIIX, 1996)", \ | |
340 | .hot_add_cpu = pc_hot_add_cpu | |
341 | ||
aeca6e8d GH |
342 | #define PC_I440FX_2_0_MACHINE_OPTIONS PC_I440FX_MACHINE_OPTIONS |
343 | ||
344 | static QEMUMachine pc_i440fx_machine_v2_0 = { | |
345 | PC_I440FX_2_0_MACHINE_OPTIONS, | |
346 | .name = "pc-i440fx-2.0", | |
347 | .alias = "pc", | |
348 | .init = pc_init_pci, | |
349 | .is_default = 1, | |
350 | }; | |
351 | ||
e9845f09 | 352 | #define PC_I440FX_1_7_MACHINE_OPTIONS PC_I440FX_MACHINE_OPTIONS |
aeca6e8d | 353 | |
e9845f09 VM |
354 | static QEMUMachine pc_i440fx_machine_v1_7 = { |
355 | PC_I440FX_1_7_MACHINE_OPTIONS, | |
356 | .name = "pc-i440fx-1.7", | |
e9845f09 | 357 | .init = pc_init_pci, |
e9845f09 VM |
358 | }; |
359 | ||
a0dba644 MT |
360 | #define PC_I440FX_1_6_MACHINE_OPTIONS PC_I440FX_MACHINE_OPTIONS |
361 | ||
45053fde | 362 | static QEMUMachine pc_i440fx_machine_v1_6 = { |
a0dba644 | 363 | PC_I440FX_1_6_MACHINE_OPTIONS, |
45053fde | 364 | .name = "pc-i440fx-1.6", |
9604f70f | 365 | .init = pc_init_pci_1_6, |
e9845f09 VM |
366 | .compat_props = (GlobalProperty[]) { |
367 | PC_COMPAT_1_6, | |
368 | { /* end of list */ } | |
369 | }, | |
845773ab IY |
370 | }; |
371 | ||
45053fde | 372 | static QEMUMachine pc_i440fx_machine_v1_5 = { |
a0dba644 | 373 | PC_I440FX_1_6_MACHINE_OPTIONS, |
45053fde | 374 | .name = "pc-i440fx-1.5", |
f8c457b8 | 375 | .init = pc_init_pci_1_5, |
ffce9ebb EH |
376 | .compat_props = (GlobalProperty[]) { |
377 | PC_COMPAT_1_5, | |
378 | { /* end of list */ } | |
379 | }, | |
45053fde EH |
380 | }; |
381 | ||
a0dba644 MT |
382 | #define PC_I440FX_1_4_MACHINE_OPTIONS \ |
383 | PC_I440FX_1_6_MACHINE_OPTIONS, \ | |
384 | .hot_add_cpu = NULL | |
385 | ||
bf3caa3d | 386 | static QEMUMachine pc_i440fx_machine_v1_4 = { |
a0dba644 | 387 | PC_I440FX_1_4_MACHINE_OPTIONS, |
bf3caa3d | 388 | .name = "pc-i440fx-1.4", |
9953f882 | 389 | .init = pc_init_pci_1_4, |
bf3caa3d PB |
390 | .compat_props = (GlobalProperty[]) { |
391 | PC_COMPAT_1_4, | |
392 | { /* end of list */ } | |
393 | }, | |
bf3caa3d PB |
394 | }; |
395 | ||
427e3aa1 | 396 | #define PC_COMPAT_1_3 \ |
bf3caa3d | 397 | PC_COMPAT_1_4, \ |
427e3aa1 HG |
398 | {\ |
399 | .driver = "usb-tablet",\ | |
400 | .property = "usb_version",\ | |
401 | .value = stringify(1),\ | |
c1943a3f AK |
402 | },{\ |
403 | .driver = "virtio-net-pci",\ | |
404 | .property = "ctrl_mac_addr",\ | |
405 | .value = "off", \ | |
a9c87c58 JW |
406 | },{ \ |
407 | .driver = "virtio-net-pci", \ | |
408 | .property = "mq", \ | |
409 | .value = "off", \ | |
2af234e6 MT |
410 | }, {\ |
411 | .driver = "e1000",\ | |
412 | .property = "autonegotiation",\ | |
413 | .value = "off",\ | |
427e3aa1 HG |
414 | } |
415 | ||
f1ae2e38 | 416 | static QEMUMachine pc_machine_v1_3 = { |
a0dba644 | 417 | PC_I440FX_1_4_MACHINE_OPTIONS, |
f1ae2e38 | 418 | .name = "pc-1.3", |
8932cfdf | 419 | .init = pc_init_pci_1_3, |
f1ae2e38 | 420 | .compat_props = (GlobalProperty[]) { |
427e3aa1 | 421 | PC_COMPAT_1_3, |
f1ae2e38 GH |
422 | { /* end of list */ } |
423 | }, | |
424 | }; | |
425 | ||
183c5eaa | 426 | #define PC_COMPAT_1_2 \ |
427e3aa1 | 427 | PC_COMPAT_1_3,\ |
183c5eaa GH |
428 | {\ |
429 | .driver = "nec-usb-xhci",\ | |
430 | .property = "msi",\ | |
431 | .value = "off",\ | |
432 | },{\ | |
433 | .driver = "nec-usb-xhci",\ | |
434 | .property = "msix",\ | |
435 | .value = "off",\ | |
c08ba66f GH |
436 | },{\ |
437 | .driver = "ivshmem",\ | |
438 | .property = "use64",\ | |
439 | .value = "0",\ | |
591af143 GH |
440 | },{\ |
441 | .driver = "qxl",\ | |
442 | .property = "revision",\ | |
443 | .value = stringify(3),\ | |
444 | },{\ | |
445 | .driver = "qxl-vga",\ | |
446 | .property = "revision",\ | |
447 | .value = stringify(3),\ | |
803ff052 GH |
448 | },{\ |
449 | .driver = "VGA",\ | |
450 | .property = "mmio",\ | |
451 | .value = "off",\ | |
183c5eaa GH |
452 | } |
453 | ||
a0dba644 MT |
454 | #define PC_I440FX_1_2_MACHINE_OPTIONS \ |
455 | PC_I440FX_1_4_MACHINE_OPTIONS, \ | |
456 | .init = pc_init_pci_1_2 | |
457 | ||
f4306941 | 458 | static QEMUMachine pc_machine_v1_2 = { |
a0dba644 | 459 | PC_I440FX_1_2_MACHINE_OPTIONS, |
f4306941 | 460 | .name = "pc-1.2", |
183c5eaa GH |
461 | .compat_props = (GlobalProperty[]) { |
462 | PC_COMPAT_1_2, | |
463 | { /* end of list */ } | |
464 | }, | |
f4306941 GH |
465 | }; |
466 | ||
9e56edcf | 467 | #define PC_COMPAT_1_1 \ |
183c5eaa | 468 | PC_COMPAT_1_2,\ |
9e56edcf | 469 | {\ |
07a5298c PB |
470 | .driver = "virtio-scsi-pci",\ |
471 | .property = "hotplug",\ | |
472 | .value = "off",\ | |
473 | },{\ | |
474 | .driver = "virtio-scsi-pci",\ | |
475 | .property = "param_change",\ | |
476 | .value = "off",\ | |
477 | },{\ | |
9e56edcf GH |
478 | .driver = "VGA",\ |
479 | .property = "vgamem_mb",\ | |
480 | .value = stringify(8),\ | |
481 | },{\ | |
482 | .driver = "vmware-svga",\ | |
483 | .property = "vgamem_mb",\ | |
484 | .value = stringify(8),\ | |
485 | },{\ | |
486 | .driver = "qxl-vga",\ | |
487 | .property = "vgamem_mb",\ | |
488 | .value = stringify(8),\ | |
489 | },{\ | |
490 | .driver = "qxl",\ | |
491 | .property = "vgamem_mb",\ | |
492 | .value = stringify(8),\ | |
ea776abc SH |
493 | },{\ |
494 | .driver = "virtio-blk-pci",\ | |
495 | .property = "config-wce",\ | |
496 | .value = "off",\ | |
9e56edcf GH |
497 | } |
498 | ||
f1dacf1c | 499 | static QEMUMachine pc_machine_v1_1 = { |
a0dba644 | 500 | PC_I440FX_1_2_MACHINE_OPTIONS, |
f1dacf1c | 501 | .name = "pc-1.1", |
9e56edcf GH |
502 | .compat_props = (GlobalProperty[]) { |
503 | PC_COMPAT_1_1, | |
504 | { /* end of list */ } | |
505 | }, | |
f1dacf1c GH |
506 | }; |
507 | ||
d6c73008 | 508 | #define PC_COMPAT_1_0 \ |
9e56edcf | 509 | PC_COMPAT_1_1,\ |
d6c73008 | 510 | {\ |
020c8e76 | 511 | .driver = TYPE_ISA_FDC,\ |
d6c73008 MT |
512 | .property = "check_media_rate",\ |
513 | .value = "off",\ | |
2ba1d381 DG |
514 | }, {\ |
515 | .driver = "virtio-balloon-pci",\ | |
516 | .property = "class",\ | |
517 | .value = stringify(PCI_CLASS_MEMORY_RAM),\ | |
fc34e77b AL |
518 | },{\ |
519 | .driver = "apic",\ | |
520 | .property = "vapic",\ | |
521 | .value = "off",\ | |
eeb0cf9a | 522 | },{\ |
bce54474 | 523 | .driver = TYPE_USB_DEVICE,\ |
eeb0cf9a GH |
524 | .property = "full-path",\ |
525 | .value = "no",\ | |
d6c73008 MT |
526 | } |
527 | ||
382b3a68 | 528 | static QEMUMachine pc_machine_v1_0 = { |
a0dba644 | 529 | PC_I440FX_1_2_MACHINE_OPTIONS, |
382b3a68 | 530 | .name = "pc-1.0", |
1b89fafe | 531 | .compat_props = (GlobalProperty[]) { |
d6c73008 | 532 | PC_COMPAT_1_0, |
1b89fafe JJ |
533 | { /* end of list */ } |
534 | }, | |
93bfef4c | 535 | .hw_version = "1.0", |
382b3a68 JJ |
536 | }; |
537 | ||
d6c73008 MT |
538 | #define PC_COMPAT_0_15 \ |
539 | PC_COMPAT_1_0 | |
540 | ||
ce01a508 | 541 | static QEMUMachine pc_machine_v0_15 = { |
a0dba644 | 542 | PC_I440FX_1_2_MACHINE_OPTIONS, |
ce01a508 | 543 | .name = "pc-0.15", |
1b89fafe | 544 | .compat_props = (GlobalProperty[]) { |
d6c73008 | 545 | PC_COMPAT_0_15, |
1b89fafe JJ |
546 | { /* end of list */ } |
547 | }, | |
93bfef4c | 548 | .hw_version = "0.15", |
ce01a508 AL |
549 | }; |
550 | ||
d6c73008 MT |
551 | #define PC_COMPAT_0_14 \ |
552 | PC_COMPAT_0_15,\ | |
553 | {\ | |
554 | .driver = "virtio-blk-pci",\ | |
555 | .property = "event_idx",\ | |
556 | .value = "off",\ | |
557 | },{\ | |
558 | .driver = "virtio-serial-pci",\ | |
559 | .property = "event_idx",\ | |
560 | .value = "off",\ | |
561 | },{\ | |
562 | .driver = "virtio-net-pci",\ | |
563 | .property = "event_idx",\ | |
564 | .value = "off",\ | |
565 | },{\ | |
566 | .driver = "virtio-balloon-pci",\ | |
567 | .property = "event_idx",\ | |
568 | .value = "off",\ | |
569 | } | |
570 | ||
19857e62 | 571 | static QEMUMachine pc_machine_v0_14 = { |
a0dba644 | 572 | PC_I440FX_1_2_MACHINE_OPTIONS, |
19857e62 | 573 | .name = "pc-0.14", |
3827cdb1 | 574 | .compat_props = (GlobalProperty[]) { |
d6c73008 | 575 | PC_COMPAT_0_14, |
3827cdb1 AL |
576 | { |
577 | .driver = "qxl", | |
578 | .property = "revision", | |
579 | .value = stringify(2), | |
580 | },{ | |
581 | .driver = "qxl-vga", | |
582 | .property = "revision", | |
583 | .value = stringify(2), | |
1b89fafe | 584 | }, |
3827cdb1 AL |
585 | { /* end of list */ } |
586 | }, | |
93bfef4c | 587 | .hw_version = "0.14", |
19857e62 GH |
588 | }; |
589 | ||
d6c73008 MT |
590 | #define PC_COMPAT_0_13 \ |
591 | PC_COMPAT_0_14,\ | |
592 | {\ | |
bce54474 | 593 | .driver = TYPE_PCI_DEVICE,\ |
d6c73008 MT |
594 | .property = "command_serr_enable",\ |
595 | .value = "off",\ | |
596 | },{\ | |
597 | .driver = "AC97",\ | |
598 | .property = "use_broken_id",\ | |
599 | .value = stringify(1),\ | |
600 | } | |
601 | ||
a0dba644 MT |
602 | #define PC_I440FX_0_13_MACHINE_OPTIONS \ |
603 | PC_I440FX_1_2_MACHINE_OPTIONS, \ | |
604 | .init = pc_init_pci_no_kvmclock | |
605 | ||
b903a0f7 | 606 | static QEMUMachine pc_machine_v0_13 = { |
a0dba644 | 607 | PC_I440FX_0_13_MACHINE_OPTIONS, |
b903a0f7 | 608 | .name = "pc-0.13", |
9dbcca5a | 609 | .compat_props = (GlobalProperty[]) { |
d6c73008 | 610 | PC_COMPAT_0_13, |
9dbcca5a GH |
611 | { |
612 | .driver = "virtio-9p-pci", | |
613 | .property = "vectors", | |
614 | .value = stringify(0), | |
281a26b1 GH |
615 | },{ |
616 | .driver = "VGA", | |
617 | .property = "rombar", | |
618 | .value = stringify(0), | |
619 | },{ | |
620 | .driver = "vmware-svga", | |
621 | .property = "rombar", | |
622 | .value = stringify(0), | |
1b89fafe | 623 | }, |
9dbcca5a GH |
624 | { /* end of list */ } |
625 | }, | |
93bfef4c | 626 | .hw_version = "0.13", |
b903a0f7 GH |
627 | }; |
628 | ||
d6c73008 MT |
629 | #define PC_COMPAT_0_12 \ |
630 | PC_COMPAT_0_13,\ | |
631 | {\ | |
632 | .driver = "virtio-serial-pci",\ | |
633 | .property = "max_ports",\ | |
634 | .value = stringify(1),\ | |
635 | },{\ | |
636 | .driver = "virtio-serial-pci",\ | |
637 | .property = "vectors",\ | |
638 | .value = stringify(0),\ | |
93c8e4dc GH |
639 | },{\ |
640 | .driver = "usb-mouse",\ | |
641 | .property = "serial",\ | |
642 | .value = "1",\ | |
643 | },{\ | |
644 | .driver = "usb-tablet",\ | |
645 | .property = "serial",\ | |
646 | .value = "1",\ | |
647 | },{\ | |
648 | .driver = "usb-kbd",\ | |
649 | .property = "serial",\ | |
650 | .value = "1",\ | |
d6c73008 MT |
651 | } |
652 | ||
845773ab | 653 | static QEMUMachine pc_machine_v0_12 = { |
a0dba644 | 654 | PC_I440FX_0_13_MACHINE_OPTIONS, |
845773ab | 655 | .name = "pc-0.12", |
845773ab | 656 | .compat_props = (GlobalProperty[]) { |
d6c73008 | 657 | PC_COMPAT_0_12, |
845773ab | 658 | { |
281a26b1 GH |
659 | .driver = "VGA", |
660 | .property = "rombar", | |
661 | .value = stringify(0), | |
662 | },{ | |
663 | .driver = "vmware-svga", | |
664 | .property = "rombar", | |
665 | .value = stringify(0), | |
1b89fafe | 666 | }, |
845773ab | 667 | { /* end of list */ } |
93bfef4c CV |
668 | }, |
669 | .hw_version = "0.12", | |
845773ab IY |
670 | }; |
671 | ||
d6c73008 MT |
672 | #define PC_COMPAT_0_11 \ |
673 | PC_COMPAT_0_12,\ | |
674 | {\ | |
675 | .driver = "virtio-blk-pci",\ | |
676 | .property = "vectors",\ | |
677 | .value = stringify(0),\ | |
c115cd65 | 678 | },{\ |
bce54474 | 679 | .driver = TYPE_PCI_DEVICE,\ |
c115cd65 PB |
680 | .property = "rombar",\ |
681 | .value = stringify(0),\ | |
d6c73008 MT |
682 | } |
683 | ||
845773ab | 684 | static QEMUMachine pc_machine_v0_11 = { |
a0dba644 | 685 | PC_I440FX_0_13_MACHINE_OPTIONS, |
845773ab | 686 | .name = "pc-0.11", |
845773ab | 687 | .compat_props = (GlobalProperty[]) { |
d6c73008 | 688 | PC_COMPAT_0_11, |
845773ab | 689 | { |
845773ab IY |
690 | .driver = "ide-drive", |
691 | .property = "ver", | |
692 | .value = "0.11", | |
693 | },{ | |
694 | .driver = "scsi-disk", | |
695 | .property = "ver", | |
696 | .value = "0.11", | |
1b89fafe | 697 | }, |
845773ab | 698 | { /* end of list */ } |
93bfef4c CV |
699 | }, |
700 | .hw_version = "0.11", | |
845773ab IY |
701 | }; |
702 | ||
703 | static QEMUMachine pc_machine_v0_10 = { | |
a0dba644 | 704 | PC_I440FX_0_13_MACHINE_OPTIONS, |
845773ab | 705 | .name = "pc-0.10", |
845773ab | 706 | .compat_props = (GlobalProperty[]) { |
d6c73008 | 707 | PC_COMPAT_0_11, |
845773ab IY |
708 | { |
709 | .driver = "virtio-blk-pci", | |
710 | .property = "class", | |
711 | .value = stringify(PCI_CLASS_STORAGE_OTHER), | |
712 | },{ | |
713 | .driver = "virtio-serial-pci", | |
714 | .property = "class", | |
715 | .value = stringify(PCI_CLASS_DISPLAY_OTHER), | |
845773ab IY |
716 | },{ |
717 | .driver = "virtio-net-pci", | |
718 | .property = "vectors", | |
719 | .value = stringify(0), | |
845773ab IY |
720 | },{ |
721 | .driver = "ide-drive", | |
722 | .property = "ver", | |
723 | .value = "0.10", | |
724 | },{ | |
725 | .driver = "scsi-disk", | |
726 | .property = "ver", | |
727 | .value = "0.10", | |
1b89fafe | 728 | }, |
845773ab IY |
729 | { /* end of list */ } |
730 | }, | |
93bfef4c | 731 | .hw_version = "0.10", |
845773ab IY |
732 | }; |
733 | ||
734 | static QEMUMachine isapc_machine = { | |
a0dba644 | 735 | PC_COMMON_MACHINE_OPTIONS, |
845773ab IY |
736 | .name = "isapc", |
737 | .desc = "ISA-only PC", | |
738 | .init = pc_init_isa, | |
739 | .max_cpus = 1, | |
1b89fafe | 740 | .compat_props = (GlobalProperty[]) { |
1b89fafe JJ |
741 | { /* end of list */ } |
742 | }, | |
845773ab IY |
743 | }; |
744 | ||
29d3ccde AP |
745 | #ifdef CONFIG_XEN |
746 | static QEMUMachine xenfv_machine = { | |
a0dba644 | 747 | PC_COMMON_MACHINE_OPTIONS, |
29d3ccde AP |
748 | .name = "xenfv", |
749 | .desc = "Xen Fully-virtualized PC", | |
750 | .init = pc_xen_hvm_init, | |
751 | .max_cpus = HVM_MAX_VCPUS, | |
752 | .default_machine_opts = "accel=xen", | |
594278d9 | 753 | .hot_add_cpu = pc_hot_add_cpu, |
29d3ccde AP |
754 | }; |
755 | #endif | |
756 | ||
845773ab IY |
757 | static void pc_machine_init(void) |
758 | { | |
aeca6e8d | 759 | qemu_register_machine(&pc_i440fx_machine_v2_0); |
e9845f09 | 760 | qemu_register_machine(&pc_i440fx_machine_v1_7); |
45053fde | 761 | qemu_register_machine(&pc_i440fx_machine_v1_6); |
bf3caa3d | 762 | qemu_register_machine(&pc_i440fx_machine_v1_5); |
94dec594 | 763 | qemu_register_machine(&pc_i440fx_machine_v1_4); |
f4306941 | 764 | qemu_register_machine(&pc_machine_v1_3); |
f1dacf1c | 765 | qemu_register_machine(&pc_machine_v1_2); |
382b3a68 | 766 | qemu_register_machine(&pc_machine_v1_1); |
19857e62 | 767 | qemu_register_machine(&pc_machine_v1_0); |
ce01a508 | 768 | qemu_register_machine(&pc_machine_v0_15); |
19857e62 | 769 | qemu_register_machine(&pc_machine_v0_14); |
b903a0f7 | 770 | qemu_register_machine(&pc_machine_v0_13); |
845773ab IY |
771 | qemu_register_machine(&pc_machine_v0_12); |
772 | qemu_register_machine(&pc_machine_v0_11); | |
773 | qemu_register_machine(&pc_machine_v0_10); | |
774 | qemu_register_machine(&isapc_machine); | |
29d3ccde AP |
775 | #ifdef CONFIG_XEN |
776 | qemu_register_machine(&xenfv_machine); | |
777 | #endif | |
845773ab IY |
778 | } |
779 | ||
780 | machine_init(pc_machine_init); |