]> git.proxmox.com Git - mirror_qemu.git/blob - include/hw/i386/pc.h
Merge remote-tracking branch 'remotes/vivier2/tags/trivial-branch-pull-request' into...
[mirror_qemu.git] / include / hw / i386 / pc.h
1 #ifndef HW_PC_H
2 #define HW_PC_H
3
4 #include "exec/memory.h"
5 #include "hw/boards.h"
6 #include "hw/isa/isa.h"
7 #include "hw/block/fdc.h"
8 #include "hw/block/flash.h"
9 #include "net/net.h"
10 #include "hw/i386/ioapic.h"
11 #include "hw/i386/x86.h"
12
13 #include "qemu/range.h"
14 #include "qemu/bitmap.h"
15 #include "qemu/module.h"
16 #include "hw/pci/pci.h"
17 #include "hw/mem/pc-dimm.h"
18 #include "hw/mem/nvdimm.h"
19 #include "hw/acpi/acpi_dev_interface.h"
20
21 #define HPET_INTCAP "hpet-intcap"
22
23 /**
24 * PCMachineState:
25 * @acpi_dev: link to ACPI PM device that performs ACPI hotplug handling
26 * @boot_cpus: number of present VCPUs
27 * @smp_dies: number of dies per one package
28 */
29 struct PCMachineState {
30 /*< private >*/
31 X86MachineState parent_obj;
32
33 /* <public> */
34
35 /* State for other subsystems/APIs: */
36 Notifier machine_done;
37
38 /* Pointers to devices and objects: */
39 HotplugHandler *acpi_dev;
40 PCIBus *bus;
41 I2CBus *smbus;
42 PFlashCFI01 *flash[2];
43
44 /* Configuration options: */
45 OnOffAuto vmport;
46 OnOffAuto smm;
47
48 bool acpi_build_enabled;
49 bool smbus_enabled;
50 bool sata_enabled;
51 bool pit_enabled;
52
53 /* NUMA information: */
54 uint64_t numa_nodes;
55 uint64_t *node_mem;
56
57 /* ACPI Memory hotplug IO base address */
58 hwaddr memhp_io_base;
59 };
60
61 #define PC_MACHINE_ACPI_DEVICE_PROP "acpi-device"
62 #define PC_MACHINE_DEVMEM_REGION_SIZE "device-memory-region-size"
63 #define PC_MACHINE_VMPORT "vmport"
64 #define PC_MACHINE_SMM "smm"
65 #define PC_MACHINE_SMBUS "smbus"
66 #define PC_MACHINE_SATA "sata"
67 #define PC_MACHINE_PIT "pit"
68
69 /**
70 * PCMachineClass:
71 *
72 * Compat fields:
73 *
74 * @enforce_aligned_dimm: check that DIMM's address/size is aligned by
75 * backend's alignment value if provided
76 * @acpi_data_size: Size of the chunk of memory at the top of RAM
77 * for the BIOS ACPI tables and other BIOS
78 * datastructures.
79 * @gigabyte_align: Make sure that guest addresses aligned at
80 * 1Gbyte boundaries get mapped to host
81 * addresses aligned at 1Gbyte boundaries. This
82 * way we can use 1GByte pages in the host.
83 *
84 */
85 typedef struct PCMachineClass {
86 /*< private >*/
87 X86MachineClass parent_class;
88
89 /*< public >*/
90
91 /* Device configuration: */
92 bool pci_enabled;
93 bool kvmclock_enabled;
94 const char *default_nic_model;
95
96 /* Compat options: */
97
98 /* Default CPU model version. See x86_cpu_set_default_version(). */
99 int default_cpu_version;
100
101 /* ACPI compat: */
102 bool has_acpi_build;
103 bool rsdp_in_ram;
104 int legacy_acpi_table_size;
105 unsigned acpi_data_size;
106 bool do_not_add_smb_acpi;
107
108 /* SMBIOS compat: */
109 bool smbios_defaults;
110 bool smbios_legacy_mode;
111 bool smbios_uuid_encoded;
112
113 /* RAM / address space compat: */
114 bool gigabyte_align;
115 bool has_reserved_memory;
116 bool enforce_aligned_dimm;
117 bool broken_reserved_end;
118
119 /* TSC rate migration: */
120 bool save_tsc_khz;
121 /* generate legacy CPU hotplug AML */
122 bool legacy_cpu_hotplug;
123
124 /* use DMA capable linuxboot option rom */
125 bool linuxboot_dma_enabled;
126
127 /* use PVH to load kernels that support this feature */
128 bool pvh_enabled;
129 } PCMachineClass;
130
131 #define TYPE_PC_MACHINE "generic-pc-machine"
132 #define PC_MACHINE(obj) \
133 OBJECT_CHECK(PCMachineState, (obj), TYPE_PC_MACHINE)
134 #define PC_MACHINE_GET_CLASS(obj) \
135 OBJECT_GET_CLASS(PCMachineClass, (obj), TYPE_PC_MACHINE)
136 #define PC_MACHINE_CLASS(klass) \
137 OBJECT_CLASS_CHECK(PCMachineClass, (klass), TYPE_PC_MACHINE)
138
139 /* i8259.c */
140
141 extern DeviceState *isa_pic;
142 qemu_irq *i8259_init(ISABus *bus, qemu_irq parent_irq);
143 qemu_irq *kvm_i8259_init(ISABus *bus);
144 int pic_read_irq(DeviceState *d);
145 int pic_get_output(DeviceState *d);
146
147 /* ioapic.c */
148
149 /* Global System Interrupts */
150
151 #define GSI_NUM_PINS IOAPIC_NUM_PINS
152
153 typedef struct GSIState {
154 qemu_irq i8259_irq[ISA_NUM_IRQS];
155 qemu_irq ioapic_irq[IOAPIC_NUM_PINS];
156 } GSIState;
157
158 void gsi_handler(void *opaque, int n, int level);
159
160 GSIState *pc_gsi_create(qemu_irq **irqs, bool pci_enabled);
161
162 /* vmport.c */
163 #define TYPE_VMPORT "vmport"
164 typedef uint32_t (VMPortReadFunc)(void *opaque, uint32_t address);
165
166 static inline void vmport_init(ISABus *bus)
167 {
168 isa_create_simple(bus, TYPE_VMPORT);
169 }
170
171 void vmport_register(unsigned char command, VMPortReadFunc *func, void *opaque);
172 void vmmouse_get_data(uint32_t *data);
173 void vmmouse_set_data(const uint32_t *data);
174
175 /* pc.c */
176 extern int fd_bootchk;
177
178 bool pc_machine_is_smm_enabled(PCMachineState *pcms);
179 void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
180
181 void pc_hot_add_cpu(MachineState *ms, const int64_t id, Error **errp);
182 void pc_smp_parse(MachineState *ms, QemuOpts *opts);
183
184 void pc_guest_info_init(PCMachineState *pcms);
185
186 #define PCI_HOST_PROP_PCI_HOLE_START "pci-hole-start"
187 #define PCI_HOST_PROP_PCI_HOLE_END "pci-hole-end"
188 #define PCI_HOST_PROP_PCI_HOLE64_START "pci-hole64-start"
189 #define PCI_HOST_PROP_PCI_HOLE64_END "pci-hole64-end"
190 #define PCI_HOST_PROP_PCI_HOLE64_SIZE "pci-hole64-size"
191 #define PCI_HOST_BELOW_4G_MEM_SIZE "below-4g-mem-size"
192 #define PCI_HOST_ABOVE_4G_MEM_SIZE "above-4g-mem-size"
193
194
195 void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory,
196 MemoryRegion *pci_address_space);
197
198 void xen_load_linux(PCMachineState *pcms);
199 void pc_memory_init(PCMachineState *pcms,
200 MemoryRegion *system_memory,
201 MemoryRegion *rom_memory,
202 MemoryRegion **ram_memory);
203 uint64_t pc_pci_hole64_start(void);
204 qemu_irq pc_allocate_cpu_irq(void);
205 DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus);
206 void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi,
207 ISADevice **rtc_state,
208 bool create_fdctrl,
209 bool no_vmport,
210 bool has_pit,
211 uint32_t hpet_irqs);
212 void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd);
213 void pc_cmos_init(PCMachineState *pcms,
214 BusState *ide0, BusState *ide1,
215 ISADevice *s);
216 void pc_nic_init(PCMachineClass *pcmc, ISABus *isa_bus, PCIBus *pci_bus);
217 void pc_pci_device_init(PCIBus *pci_bus);
218
219 typedef void (*cpu_set_smm_t)(int smm, void *arg);
220
221 void pc_i8259_create(ISABus *isa_bus, qemu_irq *i8259_irqs);
222 void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name);
223
224 ISADevice *pc_find_fdc0(void);
225 int cmos_get_fd_drive_type(FloppyDriveType fd0);
226
227 #define FW_CFG_IO_BASE 0x510
228
229 #define PORT92_A20_LINE "a20"
230
231 /* hpet.c */
232 extern int no_hpet;
233
234 /* pc_sysfw.c */
235 void pc_system_flash_create(PCMachineState *pcms);
236 void pc_system_firmware_init(PCMachineState *pcms, MemoryRegion *rom_memory);
237
238 /* acpi-build.c */
239 void pc_madt_cpu_entry(AcpiDeviceIf *adev, int uid,
240 const CPUArchIdList *apic_ids, GArray *entry);
241
242 extern GlobalProperty pc_compat_4_1[];
243 extern const size_t pc_compat_4_1_len;
244
245 extern GlobalProperty pc_compat_4_0[];
246 extern const size_t pc_compat_4_0_len;
247
248 extern GlobalProperty pc_compat_3_1[];
249 extern const size_t pc_compat_3_1_len;
250
251 extern GlobalProperty pc_compat_3_0[];
252 extern const size_t pc_compat_3_0_len;
253
254 extern GlobalProperty pc_compat_2_12[];
255 extern const size_t pc_compat_2_12_len;
256
257 extern GlobalProperty pc_compat_2_11[];
258 extern const size_t pc_compat_2_11_len;
259
260 extern GlobalProperty pc_compat_2_10[];
261 extern const size_t pc_compat_2_10_len;
262
263 extern GlobalProperty pc_compat_2_9[];
264 extern const size_t pc_compat_2_9_len;
265
266 extern GlobalProperty pc_compat_2_8[];
267 extern const size_t pc_compat_2_8_len;
268
269 extern GlobalProperty pc_compat_2_7[];
270 extern const size_t pc_compat_2_7_len;
271
272 extern GlobalProperty pc_compat_2_6[];
273 extern const size_t pc_compat_2_6_len;
274
275 extern GlobalProperty pc_compat_2_5[];
276 extern const size_t pc_compat_2_5_len;
277
278 extern GlobalProperty pc_compat_2_4[];
279 extern const size_t pc_compat_2_4_len;
280
281 extern GlobalProperty pc_compat_2_3[];
282 extern const size_t pc_compat_2_3_len;
283
284 extern GlobalProperty pc_compat_2_2[];
285 extern const size_t pc_compat_2_2_len;
286
287 extern GlobalProperty pc_compat_2_1[];
288 extern const size_t pc_compat_2_1_len;
289
290 extern GlobalProperty pc_compat_2_0[];
291 extern const size_t pc_compat_2_0_len;
292
293 extern GlobalProperty pc_compat_1_7[];
294 extern const size_t pc_compat_1_7_len;
295
296 extern GlobalProperty pc_compat_1_6[];
297 extern const size_t pc_compat_1_6_len;
298
299 extern GlobalProperty pc_compat_1_5[];
300 extern const size_t pc_compat_1_5_len;
301
302 extern GlobalProperty pc_compat_1_4[];
303 extern const size_t pc_compat_1_4_len;
304
305 /* Helper for setting model-id for CPU models that changed model-id
306 * depending on QEMU versions up to QEMU 2.4.
307 */
308 #define PC_CPU_MODEL_IDS(v) \
309 { "qemu32-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },\
310 { "qemu64-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },\
311 { "athlon-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },
312
313 #define DEFINE_PC_MACHINE(suffix, namestr, initfn, optsfn) \
314 static void pc_machine_##suffix##_class_init(ObjectClass *oc, void *data) \
315 { \
316 MachineClass *mc = MACHINE_CLASS(oc); \
317 optsfn(mc); \
318 mc->init = initfn; \
319 } \
320 static const TypeInfo pc_machine_type_##suffix = { \
321 .name = namestr TYPE_MACHINE_SUFFIX, \
322 .parent = TYPE_PC_MACHINE, \
323 .class_init = pc_machine_##suffix##_class_init, \
324 }; \
325 static void pc_machine_init_##suffix(void) \
326 { \
327 type_register(&pc_machine_type_##suffix); \
328 } \
329 type_init(pc_machine_init_##suffix)
330
331 extern void igd_passthrough_isa_bridge_create(PCIBus *bus, uint16_t gpu_dev_id);
332 #endif