]>
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 | ||
b6a0aa05 | 25 | #include "qemu/osdep.h" |
60386ea2 | 26 | #include "config-devices.h" |
ae0a5466 | 27 | |
d471bf3e | 28 | #include "qemu/units.h" |
83c9f4ca | 29 | #include "hw/hw.h" |
04920fc0 | 30 | #include "hw/loader.h" |
0d09e41a PB |
31 | #include "hw/i386/pc.h" |
32 | #include "hw/i386/apic.h" | |
94692dcd | 33 | #include "hw/display/ramfb.h" |
a2eb5c0c | 34 | #include "hw/firmware/smbios.h" |
83c9f4ca PB |
35 | #include "hw/pci/pci.h" |
36 | #include "hw/pci/pci_ids.h" | |
37 | #include "hw/usb.h" | |
1422e32d | 38 | #include "net/net.h" |
83c9f4ca PB |
39 | #include "hw/boards.h" |
40 | #include "hw/ide.h" | |
9c17d615 | 41 | #include "sysemu/kvm.h" |
83c9f4ca | 42 | #include "hw/kvm/clock.h" |
9c17d615 | 43 | #include "sysemu/sysemu.h" |
83c9f4ca | 44 | #include "hw/sysbus.h" |
9c17d615 | 45 | #include "sysemu/arch_init.h" |
93198b6c | 46 | #include "hw/i2c/smbus_eeprom.h" |
0d09e41a | 47 | #include "hw/xen/xen.h" |
022c62cb PB |
48 | #include "exec/memory.h" |
49 | #include "exec/address-spaces.h" | |
0445259b | 50 | #include "hw/acpi/acpi.h" |
dc59944b | 51 | #include "cpu.h" |
e688df6b | 52 | #include "qapi/error.h" |
c87b1520 | 53 | #include "qemu/error-report.h" |
29d3ccde | 54 | #ifdef CONFIG_XEN |
998250e9 TC |
55 | #include <xen/hvm/hvm_info_table.h> |
56 | #include "hw/xen/xen_pt.h" | |
29d3ccde | 57 | #endif |
84a899de | 58 | #include "migration/global_state.h" |
c4b63b7c | 59 | #include "migration/misc.h" |
32c18a2d | 60 | #include "kvm_i386.h" |
3bfe5716 | 61 | #include "sysemu/numa.h" |
845773ab IY |
62 | |
63 | #define MAX_IDE_BUS 2 | |
64 | ||
60386ea2 | 65 | #ifdef CONFIG_IDE_ISA |
845773ab IY |
66 | static const int ide_iobase[MAX_IDE_BUS] = { 0x1f0, 0x170 }; |
67 | static const int ide_iobase2[MAX_IDE_BUS] = { 0x3f6, 0x376 }; | |
68 | static const int ide_irq[MAX_IDE_BUS] = { 14, 15 }; | |
60386ea2 | 69 | #endif |
845773ab IY |
70 | |
71 | /* PC hardware initialisation */ | |
76d39ab4 TC |
72 | static void pc_init1(MachineState *machine, |
73 | const char *host_type, const char *pci_type) | |
845773ab | 74 | { |
ec68007a | 75 | PCMachineState *pcms = PC_MACHINE(machine); |
7102fa70 | 76 | PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms); |
1e099556 EH |
77 | MemoryRegion *system_memory = get_system_memory(); |
78 | MemoryRegion *system_io = get_system_io(); | |
845773ab | 79 | int i; |
845773ab | 80 | PCIBus *pci_bus; |
48a18b3c | 81 | ISABus *isa_bus; |
845773ab IY |
82 | PCII440FXState *i440fx_state; |
83 | int piix3_devfn = -1; | |
845773ab | 84 | qemu_irq *i8259; |
2ba154cf | 85 | qemu_irq smi_irq; |
b881fbe9 | 86 | GSIState *gsi_state; |
845773ab | 87 | DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS]; |
c0897e0c | 88 | BusState *idebus[MAX_IDE_BUS]; |
1d914fa0 | 89 | ISADevice *rtc_state; |
ae0a5466 AK |
90 | MemoryRegion *ram_memory; |
91 | MemoryRegion *pci_memory; | |
4463aee6 | 92 | MemoryRegion *rom_memory; |
c87b1520 | 93 | ram_addr_t lowmem; |
845773ab | 94 | |
8156d480 GH |
95 | /* |
96 | * Calculate ram split, for memory below and above 4G. It's a bit | |
97 | * complicated for backward compatibility reasons ... | |
98 | * | |
99 | * - Traditional split is 3.5G (lowmem = 0xe0000000). This is the | |
100 | * default value for max_ram_below_4g now. | |
101 | * | |
102 | * - Then, to gigabyte align the memory, we move the split to 3G | |
103 | * (lowmem = 0xc0000000). But only in case we have to split in | |
104 | * the first place, i.e. ram_size is larger than (traditional) | |
105 | * lowmem. And for new machine types (gigabyte_align = true) | |
106 | * only, for live migration compatibility reasons. | |
107 | * | |
108 | * - Next the max-ram-below-4g option was added, which allowed to | |
109 | * reduce lowmem to a smaller value, to allow a larger PCI I/O | |
110 | * window below 4G. qemu doesn't enforce gigabyte alignment here, | |
111 | * but prints a warning. | |
112 | * | |
113 | * - Finally max-ram-below-4g got updated to also allow raising lowmem, | |
114 | * so legacy non-PAE guests can get as much memory as possible in | |
115 | * the 32bit address space below 4G. | |
116 | * | |
5ec7d098 GH |
117 | * - Note that Xen has its own ram setp code in xen_ram_init(), |
118 | * called via xen_hvm_init(). | |
119 | * | |
8156d480 GH |
120 | * Examples: |
121 | * qemu -M pc-1.7 -m 4G (old default) -> 3584M low, 512M high | |
122 | * qemu -M pc -m 4G (new default) -> 3072M low, 1024M high | |
123 | * qemu -M pc,max-ram-below-4g=2G -m 4G -> 2048M low, 2048M high | |
124 | * qemu -M pc,max-ram-below-4g=4G -m 3968M -> 3968M low (=4G-128M) | |
ecdbfceb | 125 | */ |
5ec7d098 GH |
126 | if (xen_enabled()) { |
127 | xen_hvm_init(pcms, &ram_memory); | |
128 | } else { | |
129 | if (!pcms->max_ram_below_4g) { | |
130 | pcms->max_ram_below_4g = 0xe0000000; /* default: 3.5G */ | |
131 | } | |
132 | lowmem = pcms->max_ram_below_4g; | |
133 | if (machine->ram_size >= pcms->max_ram_below_4g) { | |
134 | if (pcmc->gigabyte_align) { | |
135 | if (lowmem > 0xc0000000) { | |
136 | lowmem = 0xc0000000; | |
137 | } | |
d471bf3e | 138 | if (lowmem & (1 * GiB - 1)) { |
3dc6f869 AF |
139 | warn_report("Large machine and max_ram_below_4g " |
140 | "(%" PRIu64 ") not a multiple of 1G; " | |
141 | "possible bad performance.", | |
142 | pcms->max_ram_below_4g); | |
5ec7d098 | 143 | } |
8156d480 | 144 | } |
c87b1520 | 145 | } |
c87b1520 | 146 | |
5ec7d098 GH |
147 | if (machine->ram_size >= lowmem) { |
148 | pcms->above_4g_mem_size = machine->ram_size - lowmem; | |
149 | pcms->below_4g_mem_size = lowmem; | |
150 | } else { | |
151 | pcms->above_4g_mem_size = 0; | |
152 | pcms->below_4g_mem_size = machine->ram_size; | |
153 | } | |
3c2a9669 DS |
154 | } |
155 | ||
4884b7bf | 156 | pc_cpus_init(pcms); |
3c2a9669 | 157 | |
7102fa70 | 158 | if (kvm_enabled() && pcmc->kvmclock_enabled) { |
3c2a9669 DS |
159 | kvmclock_create(); |
160 | } | |
161 | ||
7102fa70 | 162 | if (pcmc->pci_enabled) { |
4463aee6 | 163 | pci_memory = g_new(MemoryRegion, 1); |
286690e3 | 164 | memory_region_init(pci_memory, NULL, "pci", UINT64_MAX); |
4463aee6 JK |
165 | rom_memory = pci_memory; |
166 | } else { | |
167 | pci_memory = NULL; | |
168 | rom_memory = system_memory; | |
169 | } | |
ae0a5466 | 170 | |
5db3f0de | 171 | pc_guest_info_init(pcms); |
3459a625 | 172 | |
7102fa70 | 173 | if (pcmc->smbios_defaults) { |
3ef96221 | 174 | MachineClass *mc = MACHINE_GET_CLASS(machine); |
b29ad07e | 175 | /* These values are guest ABI, do not change */ |
e6667f71 | 176 | smbios_set_defaults("QEMU", "Standard PC (i440FX + PIIX, 1996)", |
7102fa70 EH |
177 | mc->name, pcmc->smbios_legacy_mode, |
178 | pcmc->smbios_uuid_encoded, | |
86299120 | 179 | SMBIOS_ENTRY_POINT_21); |
b29ad07e MA |
180 | } |
181 | ||
845773ab | 182 | /* allocate ram and load rom/bios */ |
29d3ccde | 183 | if (!xen_enabled()) { |
62b160c0 | 184 | pc_memory_init(pcms, system_memory, |
5934e216 | 185 | rom_memory, &ram_memory); |
b33a5bbf CL |
186 | } else if (machine->kernel_filename != NULL) { |
187 | /* For xen HVM direct kernel boot, load linux here */ | |
7bc35e0f | 188 | xen_load_linux(pcms); |
29d3ccde | 189 | } |
845773ab | 190 | |
b881fbe9 | 191 | gsi_state = g_malloc0(sizeof(*gsi_state)); |
15eafc2e | 192 | if (kvm_ioapic_in_kernel()) { |
7102fa70 | 193 | kvm_pc_setup_irq_routing(pcmc->pci_enabled); |
3e6c0c4c MAL |
194 | pcms->gsi = qemu_allocate_irqs(kvm_pc_gsi_handler, gsi_state, |
195 | GSI_NUM_PINS); | |
10b61882 | 196 | } else { |
3e6c0c4c | 197 | pcms->gsi = qemu_allocate_irqs(gsi_handler, gsi_state, GSI_NUM_PINS); |
10b61882 | 198 | } |
845773ab | 199 | |
7102fa70 | 200 | if (pcmc->pci_enabled) { |
76d39ab4 TC |
201 | pci_bus = i440fx_init(host_type, |
202 | pci_type, | |
3e6c0c4c | 203 | &i440fx_state, &piix3_devfn, &isa_bus, pcms->gsi, |
3ef96221 | 204 | system_memory, system_io, machine->ram_size, |
c0aa4e1e EH |
205 | pcms->below_4g_mem_size, |
206 | pcms->above_4g_mem_size, | |
ae0a5466 | 207 | pci_memory, ram_memory); |
81ed6482 | 208 | pcms->bus = pci_bus; |
845773ab IY |
209 | } else { |
210 | pci_bus = NULL; | |
02a89b21 | 211 | i440fx_state = NULL; |
d10e5432 MA |
212 | isa_bus = isa_bus_new(NULL, get_system_memory(), system_io, |
213 | &error_abort); | |
57285cc3 | 214 | no_hpet = 1; |
845773ab | 215 | } |
3e6c0c4c | 216 | isa_bus_irqs(isa_bus, pcms->gsi); |
845773ab | 217 | |
15eafc2e | 218 | if (kvm_pic_in_kernel()) { |
10b61882 JK |
219 | i8259 = kvm_i8259_init(isa_bus); |
220 | } else if (xen_enabled()) { | |
221 | i8259 = xen_interrupt_controller_init(); | |
222 | } else { | |
0b0cc076 | 223 | i8259 = i8259_init(isa_bus, pc_allocate_cpu_irq()); |
4bae1efe RH |
224 | } |
225 | ||
43a0db35 JK |
226 | for (i = 0; i < ISA_NUM_IRQS; i++) { |
227 | gsi_state->i8259_irq[i] = i8259[i]; | |
228 | } | |
2ba154cf | 229 | g_free(i8259); |
7102fa70 | 230 | if (pcmc->pci_enabled) { |
a39e3564 | 231 | ioapic_init_gsi(gsi_state, "i440fx"); |
4bae1efe RH |
232 | } |
233 | ||
3e6c0c4c | 234 | pc_register_ferr_irq(pcms->gsi[13]); |
845773ab | 235 | |
7102fa70 | 236 | pc_vga_init(isa_bus, pcmc->pci_enabled ? pci_bus : NULL); |
01195b73 | 237 | |
7fb1cf16 | 238 | assert(pcms->vmport != ON_OFF_AUTO__MAX); |
ec68007a EH |
239 | if (pcms->vmport == ON_OFF_AUTO_AUTO) { |
240 | pcms->vmport = xen_enabled() ? ON_OFF_AUTO_OFF : ON_OFF_AUTO_ON; | |
d1048bef DS |
241 | } |
242 | ||
845773ab | 243 | /* init basic PC hardware */ |
3e6c0c4c | 244 | pc_basic_device_init(isa_bus, pcms->gsi, &rtc_state, true, |
f5878b03 CM |
245 | (pcms->vmport != ON_OFF_AUTO_ON), pcms->pit_enabled, |
246 | 0x4); | |
845773ab | 247 | |
4b9c264b | 248 | pc_nic_init(pcmc, isa_bus, pci_bus); |
845773ab | 249 | |
d8f94e1b | 250 | ide_drive_get(hd, ARRAY_SIZE(hd)); |
7102fa70 | 251 | if (pcmc->pci_enabled) { |
c0897e0c | 252 | PCIDevice *dev; |
679f4f8b SS |
253 | if (xen_enabled()) { |
254 | dev = pci_piix3_xen_ide_init(pci_bus, hd, piix3_devfn + 1); | |
255 | } else { | |
256 | dev = pci_piix3_ide_init(pci_bus, hd, piix3_devfn + 1); | |
257 | } | |
c0897e0c MA |
258 | idebus[0] = qdev_get_child_bus(&dev->qdev, "ide.0"); |
259 | idebus[1] = qdev_get_child_bus(&dev->qdev, "ide.1"); | |
60386ea2 JM |
260 | pc_cmos_init(pcms, idebus[0], idebus[1], rtc_state); |
261 | } | |
262 | #ifdef CONFIG_IDE_ISA | |
263 | else { | |
845773ab | 264 | for(i = 0; i < MAX_IDE_BUS; i++) { |
c0897e0c | 265 | ISADevice *dev; |
61de3676 | 266 | char busname[] = "ide.0"; |
48a18b3c HP |
267 | dev = isa_ide_init(isa_bus, ide_iobase[i], ide_iobase2[i], |
268 | ide_irq[i], | |
c0897e0c | 269 | hd[MAX_IDE_DEVS * i], hd[MAX_IDE_DEVS * i + 1]); |
61de3676 AG |
270 | /* |
271 | * The ide bus name is ide.0 for the first bus and ide.1 for the | |
272 | * second one. | |
273 | */ | |
274 | busname[4] = '0' + i; | |
275 | idebus[i] = qdev_get_child_bus(DEVICE(dev), busname); | |
845773ab | 276 | } |
60386ea2 | 277 | pc_cmos_init(pcms, idebus[0], idebus[1], rtc_state); |
845773ab | 278 | } |
60386ea2 | 279 | #endif |
845773ab | 280 | |
4bcbe0b6 | 281 | if (pcmc->pci_enabled && machine_usb(machine)) { |
afb9a60e | 282 | pci_create_simple(pci_bus, piix3_devfn + 2, "piix3-usb-uhci"); |
845773ab IY |
283 | } |
284 | ||
7102fa70 | 285 | if (pcmc->pci_enabled && acpi_enabled) { |
781bbd6b | 286 | DeviceState *piix4_pm; |
a5c82852 | 287 | I2CBus *smbus; |
845773ab | 288 | |
2ba154cf | 289 | smi_irq = qemu_allocate_irq(pc_acpi_smi_interrupt, first_cpu, 0); |
845773ab IY |
290 | /* TODO: Populate SPD eeprom data. */ |
291 | smbus = piix4_pm_init(pci_bus, piix3_devfn + 3, 0xb100, | |
3e6c0c4c | 292 | pcms->gsi[9], smi_irq, |
ec68007a | 293 | pc_machine_is_smm_enabled(pcms), |
355023f2 | 294 | &piix4_pm); |
a88df0b9 | 295 | smbus_eeprom_init(smbus, 8, NULL, 0); |
781bbd6b IM |
296 | |
297 | object_property_add_link(OBJECT(machine), PC_MACHINE_ACPI_DEVICE_PROP, | |
298 | TYPE_HOTPLUG_HANDLER, | |
ec68007a | 299 | (Object **)&pcms->acpi_dev, |
781bbd6b | 300 | object_property_allow_set_link, |
265b578c | 301 | OBJ_PROP_LINK_STRONG, &error_abort); |
781bbd6b IM |
302 | object_property_set_link(OBJECT(machine), OBJECT(piix4_pm), |
303 | PC_MACHINE_ACPI_DEVICE_PROP, &error_abort); | |
845773ab IY |
304 | } |
305 | ||
f6a0d06b EA |
306 | if (machine->nvdimms_state->is_enabled) { |
307 | nvdimm_init_acpi_state(machine->nvdimms_state, system_io, | |
5fe79386 XG |
308 | pcms->fw_cfg, OBJECT(pcms)); |
309 | } | |
845773ab IY |
310 | } |
311 | ||
79859507 EH |
312 | /* Looking for a pc_compat_2_4() function? It doesn't exist. |
313 | * pc_compat_*() functions that run on machine-init time and | |
314 | * change global QEMU state are deprecated. Please don't create | |
315 | * one, and implement any pc-*-2.4 (and newer) compat code in | |
316 | * HW_COMPAT_*, PC_COMPAT_*, or * pc_*_machine_options(). | |
317 | */ | |
318 | ||
8995dd90 | 319 | static void pc_compat_2_3_fn(MachineState *machine) |
5cb50e0a | 320 | { |
355023f2 | 321 | PCMachineState *pcms = PC_MACHINE(machine); |
355023f2 PB |
322 | if (kvm_enabled()) { |
323 | pcms->smm = ON_OFF_AUTO_OFF; | |
324 | } | |
5cb50e0a JW |
325 | } |
326 | ||
1c30044e | 327 | static void pc_compat_2_2_fn(MachineState *machine) |
64bbd372 | 328 | { |
8995dd90 | 329 | pc_compat_2_3_fn(machine); |
64bbd372 PB |
330 | } |
331 | ||
c4fc5695 | 332 | static void pc_compat_2_1_fn(MachineState *machine) |
2cad57c7 | 333 | { |
1c30044e | 334 | pc_compat_2_2_fn(machine); |
5114e842 | 335 | x86_cpu_change_kvm_default("svm", NULL); |
2cad57c7 EH |
336 | } |
337 | ||
a310e653 | 338 | static void pc_compat_2_0_fn(MachineState *machine) |
3458b2b0 | 339 | { |
c4fc5695 | 340 | pc_compat_2_1_fn(machine); |
3458b2b0 MT |
341 | } |
342 | ||
a310e653 | 343 | static void pc_compat_1_7_fn(MachineState *machine) |
b29ad07e | 344 | { |
a310e653 | 345 | pc_compat_2_0_fn(machine); |
5114e842 | 346 | x86_cpu_change_kvm_default("x2apic", NULL); |
b29ad07e MA |
347 | } |
348 | ||
a310e653 | 349 | static void pc_compat_1_6_fn(MachineState *machine) |
f8c457b8 | 350 | { |
a310e653 | 351 | pc_compat_1_7_fn(machine); |
f8c457b8 MT |
352 | } |
353 | ||
a310e653 | 354 | static void pc_compat_1_5_fn(MachineState *machine) |
9604f70f | 355 | { |
a310e653 | 356 | pc_compat_1_6_fn(machine); |
9604f70f MT |
357 | } |
358 | ||
a310e653 | 359 | static void pc_compat_1_4_fn(MachineState *machine) |
9953f882 | 360 | { |
a310e653 | 361 | pc_compat_1_5_fn(machine); |
9953f882 MA |
362 | } |
363 | ||
3ef96221 | 364 | static void pc_compat_1_3(MachineState *machine) |
8932cfdf | 365 | { |
a310e653 | 366 | pc_compat_1_4_fn(machine); |
89b439f3 EH |
367 | } |
368 | ||
369 | /* PC compat function for pc-0.14 to pc-1.2 */ | |
3ef96221 | 370 | static void pc_compat_1_2(MachineState *machine) |
89b439f3 | 371 | { |
3ef96221 | 372 | pc_compat_1_3(machine); |
5114e842 | 373 | x86_cpu_change_kvm_default("kvm-pv-eoi", NULL); |
89b439f3 EH |
374 | } |
375 | ||
cc425b5d | 376 | /* PC compat function for pc-0.12 and pc-0.13 */ |
72d164aa EH |
377 | static void pc_compat_0_13(MachineState *machine) |
378 | { | |
379 | pc_compat_1_2(machine); | |
72d164aa EH |
380 | } |
381 | ||
3ef96221 | 382 | static void pc_init_isa(MachineState *machine) |
845773ab | 383 | { |
76d39ab4 | 384 | pc_init1(machine, TYPE_I440FX_PCI_HOST_BRIDGE, TYPE_I440FX_PCI_DEVICE); |
845773ab IY |
385 | } |
386 | ||
29d3ccde | 387 | #ifdef CONFIG_XEN |
998250e9 TC |
388 | static void pc_xen_hvm_init_pci(MachineState *machine) |
389 | { | |
390 | const char *pci_type = has_igd_gfx_passthru ? | |
391 | TYPE_IGD_PASSTHROUGH_I440FX_PCI_DEVICE : TYPE_I440FX_PCI_DEVICE; | |
392 | ||
393 | pc_init1(machine, | |
394 | TYPE_I440FX_PCI_HOST_BRIDGE, | |
395 | pci_type); | |
396 | } | |
397 | ||
3ef96221 | 398 | static void pc_xen_hvm_init(MachineState *machine) |
29d3ccde | 399 | { |
e492dc5a | 400 | PCMachineState *pcms = PC_MACHINE(machine); |
39ae4972 | 401 | |
a88ae0d4 EH |
402 | if (!xen_enabled()) { |
403 | error_report("xenfv machine requires the xen accelerator"); | |
404 | exit(1); | |
405 | } | |
406 | ||
998250e9 | 407 | pc_xen_hvm_init_pci(machine); |
e492dc5a | 408 | pci_create_simple(pcms->bus, -1, "xen-platform"); |
29d3ccde AP |
409 | } |
410 | #endif | |
411 | ||
99fbeafe EH |
412 | #define DEFINE_I440FX_MACHINE(suffix, name, compatfn, optionfn) \ |
413 | static void pc_init_##suffix(MachineState *machine) \ | |
414 | { \ | |
415 | void (*compat)(MachineState *m) = (compatfn); \ | |
416 | if (compat) { \ | |
417 | compat(machine); \ | |
418 | } \ | |
76d39ab4 TC |
419 | pc_init1(machine, TYPE_I440FX_PCI_HOST_BRIDGE, \ |
420 | TYPE_I440FX_PCI_DEVICE); \ | |
99fbeafe EH |
421 | } \ |
422 | DEFINE_PC_MACHINE(suffix, name, pc_init_##suffix, optionfn) | |
fddd179a | 423 | |
865906f7 | 424 | static void pc_i440fx_machine_options(MachineClass *m) |
fddd179a | 425 | { |
4b9c264b PB |
426 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
427 | pcmc->default_nic_model = "e1000"; | |
428 | ||
fddd179a EH |
429 | m->family = "pc_piix"; |
430 | m->desc = "Standard PC (i440FX + PIIX, 1996)"; | |
254bdb1c EH |
431 | m->default_machine_opts = "firmware=bios-256k.bin"; |
432 | m->default_display = "std"; | |
94692dcd | 433 | machine_class_allow_dynamic_sysbus_dev(m, TYPE_RAMFB_DEVICE); |
fddd179a EH |
434 | } |
435 | ||
9bf2650b | 436 | static void pc_i440fx_4_1_machine_options(MachineClass *m) |
fddd179a | 437 | { |
0788a56b | 438 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
fddd179a | 439 | pc_i440fx_machine_options(m); |
fddd179a EH |
440 | m->alias = "pc"; |
441 | m->is_default = 1; | |
0788a56b | 442 | pcmc->default_cpu_version = 1; |
fddd179a | 443 | } |
aeca6e8d | 444 | |
9bf2650b CH |
445 | DEFINE_I440FX_MACHINE(v4_1, "pc-i440fx-4.1", NULL, |
446 | pc_i440fx_4_1_machine_options); | |
447 | ||
448 | static void pc_i440fx_4_0_machine_options(MachineClass *m) | |
449 | { | |
0788a56b | 450 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
9bf2650b CH |
451 | pc_i440fx_4_1_machine_options(m); |
452 | m->alias = NULL; | |
453 | m->is_default = 0; | |
0788a56b | 454 | pcmc->default_cpu_version = CPU_VERSION_LEGACY; |
9bf2650b CH |
455 | compat_props_add(m->compat_props, hw_compat_4_0, hw_compat_4_0_len); |
456 | compat_props_add(m->compat_props, pc_compat_4_0, pc_compat_4_0_len); | |
457 | } | |
458 | ||
84e060bf AW |
459 | DEFINE_I440FX_MACHINE(v4_0, "pc-i440fx-4.0", NULL, |
460 | pc_i440fx_4_0_machine_options); | |
461 | ||
462 | static void pc_i440fx_3_1_machine_options(MachineClass *m) | |
463 | { | |
fda672b5 SG |
464 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
465 | ||
84e060bf AW |
466 | pc_i440fx_4_0_machine_options(m); |
467 | m->is_default = 0; | |
7fccf2a0 | 468 | m->smbus_no_migration_support = true; |
84e060bf | 469 | m->alias = NULL; |
fda672b5 | 470 | pcmc->pvh_enabled = false; |
abd93cc7 MAL |
471 | compat_props_add(m->compat_props, hw_compat_3_1, hw_compat_3_1_len); |
472 | compat_props_add(m->compat_props, pc_compat_3_1, pc_compat_3_1_len); | |
84e060bf AW |
473 | } |
474 | ||
4a93722f MAL |
475 | DEFINE_I440FX_MACHINE(v3_1, "pc-i440fx-3.1", NULL, |
476 | pc_i440fx_3_1_machine_options); | |
477 | ||
478 | static void pc_i440fx_3_0_machine_options(MachineClass *m) | |
479 | { | |
480 | pc_i440fx_3_1_machine_options(m); | |
ddb3235d MAL |
481 | compat_props_add(m->compat_props, hw_compat_3_0, hw_compat_3_0_len); |
482 | compat_props_add(m->compat_props, pc_compat_3_0, pc_compat_3_0_len); | |
4a93722f MAL |
483 | } |
484 | ||
aa78a16d PM |
485 | DEFINE_I440FX_MACHINE(v3_0, "pc-i440fx-3.0", NULL, |
486 | pc_i440fx_3_0_machine_options); | |
968ee4ad BM |
487 | |
488 | static void pc_i440fx_2_12_machine_options(MachineClass *m) | |
489 | { | |
aa78a16d | 490 | pc_i440fx_3_0_machine_options(m); |
0d47310b MAL |
491 | compat_props_add(m->compat_props, hw_compat_2_12, hw_compat_2_12_len); |
492 | compat_props_add(m->compat_props, pc_compat_2_12, pc_compat_2_12_len); | |
968ee4ad BM |
493 | } |
494 | ||
df47ce8a HZ |
495 | DEFINE_I440FX_MACHINE(v2_12, "pc-i440fx-2.12", NULL, |
496 | pc_i440fx_2_12_machine_options); | |
497 | ||
498 | static void pc_i440fx_2_11_machine_options(MachineClass *m) | |
499 | { | |
500 | pc_i440fx_2_12_machine_options(m); | |
43df70a9 MAL |
501 | compat_props_add(m->compat_props, hw_compat_2_11, hw_compat_2_11_len); |
502 | compat_props_add(m->compat_props, pc_compat_2_11, pc_compat_2_11_len); | |
df47ce8a HZ |
503 | } |
504 | ||
a6fd5b0e MA |
505 | DEFINE_I440FX_MACHINE(v2_11, "pc-i440fx-2.11", NULL, |
506 | pc_i440fx_2_11_machine_options); | |
507 | ||
508 | static void pc_i440fx_2_10_machine_options(MachineClass *m) | |
509 | { | |
510 | pc_i440fx_2_11_machine_options(m); | |
503224f4 MAL |
511 | compat_props_add(m->compat_props, hw_compat_2_10, hw_compat_2_10_len); |
512 | compat_props_add(m->compat_props, pc_compat_2_10, pc_compat_2_10_len); | |
7b8be49d | 513 | m->auto_enable_numa_with_memhp = false; |
a6fd5b0e MA |
514 | } |
515 | ||
465238d9 PX |
516 | DEFINE_I440FX_MACHINE(v2_10, "pc-i440fx-2.10", NULL, |
517 | pc_i440fx_2_10_machine_options); | |
518 | ||
519 | static void pc_i440fx_2_9_machine_options(MachineClass *m) | |
520 | { | |
521 | pc_i440fx_2_10_machine_options(m); | |
3e803152 MAL |
522 | compat_props_add(m->compat_props, hw_compat_2_9, hw_compat_2_9_len); |
523 | compat_props_add(m->compat_props, pc_compat_2_9, pc_compat_2_9_len); | |
3da2bd8c | 524 | m->numa_auto_assign_ram = numa_legacy_auto_assign_ram; |
465238d9 PX |
525 | } |
526 | ||
d580bd4b EH |
527 | DEFINE_I440FX_MACHINE(v2_9, "pc-i440fx-2.9", NULL, |
528 | pc_i440fx_2_9_machine_options); | |
529 | ||
530 | static void pc_i440fx_2_8_machine_options(MachineClass *m) | |
531 | { | |
532 | pc_i440fx_2_9_machine_options(m); | |
edc24ccd MAL |
533 | compat_props_add(m->compat_props, hw_compat_2_8, hw_compat_2_8_len); |
534 | compat_props_add(m->compat_props, pc_compat_2_8, pc_compat_2_8_len); | |
d580bd4b EH |
535 | } |
536 | ||
a4d3c834 LM |
537 | DEFINE_I440FX_MACHINE(v2_8, "pc-i440fx-2.8", NULL, |
538 | pc_i440fx_2_8_machine_options); | |
539 | ||
a4d3c834 LM |
540 | static void pc_i440fx_2_7_machine_options(MachineClass *m) |
541 | { | |
542 | pc_i440fx_2_8_machine_options(m); | |
5a995064 MAL |
543 | compat_props_add(m->compat_props, hw_compat_2_7, hw_compat_2_7_len); |
544 | compat_props_add(m->compat_props, pc_compat_2_7, pc_compat_2_7_len); | |
a4d3c834 LM |
545 | } |
546 | ||
d86c1451 IM |
547 | DEFINE_I440FX_MACHINE(v2_7, "pc-i440fx-2.7", NULL, |
548 | pc_i440fx_2_7_machine_options); | |
549 | ||
d86c1451 IM |
550 | static void pc_i440fx_2_6_machine_options(MachineClass *m) |
551 | { | |
679dd1a9 | 552 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
88cbe073 | 553 | |
d86c1451 | 554 | pc_i440fx_2_7_machine_options(m); |
679dd1a9 | 555 | pcmc->legacy_cpu_hotplug = true; |
98e753a6 | 556 | pcmc->linuxboot_dma_enabled = false; |
ff8f261f MAL |
557 | compat_props_add(m->compat_props, hw_compat_2_6, hw_compat_2_6_len); |
558 | compat_props_add(m->compat_props, pc_compat_2_6, pc_compat_2_6_len); | |
d86c1451 IM |
559 | } |
560 | ||
240240d5 EH |
561 | DEFINE_I440FX_MACHINE(v2_6, "pc-i440fx-2.6", NULL, |
562 | pc_i440fx_2_6_machine_options); | |
563 | ||
240240d5 EH |
564 | static void pc_i440fx_2_5_machine_options(MachineClass *m) |
565 | { | |
36f96c4b | 566 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
88cbe073 | 567 | |
240240d5 | 568 | pc_i440fx_2_6_machine_options(m); |
36f96c4b | 569 | pcmc->save_tsc_khz = false; |
bab47d9a | 570 | m->legacy_fw_cfg_order = 1; |
fe759610 MAL |
571 | compat_props_add(m->compat_props, hw_compat_2_5, hw_compat_2_5_len); |
572 | compat_props_add(m->compat_props, pc_compat_2_5, pc_compat_2_5_len); | |
240240d5 EH |
573 | } |
574 | ||
87e896ab EH |
575 | DEFINE_I440FX_MACHINE(v2_5, "pc-i440fx-2.5", NULL, |
576 | pc_i440fx_2_5_machine_options); | |
577 | ||
87e896ab EH |
578 | static void pc_i440fx_2_4_machine_options(MachineClass *m) |
579 | { | |
580 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); | |
88cbe073 | 581 | |
87e896ab | 582 | pc_i440fx_2_5_machine_options(m); |
de796d93 | 583 | m->hw_version = "2.4.0"; |
87e896ab | 584 | pcmc->broken_reserved_end = true; |
2f99b9c2 MAL |
585 | compat_props_add(m->compat_props, hw_compat_2_4, hw_compat_2_4_len); |
586 | compat_props_add(m->compat_props, pc_compat_2_4, pc_compat_2_4_len); | |
87e896ab EH |
587 | } |
588 | ||
99fbeafe EH |
589 | DEFINE_I440FX_MACHINE(v2_4, "pc-i440fx-2.4", NULL, |
590 | pc_i440fx_2_4_machine_options) | |
5cb50e0a | 591 | |
865906f7 | 592 | static void pc_i440fx_2_3_machine_options(MachineClass *m) |
fddd179a | 593 | { |
4421c6a3 | 594 | pc_i440fx_2_4_machine_options(m); |
de796d93 | 595 | m->hw_version = "2.3.0"; |
8995dd90 MAL |
596 | compat_props_add(m->compat_props, hw_compat_2_3, hw_compat_2_3_len); |
597 | compat_props_add(m->compat_props, pc_compat_2_3, pc_compat_2_3_len); | |
fddd179a | 598 | } |
5cb50e0a | 599 | |
8995dd90 | 600 | DEFINE_I440FX_MACHINE(v2_3, "pc-i440fx-2.3", pc_compat_2_3_fn, |
99fbeafe | 601 | pc_i440fx_2_3_machine_options); |
61f219df | 602 | |
865906f7 | 603 | static void pc_i440fx_2_2_machine_options(MachineClass *m) |
fddd179a | 604 | { |
7102fa70 | 605 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
88cbe073 | 606 | |
fddd179a | 607 | pc_i440fx_2_3_machine_options(m); |
de796d93 | 608 | m->hw_version = "2.2.0"; |
112394af | 609 | m->default_machine_opts = "firmware=bios-256k.bin,suppress-vmdesc=on"; |
1c30044e MAL |
610 | compat_props_add(m->compat_props, hw_compat_2_2, hw_compat_2_2_len); |
611 | compat_props_add(m->compat_props, pc_compat_2_2, pc_compat_2_2_len); | |
7102fa70 | 612 | pcmc->rsdp_in_ram = false; |
fddd179a | 613 | } |
64bbd372 | 614 | |
1c30044e | 615 | DEFINE_I440FX_MACHINE(v2_2, "pc-i440fx-2.2", pc_compat_2_2_fn, |
99fbeafe | 616 | pc_i440fx_2_2_machine_options); |
61f219df | 617 | |
865906f7 | 618 | static void pc_i440fx_2_1_machine_options(MachineClass *m) |
fddd179a | 619 | { |
7102fa70 | 620 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
88cbe073 | 621 | |
fddd179a | 622 | pc_i440fx_2_2_machine_options(m); |
de796d93 | 623 | m->hw_version = "2.1.0"; |
fddd179a | 624 | m->default_display = NULL; |
c4fc5695 MAL |
625 | compat_props_add(m->compat_props, hw_compat_2_1, hw_compat_2_1_len); |
626 | compat_props_add(m->compat_props, pc_compat_2_1, pc_compat_2_1_len); | |
7102fa70 | 627 | pcmc->smbios_uuid_encoded = false; |
16a9e8a5 | 628 | pcmc->enforce_aligned_dimm = false; |
fddd179a | 629 | } |
f9f21873 | 630 | |
c4fc5695 | 631 | DEFINE_I440FX_MACHINE(v2_1, "pc-i440fx-2.1", pc_compat_2_1_fn, |
99fbeafe | 632 | pc_i440fx_2_1_machine_options); |
61f219df | 633 | |
865906f7 | 634 | static void pc_i440fx_2_0_machine_options(MachineClass *m) |
fddd179a | 635 | { |
7102fa70 | 636 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
88cbe073 | 637 | |
fddd179a | 638 | pc_i440fx_2_1_machine_options(m); |
de796d93 | 639 | m->hw_version = "2.0.0"; |
a310e653 | 640 | compat_props_add(m->compat_props, pc_compat_2_0, pc_compat_2_0_len); |
7102fa70 EH |
641 | pcmc->smbios_legacy_mode = true; |
642 | pcmc->has_reserved_memory = false; | |
2b0ddf66 EH |
643 | /* This value depends on the actual DSDT and SSDT compiled into |
644 | * the source QEMU; unfortunately it depends on the binary and | |
645 | * not on the machine type, so we cannot make pc-i440fx-1.7 work on | |
646 | * both QEMU 1.7 and QEMU 2.0. | |
647 | * | |
648 | * Large variations cause migration to fail for more than one | |
649 | * consecutive value of the "-smp" maxcpus option. | |
650 | * | |
651 | * For small variations of the kind caused by different iasl versions, | |
652 | * the 4k rounding usually leaves slack. However, there could be still | |
653 | * one or two values that break. For QEMU 1.7 and QEMU 2.0 the | |
654 | * slack is only ~10 bytes before one "-smp maxcpus" value breaks! | |
655 | * | |
656 | * 6652 is valid for QEMU 2.0, the right value for pc-i440fx-1.7 on | |
657 | * QEMU 1.7 it is 6414. For RHEL/CentOS 7.0 it is 6418. | |
658 | */ | |
659 | pcmc->legacy_acpi_table_size = 6652; | |
cd4040ec | 660 | pcmc->acpi_data_size = 0x10000; |
fddd179a | 661 | } |
3458b2b0 | 662 | |
a310e653 | 663 | DEFINE_I440FX_MACHINE(v2_0, "pc-i440fx-2.0", pc_compat_2_0_fn, |
99fbeafe | 664 | pc_i440fx_2_0_machine_options); |
61f219df | 665 | |
865906f7 | 666 | static void pc_i440fx_1_7_machine_options(MachineClass *m) |
fddd179a | 667 | { |
7102fa70 | 668 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
88cbe073 | 669 | |
fddd179a | 670 | pc_i440fx_2_0_machine_options(m); |
de796d93 | 671 | m->hw_version = "1.7.0"; |
fddd179a | 672 | m->default_machine_opts = NULL; |
71ae9e94 | 673 | m->option_rom_has_mr = true; |
a310e653 | 674 | compat_props_add(m->compat_props, pc_compat_1_7, pc_compat_1_7_len); |
7102fa70 EH |
675 | pcmc->smbios_defaults = false; |
676 | pcmc->gigabyte_align = false; | |
2b0ddf66 | 677 | pcmc->legacy_acpi_table_size = 6414; |
fddd179a | 678 | } |
aeca6e8d | 679 | |
a310e653 | 680 | DEFINE_I440FX_MACHINE(v1_7, "pc-i440fx-1.7", pc_compat_1_7_fn, |
99fbeafe | 681 | pc_i440fx_1_7_machine_options); |
61f219df | 682 | |
865906f7 | 683 | static void pc_i440fx_1_6_machine_options(MachineClass *m) |
fddd179a | 684 | { |
7102fa70 | 685 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
88cbe073 | 686 | |
fddd179a | 687 | pc_i440fx_1_7_machine_options(m); |
de796d93 | 688 | m->hw_version = "1.6.0"; |
71ae9e94 | 689 | m->rom_file_has_mr = false; |
a310e653 | 690 | compat_props_add(m->compat_props, pc_compat_1_6, pc_compat_1_6_len); |
7102fa70 | 691 | pcmc->has_acpi_build = false; |
fddd179a | 692 | } |
a0dba644 | 693 | |
a310e653 | 694 | DEFINE_I440FX_MACHINE(v1_6, "pc-i440fx-1.6", pc_compat_1_6_fn, |
99fbeafe | 695 | pc_i440fx_1_6_machine_options); |
61f219df | 696 | |
865906f7 | 697 | static void pc_i440fx_1_5_machine_options(MachineClass *m) |
fddd179a EH |
698 | { |
699 | pc_i440fx_1_6_machine_options(m); | |
de796d93 | 700 | m->hw_version = "1.5.0"; |
a310e653 | 701 | compat_props_add(m->compat_props, pc_compat_1_5, pc_compat_1_5_len); |
fddd179a | 702 | } |
b6b5c8e4 | 703 | |
a310e653 | 704 | DEFINE_I440FX_MACHINE(v1_5, "pc-i440fx-1.5", pc_compat_1_5_fn, |
99fbeafe | 705 | pc_i440fx_1_5_machine_options); |
61f219df | 706 | |
865906f7 | 707 | static void pc_i440fx_1_4_machine_options(MachineClass *m) |
fddd179a EH |
708 | { |
709 | pc_i440fx_1_5_machine_options(m); | |
de796d93 | 710 | m->hw_version = "1.4.0"; |
fddd179a | 711 | m->hot_add_cpu = NULL; |
a310e653 | 712 | compat_props_add(m->compat_props, pc_compat_1_4, pc_compat_1_4_len); |
fddd179a | 713 | } |
a0dba644 | 714 | |
a310e653 | 715 | DEFINE_I440FX_MACHINE(v1_4, "pc-i440fx-1.4", pc_compat_1_4_fn, |
99fbeafe | 716 | pc_i440fx_1_4_machine_options); |
61f219df | 717 | |
865906f7 | 718 | static void pc_i440fx_1_3_machine_options(MachineClass *m) |
fddd179a | 719 | { |
457cfccc | 720 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
88cbe073 MAL |
721 | static GlobalProperty compat[] = { |
722 | PC_CPU_MODEL_IDS("1.3.0") | |
6c36bddf EH |
723 | { "usb-tablet", "usb_version", "1" }, |
724 | { "virtio-net-pci", "ctrl_mac_addr", "off" }, | |
725 | { "virtio-net-pci", "mq", "off" }, | |
726 | { "e1000", "autonegotiation", "off" }, | |
88cbe073 MAL |
727 | }; |
728 | ||
fddd179a | 729 | pc_i440fx_1_4_machine_options(m); |
de796d93 | 730 | m->hw_version = "1.3.0"; |
457cfccc | 731 | pcmc->compat_apic_id_mode = true; |
88cbe073 | 732 | compat_props_add(m->compat_props, compat, G_N_ELEMENTS(compat)); |
fddd179a | 733 | } |
b6b5c8e4 | 734 | |
99fbeafe EH |
735 | DEFINE_I440FX_MACHINE(v1_3, "pc-1.3", pc_compat_1_3, |
736 | pc_i440fx_1_3_machine_options); | |
61f219df | 737 | |
f1ae2e38 | 738 | |
865906f7 | 739 | static void pc_i440fx_1_2_machine_options(MachineClass *m) |
fddd179a | 740 | { |
88cbe073 MAL |
741 | static GlobalProperty compat[] = { |
742 | PC_CPU_MODEL_IDS("1.2.0") | |
6c36bddf EH |
743 | { "nec-usb-xhci", "msi", "off" }, |
744 | { "nec-usb-xhci", "msix", "off" }, | |
6c36bddf EH |
745 | { "qxl", "revision", "3" }, |
746 | { "qxl-vga", "revision", "3" }, | |
747 | { "VGA", "mmio", "off" }, | |
88cbe073 MAL |
748 | }; |
749 | ||
fddd179a | 750 | pc_i440fx_1_3_machine_options(m); |
de796d93 | 751 | m->hw_version = "1.2.0"; |
88cbe073 | 752 | compat_props_add(m->compat_props, compat, G_N_ELEMENTS(compat)); |
fddd179a | 753 | } |
a0dba644 | 754 | |
99fbeafe EH |
755 | DEFINE_I440FX_MACHINE(v1_2, "pc-1.2", pc_compat_1_2, |
756 | pc_i440fx_1_2_machine_options); | |
61f219df | 757 | |
f4306941 | 758 | |
865906f7 | 759 | static void pc_i440fx_1_1_machine_options(MachineClass *m) |
fddd179a | 760 | { |
88cbe073 MAL |
761 | static GlobalProperty compat[] = { |
762 | PC_CPU_MODEL_IDS("1.1.0") | |
6c36bddf EH |
763 | { "virtio-scsi-pci", "hotplug", "off" }, |
764 | { "virtio-scsi-pci", "param_change", "off" }, | |
765 | { "VGA", "vgamem_mb", "8" }, | |
766 | { "vmware-svga", "vgamem_mb", "8" }, | |
767 | { "qxl-vga", "vgamem_mb", "8" }, | |
768 | { "qxl", "vgamem_mb", "8" }, | |
769 | { "virtio-blk-pci", "config-wce", "off" }, | |
88cbe073 MAL |
770 | }; |
771 | ||
fddd179a | 772 | pc_i440fx_1_2_machine_options(m); |
de796d93 | 773 | m->hw_version = "1.1.0"; |
88cbe073 | 774 | compat_props_add(m->compat_props, compat, G_N_ELEMENTS(compat)); |
fddd179a | 775 | } |
b6b5c8e4 | 776 | |
99fbeafe EH |
777 | DEFINE_I440FX_MACHINE(v1_1, "pc-1.1", pc_compat_1_2, |
778 | pc_i440fx_1_1_machine_options); | |
61f219df | 779 | |
865906f7 | 780 | static void pc_i440fx_1_0_machine_options(MachineClass *m) |
fddd179a | 781 | { |
88cbe073 MAL |
782 | static GlobalProperty compat[] = { |
783 | PC_CPU_MODEL_IDS("1.0") | |
6c36bddf EH |
784 | { TYPE_ISA_FDC, "check_media_rate", "off" }, |
785 | { "virtio-balloon-pci", "class", stringify(PCI_CLASS_MEMORY_RAM) }, | |
786 | { "apic-common", "vapic", "off" }, | |
787 | { TYPE_USB_DEVICE, "full-path", "no" }, | |
88cbe073 MAL |
788 | }; |
789 | ||
fddd179a EH |
790 | pc_i440fx_1_1_machine_options(m); |
791 | m->hw_version = "1.0"; | |
88cbe073 | 792 | compat_props_add(m->compat_props, compat, G_N_ELEMENTS(compat)); |
fddd179a | 793 | } |
b6b5c8e4 | 794 | |
99fbeafe EH |
795 | DEFINE_I440FX_MACHINE(v1_0, "pc-1.0", pc_compat_1_2, |
796 | pc_i440fx_1_0_machine_options); | |
61f219df | 797 | |
382b3a68 | 798 | |
865906f7 | 799 | static void pc_i440fx_0_15_machine_options(MachineClass *m) |
fddd179a | 800 | { |
88cbe073 MAL |
801 | static GlobalProperty compat[] = { |
802 | PC_CPU_MODEL_IDS("0.15") | |
803 | }; | |
804 | ||
fddd179a EH |
805 | pc_i440fx_1_0_machine_options(m); |
806 | m->hw_version = "0.15"; | |
cc425b5d | 807 | m->deprecation_reason = "use a newer machine type instead"; |
88cbe073 | 808 | compat_props_add(m->compat_props, compat, G_N_ELEMENTS(compat)); |
fddd179a | 809 | } |
b6b5c8e4 | 810 | |
99fbeafe EH |
811 | DEFINE_I440FX_MACHINE(v0_15, "pc-0.15", pc_compat_1_2, |
812 | pc_i440fx_0_15_machine_options); | |
61f219df | 813 | |
ce01a508 | 814 | |
865906f7 | 815 | static void pc_i440fx_0_14_machine_options(MachineClass *m) |
fddd179a | 816 | { |
88cbe073 MAL |
817 | static GlobalProperty compat[] = { |
818 | PC_CPU_MODEL_IDS("0.14") | |
6c36bddf EH |
819 | { "virtio-blk-pci", "event_idx", "off" }, |
820 | { "virtio-serial-pci", "event_idx", "off" }, | |
821 | { "virtio-net-pci", "event_idx", "off" }, | |
822 | { "virtio-balloon-pci", "event_idx", "off" }, | |
823 | { "qxl", "revision", "2" }, | |
824 | { "qxl-vga", "revision", "2" }, | |
88cbe073 MAL |
825 | }; |
826 | ||
fddd179a EH |
827 | pc_i440fx_0_15_machine_options(m); |
828 | m->hw_version = "0.14"; | |
88cbe073 | 829 | compat_props_add(m->compat_props, compat, G_N_ELEMENTS(compat)); |
fddd179a | 830 | } |
b6b5c8e4 | 831 | |
99fbeafe EH |
832 | DEFINE_I440FX_MACHINE(v0_14, "pc-0.14", pc_compat_1_2, |
833 | pc_i440fx_0_14_machine_options); | |
61f219df | 834 | |
865906f7 | 835 | static void pc_i440fx_0_13_machine_options(MachineClass *m) |
fddd179a | 836 | { |
7102fa70 | 837 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
88cbe073 MAL |
838 | static GlobalProperty compat[] = { |
839 | PC_CPU_MODEL_IDS("0.13") | |
6c36bddf EH |
840 | { TYPE_PCI_DEVICE, "command_serr_enable", "off" }, |
841 | { "AC97", "use_broken_id", "1" }, | |
842 | { "virtio-9p-pci", "vectors", "0" }, | |
843 | { "VGA", "rombar", "0" }, | |
844 | { "vmware-svga", "rombar", "0" }, | |
88cbe073 MAL |
845 | }; |
846 | ||
fddd179a EH |
847 | pc_i440fx_0_14_machine_options(m); |
848 | m->hw_version = "0.13"; | |
88cbe073 | 849 | compat_props_add(m->compat_props, compat, G_N_ELEMENTS(compat)); |
7102fa70 | 850 | pcmc->kvmclock_enabled = false; |
fddd179a | 851 | } |
a0dba644 | 852 | |
99fbeafe EH |
853 | DEFINE_I440FX_MACHINE(v0_13, "pc-0.13", pc_compat_0_13, |
854 | pc_i440fx_0_13_machine_options); | |
61f219df | 855 | |
865906f7 | 856 | static void pc_i440fx_0_12_machine_options(MachineClass *m) |
fddd179a | 857 | { |
88cbe073 MAL |
858 | static GlobalProperty compat[] = { |
859 | PC_CPU_MODEL_IDS("0.12") | |
6c36bddf EH |
860 | { "virtio-serial-pci", "max_ports", "1" }, |
861 | { "virtio-serial-pci", "vectors", "0" }, | |
862 | { "usb-mouse", "serial", "1" }, | |
863 | { "usb-tablet", "serial", "1" }, | |
864 | { "usb-kbd", "serial", "1" }, | |
88cbe073 MAL |
865 | }; |
866 | ||
fddd179a EH |
867 | pc_i440fx_0_13_machine_options(m); |
868 | m->hw_version = "0.12"; | |
88cbe073 | 869 | compat_props_add(m->compat_props, compat, G_N_ELEMENTS(compat)); |
fddd179a | 870 | } |
b6b5c8e4 | 871 | |
99fbeafe EH |
872 | DEFINE_I440FX_MACHINE(v0_12, "pc-0.12", pc_compat_0_13, |
873 | pc_i440fx_0_12_machine_options); | |
61f219df | 874 | |
bd8107d7 TC |
875 | typedef struct { |
876 | uint16_t gpu_device_id; | |
877 | uint16_t pch_device_id; | |
878 | uint8_t pch_revision_id; | |
879 | } IGDDeviceIDInfo; | |
880 | ||
881 | /* In real world different GPU should have different PCH. But actually | |
882 | * the different PCH DIDs likely map to different PCH SKUs. We do the | |
883 | * same thing for the GPU. For PCH, the different SKUs are going to be | |
884 | * all the same silicon design and implementation, just different | |
885 | * features turn on and off with fuses. The SW interfaces should be | |
886 | * consistent across all SKUs in a given family (eg LPT). But just same | |
887 | * features may not be supported. | |
888 | * | |
889 | * Most of these different PCH features probably don't matter to the | |
890 | * Gfx driver, but obviously any difference in display port connections | |
891 | * will so it should be fine with any PCH in case of passthrough. | |
892 | * | |
893 | * So currently use one PCH version, 0x8c4e, to cover all HSW(Haswell) | |
894 | * scenarios, 0x9cc3 for BDW(Broadwell). | |
895 | */ | |
896 | static const IGDDeviceIDInfo igd_combo_id_infos[] = { | |
897 | /* HSW Classic */ | |
898 | {0x0402, 0x8c4e, 0x04}, /* HSWGT1D, HSWD_w7 */ | |
899 | {0x0406, 0x8c4e, 0x04}, /* HSWGT1M, HSWM_w7 */ | |
900 | {0x0412, 0x8c4e, 0x04}, /* HSWGT2D, HSWD_w7 */ | |
901 | {0x0416, 0x8c4e, 0x04}, /* HSWGT2M, HSWM_w7 */ | |
902 | {0x041E, 0x8c4e, 0x04}, /* HSWGT15D, HSWD_w7 */ | |
903 | /* HSW ULT */ | |
904 | {0x0A06, 0x8c4e, 0x04}, /* HSWGT1UT, HSWM_w7 */ | |
905 | {0x0A16, 0x8c4e, 0x04}, /* HSWGT2UT, HSWM_w7 */ | |
906 | {0x0A26, 0x8c4e, 0x06}, /* HSWGT3UT, HSWM_w7 */ | |
907 | {0x0A2E, 0x8c4e, 0x04}, /* HSWGT3UT28W, HSWM_w7 */ | |
908 | {0x0A1E, 0x8c4e, 0x04}, /* HSWGT2UX, HSWM_w7 */ | |
909 | {0x0A0E, 0x8c4e, 0x04}, /* HSWGT1ULX, HSWM_w7 */ | |
910 | /* HSW CRW */ | |
911 | {0x0D26, 0x8c4e, 0x04}, /* HSWGT3CW, HSWM_w7 */ | |
912 | {0x0D22, 0x8c4e, 0x04}, /* HSWGT3CWDT, HSWD_w7 */ | |
913 | /* HSW Server */ | |
914 | {0x041A, 0x8c4e, 0x04}, /* HSWSVGT2, HSWD_w7 */ | |
915 | /* HSW SRVR */ | |
916 | {0x040A, 0x8c4e, 0x04}, /* HSWSVGT1, HSWD_w7 */ | |
917 | /* BSW */ | |
918 | {0x1606, 0x9cc3, 0x03}, /* BDWULTGT1, BDWM_w7 */ | |
919 | {0x1616, 0x9cc3, 0x03}, /* BDWULTGT2, BDWM_w7 */ | |
920 | {0x1626, 0x9cc3, 0x03}, /* BDWULTGT3, BDWM_w7 */ | |
921 | {0x160E, 0x9cc3, 0x03}, /* BDWULXGT1, BDWM_w7 */ | |
922 | {0x161E, 0x9cc3, 0x03}, /* BDWULXGT2, BDWM_w7 */ | |
923 | {0x1602, 0x9cc3, 0x03}, /* BDWHALOGT1, BDWM_w7 */ | |
924 | {0x1612, 0x9cc3, 0x03}, /* BDWHALOGT2, BDWM_w7 */ | |
925 | {0x1622, 0x9cc3, 0x03}, /* BDWHALOGT3, BDWM_w7 */ | |
926 | {0x162B, 0x9cc3, 0x03}, /* BDWHALO28W, BDWM_w7 */ | |
927 | {0x162A, 0x9cc3, 0x03}, /* BDWGT3WRKS, BDWM_w7 */ | |
928 | {0x162D, 0x9cc3, 0x03}, /* BDWGT3SRVR, BDWM_w7 */ | |
929 | }; | |
930 | ||
931 | static void isa_bridge_class_init(ObjectClass *klass, void *data) | |
932 | { | |
933 | DeviceClass *dc = DEVICE_CLASS(klass); | |
934 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); | |
935 | ||
936 | dc->desc = "ISA bridge faked to support IGD PT"; | |
965242db | 937 | set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories); |
bd8107d7 TC |
938 | k->vendor_id = PCI_VENDOR_ID_INTEL; |
939 | k->class_id = PCI_CLASS_BRIDGE_ISA; | |
940 | }; | |
941 | ||
942 | static TypeInfo isa_bridge_info = { | |
943 | .name = "igd-passthrough-isa-bridge", | |
944 | .parent = TYPE_PCI_DEVICE, | |
945 | .instance_size = sizeof(PCIDevice), | |
946 | .class_init = isa_bridge_class_init, | |
fd3b02c8 EH |
947 | .interfaces = (InterfaceInfo[]) { |
948 | { INTERFACE_CONVENTIONAL_PCI_DEVICE }, | |
949 | { }, | |
950 | }, | |
bd8107d7 TC |
951 | }; |
952 | ||
953 | static void pt_graphics_register_types(void) | |
954 | { | |
955 | type_register_static(&isa_bridge_info); | |
956 | } | |
957 | type_init(pt_graphics_register_types) | |
958 | ||
959 | void igd_passthrough_isa_bridge_create(PCIBus *bus, uint16_t gpu_dev_id) | |
960 | { | |
961 | struct PCIDevice *bridge_dev; | |
962 | int i, num; | |
963 | uint16_t pch_dev_id = 0xffff; | |
964 | uint8_t pch_rev_id; | |
965 | ||
966 | num = ARRAY_SIZE(igd_combo_id_infos); | |
967 | for (i = 0; i < num; i++) { | |
968 | if (gpu_dev_id == igd_combo_id_infos[i].gpu_device_id) { | |
969 | pch_dev_id = igd_combo_id_infos[i].pch_device_id; | |
970 | pch_rev_id = igd_combo_id_infos[i].pch_revision_id; | |
971 | } | |
972 | } | |
973 | ||
974 | if (pch_dev_id == 0xffff) { | |
975 | return; | |
976 | } | |
977 | ||
978 | /* Currently IGD drivers always need to access PCH by 1f.0. */ | |
979 | bridge_dev = pci_create_simple(bus, PCI_DEVFN(0x1f, 0), | |
980 | "igd-passthrough-isa-bridge"); | |
981 | ||
982 | /* | |
983 | * Note that vendor id is always PCI_VENDOR_ID_INTEL. | |
984 | */ | |
985 | if (!bridge_dev) { | |
986 | fprintf(stderr, "set igd-passthrough-isa-bridge failed!\n"); | |
987 | return; | |
988 | } | |
989 | pci_config_set_device_id(bridge_dev->config, pch_dev_id); | |
990 | pci_config_set_revision(bridge_dev->config, pch_rev_id); | |
991 | } | |
845773ab | 992 | |
865906f7 | 993 | static void isapc_machine_options(MachineClass *m) |
fddd179a | 994 | { |
7102fa70 | 995 | PCMachineClass *pcmc = PC_MACHINE_CLASS(m); |
fddd179a EH |
996 | m->desc = "ISA-only PC"; |
997 | m->max_cpus = 1; | |
71ae9e94 EH |
998 | m->option_rom_has_mr = true; |
999 | m->rom_file_has_mr = false; | |
7102fa70 EH |
1000 | pcmc->pci_enabled = false; |
1001 | pcmc->has_acpi_build = false; | |
1002 | pcmc->smbios_defaults = false; | |
1003 | pcmc->gigabyte_align = false; | |
1004 | pcmc->smbios_legacy_mode = true; | |
1005 | pcmc->has_reserved_memory = false; | |
4b9c264b | 1006 | pcmc->default_nic_model = "ne2k_isa"; |
311ca98d | 1007 | m->default_cpu_type = X86_CPU_TYPE_NAME("486"); |
fddd179a | 1008 | } |
b6b5c8e4 | 1009 | |
61f219df | 1010 | DEFINE_PC_MACHINE(isapc, "isapc", pc_init_isa, |
25519b06 | 1011 | isapc_machine_options); |
61f219df | 1012 | |
845773ab | 1013 | |
29d3ccde | 1014 | #ifdef CONFIG_XEN |
865906f7 | 1015 | static void xenfv_machine_options(MachineClass *m) |
fddd179a | 1016 | { |
fddd179a EH |
1017 | m->desc = "Xen Fully-virtualized PC"; |
1018 | m->max_cpus = HVM_MAX_VCPUS; | |
1019 | m->default_machine_opts = "accel=xen"; | |
fddd179a | 1020 | } |
b6b5c8e4 | 1021 | |
61f219df | 1022 | DEFINE_PC_MACHINE(xenfv, "xenfv", pc_xen_hvm_init, |
25519b06 | 1023 | xenfv_machine_options); |
29d3ccde | 1024 | #endif |