]>
Commit | Line | Data |
---|---|---|
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 | |
15 | typedef 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 | 24 | static 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 |
29 | static 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 |
35 | static 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 |
43 | static 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 |
49 | static int pci_vpb_map_irq(PCIDevice *d, int irq_num) |
50 | { | |
51 | return irq_num; | |
52 | } | |
53 | ||
5d4e84c8 | 54 | static 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 | 61 | static 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); | |
750ecd44 | 84 | sysbus_init_mmio(dev, &s->mem_config); |
45de094e AK |
85 | memory_region_init_io(&s->mem_config2, &pci_vpb_config_ops, bus, |
86 | "pci-vpb-config", 0x1000000); | |
750ecd44 | 87 | sysbus_init_mmio(dev, &s->mem_config2); |
45de094e AK |
88 | if (s->realview) { |
89 | isa_mmio_setup(&s->isa, 0x0100000); | |
750ecd44 | 90 | sysbus_init_mmio(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 | 97 | static 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 | 104 | static 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 | |
40021f08 AL |
112 | static void versatile_pci_host_class_init(ObjectClass *klass, void *data) |
113 | { | |
114 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); | |
115 | ||
116 | k->init = versatile_pci_host_init; | |
117 | k->vendor_id = PCI_VENDOR_ID_XILINX; | |
118 | k->device_id = PCI_DEVICE_ID_XILINX_XC2VP30; | |
119 | k->class_id = PCI_CLASS_PROCESSOR_CO; | |
120 | } | |
121 | ||
122 | static DeviceInfo versatile_pci_host_info = { | |
123 | .name = "versatile_pci_host", | |
124 | .size = sizeof(PCIDevice), | |
125 | .class_init = versatile_pci_host_class_init, | |
0aab0d3a GH |
126 | }; |
127 | ||
0027b06d PB |
128 | static void versatile_pci_register_devices(void) |
129 | { | |
130 | sysbus_register_dev("versatile_pci", sizeof(PCIVPBState), pci_vpb_init); | |
131 | sysbus_register_dev("realview_pci", sizeof(PCIVPBState), | |
132 | pci_realview_init); | |
0aab0d3a | 133 | pci_qdev_register(&versatile_pci_host_info); |
502a5395 | 134 | } |
0027b06d PB |
135 | |
136 | device_init(versatile_pci_register_devices) |