2 * QEMU PC System Emulator
4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
38 #include "arch_init.h"
43 # include <xen/hvm/hvm_info_table.h>
48 static const int ide_iobase
[MAX_IDE_BUS
] = { 0x1f0, 0x170 };
49 static const int ide_iobase2
[MAX_IDE_BUS
] = { 0x3f6, 0x376 };
50 static const int ide_irq
[MAX_IDE_BUS
] = { 14, 15 };
52 static void ioapic_init(IsaIrqState
*isa_irq_state
)
58 dev
= qdev_create(NULL
, "ioapic");
59 qdev_init_nofail(dev
);
60 d
= sysbus_from_qdev(dev
);
61 sysbus_mmio_map(d
, 0, 0xfec00000);
63 for (i
= 0; i
< IOAPIC_NUM_PINS
; i
++) {
64 isa_irq_state
->ioapic
[i
] = qdev_get_gpio_in(dev
, i
);
68 /* PC hardware initialisation */
69 static void pc_init1(ram_addr_t ram_size
,
70 const char *boot_device
,
71 const char *kernel_filename
,
72 const char *kernel_cmdline
,
73 const char *initrd_filename
,
74 const char *cpu_model
,
79 ram_addr_t below_4g_mem_size
, above_4g_mem_size
;
81 PCII440FXState
*i440fx_state
;
88 IsaIrqState
*isa_irq_state
;
89 DriveInfo
*hd
[MAX_IDE_BUS
* MAX_IDE_DEVS
];
90 BusState
*idebus
[MAX_IDE_BUS
];
93 pc_cpus_init(cpu_model
);
95 if (kvmclock_enabled
) {
99 if (ram_size
>= 0xe0000000 ) {
100 above_4g_mem_size
= ram_size
- 0xe0000000;
101 below_4g_mem_size
= 0xe0000000;
103 above_4g_mem_size
= 0;
104 below_4g_mem_size
= ram_size
;
107 /* allocate ram and load rom/bios */
108 if (!xen_enabled()) {
109 pc_memory_init(kernel_filename
, kernel_cmdline
, initrd_filename
,
110 below_4g_mem_size
, above_4g_mem_size
);
113 if (!xen_enabled()) {
114 cpu_irq
= pc_allocate_cpu_irq();
115 i8259
= i8259_init(cpu_irq
[0]);
117 i8259
= xen_interrupt_controller_init();
119 isa_irq_state
= qemu_mallocz(sizeof(*isa_irq_state
));
120 isa_irq_state
->i8259
= i8259
;
122 ioapic_init(isa_irq_state
);
124 isa_irq
= qemu_allocate_irqs(isa_irq_handler
, isa_irq_state
, 24);
127 if (!xen_enabled()) {
128 pci_bus
= i440fx_init(&i440fx_state
, &piix3_devfn
, isa_irq
, ram_size
);
130 pci_bus
= i440fx_xen_init(&i440fx_state
, &piix3_devfn
, isa_irq
, ram_size
);
137 isa_bus_irqs(isa_irq
);
139 pc_register_ferr_irq(isa_get_irq(13));
141 pc_vga_init(pci_enabled
? pci_bus
: NULL
);
143 /* init basic PC hardware */
144 pc_basic_device_init(isa_irq
, &rtc_state
, xen_enabled());
146 for(i
= 0; i
< nb_nics
; i
++) {
147 NICInfo
*nd
= &nd_table
[i
];
149 if (!pci_enabled
|| (nd
->model
&& strcmp(nd
->model
, "ne2k_isa") == 0))
150 pc_init_ne2k_isa(nd
);
152 pci_nic_init_nofail(nd
, "e1000", NULL
);
155 ide_drive_get(hd
, MAX_IDE_BUS
);
158 dev
= pci_piix3_ide_init(pci_bus
, hd
, piix3_devfn
+ 1);
159 idebus
[0] = qdev_get_child_bus(&dev
->qdev
, "ide.0");
160 idebus
[1] = qdev_get_child_bus(&dev
->qdev
, "ide.1");
162 for(i
= 0; i
< MAX_IDE_BUS
; i
++) {
164 dev
= isa_ide_init(ide_iobase
[i
], ide_iobase2
[i
], ide_irq
[i
],
165 hd
[MAX_IDE_DEVS
* i
], hd
[MAX_IDE_DEVS
* i
+ 1]);
166 idebus
[i
] = qdev_get_child_bus(&dev
->qdev
, "ide.0");
170 audio_init(isa_irq
, pci_enabled
? pci_bus
: NULL
);
172 pc_cmos_init(below_4g_mem_size
, above_4g_mem_size
, boot_device
,
173 idebus
[0], idebus
[1], rtc_state
);
175 if (pci_enabled
&& usb_enabled
) {
176 usb_uhci_piix3_init(pci_bus
, piix3_devfn
+ 2);
179 if (pci_enabled
&& acpi_enabled
) {
182 if (!xen_enabled()) {
183 cmos_s3
= qemu_allocate_irqs(pc_cmos_set_s3_resume
, rtc_state
, 1);
185 cmos_s3
= qemu_allocate_irqs(xen_cmos_set_s3_resume
, rtc_state
, 1);
187 smi_irq
= qemu_allocate_irqs(pc_acpi_smi_interrupt
, first_cpu
, 1);
188 /* TODO: Populate SPD eeprom data. */
189 smbus
= piix4_pm_init(pci_bus
, piix3_devfn
+ 3, 0xb100,
190 isa_get_irq(9), *cmos_s3
, *smi_irq
,
192 smbus_eeprom_init(smbus
, 8, NULL
, 0);
196 i440fx_init_memory_mappings(i440fx_state
);
200 pc_pci_device_init(pci_bus
);
204 static void pc_init_pci(ram_addr_t ram_size
,
205 const char *boot_device
,
206 const char *kernel_filename
,
207 const char *kernel_cmdline
,
208 const char *initrd_filename
,
209 const char *cpu_model
)
211 pc_init1(ram_size
, boot_device
,
212 kernel_filename
, kernel_cmdline
,
213 initrd_filename
, cpu_model
, 1, 1);
216 static void pc_init_pci_no_kvmclock(ram_addr_t ram_size
,
217 const char *boot_device
,
218 const char *kernel_filename
,
219 const char *kernel_cmdline
,
220 const char *initrd_filename
,
221 const char *cpu_model
)
223 pc_init1(ram_size
, boot_device
,
224 kernel_filename
, kernel_cmdline
,
225 initrd_filename
, cpu_model
, 1, 0);
228 static void pc_init_isa(ram_addr_t ram_size
,
229 const char *boot_device
,
230 const char *kernel_filename
,
231 const char *kernel_cmdline
,
232 const char *initrd_filename
,
233 const char *cpu_model
)
235 if (cpu_model
== NULL
)
237 pc_init1(ram_size
, boot_device
,
238 kernel_filename
, kernel_cmdline
,
239 initrd_filename
, cpu_model
, 0, 1);
243 static void pc_xen_hvm_init(ram_addr_t ram_size
,
244 const char *boot_device
,
245 const char *kernel_filename
,
246 const char *kernel_cmdline
,
247 const char *initrd_filename
,
248 const char *cpu_model
)
250 if (xen_hvm_init() != 0) {
251 hw_error("xen hardware virtual machine initialisation failed");
253 pc_init_pci_no_kvmclock(ram_size
, boot_device
,
254 kernel_filename
, kernel_cmdline
,
255 initrd_filename
, cpu_model
);
260 static QEMUMachine pc_machine
= {
263 .desc
= "Standard PC",
269 static QEMUMachine pc_machine_v0_13
= {
271 .desc
= "Standard PC",
272 .init
= pc_init_pci_no_kvmclock
,
274 .compat_props
= (GlobalProperty
[]) {
276 .driver
= "virtio-9p-pci",
277 .property
= "vectors",
278 .value
= stringify(0),
281 .property
= "rombar",
282 .value
= stringify(0),
284 .driver
= "vmware-svga",
285 .property
= "rombar",
286 .value
= stringify(0),
289 .property
= "command_serr_enable",
292 { /* end of list */ }
296 static QEMUMachine pc_machine_v0_12
= {
298 .desc
= "Standard PC",
299 .init
= pc_init_pci_no_kvmclock
,
301 .compat_props
= (GlobalProperty
[]) {
303 .driver
= "virtio-serial-pci",
304 .property
= "max_ports",
305 .value
= stringify(1),
307 .driver
= "virtio-serial-pci",
308 .property
= "vectors",
309 .value
= stringify(0),
312 .property
= "rombar",
313 .value
= stringify(0),
315 .driver
= "vmware-svga",
316 .property
= "rombar",
317 .value
= stringify(0),
320 .property
= "command_serr_enable",
323 { /* end of list */ }
327 static QEMUMachine pc_machine_v0_11
= {
329 .desc
= "Standard PC, qemu 0.11",
330 .init
= pc_init_pci_no_kvmclock
,
332 .compat_props
= (GlobalProperty
[]) {
334 .driver
= "virtio-blk-pci",
335 .property
= "vectors",
336 .value
= stringify(0),
338 .driver
= "virtio-serial-pci",
339 .property
= "max_ports",
340 .value
= stringify(1),
342 .driver
= "virtio-serial-pci",
343 .property
= "vectors",
344 .value
= stringify(0),
346 .driver
= "ide-drive",
350 .driver
= "scsi-disk",
355 .property
= "rombar",
356 .value
= stringify(0),
359 .property
= "command_serr_enable",
362 { /* end of list */ }
366 static QEMUMachine pc_machine_v0_10
= {
368 .desc
= "Standard PC, qemu 0.10",
369 .init
= pc_init_pci_no_kvmclock
,
371 .compat_props
= (GlobalProperty
[]) {
373 .driver
= "virtio-blk-pci",
375 .value
= stringify(PCI_CLASS_STORAGE_OTHER
),
377 .driver
= "virtio-serial-pci",
379 .value
= stringify(PCI_CLASS_DISPLAY_OTHER
),
381 .driver
= "virtio-serial-pci",
382 .property
= "max_ports",
383 .value
= stringify(1),
385 .driver
= "virtio-serial-pci",
386 .property
= "vectors",
387 .value
= stringify(0),
389 .driver
= "virtio-net-pci",
390 .property
= "vectors",
391 .value
= stringify(0),
393 .driver
= "virtio-blk-pci",
394 .property
= "vectors",
395 .value
= stringify(0),
397 .driver
= "ide-drive",
401 .driver
= "scsi-disk",
406 .property
= "rombar",
407 .value
= stringify(0),
410 .property
= "command_serr_enable",
413 { /* end of list */ }
417 static QEMUMachine isapc_machine
= {
419 .desc
= "ISA-only PC",
425 static QEMUMachine xenfv_machine
= {
427 .desc
= "Xen Fully-virtualized PC",
428 .init
= pc_xen_hvm_init
,
429 .max_cpus
= HVM_MAX_VCPUS
,
430 .default_machine_opts
= "accel=xen",
434 static void pc_machine_init(void)
436 qemu_register_machine(&pc_machine
);
437 qemu_register_machine(&pc_machine_v0_13
);
438 qemu_register_machine(&pc_machine_v0_12
);
439 qemu_register_machine(&pc_machine_v0_11
);
440 qemu_register_machine(&pc_machine_v0_10
);
441 qemu_register_machine(&isapc_machine
);
443 qemu_register_machine(&xenfv_machine
);
447 machine_init(pc_machine_init
);