]>
Commit | Line | Data |
---|---|---|
87ecb68b PB |
1 | #ifndef HW_PC_H |
2 | #define HW_PC_H | |
376253ec AL |
3 | |
4 | #include "qemu-common.h" | |
00cb2a99 | 5 | #include "memory.h" |
35bed8ee | 6 | #include "ioport.h" |
845773ab IY |
7 | #include "isa.h" |
8 | #include "fdc.h" | |
cd1b8a8b | 9 | #include "net.h" |
4aa63af1 | 10 | #include "memory.h" |
b881fbe9 | 11 | #include "ioapic.h" |
376253ec | 12 | |
87ecb68b PB |
13 | /* PC-style peripherals (also used by other machines). */ |
14 | ||
15 | /* serial.c */ | |
16 | ||
b6cd0ea1 AJ |
17 | SerialState *serial_init(int base, qemu_irq irq, int baudbase, |
18 | CharDriverState *chr); | |
39186d8a RH |
19 | SerialState *serial_mm_init(MemoryRegion *address_space, |
20 | target_phys_addr_t base, int it_shift, | |
21 | qemu_irq irq, int baudbase, | |
22 | CharDriverState *chr, enum device_endian); | |
48a18b3c HP |
23 | static inline bool serial_isa_init(ISABus *bus, int index, |
24 | CharDriverState *chr) | |
e22cf21e BS |
25 | { |
26 | ISADevice *dev; | |
27 | ||
48a18b3c | 28 | dev = isa_try_create(bus, "isa-serial"); |
9b13ef9f BS |
29 | if (!dev) { |
30 | return false; | |
31 | } | |
e22cf21e BS |
32 | qdev_prop_set_uint32(&dev->qdev, "index", index); |
33 | qdev_prop_set_chr(&dev->qdev, "chardev", chr); | |
34 | if (qdev_init(&dev->qdev) < 0) { | |
35 | return false; | |
36 | } | |
37 | return true; | |
38 | } | |
39 | ||
038eaf82 | 40 | void serial_set_frequency(SerialState *s, uint32_t frequency); |
87ecb68b PB |
41 | |
42 | /* parallel.c */ | |
48a18b3c | 43 | static inline bool parallel_init(ISABus *bus, int index, CharDriverState *chr) |
defdb20e BS |
44 | { |
45 | ISADevice *dev; | |
46 | ||
48a18b3c | 47 | dev = isa_try_create(bus, "isa-parallel"); |
73531538 BS |
48 | if (!dev) { |
49 | return false; | |
50 | } | |
defdb20e BS |
51 | qdev_prop_set_uint32(&dev->qdev, "index", index); |
52 | qdev_prop_set_chr(&dev->qdev, "chardev", chr); | |
53 | if (qdev_init(&dev->qdev) < 0) { | |
54 | return false; | |
55 | } | |
56 | return true; | |
57 | } | |
58 | ||
63858cd9 AK |
59 | bool parallel_mm_init(MemoryRegion *address_space, |
60 | target_phys_addr_t base, int it_shift, qemu_irq irq, | |
defdb20e | 61 | CharDriverState *chr); |
87ecb68b PB |
62 | |
63 | /* i8259.c */ | |
64 | ||
9aa78c42 | 65 | extern DeviceState *isa_pic; |
48a18b3c | 66 | qemu_irq *i8259_init(ISABus *bus, qemu_irq parent_irq); |
10b61882 | 67 | qemu_irq *kvm_i8259_init(ISABus *bus); |
9aa78c42 JK |
68 | int pic_read_irq(DeviceState *d); |
69 | int pic_get_output(DeviceState *d); | |
376253ec AL |
70 | void pic_info(Monitor *mon); |
71 | void irq_info(Monitor *mon); | |
87ecb68b | 72 | |
b881fbe9 | 73 | /* Global System Interrupts */ |
96051119 | 74 | |
b881fbe9 | 75 | #define GSI_NUM_PINS IOAPIC_NUM_PINS |
845773ab | 76 | |
b881fbe9 | 77 | typedef struct GSIState { |
43a0db35 | 78 | qemu_irq i8259_irq[ISA_NUM_IRQS]; |
b881fbe9 JK |
79 | qemu_irq ioapic_irq[IOAPIC_NUM_PINS]; |
80 | } GSIState; | |
81 | ||
82 | void gsi_handler(void *opaque, int n, int level); | |
845773ab | 83 | |
87ecb68b | 84 | /* vmport.c */ |
48a18b3c | 85 | static inline void vmport_init(ISABus *bus) |
6872ef61 | 86 | { |
48a18b3c | 87 | isa_create_simple(bus, "vmport"); |
6872ef61 | 88 | } |
87ecb68b | 89 | void vmport_register(unsigned char command, IOPortReadFunc *func, void *opaque); |
86d86414 BS |
90 | void vmmouse_get_data(uint32_t *data); |
91 | void vmmouse_set_data(const uint32_t *data); | |
87ecb68b | 92 | |
87ecb68b PB |
93 | /* pckbd.c */ |
94 | ||
95 | void i8042_init(qemu_irq kbd_irq, qemu_irq mouse_irq, uint32_t io_base); | |
96 | void i8042_mm_init(qemu_irq kbd_irq, qemu_irq mouse_irq, | |
dbff76ac | 97 | MemoryRegion *region, ram_addr_t size, |
c227f099 | 98 | target_phys_addr_t mask); |
956a3e6b BS |
99 | void i8042_isa_mouse_fake_event(void *opaque); |
100 | void i8042_setup_a20_line(ISADevice *dev, qemu_irq *a20_out); | |
87ecb68b | 101 | |
87ecb68b PB |
102 | /* pc.c */ |
103 | extern int fd_bootchk; | |
104 | ||
8e78eb28 | 105 | void pc_register_ferr_irq(qemu_irq irq); |
845773ab IY |
106 | void pc_acpi_smi_interrupt(void *opaque, int irq, int level); |
107 | ||
108 | void pc_cpus_init(const char *cpu_model); | |
4aa63af1 AK |
109 | void pc_memory_init(MemoryRegion *system_memory, |
110 | const char *kernel_filename, | |
845773ab IY |
111 | const char *kernel_cmdline, |
112 | const char *initrd_filename, | |
e0e7e67b | 113 | ram_addr_t below_4g_mem_size, |
ae0a5466 | 114 | ram_addr_t above_4g_mem_size, |
4463aee6 | 115 | MemoryRegion *rom_memory, |
ae0a5466 | 116 | MemoryRegion **ram_memory); |
845773ab | 117 | qemu_irq *pc_allocate_cpu_irq(void); |
48a18b3c HP |
118 | DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus); |
119 | void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi, | |
1611977c | 120 | ISADevice **rtc_state, |
34d4260e | 121 | ISADevice **floppy, |
1611977c | 122 | bool no_vmport); |
48a18b3c | 123 | void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd); |
845773ab | 124 | void pc_cmos_init(ram_addr_t ram_size, ram_addr_t above_4g_mem_size, |
c0897e0c | 125 | const char *boot_device, |
34d4260e | 126 | ISADevice *floppy, BusState *ide0, BusState *ide1, |
63ffb564 | 127 | ISADevice *s); |
845773ab | 128 | void pc_pci_device_init(PCIBus *pci_bus); |
8e78eb28 | 129 | |
f885f1ea IY |
130 | typedef void (*cpu_set_smm_t)(int smm, void *arg); |
131 | void cpu_smm_register(cpu_set_smm_t callback, void *arg); | |
132 | ||
87ecb68b PB |
133 | /* acpi.c */ |
134 | extern int acpi_enabled; | |
80deece2 BS |
135 | extern char *acpi_tables; |
136 | extern size_t acpi_tables_len; | |
137 | ||
9d5e77a2 IY |
138 | void acpi_bios_init(void); |
139 | int acpi_table_add(const char *table_desc); | |
140 | ||
141 | /* acpi_piix.c */ | |
53b67b30 | 142 | |
cf7a2fe2 | 143 | i2c_bus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base, |
da98c8eb | 144 | qemu_irq sci_irq, qemu_irq smi_irq, |
53b67b30 | 145 | int kvm_enabled); |
87ecb68b | 146 | void piix4_smbus_register_device(SMBusDevice *dev, uint8_t addr); |
87ecb68b | 147 | |
16b29ae1 AL |
148 | /* hpet.c */ |
149 | extern int no_hpet; | |
150 | ||
87ecb68b | 151 | /* piix_pci.c */ |
0a3bacf3 JQ |
152 | struct PCII440FXState; |
153 | typedef struct PCII440FXState PCII440FXState; | |
154 | ||
1e39101c | 155 | PCIBus *i440fx_init(PCII440FXState **pi440fx_state, int *piix_devfn, |
60573079 | 156 | ISABus **isa_bus, qemu_irq *pic, |
aee97b84 AK |
157 | MemoryRegion *address_space_mem, |
158 | MemoryRegion *address_space_io, | |
ae0a5466 AK |
159 | ram_addr_t ram_size, |
160 | target_phys_addr_t pci_hole_start, | |
161 | target_phys_addr_t pci_hole_size, | |
162 | target_phys_addr_t pci_hole64_start, | |
163 | target_phys_addr_t pci_hole64_size, | |
164 | MemoryRegion *pci_memory, | |
165 | MemoryRegion *ram_memory); | |
87ecb68b | 166 | |
823e675a | 167 | /* piix4.c */ |
b1d8e52e | 168 | extern PCIDevice *piix4_dev; |
142e9787 | 169 | int piix4_init(PCIBus *bus, ISABus **isa_bus, int devfn); |
87ecb68b PB |
170 | |
171 | /* vga.c */ | |
cb5a7aa8 | 172 | enum vga_retrace_method { |
173 | VGA_RETRACE_DUMB, | |
174 | VGA_RETRACE_PRECISE | |
175 | }; | |
176 | ||
177 | extern enum vga_retrace_method vga_retrace_method; | |
87ecb68b | 178 | |
48a18b3c | 179 | static inline DeviceState *isa_vga_init(ISABus *bus) |
7435b791 | 180 | { |
c74b88df | 181 | ISADevice *dev; |
7435b791 | 182 | |
48a18b3c | 183 | dev = isa_try_create(bus, "isa-vga"); |
c74b88df BS |
184 | if (!dev) { |
185 | fprintf(stderr, "Warning: isa-vga not available\n"); | |
ad6d45fa | 186 | return NULL; |
c74b88df BS |
187 | } |
188 | qdev_init_nofail(&dev->qdev); | |
ad6d45fa | 189 | return &dev->qdev; |
7435b791 BS |
190 | } |
191 | ||
ad6d45fa | 192 | DeviceState *pci_vga_init(PCIBus *bus); |
c227f099 | 193 | int isa_vga_mm_init(target_phys_addr_t vram_base, |
be20f9e9 AK |
194 | target_phys_addr_t ctrl_base, int it_shift, |
195 | MemoryRegion *address_space); | |
87ecb68b PB |
196 | |
197 | /* cirrus_vga.c */ | |
ad6d45fa | 198 | DeviceState *pci_cirrus_vga_init(PCIBus *bus); |
87ecb68b | 199 | |
87ecb68b | 200 | /* ne2000.c */ |
48a18b3c | 201 | static inline bool isa_ne2000_init(ISABus *bus, int base, int irq, NICInfo *nd) |
60a14ad3 BS |
202 | { |
203 | ISADevice *dev; | |
87ecb68b | 204 | |
60a14ad3 BS |
205 | qemu_check_nic_model(nd, "ne2k_isa"); |
206 | ||
48a18b3c | 207 | dev = isa_try_create(bus, "ne2k_isa"); |
cd1b8a8b BS |
208 | if (!dev) { |
209 | return false; | |
210 | } | |
60a14ad3 BS |
211 | qdev_prop_set_uint32(&dev->qdev, "iobase", base); |
212 | qdev_prop_set_uint32(&dev->qdev, "irq", irq); | |
213 | qdev_set_nic_properties(&dev->qdev, nd); | |
214 | qdev_init_nofail(&dev->qdev); | |
cd1b8a8b | 215 | return true; |
60a14ad3 | 216 | } |
87ecb68b | 217 | |
cbc5b5f3 JJ |
218 | /* pc_sysfw.c */ |
219 | void pc_system_firmware_init(MemoryRegion *rom_memory); | |
220 | ||
4c5b10b7 JS |
221 | /* e820 types */ |
222 | #define E820_RAM 1 | |
223 | #define E820_RESERVED 2 | |
224 | #define E820_ACPI 3 | |
225 | #define E820_NVS 4 | |
226 | #define E820_UNUSABLE 5 | |
227 | ||
228 | int e820_add_entry(uint64_t, uint64_t, uint32_t); | |
229 | ||
87ecb68b | 230 | #endif |