]>
Commit | Line | Data |
---|---|---|
df2d8b3e IY |
1 | /* |
2 | * Q35 chipset based pc system emulator | |
3 | * | |
4 | * Copyright (c) 2003-2004 Fabrice Bellard | |
5 | * Copyright (c) 2009, 2010 | |
6 | * Isaku Yamahata <yamahata at valinux co jp> | |
7 | * VA Linux Systems Japan K.K. | |
8 | * Copyright (C) 2012 Jason Baron <[email protected]> | |
9 | * | |
10 | * This is based on pc.c, but heavily modified. | |
11 | * | |
12 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
13 | * of this software and associated documentation files (the "Software"), to deal | |
14 | * in the Software without restriction, including without limitation the rights | |
15 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
16 | * copies of the Software, and to permit persons to whom the Software is | |
17 | * furnished to do so, subject to the following conditions: | |
18 | * | |
19 | * The above copyright notice and this permission notice shall be included in | |
20 | * all copies or substantial portions of the Software. | |
21 | * | |
22 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
23 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
24 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
25 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
26 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
27 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
28 | * THE SOFTWARE. | |
29 | */ | |
83c9f4ca | 30 | #include "hw/hw.h" |
04920fc0 | 31 | #include "hw/loader.h" |
9c17d615 | 32 | #include "sysemu/arch_init.h" |
0d09e41a | 33 | #include "hw/i2c/smbus.h" |
83c9f4ca | 34 | #include "hw/boards.h" |
0d09e41a PB |
35 | #include "hw/timer/mc146818rtc.h" |
36 | #include "hw/xen/xen.h" | |
9c17d615 | 37 | #include "sysemu/kvm.h" |
83c9f4ca | 38 | #include "hw/kvm/clock.h" |
0d09e41a | 39 | #include "hw/pci-host/q35.h" |
022c62cb | 40 | #include "exec/address-spaces.h" |
0d09e41a | 41 | #include "hw/i386/ich9.h" |
b29ad07e | 42 | #include "hw/i386/smbios.h" |
df2d8b3e IY |
43 | #include "hw/ide/pci.h" |
44 | #include "hw/ide/ahci.h" | |
45 | #include "hw/usb.h" | |
f0513d2c | 46 | #include "hw/cpu/icc_bus.h" |
df2d8b3e IY |
47 | |
48 | /* ICH9 AHCI has 6 ports */ | |
49 | #define MAX_SATA_PORTS 6 | |
50 | ||
7f1bb742 | 51 | static bool has_pci_info; |
72c194f7 | 52 | static bool has_acpi_build = true; |
b29ad07e | 53 | static bool smbios_type1_defaults = true; |
3ab135f3 | 54 | |
df2d8b3e IY |
55 | /* PC hardware initialisation */ |
56 | static void pc_q35_init(QEMUMachineInitArgs *args) | |
57 | { | |
df2d8b3e IY |
58 | ram_addr_t below_4g_mem_size, above_4g_mem_size; |
59 | Q35PCIHost *q35_host; | |
ce88812f | 60 | PCIHostState *phb; |
df2d8b3e IY |
61 | PCIBus *host_bus; |
62 | PCIDevice *lpc; | |
63 | BusState *idebus[MAX_SATA_PORTS]; | |
64 | ISADevice *rtc_state; | |
65 | ISADevice *floppy; | |
66 | MemoryRegion *pci_memory; | |
67 | MemoryRegion *rom_memory; | |
68 | MemoryRegion *ram_memory; | |
69 | GSIState *gsi_state; | |
70 | ISABus *isa_bus; | |
71 | int pci_enabled = 1; | |
72 | qemu_irq *cpu_irq; | |
73 | qemu_irq *gsi; | |
74 | qemu_irq *i8259; | |
75 | int i; | |
76 | ICH9LPCState *ich9_lpc; | |
77 | PCIDevice *ahci; | |
f0513d2c | 78 | DeviceState *icc_bridge; |
3459a625 | 79 | PcGuestInfo *guest_info; |
f0513d2c | 80 | |
254c1282 AP |
81 | if (xen_enabled() && xen_hvm_init(&ram_memory) != 0) { |
82 | fprintf(stderr, "xen hardware virtual machine initialisation failed\n"); | |
83 | exit(1); | |
84 | } | |
85 | ||
f0513d2c IM |
86 | icc_bridge = qdev_create(NULL, TYPE_ICC_BRIDGE); |
87 | object_property_add_child(qdev_get_machine(), "icc-bridge", | |
88 | OBJECT(icc_bridge), NULL); | |
df2d8b3e | 89 | |
3b6fb9ca | 90 | pc_cpus_init(args->cpu_model, icc_bridge); |
f7e4dd6c | 91 | pc_acpi_init("q35-acpi-dsdt.aml"); |
df2d8b3e | 92 | |
21022c92 JK |
93 | kvmclock_create(); |
94 | ||
3b6fb9ca MA |
95 | if (args->ram_size >= 0xb0000000) { |
96 | above_4g_mem_size = args->ram_size - 0xb0000000; | |
df2d8b3e IY |
97 | below_4g_mem_size = 0xb0000000; |
98 | } else { | |
99 | above_4g_mem_size = 0; | |
3b6fb9ca | 100 | below_4g_mem_size = args->ram_size; |
df2d8b3e IY |
101 | } |
102 | ||
103 | /* pci enabled */ | |
104 | if (pci_enabled) { | |
105 | pci_memory = g_new(MemoryRegion, 1); | |
286690e3 | 106 | memory_region_init(pci_memory, NULL, "pci", UINT64_MAX); |
df2d8b3e IY |
107 | rom_memory = pci_memory; |
108 | } else { | |
109 | pci_memory = NULL; | |
110 | rom_memory = get_system_memory(); | |
111 | } | |
112 | ||
3459a625 | 113 | guest_info = pc_guest_info_init(below_4g_mem_size, above_4g_mem_size); |
f8c457b8 | 114 | guest_info->has_pci_info = has_pci_info; |
6dd2a5c9 | 115 | guest_info->isapc_ram_fw = false; |
72c194f7 | 116 | guest_info->has_acpi_build = has_acpi_build; |
3459a625 | 117 | |
b29ad07e MA |
118 | if (smbios_type1_defaults) { |
119 | /* These values are guest ABI, do not change */ | |
120 | smbios_set_type1_defaults("QEMU", "Standard PC (Q35 + ICH9, 2009)", | |
121 | args->machine->name); | |
122 | } | |
123 | ||
df2d8b3e IY |
124 | /* allocate ram and load rom/bios */ |
125 | if (!xen_enabled()) { | |
3b6fb9ca MA |
126 | pc_memory_init(get_system_memory(), |
127 | args->kernel_filename, args->kernel_cmdline, | |
128 | args->initrd_filename, | |
129 | below_4g_mem_size, above_4g_mem_size, | |
3459a625 | 130 | rom_memory, &ram_memory, guest_info); |
df2d8b3e IY |
131 | } |
132 | ||
133 | /* irq lines */ | |
134 | gsi_state = g_malloc0(sizeof(*gsi_state)); | |
135 | if (kvm_irqchip_in_kernel()) { | |
136 | kvm_pc_setup_irq_routing(pci_enabled); | |
137 | gsi = qemu_allocate_irqs(kvm_pc_gsi_handler, gsi_state, | |
138 | GSI_NUM_PINS); | |
139 | } else { | |
140 | gsi = qemu_allocate_irqs(gsi_handler, gsi_state, GSI_NUM_PINS); | |
141 | } | |
142 | ||
143 | /* create pci host bus */ | |
144 | q35_host = Q35_HOST_DEVICE(qdev_create(NULL, TYPE_Q35_HOST_DEVICE)); | |
145 | ||
c52dc697 | 146 | object_property_add_child(qdev_get_machine(), "q35", OBJECT(q35_host), NULL); |
df2d8b3e IY |
147 | q35_host->mch.ram_memory = ram_memory; |
148 | q35_host->mch.pci_address_space = pci_memory; | |
149 | q35_host->mch.system_memory = get_system_memory(); | |
c7e775e4 | 150 | q35_host->mch.address_space_io = get_system_io(); |
df2d8b3e IY |
151 | q35_host->mch.below_4g_mem_size = below_4g_mem_size; |
152 | q35_host->mch.above_4g_mem_size = above_4g_mem_size; | |
3459a625 | 153 | q35_host->mch.guest_info = guest_info; |
df2d8b3e IY |
154 | /* pci */ |
155 | qdev_init_nofail(DEVICE(q35_host)); | |
ce88812f HT |
156 | phb = PCI_HOST_BRIDGE(q35_host); |
157 | host_bus = phb->bus; | |
df2d8b3e IY |
158 | /* create ISA bus */ |
159 | lpc = pci_create_simple_multifunction(host_bus, PCI_DEVFN(ICH9_LPC_DEV, | |
160 | ICH9_LPC_FUNC), true, | |
161 | TYPE_ICH9_LPC_DEVICE); | |
162 | ich9_lpc = ICH9_LPC_DEVICE(lpc); | |
163 | ich9_lpc->pic = gsi; | |
164 | ich9_lpc->ioapic = gsi_state->ioapic_irq; | |
165 | pci_bus_irqs(host_bus, ich9_lpc_set_irq, ich9_lpc_map_irq, ich9_lpc, | |
166 | ICH9_LPC_NB_PIRQS); | |
91c3f2f0 | 167 | pci_bus_set_route_irq_fn(host_bus, ich9_route_intx_pin_to_irq); |
df2d8b3e IY |
168 | isa_bus = ich9_lpc->isa_bus; |
169 | ||
170 | /*end early*/ | |
171 | isa_bus_irqs(isa_bus, gsi); | |
172 | ||
173 | if (kvm_irqchip_in_kernel()) { | |
174 | i8259 = kvm_i8259_init(isa_bus); | |
175 | } else if (xen_enabled()) { | |
176 | i8259 = xen_interrupt_controller_init(); | |
177 | } else { | |
178 | cpu_irq = pc_allocate_cpu_irq(); | |
179 | i8259 = i8259_init(isa_bus, cpu_irq[0]); | |
180 | } | |
181 | ||
182 | for (i = 0; i < ISA_NUM_IRQS; i++) { | |
183 | gsi_state->i8259_irq[i] = i8259[i]; | |
184 | } | |
185 | if (pci_enabled) { | |
186 | ioapic_init_gsi(gsi_state, NULL); | |
187 | } | |
f0513d2c | 188 | qdev_init_nofail(icc_bridge); |
df2d8b3e IY |
189 | |
190 | pc_register_ferr_irq(gsi[13]); | |
191 | ||
192 | /* init basic PC hardware */ | |
7a10ef51 | 193 | pc_basic_device_init(isa_bus, gsi, &rtc_state, &floppy, false, 0xff0104); |
df2d8b3e IY |
194 | |
195 | /* connect pm stuff to lpc */ | |
a3ac6b53 | 196 | ich9_lpc_pm_init(lpc); |
df2d8b3e IY |
197 | |
198 | /* ahci and SATA device, for q35 1 ahci controller is built-in */ | |
199 | ahci = pci_create_simple_multifunction(host_bus, | |
200 | PCI_DEVFN(ICH9_SATA1_DEV, | |
201 | ICH9_SATA1_FUNC), | |
202 | true, "ich9-ahci"); | |
203 | idebus[0] = qdev_get_child_bus(&ahci->qdev, "ide.0"); | |
204 | idebus[1] = qdev_get_child_bus(&ahci->qdev, "ide.1"); | |
205 | ||
206 | if (usb_enabled(false)) { | |
207 | /* Should we create 6 UHCI according to ich9 spec? */ | |
208 | ehci_create_ich9_with_companions(host_bus, 0x1d); | |
209 | } | |
210 | ||
211 | /* TODO: Populate SPD eeprom data. */ | |
212 | smbus_eeprom_init(ich9_smb_init(host_bus, | |
213 | PCI_DEVFN(ICH9_SMB_DEV, ICH9_SMB_FUNC), | |
214 | 0xb100), | |
215 | 8, NULL, 0); | |
216 | ||
c1654732 | 217 | pc_cmos_init(below_4g_mem_size, above_4g_mem_size, args->boot_order, |
df2d8b3e IY |
218 | floppy, idebus[0], idebus[1], rtc_state); |
219 | ||
220 | /* the rest devices to which pci devfn is automatically assigned */ | |
221 | pc_vga_init(isa_bus, host_bus); | |
df2d8b3e IY |
222 | pc_nic_init(isa_bus, host_bus); |
223 | if (pci_enabled) { | |
224 | pc_pci_device_init(host_bus); | |
225 | } | |
226 | } | |
227 | ||
b29ad07e MA |
228 | static void pc_compat_1_7(QEMUMachineInitArgs *args) |
229 | { | |
230 | smbios_type1_defaults = false; | |
231 | } | |
232 | ||
89b439f3 | 233 | static void pc_compat_1_6(QEMUMachineInitArgs *args) |
f8c457b8 | 234 | { |
b29ad07e | 235 | pc_compat_1_7(args); |
f8c457b8 | 236 | has_pci_info = false; |
04920fc0 | 237 | rom_file_in_ram = false; |
72c194f7 | 238 | has_acpi_build = false; |
f8c457b8 MT |
239 | } |
240 | ||
89b439f3 | 241 | static void pc_compat_1_5(QEMUMachineInitArgs *args) |
9604f70f | 242 | { |
89b439f3 | 243 | pc_compat_1_6(args); |
9604f70f MT |
244 | } |
245 | ||
89b439f3 | 246 | static void pc_compat_1_4(QEMUMachineInitArgs *args) |
9953f882 | 247 | { |
396f79f4 | 248 | pc_compat_1_5(args); |
4458c236 | 249 | x86_cpu_compat_set_features("n270", FEAT_1_ECX, 0, CPUID_EXT_MOVBE); |
56383703 | 250 | x86_cpu_compat_set_features("Westmere", FEAT_1_ECX, 0, CPUID_EXT_PCLMULQDQ); |
89b439f3 EH |
251 | } |
252 | ||
b29ad07e MA |
253 | static void pc_q35_init_1_7(QEMUMachineInitArgs *args) |
254 | { | |
255 | pc_compat_1_7(args); | |
256 | pc_q35_init(args); | |
257 | } | |
258 | ||
89b439f3 EH |
259 | static void pc_q35_init_1_6(QEMUMachineInitArgs *args) |
260 | { | |
261 | pc_compat_1_6(args); | |
262 | pc_q35_init(args); | |
263 | } | |
264 | ||
265 | static void pc_q35_init_1_5(QEMUMachineInitArgs *args) | |
266 | { | |
267 | pc_compat_1_5(args); | |
268 | pc_q35_init(args); | |
269 | } | |
270 | ||
271 | static void pc_q35_init_1_4(QEMUMachineInitArgs *args) | |
272 | { | |
273 | pc_compat_1_4(args); | |
274 | pc_q35_init(args); | |
9953f882 MA |
275 | } |
276 | ||
a0dba644 MT |
277 | #define PC_Q35_MACHINE_OPTIONS \ |
278 | PC_DEFAULT_MACHINE_OPTIONS, \ | |
279 | .desc = "Standard PC (Q35 + ICH9, 2009)", \ | |
280 | .hot_add_cpu = pc_hot_add_cpu | |
281 | ||
bcf2b7d2 GH |
282 | #define PC_Q35_2_0_MACHINE_OPTIONS \ |
283 | PC_Q35_MACHINE_OPTIONS, \ | |
284 | .default_machine_opts = "firmware=bios-256k.bin" | |
aeca6e8d GH |
285 | |
286 | static QEMUMachine pc_q35_machine_v2_0 = { | |
287 | PC_Q35_2_0_MACHINE_OPTIONS, | |
288 | .name = "pc-q35-2.0", | |
289 | .alias = "q35", | |
290 | .init = pc_q35_init, | |
291 | }; | |
292 | ||
e9845f09 VM |
293 | #define PC_Q35_1_7_MACHINE_OPTIONS PC_Q35_MACHINE_OPTIONS |
294 | ||
295 | static QEMUMachine pc_q35_machine_v1_7 = { | |
296 | PC_Q35_1_7_MACHINE_OPTIONS, | |
297 | .name = "pc-q35-1.7", | |
7a10ef51 LPF |
298 | .init = pc_q35_init_1_7, |
299 | .compat_props = (GlobalProperty[]) { | |
300 | PC_Q35_COMPAT_1_7, | |
301 | { /* end of list */ } | |
302 | }, | |
e9845f09 VM |
303 | }; |
304 | ||
a0dba644 MT |
305 | #define PC_Q35_1_6_MACHINE_OPTIONS PC_Q35_MACHINE_OPTIONS |
306 | ||
45053fde | 307 | static QEMUMachine pc_q35_machine_v1_6 = { |
a0dba644 | 308 | PC_Q35_1_6_MACHINE_OPTIONS, |
45053fde | 309 | .name = "pc-q35-1.6", |
9604f70f | 310 | .init = pc_q35_init_1_6, |
e9845f09 | 311 | .compat_props = (GlobalProperty[]) { |
7a10ef51 | 312 | PC_Q35_COMPAT_1_6, |
e9845f09 VM |
313 | { /* end of list */ } |
314 | }, | |
45053fde EH |
315 | }; |
316 | ||
bf3caa3d | 317 | static QEMUMachine pc_q35_machine_v1_5 = { |
a0dba644 | 318 | PC_Q35_1_6_MACHINE_OPTIONS, |
bf3caa3d | 319 | .name = "pc-q35-1.5", |
f8c457b8 | 320 | .init = pc_q35_init_1_5, |
ffce9ebb | 321 | .compat_props = (GlobalProperty[]) { |
7a10ef51 | 322 | PC_Q35_COMPAT_1_5, |
ffce9ebb EH |
323 | { /* end of list */ } |
324 | }, | |
df2d8b3e IY |
325 | }; |
326 | ||
a0dba644 MT |
327 | #define PC_Q35_1_4_MACHINE_OPTIONS \ |
328 | PC_Q35_1_6_MACHINE_OPTIONS, \ | |
329 | .hot_add_cpu = NULL | |
330 | ||
bf3caa3d | 331 | static QEMUMachine pc_q35_machine_v1_4 = { |
a0dba644 | 332 | PC_Q35_1_4_MACHINE_OPTIONS, |
bf3caa3d | 333 | .name = "pc-q35-1.4", |
9953f882 | 334 | .init = pc_q35_init_1_4, |
bf3caa3d PB |
335 | .compat_props = (GlobalProperty[]) { |
336 | PC_COMPAT_1_4, | |
337 | { /* end of list */ } | |
338 | }, | |
bf3caa3d PB |
339 | }; |
340 | ||
df2d8b3e IY |
341 | static void pc_q35_machine_init(void) |
342 | { | |
aeca6e8d | 343 | qemu_register_machine(&pc_q35_machine_v2_0); |
e9845f09 | 344 | qemu_register_machine(&pc_q35_machine_v1_7); |
45053fde | 345 | qemu_register_machine(&pc_q35_machine_v1_6); |
bf3caa3d PB |
346 | qemu_register_machine(&pc_q35_machine_v1_5); |
347 | qemu_register_machine(&pc_q35_machine_v1_4); | |
df2d8b3e IY |
348 | } |
349 | ||
350 | machine_init(pc_q35_machine_init); |