]> git.proxmox.com Git - qemu.git/blame - hw/versatile_pci.c
Merge branch 'master' of git://git.qemu.org/qemu
[qemu.git] / hw / versatile_pci.c
CommitLineData
5fafdf24 1/*
502a5395
PB
2 * ARM Versatile/PB PCI host controller
3 *
0027b06d 4 * Copyright (c) 2006-2009 CodeSourcery.
502a5395
PB
5 * Written by Paul Brook
6 *
8e31bf38 7 * This code is licensed under the LGPL.
502a5395
PB
8 */
9
0027b06d 10#include "sysbus.h"
87ecb68b 11#include "pci.h"
b6243d99 12#include "pci_host.h"
1e39101c 13#include "exec-memory.h"
0027b06d
PB
14
15typedef struct {
16 SysBusDevice busdev;
17 qemu_irq irq[4];
18 int realview;
45de094e
AK
19 MemoryRegion mem_config;
20 MemoryRegion mem_config2;
21 MemoryRegion isa;
0027b06d 22} PCIVPBState;
502a5395 23
c227f099 24static inline uint32_t vpb_pci_config_addr(target_phys_addr_t addr)
502a5395 25{
80b3ada7 26 return addr & 0xffffff;
502a5395
PB
27}
28
45de094e
AK
29static void pci_vpb_config_write(void *opaque, target_phys_addr_t addr,
30 uint64_t val, unsigned size)
502a5395 31{
45de094e 32 pci_data_write(opaque, vpb_pci_config_addr(addr), val, size);
502a5395
PB
33}
34
45de094e
AK
35static uint64_t pci_vpb_config_read(void *opaque, target_phys_addr_t addr,
36 unsigned size)
502a5395
PB
37{
38 uint32_t val;
45de094e 39 val = pci_data_read(opaque, vpb_pci_config_addr(addr), size);
502a5395
PB
40 return val;
41}
42
45de094e
AK
43static const MemoryRegionOps pci_vpb_config_ops = {
44 .read = pci_vpb_config_read,
45 .write = pci_vpb_config_write,
46 .endianness = DEVICE_NATIVE_ENDIAN,
502a5395
PB
47};
48
d2b59317
PB
49static int pci_vpb_map_irq(PCIDevice *d, int irq_num)
50{
51 return irq_num;
52}
53
5d4e84c8 54static void pci_vpb_set_irq(void *opaque, int irq_num, int level)
502a5395 55{
5d4e84c8
JQ
56 qemu_irq *pic = opaque;
57
97aff481 58 qemu_set_irq(pic[irq_num], level);
502a5395
PB
59}
60
81a322d4 61static int pci_vpb_init(SysBusDevice *dev)
0027b06d
PB
62{
63 PCIVPBState *s = FROM_SYSBUS(PCIVPBState, dev);
64 PCIBus *bus;
97aff481 65 int i;
e69954b9 66
97aff481 67 for (i = 0; i < 4; i++) {
0027b06d 68 sysbus_init_irq(dev, &s->irq[i]);
e69954b9 69 }
02e2da45
PB
70 bus = pci_register_bus(&dev->qdev, "pci",
71 pci_vpb_set_irq, pci_vpb_map_irq, s->irq,
aee97b84 72 get_system_memory(), get_system_io(),
520128bd 73 PCI_DEVFN(11, 0), 4);
0027b06d 74
502a5395
PB
75 /* ??? Register memory space. */
76
7d6e771f
PM
77 /* Our memory regions are:
78 * 0 : PCI self config window
79 * 1 : PCI config window
80 * 2 : PCI IO window (realview_pci only)
81 */
45de094e
AK
82 memory_region_init_io(&s->mem_config, &pci_vpb_config_ops, bus,
83 "pci-vpb-selfconfig", 0x1000000);
7d6e771f 84 sysbus_init_mmio_region(dev, &s->mem_config);
45de094e
AK
85 memory_region_init_io(&s->mem_config2, &pci_vpb_config_ops, bus,
86 "pci-vpb-config", 0x1000000);
7d6e771f 87 sysbus_init_mmio_region(dev, &s->mem_config2);
45de094e
AK
88 if (s->realview) {
89 isa_mmio_setup(&s->isa, 0x0100000);
7d6e771f 90 sysbus_init_mmio_region(dev, &s->isa);
45de094e
AK
91 }
92
0027b06d 93 pci_create_simple(bus, -1, "versatile_pci_host");
81a322d4 94 return 0;
0027b06d 95}
e69954b9 96
81a322d4 97static int pci_realview_init(SysBusDevice *dev)
0027b06d
PB
98{
99 PCIVPBState *s = FROM_SYSBUS(PCIVPBState, dev);
100 s->realview = 1;
81a322d4 101 return pci_vpb_init(dev);
0027b06d 102}
502a5395 103
81a322d4 104static int versatile_pci_host_init(PCIDevice *d)
0027b06d 105{
a408b1de
MT
106 pci_set_word(d->config + PCI_STATUS,
107 PCI_STATUS_66MHZ | PCI_STATUS_DEVSEL_MEDIUM);
01764fe0 108 pci_set_byte(d->config + PCI_LATENCY_TIMER, 0x10);
81a322d4 109 return 0;
0027b06d 110}
502a5395 111
0aab0d3a
GH
112static PCIDeviceInfo versatile_pci_host_info = {
113 .qdev.name = "versatile_pci_host",
114 .qdev.size = sizeof(PCIDevice),
115 .init = versatile_pci_host_init,
56fe6408
IY
116 .vendor_id = PCI_VENDOR_ID_XILINX,
117 /* Both boards have the same device ID. Oh well. */
118 .device_id = PCI_DEVICE_ID_XILINX_XC2VP30,
119 .class_id = PCI_CLASS_PROCESSOR_CO,
0aab0d3a
GH
120};
121
0027b06d
PB
122static void versatile_pci_register_devices(void)
123{
124 sysbus_register_dev("versatile_pci", sizeof(PCIVPBState), pci_vpb_init);
125 sysbus_register_dev("realview_pci", sizeof(PCIVPBState),
126 pci_realview_init);
0aab0d3a 127 pci_qdev_register(&versatile_pci_host_info);
502a5395 128}
0027b06d
PB
129
130device_init(versatile_pci_register_devices)