]> git.proxmox.com Git - mirror_qemu.git/blob - include/hw/i386/pc.h
hw/i386/pc: Extract pc_i8259_create()
[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_register_ferr_irq(qemu_irq irq);
180 void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
181
182 void pc_hot_add_cpu(MachineState *ms, const int64_t id, Error **errp);
183 void pc_smp_parse(MachineState *ms, QemuOpts *opts);
184
185 void pc_guest_info_init(PCMachineState *pcms);
186
187 #define PCI_HOST_PROP_PCI_HOLE_START "pci-hole-start"
188 #define PCI_HOST_PROP_PCI_HOLE_END "pci-hole-end"
189 #define PCI_HOST_PROP_PCI_HOLE64_START "pci-hole64-start"
190 #define PCI_HOST_PROP_PCI_HOLE64_END "pci-hole64-end"
191 #define PCI_HOST_PROP_PCI_HOLE64_SIZE "pci-hole64-size"
192 #define PCI_HOST_BELOW_4G_MEM_SIZE "below-4g-mem-size"
193 #define PCI_HOST_ABOVE_4G_MEM_SIZE "above-4g-mem-size"
194
195
196 void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory,
197 MemoryRegion *pci_address_space);
198
199 void xen_load_linux(PCMachineState *pcms);
200 void pc_memory_init(PCMachineState *pcms,
201 MemoryRegion *system_memory,
202 MemoryRegion *rom_memory,
203 MemoryRegion **ram_memory);
204 uint64_t pc_pci_hole64_start(void);
205 qemu_irq pc_allocate_cpu_irq(void);
206 DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus);
207 void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi,
208 ISADevice **rtc_state,
209 bool create_fdctrl,
210 bool no_vmport,
211 bool has_pit,
212 uint32_t hpet_irqs);
213 void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd);
214 void pc_cmos_init(PCMachineState *pcms,
215 BusState *ide0, BusState *ide1,
216 ISADevice *s);
217 void pc_nic_init(PCMachineClass *pcmc, ISABus *isa_bus, PCIBus *pci_bus);
218 void pc_pci_device_init(PCIBus *pci_bus);
219
220 typedef void (*cpu_set_smm_t)(int smm, void *arg);
221
222 void pc_i8259_create(ISABus *isa_bus, qemu_irq *i8259_irqs);
223 void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name);
224
225 ISADevice *pc_find_fdc0(void);
226 int cmos_get_fd_drive_type(FloppyDriveType fd0);
227
228 #define FW_CFG_IO_BASE 0x510
229
230 #define PORT92_A20_LINE "a20"
231
232 /* acpi_piix.c */
233
234 I2CBus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
235 qemu_irq sci_irq, qemu_irq smi_irq,
236 int smm_enabled, DeviceState **piix4_pm);
237
238 /* hpet.c */
239 extern int no_hpet;
240
241 /* piix_pci.c */
242 struct PCII440FXState;
243 typedef struct PCII440FXState PCII440FXState;
244
245 #define TYPE_I440FX_PCI_HOST_BRIDGE "i440FX-pcihost"
246 #define TYPE_I440FX_PCI_DEVICE "i440FX"
247
248 #define TYPE_IGD_PASSTHROUGH_I440FX_PCI_DEVICE "igd-passthrough-i440FX"
249
250 /*
251 * Reset Control Register: PCI-accessible ISA-Compatible Register at address
252 * 0xcf9, provided by the PCI/ISA bridge (PIIX3 PCI function 0, 8086:7000).
253 */
254 #define RCR_IOPORT 0xcf9
255
256 PCIBus *i440fx_init(const char *host_type, const char *pci_type,
257 PCII440FXState **pi440fx_state, int *piix_devfn,
258 ISABus **isa_bus, qemu_irq *pic,
259 MemoryRegion *address_space_mem,
260 MemoryRegion *address_space_io,
261 ram_addr_t ram_size,
262 ram_addr_t below_4g_mem_size,
263 ram_addr_t above_4g_mem_size,
264 MemoryRegion *pci_memory,
265 MemoryRegion *ram_memory);
266
267 PCIBus *find_i440fx(void);
268 /* piix4.c */
269 extern PCIDevice *piix4_dev;
270 int piix4_init(PCIBus *bus, ISABus **isa_bus, int devfn);
271
272 /* pc_sysfw.c */
273 void pc_system_flash_create(PCMachineState *pcms);
274 void pc_system_firmware_init(PCMachineState *pcms, MemoryRegion *rom_memory);
275
276 /* acpi-build.c */
277 void pc_madt_cpu_entry(AcpiDeviceIf *adev, int uid,
278 const CPUArchIdList *apic_ids, GArray *entry);
279
280 extern GlobalProperty pc_compat_4_1[];
281 extern const size_t pc_compat_4_1_len;
282
283 extern GlobalProperty pc_compat_4_0[];
284 extern const size_t pc_compat_4_0_len;
285
286 extern GlobalProperty pc_compat_3_1[];
287 extern const size_t pc_compat_3_1_len;
288
289 extern GlobalProperty pc_compat_3_0[];
290 extern const size_t pc_compat_3_0_len;
291
292 extern GlobalProperty pc_compat_2_12[];
293 extern const size_t pc_compat_2_12_len;
294
295 extern GlobalProperty pc_compat_2_11[];
296 extern const size_t pc_compat_2_11_len;
297
298 extern GlobalProperty pc_compat_2_10[];
299 extern const size_t pc_compat_2_10_len;
300
301 extern GlobalProperty pc_compat_2_9[];
302 extern const size_t pc_compat_2_9_len;
303
304 extern GlobalProperty pc_compat_2_8[];
305 extern const size_t pc_compat_2_8_len;
306
307 extern GlobalProperty pc_compat_2_7[];
308 extern const size_t pc_compat_2_7_len;
309
310 extern GlobalProperty pc_compat_2_6[];
311 extern const size_t pc_compat_2_6_len;
312
313 extern GlobalProperty pc_compat_2_5[];
314 extern const size_t pc_compat_2_5_len;
315
316 extern GlobalProperty pc_compat_2_4[];
317 extern const size_t pc_compat_2_4_len;
318
319 extern GlobalProperty pc_compat_2_3[];
320 extern const size_t pc_compat_2_3_len;
321
322 extern GlobalProperty pc_compat_2_2[];
323 extern const size_t pc_compat_2_2_len;
324
325 extern GlobalProperty pc_compat_2_1[];
326 extern const size_t pc_compat_2_1_len;
327
328 extern GlobalProperty pc_compat_2_0[];
329 extern const size_t pc_compat_2_0_len;
330
331 extern GlobalProperty pc_compat_1_7[];
332 extern const size_t pc_compat_1_7_len;
333
334 extern GlobalProperty pc_compat_1_6[];
335 extern const size_t pc_compat_1_6_len;
336
337 extern GlobalProperty pc_compat_1_5[];
338 extern const size_t pc_compat_1_5_len;
339
340 extern GlobalProperty pc_compat_1_4[];
341 extern const size_t pc_compat_1_4_len;
342
343 /* Helper for setting model-id for CPU models that changed model-id
344 * depending on QEMU versions up to QEMU 2.4.
345 */
346 #define PC_CPU_MODEL_IDS(v) \
347 { "qemu32-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },\
348 { "qemu64-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },\
349 { "athlon-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },
350
351 #define DEFINE_PC_MACHINE(suffix, namestr, initfn, optsfn) \
352 static void pc_machine_##suffix##_class_init(ObjectClass *oc, void *data) \
353 { \
354 MachineClass *mc = MACHINE_CLASS(oc); \
355 optsfn(mc); \
356 mc->init = initfn; \
357 } \
358 static const TypeInfo pc_machine_type_##suffix = { \
359 .name = namestr TYPE_MACHINE_SUFFIX, \
360 .parent = TYPE_PC_MACHINE, \
361 .class_init = pc_machine_##suffix##_class_init, \
362 }; \
363 static void pc_machine_init_##suffix(void) \
364 { \
365 type_register(&pc_machine_type_##suffix); \
366 } \
367 type_init(pc_machine_init_##suffix)
368
369 extern void igd_passthrough_isa_bridge_create(PCIBus *bus, uint16_t gpu_dev_id);
370 #endif