pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 1 | /* |
| 2 | * QEMU Uninorth PCI host (for all Mac99 and newer machines) |
| 3 | * |
| 4 | * Copyright (c) 2006 Fabrice Bellard |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 5 | * |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | * of this software and associated documentation files (the "Software"), to deal |
| 8 | * in the Software without restriction, including without limitation the rights |
| 9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | * copies of the Software, and to permit persons to whom the Software is |
| 11 | * furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice shall be included in |
| 14 | * all copies or substantial portions of the Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 22 | * THE SOFTWARE. |
| 23 | */ |
Paolo Bonzini | 83c9f4c | 2013-02-04 15:40:22 +0100 | [diff] [blame] | 24 | #include "hw/hw.h" |
| 25 | #include "hw/ppc/mac.h" |
| 26 | #include "hw/pci/pci.h" |
| 27 | #include "hw/pci/pci_host.h" |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 28 | |
blueswir1 | f390238 | 2009-02-05 20:22:07 +0000 | [diff] [blame] | 29 | /* debug UniNorth */ |
| 30 | //#define DEBUG_UNIN |
| 31 | |
| 32 | #ifdef DEBUG_UNIN |
Blue Swirl | 001faf3 | 2009-05-13 17:53:17 +0000 | [diff] [blame] | 33 | #define UNIN_DPRINTF(fmt, ...) \ |
| 34 | do { printf("UNIN: " fmt , ## __VA_ARGS__); } while (0) |
blueswir1 | f390238 | 2009-02-05 20:22:07 +0000 | [diff] [blame] | 35 | #else |
Blue Swirl | 001faf3 | 2009-05-13 17:53:17 +0000 | [diff] [blame] | 36 | #define UNIN_DPRINTF(fmt, ...) |
blueswir1 | f390238 | 2009-02-05 20:22:07 +0000 | [diff] [blame] | 37 | #endif |
| 38 | |
Alexander Graf | fa0be69 | 2010-02-09 17:37:04 +0100 | [diff] [blame] | 39 | static const int unin_irq_line[] = { 0x1b, 0x1c, 0x1d, 0x1e }; |
| 40 | |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 41 | #define TYPE_UNI_NORTH_PCI_HOST_BRIDGE "uni-north-pci-pcihost" |
| 42 | #define TYPE_UNI_NORTH_AGP_HOST_BRIDGE "uni-north-agp-pcihost" |
| 43 | #define TYPE_UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE "uni-north-internal-pci-pcihost" |
| 44 | #define TYPE_U3_AGP_HOST_BRIDGE "u3-agp-pcihost" |
| 45 | |
| 46 | #define UNI_NORTH_PCI_HOST_BRIDGE(obj) \ |
| 47 | OBJECT_CHECK(UNINState, (obj), TYPE_UNI_NORTH_PCI_HOST_BRIDGE) |
| 48 | #define UNI_NORTH_AGP_HOST_BRIDGE(obj) \ |
| 49 | OBJECT_CHECK(UNINState, (obj), TYPE_UNI_NORTH_AGP_HOST_BRIDGE) |
| 50 | #define UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE(obj) \ |
| 51 | OBJECT_CHECK(UNINState, (obj), TYPE_UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE) |
| 52 | #define U3_AGP_HOST_BRIDGE(obj) \ |
| 53 | OBJECT_CHECK(UNINState, (obj), TYPE_U3_AGP_HOST_BRIDGE) |
| 54 | |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 55 | typedef struct UNINState { |
Andreas Färber | 67c332f | 2012-08-20 19:08:09 +0200 | [diff] [blame] | 56 | PCIHostState parent_obj; |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 57 | |
Blue Swirl | 46f3069 | 2011-09-17 20:30:50 +0000 | [diff] [blame] | 58 | MemoryRegion pci_mmio; |
| 59 | MemoryRegion pci_hole; |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 60 | } UNINState; |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 61 | |
pbrook | d2b5931 | 2006-09-24 00:16:34 +0000 | [diff] [blame] | 62 | static int pci_unin_map_irq(PCIDevice *pci_dev, int irq_num) |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 63 | { |
Alexander Graf | fa0be69 | 2010-02-09 17:37:04 +0100 | [diff] [blame] | 64 | int retval; |
| 65 | int devfn = pci_dev->devfn & 0x00FFFFFF; |
| 66 | |
| 67 | retval = (((devfn >> 11) & 0x1F) + irq_num) & 3; |
| 68 | |
| 69 | return retval; |
pbrook | d2b5931 | 2006-09-24 00:16:34 +0000 | [diff] [blame] | 70 | } |
| 71 | |
Juan Quintela | 5d4e84c | 2009-08-28 15:28:17 +0200 | [diff] [blame] | 72 | static void pci_unin_set_irq(void *opaque, int irq_num, int level) |
pbrook | d2b5931 | 2006-09-24 00:16:34 +0000 | [diff] [blame] | 73 | { |
Juan Quintela | 5d4e84c | 2009-08-28 15:28:17 +0200 | [diff] [blame] | 74 | qemu_irq *pic = opaque; |
| 75 | |
Alexander Graf | fa0be69 | 2010-02-09 17:37:04 +0100 | [diff] [blame] | 76 | UNIN_DPRINTF("%s: setting INT %d = %d\n", __func__, |
| 77 | unin_irq_line[irq_num], level); |
| 78 | qemu_set_irq(pic[unin_irq_line[irq_num]], level); |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 79 | } |
| 80 | |
Alexander Graf | d86f0e3 | 2010-02-09 17:37:01 +0100 | [diff] [blame] | 81 | static uint32_t unin_get_config_reg(uint32_t reg, uint32_t addr) |
| 82 | { |
| 83 | uint32_t retval; |
| 84 | |
| 85 | if (reg & (1u << 31)) { |
| 86 | /* XXX OpenBIOS compatibility hack */ |
| 87 | retval = reg | (addr & 3); |
| 88 | } else if (reg & 1) { |
| 89 | /* CFA1 style */ |
| 90 | retval = (reg & ~7u) | (addr & 7); |
| 91 | } else { |
| 92 | uint32_t slot, func; |
| 93 | |
| 94 | /* Grab CFA0 style values */ |
| 95 | slot = ffs(reg & 0xfffff800) - 1; |
| 96 | func = (reg >> 8) & 7; |
| 97 | |
| 98 | /* ... and then convert them to x86 format */ |
| 99 | /* config pointer */ |
| 100 | retval = (reg & (0xff - 7)) | (addr & 7); |
| 101 | /* slot */ |
| 102 | retval |= slot << 11; |
| 103 | /* fn */ |
| 104 | retval |= func << 8; |
| 105 | } |
| 106 | |
| 107 | |
| 108 | UNIN_DPRINTF("Converted config space accessor %08x/%08x -> %08x\n", |
| 109 | reg, addr, retval); |
| 110 | |
| 111 | return retval; |
| 112 | } |
| 113 | |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 114 | static void unin_data_write(void *opaque, hwaddr addr, |
Avi Kivity | d0ed807 | 2011-07-24 17:47:18 +0300 | [diff] [blame] | 115 | uint64_t val, unsigned len) |
Alexander Graf | d86f0e3 | 2010-02-09 17:37:01 +0100 | [diff] [blame] | 116 | { |
Avi Kivity | d0ed807 | 2011-07-24 17:47:18 +0300 | [diff] [blame] | 117 | UNINState *s = opaque; |
Andreas Färber | 67c332f | 2012-08-20 19:08:09 +0200 | [diff] [blame] | 118 | PCIHostState *phb = PCI_HOST_BRIDGE(s); |
Avi Kivity | d0ed807 | 2011-07-24 17:47:18 +0300 | [diff] [blame] | 119 | UNIN_DPRINTF("write addr %" TARGET_FMT_plx " len %d val %"PRIx64"\n", |
| 120 | addr, len, val); |
Andreas Färber | 67c332f | 2012-08-20 19:08:09 +0200 | [diff] [blame] | 121 | pci_data_write(phb->bus, |
| 122 | unin_get_config_reg(phb->config_reg, addr), |
Alexander Graf | d86f0e3 | 2010-02-09 17:37:01 +0100 | [diff] [blame] | 123 | val, len); |
| 124 | } |
| 125 | |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 126 | static uint64_t unin_data_read(void *opaque, hwaddr addr, |
Avi Kivity | d0ed807 | 2011-07-24 17:47:18 +0300 | [diff] [blame] | 127 | unsigned len) |
Alexander Graf | d86f0e3 | 2010-02-09 17:37:01 +0100 | [diff] [blame] | 128 | { |
Avi Kivity | d0ed807 | 2011-07-24 17:47:18 +0300 | [diff] [blame] | 129 | UNINState *s = opaque; |
Andreas Färber | 67c332f | 2012-08-20 19:08:09 +0200 | [diff] [blame] | 130 | PCIHostState *phb = PCI_HOST_BRIDGE(s); |
Alexander Graf | d86f0e3 | 2010-02-09 17:37:01 +0100 | [diff] [blame] | 131 | uint32_t val; |
| 132 | |
Andreas Färber | 67c332f | 2012-08-20 19:08:09 +0200 | [diff] [blame] | 133 | val = pci_data_read(phb->bus, |
| 134 | unin_get_config_reg(phb->config_reg, addr), |
Alexander Graf | d86f0e3 | 2010-02-09 17:37:01 +0100 | [diff] [blame] | 135 | len); |
Avi Kivity | d0ed807 | 2011-07-24 17:47:18 +0300 | [diff] [blame] | 136 | UNIN_DPRINTF("read addr %" TARGET_FMT_plx " len %d val %x\n", |
| 137 | addr, len, val); |
Alexander Graf | d86f0e3 | 2010-02-09 17:37:01 +0100 | [diff] [blame] | 138 | return val; |
| 139 | } |
| 140 | |
Avi Kivity | d0ed807 | 2011-07-24 17:47:18 +0300 | [diff] [blame] | 141 | static const MemoryRegionOps unin_data_ops = { |
| 142 | .read = unin_data_read, |
| 143 | .write = unin_data_write, |
| 144 | .endianness = DEVICE_LITTLE_ENDIAN, |
| 145 | }; |
| 146 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 147 | static int pci_unin_main_init_device(SysBusDevice *dev) |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 148 | { |
Andreas Färber | ff452ac | 2012-01-19 07:40:17 +0000 | [diff] [blame] | 149 | PCIHostState *h; |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 150 | |
| 151 | /* Use values found on a real PowerMac */ |
| 152 | /* Uninorth main bus */ |
Andreas Färber | 8558d94 | 2012-08-20 19:08:08 +0200 | [diff] [blame] | 153 | h = PCI_HOST_BRIDGE(dev); |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 154 | |
Paolo Bonzini | 40c5dce | 2013-06-06 21:25:08 -0400 | [diff] [blame] | 155 | memory_region_init_io(&h->conf_mem, OBJECT(h), &pci_host_conf_le_ops, |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 156 | dev, "pci-conf-idx", 0x1000); |
Paolo Bonzini | 40c5dce | 2013-06-06 21:25:08 -0400 | [diff] [blame] | 157 | memory_region_init_io(&h->data_mem, OBJECT(h), &unin_data_ops, dev, |
Avi Kivity | d0ed807 | 2011-07-24 17:47:18 +0300 | [diff] [blame] | 158 | "pci-conf-data", 0x1000); |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 159 | sysbus_init_mmio(dev, &h->conf_mem); |
| 160 | sysbus_init_mmio(dev, &h->data_mem); |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 161 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 162 | return 0; |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Avi Kivity | d0ed807 | 2011-07-24 17:47:18 +0300 | [diff] [blame] | 165 | |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 166 | static int pci_u3_agp_init_device(SysBusDevice *dev) |
| 167 | { |
Andreas Färber | ff452ac | 2012-01-19 07:40:17 +0000 | [diff] [blame] | 168 | PCIHostState *h; |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 169 | |
| 170 | /* Uninorth U3 AGP bus */ |
Andreas Färber | 8558d94 | 2012-08-20 19:08:08 +0200 | [diff] [blame] | 171 | h = PCI_HOST_BRIDGE(dev); |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 172 | |
Paolo Bonzini | 40c5dce | 2013-06-06 21:25:08 -0400 | [diff] [blame] | 173 | memory_region_init_io(&h->conf_mem, OBJECT(h), &pci_host_conf_le_ops, |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 174 | dev, "pci-conf-idx", 0x1000); |
Paolo Bonzini | 40c5dce | 2013-06-06 21:25:08 -0400 | [diff] [blame] | 175 | memory_region_init_io(&h->data_mem, OBJECT(h), &unin_data_ops, dev, |
Avi Kivity | d0ed807 | 2011-07-24 17:47:18 +0300 | [diff] [blame] | 176 | "pci-conf-data", 0x1000); |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 177 | sysbus_init_mmio(dev, &h->conf_mem); |
| 178 | sysbus_init_mmio(dev, &h->data_mem); |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 179 | |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 180 | return 0; |
| 181 | } |
| 182 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 183 | static int pci_unin_agp_init_device(SysBusDevice *dev) |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 184 | { |
Andreas Färber | ff452ac | 2012-01-19 07:40:17 +0000 | [diff] [blame] | 185 | PCIHostState *h; |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 186 | |
| 187 | /* Uninorth AGP bus */ |
Andreas Färber | 8558d94 | 2012-08-20 19:08:08 +0200 | [diff] [blame] | 188 | h = PCI_HOST_BRIDGE(dev); |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 189 | |
Paolo Bonzini | 40c5dce | 2013-06-06 21:25:08 -0400 | [diff] [blame] | 190 | memory_region_init_io(&h->conf_mem, OBJECT(h), &pci_host_conf_le_ops, |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 191 | dev, "pci-conf-idx", 0x1000); |
Paolo Bonzini | 40c5dce | 2013-06-06 21:25:08 -0400 | [diff] [blame] | 192 | memory_region_init_io(&h->data_mem, OBJECT(h), &pci_host_data_le_ops, |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 193 | dev, "pci-conf-data", 0x1000); |
| 194 | sysbus_init_mmio(dev, &h->conf_mem); |
| 195 | sysbus_init_mmio(dev, &h->data_mem); |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 196 | return 0; |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 197 | } |
| 198 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 199 | static int pci_unin_internal_init_device(SysBusDevice *dev) |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 200 | { |
Andreas Färber | ff452ac | 2012-01-19 07:40:17 +0000 | [diff] [blame] | 201 | PCIHostState *h; |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 202 | |
| 203 | /* Uninorth internal bus */ |
Andreas Färber | 8558d94 | 2012-08-20 19:08:08 +0200 | [diff] [blame] | 204 | h = PCI_HOST_BRIDGE(dev); |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 205 | |
Paolo Bonzini | 40c5dce | 2013-06-06 21:25:08 -0400 | [diff] [blame] | 206 | memory_region_init_io(&h->conf_mem, OBJECT(h), &pci_host_conf_le_ops, |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 207 | dev, "pci-conf-idx", 0x1000); |
Paolo Bonzini | 40c5dce | 2013-06-06 21:25:08 -0400 | [diff] [blame] | 208 | memory_region_init_io(&h->data_mem, OBJECT(h), &pci_host_data_le_ops, |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 209 | dev, "pci-conf-data", 0x1000); |
| 210 | sysbus_init_mmio(dev, &h->conf_mem); |
| 211 | sysbus_init_mmio(dev, &h->data_mem); |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 212 | return 0; |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 213 | } |
| 214 | |
Avi Kivity | aee97b8 | 2011-08-08 16:09:04 +0300 | [diff] [blame] | 215 | PCIBus *pci_pmac_init(qemu_irq *pic, |
| 216 | MemoryRegion *address_space_mem, |
| 217 | MemoryRegion *address_space_io) |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 218 | { |
| 219 | DeviceState *dev; |
| 220 | SysBusDevice *s; |
Andreas Färber | ff452ac | 2012-01-19 07:40:17 +0000 | [diff] [blame] | 221 | PCIHostState *h; |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 222 | UNINState *d; |
| 223 | |
| 224 | /* Use values found on a real PowerMac */ |
| 225 | /* Uninorth main bus */ |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 226 | dev = qdev_create(NULL, TYPE_UNI_NORTH_PCI_HOST_BRIDGE); |
Markus Armbruster | e23a1b3 | 2009-10-07 01:15:58 +0200 | [diff] [blame] | 227 | qdev_init_nofail(dev); |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 228 | s = SYS_BUS_DEVICE(dev); |
Andreas Färber | 8558d94 | 2012-08-20 19:08:08 +0200 | [diff] [blame] | 229 | h = PCI_HOST_BRIDGE(s); |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 230 | d = UNI_NORTH_PCI_HOST_BRIDGE(dev); |
Paolo Bonzini | 40c5dce | 2013-06-06 21:25:08 -0400 | [diff] [blame] | 231 | memory_region_init(&d->pci_mmio, OBJECT(d), "pci-mmio", 0x100000000ULL); |
| 232 | memory_region_init_alias(&d->pci_hole, OBJECT(d), "pci-hole", &d->pci_mmio, |
Blue Swirl | 46f3069 | 2011-09-17 20:30:50 +0000 | [diff] [blame] | 233 | 0x80000000ULL, 0x70000000ULL); |
| 234 | memory_region_add_subregion(address_space_mem, 0x80000000ULL, |
| 235 | &d->pci_hole); |
| 236 | |
Alexander Graf | 8a0e110 | 2013-12-04 12:42:32 +0100 | [diff] [blame] | 237 | h->bus = pci_register_bus(dev, NULL, |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 238 | pci_unin_set_irq, pci_unin_map_irq, |
| 239 | pic, |
| 240 | &d->pci_mmio, |
| 241 | address_space_io, |
Alex Williamson | 60a0e44 | 2013-03-14 16:01:11 -0600 | [diff] [blame] | 242 | PCI_DEVFN(11, 0), 4, TYPE_PCI_BUS); |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 243 | |
Blue Swirl | 6039874 | 2009-11-15 14:30:56 +0000 | [diff] [blame] | 244 | #if 0 |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 245 | pci_create_simple(h->bus, PCI_DEVFN(11, 0), "uni-north"); |
Blue Swirl | 6039874 | 2009-11-15 14:30:56 +0000 | [diff] [blame] | 246 | #endif |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 247 | |
| 248 | sysbus_mmio_map(s, 0, 0xf2800000); |
| 249 | sysbus_mmio_map(s, 1, 0xf2c00000); |
| 250 | |
| 251 | /* DEC 21154 bridge */ |
| 252 | #if 0 |
| 253 | /* XXX: not activated as PPC BIOS doesn't handle multiple buses properly */ |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 254 | pci_create_simple(h->bus, PCI_DEVFN(12, 0), "dec-21154"); |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 255 | #endif |
| 256 | |
| 257 | /* Uninorth AGP bus */ |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 258 | pci_create_simple(h->bus, PCI_DEVFN(11, 0), "uni-north-agp"); |
| 259 | dev = qdev_create(NULL, TYPE_UNI_NORTH_AGP_HOST_BRIDGE); |
Blue Swirl | d27d06f | 2009-11-15 17:42:17 +0000 | [diff] [blame] | 260 | qdev_init_nofail(dev); |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 261 | s = SYS_BUS_DEVICE(dev); |
Blue Swirl | d27d06f | 2009-11-15 17:42:17 +0000 | [diff] [blame] | 262 | sysbus_mmio_map(s, 0, 0xf0800000); |
| 263 | sysbus_mmio_map(s, 1, 0xf0c00000); |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 264 | |
| 265 | /* Uninorth internal bus */ |
| 266 | #if 0 |
| 267 | /* XXX: not needed for now */ |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 268 | pci_create_simple(h->bus, PCI_DEVFN(14, 0), |
Andreas Färber | 70f9c98 | 2012-01-19 07:40:16 +0000 | [diff] [blame] | 269 | "uni-north-internal-pci"); |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 270 | dev = qdev_create(NULL, TYPE_UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE); |
Blue Swirl | d27d06f | 2009-11-15 17:42:17 +0000 | [diff] [blame] | 271 | qdev_init_nofail(dev); |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 272 | s = SYS_BUS_DEVICE(dev); |
Blue Swirl | d27d06f | 2009-11-15 17:42:17 +0000 | [diff] [blame] | 273 | sysbus_mmio_map(s, 0, 0xf4800000); |
| 274 | sysbus_mmio_map(s, 1, 0xf4c00000); |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 275 | #endif |
| 276 | |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 277 | return h->bus; |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 278 | } |
| 279 | |
Avi Kivity | aee97b8 | 2011-08-08 16:09:04 +0300 | [diff] [blame] | 280 | PCIBus *pci_pmac_u3_init(qemu_irq *pic, |
| 281 | MemoryRegion *address_space_mem, |
| 282 | MemoryRegion *address_space_io) |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 283 | { |
| 284 | DeviceState *dev; |
| 285 | SysBusDevice *s; |
Andreas Färber | ff452ac | 2012-01-19 07:40:17 +0000 | [diff] [blame] | 286 | PCIHostState *h; |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 287 | UNINState *d; |
| 288 | |
| 289 | /* Uninorth AGP bus */ |
| 290 | |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 291 | dev = qdev_create(NULL, TYPE_U3_AGP_HOST_BRIDGE); |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 292 | qdev_init_nofail(dev); |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 293 | s = SYS_BUS_DEVICE(dev); |
Andreas Färber | 8558d94 | 2012-08-20 19:08:08 +0200 | [diff] [blame] | 294 | h = PCI_HOST_BRIDGE(dev); |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 295 | d = U3_AGP_HOST_BRIDGE(dev); |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 296 | |
Paolo Bonzini | 40c5dce | 2013-06-06 21:25:08 -0400 | [diff] [blame] | 297 | memory_region_init(&d->pci_mmio, OBJECT(d), "pci-mmio", 0x100000000ULL); |
| 298 | memory_region_init_alias(&d->pci_hole, OBJECT(d), "pci-hole", &d->pci_mmio, |
Blue Swirl | 46f3069 | 2011-09-17 20:30:50 +0000 | [diff] [blame] | 299 | 0x80000000ULL, 0x70000000ULL); |
| 300 | memory_region_add_subregion(address_space_mem, 0x80000000ULL, |
| 301 | &d->pci_hole); |
| 302 | |
Alexander Graf | 8a0e110 | 2013-12-04 12:42:32 +0100 | [diff] [blame] | 303 | h->bus = pci_register_bus(dev, NULL, |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 304 | pci_unin_set_irq, pci_unin_map_irq, |
| 305 | pic, |
| 306 | &d->pci_mmio, |
| 307 | address_space_io, |
Alex Williamson | 60a0e44 | 2013-03-14 16:01:11 -0600 | [diff] [blame] | 308 | PCI_DEVFN(11, 0), 4, TYPE_PCI_BUS); |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 309 | |
| 310 | sysbus_mmio_map(s, 0, 0xf0800000); |
| 311 | sysbus_mmio_map(s, 1, 0xf0c00000); |
| 312 | |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 313 | pci_create_simple(h->bus, 11 << 3, "u3-agp"); |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 314 | |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 315 | return h->bus; |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 316 | } |
| 317 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 318 | static int unin_main_pci_host_init(PCIDevice *d) |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 319 | { |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 320 | d->config[0x0C] = 0x08; // cache_line_size |
| 321 | d->config[0x0D] = 0x10; // latency_timer |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 322 | d->config[0x34] = 0x00; // capabilities_pointer |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 323 | return 0; |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 324 | } |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 325 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 326 | static int unin_agp_pci_host_init(PCIDevice *d) |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 327 | { |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 328 | d->config[0x0C] = 0x08; // cache_line_size |
| 329 | d->config[0x0D] = 0x10; // latency_timer |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 330 | // d->config[0x34] = 0x80; // capabilities_pointer |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 331 | return 0; |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 332 | } |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 333 | |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 334 | static int u3_agp_pci_host_init(PCIDevice *d) |
| 335 | { |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 336 | /* cache line size */ |
| 337 | d->config[0x0C] = 0x08; |
| 338 | /* latency timer */ |
| 339 | d->config[0x0D] = 0x10; |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 340 | return 0; |
| 341 | } |
| 342 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 343 | static int unin_internal_pci_host_init(PCIDevice *d) |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 344 | { |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 345 | d->config[0x0C] = 0x08; // cache_line_size |
| 346 | d->config[0x0D] = 0x10; // latency_timer |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 347 | d->config[0x34] = 0x00; // capabilities_pointer |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 348 | return 0; |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 349 | } |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 350 | |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 351 | static void unin_main_pci_host_class_init(ObjectClass *klass, void *data) |
| 352 | { |
| 353 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
Markus Armbruster | 08c58f9 | 2013-11-28 17:26:58 +0100 | [diff] [blame] | 354 | DeviceClass *dc = DEVICE_CLASS(klass); |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 355 | |
| 356 | k->init = unin_main_pci_host_init; |
| 357 | k->vendor_id = PCI_VENDOR_ID_APPLE; |
| 358 | k->device_id = PCI_DEVICE_ID_APPLE_UNI_N_PCI; |
| 359 | k->revision = 0x00; |
| 360 | k->class_id = PCI_CLASS_BRIDGE_HOST; |
Markus Armbruster | 08c58f9 | 2013-11-28 17:26:58 +0100 | [diff] [blame] | 361 | /* |
| 362 | * PCI-facing part of the host bridge, not usable without the |
| 363 | * host-facing part, which can't be device_add'ed, yet. |
| 364 | */ |
| 365 | dc->cannot_instantiate_with_device_add_yet = true; |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 366 | } |
| 367 | |
Andreas Färber | 4240abf | 2012-08-20 19:07:56 +0200 | [diff] [blame] | 368 | static const TypeInfo unin_main_pci_host_info = { |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 369 | .name = "uni-north-pci", |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 370 | .parent = TYPE_PCI_DEVICE, |
| 371 | .instance_size = sizeof(PCIDevice), |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 372 | .class_init = unin_main_pci_host_class_init, |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 373 | }; |
| 374 | |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 375 | static void u3_agp_pci_host_class_init(ObjectClass *klass, void *data) |
| 376 | { |
| 377 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
Markus Armbruster | 08c58f9 | 2013-11-28 17:26:58 +0100 | [diff] [blame] | 378 | DeviceClass *dc = DEVICE_CLASS(klass); |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 379 | |
| 380 | k->init = u3_agp_pci_host_init; |
| 381 | k->vendor_id = PCI_VENDOR_ID_APPLE; |
| 382 | k->device_id = PCI_DEVICE_ID_APPLE_U3_AGP; |
| 383 | k->revision = 0x00; |
| 384 | k->class_id = PCI_CLASS_BRIDGE_HOST; |
Markus Armbruster | 08c58f9 | 2013-11-28 17:26:58 +0100 | [diff] [blame] | 385 | /* |
| 386 | * PCI-facing part of the host bridge, not usable without the |
| 387 | * host-facing part, which can't be device_add'ed, yet. |
| 388 | */ |
| 389 | dc->cannot_instantiate_with_device_add_yet = true; |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 390 | } |
| 391 | |
Andreas Färber | 4240abf | 2012-08-20 19:07:56 +0200 | [diff] [blame] | 392 | static const TypeInfo u3_agp_pci_host_info = { |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 393 | .name = "u3-agp", |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 394 | .parent = TYPE_PCI_DEVICE, |
| 395 | .instance_size = sizeof(PCIDevice), |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 396 | .class_init = u3_agp_pci_host_class_init, |
Alexander Graf | 0f92119 | 2010-02-09 17:37:02 +0100 | [diff] [blame] | 397 | }; |
| 398 | |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 399 | static void unin_agp_pci_host_class_init(ObjectClass *klass, void *data) |
| 400 | { |
| 401 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
Markus Armbruster | 08c58f9 | 2013-11-28 17:26:58 +0100 | [diff] [blame] | 402 | DeviceClass *dc = DEVICE_CLASS(klass); |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 403 | |
| 404 | k->init = unin_agp_pci_host_init; |
| 405 | k->vendor_id = PCI_VENDOR_ID_APPLE; |
| 406 | k->device_id = PCI_DEVICE_ID_APPLE_UNI_N_AGP; |
| 407 | k->revision = 0x00; |
| 408 | k->class_id = PCI_CLASS_BRIDGE_HOST; |
Markus Armbruster | 08c58f9 | 2013-11-28 17:26:58 +0100 | [diff] [blame] | 409 | /* |
| 410 | * PCI-facing part of the host bridge, not usable without the |
| 411 | * host-facing part, which can't be device_add'ed, yet. |
| 412 | */ |
| 413 | dc->cannot_instantiate_with_device_add_yet = true; |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 414 | } |
| 415 | |
Andreas Färber | 4240abf | 2012-08-20 19:07:56 +0200 | [diff] [blame] | 416 | static const TypeInfo unin_agp_pci_host_info = { |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 417 | .name = "uni-north-agp", |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 418 | .parent = TYPE_PCI_DEVICE, |
| 419 | .instance_size = sizeof(PCIDevice), |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 420 | .class_init = unin_agp_pci_host_class_init, |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 421 | }; |
| 422 | |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 423 | static void unin_internal_pci_host_class_init(ObjectClass *klass, void *data) |
| 424 | { |
| 425 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
Markus Armbruster | 08c58f9 | 2013-11-28 17:26:58 +0100 | [diff] [blame] | 426 | DeviceClass *dc = DEVICE_CLASS(klass); |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 427 | |
| 428 | k->init = unin_internal_pci_host_init; |
| 429 | k->vendor_id = PCI_VENDOR_ID_APPLE; |
| 430 | k->device_id = PCI_DEVICE_ID_APPLE_UNI_N_I_PCI; |
| 431 | k->revision = 0x00; |
| 432 | k->class_id = PCI_CLASS_BRIDGE_HOST; |
Markus Armbruster | 08c58f9 | 2013-11-28 17:26:58 +0100 | [diff] [blame] | 433 | /* |
| 434 | * PCI-facing part of the host bridge, not usable without the |
| 435 | * host-facing part, which can't be device_add'ed, yet. |
| 436 | */ |
| 437 | dc->cannot_instantiate_with_device_add_yet = true; |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 438 | } |
| 439 | |
Andreas Färber | 4240abf | 2012-08-20 19:07:56 +0200 | [diff] [blame] | 440 | static const TypeInfo unin_internal_pci_host_info = { |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 441 | .name = "uni-north-internal-pci", |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 442 | .parent = TYPE_PCI_DEVICE, |
| 443 | .instance_size = sizeof(PCIDevice), |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 444 | .class_init = unin_internal_pci_host_class_init, |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 445 | }; |
| 446 | |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 447 | static void pci_unin_main_class_init(ObjectClass *klass, void *data) |
| 448 | { |
| 449 | SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(klass); |
| 450 | |
| 451 | sbc->init = pci_unin_main_init_device; |
| 452 | } |
| 453 | |
Andreas Färber | 4240abf | 2012-08-20 19:07:56 +0200 | [diff] [blame] | 454 | static const TypeInfo pci_unin_main_info = { |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 455 | .name = TYPE_UNI_NORTH_PCI_HOST_BRIDGE, |
Andreas Färber | 8558d94 | 2012-08-20 19:08:08 +0200 | [diff] [blame] | 456 | .parent = TYPE_PCI_HOST_BRIDGE, |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 457 | .instance_size = sizeof(UNINState), |
| 458 | .class_init = pci_unin_main_class_init, |
Andreas Färber | 70f9c98 | 2012-01-19 07:40:16 +0000 | [diff] [blame] | 459 | }; |
| 460 | |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 461 | static void pci_u3_agp_class_init(ObjectClass *klass, void *data) |
| 462 | { |
| 463 | SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(klass); |
| 464 | |
| 465 | sbc->init = pci_u3_agp_init_device; |
| 466 | } |
| 467 | |
Andreas Färber | 4240abf | 2012-08-20 19:07:56 +0200 | [diff] [blame] | 468 | static const TypeInfo pci_u3_agp_info = { |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 469 | .name = TYPE_U3_AGP_HOST_BRIDGE, |
Andreas Färber | 8558d94 | 2012-08-20 19:08:08 +0200 | [diff] [blame] | 470 | .parent = TYPE_PCI_HOST_BRIDGE, |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 471 | .instance_size = sizeof(UNINState), |
| 472 | .class_init = pci_u3_agp_class_init, |
Andreas Färber | 70f9c98 | 2012-01-19 07:40:16 +0000 | [diff] [blame] | 473 | }; |
| 474 | |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 475 | static void pci_unin_agp_class_init(ObjectClass *klass, void *data) |
| 476 | { |
| 477 | SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(klass); |
| 478 | |
| 479 | sbc->init = pci_unin_agp_init_device; |
| 480 | } |
| 481 | |
Andreas Färber | 4240abf | 2012-08-20 19:07:56 +0200 | [diff] [blame] | 482 | static const TypeInfo pci_unin_agp_info = { |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 483 | .name = TYPE_UNI_NORTH_AGP_HOST_BRIDGE, |
Andreas Färber | 8558d94 | 2012-08-20 19:08:08 +0200 | [diff] [blame] | 484 | .parent = TYPE_PCI_HOST_BRIDGE, |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 485 | .instance_size = sizeof(UNINState), |
| 486 | .class_init = pci_unin_agp_class_init, |
Andreas Färber | 70f9c98 | 2012-01-19 07:40:16 +0000 | [diff] [blame] | 487 | }; |
| 488 | |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 489 | static void pci_unin_internal_class_init(ObjectClass *klass, void *data) |
| 490 | { |
| 491 | SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(klass); |
| 492 | |
| 493 | sbc->init = pci_unin_internal_init_device; |
| 494 | } |
| 495 | |
Andreas Färber | 4240abf | 2012-08-20 19:07:56 +0200 | [diff] [blame] | 496 | static const TypeInfo pci_unin_internal_info = { |
Andreas Färber | 57fd7b7 | 2012-08-20 19:08:06 +0200 | [diff] [blame] | 497 | .name = TYPE_UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE, |
Andreas Färber | 8558d94 | 2012-08-20 19:08:08 +0200 | [diff] [blame] | 498 | .parent = TYPE_PCI_HOST_BRIDGE, |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 499 | .instance_size = sizeof(UNINState), |
| 500 | .class_init = pci_unin_internal_class_init, |
Andreas Färber | 70f9c98 | 2012-01-19 07:40:16 +0000 | [diff] [blame] | 501 | }; |
| 502 | |
Andreas Färber | 83f7d43 | 2012-02-09 15:20:55 +0100 | [diff] [blame] | 503 | static void unin_register_types(void) |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 504 | { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 505 | type_register_static(&unin_main_pci_host_info); |
| 506 | type_register_static(&u3_agp_pci_host_info); |
| 507 | type_register_static(&unin_agp_pci_host_info); |
| 508 | type_register_static(&unin_internal_pci_host_info); |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 509 | |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 510 | type_register_static(&pci_unin_main_info); |
| 511 | type_register_static(&pci_u3_agp_info); |
| 512 | type_register_static(&pci_unin_agp_info); |
| 513 | type_register_static(&pci_unin_internal_info); |
Blue Swirl | 2e29bd0 | 2009-07-31 20:23:28 +0000 | [diff] [blame] | 514 | } |
| 515 | |
Andreas Färber | 83f7d43 | 2012-02-09 15:20:55 +0100 | [diff] [blame] | 516 | type_init(unin_register_types) |