2 * QEMU Ultrasparc APB PCI host
4 * Copyright (c) 2006 Fabrice Bellard
5 * Copyright (c) 2012,2013 Artyom Tarasenko
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 /* XXX This file and most of its contents are somewhat misnamed. The
27 Ultrasparc PCI host is called the PCI Bus Module (PBM). The APB is
28 the secondary PCI bridge. */
30 #include "qemu/osdep.h"
31 #include "hw/sysbus.h"
32 #include "hw/pci/pci.h"
33 #include "hw/pci/pci_host.h"
34 #include "hw/pci/pci_bridge.h"
35 #include "hw/pci/pci_bus.h"
36 #include "hw/pci-host/apb.h"
37 #include "sysemu/sysemu.h"
38 #include "exec/address-spaces.h"
45 #define APB_DPRINTF(fmt, ...) \
46 do { printf("APB: " fmt , ## __VA_ARGS__); } while (0)
48 #define APB_DPRINTF(fmt, ...)
55 #define IOMMU_DPRINTF(fmt, ...) \
56 do { printf("IOMMU: " fmt , ## __VA_ARGS__); } while (0)
58 #define IOMMU_DPRINTF(fmt, ...)
63 * PBM: "UltraSPARC IIi User's Manual",
64 * http://www.sun.com/processors/manuals/805-0087.pdf
66 * APB: "Advanced PCI Bridge (APB) User's Manual",
67 * http://www.sun.com/processors/manuals/805-1251.pdf
70 #define PBM_PCI_IMR_MASK 0x7fffffff
71 #define PBM_PCI_IMR_ENABLED 0x80000000
73 #define POR (1U << 31)
74 #define SOFT_POR (1U << 30)
75 #define SOFT_XIR (1U << 29)
76 #define BTN_POR (1U << 28)
77 #define BTN_XIR (1U << 27)
78 #define RESET_MASK 0xf8000000
79 #define RESET_WCMASK 0x98000000
80 #define RESET_WMASK 0x60000000
83 #define NO_IRQ_REQUEST (MAX_IVEC + 1)
85 #define IOMMU_PAGE_SIZE_8K (1ULL << 13)
86 #define IOMMU_PAGE_MASK_8K (~(IOMMU_PAGE_SIZE_8K - 1))
87 #define IOMMU_PAGE_SIZE_64K (1ULL << 16)
88 #define IOMMU_PAGE_MASK_64K (~(IOMMU_PAGE_SIZE_64K - 1))
92 #define IOMMU_CTRL 0x0
93 #define IOMMU_CTRL_TBW_SIZE (1ULL << 2)
94 #define IOMMU_CTRL_MMU_EN (1ULL)
96 #define IOMMU_CTRL_TSB_SHIFT 16
98 #define IOMMU_BASE 0x8
99 #define IOMMU_FLUSH 0x10
101 #define IOMMU_TTE_DATA_V (1ULL << 63)
102 #define IOMMU_TTE_DATA_SIZE (1ULL << 61)
103 #define IOMMU_TTE_DATA_W (1ULL << 1)
105 #define IOMMU_TTE_PHYS_MASK_8K 0x1ffffffe000ULL
106 #define IOMMU_TTE_PHYS_MASK_64K 0x1ffffff8000ULL
108 #define IOMMU_TSB_8K_OFFSET_MASK_8M 0x00000000007fe000ULL
109 #define IOMMU_TSB_8K_OFFSET_MASK_16M 0x0000000000ffe000ULL
110 #define IOMMU_TSB_8K_OFFSET_MASK_32M 0x0000000001ffe000ULL
111 #define IOMMU_TSB_8K_OFFSET_MASK_64M 0x0000000003ffe000ULL
112 #define IOMMU_TSB_8K_OFFSET_MASK_128M 0x0000000007ffe000ULL
113 #define IOMMU_TSB_8K_OFFSET_MASK_256M 0x000000000fffe000ULL
114 #define IOMMU_TSB_8K_OFFSET_MASK_512M 0x000000001fffe000ULL
115 #define IOMMU_TSB_8K_OFFSET_MASK_1G 0x000000003fffe000ULL
117 #define IOMMU_TSB_64K_OFFSET_MASK_64M 0x0000000003ff0000ULL
118 #define IOMMU_TSB_64K_OFFSET_MASK_128M 0x0000000007ff0000ULL
119 #define IOMMU_TSB_64K_OFFSET_MASK_256M 0x000000000fff0000ULL
120 #define IOMMU_TSB_64K_OFFSET_MASK_512M 0x000000001fff0000ULL
121 #define IOMMU_TSB_64K_OFFSET_MASK_1G 0x000000003fff0000ULL
122 #define IOMMU_TSB_64K_OFFSET_MASK_2G 0x000000007fff0000ULL
124 typedef struct IOMMUState
{
125 AddressSpace iommu_as
;
128 uint64_t regs
[IOMMU_NREGS
];
131 #define TYPE_APB "pbm"
133 #define APB_DEVICE(obj) \
134 OBJECT_CHECK(APBState, (obj), TYPE_APB)
136 typedef struct APBState
{
137 PCIHostState parent_obj
;
139 MemoryRegion apb_config
;
140 MemoryRegion pci_config
;
141 MemoryRegion pci_mmio
;
142 MemoryRegion pci_ioport
;
145 uint32_t pci_control
[16];
146 uint32_t pci_irq_map
[8];
147 uint32_t pci_err_irq_map
[4];
148 uint32_t obio_irq_map
[32];
151 unsigned int irq_request
;
152 uint32_t reset_control
;
153 unsigned int nr_resets
;
156 static inline void pbm_set_request(APBState
*s
, unsigned int irq_num
)
158 APB_DPRINTF("%s: request irq %d\n", __func__
, irq_num
);
160 s
->irq_request
= irq_num
;
161 qemu_set_irq(s
->ivec_irqs
[irq_num
], 1);
164 static inline void pbm_check_irqs(APBState
*s
)
169 /* Previous request is not acknowledged, resubmit */
170 if (s
->irq_request
!= NO_IRQ_REQUEST
) {
171 pbm_set_request(s
, s
->irq_request
);
174 /* no request pending */
175 if (s
->pci_irq_in
== 0ULL) {
178 for (i
= 0; i
< 32; i
++) {
179 if (s
->pci_irq_in
& (1ULL << i
)) {
180 if (s
->pci_irq_map
[i
>> 2] & PBM_PCI_IMR_ENABLED
) {
181 pbm_set_request(s
, i
);
186 for (i
= 32; i
< 64; i
++) {
187 if (s
->pci_irq_in
& (1ULL << i
)) {
188 if (s
->obio_irq_map
[i
- 32] & PBM_PCI_IMR_ENABLED
) {
189 pbm_set_request(s
, i
);
196 static inline void pbm_clear_request(APBState
*s
, unsigned int irq_num
)
198 APB_DPRINTF("%s: clear request irq %d\n", __func__
, irq_num
);
199 qemu_set_irq(s
->ivec_irqs
[irq_num
], 0);
200 s
->irq_request
= NO_IRQ_REQUEST
;
203 static AddressSpace
*pbm_pci_dma_iommu(PCIBus
*bus
, void *opaque
, int devfn
)
205 IOMMUState
*is
= opaque
;
207 return &is
->iommu_as
;
210 /* Called from RCU critical section */
211 static IOMMUTLBEntry
pbm_translate_iommu(MemoryRegion
*iommu
, hwaddr addr
,
214 IOMMUState
*is
= container_of(iommu
, IOMMUState
, iommu
);
215 hwaddr baseaddr
, offset
;
218 IOMMUTLBEntry ret
= {
219 .target_as
= &address_space_memory
,
221 .translated_addr
= 0,
222 .addr_mask
= ~(hwaddr
)0,
226 if (!(is
->regs
[IOMMU_CTRL
>> 3] & IOMMU_CTRL_MMU_EN
)) {
227 /* IOMMU disabled, passthrough using standard 8K page */
228 ret
.iova
= addr
& IOMMU_PAGE_MASK_8K
;
229 ret
.translated_addr
= addr
;
230 ret
.addr_mask
= IOMMU_PAGE_MASK_8K
;
236 baseaddr
= is
->regs
[IOMMU_BASE
>> 3];
237 tsbsize
= (is
->regs
[IOMMU_CTRL
>> 3] >> IOMMU_CTRL_TSB_SHIFT
) & 0x7;
239 if (is
->regs
[IOMMU_CTRL
>> 3] & IOMMU_CTRL_TBW_SIZE
) {
243 offset
= (addr
& IOMMU_TSB_64K_OFFSET_MASK_64M
) >> 13;
246 offset
= (addr
& IOMMU_TSB_64K_OFFSET_MASK_128M
) >> 13;
249 offset
= (addr
& IOMMU_TSB_64K_OFFSET_MASK_256M
) >> 13;
252 offset
= (addr
& IOMMU_TSB_64K_OFFSET_MASK_512M
) >> 13;
255 offset
= (addr
& IOMMU_TSB_64K_OFFSET_MASK_1G
) >> 13;
258 offset
= (addr
& IOMMU_TSB_64K_OFFSET_MASK_2G
) >> 13;
261 /* Not implemented, error */
268 offset
= (addr
& IOMMU_TSB_8K_OFFSET_MASK_8M
) >> 10;
271 offset
= (addr
& IOMMU_TSB_8K_OFFSET_MASK_16M
) >> 10;
274 offset
= (addr
& IOMMU_TSB_8K_OFFSET_MASK_32M
) >> 10;
277 offset
= (addr
& IOMMU_TSB_8K_OFFSET_MASK_64M
) >> 10;
280 offset
= (addr
& IOMMU_TSB_8K_OFFSET_MASK_128M
) >> 10;
283 offset
= (addr
& IOMMU_TSB_8K_OFFSET_MASK_256M
) >> 10;
286 offset
= (addr
& IOMMU_TSB_8K_OFFSET_MASK_512M
) >> 10;
289 offset
= (addr
& IOMMU_TSB_8K_OFFSET_MASK_1G
) >> 10;
294 tte
= address_space_ldq_be(&address_space_memory
, baseaddr
+ offset
,
295 MEMTXATTRS_UNSPECIFIED
, NULL
);
297 if (!(tte
& IOMMU_TTE_DATA_V
)) {
298 /* Invalid mapping */
302 if (tte
& IOMMU_TTE_DATA_W
) {
310 if (tte
& IOMMU_TTE_DATA_SIZE
) {
312 ret
.iova
= addr
& IOMMU_PAGE_MASK_64K
;
313 ret
.translated_addr
= tte
& IOMMU_TTE_PHYS_MASK_64K
;
314 ret
.addr_mask
= (IOMMU_PAGE_SIZE_64K
- 1);
317 ret
.iova
= addr
& IOMMU_PAGE_MASK_8K
;
318 ret
.translated_addr
= tte
& IOMMU_TTE_PHYS_MASK_8K
;
319 ret
.addr_mask
= (IOMMU_PAGE_SIZE_8K
- 1);
325 static MemoryRegionIOMMUOps pbm_iommu_ops
= {
326 .translate
= pbm_translate_iommu
,
329 static void iommu_config_write(void *opaque
, hwaddr addr
,
330 uint64_t val
, unsigned size
)
332 IOMMUState
*is
= opaque
;
334 IOMMU_DPRINTF("IOMMU config write: 0x%" HWADDR_PRIx
" val: %" PRIx64
335 " size: %d\n", addr
, val
, size
);
340 is
->regs
[IOMMU_CTRL
>> 3] &= 0xffffffffULL
;
341 is
->regs
[IOMMU_CTRL
>> 3] |= val
<< 32;
343 is
->regs
[IOMMU_CTRL
>> 3] = val
;
346 case IOMMU_CTRL
+ 0x4:
347 is
->regs
[IOMMU_CTRL
>> 3] &= 0xffffffff00000000ULL
;
348 is
->regs
[IOMMU_CTRL
>> 3] |= val
& 0xffffffffULL
;
352 is
->regs
[IOMMU_BASE
>> 3] &= 0xffffffffULL
;
353 is
->regs
[IOMMU_BASE
>> 3] |= val
<< 32;
355 is
->regs
[IOMMU_BASE
>> 3] = val
;
358 case IOMMU_BASE
+ 0x4:
359 is
->regs
[IOMMU_BASE
>> 3] &= 0xffffffff00000000ULL
;
360 is
->regs
[IOMMU_BASE
>> 3] |= val
& 0xffffffffULL
;
363 case IOMMU_FLUSH
+ 0x4:
366 qemu_log_mask(LOG_UNIMP
,
367 "apb iommu: Unimplemented register write "
368 "reg 0x%" HWADDR_PRIx
" size 0x%x value 0x%" PRIx64
"\n",
374 static uint64_t iommu_config_read(void *opaque
, hwaddr addr
, unsigned size
)
376 IOMMUState
*is
= opaque
;
382 val
= is
->regs
[IOMMU_CTRL
>> 3] >> 32;
384 val
= is
->regs
[IOMMU_CTRL
>> 3];
387 case IOMMU_CTRL
+ 0x4:
388 val
= is
->regs
[IOMMU_CTRL
>> 3] & 0xffffffffULL
;
392 val
= is
->regs
[IOMMU_BASE
>> 3] >> 32;
394 val
= is
->regs
[IOMMU_BASE
>> 3];
397 case IOMMU_BASE
+ 0x4:
398 val
= is
->regs
[IOMMU_BASE
>> 3] & 0xffffffffULL
;
401 case IOMMU_FLUSH
+ 0x4:
405 qemu_log_mask(LOG_UNIMP
,
406 "apb iommu: Unimplemented register read "
407 "reg 0x%" HWADDR_PRIx
" size 0x%x\n",
413 IOMMU_DPRINTF("IOMMU config read: 0x%" HWADDR_PRIx
" val: %" PRIx64
414 " size: %d\n", addr
, val
, size
);
419 static void apb_config_writel (void *opaque
, hwaddr addr
,
420 uint64_t val
, unsigned size
)
422 APBState
*s
= opaque
;
423 IOMMUState
*is
= &s
->iommu
;
425 APB_DPRINTF("%s: addr " TARGET_FMT_plx
" val %" PRIx64
"\n", __func__
, addr
, val
);
427 switch (addr
& 0xffff) {
428 case 0x30 ... 0x4f: /* DMA error registers */
429 /* XXX: not implemented yet */
431 case 0x200 ... 0x217: /* IOMMU */
432 iommu_config_write(is
, (addr
& 0x1f), val
, size
);
434 case 0xc00 ... 0xc3f: /* PCI interrupt control */
436 unsigned int ino
= (addr
& 0x3f) >> 3;
437 s
->pci_irq_map
[ino
] &= PBM_PCI_IMR_MASK
;
438 s
->pci_irq_map
[ino
] |= val
& ~PBM_PCI_IMR_MASK
;
439 if ((s
->irq_request
== ino
) && !(val
& ~PBM_PCI_IMR_MASK
)) {
440 pbm_clear_request(s
, ino
);
445 case 0x1000 ... 0x107f: /* OBIO interrupt control */
447 unsigned int ino
= ((addr
& 0xff) >> 3);
448 s
->obio_irq_map
[ino
] &= PBM_PCI_IMR_MASK
;
449 s
->obio_irq_map
[ino
] |= val
& ~PBM_PCI_IMR_MASK
;
450 if ((s
->irq_request
== (ino
| 0x20))
451 && !(val
& ~PBM_PCI_IMR_MASK
)) {
452 pbm_clear_request(s
, ino
| 0x20);
457 case 0x1400 ... 0x14ff: /* PCI interrupt clear */
459 unsigned int ino
= (addr
& 0xff) >> 5;
460 if ((s
->irq_request
/ 4) == ino
) {
461 pbm_clear_request(s
, s
->irq_request
);
466 case 0x1800 ... 0x1860: /* OBIO interrupt clear */
468 unsigned int ino
= ((addr
& 0xff) >> 3) | 0x20;
469 if (s
->irq_request
== ino
) {
470 pbm_clear_request(s
, ino
);
475 case 0x2000 ... 0x202f: /* PCI control */
476 s
->pci_control
[(addr
& 0x3f) >> 2] = val
;
478 case 0xf020 ... 0xf027: /* Reset control */
481 s
->reset_control
&= ~(val
& RESET_WCMASK
);
482 s
->reset_control
|= val
& RESET_WMASK
;
483 if (val
& SOFT_POR
) {
485 qemu_system_reset_request();
486 } else if (val
& SOFT_XIR
) {
487 qemu_system_reset_request();
491 case 0x5000 ... 0x51cf: /* PIO/DMA diagnostics */
492 case 0xa400 ... 0xa67f: /* IOMMU diagnostics */
493 case 0xa800 ... 0xa80f: /* Interrupt diagnostics */
494 case 0xf000 ... 0xf01f: /* FFB config, memory control */
501 static uint64_t apb_config_readl (void *opaque
,
502 hwaddr addr
, unsigned size
)
504 APBState
*s
= opaque
;
505 IOMMUState
*is
= &s
->iommu
;
508 switch (addr
& 0xffff) {
509 case 0x30 ... 0x4f: /* DMA error registers */
511 /* XXX: not implemented yet */
513 case 0x200 ... 0x217: /* IOMMU */
514 val
= iommu_config_read(is
, (addr
& 0x1f), size
);
516 case 0xc00 ... 0xc3f: /* PCI interrupt control */
518 val
= s
->pci_irq_map
[(addr
& 0x3f) >> 3];
523 case 0x1000 ... 0x107f: /* OBIO interrupt control */
525 val
= s
->obio_irq_map
[(addr
& 0xff) >> 3];
530 case 0x1080 ... 0x108f: /* PCI bus error */
532 val
= s
->pci_err_irq_map
[(addr
& 0xf) >> 3];
537 case 0x2000 ... 0x202f: /* PCI control */
538 val
= s
->pci_control
[(addr
& 0x3f) >> 2];
540 case 0xf020 ... 0xf027: /* Reset control */
542 val
= s
->reset_control
;
547 case 0x5000 ... 0x51cf: /* PIO/DMA diagnostics */
548 case 0xa400 ... 0xa67f: /* IOMMU diagnostics */
549 case 0xa800 ... 0xa80f: /* Interrupt diagnostics */
550 case 0xf000 ... 0xf01f: /* FFB config, memory control */
556 APB_DPRINTF("%s: addr " TARGET_FMT_plx
" -> %x\n", __func__
, addr
, val
);
561 static const MemoryRegionOps apb_config_ops
= {
562 .read
= apb_config_readl
,
563 .write
= apb_config_writel
,
564 .endianness
= DEVICE_NATIVE_ENDIAN
,
567 static void apb_pci_config_write(void *opaque
, hwaddr addr
,
568 uint64_t val
, unsigned size
)
570 APBState
*s
= opaque
;
571 PCIHostState
*phb
= PCI_HOST_BRIDGE(s
);
573 val
= qemu_bswap_len(val
, size
);
574 APB_DPRINTF("%s: addr " TARGET_FMT_plx
" val %" PRIx64
"\n", __func__
, addr
, val
);
575 pci_data_write(phb
->bus
, addr
, val
, size
);
578 static uint64_t apb_pci_config_read(void *opaque
, hwaddr addr
,
582 APBState
*s
= opaque
;
583 PCIHostState
*phb
= PCI_HOST_BRIDGE(s
);
585 ret
= pci_data_read(phb
->bus
, addr
, size
);
586 ret
= qemu_bswap_len(ret
, size
);
587 APB_DPRINTF("%s: addr " TARGET_FMT_plx
" -> %x\n", __func__
, addr
, ret
);
591 /* The APB host has an IRQ line for each IRQ line of each slot. */
592 static int pci_apb_map_irq(PCIDevice
*pci_dev
, int irq_num
)
594 return ((pci_dev
->devfn
& 0x18) >> 1) + irq_num
;
597 static int pci_pbm_map_irq(PCIDevice
*pci_dev
, int irq_num
)
600 if (pci_dev
->devfn
& 1)
604 return (bus_offset
+ (PCI_SLOT(pci_dev
->devfn
) << 2) + irq_num
) & 0x1f;
607 static void pci_apb_set_irq(void *opaque
, int irq_num
, int level
)
609 APBState
*s
= opaque
;
611 APB_DPRINTF("%s: set irq_in %d level %d\n", __func__
, irq_num
, level
);
612 /* PCI IRQ map onto the first 32 INO. */
615 s
->pci_irq_in
|= 1ULL << irq_num
;
616 if (s
->pci_irq_map
[irq_num
>> 2] & PBM_PCI_IMR_ENABLED
) {
617 pbm_set_request(s
, irq_num
);
620 s
->pci_irq_in
&= ~(1ULL << irq_num
);
623 /* OBIO IRQ map onto the next 32 INO. */
625 APB_DPRINTF("%s: set irq %d level %d\n", __func__
, irq_num
, level
);
626 s
->pci_irq_in
|= 1ULL << irq_num
;
627 if ((s
->irq_request
== NO_IRQ_REQUEST
)
628 && (s
->obio_irq_map
[irq_num
- 32] & PBM_PCI_IMR_ENABLED
)) {
629 pbm_set_request(s
, irq_num
);
632 s
->pci_irq_in
&= ~(1ULL << irq_num
);
637 static int apb_pci_bridge_initfn(PCIDevice
*dev
)
639 pci_bridge_initfn(dev
, TYPE_PCI_BUS
);
643 * According to PCI bridge spec, after reset
644 * bus master bit is off
645 * memory space enable bit is off
646 * According to manual (805-1251.pdf).
647 * the reset value should be zero unless the boot pin is tied high
648 * (which is true) and thus it should be PCI_COMMAND_MEMORY.
650 pci_set_word(dev
->config
+ PCI_COMMAND
,
652 pci_set_word(dev
->config
+ PCI_STATUS
,
653 PCI_STATUS_FAST_BACK
| PCI_STATUS_66MHZ
|
654 PCI_STATUS_DEVSEL_MEDIUM
);
658 PCIBus
*pci_apb_init(hwaddr special_base
,
660 qemu_irq
*ivec_irqs
, PCIBus
**bus2
, PCIBus
**bus3
,
671 /* Ultrasparc PBM main bus */
672 dev
= qdev_create(NULL
, TYPE_APB
);
673 qdev_init_nofail(dev
);
674 s
= SYS_BUS_DEVICE(dev
);
676 sysbus_mmio_map(s
, 0, special_base
);
677 /* PCI configuration space */
678 sysbus_mmio_map(s
, 1, special_base
+ 0x1000000ULL
);
680 sysbus_mmio_map(s
, 2, special_base
+ 0x2000000ULL
);
683 memory_region_init(&d
->pci_mmio
, OBJECT(s
), "pci-mmio", 0x100000000ULL
);
684 memory_region_add_subregion(get_system_memory(), mem_base
, &d
->pci_mmio
);
686 phb
= PCI_HOST_BRIDGE(dev
);
687 phb
->bus
= pci_register_bus(DEVICE(phb
), "pci",
688 pci_apb_set_irq
, pci_pbm_map_irq
, d
,
691 0, 32, TYPE_PCI_BUS
);
693 *pbm_irqs
= d
->pbm_irqs
;
694 d
->ivec_irqs
= ivec_irqs
;
696 pci_create_simple(phb
->bus
, 0, "pbm-pci");
700 memset(is
, 0, sizeof(IOMMUState
));
702 memory_region_init_iommu(&is
->iommu
, OBJECT(dev
), &pbm_iommu_ops
,
703 "iommu-apb", UINT64_MAX
);
704 address_space_init(&is
->iommu_as
, &is
->iommu
, "pbm-as");
705 pci_setup_iommu(phb
->bus
, pbm_pci_dma_iommu
, is
);
707 /* APB secondary busses */
708 pci_dev
= pci_create_multifunction(phb
->bus
, PCI_DEVFN(1, 0), true,
710 br
= PCI_BRIDGE(pci_dev
);
711 pci_bridge_map_irq(br
, "Advanced PCI Bus secondary bridge 1",
713 qdev_init_nofail(&pci_dev
->qdev
);
714 *bus2
= pci_bridge_get_sec_bus(br
);
716 pci_dev
= pci_create_multifunction(phb
->bus
, PCI_DEVFN(1, 1), true,
718 br
= PCI_BRIDGE(pci_dev
);
719 pci_bridge_map_irq(br
, "Advanced PCI Bus secondary bridge 2",
721 qdev_init_nofail(&pci_dev
->qdev
);
722 *bus3
= pci_bridge_get_sec_bus(br
);
727 static void pci_pbm_reset(DeviceState
*d
)
730 APBState
*s
= APB_DEVICE(d
);
732 for (i
= 0; i
< 8; i
++) {
733 s
->pci_irq_map
[i
] &= PBM_PCI_IMR_MASK
;
735 for (i
= 0; i
< 32; i
++) {
736 s
->obio_irq_map
[i
] &= PBM_PCI_IMR_MASK
;
739 s
->irq_request
= NO_IRQ_REQUEST
;
740 s
->pci_irq_in
= 0ULL;
742 if (s
->nr_resets
++ == 0) {
744 s
->reset_control
= POR
;
748 static const MemoryRegionOps pci_config_ops
= {
749 .read
= apb_pci_config_read
,
750 .write
= apb_pci_config_write
,
751 .endianness
= DEVICE_NATIVE_ENDIAN
,
754 static int pci_pbm_init_device(SysBusDevice
*dev
)
760 for (i
= 0; i
< 8; i
++) {
761 s
->pci_irq_map
[i
] = (0x1f << 6) | (i
<< 2);
763 for (i
= 0; i
< 2; i
++) {
764 s
->pci_err_irq_map
[i
] = (0x1f << 6) | 0x30;
766 for (i
= 0; i
< 32; i
++) {
767 s
->obio_irq_map
[i
] = ((0x1f << 6) | 0x20) + i
;
769 s
->pbm_irqs
= qemu_allocate_irqs(pci_apb_set_irq
, s
, MAX_IVEC
);
770 s
->irq_request
= NO_IRQ_REQUEST
;
771 s
->pci_irq_in
= 0ULL;
774 memory_region_init_io(&s
->apb_config
, OBJECT(s
), &apb_config_ops
, s
,
775 "apb-config", 0x10000);
777 sysbus_init_mmio(dev
, &s
->apb_config
);
779 memory_region_init_io(&s
->pci_config
, OBJECT(s
), &pci_config_ops
, s
,
780 "apb-pci-config", 0x1000000);
782 sysbus_init_mmio(dev
, &s
->pci_config
);
785 memory_region_init_alias(&s
->pci_ioport
, OBJECT(s
), "apb-pci-ioport",
786 get_system_io(), 0, 0x10000);
788 sysbus_init_mmio(dev
, &s
->pci_ioport
);
793 static void pbm_pci_host_realize(PCIDevice
*d
, Error
**errp
)
795 pci_set_word(d
->config
+ PCI_COMMAND
,
796 PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
);
797 pci_set_word(d
->config
+ PCI_STATUS
,
798 PCI_STATUS_FAST_BACK
| PCI_STATUS_66MHZ
|
799 PCI_STATUS_DEVSEL_MEDIUM
);
802 static void pbm_pci_host_class_init(ObjectClass
*klass
, void *data
)
804 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
805 DeviceClass
*dc
= DEVICE_CLASS(klass
);
807 k
->realize
= pbm_pci_host_realize
;
808 k
->vendor_id
= PCI_VENDOR_ID_SUN
;
809 k
->device_id
= PCI_DEVICE_ID_SUN_SABRE
;
810 k
->class_id
= PCI_CLASS_BRIDGE_HOST
;
812 * PCI-facing part of the host bridge, not usable without the
813 * host-facing part, which can't be device_add'ed, yet.
815 dc
->cannot_instantiate_with_device_add_yet
= true;
818 static const TypeInfo pbm_pci_host_info
= {
820 .parent
= TYPE_PCI_DEVICE
,
821 .instance_size
= sizeof(PCIDevice
),
822 .class_init
= pbm_pci_host_class_init
,
825 static void pbm_host_class_init(ObjectClass
*klass
, void *data
)
827 DeviceClass
*dc
= DEVICE_CLASS(klass
);
828 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
830 k
->init
= pci_pbm_init_device
;
831 set_bit(DEVICE_CATEGORY_BRIDGE
, dc
->categories
);
832 dc
->reset
= pci_pbm_reset
;
835 static const TypeInfo pbm_host_info
= {
837 .parent
= TYPE_PCI_HOST_BRIDGE
,
838 .instance_size
= sizeof(APBState
),
839 .class_init
= pbm_host_class_init
,
842 static void pbm_pci_bridge_class_init(ObjectClass
*klass
, void *data
)
844 DeviceClass
*dc
= DEVICE_CLASS(klass
);
845 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
847 k
->init
= apb_pci_bridge_initfn
;
848 k
->exit
= pci_bridge_exitfn
;
849 k
->vendor_id
= PCI_VENDOR_ID_SUN
;
850 k
->device_id
= PCI_DEVICE_ID_SUN_SIMBA
;
852 k
->config_write
= pci_bridge_write_config
;
854 set_bit(DEVICE_CATEGORY_BRIDGE
, dc
->categories
);
855 dc
->reset
= pci_bridge_reset
;
856 dc
->vmsd
= &vmstate_pci_device
;
859 static const TypeInfo pbm_pci_bridge_info
= {
860 .name
= "pbm-bridge",
861 .parent
= TYPE_PCI_BRIDGE
,
862 .class_init
= pbm_pci_bridge_class_init
,
865 static void pbm_register_types(void)
867 type_register_static(&pbm_host_info
);
868 type_register_static(&pbm_pci_host_info
);
869 type_register_static(&pbm_pci_bridge_info
);
872 type_init(pbm_register_types
)