2008-12-02 23:53:50 +00:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License, version 2, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2009-07-16 20:47:01 +00:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2008-12-02 23:53:50 +00:00
|
|
|
*
|
|
|
|
* Copyright IBM Corp. 2008
|
|
|
|
*
|
|
|
|
* Authors: Hollis Blanchard <hollisb@us.ibm.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* This file implements emulation of the 32-bit PCI controller found in some
|
|
|
|
* 4xx SoCs, such as the 440EP. */
|
|
|
|
|
2016-01-26 18:16:58 +00:00
|
|
|
#include "qemu/osdep.h"
|
2019-08-12 05:23:42 +00:00
|
|
|
#include "hw/irq.h"
|
2013-02-05 16:06:20 +00:00
|
|
|
#include "hw/ppc/ppc.h"
|
|
|
|
#include "hw/ppc/ppc4xx.h"
|
2019-08-12 05:23:45 +00:00
|
|
|
#include "migration/vmstate.h"
|
2019-05-23 14:35:07 +00:00
|
|
|
#include "qemu/module.h"
|
2019-08-12 05:23:38 +00:00
|
|
|
#include "sysemu/reset.h"
|
2013-02-04 14:40:22 +00:00
|
|
|
#include "hw/pci/pci.h"
|
|
|
|
#include "hw/pci/pci_host.h"
|
2012-12-17 17:19:49 +00:00
|
|
|
#include "exec/address-spaces.h"
|
2017-02-10 09:27:23 +00:00
|
|
|
#include "trace.h"
|
2020-09-03 20:43:22 +00:00
|
|
|
#include "qom/object.h"
|
2008-12-02 23:53:50 +00:00
|
|
|
|
|
|
|
struct PCIMasterMap {
|
|
|
|
uint32_t la;
|
|
|
|
uint32_t ma;
|
|
|
|
uint32_t pcila;
|
|
|
|
uint32_t pciha;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PCITargetMap {
|
|
|
|
uint32_t ms;
|
|
|
|
uint32_t la;
|
|
|
|
};
|
|
|
|
|
2020-09-16 18:25:19 +00:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(PPC4xxPCIState, PPC4xx_PCI_HOST_BRIDGE)
|
2012-08-20 17:08:02 +00:00
|
|
|
|
2008-12-02 23:53:50 +00:00
|
|
|
#define PPC4xx_PCI_NR_PMMS 3
|
|
|
|
#define PPC4xx_PCI_NR_PTMS 2
|
|
|
|
|
|
|
|
struct PPC4xxPCIState {
|
2012-08-20 17:08:09 +00:00
|
|
|
PCIHostState parent_obj;
|
2012-01-10 18:36:26 +00:00
|
|
|
|
2008-12-02 23:53:50 +00:00
|
|
|
struct PCIMasterMap pmm[PPC4xx_PCI_NR_PMMS];
|
|
|
|
struct PCITargetMap ptm[PPC4xx_PCI_NR_PTMS];
|
2020-09-10 07:23:25 +00:00
|
|
|
qemu_irq irq[PCI_NUM_PINS];
|
2008-12-02 23:53:50 +00:00
|
|
|
|
2012-01-10 18:36:26 +00:00
|
|
|
MemoryRegion container;
|
|
|
|
MemoryRegion iomem;
|
2008-12-02 23:53:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define PCIC0_CFGADDR 0x0
|
|
|
|
#define PCIC0_CFGDATA 0x4
|
|
|
|
|
|
|
|
/* PLB Memory Map (PMM) registers specify which PLB addresses are translated to
|
|
|
|
* PCI accesses. */
|
|
|
|
#define PCIL0_PMM0LA 0x0
|
|
|
|
#define PCIL0_PMM0MA 0x4
|
|
|
|
#define PCIL0_PMM0PCILA 0x8
|
|
|
|
#define PCIL0_PMM0PCIHA 0xc
|
|
|
|
#define PCIL0_PMM1LA 0x10
|
|
|
|
#define PCIL0_PMM1MA 0x14
|
|
|
|
#define PCIL0_PMM1PCILA 0x18
|
|
|
|
#define PCIL0_PMM1PCIHA 0x1c
|
|
|
|
#define PCIL0_PMM2LA 0x20
|
|
|
|
#define PCIL0_PMM2MA 0x24
|
|
|
|
#define PCIL0_PMM2PCILA 0x28
|
|
|
|
#define PCIL0_PMM2PCIHA 0x2c
|
|
|
|
|
|
|
|
/* PCI Target Map (PTM) registers specify which PCI addresses are translated to
|
|
|
|
* PLB accesses. */
|
|
|
|
#define PCIL0_PTM1MS 0x30
|
|
|
|
#define PCIL0_PTM1LA 0x34
|
|
|
|
#define PCIL0_PTM2MS 0x38
|
|
|
|
#define PCIL0_PTM2LA 0x3c
|
2012-01-10 18:36:26 +00:00
|
|
|
#define PCI_REG_BASE 0x800000
|
2008-12-02 23:53:50 +00:00
|
|
|
#define PCI_REG_SIZE 0x40
|
|
|
|
|
2012-01-10 18:36:26 +00:00
|
|
|
#define PCI_ALL_SIZE (PCI_REG_BASE + PCI_REG_SIZE)
|
2008-12-02 23:53:50 +00:00
|
|
|
|
2012-10-23 10:30:10 +00:00
|
|
|
static void ppc4xx_pci_reg_write4(void *opaque, hwaddr offset,
|
2011-11-20 09:44:37 +00:00
|
|
|
uint64_t value, unsigned size)
|
2008-12-02 23:53:50 +00:00
|
|
|
{
|
|
|
|
struct PPC4xxPCIState *pci = opaque;
|
|
|
|
|
|
|
|
/* We ignore all target attempts at PCI configuration, effectively
|
|
|
|
* assuming a bidirectional 1:1 mapping of PLB and PCI space. */
|
|
|
|
|
|
|
|
switch (offset) {
|
|
|
|
case PCIL0_PMM0LA:
|
|
|
|
pci->pmm[0].la = value;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM0MA:
|
|
|
|
pci->pmm[0].ma = value;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM0PCIHA:
|
|
|
|
pci->pmm[0].pciha = value;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM0PCILA:
|
|
|
|
pci->pmm[0].pcila = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCIL0_PMM1LA:
|
|
|
|
pci->pmm[1].la = value;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM1MA:
|
|
|
|
pci->pmm[1].ma = value;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM1PCIHA:
|
|
|
|
pci->pmm[1].pciha = value;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM1PCILA:
|
|
|
|
pci->pmm[1].pcila = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCIL0_PMM2LA:
|
|
|
|
pci->pmm[2].la = value;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM2MA:
|
|
|
|
pci->pmm[2].ma = value;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM2PCIHA:
|
|
|
|
pci->pmm[2].pciha = value;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM2PCILA:
|
|
|
|
pci->pmm[2].pcila = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCIL0_PTM1MS:
|
|
|
|
pci->ptm[0].ms = value;
|
|
|
|
break;
|
|
|
|
case PCIL0_PTM1LA:
|
|
|
|
pci->ptm[0].la = value;
|
|
|
|
break;
|
|
|
|
case PCIL0_PTM2MS:
|
|
|
|
pci->ptm[1].ms = value;
|
|
|
|
break;
|
|
|
|
case PCIL0_PTM2LA:
|
|
|
|
pci->ptm[1].la = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
printf("%s: unhandled PCI internal register 0x%lx\n", __func__,
|
|
|
|
(unsigned long)offset);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-23 10:30:10 +00:00
|
|
|
static uint64_t ppc4xx_pci_reg_read4(void *opaque, hwaddr offset,
|
2011-11-20 09:44:37 +00:00
|
|
|
unsigned size)
|
2008-12-02 23:53:50 +00:00
|
|
|
{
|
|
|
|
struct PPC4xxPCIState *pci = opaque;
|
|
|
|
uint32_t value;
|
|
|
|
|
|
|
|
switch (offset) {
|
|
|
|
case PCIL0_PMM0LA:
|
|
|
|
value = pci->pmm[0].la;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM0MA:
|
|
|
|
value = pci->pmm[0].ma;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM0PCIHA:
|
|
|
|
value = pci->pmm[0].pciha;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM0PCILA:
|
|
|
|
value = pci->pmm[0].pcila;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCIL0_PMM1LA:
|
|
|
|
value = pci->pmm[1].la;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM1MA:
|
|
|
|
value = pci->pmm[1].ma;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM1PCIHA:
|
|
|
|
value = pci->pmm[1].pciha;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM1PCILA:
|
|
|
|
value = pci->pmm[1].pcila;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCIL0_PMM2LA:
|
|
|
|
value = pci->pmm[2].la;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM2MA:
|
|
|
|
value = pci->pmm[2].ma;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM2PCIHA:
|
|
|
|
value = pci->pmm[2].pciha;
|
|
|
|
break;
|
|
|
|
case PCIL0_PMM2PCILA:
|
|
|
|
value = pci->pmm[2].pcila;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCIL0_PTM1MS:
|
|
|
|
value = pci->ptm[0].ms;
|
|
|
|
break;
|
|
|
|
case PCIL0_PTM1LA:
|
|
|
|
value = pci->ptm[0].la;
|
|
|
|
break;
|
|
|
|
case PCIL0_PTM2MS:
|
|
|
|
value = pci->ptm[1].ms;
|
|
|
|
break;
|
|
|
|
case PCIL0_PTM2LA:
|
|
|
|
value = pci->ptm[1].la;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
printf("%s: invalid PCI internal register 0x%lx\n", __func__,
|
|
|
|
(unsigned long)offset);
|
|
|
|
value = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:44:37 +00:00
|
|
|
static const MemoryRegionOps pci_reg_ops = {
|
|
|
|
.read = ppc4xx_pci_reg_read4,
|
|
|
|
.write = ppc4xx_pci_reg_write4,
|
|
|
|
.endianness = DEVICE_LITTLE_ENDIAN,
|
2008-12-02 23:53:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void ppc4xx_pci_reset(void *opaque)
|
|
|
|
{
|
|
|
|
struct PPC4xxPCIState *pci = opaque;
|
|
|
|
|
|
|
|
memset(pci->pmm, 0, sizeof(pci->pmm));
|
|
|
|
memset(pci->ptm, 0, sizeof(pci->ptm));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* On Bamboo, all pins from each slot are tied to a single board IRQ. This
|
|
|
|
* may need further refactoring for other boards. */
|
|
|
|
static int ppc4xx_pci_map_irq(PCIDevice *pci_dev, int irq_num)
|
|
|
|
{
|
|
|
|
int slot = pci_dev->devfn >> 3;
|
|
|
|
|
2017-02-10 09:27:23 +00:00
|
|
|
trace_ppc4xx_pci_map_irq(pci_dev->devfn, irq_num, slot);
|
2008-12-02 23:53:50 +00:00
|
|
|
|
|
|
|
return slot - 1;
|
|
|
|
}
|
|
|
|
|
2009-08-28 13:28:17 +00:00
|
|
|
static void ppc4xx_pci_set_irq(void *opaque, int irq_num, int level)
|
2008-12-02 23:53:50 +00:00
|
|
|
{
|
2009-08-28 13:28:17 +00:00
|
|
|
qemu_irq *pci_irqs = opaque;
|
|
|
|
|
2017-02-10 09:27:23 +00:00
|
|
|
trace_ppc4xx_pci_set_irq(irq_num);
|
2020-09-01 10:40:42 +00:00
|
|
|
assert(irq_num >= 0);
|
2008-12-02 23:53:50 +00:00
|
|
|
qemu_set_irq(pci_irqs[irq_num], level);
|
|
|
|
}
|
|
|
|
|
2010-12-02 16:27:49 +00:00
|
|
|
static const VMStateDescription vmstate_pci_master_map = {
|
|
|
|
.name = "pci_master_map",
|
|
|
|
.version_id = 0,
|
|
|
|
.minimum_version_id = 0,
|
2014-04-16 13:24:04 +00:00
|
|
|
.fields = (VMStateField[]) {
|
2010-12-02 16:27:49 +00:00
|
|
|
VMSTATE_UINT32(la, struct PCIMasterMap),
|
|
|
|
VMSTATE_UINT32(ma, struct PCIMasterMap),
|
|
|
|
VMSTATE_UINT32(pcila, struct PCIMasterMap),
|
|
|
|
VMSTATE_UINT32(pciha, struct PCIMasterMap),
|
|
|
|
VMSTATE_END_OF_LIST()
|
2008-12-02 23:53:50 +00:00
|
|
|
}
|
2010-12-02 16:27:49 +00:00
|
|
|
};
|
2008-12-02 23:53:50 +00:00
|
|
|
|
2010-12-02 16:27:49 +00:00
|
|
|
static const VMStateDescription vmstate_pci_target_map = {
|
|
|
|
.name = "pci_target_map",
|
|
|
|
.version_id = 0,
|
|
|
|
.minimum_version_id = 0,
|
2014-04-16 13:24:04 +00:00
|
|
|
.fields = (VMStateField[]) {
|
2010-12-02 16:27:49 +00:00
|
|
|
VMSTATE_UINT32(ms, struct PCITargetMap),
|
|
|
|
VMSTATE_UINT32(la, struct PCITargetMap),
|
|
|
|
VMSTATE_END_OF_LIST()
|
2008-12-02 23:53:50 +00:00
|
|
|
}
|
2010-12-02 16:27:49 +00:00
|
|
|
};
|
2008-12-02 23:53:50 +00:00
|
|
|
|
2010-12-02 16:27:49 +00:00
|
|
|
static const VMStateDescription vmstate_ppc4xx_pci = {
|
|
|
|
.name = "ppc4xx_pci",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
2014-04-16 13:24:04 +00:00
|
|
|
.fields = (VMStateField[]) {
|
2010-12-02 16:27:49 +00:00
|
|
|
VMSTATE_STRUCT_ARRAY(pmm, PPC4xxPCIState, PPC4xx_PCI_NR_PMMS, 1,
|
|
|
|
vmstate_pci_master_map,
|
|
|
|
struct PCIMasterMap),
|
|
|
|
VMSTATE_STRUCT_ARRAY(ptm, PPC4xxPCIState, PPC4xx_PCI_NR_PTMS, 1,
|
|
|
|
vmstate_pci_target_map,
|
|
|
|
struct PCITargetMap),
|
|
|
|
VMSTATE_END_OF_LIST()
|
2008-12-02 23:53:50 +00:00
|
|
|
}
|
2010-12-02 16:27:49 +00:00
|
|
|
};
|
2008-12-02 23:53:50 +00:00
|
|
|
|
|
|
|
/* XXX Interrupt acknowledge cycles not supported. */
|
2018-10-01 11:44:21 +00:00
|
|
|
static void ppc4xx_pcihost_realize(DeviceState *dev, Error **errp)
|
2012-01-10 18:36:26 +00:00
|
|
|
{
|
2018-10-01 11:44:21 +00:00
|
|
|
SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
|
2012-01-10 18:36:26 +00:00
|
|
|
PPC4xxPCIState *s;
|
|
|
|
PCIHostState *h;
|
|
|
|
PCIBus *b;
|
|
|
|
int i;
|
|
|
|
|
2012-08-20 17:08:08 +00:00
|
|
|
h = PCI_HOST_BRIDGE(dev);
|
2012-08-20 17:08:02 +00:00
|
|
|
s = PPC4xx_PCI_HOST_BRIDGE(dev);
|
2012-01-10 18:36:26 +00:00
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->irq); i++) {
|
2018-10-01 11:44:21 +00:00
|
|
|
sysbus_init_irq(sbd, &s->irq[i]);
|
2012-01-10 18:36:26 +00:00
|
|
|
}
|
|
|
|
|
2018-10-01 11:44:21 +00:00
|
|
|
b = pci_register_root_bus(dev, NULL, ppc4xx_pci_set_irq,
|
2017-11-29 08:46:22 +00:00
|
|
|
ppc4xx_pci_map_irq, s->irq, get_system_memory(),
|
2020-09-01 10:40:41 +00:00
|
|
|
get_system_io(), 0, ARRAY_SIZE(s->irq),
|
|
|
|
TYPE_PCI_BUS);
|
2012-08-20 17:08:02 +00:00
|
|
|
h->bus = b;
|
2012-01-10 18:36:26 +00:00
|
|
|
|
|
|
|
pci_create_simple(b, 0, "ppc4xx-host-bridge");
|
|
|
|
|
|
|
|
/* XXX split into 2 memory regions, one for config space, one for regs */
|
2013-06-07 01:25:08 +00:00
|
|
|
memory_region_init(&s->container, OBJECT(s), "pci-container", PCI_ALL_SIZE);
|
|
|
|
memory_region_init_io(&h->conf_mem, OBJECT(s), &pci_host_conf_le_ops, h,
|
2012-01-10 18:36:26 +00:00
|
|
|
"pci-conf-idx", 4);
|
2013-06-07 01:25:08 +00:00
|
|
|
memory_region_init_io(&h->data_mem, OBJECT(s), &pci_host_data_le_ops, h,
|
2012-01-10 18:36:26 +00:00
|
|
|
"pci-conf-data", 4);
|
2013-06-07 01:25:08 +00:00
|
|
|
memory_region_init_io(&s->iomem, OBJECT(s), &pci_reg_ops, s,
|
2012-01-10 18:36:26 +00:00
|
|
|
"pci.reg", PCI_REG_SIZE);
|
|
|
|
memory_region_add_subregion(&s->container, PCIC0_CFGADDR, &h->conf_mem);
|
|
|
|
memory_region_add_subregion(&s->container, PCIC0_CFGDATA, &h->data_mem);
|
|
|
|
memory_region_add_subregion(&s->container, PCI_REG_BASE, &s->iomem);
|
2018-10-01 11:44:21 +00:00
|
|
|
sysbus_init_mmio(sbd, &s->container);
|
2012-01-10 18:36:26 +00:00
|
|
|
qemu_register_reset(ppc4xx_pci_reset, s);
|
|
|
|
}
|
|
|
|
|
2011-12-04 18:22:06 +00:00
|
|
|
static void ppc4xx_host_bridge_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
|
2011-12-08 03:34:16 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2011-12-04 18:22:06 +00:00
|
|
|
|
2011-12-08 03:34:16 +00:00
|
|
|
dc->desc = "Host bridge";
|
2011-12-04 18:22:06 +00:00
|
|
|
k->vendor_id = PCI_VENDOR_ID_IBM;
|
|
|
|
k->device_id = PCI_DEVICE_ID_IBM_440GX;
|
|
|
|
k->class_id = PCI_CLASS_BRIDGE_OTHER;
|
pci-host: Consistently set cannot_instantiate_with_device_add_yet
Many PCI host bridges consist of a sysbus device and a PCI device.
You need both for the thing to work. Arguably, these bridges should
be modelled as a single, composite devices instead of pairs of
seemingly independent devices you can only use together, but we're not
there, yet.
Since the sysbus part can't be instantiated with device_add, yet,
permitting it with the PCI part is useless. We shouldn't offer
useless options to the user, so let's set
cannot_instantiate_with_device_add_yet for them.
It's already set for Bonito, Grackle, i440FX and Raven. Document why.
Set it for the others: dec-21154, e500-host-bridge, gt64120_pci, mch,
pbm-pci, ppc4xx-host-bridge, sh_pci_host, u3-agp, uni-north-agp,
uni-north-internal-pci, uni-north-pci, and versatile_pci_host.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Marcel Apfelbaum <marcel.a@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
2013-11-28 16:26:58 +00:00
|
|
|
/*
|
|
|
|
* PCI-facing part of the host bridge, not usable without the
|
|
|
|
* host-facing part, which can't be device_add'ed, yet.
|
|
|
|
*/
|
2017-05-03 20:35:44 +00:00
|
|
|
dc->user_creatable = false;
|
2011-12-04 18:22:06 +00:00
|
|
|
}
|
|
|
|
|
2012-08-20 17:07:56 +00:00
|
|
|
static const TypeInfo ppc4xx_host_bridge_info = {
|
2011-12-08 03:34:16 +00:00
|
|
|
.name = "ppc4xx-host-bridge",
|
|
|
|
.parent = TYPE_PCI_DEVICE,
|
|
|
|
.instance_size = sizeof(PCIDevice),
|
|
|
|
.class_init = ppc4xx_host_bridge_class_init,
|
2017-09-27 19:56:34 +00:00
|
|
|
.interfaces = (InterfaceInfo[]) {
|
|
|
|
{ INTERFACE_CONVENTIONAL_PCI_DEVICE },
|
|
|
|
{ },
|
|
|
|
},
|
2012-01-10 18:36:26 +00:00
|
|
|
};
|
|
|
|
|
2012-01-24 19:12:29 +00:00
|
|
|
static void ppc4xx_pcihost_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
2011-12-08 03:34:16 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2012-01-24 19:12:29 +00:00
|
|
|
|
2018-10-01 11:44:21 +00:00
|
|
|
dc->realize = ppc4xx_pcihost_realize;
|
2011-12-08 03:34:16 +00:00
|
|
|
dc->vmsd = &vmstate_ppc4xx_pci;
|
2012-01-24 19:12:29 +00:00
|
|
|
}
|
|
|
|
|
2012-08-20 17:07:56 +00:00
|
|
|
static const TypeInfo ppc4xx_pcihost_info = {
|
2012-08-20 17:08:02 +00:00
|
|
|
.name = TYPE_PPC4xx_PCI_HOST_BRIDGE,
|
2012-08-20 17:08:08 +00:00
|
|
|
.parent = TYPE_PCI_HOST_BRIDGE,
|
2011-12-08 03:34:16 +00:00
|
|
|
.instance_size = sizeof(PPC4xxPCIState),
|
|
|
|
.class_init = ppc4xx_pcihost_class_init,
|
2012-01-10 18:36:26 +00:00
|
|
|
};
|
|
|
|
|
2012-02-09 14:20:55 +00:00
|
|
|
static void ppc4xx_pci_register_types(void)
|
2008-12-02 23:53:50 +00:00
|
|
|
{
|
2011-12-08 03:34:16 +00:00
|
|
|
type_register_static(&ppc4xx_pcihost_info);
|
|
|
|
type_register_static(&ppc4xx_host_bridge_info);
|
2008-12-02 23:53:50 +00:00
|
|
|
}
|
2012-02-09 14:20:55 +00:00
|
|
|
|
|
|
|
type_init(ppc4xx_pci_register_types)
|