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.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 18:16:58 +00:00
|
|
|
#include "qemu/osdep.h"
|
2018-06-25 12:42:24 +00:00
|
|
|
#include "qemu/units.h"
|
2012-07-02 13:03:21 +00:00
|
|
|
#include "e500.h"
|
2017-11-25 15:16:07 +00:00
|
|
|
#include "hw/net/fsl_etsec/etsec.h"
|
2012-12-17 17:20:04 +00:00
|
|
|
#include "sysemu/device_tree.h"
|
2014-09-17 10:21:29 +00:00
|
|
|
#include "sysemu/kvm.h"
|
2017-11-25 15:16:05 +00:00
|
|
|
#include "hw/sysbus.h"
|
2012-12-17 17:20:04 +00:00
|
|
|
#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
|
|
|
|
2018-04-18 14:28:02 +00:00
|
|
|
static void e500plat_fixup_devtree(void *fdt)
|
2012-07-02 13:03:21 +00:00
|
|
|
{
|
|
|
|
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
|
|
|
{
|
2018-04-18 14:28:02 +00:00
|
|
|
PPCE500MachineClass *pmc = PPCE500_MACHINE_GET_CLASS(machine);
|
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()) {
|
2018-04-18 14:28:02 +00:00
|
|
|
pmc->mpic_version = OPENPIC_MODEL_FSL_MPIC_20;
|
2013-03-30 06:40:49 +00:00
|
|
|
}
|
|
|
|
|
2018-04-18 14:28:02 +00:00
|
|
|
ppce500_init(machine);
|
2012-07-02 13:03:21 +00:00
|
|
|
}
|
|
|
|
|
2018-05-10 17:10:56 +00:00
|
|
|
static void e500plat_machine_device_plug_cb(HotplugHandler *hotplug_dev,
|
|
|
|
DeviceState *dev, Error **errp)
|
|
|
|
{
|
|
|
|
PPCE500MachineState *pms = PPCE500_MACHINE(hotplug_dev);
|
2023-01-25 13:00:22 +00:00
|
|
|
MachineClass *mc = MACHINE_GET_CLASS(pms);
|
2018-05-10 17:10:56 +00:00
|
|
|
|
2023-01-25 13:00:22 +00:00
|
|
|
if (device_is_dynamic_sysbus(mc, dev)) {
|
|
|
|
platform_bus_link_device(pms->pbus_dev, SYS_BUS_DEVICE(dev));
|
2018-05-10 17:10:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
HotplugHandler *e500plat_machine_get_hotpug_handler(MachineState *machine,
|
|
|
|
DeviceState *dev)
|
|
|
|
{
|
2021-03-25 15:33:10 +00:00
|
|
|
MachineClass *mc = MACHINE_GET_CLASS(machine);
|
|
|
|
|
|
|
|
if (device_is_dynamic_sysbus(mc, dev)) {
|
2018-05-10 17:10:56 +00:00
|
|
|
return HOTPLUG_HANDLER(machine);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-04-18 14:28:02 +00:00
|
|
|
#define TYPE_E500PLAT_MACHINE MACHINE_TYPE_NAME("ppce500")
|
|
|
|
|
|
|
|
static void e500plat_machine_class_init(ObjectClass *oc, void *data)
|
2012-07-02 13:03:21 +00:00
|
|
|
{
|
2018-04-18 14:28:02 +00:00
|
|
|
PPCE500MachineClass *pmc = PPCE500_MACHINE_CLASS(oc);
|
2018-05-10 17:10:56 +00:00
|
|
|
HotplugHandlerClass *hc = HOTPLUG_HANDLER_CLASS(oc);
|
2018-04-18 14:28:02 +00:00
|
|
|
MachineClass *mc = MACHINE_CLASS(oc);
|
|
|
|
|
2018-05-10 17:10:56 +00:00
|
|
|
assert(!mc->get_hotplug_handler);
|
2018-05-10 17:10:56 +00:00
|
|
|
mc->get_hotplug_handler = e500plat_machine_get_hotpug_handler;
|
|
|
|
hc->plug = e500plat_machine_device_plug_cb;
|
|
|
|
|
2018-04-18 14:28:02 +00:00
|
|
|
pmc->pci_first_slot = 0x1;
|
|
|
|
pmc->pci_nr_slots = PCI_SLOT_MAX - 1;
|
|
|
|
pmc->fixup_devtree = e500plat_fixup_devtree;
|
|
|
|
pmc->mpic_version = OPENPIC_MODEL_FSL_MPIC_42;
|
|
|
|
pmc->has_mpc8xxx_gpio = true;
|
2022-11-01 22:29:34 +00:00
|
|
|
pmc->has_esdhc = true;
|
2018-04-18 14:28:02 +00:00
|
|
|
pmc->platform_bus_base = 0xf00000000ULL;
|
2018-06-25 12:42:24 +00:00
|
|
|
pmc->platform_bus_size = 128 * MiB;
|
2018-04-18 14:28:02 +00:00
|
|
|
pmc->platform_bus_first_irq = 5;
|
|
|
|
pmc->platform_bus_num_irqs = 10;
|
|
|
|
pmc->ccsrbar_base = 0xFE0000000ULL;
|
|
|
|
pmc->pci_pio_base = 0xFE1000000ULL;
|
|
|
|
pmc->pci_mmio_base = 0xC00000000ULL;
|
|
|
|
pmc->pci_mmio_bus_base = 0xE0000000ULL;
|
|
|
|
pmc->spin_base = 0xFEF000000ULL;
|
|
|
|
|
2015-09-04 18:37:08 +00:00
|
|
|
mc->desc = "generic paravirt e500 platform";
|
|
|
|
mc->init = e500plat_init;
|
|
|
|
mc->max_cpus = 32;
|
2017-10-09 19:50:51 +00:00
|
|
|
mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("e500v2_v30");
|
2020-02-19 16:09:33 +00:00
|
|
|
mc->default_ram_id = "mpc8544ds.ram";
|
2023-05-12 12:40:20 +00:00
|
|
|
mc->default_nic = "virtio-net-pci";
|
2018-04-18 14:28:02 +00:00
|
|
|
machine_class_allow_dynamic_sysbus_dev(mc, TYPE_ETSEC_COMMON);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo e500plat_info = {
|
|
|
|
.name = TYPE_E500PLAT_MACHINE,
|
|
|
|
.parent = TYPE_PPCE500_MACHINE,
|
|
|
|
.class_init = e500plat_machine_class_init,
|
2018-05-10 17:10:56 +00:00
|
|
|
.interfaces = (InterfaceInfo[]) {
|
|
|
|
{ TYPE_HOTPLUG_HANDLER },
|
|
|
|
{ }
|
|
|
|
}
|
2018-04-18 14:28:02 +00:00
|
|
|
};
|
2012-07-02 13:03:21 +00:00
|
|
|
|
2018-04-18 14:28:02 +00:00
|
|
|
static void e500plat_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&e500plat_info);
|
|
|
|
}
|
|
|
|
type_init(e500plat_register_types)
|