pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 1 | /* |
| 2 | * QEMU Ultrasparc APB PCI host |
| 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 | */ |
pbrook | 80b3ada | 2006-09-24 17:01:44 +0000 | [diff] [blame] | 24 | |
blueswir1 | a94fd95 | 2009-01-09 20:53:30 +0000 | [diff] [blame] | 25 | /* XXX This file and most of its contents are somewhat misnamed. The |
pbrook | 80b3ada | 2006-09-24 17:01:44 +0000 | [diff] [blame] | 26 | Ultrasparc PCI host is called the PCI Bus Module (PBM). The APB is |
| 27 | the secondary PCI bridge. */ |
| 28 | |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 29 | #include "sysbus.h" |
Michael S. Tsirkin | a2cb15b | 2012-12-12 14:24:50 +0200 | [diff] [blame] | 30 | #include "pci/pci.h" |
| 31 | #include "pci/pci_host.h" |
| 32 | #include "pci/pci_bridge.h" |
Michael S. Tsirkin | 06aac7b | 2012-12-12 15:00:45 +0200 | [diff] [blame] | 33 | #include "pci/pci_bus.h" |
Michael S. Tsirkin | 18e08a5 | 2009-11-11 14:59:56 +0200 | [diff] [blame] | 34 | #include "apb_pci.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 35 | #include "sysemu/sysemu.h" |
Paolo Bonzini | 022c62c | 2012-12-17 18:19:49 +0100 | [diff] [blame] | 36 | #include "exec/address-spaces.h" |
blueswir1 | a94fd95 | 2009-01-09 20:53:30 +0000 | [diff] [blame] | 37 | |
| 38 | /* debug APB */ |
| 39 | //#define DEBUG_APB |
| 40 | |
| 41 | #ifdef DEBUG_APB |
Blue Swirl | 001faf3 | 2009-05-13 17:53:17 +0000 | [diff] [blame] | 42 | #define APB_DPRINTF(fmt, ...) \ |
| 43 | do { printf("APB: " fmt , ## __VA_ARGS__); } while (0) |
blueswir1 | a94fd95 | 2009-01-09 20:53:30 +0000 | [diff] [blame] | 44 | #else |
Blue Swirl | 001faf3 | 2009-05-13 17:53:17 +0000 | [diff] [blame] | 45 | #define APB_DPRINTF(fmt, ...) |
blueswir1 | a94fd95 | 2009-01-09 20:53:30 +0000 | [diff] [blame] | 46 | #endif |
| 47 | |
Blue Swirl | 930f3fe | 2009-10-13 18:56:27 +0000 | [diff] [blame] | 48 | /* |
| 49 | * Chipset docs: |
| 50 | * PBM: "UltraSPARC IIi User's Manual", |
| 51 | * http://www.sun.com/processors/manuals/805-0087.pdf |
| 52 | * |
| 53 | * APB: "Advanced PCI Bridge (APB) User's Manual", |
| 54 | * http://www.sun.com/processors/manuals/805-1251.pdf |
| 55 | */ |
| 56 | |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 57 | #define PBM_PCI_IMR_MASK 0x7fffffff |
| 58 | #define PBM_PCI_IMR_ENABLED 0x80000000 |
| 59 | |
| 60 | #define POR (1 << 31) |
| 61 | #define SOFT_POR (1 << 30) |
| 62 | #define SOFT_XIR (1 << 29) |
| 63 | #define BTN_POR (1 << 28) |
| 64 | #define BTN_XIR (1 << 27) |
| 65 | #define RESET_MASK 0xf8000000 |
| 66 | #define RESET_WCMASK 0x98000000 |
| 67 | #define RESET_WMASK 0x60000000 |
| 68 | |
Blue Swirl | 361dea4 | 2012-03-10 20:37:00 +0000 | [diff] [blame] | 69 | #define MAX_IVEC 0x30 |
| 70 | |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 71 | typedef struct APBState { |
| 72 | SysBusDevice busdev; |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 73 | PCIBus *bus; |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 74 | MemoryRegion apb_config; |
| 75 | MemoryRegion pci_config; |
Blue Swirl | f69539b | 2011-09-03 16:38:02 +0000 | [diff] [blame] | 76 | MemoryRegion pci_mmio; |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 77 | MemoryRegion pci_ioport; |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 78 | uint32_t iommu[4]; |
| 79 | uint32_t pci_control[16]; |
| 80 | uint32_t pci_irq_map[8]; |
| 81 | uint32_t obio_irq_map[32]; |
Blue Swirl | 361dea4 | 2012-03-10 20:37:00 +0000 | [diff] [blame] | 82 | qemu_irq *pbm_irqs; |
| 83 | qemu_irq *ivec_irqs; |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 84 | uint32_t reset_control; |
Blue Swirl | 9c0afd0 | 2010-05-12 19:27:23 +0000 | [diff] [blame] | 85 | unsigned int nr_resets; |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 86 | } APBState; |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 87 | |
Artyom Tarasenko | 94d1991 | 2012-05-12 11:15:23 +0200 | [diff] [blame] | 88 | static void pci_apb_set_irq(void *opaque, int irq_num, int level); |
| 89 | |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 90 | static void apb_config_writel (void *opaque, hwaddr addr, |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 91 | uint64_t val, unsigned size) |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 92 | { |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 93 | APBState *s = opaque; |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 94 | |
Blue Swirl | 361dea4 | 2012-03-10 20:37:00 +0000 | [diff] [blame] | 95 | APB_DPRINTF("%s: addr " TARGET_FMT_lx " val %" PRIx64 "\n", __func__, addr, val); |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 96 | |
| 97 | switch (addr & 0xffff) { |
| 98 | case 0x30 ... 0x4f: /* DMA error registers */ |
| 99 | /* XXX: not implemented yet */ |
| 100 | break; |
| 101 | case 0x200 ... 0x20b: /* IOMMU */ |
| 102 | s->iommu[(addr & 0xf) >> 2] = val; |
| 103 | break; |
| 104 | case 0x20c ... 0x3ff: /* IOMMU flush */ |
| 105 | break; |
| 106 | case 0xc00 ... 0xc3f: /* PCI interrupt control */ |
| 107 | if (addr & 4) { |
| 108 | s->pci_irq_map[(addr & 0x3f) >> 3] &= PBM_PCI_IMR_MASK; |
| 109 | s->pci_irq_map[(addr & 0x3f) >> 3] |= val & ~PBM_PCI_IMR_MASK; |
| 110 | } |
| 111 | break; |
Blue Swirl | 361dea4 | 2012-03-10 20:37:00 +0000 | [diff] [blame] | 112 | case 0x1000 ... 0x1080: /* OBIO interrupt control */ |
| 113 | if (addr & 4) { |
| 114 | s->obio_irq_map[(addr & 0xff) >> 3] &= PBM_PCI_IMR_MASK; |
| 115 | s->obio_irq_map[(addr & 0xff) >> 3] |= val & ~PBM_PCI_IMR_MASK; |
| 116 | } |
| 117 | break; |
Artyom Tarasenko | 94d1991 | 2012-05-12 11:15:23 +0200 | [diff] [blame] | 118 | case 0x1400 ... 0x143f: /* PCI interrupt clear */ |
| 119 | if (addr & 4) { |
| 120 | pci_apb_set_irq(s, (addr & 0x3f) >> 3, 0); |
| 121 | } |
| 122 | break; |
| 123 | case 0x1800 ... 0x1860: /* OBIO interrupt clear */ |
| 124 | if (addr & 4) { |
| 125 | pci_apb_set_irq(s, 0x20 | ((addr & 0xff) >> 3), 0); |
| 126 | } |
| 127 | break; |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 128 | case 0x2000 ... 0x202f: /* PCI control */ |
| 129 | s->pci_control[(addr & 0x3f) >> 2] = val; |
| 130 | break; |
| 131 | case 0xf020 ... 0xf027: /* Reset control */ |
| 132 | if (addr & 4) { |
| 133 | val &= RESET_MASK; |
| 134 | s->reset_control &= ~(val & RESET_WCMASK); |
| 135 | s->reset_control |= val & RESET_WMASK; |
| 136 | if (val & SOFT_POR) { |
Blue Swirl | 9c0afd0 | 2010-05-12 19:27:23 +0000 | [diff] [blame] | 137 | s->nr_resets = 0; |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 138 | qemu_system_reset_request(); |
| 139 | } else if (val & SOFT_XIR) { |
| 140 | qemu_system_reset_request(); |
| 141 | } |
| 142 | } |
| 143 | break; |
| 144 | case 0x5000 ... 0x51cf: /* PIO/DMA diagnostics */ |
| 145 | case 0xa400 ... 0xa67f: /* IOMMU diagnostics */ |
| 146 | case 0xa800 ... 0xa80f: /* Interrupt diagnostics */ |
| 147 | case 0xf000 ... 0xf01f: /* FFB config, memory control */ |
| 148 | /* we don't care */ |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 149 | default: |
blueswir1 | f930d07 | 2007-10-06 11:28:21 +0000 | [diff] [blame] | 150 | break; |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 151 | } |
| 152 | } |
| 153 | |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 154 | static uint64_t apb_config_readl (void *opaque, |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 155 | hwaddr addr, unsigned size) |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 156 | { |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 157 | APBState *s = opaque; |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 158 | uint32_t val; |
| 159 | |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 160 | switch (addr & 0xffff) { |
| 161 | case 0x30 ... 0x4f: /* DMA error registers */ |
| 162 | val = 0; |
| 163 | /* XXX: not implemented yet */ |
| 164 | break; |
| 165 | case 0x200 ... 0x20b: /* IOMMU */ |
| 166 | val = s->iommu[(addr & 0xf) >> 2]; |
| 167 | break; |
| 168 | case 0x20c ... 0x3ff: /* IOMMU flush */ |
| 169 | val = 0; |
| 170 | break; |
| 171 | case 0xc00 ... 0xc3f: /* PCI interrupt control */ |
| 172 | if (addr & 4) { |
| 173 | val = s->pci_irq_map[(addr & 0x3f) >> 3]; |
| 174 | } else { |
| 175 | val = 0; |
| 176 | } |
| 177 | break; |
Blue Swirl | 361dea4 | 2012-03-10 20:37:00 +0000 | [diff] [blame] | 178 | case 0x1000 ... 0x1080: /* OBIO interrupt control */ |
| 179 | if (addr & 4) { |
| 180 | val = s->obio_irq_map[(addr & 0xff) >> 3]; |
| 181 | } else { |
| 182 | val = 0; |
| 183 | } |
| 184 | break; |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 185 | case 0x2000 ... 0x202f: /* PCI control */ |
| 186 | val = s->pci_control[(addr & 0x3f) >> 2]; |
| 187 | break; |
| 188 | case 0xf020 ... 0xf027: /* Reset control */ |
| 189 | if (addr & 4) { |
| 190 | val = s->reset_control; |
| 191 | } else { |
| 192 | val = 0; |
| 193 | } |
| 194 | break; |
| 195 | case 0x5000 ... 0x51cf: /* PIO/DMA diagnostics */ |
| 196 | case 0xa400 ... 0xa67f: /* IOMMU diagnostics */ |
| 197 | case 0xa800 ... 0xa80f: /* Interrupt diagnostics */ |
| 198 | case 0xf000 ... 0xf01f: /* FFB config, memory control */ |
| 199 | /* we don't care */ |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 200 | default: |
blueswir1 | f930d07 | 2007-10-06 11:28:21 +0000 | [diff] [blame] | 201 | val = 0; |
| 202 | break; |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 203 | } |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 204 | APB_DPRINTF("%s: addr " TARGET_FMT_lx " -> %x\n", __func__, addr, val); |
| 205 | |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 206 | return val; |
| 207 | } |
| 208 | |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 209 | static const MemoryRegionOps apb_config_ops = { |
| 210 | .read = apb_config_readl, |
| 211 | .write = apb_config_writel, |
| 212 | .endianness = DEVICE_NATIVE_ENDIAN, |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 213 | }; |
| 214 | |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 215 | static void apb_pci_config_write(void *opaque, hwaddr addr, |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 216 | uint64_t val, unsigned size) |
Blue Swirl | 5a5d4a7 | 2010-01-11 21:20:53 +0000 | [diff] [blame] | 217 | { |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 218 | APBState *s = opaque; |
Michael S. Tsirkin | 63e6f31 | 2010-02-22 12:38:25 +0200 | [diff] [blame] | 219 | |
| 220 | val = qemu_bswap_len(val, size); |
Blue Swirl | 361dea4 | 2012-03-10 20:37:00 +0000 | [diff] [blame] | 221 | APB_DPRINTF("%s: addr " TARGET_FMT_lx " val %" PRIx64 "\n", __func__, addr, val); |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 222 | pci_data_write(s->bus, addr, val, size); |
Blue Swirl | 5a5d4a7 | 2010-01-11 21:20:53 +0000 | [diff] [blame] | 223 | } |
| 224 | |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 225 | static uint64_t apb_pci_config_read(void *opaque, hwaddr addr, |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 226 | unsigned size) |
Blue Swirl | 5a5d4a7 | 2010-01-11 21:20:53 +0000 | [diff] [blame] | 227 | { |
| 228 | uint32_t ret; |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 229 | APBState *s = opaque; |
Blue Swirl | 5a5d4a7 | 2010-01-11 21:20:53 +0000 | [diff] [blame] | 230 | |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 231 | ret = pci_data_read(s->bus, addr, size); |
Michael S. Tsirkin | 63e6f31 | 2010-02-22 12:38:25 +0200 | [diff] [blame] | 232 | ret = qemu_bswap_len(ret, size); |
Blue Swirl | 5a5d4a7 | 2010-01-11 21:20:53 +0000 | [diff] [blame] | 233 | APB_DPRINTF("%s: addr " TARGET_FMT_lx " -> %x\n", __func__, addr, ret); |
| 234 | return ret; |
| 235 | } |
| 236 | |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 237 | static void pci_apb_iowriteb (void *opaque, hwaddr addr, |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 238 | uint32_t val) |
| 239 | { |
Blue Swirl | afcea8c | 2009-09-20 16:05:47 +0000 | [diff] [blame] | 240 | cpu_outb(addr & IOPORTS_MASK, val); |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 241 | } |
| 242 | |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 243 | static void pci_apb_iowritew (void *opaque, hwaddr addr, |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 244 | uint32_t val) |
| 245 | { |
Blue Swirl | a4d5f62 | 2010-01-29 18:15:21 +0000 | [diff] [blame] | 246 | cpu_outw(addr & IOPORTS_MASK, bswap16(val)); |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 249 | static void pci_apb_iowritel (void *opaque, hwaddr addr, |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 250 | uint32_t val) |
| 251 | { |
Blue Swirl | a4d5f62 | 2010-01-29 18:15:21 +0000 | [diff] [blame] | 252 | cpu_outl(addr & IOPORTS_MASK, bswap32(val)); |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 253 | } |
| 254 | |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 255 | static uint32_t pci_apb_ioreadb (void *opaque, hwaddr addr) |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 256 | { |
| 257 | uint32_t val; |
| 258 | |
Blue Swirl | afcea8c | 2009-09-20 16:05:47 +0000 | [diff] [blame] | 259 | val = cpu_inb(addr & IOPORTS_MASK); |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 260 | return val; |
| 261 | } |
| 262 | |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 263 | static uint32_t pci_apb_ioreadw (void *opaque, hwaddr addr) |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 264 | { |
| 265 | uint32_t val; |
| 266 | |
Blue Swirl | a4d5f62 | 2010-01-29 18:15:21 +0000 | [diff] [blame] | 267 | val = bswap16(cpu_inw(addr & IOPORTS_MASK)); |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 268 | return val; |
| 269 | } |
| 270 | |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 271 | static uint32_t pci_apb_ioreadl (void *opaque, hwaddr addr) |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 272 | { |
| 273 | uint32_t val; |
| 274 | |
Blue Swirl | a4d5f62 | 2010-01-29 18:15:21 +0000 | [diff] [blame] | 275 | val = bswap32(cpu_inl(addr & IOPORTS_MASK)); |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 276 | return val; |
| 277 | } |
| 278 | |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 279 | static const MemoryRegionOps pci_ioport_ops = { |
| 280 | .old_mmio = { |
| 281 | .read = { pci_apb_ioreadb, pci_apb_ioreadw, pci_apb_ioreadl }, |
| 282 | .write = { pci_apb_iowriteb, pci_apb_iowritew, pci_apb_iowritel, }, |
| 283 | }, |
| 284 | .endianness = DEVICE_NATIVE_ENDIAN, |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 285 | }; |
| 286 | |
pbrook | 80b3ada | 2006-09-24 17:01:44 +0000 | [diff] [blame] | 287 | /* The APB host has an IRQ line for each IRQ line of each slot. */ |
pbrook | d2b5931 | 2006-09-24 00:16:34 +0000 | [diff] [blame] | 288 | static int pci_apb_map_irq(PCIDevice *pci_dev, int irq_num) |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 289 | { |
pbrook | 80b3ada | 2006-09-24 17:01:44 +0000 | [diff] [blame] | 290 | return ((pci_dev->devfn & 0x18) >> 1) + irq_num; |
| 291 | } |
| 292 | |
| 293 | static int pci_pbm_map_irq(PCIDevice *pci_dev, int irq_num) |
| 294 | { |
| 295 | int bus_offset; |
| 296 | if (pci_dev->devfn & 1) |
| 297 | bus_offset = 16; |
| 298 | else |
| 299 | bus_offset = 0; |
| 300 | return bus_offset + irq_num; |
pbrook | d2b5931 | 2006-09-24 00:16:34 +0000 | [diff] [blame] | 301 | } |
| 302 | |
Juan Quintela | 5d4e84c | 2009-08-28 15:28:17 +0200 | [diff] [blame] | 303 | static void pci_apb_set_irq(void *opaque, int irq_num, int level) |
pbrook | d2b5931 | 2006-09-24 00:16:34 +0000 | [diff] [blame] | 304 | { |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 305 | APBState *s = opaque; |
Juan Quintela | 5d4e84c | 2009-08-28 15:28:17 +0200 | [diff] [blame] | 306 | |
pbrook | 80b3ada | 2006-09-24 17:01:44 +0000 | [diff] [blame] | 307 | /* PCI IRQ map onto the first 32 INO. */ |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 308 | if (irq_num < 32) { |
| 309 | if (s->pci_irq_map[irq_num >> 2] & PBM_PCI_IMR_ENABLED) { |
| 310 | APB_DPRINTF("%s: set irq %d level %d\n", __func__, irq_num, level); |
Blue Swirl | 361dea4 | 2012-03-10 20:37:00 +0000 | [diff] [blame] | 311 | qemu_set_irq(s->ivec_irqs[irq_num], level); |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 312 | } else { |
| 313 | APB_DPRINTF("%s: not enabled: lower irq %d\n", __func__, irq_num); |
Blue Swirl | 361dea4 | 2012-03-10 20:37:00 +0000 | [diff] [blame] | 314 | qemu_irq_lower(s->ivec_irqs[irq_num]); |
| 315 | } |
| 316 | } else { |
| 317 | /* OBIO IRQ map onto the next 16 INO. */ |
| 318 | if (s->obio_irq_map[irq_num - 32] & PBM_PCI_IMR_ENABLED) { |
| 319 | APB_DPRINTF("%s: set irq %d level %d\n", __func__, irq_num, level); |
| 320 | qemu_set_irq(s->ivec_irqs[irq_num], level); |
| 321 | } else { |
| 322 | APB_DPRINTF("%s: not enabled: lower irq %d\n", __func__, irq_num); |
| 323 | qemu_irq_lower(s->ivec_irqs[irq_num]); |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 324 | } |
| 325 | } |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Isaku Yamahata | 68f7999 | 2010-07-13 13:01:42 +0900 | [diff] [blame] | 328 | static int apb_pci_bridge_initfn(PCIDevice *dev) |
Michael S. Tsirkin | d631873 | 2009-11-11 14:33:54 +0200 | [diff] [blame] | 329 | { |
Isaku Yamahata | 68f7999 | 2010-07-13 13:01:42 +0900 | [diff] [blame] | 330 | int rc; |
| 331 | |
| 332 | rc = pci_bridge_initfn(dev); |
| 333 | if (rc < 0) { |
| 334 | return rc; |
| 335 | } |
| 336 | |
Michael S. Tsirkin | d631873 | 2009-11-11 14:33:54 +0200 | [diff] [blame] | 337 | /* |
| 338 | * command register: |
| 339 | * According to PCI bridge spec, after reset |
| 340 | * bus master bit is off |
| 341 | * memory space enable bit is off |
| 342 | * According to manual (805-1251.pdf). |
| 343 | * the reset value should be zero unless the boot pin is tied high |
| 344 | * (which is true) and thus it should be PCI_COMMAND_MEMORY. |
| 345 | */ |
| 346 | pci_set_word(dev->config + PCI_COMMAND, |
Blue Swirl | 9fe52c7 | 2010-02-14 08:27:19 +0000 | [diff] [blame] | 347 | PCI_COMMAND_MEMORY); |
| 348 | pci_set_word(dev->config + PCI_STATUS, |
| 349 | PCI_STATUS_FAST_BACK | PCI_STATUS_66MHZ | |
| 350 | PCI_STATUS_DEVSEL_MEDIUM); |
Isaku Yamahata | 68f7999 | 2010-07-13 13:01:42 +0900 | [diff] [blame] | 351 | return 0; |
Michael S. Tsirkin | d631873 | 2009-11-11 14:33:54 +0200 | [diff] [blame] | 352 | } |
| 353 | |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 354 | PCIBus *pci_apb_init(hwaddr special_base, |
| 355 | hwaddr mem_base, |
Blue Swirl | 361dea4 | 2012-03-10 20:37:00 +0000 | [diff] [blame] | 356 | qemu_irq *ivec_irqs, PCIBus **bus2, PCIBus **bus3, |
| 357 | qemu_irq **pbm_irqs) |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 358 | { |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 359 | DeviceState *dev; |
| 360 | SysBusDevice *s; |
| 361 | APBState *d; |
Isaku Yamahata | 68f7999 | 2010-07-13 13:01:42 +0900 | [diff] [blame] | 362 | PCIDevice *pci_dev; |
| 363 | PCIBridge *br; |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 364 | |
| 365 | /* Ultrasparc PBM main bus */ |
| 366 | dev = qdev_create(NULL, "pbm"); |
Markus Armbruster | e23a1b3 | 2009-10-07 01:15:58 +0200 | [diff] [blame] | 367 | qdev_init_nofail(dev); |
Andreas Färber | 1356b98 | 2013-01-20 02:47:33 +0100 | [diff] [blame] | 368 | s = SYS_BUS_DEVICE(dev); |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 369 | /* apb_config */ |
Blue Swirl | bae7b51 | 2010-01-10 18:25:48 +0000 | [diff] [blame] | 370 | sysbus_mmio_map(s, 0, special_base); |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 371 | /* PCI configuration space */ |
| 372 | sysbus_mmio_map(s, 1, special_base + 0x1000000ULL); |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 373 | /* pci_ioport */ |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 374 | sysbus_mmio_map(s, 2, special_base + 0x2000000ULL); |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 375 | d = FROM_SYSBUS(APBState, s); |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 376 | |
Blue Swirl | f69539b | 2011-09-03 16:38:02 +0000 | [diff] [blame] | 377 | memory_region_init(&d->pci_mmio, "pci-mmio", 0x100000000ULL); |
| 378 | memory_region_add_subregion(get_system_memory(), mem_base, &d->pci_mmio); |
| 379 | |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 380 | d->bus = pci_register_bus(&d->busdev.qdev, "pci", |
Blue Swirl | f69539b | 2011-09-03 16:38:02 +0000 | [diff] [blame] | 381 | pci_apb_set_irq, pci_pbm_map_irq, d, |
| 382 | &d->pci_mmio, |
| 383 | get_system_io(), |
| 384 | 0, 32); |
Blue Swirl | f6b6f1b | 2009-12-27 20:52:39 +0000 | [diff] [blame] | 385 | |
Blue Swirl | 361dea4 | 2012-03-10 20:37:00 +0000 | [diff] [blame] | 386 | *pbm_irqs = d->pbm_irqs; |
| 387 | d->ivec_irqs = ivec_irqs; |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 388 | |
Anthony Liguori | 7309335 | 2012-01-25 13:37:36 -0600 | [diff] [blame] | 389 | pci_create_simple(d->bus, 0, "pbm-pci"); |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 390 | |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 391 | /* APB secondary busses */ |
Isaku Yamahata | 68f7999 | 2010-07-13 13:01:42 +0900 | [diff] [blame] | 392 | pci_dev = pci_create_multifunction(d->bus, PCI_DEVFN(1, 0), true, |
| 393 | "pbm-bridge"); |
| 394 | br = DO_UPCAST(PCIBridge, dev, pci_dev); |
| 395 | pci_bridge_map_irq(br, "Advanced PCI Bus secondary bridge 1", |
| 396 | pci_apb_map_irq); |
| 397 | qdev_init_nofail(&pci_dev->qdev); |
| 398 | *bus2 = pci_bridge_get_sec_bus(br); |
Michael S. Tsirkin | d631873 | 2009-11-11 14:33:54 +0200 | [diff] [blame] | 399 | |
Isaku Yamahata | 68f7999 | 2010-07-13 13:01:42 +0900 | [diff] [blame] | 400 | pci_dev = pci_create_multifunction(d->bus, PCI_DEVFN(1, 1), true, |
| 401 | "pbm-bridge"); |
| 402 | br = DO_UPCAST(PCIBridge, dev, pci_dev); |
| 403 | pci_bridge_map_irq(br, "Advanced PCI Bus secondary bridge 2", |
| 404 | pci_apb_map_irq); |
| 405 | qdev_init_nofail(&pci_dev->qdev); |
| 406 | *bus3 = pci_bridge_get_sec_bus(br); |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 407 | |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 408 | return d->bus; |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 409 | } |
| 410 | |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 411 | static void pci_pbm_reset(DeviceState *d) |
| 412 | { |
| 413 | unsigned int i; |
| 414 | APBState *s = container_of(d, APBState, busdev.qdev); |
| 415 | |
| 416 | for (i = 0; i < 8; i++) { |
| 417 | s->pci_irq_map[i] &= PBM_PCI_IMR_MASK; |
| 418 | } |
Artyom Tarasenko | d1d8005 | 2012-05-12 11:15:22 +0200 | [diff] [blame] | 419 | for (i = 0; i < 32; i++) { |
| 420 | s->obio_irq_map[i] &= PBM_PCI_IMR_MASK; |
| 421 | } |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 422 | |
Blue Swirl | 9c0afd0 | 2010-05-12 19:27:23 +0000 | [diff] [blame] | 423 | if (s->nr_resets++ == 0) { |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 424 | /* Power on reset */ |
| 425 | s->reset_control = POR; |
| 426 | } |
| 427 | } |
| 428 | |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 429 | static const MemoryRegionOps pci_config_ops = { |
| 430 | .read = apb_pci_config_read, |
| 431 | .write = apb_pci_config_write, |
| 432 | .endianness = DEVICE_NATIVE_ENDIAN, |
| 433 | }; |
| 434 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 435 | static int pci_pbm_init_device(SysBusDevice *dev) |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 436 | { |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 437 | APBState *s; |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 438 | unsigned int i; |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 439 | |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 440 | s = FROM_SYSBUS(APBState, dev); |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 441 | for (i = 0; i < 8; i++) { |
| 442 | s->pci_irq_map[i] = (0x1f << 6) | (i << 2); |
| 443 | } |
Artyom Tarasenko | d1d8005 | 2012-05-12 11:15:22 +0200 | [diff] [blame] | 444 | for (i = 0; i < 32; i++) { |
| 445 | s->obio_irq_map[i] = ((0x1f << 6) | 0x20) + i; |
| 446 | } |
Blue Swirl | 361dea4 | 2012-03-10 20:37:00 +0000 | [diff] [blame] | 447 | s->pbm_irqs = qemu_allocate_irqs(pci_apb_set_irq, s, MAX_IVEC); |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 448 | |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 449 | /* apb_config */ |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 450 | memory_region_init_io(&s->apb_config, &apb_config_ops, s, "apb-config", |
| 451 | 0x10000); |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 452 | /* at region 0 */ |
Avi Kivity | 750ecd4 | 2011-11-27 11:38:10 +0200 | [diff] [blame] | 453 | sysbus_init_mmio(dev, &s->apb_config); |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 454 | |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 455 | memory_region_init_io(&s->pci_config, &pci_config_ops, s, "apb-pci-config", |
| 456 | 0x1000000); |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 457 | /* at region 1 */ |
Avi Kivity | 750ecd4 | 2011-11-27 11:38:10 +0200 | [diff] [blame] | 458 | sysbus_init_mmio(dev, &s->pci_config); |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 459 | |
| 460 | /* pci_ioport */ |
Avi Kivity | 3812ed0 | 2011-08-15 17:17:15 +0300 | [diff] [blame] | 461 | memory_region_init_io(&s->pci_ioport, &pci_ioport_ops, s, |
| 462 | "apb-pci-ioport", 0x10000); |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 463 | /* at region 2 */ |
Avi Kivity | 750ecd4 | 2011-11-27 11:38:10 +0200 | [diff] [blame] | 464 | sysbus_init_mmio(dev, &s->pci_ioport); |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 465 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 466 | return 0; |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 467 | } |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 468 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 469 | static int pbm_pci_host_init(PCIDevice *d) |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 470 | { |
Blue Swirl | 9fe52c7 | 2010-02-14 08:27:19 +0000 | [diff] [blame] | 471 | pci_set_word(d->config + PCI_COMMAND, |
| 472 | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER); |
| 473 | pci_set_word(d->config + PCI_STATUS, |
| 474 | PCI_STATUS_FAST_BACK | PCI_STATUS_66MHZ | |
| 475 | PCI_STATUS_DEVSEL_MEDIUM); |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 476 | return 0; |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 477 | } |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 478 | |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 479 | static void pbm_pci_host_class_init(ObjectClass *klass, void *data) |
| 480 | { |
| 481 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
| 482 | |
| 483 | k->init = pbm_pci_host_init; |
| 484 | k->vendor_id = PCI_VENDOR_ID_SUN; |
| 485 | k->device_id = PCI_DEVICE_ID_SUN_SABRE; |
| 486 | k->class_id = PCI_CLASS_BRIDGE_HOST; |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 487 | } |
| 488 | |
Andreas Färber | 8c43a6f | 2013-01-10 16:19:07 +0100 | [diff] [blame] | 489 | static const TypeInfo pbm_pci_host_info = { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 490 | .name = "pbm-pci", |
| 491 | .parent = TYPE_PCI_DEVICE, |
| 492 | .instance_size = sizeof(PCIDevice), |
| 493 | .class_init = pbm_pci_host_class_init, |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 494 | }; |
| 495 | |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 496 | static void pbm_host_class_init(ObjectClass *klass, void *data) |
| 497 | { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 498 | DeviceClass *dc = DEVICE_CLASS(klass); |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 499 | SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass); |
| 500 | |
| 501 | k->init = pci_pbm_init_device; |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 502 | dc->reset = pci_pbm_reset; |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 503 | } |
| 504 | |
Andreas Färber | 8c43a6f | 2013-01-10 16:19:07 +0100 | [diff] [blame] | 505 | static const TypeInfo pbm_host_info = { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 506 | .name = "pbm", |
| 507 | .parent = TYPE_SYS_BUS_DEVICE, |
| 508 | .instance_size = sizeof(APBState), |
| 509 | .class_init = pbm_host_class_init, |
Blue Swirl | 95819af | 2010-01-30 19:48:12 +0000 | [diff] [blame] | 510 | }; |
Isaku Yamahata | 68f7999 | 2010-07-13 13:01:42 +0900 | [diff] [blame] | 511 | |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 512 | static void pbm_pci_bridge_class_init(ObjectClass *klass, void *data) |
| 513 | { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 514 | DeviceClass *dc = DEVICE_CLASS(klass); |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 515 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
| 516 | |
| 517 | k->init = apb_pci_bridge_initfn; |
| 518 | k->exit = pci_bridge_exitfn; |
| 519 | k->vendor_id = PCI_VENDOR_ID_SUN; |
| 520 | k->device_id = PCI_DEVICE_ID_SUN_SIMBA; |
| 521 | k->revision = 0x11; |
| 522 | k->config_write = pci_bridge_write_config; |
| 523 | k->is_bridge = 1; |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 524 | dc->reset = pci_bridge_reset; |
| 525 | dc->vmsd = &vmstate_pci_device; |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 526 | } |
| 527 | |
Andreas Färber | 8c43a6f | 2013-01-10 16:19:07 +0100 | [diff] [blame] | 528 | static const TypeInfo pbm_pci_bridge_info = { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 529 | .name = "pbm-bridge", |
| 530 | .parent = TYPE_PCI_DEVICE, |
| 531 | .instance_size = sizeof(PCIBridge), |
| 532 | .class_init = pbm_pci_bridge_class_init, |
Isaku Yamahata | 68f7999 | 2010-07-13 13:01:42 +0900 | [diff] [blame] | 533 | }; |
| 534 | |
Andreas Färber | 83f7d43 | 2012-02-09 15:20:55 +0100 | [diff] [blame] | 535 | static void pbm_register_types(void) |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 536 | { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 537 | type_register_static(&pbm_host_info); |
| 538 | type_register_static(&pbm_pci_host_info); |
| 539 | type_register_static(&pbm_pci_bridge_info); |
Blue Swirl | 72f44c8 | 2009-07-21 08:36:37 +0000 | [diff] [blame] | 540 | } |
| 541 | |
Andreas Färber | 83f7d43 | 2012-02-09 15:20:55 +0100 | [diff] [blame] | 542 | type_init(pbm_register_types) |