]> git.proxmox.com Git - mirror_qemu.git/blame - include/hw/i386/pc.h
i386: Make unversioned CPU models be aliases
[mirror_qemu.git] / include / hw / i386 / pc.h
CommitLineData
87ecb68b
PB
1#ifndef HW_PC_H
2#define HW_PC_H
376253ec 3
022c62cb 4#include "exec/memory.h"
9521d42b 5#include "hw/boards.h"
0d09e41a
PB
6#include "hw/isa/isa.h"
7#include "hw/block/fdc.h"
ebc29e1b 8#include "hw/block/flash.h"
1422e32d 9#include "net/net.h"
0d09e41a 10#include "hw/i386/ioapic.h"
376253ec 11
3459a625 12#include "qemu/range.h"
b20c9bd5 13#include "qemu/bitmap.h"
0b8fa32f 14#include "qemu/module.h"
b20c9bd5
MT
15#include "sysemu/sysemu.h"
16#include "hw/pci/pci.h"
a7d69ff1 17#include "hw/mem/pc-dimm.h"
5fe79386 18#include "hw/mem/nvdimm.h"
ac35f13b 19#include "hw/acpi/acpi_dev_interface.h"
3459a625 20
7a10ef51
LPF
21#define HPET_INTCAP "hpet-intcap"
22
619d11e4
IM
23/**
24 * PCMachineState:
781bbd6b 25 * @acpi_dev: link to ACPI PM device that performs ACPI hotplug handling
e3cadac0 26 * @boot_cpus: number of present VCPUs
c26ae610 27 * @smp_dies: number of dies per one package
619d11e4 28 */
d5747cac
IM
29struct PCMachineState {
30 /*< private >*/
31 MachineState parent_obj;
619d11e4
IM
32
33 /* <public> */
13fc8343
EH
34
35 /* State for other subsystems/APIs: */
9ebeed0c 36 Notifier machine_done;
781bbd6b 37
13fc8343 38 /* Pointers to devices and objects: */
781bbd6b 39 HotplugHandler *acpi_dev;
2d996150 40 ISADevice *rtc;
13fc8343 41 PCIBus *bus;
f264d360 42 FWCfgState *fw_cfg;
3e6c0c4c 43 qemu_irq *gsi;
ebc29e1b 44 PFlashCFI01 *flash[2];
c87b1520 45
13fc8343 46 /* Configuration options: */
c87b1520 47 uint64_t max_ram_below_4g;
d1048bef 48 OnOffAuto vmport;
355023f2 49 OnOffAuto smm;
5fe79386 50
021746c1 51 bool acpi_build_enabled;
f5878b03
CM
52 bool smbus_enabled;
53 bool sata_enabled;
54 bool pit_enabled;
021746c1 55
13fc8343 56 /* RAM information (sizes, addresses, configuration): */
c0aa4e1e 57 ram_addr_t below_4g_mem_size, above_4g_mem_size;
dd4c2f01
EH
58
59 /* CPU and apic information: */
60 bool apic_xrupt_override;
61 unsigned apic_id_limit;
e3cadac0 62 uint16_t boot_cpus;
c26ae610 63 unsigned smp_dies;
dd4c2f01
EH
64
65 /* NUMA information: */
66 uint64_t numa_nodes;
67 uint64_t *node_mem;
cb135f59
PX
68
69 /* Address space used by IOAPIC device. All IOAPIC interrupts
70 * will be translated to MSI messages in the address space. */
71 AddressSpace *ioapic_as;
d5747cac
IM
72};
73
781bbd6b 74#define PC_MACHINE_ACPI_DEVICE_PROP "acpi-device"
f2ffbe2b 75#define PC_MACHINE_DEVMEM_REGION_SIZE "device-memory-region-size"
c87b1520 76#define PC_MACHINE_MAX_RAM_BELOW_4G "max-ram-below-4g"
9b23cfb7 77#define PC_MACHINE_VMPORT "vmport"
355023f2 78#define PC_MACHINE_SMM "smm"
be232eb0 79#define PC_MACHINE_SMBUS "smbus"
272f0428 80#define PC_MACHINE_SATA "sata"
feddd2fd 81#define PC_MACHINE_PIT "pit"
781bbd6b 82
95bee274
IM
83/**
84 * PCMachineClass:
13fc8343 85 *
13fc8343
EH
86 * Compat fields:
87 *
16a9e8a5
EH
88 * @enforce_aligned_dimm: check that DIMM's address/size is aligned by
89 * backend's alignment value if provided
13fc8343
EH
90 * @acpi_data_size: Size of the chunk of memory at the top of RAM
91 * for the BIOS ACPI tables and other BIOS
92 * datastructures.
93 * @gigabyte_align: Make sure that guest addresses aligned at
94 * 1Gbyte boundaries get mapped to host
95 * addresses aligned at 1Gbyte boundaries. This
96 * way we can use 1GByte pages in the host.
97 *
95bee274 98 */
639f642c 99typedef struct PCMachineClass {
d5747cac
IM
100 /*< private >*/
101 MachineClass parent_class;
95bee274
IM
102
103 /*< public >*/
13fc8343 104
13fc8343 105 /* Device configuration: */
7102fa70 106 bool pci_enabled;
13fc8343 107 bool kvmclock_enabled;
4b9c264b 108 const char *default_nic_model;
13fc8343
EH
109
110 /* Compat options: */
111
0788a56b
EH
112 /* Default CPU model version. See x86_cpu_set_default_version(). */
113 int default_cpu_version;
114
13fc8343 115 /* ACPI compat: */
7102fa70
EH
116 bool has_acpi_build;
117 bool rsdp_in_ram;
13fc8343
EH
118 int legacy_acpi_table_size;
119 unsigned acpi_data_size;
120
121 /* SMBIOS compat: */
7102fa70
EH
122 bool smbios_defaults;
123 bool smbios_legacy_mode;
124 bool smbios_uuid_encoded;
13fc8343
EH
125
126 /* RAM / address space compat: */
7102fa70
EH
127 bool gigabyte_align;
128 bool has_reserved_memory;
16a9e8a5 129 bool enforce_aligned_dimm;
13fc8343 130 bool broken_reserved_end;
36f96c4b
HZ
131
132 /* TSC rate migration: */
133 bool save_tsc_khz;
679dd1a9
IM
134 /* generate legacy CPU hotplug AML */
135 bool legacy_cpu_hotplug;
98e753a6
IM
136
137 /* use DMA capable linuxboot option rom */
138 bool linuxboot_dma_enabled;
fda672b5
SG
139
140 /* use PVH to load kernels that support this feature */
141 bool pvh_enabled;
457cfccc
EH
142
143 /* Enables contiguous-apic-ID mode */
144 bool compat_apic_id_mode;
639f642c 145} PCMachineClass;
d5747cac 146
d5747cac
IM
147#define TYPE_PC_MACHINE "generic-pc-machine"
148#define PC_MACHINE(obj) \
149 OBJECT_CHECK(PCMachineState, (obj), TYPE_PC_MACHINE)
150#define PC_MACHINE_GET_CLASS(obj) \
151 OBJECT_GET_CLASS(PCMachineClass, (obj), TYPE_PC_MACHINE)
152#define PC_MACHINE_CLASS(klass) \
153 OBJECT_CLASS_CHECK(PCMachineClass, (klass), TYPE_PC_MACHINE)
154
87ecb68b
PB
155/* i8259.c */
156
9aa78c42 157extern DeviceState *isa_pic;
48a18b3c 158qemu_irq *i8259_init(ISABus *bus, qemu_irq parent_irq);
10b61882 159qemu_irq *kvm_i8259_init(ISABus *bus);
9aa78c42
JK
160int pic_read_irq(DeviceState *d);
161int pic_get_output(DeviceState *d);
87ecb68b 162
d665d696
PB
163/* ioapic.c */
164
b881fbe9 165/* Global System Interrupts */
96051119 166
b881fbe9 167#define GSI_NUM_PINS IOAPIC_NUM_PINS
845773ab 168
b881fbe9 169typedef struct GSIState {
43a0db35 170 qemu_irq i8259_irq[ISA_NUM_IRQS];
b881fbe9
JK
171 qemu_irq ioapic_irq[IOAPIC_NUM_PINS];
172} GSIState;
173
174void gsi_handler(void *opaque, int n, int level);
845773ab 175
87ecb68b 176/* vmport.c */
936a6447 177#define TYPE_VMPORT "vmport"
d67f679d
JK
178typedef uint32_t (VMPortReadFunc)(void *opaque, uint32_t address);
179
48a18b3c 180static inline void vmport_init(ISABus *bus)
6872ef61 181{
936a6447 182 isa_create_simple(bus, TYPE_VMPORT);
6872ef61 183}
d67f679d
JK
184
185void vmport_register(unsigned char command, VMPortReadFunc *func, void *opaque);
86d86414
BS
186void vmmouse_get_data(uint32_t *data);
187void vmmouse_set_data(const uint32_t *data);
87ecb68b 188
87ecb68b
PB
189/* pc.c */
190extern int fd_bootchk;
191
355023f2 192bool pc_machine_is_smm_enabled(PCMachineState *pcms);
8e78eb28 193void pc_register_ferr_irq(qemu_irq irq);
845773ab
IY
194void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
195
4884b7bf 196void pc_cpus_init(PCMachineState *pcms);
a0628599 197void pc_hot_add_cpu(MachineState *ms, const int64_t id, Error **errp);
6f479566 198void pc_smp_parse(MachineState *ms, QemuOpts *opts);
3459a625 199
e4e8ba04 200void pc_guest_info_init(PCMachineState *pcms);
3459a625 201
39848901
IM
202#define PCI_HOST_PROP_PCI_HOLE_START "pci-hole-start"
203#define PCI_HOST_PROP_PCI_HOLE_END "pci-hole-end"
204#define PCI_HOST_PROP_PCI_HOLE64_START "pci-hole64-start"
205#define PCI_HOST_PROP_PCI_HOLE64_END "pci-hole64-end"
206#define PCI_HOST_PROP_PCI_HOLE64_SIZE "pci-hole64-size"
401f2f3e
EV
207#define PCI_HOST_BELOW_4G_MEM_SIZE "below-4g-mem-size"
208#define PCI_HOST_ABOVE_4G_MEM_SIZE "above-4g-mem-size"
1466cef3 209
39848901 210
83d08f26
MT
211void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory,
212 MemoryRegion *pci_address_space);
39848901 213
7bc35e0f 214void xen_load_linux(PCMachineState *pcms);
5934e216
EH
215void pc_memory_init(PCMachineState *pcms,
216 MemoryRegion *system_memory,
217 MemoryRegion *rom_memory,
218 MemoryRegion **ram_memory);
9fa99d25 219uint64_t pc_pci_hole64_start(void);
0b0cc076 220qemu_irq pc_allocate_cpu_irq(void);
48a18b3c
HP
221DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus);
222void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi,
1611977c 223 ISADevice **rtc_state,
fd53c87c 224 bool create_fdctrl,
7a10ef51 225 bool no_vmport,
feddd2fd 226 bool has_pit,
3a87d009 227 uint32_t hpet_irqs);
48a18b3c 228void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd);
23d30407 229void pc_cmos_init(PCMachineState *pcms,
220a8846 230 BusState *ide0, BusState *ide1,
63ffb564 231 ISADevice *s);
4b9c264b 232void pc_nic_init(PCMachineClass *pcmc, ISABus *isa_bus, PCIBus *pci_bus);
845773ab 233void pc_pci_device_init(PCIBus *pci_bus);
8e78eb28 234
f885f1ea 235typedef void (*cpu_set_smm_t)(int smm, void *arg);
f885f1ea 236
a39e3564
JB
237void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name);
238
424e4a87 239ISADevice *pc_find_fdc0(void);
bda05509 240int cmos_get_fd_drive_type(FloppyDriveType fd0);
424e4a87 241
305ae888
GS
242#define FW_CFG_IO_BASE 0x510
243
d812b3d6
EV
244#define PORT92_A20_LINE "a20"
245
9d5e77a2 246/* acpi_piix.c */
53b67b30 247
a5c82852
AF
248I2CBus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
249 qemu_irq sci_irq, qemu_irq smi_irq,
61e66c62 250 int smm_enabled, DeviceState **piix4_pm);
87ecb68b 251
16b29ae1
AL
252/* hpet.c */
253extern int no_hpet;
254
87ecb68b 255/* piix_pci.c */
0a3bacf3
JQ
256struct PCII440FXState;
257typedef struct PCII440FXState PCII440FXState;
258
7bb836e4
MT
259#define TYPE_I440FX_PCI_HOST_BRIDGE "i440FX-pcihost"
260#define TYPE_I440FX_PCI_DEVICE "i440FX"
261
595a4f07
TC
262#define TYPE_IGD_PASSTHROUGH_I440FX_PCI_DEVICE "igd-passthrough-i440FX"
263
6103451a
PDJ
264/*
265 * Reset Control Register: PCI-accessible ISA-Compatible Register at address
266 * 0xcf9, provided by the PCI/ISA bridge (PIIX3 PCI function 0, 8086:7000).
267 */
268#define RCR_IOPORT 0xcf9
269
7bb836e4
MT
270PCIBus *i440fx_init(const char *host_type, const char *pci_type,
271 PCII440FXState **pi440fx_state, int *piix_devfn,
60573079 272 ISABus **isa_bus, qemu_irq *pic,
aee97b84
AK
273 MemoryRegion *address_space_mem,
274 MemoryRegion *address_space_io,
ae0a5466 275 ram_addr_t ram_size,
ddaaefb4 276 ram_addr_t below_4g_mem_size,
39848901 277 ram_addr_t above_4g_mem_size,
ae0a5466
AK
278 MemoryRegion *pci_memory,
279 MemoryRegion *ram_memory);
87ecb68b 280
277e9340 281PCIBus *find_i440fx(void);
823e675a 282/* piix4.c */
b1d8e52e 283extern PCIDevice *piix4_dev;
142e9787 284int piix4_init(PCIBus *bus, ISABus **isa_bus, int devfn);
87ecb68b 285
cbc5b5f3 286/* pc_sysfw.c */
ebc29e1b 287void pc_system_flash_create(PCMachineState *pcms);
5e640a9e 288void pc_system_firmware_init(PCMachineState *pcms, MemoryRegion *rom_memory);
cbc5b5f3 289
ac35f13b
IM
290/* acpi-build.c */
291void pc_madt_cpu_entry(AcpiDeviceIf *adev, int uid,
80e5db30 292 const CPUArchIdList *apic_ids, GArray *entry);
ac35f13b 293
4c5b10b7
JS
294/* e820 types */
295#define E820_RAM 1
296#define E820_RESERVED 2
297#define E820_ACPI 3
298#define E820_NVS 4
299#define E820_UNUSABLE 5
300
301int e820_add_entry(uint64_t, uint64_t, uint32_t);
7bf8ef19
GS
302int e820_get_num_entries(void);
303bool e820_get_entry(int, uint32_t, uint64_t *, uint64_t *);
4c5b10b7 304
9bf2650b
CH
305extern GlobalProperty pc_compat_4_0[];
306extern const size_t pc_compat_4_0_len;
307
abd93cc7
MAL
308extern GlobalProperty pc_compat_3_1[];
309extern const size_t pc_compat_3_1_len;
84e060bf 310
ddb3235d
MAL
311extern GlobalProperty pc_compat_3_0[];
312extern const size_t pc_compat_3_0_len;
9b4cf107 313
0d47310b
MAL
314extern GlobalProperty pc_compat_2_12[];
315extern const size_t pc_compat_2_12_len;
968ee4ad 316
43df70a9
MAL
317extern GlobalProperty pc_compat_2_11[];
318extern const size_t pc_compat_2_11_len;
df47ce8a 319
503224f4
MAL
320extern GlobalProperty pc_compat_2_10[];
321extern const size_t pc_compat_2_10_len;
a6fd5b0e 322
3e803152
MAL
323extern GlobalProperty pc_compat_2_9[];
324extern const size_t pc_compat_2_9_len;
465238d9 325
edc24ccd
MAL
326extern GlobalProperty pc_compat_2_8[];
327extern const size_t pc_compat_2_8_len;
abc62c89 328
5a995064
MAL
329extern GlobalProperty pc_compat_2_7[];
330extern const size_t pc_compat_2_7_len;
14c985cf 331
ff8f261f
MAL
332extern GlobalProperty pc_compat_2_6[];
333extern const size_t pc_compat_2_6_len;
d86c1451 334
fe759610
MAL
335extern GlobalProperty pc_compat_2_5[];
336extern const size_t pc_compat_2_5_len;
240240d5 337
2f99b9c2
MAL
338extern GlobalProperty pc_compat_2_4[];
339extern const size_t pc_compat_2_4_len;
340
8995dd90
MAL
341extern GlobalProperty pc_compat_2_3[];
342extern const size_t pc_compat_2_3_len;
343
1c30044e
MAL
344extern GlobalProperty pc_compat_2_2[];
345extern const size_t pc_compat_2_2_len;
346
c4fc5695
MAL
347extern GlobalProperty pc_compat_2_1[];
348extern const size_t pc_compat_2_1_len;
349
a310e653
MAL
350extern GlobalProperty pc_compat_2_0[];
351extern const size_t pc_compat_2_0_len;
352
353extern GlobalProperty pc_compat_1_7[];
354extern const size_t pc_compat_1_7_len;
355
356extern GlobalProperty pc_compat_1_6[];
357extern const size_t pc_compat_1_6_len;
358
359extern GlobalProperty pc_compat_1_5[];
360extern const size_t pc_compat_1_5_len;
361
362extern GlobalProperty pc_compat_1_4[];
363extern const size_t pc_compat_1_4_len;
364
cd6c1b70
EH
365/* Helper for setting model-id for CPU models that changed model-id
366 * depending on QEMU versions up to QEMU 2.4.
367 */
368#define PC_CPU_MODEL_IDS(v) \
6c36bddf
EH
369 { "qemu32-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },\
370 { "qemu64-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },\
371 { "athlon-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },
cd6c1b70 372
25519b06 373#define DEFINE_PC_MACHINE(suffix, namestr, initfn, optsfn) \
865906f7
EH
374 static void pc_machine_##suffix##_class_init(ObjectClass *oc, void *data) \
375 { \
376 MachineClass *mc = MACHINE_CLASS(oc); \
377 optsfn(mc); \
865906f7
EH
378 mc->init = initfn; \
379 } \
380 static const TypeInfo pc_machine_type_##suffix = { \
381 .name = namestr TYPE_MACHINE_SUFFIX, \
382 .parent = TYPE_PC_MACHINE, \
383 .class_init = pc_machine_##suffix##_class_init, \
384 }; \
61f219df
EH
385 static void pc_machine_init_##suffix(void) \
386 { \
865906f7 387 type_register(&pc_machine_type_##suffix); \
61f219df 388 } \
0e6aac87 389 type_init(pc_machine_init_##suffix)
61f219df 390
bd8107d7 391extern void igd_passthrough_isa_bridge_create(PCIBus *bus, uint16_t gpu_dev_id);
87ecb68b 392#endif