2 * QEMU PowerPC PowerNV (POWER8) PHB3 model
4 * Copyright (c) 2014-2020, IBM Corporation.
6 * This code is licensed under the GPL version 2 or later. See the
7 * COPYING file in the top-level directory.
10 #ifndef PCI_HOST_PNV_PHB3_H
11 #define PCI_HOST_PNV_PHB3_H
13 #include "hw/ppc/xics.h"
14 #include "qom/object.h"
15 #include "hw/pci-host/pnv_phb.h"
17 typedef struct PnvPHB3 PnvPHB3
;
20 * PHB3 XICS Source for MSIs
22 #define TYPE_PHB3_MSI "phb3-msi"
23 typedef struct Phb3MsiState Phb3MsiState
;
24 DECLARE_INSTANCE_CHECKER(Phb3MsiState
, PHB3_MSI
,
27 #define PHB3_MAX_MSI 2048
34 uint64_t rba
[PHB3_MAX_MSI
/ 64];
38 void pnv_phb3_msi_update_config(Phb3MsiState
*msis
, uint32_t base
,
40 void pnv_phb3_msi_send(Phb3MsiState
*msis
, uint64_t addr
, uint16_t data
,
42 void pnv_phb3_msi_ffi(Phb3MsiState
*msis
, uint64_t val
);
43 void pnv_phb3_msi_pic_print_info(Phb3MsiState
*msis
, GString
*buf
);
47 * We have one such address space wrapper per possible device under
48 * the PHB since they need to be assigned statically at qemu device
49 * creation time. The relationship to a PE is done later dynamically.
50 * This means we can potentially create a lot of these guys. Q35
51 * stores them as some kind of radix tree but we never really need to
52 * do fast lookups so instead we simply keep a QLIST of them for now,
53 * we can add the radix if needed later on.
55 * We do cache the PE number to speed things up a bit though.
57 typedef struct PnvPhb3DMASpace
{
60 int pe_num
; /* Cached PE number */
61 #define PHB_INVALID_PE (-1)
64 IOMMUMemoryRegion dma_mr
;
65 MemoryRegion msi32_mr
;
66 MemoryRegion msi64_mr
;
67 QLIST_ENTRY(PnvPhb3DMASpace
) list
;
71 * PHB3 Power Bus Common Queue
73 #define TYPE_PNV_PBCQ "pnv-pbcq"
74 OBJECT_DECLARE_SIMPLE_TYPE(PnvPBCQState
, PNV_PBCQ
)
82 #define PBCQ_NEST_REGS_COUNT 0x46
83 #define PBCQ_PCI_REGS_COUNT 0x15
84 #define PBCQ_SPCI_REGS_COUNT 0x5
86 uint64_t nest_regs
[PBCQ_NEST_REGS_COUNT
];
87 uint64_t spci_regs
[PBCQ_SPCI_REGS_COUNT
];
88 uint64_t pci_regs
[PBCQ_PCI_REGS_COUNT
];
98 MemoryRegion xscom_nest_regs
;
99 MemoryRegion xscom_pci_regs
;
100 MemoryRegion xscom_spci_regs
;
106 #define TYPE_PNV_PHB3_ROOT_BUS "pnv-phb3-root"
107 struct PnvPHB3RootBus
{
113 OBJECT_DECLARE_SIMPLE_TYPE(PnvPHB3RootBus
, PNV_PHB3_ROOT_BUS
)
116 * PHB3 PCIe Host Bridge for PowerNV machines (POWER8)
118 #define TYPE_PNV_PHB3 "pnv-phb3"
119 OBJECT_DECLARE_SIMPLE_TYPE(PnvPHB3
, PNV_PHB3
)
121 #define PNV_PHB3_NUM_M64 16
122 #define PNV_PHB3_NUM_REGS (0x1000 >> 3)
123 #define PNV_PHB3_NUM_LSI 8
124 #define PNV_PHB3_NUM_PE 256
126 #define PCI_MMIO_TOTAL_SIZE (0x1ull << 60)
137 uint64_t regs
[PNV_PHB3_NUM_REGS
];
138 MemoryRegion mr_regs
;
141 MemoryRegion mr_m64
[PNV_PHB3_NUM_M64
];
142 MemoryRegion pci_mmio
;
145 uint64_t ioda_LIST
[8];
146 uint64_t ioda_LXIVT
[8];
147 uint64_t ioda_TVT
[512];
148 uint64_t ioda_M64BT
[16];
149 uint64_t ioda_MDT
[256];
150 uint64_t ioda_PEEV
[4];
159 QLIST_HEAD(, PnvPhb3DMASpace
) dma_spaces
;
164 uint64_t pnv_phb3_reg_read(void *opaque
, hwaddr off
, unsigned size
);
165 void pnv_phb3_reg_write(void *opaque
, hwaddr off
, uint64_t val
, unsigned size
);
166 void pnv_phb3_update_regions(PnvPHB3
*phb
);
167 void pnv_phb3_remap_irqs(PnvPHB3
*phb
);
168 void pnv_phb3_bus_init(DeviceState
*dev
, PnvPHB3
*phb
);
170 #endif /* PCI_HOST_PNV_PHB3_H */