2012-07-02 13:03:21 +00:00
|
|
|
/*
|
|
|
|
* Generic device-tree-driven paravirt PPC e500 platform
|
|
|
|
*
|
|
|
|
* Copyright 2012 Freescale Semiconductor, Inc.
|
|
|
|
*
|
|
|
|
* This is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "e500.h"
|
2013-02-03 19:18:28 +00:00
|
|
|
#include "hw/boards.h"
|
2012-12-17 17:20:04 +00:00
|
|
|
#include "sysemu/device_tree.h"
|
|
|
|
#include "hw/pci/pci.h"
|
2013-02-05 16:06:20 +00:00
|
|
|
#include "hw/ppc/openpic.h"
|
2013-03-30 06:40:49 +00:00
|
|
|
#include "kvm_ppc.h"
|
2012-07-02 13:03:21 +00:00
|
|
|
|
|
|
|
static void e500plat_fixup_devtree(PPCE500Params *params, void *fdt)
|
|
|
|
{
|
|
|
|
const char model[] = "QEMU ppce500";
|
|
|
|
const char compatible[] = "fsl,qemu-e500";
|
|
|
|
|
2013-11-11 08:14:41 +00:00
|
|
|
qemu_fdt_setprop(fdt, "/", "model", model, sizeof(model));
|
|
|
|
qemu_fdt_setprop(fdt, "/", "compatible", compatible,
|
|
|
|
sizeof(compatible));
|
2012-07-02 13:03:21 +00:00
|
|
|
}
|
|
|
|
|
2014-05-07 14:42:57 +00:00
|
|
|
static void e500plat_init(MachineState *machine)
|
2012-07-02 13:03:21 +00:00
|
|
|
{
|
|
|
|
PPCE500Params params = {
|
2012-12-12 13:58:30 +00:00
|
|
|
.pci_first_slot = 0x1,
|
|
|
|
.pci_nr_slots = PCI_SLOT_MAX - 1,
|
2012-07-02 13:03:21 +00:00
|
|
|
.fixup_devtree = e500plat_fixup_devtree,
|
2013-01-21 15:53:55 +00:00
|
|
|
.mpic_version = OPENPIC_MODEL_FSL_MPIC_42,
|
2014-10-01 14:00:49 +00:00
|
|
|
.has_mpc8xxx_gpio = true,
|
2014-07-01 14:27:09 +00:00
|
|
|
.has_platform_bus = true,
|
|
|
|
.platform_bus_base = 0xf00000000ULL,
|
|
|
|
.platform_bus_size = (128ULL * 1024 * 1024),
|
|
|
|
.platform_bus_first_irq = 5,
|
|
|
|
.platform_bus_num_irqs = 10,
|
2014-11-07 16:07:03 +00:00
|
|
|
.ccsrbar_base = 0xFE0000000ULL,
|
|
|
|
.pci_pio_base = 0xFE1000000ULL,
|
2014-11-12 21:44:52 +00:00
|
|
|
.pci_mmio_base = 0xC00000000ULL,
|
|
|
|
.pci_mmio_bus_base = 0xE0000000ULL,
|
2014-11-07 16:07:03 +00:00
|
|
|
.spin_base = 0xFEF000000ULL,
|
2012-07-02 13:03:21 +00:00
|
|
|
};
|
|
|
|
|
2013-03-30 06:40:49 +00:00
|
|
|
/* Older KVM versions don't support EPR which breaks guests when we announce
|
|
|
|
MPIC variants that support EPR. Revert to an older one for those */
|
|
|
|
if (kvm_enabled() && !kvmppc_has_cap_epr()) {
|
|
|
|
params.mpic_version = OPENPIC_MODEL_FSL_MPIC_20;
|
|
|
|
}
|
|
|
|
|
2014-05-07 14:42:57 +00:00
|
|
|
ppce500_init(machine, ¶ms);
|
2012-07-02 13:03:21 +00:00
|
|
|
}
|
|
|
|
|
2015-09-04 18:37:08 +00:00
|
|
|
static void e500plat_machine_init(MachineClass *mc)
|
2012-07-02 13:03:21 +00:00
|
|
|
{
|
2015-09-04 18:37:08 +00:00
|
|
|
mc->desc = "generic paravirt e500 platform";
|
|
|
|
mc->init = e500plat_init;
|
|
|
|
mc->max_cpus = 32;
|
|
|
|
mc->has_dynamic_sysbus = true;
|
2012-07-02 13:03:21 +00:00
|
|
|
}
|
|
|
|
|
2015-09-04 18:37:08 +00:00
|
|
|
DEFINE_MACHINE("ppce500", e500plat_machine_init)
|