2007-09-16 23:08:06 +02:00
|
|
|
/*
|
2006-05-13 18:11:23 +02:00
|
|
|
* ARM Versatile/PB PCI host controller
|
|
|
|
*
|
2009-05-14 23:35:08 +02:00
|
|
|
* Copyright (c) 2006-2009 CodeSourcery.
|
2006-05-13 18:11:23 +02:00
|
|
|
* Written by Paul Brook
|
|
|
|
*
|
|
|
|
* This code is licenced under the LGPL.
|
|
|
|
*/
|
|
|
|
|
2009-05-14 23:35:08 +02:00
|
|
|
#include "sysbus.h"
|
2007-11-17 18:14:51 +01:00
|
|
|
#include "pci.h"
|
2009-11-12 06:58:30 +01:00
|
|
|
#include "pci_host.h"
|
2009-05-14 23:35:08 +02:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
SysBusDevice busdev;
|
|
|
|
qemu_irq irq[4];
|
|
|
|
int realview;
|
|
|
|
int mem_config;
|
|
|
|
} PCIVPBState;
|
2006-05-13 18:11:23 +02:00
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static inline uint32_t vpb_pci_config_addr(target_phys_addr_t addr)
|
2006-05-13 18:11:23 +02:00
|
|
|
{
|
2006-09-24 19:01:44 +02:00
|
|
|
return addr & 0xffffff;
|
2006-05-13 18:11:23 +02:00
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static void pci_vpb_config_writeb (void *opaque, target_phys_addr_t addr,
|
2006-05-13 18:11:23 +02:00
|
|
|
uint32_t val)
|
|
|
|
{
|
|
|
|
pci_data_write(opaque, vpb_pci_config_addr (addr), val, 1);
|
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static void pci_vpb_config_writew (void *opaque, target_phys_addr_t addr,
|
2006-05-13 18:11:23 +02:00
|
|
|
uint32_t val)
|
|
|
|
{
|
|
|
|
pci_data_write(opaque, vpb_pci_config_addr (addr), val, 2);
|
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static void pci_vpb_config_writel (void *opaque, target_phys_addr_t addr,
|
2006-05-13 18:11:23 +02:00
|
|
|
uint32_t val)
|
|
|
|
{
|
|
|
|
pci_data_write(opaque, vpb_pci_config_addr (addr), val, 4);
|
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static uint32_t pci_vpb_config_readb (void *opaque, target_phys_addr_t addr)
|
2006-05-13 18:11:23 +02:00
|
|
|
{
|
|
|
|
uint32_t val;
|
|
|
|
val = pci_data_read(opaque, vpb_pci_config_addr (addr), 1);
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static uint32_t pci_vpb_config_readw (void *opaque, target_phys_addr_t addr)
|
2006-05-13 18:11:23 +02:00
|
|
|
{
|
|
|
|
uint32_t val;
|
|
|
|
val = pci_data_read(opaque, vpb_pci_config_addr (addr), 2);
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static uint32_t pci_vpb_config_readl (void *opaque, target_phys_addr_t addr)
|
2006-05-13 18:11:23 +02:00
|
|
|
{
|
|
|
|
uint32_t val;
|
|
|
|
val = pci_data_read(opaque, vpb_pci_config_addr (addr), 4);
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2009-08-25 20:29:31 +02:00
|
|
|
static CPUWriteMemoryFunc * const pci_vpb_config_write[] = {
|
2006-05-13 18:11:23 +02:00
|
|
|
&pci_vpb_config_writeb,
|
|
|
|
&pci_vpb_config_writew,
|
|
|
|
&pci_vpb_config_writel,
|
|
|
|
};
|
|
|
|
|
2009-08-25 20:29:31 +02:00
|
|
|
static CPUReadMemoryFunc * const pci_vpb_config_read[] = {
|
2006-05-13 18:11:23 +02:00
|
|
|
&pci_vpb_config_readb,
|
|
|
|
&pci_vpb_config_readw,
|
|
|
|
&pci_vpb_config_readl,
|
|
|
|
};
|
|
|
|
|
2006-09-24 02:16:34 +02:00
|
|
|
static int pci_vpb_map_irq(PCIDevice *d, int irq_num)
|
|
|
|
{
|
|
|
|
return irq_num;
|
|
|
|
}
|
|
|
|
|
2009-08-28 15:28:17 +02:00
|
|
|
static void pci_vpb_set_irq(void *opaque, int irq_num, int level)
|
2006-05-13 18:11:23 +02:00
|
|
|
{
|
2009-08-28 15:28:17 +02:00
|
|
|
qemu_irq *pic = opaque;
|
|
|
|
|
2009-05-14 23:35:07 +02:00
|
|
|
qemu_set_irq(pic[irq_num], level);
|
2006-05-13 18:11:23 +02:00
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static void pci_vpb_map(SysBusDevice *dev, target_phys_addr_t base)
|
2006-05-13 18:11:23 +02:00
|
|
|
{
|
2009-05-14 23:35:08 +02:00
|
|
|
PCIVPBState *s = (PCIVPBState *)dev;
|
|
|
|
/* Selfconfig area. */
|
|
|
|
cpu_register_physical_memory(base + 0x01000000, 0x1000000, s->mem_config);
|
|
|
|
/* Normal config area. */
|
|
|
|
cpu_register_physical_memory(base + 0x02000000, 0x1000000, s->mem_config);
|
|
|
|
|
|
|
|
if (s->realview) {
|
|
|
|
/* IO memory area. */
|
2010-12-08 12:05:49 +01:00
|
|
|
isa_mmio_init(base + 0x03000000, 0x00100000);
|
2009-05-14 23:35:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-14 10:36:05 +02:00
|
|
|
static int pci_vpb_init(SysBusDevice *dev)
|
2009-05-14 23:35:08 +02:00
|
|
|
{
|
|
|
|
PCIVPBState *s = FROM_SYSBUS(PCIVPBState, dev);
|
|
|
|
PCIBus *bus;
|
2009-05-14 23:35:07 +02:00
|
|
|
int i;
|
2006-09-23 19:40:58 +02:00
|
|
|
|
2009-05-14 23:35:07 +02:00
|
|
|
for (i = 0; i < 4; i++) {
|
2009-05-14 23:35:08 +02:00
|
|
|
sysbus_init_irq(dev, &s->irq[i]);
|
2006-09-23 19:40:58 +02:00
|
|
|
}
|
2009-05-23 01:05:19 +02:00
|
|
|
bus = pci_register_bus(&dev->qdev, "pci",
|
|
|
|
pci_vpb_set_irq, pci_vpb_map_irq, s->irq,
|
2010-06-23 09:15:25 +02:00
|
|
|
PCI_DEVFN(11, 0), 4);
|
2009-05-14 23:35:08 +02:00
|
|
|
|
2006-05-13 18:11:23 +02:00
|
|
|
/* ??? Register memory space. */
|
|
|
|
|
2009-06-14 10:38:51 +02:00
|
|
|
s->mem_config = cpu_register_io_memory(pci_vpb_config_read,
|
2010-12-08 12:05:37 +01:00
|
|
|
pci_vpb_config_write, bus,
|
2010-12-08 12:05:44 +01:00
|
|
|
DEVICE_LITTLE_ENDIAN);
|
2009-05-14 23:35:08 +02:00
|
|
|
sysbus_init_mmio_cb(dev, 0x04000000, pci_vpb_map);
|
2006-09-23 19:40:58 +02:00
|
|
|
|
2009-05-14 23:35:08 +02:00
|
|
|
pci_create_simple(bus, -1, "versatile_pci_host");
|
2009-08-14 10:36:05 +02:00
|
|
|
return 0;
|
2009-05-14 23:35:08 +02:00
|
|
|
}
|
2006-09-23 19:40:58 +02:00
|
|
|
|
2009-08-14 10:36:05 +02:00
|
|
|
static int pci_realview_init(SysBusDevice *dev)
|
2009-05-14 23:35:08 +02:00
|
|
|
{
|
|
|
|
PCIVPBState *s = FROM_SYSBUS(PCIVPBState, dev);
|
|
|
|
s->realview = 1;
|
2009-08-14 10:36:05 +02:00
|
|
|
return pci_vpb_init(dev);
|
2009-05-14 23:35:08 +02:00
|
|
|
}
|
2006-05-13 18:11:23 +02:00
|
|
|
|
2009-08-14 10:36:05 +02:00
|
|
|
static int versatile_pci_host_init(PCIDevice *d)
|
2009-05-14 23:35:08 +02:00
|
|
|
{
|
2009-01-26 16:37:35 +01:00
|
|
|
pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_XILINX);
|
2006-09-23 19:40:58 +02:00
|
|
|
/* Both boards have the same device ID. Oh well. */
|
2009-03-13 16:02:23 +01:00
|
|
|
pci_config_set_device_id(d->config, PCI_DEVICE_ID_XILINX_XC2VP30);
|
2010-02-08 22:36:02 +01:00
|
|
|
pci_set_word(d->config + PCI_STATUS,
|
|
|
|
PCI_STATUS_66MHZ | PCI_STATUS_DEVSEL_MEDIUM);
|
2009-02-01 20:26:20 +01:00
|
|
|
pci_config_set_class(d->config, PCI_CLASS_PROCESSOR_CO);
|
2010-02-08 22:33:33 +01:00
|
|
|
pci_set_byte(d->config + PCI_LATENCY_TIMER, 0x10);
|
2009-08-14 10:36:05 +02:00
|
|
|
return 0;
|
2009-05-14 23:35:08 +02:00
|
|
|
}
|
2006-05-13 18:11:23 +02:00
|
|
|
|
2009-06-30 14:12:07 +02:00
|
|
|
static PCIDeviceInfo versatile_pci_host_info = {
|
|
|
|
.qdev.name = "versatile_pci_host",
|
|
|
|
.qdev.size = sizeof(PCIDevice),
|
|
|
|
.init = versatile_pci_host_init,
|
|
|
|
};
|
|
|
|
|
2009-05-14 23:35:08 +02:00
|
|
|
static void versatile_pci_register_devices(void)
|
|
|
|
{
|
|
|
|
sysbus_register_dev("versatile_pci", sizeof(PCIVPBState), pci_vpb_init);
|
|
|
|
sysbus_register_dev("realview_pci", sizeof(PCIVPBState),
|
|
|
|
pci_realview_init);
|
2009-06-30 14:12:07 +02:00
|
|
|
pci_qdev_register(&versatile_pci_host_info);
|
2006-05-13 18:11:23 +02:00
|
|
|
}
|
2009-05-14 23:35:08 +02:00
|
|
|
|
|
|
|
device_init(versatile_pci_register_devices)
|