]> Git Repo - qemu.git/blame - include/hw/i386/pc.h
Merge remote-tracking branch 'remotes/qmp-unstable/queue/qmp' into staging
[qemu.git] / include / hw / i386 / pc.h
CommitLineData
87ecb68b
PB
1#ifndef HW_PC_H
2#define HW_PC_H
376253ec
AL
3
4#include "qemu-common.h"
022c62cb 5#include "exec/memory.h"
0d09e41a
PB
6#include "hw/isa/isa.h"
7#include "hw/block/fdc.h"
1422e32d 8#include "net/net.h"
0d09e41a 9#include "hw/i386/ioapic.h"
376253ec 10
3459a625 11#include "qemu/range.h"
b20c9bd5
MT
12#include "qemu/bitmap.h"
13#include "sysemu/sysemu.h"
14#include "hw/pci/pci.h"
3459a625 15
7a10ef51
LPF
16#define HPET_INTCAP "hpet-intcap"
17
87ecb68b
PB
18/* PC-style peripherals (also used by other machines). */
19
3459a625
MT
20typedef struct PcPciInfo {
21 Range w32;
22 Range w64;
23} PcPciInfo;
24
f854ecc7
MT
25#define ACPI_PM_PROP_S3_DISABLED "disable_s3"
26#define ACPI_PM_PROP_S4_DISABLED "disable_s4"
27#define ACPI_PM_PROP_S4_VAL "s4_val"
28#define ACPI_PM_PROP_SCI_INT "sci_int"
29#define ACPI_PM_PROP_ACPI_ENABLE_CMD "acpi_enable_cmd"
30#define ACPI_PM_PROP_ACPI_DISABLE_CMD "acpi_disable_cmd"
31#define ACPI_PM_PROP_PM_IO_BASE "pm_io_base"
32#define ACPI_PM_PROP_GPE0_BLK "gpe0_blk"
33#define ACPI_PM_PROP_GPE0_BLK_LEN "gpe0_blk_len"
34
3459a625 35struct PcGuestInfo {
f8c457b8 36 bool has_pci_info;
6dd2a5c9 37 bool isapc_ram_fw;
f30ee8a9 38 hwaddr ram_size, ram_size_below_4g;
b20c9bd5
MT
39 unsigned apic_id_limit;
40 bool apic_xrupt_override;
41 uint64_t numa_nodes;
42 uint64_t *node_mem;
43 uint64_t *node_cpu;
3459a625 44 FWCfgState *fw_cfg;
72c194f7 45 bool has_acpi_build;
3459a625
MT
46};
47
87ecb68b 48/* parallel.c */
48a18b3c 49static inline bool parallel_init(ISABus *bus, int index, CharDriverState *chr)
defdb20e 50{
4a17cc4f
AF
51 DeviceState *dev;
52 ISADevice *isadev;
defdb20e 53
4a17cc4f
AF
54 isadev = isa_try_create(bus, "isa-parallel");
55 if (!isadev) {
73531538
BS
56 return false;
57 }
4a17cc4f
AF
58 dev = DEVICE(isadev);
59 qdev_prop_set_uint32(dev, "index", index);
60 qdev_prop_set_chr(dev, "chardev", chr);
61 if (qdev_init(dev) < 0) {
defdb20e
BS
62 return false;
63 }
64 return true;
65}
66
63858cd9 67bool parallel_mm_init(MemoryRegion *address_space,
a8170e5e 68 hwaddr base, int it_shift, qemu_irq irq,
defdb20e 69 CharDriverState *chr);
87ecb68b
PB
70
71/* i8259.c */
72
9aa78c42 73extern DeviceState *isa_pic;
48a18b3c 74qemu_irq *i8259_init(ISABus *bus, qemu_irq parent_irq);
10b61882 75qemu_irq *kvm_i8259_init(ISABus *bus);
9aa78c42
JK
76int pic_read_irq(DeviceState *d);
77int pic_get_output(DeviceState *d);
84f2d0ea
WX
78void pic_info(Monitor *mon, const QDict *qdict);
79void irq_info(Monitor *mon, const QDict *qdict);
87ecb68b 80
b881fbe9 81/* Global System Interrupts */
96051119 82
b881fbe9 83#define GSI_NUM_PINS IOAPIC_NUM_PINS
845773ab 84
b881fbe9 85typedef struct GSIState {
43a0db35 86 qemu_irq i8259_irq[ISA_NUM_IRQS];
b881fbe9
JK
87 qemu_irq ioapic_irq[IOAPIC_NUM_PINS];
88} GSIState;
89
90void gsi_handler(void *opaque, int n, int level);
845773ab 91
87ecb68b 92/* vmport.c */
d67f679d
JK
93typedef uint32_t (VMPortReadFunc)(void *opaque, uint32_t address);
94
48a18b3c 95static inline void vmport_init(ISABus *bus)
6872ef61 96{
48a18b3c 97 isa_create_simple(bus, "vmport");
6872ef61 98}
d67f679d
JK
99
100void vmport_register(unsigned char command, VMPortReadFunc *func, void *opaque);
86d86414
BS
101void vmmouse_get_data(uint32_t *data);
102void vmmouse_set_data(const uint32_t *data);
87ecb68b 103
87ecb68b
PB
104/* pckbd.c */
105
106void i8042_init(qemu_irq kbd_irq, qemu_irq mouse_irq, uint32_t io_base);
107void i8042_mm_init(qemu_irq kbd_irq, qemu_irq mouse_irq,
dbff76ac 108 MemoryRegion *region, ram_addr_t size,
a8170e5e 109 hwaddr mask);
956a3e6b
BS
110void i8042_isa_mouse_fake_event(void *opaque);
111void i8042_setup_a20_line(ISADevice *dev, qemu_irq *a20_out);
87ecb68b 112
87ecb68b
PB
113/* pc.c */
114extern int fd_bootchk;
115
8e78eb28 116void pc_register_ferr_irq(qemu_irq irq);
845773ab
IY
117void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
118
62fc403f 119void pc_cpus_init(const char *cpu_model, DeviceState *icc_bridge);
c649983b 120void pc_hot_add_cpu(const int64_t id, Error **errp);
f7e4dd6c 121void pc_acpi_init(const char *default_dsdt);
3459a625
MT
122
123PcGuestInfo *pc_guest_info_init(ram_addr_t below_4g_mem_size,
124 ram_addr_t above_4g_mem_size);
125
39848901
IM
126#define PCI_HOST_PROP_PCI_HOLE_START "pci-hole-start"
127#define PCI_HOST_PROP_PCI_HOLE_END "pci-hole-end"
128#define PCI_HOST_PROP_PCI_HOLE64_START "pci-hole64-start"
129#define PCI_HOST_PROP_PCI_HOLE64_END "pci-hole64-end"
130#define PCI_HOST_PROP_PCI_HOLE64_SIZE "pci-hole64-size"
1466cef3
MT
131#define DEFAULT_PCI_HOLE64_SIZE (~0x0ULL)
132
39848901 133
83d08f26
MT
134void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory,
135 MemoryRegion *pci_address_space);
39848901 136
a88b362c
LE
137FWCfgState *pc_memory_init(MemoryRegion *system_memory,
138 const char *kernel_filename,
139 const char *kernel_cmdline,
140 const char *initrd_filename,
141 ram_addr_t below_4g_mem_size,
142 ram_addr_t above_4g_mem_size,
143 MemoryRegion *rom_memory,
3459a625
MT
144 MemoryRegion **ram_memory,
145 PcGuestInfo *guest_info);
845773ab 146qemu_irq *pc_allocate_cpu_irq(void);
48a18b3c
HP
147DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus);
148void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi,
1611977c 149 ISADevice **rtc_state,
34d4260e 150 ISADevice **floppy,
7a10ef51
LPF
151 bool no_vmport,
152 uint32 hpet_irqs);
48a18b3c 153void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd);
845773ab 154void pc_cmos_init(ram_addr_t ram_size, ram_addr_t above_4g_mem_size,
c0897e0c 155 const char *boot_device,
34d4260e 156 ISADevice *floppy, BusState *ide0, BusState *ide1,
63ffb564 157 ISADevice *s);
9011a1a7 158void pc_nic_init(ISABus *isa_bus, PCIBus *pci_bus);
845773ab 159void pc_pci_device_init(PCIBus *pci_bus);
8e78eb28 160
f885f1ea
IY
161typedef void (*cpu_set_smm_t)(int smm, void *arg);
162void cpu_smm_register(cpu_set_smm_t callback, void *arg);
163
a39e3564
JB
164void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name);
165
9d5e77a2 166/* acpi_piix.c */
53b67b30 167
a5c82852
AF
168I2CBus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
169 qemu_irq sci_irq, qemu_irq smi_irq,
170 int kvm_enabled, FWCfgState *fw_cfg);
87ecb68b 171void piix4_smbus_register_device(SMBusDevice *dev, uint8_t addr);
87ecb68b 172
16b29ae1
AL
173/* hpet.c */
174extern int no_hpet;
175
87ecb68b 176/* piix_pci.c */
0a3bacf3
JQ
177struct PCII440FXState;
178typedef struct PCII440FXState PCII440FXState;
179
1e39101c 180PCIBus *i440fx_init(PCII440FXState **pi440fx_state, int *piix_devfn,
60573079 181 ISABus **isa_bus, qemu_irq *pic,
aee97b84
AK
182 MemoryRegion *address_space_mem,
183 MemoryRegion *address_space_io,
ae0a5466 184 ram_addr_t ram_size,
ddaaefb4 185 ram_addr_t below_4g_mem_size,
39848901 186 ram_addr_t above_4g_mem_size,
ae0a5466
AK
187 MemoryRegion *pci_memory,
188 MemoryRegion *ram_memory);
87ecb68b 189
277e9340 190PCIBus *find_i440fx(void);
823e675a 191/* piix4.c */
b1d8e52e 192extern PCIDevice *piix4_dev;
142e9787 193int piix4_init(PCIBus *bus, ISABus **isa_bus, int devfn);
87ecb68b
PB
194
195/* vga.c */
cb5a7aa8 196enum vga_retrace_method {
197 VGA_RETRACE_DUMB,
198 VGA_RETRACE_PRECISE
199};
200
201extern enum vga_retrace_method vga_retrace_method;
87ecb68b 202
a8170e5e
AK
203int isa_vga_mm_init(hwaddr vram_base,
204 hwaddr ctrl_base, int it_shift,
be20f9e9 205 MemoryRegion *address_space);
87ecb68b 206
87ecb68b 207/* ne2000.c */
48a18b3c 208static inline bool isa_ne2000_init(ISABus *bus, int base, int irq, NICInfo *nd)
60a14ad3 209{
4a17cc4f
AF
210 DeviceState *dev;
211 ISADevice *isadev;
87ecb68b 212
60a14ad3
BS
213 qemu_check_nic_model(nd, "ne2k_isa");
214
4a17cc4f
AF
215 isadev = isa_try_create(bus, "ne2k_isa");
216 if (!isadev) {
cd1b8a8b
BS
217 return false;
218 }
4a17cc4f
AF
219 dev = DEVICE(isadev);
220 qdev_prop_set_uint32(dev, "iobase", base);
221 qdev_prop_set_uint32(dev, "irq", irq);
222 qdev_set_nic_properties(dev, nd);
223 qdev_init_nofail(dev);
cd1b8a8b 224 return true;
60a14ad3 225}
87ecb68b 226
cbc5b5f3 227/* pc_sysfw.c */
6dd2a5c9
PB
228void pc_system_firmware_init(MemoryRegion *rom_memory,
229 bool isapc_ram_fw);
cbc5b5f3 230
3ab135f3 231/* pvpanic.c */
309cd62d 232uint16_t pvpanic_port(void);
3ab135f3 233
4c5b10b7
JS
234/* e820 types */
235#define E820_RAM 1
236#define E820_RESERVED 2
237#define E820_ACPI 3
238#define E820_NVS 4
239#define E820_UNUSABLE 5
240
241int e820_add_entry(uint64_t, uint64_t, uint32_t);
7bf8ef19
GS
242int e820_get_num_entries(void);
243bool e820_get_entry(int, uint32_t, uint64_t *, uint64_t *);
4c5b10b7 244
9df11c9f
GS
245#define PC_Q35_COMPAT_2_0 \
246 PC_COMPAT_2_0
247
7a10ef51 248#define PC_Q35_COMPAT_1_7 \
5319dc7b 249 PC_COMPAT_1_7, \
9df11c9f 250 PC_Q35_COMPAT_2_0, \
7a10ef51
LPF
251 {\
252 .driver = "hpet",\
253 .property = HPET_INTCAP,\
254 .value = stringify(4),\
255 }
256
257#define PC_Q35_COMPAT_1_6 \
258 PC_COMPAT_1_6, \
259 PC_Q35_COMPAT_1_7
260
261#define PC_Q35_COMPAT_1_5 \
262 PC_COMPAT_1_5, \
263 PC_Q35_COMPAT_1_6
264
265#define PC_Q35_COMPAT_1_4 \
266 PC_COMPAT_1_4, \
267 PC_Q35_COMPAT_1_5
268
9df11c9f
GS
269#define PC_COMPAT_2_0 \
270 {\
aa93200b
GS
271 .driver = "apic",\
272 .property = "version",\
273 .value = stringify(0x11),\
9df11c9f
GS
274 }
275
5319dc7b 276#define PC_COMPAT_1_7 \
9df11c9f 277 PC_COMPAT_2_0, \
5319dc7b
GH
278 {\
279 .driver = TYPE_USB_DEVICE,\
280 .property = "msos-desc",\
281 .value = "no",\
9e047b98
MT
282 },\
283 {\
284 .driver = "PIIX4_PM",\
285 .property = "acpi-pci-hotplug-with-bridge-support",\
286 .value = "off",\
5319dc7b
GH
287 }
288
e9845f09 289#define PC_COMPAT_1_6 \
5319dc7b 290 PC_COMPAT_1_7, \
e9845f09
VM
291 {\
292 .driver = "e1000",\
293 .property = "mitigation",\
294 .value = "off",\
f8e6a11a
EH
295 },{\
296 .driver = "qemu64-" TYPE_X86_CPU,\
297 .property = "model",\
298 .value = stringify(2),\
299 },{\
300 .driver = "qemu32-" TYPE_X86_CPU,\
301 .property = "model",\
302 .value = stringify(3),\
04c7d8b8
CR
303 },{\
304 .driver = "i440FX-pcihost",\
305 .property = "short_root_bus",\
306 .value = stringify(1),\
307 },{\
308 .driver = "q35-pcihost",\
309 .property = "short_root_bus",\
310 .value = stringify(1),\
e9845f09
VM
311 }
312
ffce9ebb 313#define PC_COMPAT_1_5 \
e9845f09 314 PC_COMPAT_1_6, \
ffce9ebb
EH
315 {\
316 .driver = "Conroe-" TYPE_X86_CPU,\
317 .property = "model",\
318 .value = stringify(2),\
6b11322e
EH
319 },{\
320 .driver = "Conroe-" TYPE_X86_CPU,\
321 .property = "level",\
322 .value = stringify(2),\
ffce9ebb
EH
323 },{\
324 .driver = "Penryn-" TYPE_X86_CPU,\
325 .property = "model",\
326 .value = stringify(2),\
6b11322e
EH
327 },{\
328 .driver = "Penryn-" TYPE_X86_CPU,\
329 .property = "level",\
330 .value = stringify(2),\
ffce9ebb
EH
331 },{\
332 .driver = "Nehalem-" TYPE_X86_CPU,\
333 .property = "model",\
334 .value = stringify(2),\
6b11322e
EH
335 },{\
336 .driver = "Nehalem-" TYPE_X86_CPU,\
337 .property = "level",\
338 .value = stringify(2),\
488f069b
MT
339 },{\
340 .driver = "virtio-net-pci",\
341 .property = "any_layout",\
342 .value = "off",\
9337e3b6
EH
343 },{\
344 .driver = TYPE_X86_CPU,\
345 .property = "pmu",\
346 .value = "on",\
04c7d8b8
CR
347 },{\
348 .driver = "i440FX-pcihost",\
349 .property = "short_root_bus",\
350 .value = stringify(0),\
351 },{\
352 .driver = "q35-pcihost",\
353 .property = "short_root_bus",\
354 .value = stringify(0),\
ffce9ebb
EH
355 }
356
bf3caa3d 357#define PC_COMPAT_1_4 \
ffce9ebb 358 PC_COMPAT_1_5, \
bf3caa3d
PB
359 {\
360 .driver = "scsi-hd",\
361 .property = "discard_granularity",\
362 .value = stringify(0),\
363 },{\
364 .driver = "scsi-cd",\
365 .property = "discard_granularity",\
366 .value = stringify(0),\
367 },{\
368 .driver = "scsi-disk",\
369 .property = "discard_granularity",\
370 .value = stringify(0),\
371 },{\
372 .driver = "ide-hd",\
373 .property = "discard_granularity",\
374 .value = stringify(0),\
375 },{\
376 .driver = "ide-cd",\
377 .property = "discard_granularity",\
378 .value = stringify(0),\
379 },{\
380 .driver = "ide-drive",\
381 .property = "discard_granularity",\
382 .value = stringify(0),\
c45e5b5b 383 },{\
bf3caa3d
PB
384 .driver = "virtio-blk-pci",\
385 .property = "discard_granularity",\
386 .value = stringify(0),\
554f1997
GH
387 },{\
388 .driver = "virtio-serial-pci",\
389 .property = "vectors",\
390 /* DEV_NVECTORS_UNSPECIFIED as a uint32_t string */\
391 .value = stringify(0xFFFFFFFF),\
644c9858
DF
392 },{ \
393 .driver = "virtio-net-pci", \
394 .property = "ctrl_guest_offloads", \
395 .value = "off", \
c45e5b5b
GH
396 },{\
397 .driver = "e1000",\
398 .property = "romfile",\
399 .value = "pxe-e1000.rom",\
400 },{\
401 .driver = "ne2k_pci",\
402 .property = "romfile",\
403 .value = "pxe-ne2k_pci.rom",\
404 },{\
405 .driver = "pcnet",\
406 .property = "romfile",\
407 .value = "pxe-pcnet.rom",\
408 },{\
409 .driver = "rtl8139",\
410 .property = "romfile",\
411 .value = "pxe-rtl8139.rom",\
412 },{\
413 .driver = "virtio-net-pci",\
414 .property = "romfile",\
415 .value = "pxe-virtio.rom",\
b2a856d9
AF
416 },{\
417 .driver = "486-" TYPE_X86_CPU,\
418 .property = "model",\
419 .value = stringify(0),\
c45e5b5b 420 }
bf3caa3d 421
a0dba644
MT
422#define PC_COMMON_MACHINE_OPTIONS \
423 .default_boot_order = "cad"
424
425#define PC_DEFAULT_MACHINE_OPTIONS \
426 PC_COMMON_MACHINE_OPTIONS, \
427 .hot_add_cpu = pc_hot_add_cpu, \
428 .max_cpus = 255
429
87ecb68b 430#endif
This page took 0.802486 seconds and 4 git commands to generate.