2 * QEMU Ultrasparc Sabre PCI host (PBM)
4 * Copyright (c) 2006 Fabrice Bellard
5 * Copyright (c) 2012,2013 Artyom Tarasenko
6 * Copyright (c) 2018 Mark Cave-Ayland
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 #include "qemu/osdep.h"
28 #include "hw/sysbus.h"
29 #include "hw/pci/pci.h"
30 #include "hw/pci/pci_host.h"
31 #include "hw/pci/pci_bridge.h"
32 #include "hw/pci/pci_bus.h"
33 #include "hw/pci-bridge/simba.h"
34 #include "hw/pci-host/sabre.h"
35 #include "sysemu/sysemu.h"
36 #include "exec/address-spaces.h"
38 #include "qemu/module.h"
43 * PBM: "UltraSPARC IIi User's Manual",
44 * http://www.sun.com/processors/manuals/805-0087.pdf
47 #define PBM_PCI_IMR_MASK 0x7fffffff
48 #define PBM_PCI_IMR_ENABLED 0x80000000
50 #define POR (1U << 31)
51 #define SOFT_POR (1U << 30)
52 #define SOFT_XIR (1U << 29)
53 #define BTN_POR (1U << 28)
54 #define BTN_XIR (1U << 27)
55 #define RESET_MASK 0xf8000000
56 #define RESET_WCMASK 0x98000000
57 #define RESET_WMASK 0x60000000
59 #define NO_IRQ_REQUEST (MAX_IVEC + 1)
61 static inline void sabre_set_request(SabreState
*s
, unsigned int irq_num
)
63 trace_sabre_set_request(irq_num
);
64 s
->irq_request
= irq_num
;
65 qemu_set_irq(s
->ivec_irqs
[irq_num
], 1);
68 static inline void sabre_check_irqs(SabreState
*s
)
72 /* Previous request is not acknowledged, resubmit */
73 if (s
->irq_request
!= NO_IRQ_REQUEST
) {
74 sabre_set_request(s
, s
->irq_request
);
77 /* no request pending */
78 if (s
->pci_irq_in
== 0ULL) {
81 for (i
= 0; i
< 32; i
++) {
82 if (s
->pci_irq_in
& (1ULL << i
)) {
83 if (s
->pci_irq_map
[i
>> 2] & PBM_PCI_IMR_ENABLED
) {
84 sabre_set_request(s
, i
);
89 for (i
= 32; i
< 64; i
++) {
90 if (s
->pci_irq_in
& (1ULL << i
)) {
91 if (s
->obio_irq_map
[i
- 32] & PBM_PCI_IMR_ENABLED
) {
92 sabre_set_request(s
, i
);
99 static inline void sabre_clear_request(SabreState
*s
, unsigned int irq_num
)
101 trace_sabre_clear_request(irq_num
);
102 qemu_set_irq(s
->ivec_irqs
[irq_num
], 0);
103 s
->irq_request
= NO_IRQ_REQUEST
;
106 static AddressSpace
*sabre_pci_dma_iommu(PCIBus
*bus
, void *opaque
, int devfn
)
108 IOMMUState
*is
= opaque
;
110 return &is
->iommu_as
;
113 static void sabre_config_write(void *opaque
, hwaddr addr
,
114 uint64_t val
, unsigned size
)
116 SabreState
*s
= opaque
;
118 trace_sabre_config_write(addr
, val
);
120 switch (addr
& 0xffff) {
121 case 0x30 ... 0x4f: /* DMA error registers */
122 /* XXX: not implemented yet */
124 case 0xc00 ... 0xc3f: /* PCI interrupt control */
126 unsigned int ino
= (addr
& 0x3f) >> 3;
127 s
->pci_irq_map
[ino
] &= PBM_PCI_IMR_MASK
;
128 s
->pci_irq_map
[ino
] |= val
& ~PBM_PCI_IMR_MASK
;
129 if ((s
->irq_request
== ino
) && !(val
& ~PBM_PCI_IMR_MASK
)) {
130 sabre_clear_request(s
, ino
);
135 case 0x1000 ... 0x107f: /* OBIO interrupt control */
137 unsigned int ino
= ((addr
& 0xff) >> 3);
138 s
->obio_irq_map
[ino
] &= PBM_PCI_IMR_MASK
;
139 s
->obio_irq_map
[ino
] |= val
& ~PBM_PCI_IMR_MASK
;
140 if ((s
->irq_request
== (ino
| 0x20))
141 && !(val
& ~PBM_PCI_IMR_MASK
)) {
142 sabre_clear_request(s
, ino
| 0x20);
147 case 0x1400 ... 0x14ff: /* PCI interrupt clear */
149 unsigned int ino
= (addr
& 0xff) >> 5;
150 if ((s
->irq_request
/ 4) == ino
) {
151 sabre_clear_request(s
, s
->irq_request
);
156 case 0x1800 ... 0x1860: /* OBIO interrupt clear */
158 unsigned int ino
= ((addr
& 0xff) >> 3) | 0x20;
159 if (s
->irq_request
== ino
) {
160 sabre_clear_request(s
, ino
);
165 case 0x2000 ... 0x202f: /* PCI control */
166 s
->pci_control
[(addr
& 0x3f) >> 2] = val
;
168 case 0xf020 ... 0xf027: /* Reset control */
171 s
->reset_control
&= ~(val
& RESET_WCMASK
);
172 s
->reset_control
|= val
& RESET_WMASK
;
173 if (val
& SOFT_POR
) {
175 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET
);
176 } else if (val
& SOFT_XIR
) {
177 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET
);
181 case 0x5000 ... 0x51cf: /* PIO/DMA diagnostics */
182 case 0xa400 ... 0xa67f: /* IOMMU diagnostics */
183 case 0xa800 ... 0xa80f: /* Interrupt diagnostics */
184 case 0xf000 ... 0xf01f: /* FFB config, memory control */
191 static uint64_t sabre_config_read(void *opaque
,
192 hwaddr addr
, unsigned size
)
194 SabreState
*s
= opaque
;
197 switch (addr
& 0xffff) {
198 case 0x30 ... 0x4f: /* DMA error registers */
200 /* XXX: not implemented yet */
202 case 0xc00 ... 0xc3f: /* PCI interrupt control */
204 val
= s
->pci_irq_map
[(addr
& 0x3f) >> 3];
209 case 0x1000 ... 0x107f: /* OBIO interrupt control */
211 val
= s
->obio_irq_map
[(addr
& 0xff) >> 3];
216 case 0x1080 ... 0x108f: /* PCI bus error */
218 val
= s
->pci_err_irq_map
[(addr
& 0xf) >> 3];
223 case 0x2000 ... 0x202f: /* PCI control */
224 val
= s
->pci_control
[(addr
& 0x3f) >> 2];
226 case 0xf020 ... 0xf027: /* Reset control */
228 val
= s
->reset_control
;
233 case 0x5000 ... 0x51cf: /* PIO/DMA diagnostics */
234 case 0xa400 ... 0xa67f: /* IOMMU diagnostics */
235 case 0xa800 ... 0xa80f: /* Interrupt diagnostics */
236 case 0xf000 ... 0xf01f: /* FFB config, memory control */
242 trace_sabre_config_read(addr
, val
);
247 static const MemoryRegionOps sabre_config_ops
= {
248 .read
= sabre_config_read
,
249 .write
= sabre_config_write
,
250 .endianness
= DEVICE_BIG_ENDIAN
,
253 static void sabre_pci_config_write(void *opaque
, hwaddr addr
,
254 uint64_t val
, unsigned size
)
256 SabreState
*s
= opaque
;
257 PCIHostState
*phb
= PCI_HOST_BRIDGE(s
);
259 trace_sabre_pci_config_write(addr
, val
);
260 pci_data_write(phb
->bus
, addr
, val
, size
);
263 static uint64_t sabre_pci_config_read(void *opaque
, hwaddr addr
,
267 SabreState
*s
= opaque
;
268 PCIHostState
*phb
= PCI_HOST_BRIDGE(s
);
270 ret
= pci_data_read(phb
->bus
, addr
, size
);
271 trace_sabre_pci_config_read(addr
, ret
);
275 /* The sabre host has an IRQ line for each IRQ line of each slot. */
276 static int pci_sabre_map_irq(PCIDevice
*pci_dev
, int irq_num
)
278 /* Return the irq as swizzled by the PBM */
282 static int pci_simbaA_map_irq(PCIDevice
*pci_dev
, int irq_num
)
284 /* The on-board devices have fixed (legacy) OBIO intnos */
285 switch (PCI_SLOT(pci_dev
->devfn
)) {
293 /* Normal intno, fall through */
297 return ((PCI_SLOT(pci_dev
->devfn
) << 2) + irq_num
) & 0x1f;
300 static int pci_simbaB_map_irq(PCIDevice
*pci_dev
, int irq_num
)
302 return (0x10 + (PCI_SLOT(pci_dev
->devfn
) << 2) + irq_num
) & 0x1f;
305 static void pci_sabre_set_irq(void *opaque
, int irq_num
, int level
)
307 SabreState
*s
= opaque
;
309 trace_sabre_pci_set_irq(irq_num
, level
);
311 /* PCI IRQ map onto the first 32 INO. */
314 s
->pci_irq_in
|= 1ULL << irq_num
;
315 if (s
->pci_irq_map
[irq_num
>> 2] & PBM_PCI_IMR_ENABLED
) {
316 sabre_set_request(s
, irq_num
);
319 s
->pci_irq_in
&= ~(1ULL << irq_num
);
322 /* OBIO IRQ map onto the next 32 INO. */
324 trace_sabre_pci_set_obio_irq(irq_num
, level
);
325 s
->pci_irq_in
|= 1ULL << irq_num
;
326 if ((s
->irq_request
== NO_IRQ_REQUEST
)
327 && (s
->obio_irq_map
[irq_num
- 32] & PBM_PCI_IMR_ENABLED
)) {
328 sabre_set_request(s
, irq_num
);
331 s
->pci_irq_in
&= ~(1ULL << irq_num
);
336 static void sabre_reset(DeviceState
*d
)
338 SabreState
*s
= SABRE_DEVICE(d
);
343 for (i
= 0; i
< 8; i
++) {
344 s
->pci_irq_map
[i
] &= PBM_PCI_IMR_MASK
;
346 for (i
= 0; i
< 32; i
++) {
347 s
->obio_irq_map
[i
] &= PBM_PCI_IMR_MASK
;
350 s
->irq_request
= NO_IRQ_REQUEST
;
351 s
->pci_irq_in
= 0ULL;
353 if (s
->nr_resets
++ == 0) {
355 s
->reset_control
= POR
;
358 /* As this is the busA PCI bridge which contains the on-board devices
359 * attached to the ebus, ensure that we initially allow IO transactions
360 * so that we get the early serial console until OpenBIOS can properly
361 * configure the PCI bridge itself */
362 pci_dev
= PCI_DEVICE(s
->bridgeA
);
363 cmd
= pci_get_word(pci_dev
->config
+ PCI_COMMAND
);
364 pci_set_word(pci_dev
->config
+ PCI_COMMAND
, cmd
| PCI_COMMAND_IO
);
365 pci_bridge_update_mappings(PCI_BRIDGE(pci_dev
));
368 static const MemoryRegionOps pci_config_ops
= {
369 .read
= sabre_pci_config_read
,
370 .write
= sabre_pci_config_write
,
371 .endianness
= DEVICE_LITTLE_ENDIAN
,
374 static void sabre_realize(DeviceState
*dev
, Error
**errp
)
376 SabreState
*s
= SABRE_DEVICE(dev
);
377 PCIHostState
*phb
= PCI_HOST_BRIDGE(dev
);
378 SysBusDevice
*sbd
= SYS_BUS_DEVICE(s
);
382 sysbus_mmio_map(sbd
, 0, s
->special_base
);
383 /* PCI configuration space */
384 sysbus_mmio_map(sbd
, 1, s
->special_base
+ 0x1000000ULL
);
386 sysbus_mmio_map(sbd
, 2, s
->special_base
+ 0x2000000ULL
);
388 memory_region_init(&s
->pci_mmio
, OBJECT(s
), "pci-mmio", 0x100000000ULL
);
389 memory_region_add_subregion(get_system_memory(), s
->mem_base
,
392 phb
->bus
= pci_register_root_bus(dev
, "pci",
393 pci_sabre_set_irq
, pci_sabre_map_irq
, s
,
396 0, 32, TYPE_PCI_BUS
);
398 pci_create_simple(phb
->bus
, 0, TYPE_SABRE_PCI_DEVICE
);
401 memory_region_add_subregion_overlap(&s
->sabre_config
, 0x200,
402 sysbus_mmio_get_region(SYS_BUS_DEVICE(s
->iommu
), 0), 1);
403 pci_setup_iommu(phb
->bus
, sabre_pci_dma_iommu
, s
->iommu
);
405 /* APB secondary busses */
406 pci_dev
= pci_create_multifunction(phb
->bus
, PCI_DEVFN(1, 0), true,
407 TYPE_SIMBA_PCI_BRIDGE
);
408 s
->bridgeB
= PCI_BRIDGE(pci_dev
);
409 pci_bridge_map_irq(s
->bridgeB
, "pciB", pci_simbaB_map_irq
);
410 qdev_init_nofail(&pci_dev
->qdev
);
412 pci_dev
= pci_create_multifunction(phb
->bus
, PCI_DEVFN(1, 1), true,
413 TYPE_SIMBA_PCI_BRIDGE
);
414 s
->bridgeA
= PCI_BRIDGE(pci_dev
);
415 pci_bridge_map_irq(s
->bridgeA
, "pciA", pci_simbaA_map_irq
);
416 qdev_init_nofail(&pci_dev
->qdev
);
419 static void sabre_init(Object
*obj
)
421 SabreState
*s
= SABRE_DEVICE(obj
);
422 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
425 for (i
= 0; i
< 8; i
++) {
426 s
->pci_irq_map
[i
] = (0x1f << 6) | (i
<< 2);
428 for (i
= 0; i
< 2; i
++) {
429 s
->pci_err_irq_map
[i
] = (0x1f << 6) | 0x30;
431 for (i
= 0; i
< 32; i
++) {
432 s
->obio_irq_map
[i
] = ((0x1f << 6) | 0x20) + i
;
434 qdev_init_gpio_in_named(DEVICE(s
), pci_sabre_set_irq
, "pbm-irq", MAX_IVEC
);
435 qdev_init_gpio_out_named(DEVICE(s
), s
->ivec_irqs
, "ivec-irq", MAX_IVEC
);
436 s
->irq_request
= NO_IRQ_REQUEST
;
437 s
->pci_irq_in
= 0ULL;
440 object_property_add_link(obj
, "iommu", TYPE_SUN4U_IOMMU
,
441 (Object
**) &s
->iommu
,
442 qdev_prop_allow_set_link_before_realize
,
446 memory_region_init_io(&s
->sabre_config
, OBJECT(s
), &sabre_config_ops
, s
,
447 "sabre-config", 0x10000);
449 sysbus_init_mmio(sbd
, &s
->sabre_config
);
451 memory_region_init_io(&s
->pci_config
, OBJECT(s
), &pci_config_ops
, s
,
452 "sabre-pci-config", 0x1000000);
454 sysbus_init_mmio(sbd
, &s
->pci_config
);
457 memory_region_init(&s
->pci_ioport
, OBJECT(s
), "sabre-pci-ioport",
461 sysbus_init_mmio(sbd
, &s
->pci_ioport
);
464 static void sabre_pci_realize(PCIDevice
*d
, Error
**errp
)
466 pci_set_word(d
->config
+ PCI_COMMAND
,
467 PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
);
468 pci_set_word(d
->config
+ PCI_STATUS
,
469 PCI_STATUS_FAST_BACK
| PCI_STATUS_66MHZ
|
470 PCI_STATUS_DEVSEL_MEDIUM
);
473 static void sabre_pci_class_init(ObjectClass
*klass
, void *data
)
475 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
476 DeviceClass
*dc
= DEVICE_CLASS(klass
);
478 k
->realize
= sabre_pci_realize
;
479 k
->vendor_id
= PCI_VENDOR_ID_SUN
;
480 k
->device_id
= PCI_DEVICE_ID_SUN_SABRE
;
481 k
->class_id
= PCI_CLASS_BRIDGE_HOST
;
483 * PCI-facing part of the host bridge, not usable without the
484 * host-facing part, which can't be device_add'ed, yet.
486 dc
->user_creatable
= false;
489 static const TypeInfo sabre_pci_info
= {
490 .name
= TYPE_SABRE_PCI_DEVICE
,
491 .parent
= TYPE_PCI_DEVICE
,
492 .instance_size
= sizeof(SabrePCIState
),
493 .class_init
= sabre_pci_class_init
,
494 .interfaces
= (InterfaceInfo
[]) {
495 { INTERFACE_CONVENTIONAL_PCI_DEVICE
},
500 static char *sabre_ofw_unit_address(const SysBusDevice
*dev
)
502 SabreState
*s
= SABRE_DEVICE(dev
);
504 return g_strdup_printf("%x,%x",
505 (uint32_t)((s
->special_base
>> 32) & 0xffffffff),
506 (uint32_t)(s
->special_base
& 0xffffffff));
509 static Property sabre_properties
[] = {
510 DEFINE_PROP_UINT64("special-base", SabreState
, special_base
, 0),
511 DEFINE_PROP_UINT64("mem-base", SabreState
, mem_base
, 0),
512 DEFINE_PROP_END_OF_LIST(),
515 static void sabre_class_init(ObjectClass
*klass
, void *data
)
517 DeviceClass
*dc
= DEVICE_CLASS(klass
);
518 SysBusDeviceClass
*sbc
= SYS_BUS_DEVICE_CLASS(klass
);
520 dc
->realize
= sabre_realize
;
521 dc
->reset
= sabre_reset
;
522 dc
->props
= sabre_properties
;
523 set_bit(DEVICE_CATEGORY_BRIDGE
, dc
->categories
);
525 sbc
->explicit_ofw_unit_address
= sabre_ofw_unit_address
;
528 static const TypeInfo sabre_info
= {
530 .parent
= TYPE_PCI_HOST_BRIDGE
,
531 .instance_size
= sizeof(SabreState
),
532 .instance_init
= sabre_init
,
533 .class_init
= sabre_class_init
,
536 static void sabre_register_types(void)
538 type_register_static(&sabre_info
);
539 type_register_static(&sabre_pci_info
);
542 type_init(sabre_register_types
)