2007-09-17 05:08:06 +08:00
|
|
|
/*
|
2006-05-14 00:11:23 +08:00
|
|
|
* ARM Versatile/PB PCI host controller
|
|
|
|
*
|
2009-05-15 05:35:08 +08:00
|
|
|
* Copyright (c) 2006-2009 CodeSourcery.
|
2006-05-14 00:11:23 +08:00
|
|
|
* Written by Paul Brook
|
|
|
|
*
|
2011-06-26 10:21:35 +08:00
|
|
|
* This code is licensed under the LGPL.
|
2006-05-14 00:11:23 +08:00
|
|
|
*/
|
|
|
|
|
2013-02-04 22:40:22 +08:00
|
|
|
#include "hw/sysbus.h"
|
|
|
|
#include "hw/pci/pci.h"
|
2013-04-19 18:15:18 +08:00
|
|
|
#include "hw/pci/pci_bus.h"
|
2013-02-04 22:40:22 +08:00
|
|
|
#include "hw/pci/pci_host.h"
|
2012-12-18 01:19:49 +08:00
|
|
|
#include "exec/address-spaces.h"
|
2009-05-15 05:35:08 +08:00
|
|
|
|
|
|
|
typedef struct {
|
2013-04-19 18:15:18 +08:00
|
|
|
PCIHostState parent_obj;
|
|
|
|
|
2009-05-15 05:35:08 +08:00
|
|
|
qemu_irq irq[4];
|
2011-08-15 22:17:32 +08:00
|
|
|
MemoryRegion mem_config;
|
|
|
|
MemoryRegion mem_config2;
|
|
|
|
MemoryRegion isa;
|
2013-04-19 18:15:18 +08:00
|
|
|
PCIBus pci_bus;
|
|
|
|
PCIDevice pci_dev;
|
|
|
|
|
|
|
|
/* Constant for life of device: */
|
|
|
|
int realview;
|
2009-05-15 05:35:08 +08:00
|
|
|
} PCIVPBState;
|
2006-05-14 00:11:23 +08:00
|
|
|
|
2013-04-19 18:15:18 +08:00
|
|
|
#define TYPE_VERSATILE_PCI "versatile_pci"
|
|
|
|
#define PCI_VPB(obj) \
|
|
|
|
OBJECT_CHECK(PCIVPBState, (obj), TYPE_VERSATILE_PCI)
|
|
|
|
|
|
|
|
#define TYPE_VERSATILE_PCI_HOST "versatile_pci_host"
|
|
|
|
#define PCI_VPB_HOST(obj) \
|
|
|
|
OBJECT_CHECK(PCIDevice, (obj), TYPE_VERSATILE_PCIHOST)
|
|
|
|
|
2012-10-23 18:30:10 +08:00
|
|
|
static inline uint32_t vpb_pci_config_addr(hwaddr addr)
|
2006-05-14 00:11:23 +08:00
|
|
|
{
|
2006-09-25 01:01:44 +08:00
|
|
|
return addr & 0xffffff;
|
2006-05-14 00:11:23 +08:00
|
|
|
}
|
|
|
|
|
2012-10-23 18:30:10 +08:00
|
|
|
static void pci_vpb_config_write(void *opaque, hwaddr addr,
|
2011-08-15 22:17:32 +08:00
|
|
|
uint64_t val, unsigned size)
|
2006-05-14 00:11:23 +08:00
|
|
|
{
|
2011-08-15 22:17:32 +08:00
|
|
|
pci_data_write(opaque, vpb_pci_config_addr(addr), val, size);
|
2006-05-14 00:11:23 +08:00
|
|
|
}
|
|
|
|
|
2012-10-23 18:30:10 +08:00
|
|
|
static uint64_t pci_vpb_config_read(void *opaque, hwaddr addr,
|
2011-08-15 22:17:32 +08:00
|
|
|
unsigned size)
|
2006-05-14 00:11:23 +08:00
|
|
|
{
|
|
|
|
uint32_t val;
|
2011-08-15 22:17:32 +08:00
|
|
|
val = pci_data_read(opaque, vpb_pci_config_addr(addr), size);
|
2006-05-14 00:11:23 +08:00
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2011-08-15 22:17:32 +08:00
|
|
|
static const MemoryRegionOps pci_vpb_config_ops = {
|
|
|
|
.read = pci_vpb_config_read,
|
|
|
|
.write = pci_vpb_config_write,
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
2006-05-14 00:11:23 +08:00
|
|
|
};
|
|
|
|
|
2006-09-24 08:16:34 +08:00
|
|
|
static int pci_vpb_map_irq(PCIDevice *d, int irq_num)
|
|
|
|
{
|
|
|
|
return irq_num;
|
|
|
|
}
|
|
|
|
|
2009-08-28 21:28:17 +08:00
|
|
|
static void pci_vpb_set_irq(void *opaque, int irq_num, int level)
|
2006-05-14 00:11:23 +08:00
|
|
|
{
|
2009-08-28 21:28:17 +08:00
|
|
|
qemu_irq *pic = opaque;
|
|
|
|
|
2009-05-15 05:35:07 +08:00
|
|
|
qemu_set_irq(pic[irq_num], level);
|
2006-05-14 00:11:23 +08:00
|
|
|
}
|
|
|
|
|
2013-04-19 18:15:18 +08:00
|
|
|
static void pci_vpb_init(Object *obj)
|
|
|
|
{
|
|
|
|
PCIHostState *h = PCI_HOST_BRIDGE(obj);
|
|
|
|
PCIVPBState *s = PCI_VPB(obj);
|
|
|
|
|
|
|
|
pci_bus_new_inplace(&s->pci_bus, DEVICE(obj), "pci",
|
|
|
|
get_system_memory(), get_system_io(),
|
|
|
|
PCI_DEVFN(11, 0), TYPE_PCI_BUS);
|
|
|
|
h->bus = &s->pci_bus;
|
|
|
|
|
|
|
|
object_initialize(&s->pci_dev, TYPE_VERSATILE_PCI_HOST);
|
|
|
|
qdev_set_parent_bus(DEVICE(&s->pci_dev), BUS(&s->pci_bus));
|
|
|
|
}
|
|
|
|
|
2013-04-19 18:15:18 +08:00
|
|
|
static void pci_vpb_realize(DeviceState *dev, Error **errp)
|
2009-05-15 05:35:08 +08:00
|
|
|
{
|
2013-04-19 18:15:18 +08:00
|
|
|
PCIVPBState *s = PCI_VPB(dev);
|
|
|
|
SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
|
2009-05-15 05:35:07 +08:00
|
|
|
int i;
|
2006-09-24 01:40:58 +08:00
|
|
|
|
2009-05-15 05:35:07 +08:00
|
|
|
for (i = 0; i < 4; i++) {
|
2013-04-19 18:15:18 +08:00
|
|
|
sysbus_init_irq(sbd, &s->irq[i]);
|
2006-09-24 01:40:58 +08:00
|
|
|
}
|
2013-04-19 18:15:18 +08:00
|
|
|
|
|
|
|
pci_bus_irqs(&s->pci_bus, pci_vpb_set_irq, pci_vpb_map_irq, s->irq, 4);
|
2009-05-15 05:35:08 +08:00
|
|
|
|
2006-05-14 00:11:23 +08:00
|
|
|
/* ??? Register memory space. */
|
|
|
|
|
2011-09-02 01:36:53 +08:00
|
|
|
/* Our memory regions are:
|
|
|
|
* 0 : PCI self config window
|
|
|
|
* 1 : PCI config window
|
2013-04-19 18:15:17 +08:00
|
|
|
* 2 : PCI IO window
|
2011-09-02 01:36:53 +08:00
|
|
|
*/
|
2013-04-19 18:15:18 +08:00
|
|
|
memory_region_init_io(&s->mem_config, &pci_vpb_config_ops, &s->pci_bus,
|
2011-08-15 22:17:32 +08:00
|
|
|
"pci-vpb-selfconfig", 0x1000000);
|
2013-04-19 18:15:18 +08:00
|
|
|
sysbus_init_mmio(sbd, &s->mem_config);
|
2013-04-19 18:15:18 +08:00
|
|
|
memory_region_init_io(&s->mem_config2, &pci_vpb_config_ops, &s->pci_bus,
|
2011-08-15 22:17:32 +08:00
|
|
|
"pci-vpb-config", 0x1000000);
|
2013-04-19 18:15:18 +08:00
|
|
|
sysbus_init_mmio(sbd, &s->mem_config2);
|
2013-04-19 18:15:17 +08:00
|
|
|
isa_mmio_setup(&s->isa, 0x0100000);
|
2013-04-19 18:15:18 +08:00
|
|
|
sysbus_init_mmio(sbd, &s->isa);
|
2011-08-15 22:17:32 +08:00
|
|
|
|
2013-04-19 18:15:18 +08:00
|
|
|
/* TODO Remove once realize propagates to child devices. */
|
|
|
|
object_property_set_bool(OBJECT(&s->pci_dev), true, "realized", errp);
|
2009-05-15 05:35:08 +08:00
|
|
|
}
|
2006-05-14 00:11:23 +08:00
|
|
|
|
2009-08-14 16:36:05 +08:00
|
|
|
static int versatile_pci_host_init(PCIDevice *d)
|
2009-05-15 05:35:08 +08:00
|
|
|
{
|
2010-02-09 05:36:02 +08:00
|
|
|
pci_set_word(d->config + PCI_STATUS,
|
2013-04-19 18:15:17 +08:00
|
|
|
PCI_STATUS_66MHZ | PCI_STATUS_DEVSEL_MEDIUM);
|
2010-02-09 05:33:33 +08:00
|
|
|
pci_set_byte(d->config + PCI_LATENCY_TIMER, 0x10);
|
2009-08-14 16:36:05 +08:00
|
|
|
return 0;
|
2009-05-15 05:35:08 +08:00
|
|
|
}
|
2006-05-14 00:11:23 +08:00
|
|
|
|
2011-12-05 02:22:06 +08:00
|
|
|
static void versatile_pci_host_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
|
|
|
|
|
|
|
|
k->init = versatile_pci_host_init;
|
|
|
|
k->vendor_id = PCI_VENDOR_ID_XILINX;
|
|
|
|
k->device_id = PCI_DEVICE_ID_XILINX_XC2VP30;
|
|
|
|
k->class_id = PCI_CLASS_PROCESSOR_CO;
|
|
|
|
}
|
|
|
|
|
2013-01-10 23:19:07 +08:00
|
|
|
static const TypeInfo versatile_pci_host_info = {
|
2013-04-19 18:15:18 +08:00
|
|
|
.name = TYPE_VERSATILE_PCI_HOST,
|
2011-12-08 11:34:16 +08:00
|
|
|
.parent = TYPE_PCI_DEVICE,
|
|
|
|
.instance_size = sizeof(PCIDevice),
|
|
|
|
.class_init = versatile_pci_host_class_init,
|
2009-06-30 20:12:07 +08:00
|
|
|
};
|
|
|
|
|
2012-01-25 03:12:29 +08:00
|
|
|
static void pci_vpb_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
2013-04-19 18:15:18 +08:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2012-01-25 03:12:29 +08:00
|
|
|
|
2013-04-19 18:15:18 +08:00
|
|
|
dc->realize = pci_vpb_realize;
|
2012-01-25 03:12:29 +08:00
|
|
|
}
|
|
|
|
|
2013-01-10 23:19:07 +08:00
|
|
|
static const TypeInfo pci_vpb_info = {
|
2013-04-19 18:15:18 +08:00
|
|
|
.name = TYPE_VERSATILE_PCI,
|
2013-04-19 18:15:18 +08:00
|
|
|
.parent = TYPE_PCI_HOST_BRIDGE,
|
2011-12-08 11:34:16 +08:00
|
|
|
.instance_size = sizeof(PCIVPBState),
|
2013-04-19 18:15:18 +08:00
|
|
|
.instance_init = pci_vpb_init,
|
2011-12-08 11:34:16 +08:00
|
|
|
.class_init = pci_vpb_class_init,
|
2012-01-25 03:12:29 +08:00
|
|
|
};
|
|
|
|
|
2013-04-19 18:15:18 +08:00
|
|
|
static void pci_realview_init(Object *obj)
|
2012-01-25 03:12:29 +08:00
|
|
|
{
|
2013-04-19 18:15:18 +08:00
|
|
|
PCIVPBState *s = PCI_VPB(obj);
|
2012-01-25 03:12:29 +08:00
|
|
|
|
2013-04-19 18:15:18 +08:00
|
|
|
s->realview = 1;
|
2012-01-25 03:12:29 +08:00
|
|
|
}
|
|
|
|
|
2013-01-10 23:19:07 +08:00
|
|
|
static const TypeInfo pci_realview_info = {
|
2011-12-08 11:34:16 +08:00
|
|
|
.name = "realview_pci",
|
2013-04-19 18:15:18 +08:00
|
|
|
.parent = TYPE_VERSATILE_PCI,
|
|
|
|
.instance_init = pci_realview_init,
|
2012-01-25 03:12:29 +08:00
|
|
|
};
|
|
|
|
|
2012-02-09 22:20:55 +08:00
|
|
|
static void versatile_pci_register_types(void)
|
2009-05-15 05:35:08 +08:00
|
|
|
{
|
2011-12-08 11:34:16 +08:00
|
|
|
type_register_static(&pci_vpb_info);
|
|
|
|
type_register_static(&pci_realview_info);
|
|
|
|
type_register_static(&versatile_pci_host_info);
|
2006-05-14 00:11:23 +08:00
|
|
|
}
|
2009-05-15 05:35:08 +08:00
|
|
|
|
2012-02-09 22:20:55 +08:00
|
|
|
type_init(versatile_pci_register_types)
|