blob: 8e4aebf485fd07e9c5a1701e131b05a7bdadd8c8 [file] [log] [blame]
pbrook502a5392006-05-13 16:11:23 +00001/*
2 * QEMU Ultrasparc APB PCI host
3 *
4 * Copyright (c) 2006 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
pbrook502a5392006-05-13 16:11:23 +00006 * 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 */
pbrook80b3ada2006-09-24 17:01:44 +000024
blueswir1a94fd952009-01-09 20:53:30 +000025/* XXX This file and most of its contents are somewhat misnamed. The
pbrook80b3ada2006-09-24 17:01:44 +000026 Ultrasparc PCI host is called the PCI Bus Module (PBM). The APB is
27 the secondary PCI bridge. */
28
Blue Swirl72f44c82009-07-21 08:36:37 +000029#include "sysbus.h"
pbrook87ecb682007-11-17 17:14:51 +000030#include "pci.h"
Isaku Yamahata4f5e19e2009-10-30 21:21:06 +090031#include "pci_host.h"
Michael S. Tsirkin18e08a52009-11-11 14:59:56 +020032#include "apb_pci.h"
blueswir1a94fd952009-01-09 20:53:30 +000033
34/* debug APB */
35//#define DEBUG_APB
36
37#ifdef DEBUG_APB
Blue Swirl001faf32009-05-13 17:53:17 +000038#define APB_DPRINTF(fmt, ...) \
39do { printf("APB: " fmt , ## __VA_ARGS__); } while (0)
blueswir1a94fd952009-01-09 20:53:30 +000040#else
Blue Swirl001faf32009-05-13 17:53:17 +000041#define APB_DPRINTF(fmt, ...)
blueswir1a94fd952009-01-09 20:53:30 +000042#endif
43
Blue Swirl930f3fe2009-10-13 18:56:27 +000044/*
45 * Chipset docs:
46 * PBM: "UltraSPARC IIi User's Manual",
47 * http://www.sun.com/processors/manuals/805-0087.pdf
48 *
49 * APB: "Advanced PCI Bridge (APB) User's Manual",
50 * http://www.sun.com/processors/manuals/805-1251.pdf
51 */
52
Blue Swirl72f44c82009-07-21 08:36:37 +000053typedef struct APBState {
54 SysBusDevice busdev;
55 PCIHostState host_state;
56} APBState;
pbrook502a5392006-05-13 16:11:23 +000057
Anthony Liguoric227f092009-10-01 16:12:16 -050058static void apb_config_writel (void *opaque, target_phys_addr_t addr,
blueswir1f930d072007-10-06 11:28:21 +000059 uint32_t val)
pbrook502a5392006-05-13 16:11:23 +000060{
61 //PCIBus *s = opaque;
62
63 switch (addr & 0x3f) {
64 case 0x00: // Control/Status
65 case 0x10: // AFSR
66 case 0x18: // AFAR
67 case 0x20: // Diagnostic
68 case 0x28: // Target address space
blueswir1f930d072007-10-06 11:28:21 +000069 // XXX
pbrook502a5392006-05-13 16:11:23 +000070 default:
blueswir1f930d072007-10-06 11:28:21 +000071 break;
pbrook502a5392006-05-13 16:11:23 +000072 }
73}
74
75static uint32_t apb_config_readl (void *opaque,
Anthony Liguoric227f092009-10-01 16:12:16 -050076 target_phys_addr_t addr)
pbrook502a5392006-05-13 16:11:23 +000077{
78 //PCIBus *s = opaque;
79 uint32_t val;
80
81 switch (addr & 0x3f) {
82 case 0x00: // Control/Status
83 case 0x10: // AFSR
84 case 0x18: // AFAR
85 case 0x20: // Diagnostic
86 case 0x28: // Target address space
blueswir1f930d072007-10-06 11:28:21 +000087 // XXX
pbrook502a5392006-05-13 16:11:23 +000088 default:
blueswir1f930d072007-10-06 11:28:21 +000089 val = 0;
90 break;
pbrook502a5392006-05-13 16:11:23 +000091 }
92 return val;
93}
94
Blue Swirld60efc62009-08-25 18:29:31 +000095static CPUWriteMemoryFunc * const apb_config_write[] = {
pbrook502a5392006-05-13 16:11:23 +000096 &apb_config_writel,
97 &apb_config_writel,
98 &apb_config_writel,
99};
100
Blue Swirld60efc62009-08-25 18:29:31 +0000101static CPUReadMemoryFunc * const apb_config_read[] = {
pbrook502a5392006-05-13 16:11:23 +0000102 &apb_config_readl,
103 &apb_config_readl,
104 &apb_config_readl,
105};
106
Anthony Liguoric227f092009-10-01 16:12:16 -0500107static void pci_apb_iowriteb (void *opaque, target_phys_addr_t addr,
pbrook502a5392006-05-13 16:11:23 +0000108 uint32_t val)
109{
Blue Swirlafcea8c2009-09-20 16:05:47 +0000110 cpu_outb(addr & IOPORTS_MASK, val);
pbrook502a5392006-05-13 16:11:23 +0000111}
112
Anthony Liguoric227f092009-10-01 16:12:16 -0500113static void pci_apb_iowritew (void *opaque, target_phys_addr_t addr,
pbrook502a5392006-05-13 16:11:23 +0000114 uint32_t val)
115{
Blue Swirlafcea8c2009-09-20 16:05:47 +0000116 cpu_outw(addr & IOPORTS_MASK, val);
pbrook502a5392006-05-13 16:11:23 +0000117}
118
Anthony Liguoric227f092009-10-01 16:12:16 -0500119static void pci_apb_iowritel (void *opaque, target_phys_addr_t addr,
pbrook502a5392006-05-13 16:11:23 +0000120 uint32_t val)
121{
Blue Swirlafcea8c2009-09-20 16:05:47 +0000122 cpu_outl(addr & IOPORTS_MASK, val);
pbrook502a5392006-05-13 16:11:23 +0000123}
124
Anthony Liguoric227f092009-10-01 16:12:16 -0500125static uint32_t pci_apb_ioreadb (void *opaque, target_phys_addr_t addr)
pbrook502a5392006-05-13 16:11:23 +0000126{
127 uint32_t val;
128
Blue Swirlafcea8c2009-09-20 16:05:47 +0000129 val = cpu_inb(addr & IOPORTS_MASK);
pbrook502a5392006-05-13 16:11:23 +0000130 return val;
131}
132
Anthony Liguoric227f092009-10-01 16:12:16 -0500133static uint32_t pci_apb_ioreadw (void *opaque, target_phys_addr_t addr)
pbrook502a5392006-05-13 16:11:23 +0000134{
135 uint32_t val;
136
Blue Swirlafcea8c2009-09-20 16:05:47 +0000137 val = cpu_inw(addr & IOPORTS_MASK);
pbrook502a5392006-05-13 16:11:23 +0000138 return val;
139}
140
Anthony Liguoric227f092009-10-01 16:12:16 -0500141static uint32_t pci_apb_ioreadl (void *opaque, target_phys_addr_t addr)
pbrook502a5392006-05-13 16:11:23 +0000142{
143 uint32_t val;
144
Blue Swirlafcea8c2009-09-20 16:05:47 +0000145 val = cpu_inl(addr & IOPORTS_MASK);
pbrook502a5392006-05-13 16:11:23 +0000146 return val;
147}
148
Blue Swirld60efc62009-08-25 18:29:31 +0000149static CPUWriteMemoryFunc * const pci_apb_iowrite[] = {
pbrook502a5392006-05-13 16:11:23 +0000150 &pci_apb_iowriteb,
151 &pci_apb_iowritew,
152 &pci_apb_iowritel,
153};
154
Blue Swirld60efc62009-08-25 18:29:31 +0000155static CPUReadMemoryFunc * const pci_apb_ioread[] = {
pbrook502a5392006-05-13 16:11:23 +0000156 &pci_apb_ioreadb,
157 &pci_apb_ioreadw,
158 &pci_apb_ioreadl,
159};
160
pbrook80b3ada2006-09-24 17:01:44 +0000161/* The APB host has an IRQ line for each IRQ line of each slot. */
pbrookd2b59312006-09-24 00:16:34 +0000162static int pci_apb_map_irq(PCIDevice *pci_dev, int irq_num)
pbrook502a5392006-05-13 16:11:23 +0000163{
pbrook80b3ada2006-09-24 17:01:44 +0000164 return ((pci_dev->devfn & 0x18) >> 1) + irq_num;
165}
166
167static int pci_pbm_map_irq(PCIDevice *pci_dev, int irq_num)
168{
169 int bus_offset;
170 if (pci_dev->devfn & 1)
171 bus_offset = 16;
172 else
173 bus_offset = 0;
174 return bus_offset + irq_num;
pbrookd2b59312006-09-24 00:16:34 +0000175}
176
Juan Quintela5d4e84c2009-08-28 15:28:17 +0200177static void pci_apb_set_irq(void *opaque, int irq_num, int level)
pbrookd2b59312006-09-24 00:16:34 +0000178{
Juan Quintela5d4e84c2009-08-28 15:28:17 +0200179 qemu_irq *pic = opaque;
180
pbrook80b3ada2006-09-24 17:01:44 +0000181 /* PCI IRQ map onto the first 32 INO. */
pbrookd537cf62007-04-07 18:14:41 +0000182 qemu_set_irq(pic[irq_num], level);
pbrook502a5392006-05-13 16:11:23 +0000183}
184
Michael S. Tsirkind6318732009-11-11 14:33:54 +0200185static void apb_pci_bridge_init(PCIBus *b)
186{
187 PCIDevice *dev = pci_bridge_get_device(b);
188
189 /*
190 * command register:
191 * According to PCI bridge spec, after reset
192 * bus master bit is off
193 * memory space enable bit is off
194 * According to manual (805-1251.pdf).
195 * the reset value should be zero unless the boot pin is tied high
196 * (which is true) and thus it should be PCI_COMMAND_MEMORY.
197 */
198 pci_set_word(dev->config + PCI_COMMAND,
199 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
200 dev->config[PCI_LATENCY_TIMER] = 0x10;
201 dev->config[PCI_HEADER_TYPE] |= PCI_HEADER_TYPE_MULTI_FUNCTION;
202}
203
Anthony Liguoric227f092009-10-01 16:12:16 -0500204PCIBus *pci_apb_init(target_phys_addr_t special_base,
205 target_phys_addr_t mem_base,
blueswir1c190ea02009-01-10 11:33:32 +0000206 qemu_irq *pic, PCIBus **bus2, PCIBus **bus3)
pbrook502a5392006-05-13 16:11:23 +0000207{
Blue Swirl72f44c82009-07-21 08:36:37 +0000208 DeviceState *dev;
209 SysBusDevice *s;
210 APBState *d;
211
212 /* Ultrasparc PBM main bus */
213 dev = qdev_create(NULL, "pbm");
Markus Armbrustere23a1b32009-10-07 01:15:58 +0200214 qdev_init_nofail(dev);
Blue Swirl72f44c82009-07-21 08:36:37 +0000215 s = sysbus_from_qdev(dev);
216 /* apb_config */
Blue Swirlbae7b512010-01-10 18:25:48 +0000217 sysbus_mmio_map(s, 0, special_base);
Blue Swirl72f44c82009-07-21 08:36:37 +0000218 /* pci_ioport */
219 sysbus_mmio_map(s, 1, special_base + 0x2000000ULL);
220 /* mem_config: XXX size should be 4G-prom */
221 sysbus_mmio_map(s, 2, special_base + 0x1000000ULL);
222 /* mem_data */
223 sysbus_mmio_map(s, 3, mem_base);
224 d = FROM_SYSBUS(APBState, s);
Blue Swirlc5ff6d52009-09-13 08:32:40 +0000225 d->host_state.bus = pci_register_bus(&d->busdev.qdev, "pci",
Blue Swirl72f44c82009-07-21 08:36:37 +0000226 pci_apb_set_irq, pci_pbm_map_irq, pic,
227 0, 32);
Blue Swirlf6b6f1b2009-12-27 20:52:39 +0000228 pci_bus_set_mem_base(d->host_state.bus, mem_base);
229
Blue Swirl72f44c82009-07-21 08:36:37 +0000230 pci_create_simple(d->host_state.bus, 0, "pbm");
231 /* APB secondary busses */
Isaku Yamahata2217dcf2009-10-30 21:20:57 +0900232 *bus2 = pci_bridge_init(d->host_state.bus, PCI_DEVFN(1, 0),
233 PCI_VENDOR_ID_SUN, PCI_DEVICE_ID_SUN_SIMBA,
234 pci_apb_map_irq,
Blue Swirl72f44c82009-07-21 08:36:37 +0000235 "Advanced PCI Bus secondary bridge 1");
Michael S. Tsirkind6318732009-11-11 14:33:54 +0200236 apb_pci_bridge_init(*bus2);
237
Isaku Yamahata2217dcf2009-10-30 21:20:57 +0900238 *bus3 = pci_bridge_init(d->host_state.bus, PCI_DEVFN(1, 1),
239 PCI_VENDOR_ID_SUN, PCI_DEVICE_ID_SUN_SIMBA,
240 pci_apb_map_irq,
Blue Swirl72f44c82009-07-21 08:36:37 +0000241 "Advanced PCI Bus secondary bridge 2");
Michael S. Tsirkind6318732009-11-11 14:33:54 +0200242 apb_pci_bridge_init(*bus3);
Blue Swirl72f44c82009-07-21 08:36:37 +0000243
244 return d->host_state.bus;
245}
246
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200247static int pci_pbm_init_device(SysBusDevice *dev)
Blue Swirl72f44c82009-07-21 08:36:37 +0000248{
249
pbrook502a5392006-05-13 16:11:23 +0000250 APBState *s;
pbrook502a5392006-05-13 16:11:23 +0000251 int pci_mem_config, pci_mem_data, apb_config, pci_ioport;
252
Blue Swirl72f44c82009-07-21 08:36:37 +0000253 s = FROM_SYSBUS(APBState, dev);
254 /* apb_config */
Avi Kivity1eed09c2009-06-14 11:38:51 +0300255 apb_config = cpu_register_io_memory(apb_config_read,
blueswir1f930d072007-10-06 11:28:21 +0000256 apb_config_write, s);
Blue Swirlbae7b512010-01-10 18:25:48 +0000257 sysbus_init_mmio(dev, 0x10000ULL, apb_config);
Blue Swirl72f44c82009-07-21 08:36:37 +0000258 /* pci_ioport */
Avi Kivity1eed09c2009-06-14 11:38:51 +0300259 pci_ioport = cpu_register_io_memory(pci_apb_ioread,
pbrook502a5392006-05-13 16:11:23 +0000260 pci_apb_iowrite, s);
Blue Swirl72f44c82009-07-21 08:36:37 +0000261 sysbus_init_mmio(dev, 0x10000ULL, pci_ioport);
262 /* mem_config */
Isaku Yamahataf08b32f2009-11-12 14:58:34 +0900263 pci_mem_config = pci_host_conf_register_mmio(&s->host_state);
Blue Swirl72f44c82009-07-21 08:36:37 +0000264 sysbus_init_mmio(dev, 0x10ULL, pci_mem_config);
265 /* mem_data */
Isaku Yamahataf08b32f2009-11-12 14:58:34 +0900266 pci_mem_data = pci_host_data_register_mmio(&s->host_state);
Blue Swirl72f44c82009-07-21 08:36:37 +0000267 sysbus_init_mmio(dev, 0x10000000ULL, pci_mem_data);
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200268 return 0;
Blue Swirl72f44c82009-07-21 08:36:37 +0000269}
pbrook502a5392006-05-13 16:11:23 +0000270
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200271static int pbm_pci_host_init(PCIDevice *d)
Blue Swirl72f44c82009-07-21 08:36:37 +0000272{
aliguorideb54392009-01-26 15:37:35 +0000273 pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_SUN);
274 pci_config_set_device_id(d->config, PCI_DEVICE_ID_SUN_SABRE);
pbrook502a5392006-05-13 16:11:23 +0000275 d->config[0x04] = 0x06; // command = bus master, pci mem
276 d->config[0x05] = 0x00;
277 d->config[0x06] = 0xa0; // status = fast back-to-back, 66MHz, no error
278 d->config[0x07] = 0x03; // status = medium devsel
279 d->config[0x08] = 0x00; // revision
280 d->config[0x09] = 0x00; // programming i/f
blueswir1173a5432009-02-01 19:26:20 +0000281 pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
pbrook502a5392006-05-13 16:11:23 +0000282 d->config[0x0D] = 0x10; // latency_timer
Blue Swirl110c50f2009-07-11 08:38:39 +0000283 d->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200284 return 0;
pbrook502a5392006-05-13 16:11:23 +0000285}
Blue Swirl72f44c82009-07-21 08:36:37 +0000286
287static PCIDeviceInfo pbm_pci_host_info = {
288 .qdev.name = "pbm",
289 .qdev.size = sizeof(PCIDevice),
290 .init = pbm_pci_host_init,
291};
292
293static void pbm_register_devices(void)
294{
295 sysbus_register_dev("pbm", sizeof(APBState), pci_pbm_init_device);
296 pci_qdev_register(&pbm_pci_host_info);
297}
298
299device_init(pbm_register_devices)