xen: implement unplug protocol in xen_platform
[qemu/ar7.git] / hw / pc_piix.c
blob40b73ea25c2cfcb55183b2679a2e49b7cfe304f7
1 /*
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
22 * THE SOFTWARE.
25 #include "hw.h"
26 #include "pc.h"
27 #include "apic.h"
28 #include "pci.h"
29 #include "usb-uhci.h"
30 #include "usb-ohci.h"
31 #include "net.h"
32 #include "boards.h"
33 #include "ide.h"
34 #include "kvm.h"
35 #include "kvmclock.h"
36 #include "sysemu.h"
37 #include "sysbus.h"
38 #include "arch_init.h"
39 #include "blockdev.h"
40 #include "smbus.h"
41 #include "xen.h"
42 #ifdef CONFIG_XEN
43 # include <xen/hvm/hvm_info_table.h>
44 #endif
46 #define MAX_IDE_BUS 2
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)
54 DeviceState *dev;
55 SysBusDevice *d;
56 unsigned int i;
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,
75 int pci_enabled,
76 int kvmclock_enabled)
78 int i;
79 ram_addr_t below_4g_mem_size, above_4g_mem_size;
80 PCIBus *pci_bus;
81 PCII440FXState *i440fx_state;
82 int piix3_devfn = -1;
83 qemu_irq *cpu_irq;
84 qemu_irq *isa_irq;
85 qemu_irq *i8259;
86 qemu_irq *cmos_s3;
87 qemu_irq *smi_irq;
88 IsaIrqState *isa_irq_state;
89 DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
90 BusState *idebus[MAX_IDE_BUS];
91 ISADevice *rtc_state;
93 pc_cpus_init(cpu_model);
95 if (kvmclock_enabled) {
96 kvmclock_create();
99 if (ram_size >= 0xe0000000 ) {
100 above_4g_mem_size = ram_size - 0xe0000000;
101 below_4g_mem_size = 0xe0000000;
102 } else {
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]);
116 } else {
117 i8259 = xen_interrupt_controller_init();
119 isa_irq_state = qemu_mallocz(sizeof(*isa_irq_state));
120 isa_irq_state->i8259 = i8259;
121 if (pci_enabled) {
122 ioapic_init(isa_irq_state);
124 isa_irq = qemu_allocate_irqs(isa_irq_handler, isa_irq_state, 24);
126 if (pci_enabled) {
127 pci_bus = i440fx_init(&i440fx_state, &piix3_devfn, isa_irq, ram_size);
128 } else {
129 pci_bus = NULL;
130 i440fx_state = NULL;
131 isa_bus_new(NULL);
133 isa_bus_irqs(isa_irq);
135 pc_register_ferr_irq(isa_get_irq(13));
137 pc_vga_init(pci_enabled? pci_bus: NULL);
139 if (xen_enabled()) {
140 pci_create_simple(pci_bus, -1, "xen-platform");
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);
151 else
152 pci_nic_init_nofail(nd, "e1000", NULL);
155 ide_drive_get(hd, MAX_IDE_BUS);
156 if (pci_enabled) {
157 PCIDevice *dev;
158 if (xen_enabled()) {
159 dev = pci_piix3_xen_ide_init(pci_bus, hd, piix3_devfn + 1);
160 } else {
161 dev = pci_piix3_ide_init(pci_bus, hd, piix3_devfn + 1);
163 idebus[0] = qdev_get_child_bus(&dev->qdev, "ide.0");
164 idebus[1] = qdev_get_child_bus(&dev->qdev, "ide.1");
165 } else {
166 for(i = 0; i < MAX_IDE_BUS; i++) {
167 ISADevice *dev;
168 dev = isa_ide_init(ide_iobase[i], ide_iobase2[i], ide_irq[i],
169 hd[MAX_IDE_DEVS * i], hd[MAX_IDE_DEVS * i + 1]);
170 idebus[i] = qdev_get_child_bus(&dev->qdev, "ide.0");
174 audio_init(isa_irq, pci_enabled ? pci_bus : NULL);
176 pc_cmos_init(below_4g_mem_size, above_4g_mem_size, boot_device,
177 idebus[0], idebus[1], rtc_state);
179 if (pci_enabled && usb_enabled) {
180 usb_uhci_piix3_init(pci_bus, piix3_devfn + 2);
183 if (pci_enabled && acpi_enabled) {
184 i2c_bus *smbus;
186 if (!xen_enabled()) {
187 cmos_s3 = qemu_allocate_irqs(pc_cmos_set_s3_resume, rtc_state, 1);
188 } else {
189 cmos_s3 = qemu_allocate_irqs(xen_cmos_set_s3_resume, rtc_state, 1);
191 smi_irq = qemu_allocate_irqs(pc_acpi_smi_interrupt, first_cpu, 1);
192 /* TODO: Populate SPD eeprom data. */
193 smbus = piix4_pm_init(pci_bus, piix3_devfn + 3, 0xb100,
194 isa_get_irq(9), *cmos_s3, *smi_irq,
195 kvm_enabled());
196 smbus_eeprom_init(smbus, 8, NULL, 0);
199 if (i440fx_state) {
200 i440fx_init_memory_mappings(i440fx_state);
203 if (pci_enabled) {
204 pc_pci_device_init(pci_bus);
208 static void pc_init_pci(ram_addr_t ram_size,
209 const char *boot_device,
210 const char *kernel_filename,
211 const char *kernel_cmdline,
212 const char *initrd_filename,
213 const char *cpu_model)
215 pc_init1(ram_size, boot_device,
216 kernel_filename, kernel_cmdline,
217 initrd_filename, cpu_model, 1, 1);
220 static void pc_init_pci_no_kvmclock(ram_addr_t ram_size,
221 const char *boot_device,
222 const char *kernel_filename,
223 const char *kernel_cmdline,
224 const char *initrd_filename,
225 const char *cpu_model)
227 pc_init1(ram_size, boot_device,
228 kernel_filename, kernel_cmdline,
229 initrd_filename, cpu_model, 1, 0);
232 static void pc_init_isa(ram_addr_t ram_size,
233 const char *boot_device,
234 const char *kernel_filename,
235 const char *kernel_cmdline,
236 const char *initrd_filename,
237 const char *cpu_model)
239 if (cpu_model == NULL)
240 cpu_model = "486";
241 pc_init1(ram_size, boot_device,
242 kernel_filename, kernel_cmdline,
243 initrd_filename, cpu_model, 0, 1);
246 #ifdef CONFIG_XEN
247 static void pc_xen_hvm_init(ram_addr_t ram_size,
248 const char *boot_device,
249 const char *kernel_filename,
250 const char *kernel_cmdline,
251 const char *initrd_filename,
252 const char *cpu_model)
254 if (xen_hvm_init() != 0) {
255 hw_error("xen hardware virtual machine initialisation failed");
257 pc_init_pci_no_kvmclock(ram_size, boot_device,
258 kernel_filename, kernel_cmdline,
259 initrd_filename, cpu_model);
260 xen_vcpu_init();
262 #endif
264 static QEMUMachine pc_machine = {
265 .name = "pc-0.14",
266 .alias = "pc",
267 .desc = "Standard PC",
268 .init = pc_init_pci,
269 .max_cpus = 255,
270 .is_default = 1,
273 static QEMUMachine pc_machine_v0_13 = {
274 .name = "pc-0.13",
275 .desc = "Standard PC",
276 .init = pc_init_pci_no_kvmclock,
277 .max_cpus = 255,
278 .compat_props = (GlobalProperty[]) {
280 .driver = "virtio-9p-pci",
281 .property = "vectors",
282 .value = stringify(0),
284 .driver = "VGA",
285 .property = "rombar",
286 .value = stringify(0),
288 .driver = "vmware-svga",
289 .property = "rombar",
290 .value = stringify(0),
292 .driver = "PCI",
293 .property = "command_serr_enable",
294 .value = "off",
296 .driver = "virtio-blk-pci",
297 .property = "event_idx",
298 .value = "off",
300 .driver = "virtio-serial-pci",
301 .property = "event_idx",
302 .value = "off",
304 .driver = "virtio-net-pci",
305 .property = "event_idx",
306 .value = "off",
308 { /* end of list */ }
312 static QEMUMachine pc_machine_v0_12 = {
313 .name = "pc-0.12",
314 .desc = "Standard PC",
315 .init = pc_init_pci_no_kvmclock,
316 .max_cpus = 255,
317 .compat_props = (GlobalProperty[]) {
319 .driver = "virtio-serial-pci",
320 .property = "max_ports",
321 .value = stringify(1),
323 .driver = "virtio-serial-pci",
324 .property = "vectors",
325 .value = stringify(0),
327 .driver = "VGA",
328 .property = "rombar",
329 .value = stringify(0),
331 .driver = "vmware-svga",
332 .property = "rombar",
333 .value = stringify(0),
335 .driver = "PCI",
336 .property = "command_serr_enable",
337 .value = "off",
339 .driver = "virtio-blk-pci",
340 .property = "event_idx",
341 .value = "off",
343 .driver = "virtio-serial-pci",
344 .property = "event_idx",
345 .value = "off",
347 .driver = "virtio-net-pci",
348 .property = "event_idx",
349 .value = "off",
351 { /* end of list */ }
355 static QEMUMachine pc_machine_v0_11 = {
356 .name = "pc-0.11",
357 .desc = "Standard PC, qemu 0.11",
358 .init = pc_init_pci_no_kvmclock,
359 .max_cpus = 255,
360 .compat_props = (GlobalProperty[]) {
362 .driver = "virtio-blk-pci",
363 .property = "vectors",
364 .value = stringify(0),
366 .driver = "virtio-serial-pci",
367 .property = "max_ports",
368 .value = stringify(1),
370 .driver = "virtio-serial-pci",
371 .property = "vectors",
372 .value = stringify(0),
374 .driver = "ide-drive",
375 .property = "ver",
376 .value = "0.11",
378 .driver = "scsi-disk",
379 .property = "ver",
380 .value = "0.11",
382 .driver = "PCI",
383 .property = "rombar",
384 .value = stringify(0),
386 .driver = "PCI",
387 .property = "command_serr_enable",
388 .value = "off",
390 .driver = "virtio-blk-pci",
391 .property = "event_idx",
392 .value = "off",
394 .driver = "virtio-serial-pci",
395 .property = "event_idx",
396 .value = "off",
398 .driver = "virtio-net-pci",
399 .property = "event_idx",
400 .value = "off",
402 { /* end of list */ }
406 static QEMUMachine pc_machine_v0_10 = {
407 .name = "pc-0.10",
408 .desc = "Standard PC, qemu 0.10",
409 .init = pc_init_pci_no_kvmclock,
410 .max_cpus = 255,
411 .compat_props = (GlobalProperty[]) {
413 .driver = "virtio-blk-pci",
414 .property = "class",
415 .value = stringify(PCI_CLASS_STORAGE_OTHER),
417 .driver = "virtio-serial-pci",
418 .property = "class",
419 .value = stringify(PCI_CLASS_DISPLAY_OTHER),
421 .driver = "virtio-serial-pci",
422 .property = "max_ports",
423 .value = stringify(1),
425 .driver = "virtio-serial-pci",
426 .property = "vectors",
427 .value = stringify(0),
429 .driver = "virtio-net-pci",
430 .property = "vectors",
431 .value = stringify(0),
433 .driver = "virtio-blk-pci",
434 .property = "vectors",
435 .value = stringify(0),
437 .driver = "ide-drive",
438 .property = "ver",
439 .value = "0.10",
441 .driver = "scsi-disk",
442 .property = "ver",
443 .value = "0.10",
445 .driver = "PCI",
446 .property = "rombar",
447 .value = stringify(0),
449 .driver = "PCI",
450 .property = "command_serr_enable",
451 .value = "off",
453 .driver = "virtio-blk-pci",
454 .property = "event_idx",
455 .value = "off",
457 .driver = "virtio-serial-pci",
458 .property = "event_idx",
459 .value = "off",
461 .driver = "virtio-net-pci",
462 .property = "event_idx",
463 .value = "off",
465 { /* end of list */ }
469 static QEMUMachine isapc_machine = {
470 .name = "isapc",
471 .desc = "ISA-only PC",
472 .init = pc_init_isa,
473 .max_cpus = 1,
476 #ifdef CONFIG_XEN
477 static QEMUMachine xenfv_machine = {
478 .name = "xenfv",
479 .desc = "Xen Fully-virtualized PC",
480 .init = pc_xen_hvm_init,
481 .max_cpus = HVM_MAX_VCPUS,
482 .default_machine_opts = "accel=xen",
484 #endif
486 static void pc_machine_init(void)
488 qemu_register_machine(&pc_machine);
489 qemu_register_machine(&pc_machine_v0_13);
490 qemu_register_machine(&pc_machine_v0_12);
491 qemu_register_machine(&pc_machine_v0_11);
492 qemu_register_machine(&pc_machine_v0_10);
493 qemu_register_machine(&isapc_machine);
494 #ifdef CONFIG_XEN
495 qemu_register_machine(&xenfv_machine);
496 #endif
499 machine_init(pc_machine_init);