]>
Commit | Line | Data |
---|---|---|
4d5c29ca SW |
1 | /* |
2 | * Generic device-tree-driven paravirt PPC e500 platform | |
3 | * | |
4 | * Copyright 2012 Freescale Semiconductor, Inc. | |
5 | * | |
6 | * This is free software; you can redistribute it and/or modify | |
7 | * it under the terms of the GNU General Public License as published by | |
8 | * the Free Software Foundation; either version 2 of the License, or | |
9 | * (at your option) any later version. | |
10 | */ | |
11 | ||
0d75590d | 12 | #include "qemu/osdep.h" |
4d5c29ca SW |
13 | #include "qemu-common.h" |
14 | #include "e500.h" | |
7948b4b0 | 15 | #include "hw/boards.h" |
9c17d615 | 16 | #include "sysemu/device_tree.h" |
77ac58dd | 17 | #include "sysemu/kvm.h" |
9c17d615 | 18 | #include "hw/pci/pci.h" |
0d09e41a | 19 | #include "hw/ppc/openpic.h" |
3b961124 | 20 | #include "kvm_ppc.h" |
4d5c29ca SW |
21 | |
22 | static void e500plat_fixup_devtree(PPCE500Params *params, void *fdt) | |
23 | { | |
24 | const char model[] = "QEMU ppce500"; | |
25 | const char compatible[] = "fsl,qemu-e500"; | |
26 | ||
5a4348d1 PC |
27 | qemu_fdt_setprop(fdt, "/", "model", model, sizeof(model)); |
28 | qemu_fdt_setprop(fdt, "/", "compatible", compatible, | |
29 | sizeof(compatible)); | |
4d5c29ca SW |
30 | } |
31 | ||
3ef96221 | 32 | static void e500plat_init(MachineState *machine) |
4d5c29ca SW |
33 | { |
34 | PPCE500Params params = { | |
3bb7e02a AG |
35 | .pci_first_slot = 0x1, |
36 | .pci_nr_slots = PCI_SLOT_MAX - 1, | |
4d5c29ca | 37 | .fixup_devtree = e500plat_fixup_devtree, |
f5fba9d2 | 38 | .mpic_version = OPENPIC_MODEL_FSL_MPIC_42, |
b88e77f4 | 39 | .has_mpc8xxx_gpio = true, |
f7087343 AG |
40 | .has_platform_bus = true, |
41 | .platform_bus_base = 0xf00000000ULL, | |
42 | .platform_bus_size = (128ULL * 1024 * 1024), | |
43 | .platform_bus_first_irq = 5, | |
44 | .platform_bus_num_irqs = 10, | |
e6b4e5f4 AG |
45 | .ccsrbar_base = 0xFE0000000ULL, |
46 | .pci_pio_base = 0xFE1000000ULL, | |
cb3778a0 AG |
47 | .pci_mmio_base = 0xC00000000ULL, |
48 | .pci_mmio_bus_base = 0xE0000000ULL, | |
e6b4e5f4 | 49 | .spin_base = 0xFEF000000ULL, |
4d5c29ca SW |
50 | }; |
51 | ||
3b961124 SY |
52 | /* Older KVM versions don't support EPR which breaks guests when we announce |
53 | MPIC variants that support EPR. Revert to an older one for those */ | |
54 | if (kvm_enabled() && !kvmppc_has_cap_epr()) { | |
55 | params.mpic_version = OPENPIC_MODEL_FSL_MPIC_20; | |
56 | } | |
57 | ||
3ef96221 | 58 | ppce500_init(machine, ¶ms); |
4d5c29ca SW |
59 | } |
60 | ||
e264d29d | 61 | static void e500plat_machine_init(MachineClass *mc) |
4d5c29ca | 62 | { |
e264d29d EH |
63 | mc->desc = "generic paravirt e500 platform"; |
64 | mc->init = e500plat_init; | |
65 | mc->max_cpus = 32; | |
66 | mc->has_dynamic_sysbus = true; | |
4d5c29ca SW |
67 | } |
68 | ||
e264d29d | 69 | DEFINE_MACHINE("ppce500", e500plat_machine_init) |