1 /* 2 * QEMU PowerPC PowerNV (POWER9) PHB4 model 3 * 4 * Copyright (c) 2018-2020, IBM Corporation. 5 * 6 * This code is licensed under the GPL version 2 or later. See the 7 * COPYING file in the top-level directory. 8 */ 9 10 #ifndef PCI_HOST_PNV_PHB4_H 11 #define PCI_HOST_PNV_PHB4_H 12 13 #include "hw/pci/pcie_host.h" 14 #include "hw/pci/pcie_port.h" 15 #include "hw/ppc/xive.h" 16 #include "qom/object.h" 17 18 typedef struct PnvPhb4PecState PnvPhb4PecState; 19 typedef struct PnvPhb4PecStack PnvPhb4PecStack; 20 typedef struct PnvPHB4 PnvPHB4; 21 typedef struct PnvPHB PnvPHB; 22 typedef struct PnvChip PnvChip; 23 24 /* 25 * We have one such address space wrapper per possible device under 26 * the PHB since they need to be assigned statically at qemu device 27 * creation time. The relationship to a PE is done later 28 * dynamically. This means we can potentially create a lot of these 29 * guys. Q35 stores them as some kind of radix tree but we never 30 * really need to do fast lookups so instead we simply keep a QLIST of 31 * them for now, we can add the radix if needed later on. 32 * 33 * We do cache the PE number to speed things up a bit though. 34 */ 35 typedef struct PnvPhb4DMASpace { 36 PCIBus *bus; 37 uint8_t devfn; 38 int pe_num; /* Cached PE number */ 39 #define PHB_INVALID_PE (-1) 40 PnvPHB4 *phb; 41 AddressSpace dma_as; 42 IOMMUMemoryRegion dma_mr; 43 MemoryRegion msi32_mr; 44 MemoryRegion msi64_mr; 45 QLIST_ENTRY(PnvPhb4DMASpace) list; 46 } PnvPhb4DMASpace; 47 48 #define TYPE_PNV_PHB4_ROOT_BUS "pnv-phb4-root" 49 50 /* 51 * PHB4 PCIe Host Bridge for PowerNV machines (POWER9) 52 */ 53 #define TYPE_PNV_PHB4 "pnv-phb4" 54 OBJECT_DECLARE_SIMPLE_TYPE(PnvPHB4, PNV_PHB4) 55 56 #define PNV_PHB4_MAX_LSIs 8 57 #define PNV_PHB4_MAX_INTs 4096 58 #define PNV_PHB4_MAX_MIST (PNV_PHB4_MAX_INTs >> 2) 59 #define PNV_PHB4_MAX_MMIO_WINDOWS 32 60 #define PNV_PHB4_MIN_MMIO_WINDOWS 16 61 #define PNV_PHB4_NUM_REGS (0x3000 >> 3) 62 #define PNV_PHB4_MAX_PEs 512 63 #define PNV_PHB4_MAX_TVEs (PNV_PHB4_MAX_PEs * 2) 64 #define PNV_PHB4_MAX_PEEVs (PNV_PHB4_MAX_PEs / 64) 65 #define PNV_PHB4_MAX_MBEs (PNV_PHB4_MAX_MMIO_WINDOWS * 2) 66 67 #define PNV_PHB4_VERSION 0x000000a400000002ull 68 #define PNV_PHB4_DEVICE_ID 0x04c1 69 70 #define PCI_MMIO_TOTAL_SIZE (0x1ull << 60) 71 72 struct PnvPHB4 { 73 DeviceState parent; 74 75 PnvPHB *phb_base; 76 77 uint32_t chip_id; 78 uint32_t phb_id; 79 80 uint64_t version; 81 82 /* The owner PEC */ 83 PnvPhb4PecState *pec; 84 85 char bus_path[8]; 86 87 /* Main register images */ 88 uint64_t regs[PNV_PHB4_NUM_REGS]; 89 MemoryRegion mr_regs; 90 91 /* Extra SCOM-only register */ 92 uint64_t scom_hv_ind_addr_reg; 93 94 /* 95 * Geometry of the PHB. There are two types, small and big PHBs, a 96 * number of resources (number of PEs, windows etc...) are doubled 97 * for a big PHB 98 */ 99 bool big_phb; 100 101 /* Memory regions for MMIO space */ 102 MemoryRegion mr_mmio[PNV_PHB4_MAX_MMIO_WINDOWS]; 103 104 /* PCI side space */ 105 MemoryRegion pci_mmio; 106 MemoryRegion pci_io; 107 108 /* PCI registers (excluding pass-through) */ 109 #define PHB4_PEC_PCI_STK_REGS_COUNT 0xf 110 uint64_t pci_regs[PHB4_PEC_PCI_STK_REGS_COUNT]; 111 MemoryRegion pci_regs_mr; 112 113 /* Nest registers */ 114 #define PHB4_PEC_NEST_STK_REGS_COUNT 0x17 115 uint64_t nest_regs[PHB4_PEC_NEST_STK_REGS_COUNT]; 116 MemoryRegion nest_regs_mr; 117 118 /* PHB pass-through XSCOM */ 119 MemoryRegion phb_regs_mr; 120 121 /* Memory windows from PowerBus to PHB */ 122 MemoryRegion phbbar; 123 MemoryRegion intbar; 124 MemoryRegion mmbar0; 125 MemoryRegion mmbar1; 126 uint64_t mmio0_base; 127 uint64_t mmio0_size; 128 uint64_t mmio1_base; 129 uint64_t mmio1_size; 130 131 /* On-chip IODA tables */ 132 uint64_t ioda_LIST[PNV_PHB4_MAX_LSIs]; 133 uint64_t ioda_MIST[PNV_PHB4_MAX_MIST]; 134 uint64_t ioda_TVT[PNV_PHB4_MAX_TVEs]; 135 uint64_t ioda_MBT[PNV_PHB4_MAX_MBEs]; 136 uint64_t ioda_MDT[PNV_PHB4_MAX_PEs]; 137 uint64_t ioda_PEEV[PNV_PHB4_MAX_PEEVs]; 138 139 /* 140 * The internal PESTA/B is 2 bits per PE split into two tables, we 141 * store them in a single array here to avoid wasting space. 142 */ 143 uint8_t ioda_PEST_AB[PNV_PHB4_MAX_PEs]; 144 145 /* P9 Interrupt generation */ 146 XiveSource xsrc; 147 qemu_irq *qirqs; 148 149 QLIST_HEAD(, PnvPhb4DMASpace) dma_spaces; 150 }; 151 152 void pnv_phb4_pic_print_info(PnvPHB4 *phb, Monitor *mon); 153 int pnv_phb4_pec_get_phb_id(PnvPhb4PecState *pec, int stack_index); 154 void pnv_phb4_bus_init(DeviceState *dev, PnvPHB4 *phb); 155 extern const MemoryRegionOps pnv_phb4_xscom_ops; 156 157 /* 158 * PHB4 PEC (PCI Express Controller) 159 */ 160 #define TYPE_PNV_PHB4_PEC "pnv-phb4-pec" 161 OBJECT_DECLARE_TYPE(PnvPhb4PecState, PnvPhb4PecClass, PNV_PHB4_PEC) 162 163 struct PnvPhb4PecState { 164 DeviceState parent; 165 166 /* PEC number in chip */ 167 uint32_t index; 168 uint32_t chip_id; 169 170 MemoryRegion *system_memory; 171 172 /* Nest registers, excuding per-stack */ 173 #define PHB4_PEC_NEST_REGS_COUNT 0xf 174 uint64_t nest_regs[PHB4_PEC_NEST_REGS_COUNT]; 175 MemoryRegion nest_regs_mr; 176 177 /* PCI registers, excluding per-stack */ 178 #define PHB4_PEC_PCI_REGS_COUNT 0x3 179 uint64_t pci_regs[PHB4_PEC_PCI_REGS_COUNT]; 180 MemoryRegion pci_regs_mr; 181 182 /* PHBs */ 183 uint32_t num_phbs; 184 185 PnvChip *chip; 186 }; 187 188 189 struct PnvPhb4PecClass { 190 DeviceClass parent_class; 191 192 uint32_t (*xscom_nest_base)(PnvPhb4PecState *pec); 193 uint32_t xscom_nest_size; 194 uint32_t (*xscom_pci_base)(PnvPhb4PecState *pec); 195 uint32_t xscom_pci_size; 196 const char *compat; 197 int compat_size; 198 const char *stk_compat; 199 int stk_compat_size; 200 uint64_t version; 201 const char *phb_type; 202 const uint32_t *num_phbs; 203 const char *rp_model; 204 }; 205 206 /* 207 * POWER10 definitions 208 */ 209 210 #define TYPE_PNV_PHB5 "pnv-phb5" 211 #define PNV_PHB5(obj) \ 212 OBJECT_CHECK(PnvPhb4, (obj), TYPE_PNV_PHB5) 213 214 #define PNV_PHB5_VERSION 0x000000a500000001ull 215 #define PNV_PHB5_DEVICE_ID 0x0652 216 217 #define TYPE_PNV_PHB5_PEC "pnv-phb5-pec" 218 #define PNV_PHB5_PEC(obj) \ 219 OBJECT_CHECK(PnvPhb4PecState, (obj), TYPE_PNV_PHB5_PEC) 220 221 #endif /* PCI_HOST_PNV_PHB4_H */ 222