Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Support PCI/PCIe on PowerNV platforms |
| 3 | * |
| 4 | * Copyright 2011 Benjamin Herrenschmidt, IBM Corp. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | */ |
| 11 | |
Benjamin Herrenschmidt | cee72d5 | 2011-11-29 18:22:53 +0000 | [diff] [blame] | 12 | #undef DEBUG |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 13 | |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/pci.h> |
Gavin Shan | 361f2a2 | 2014-04-24 18:00:25 +1000 | [diff] [blame^] | 16 | #include <linux/crash_dump.h> |
Gavin Shan | 37c367f | 2013-06-20 18:13:25 +0800 | [diff] [blame] | 17 | #include <linux/debugfs.h> |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 18 | #include <linux/delay.h> |
| 19 | #include <linux/string.h> |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/bootmem.h> |
| 22 | #include <linux/irq.h> |
| 23 | #include <linux/io.h> |
| 24 | #include <linux/msi.h> |
Benjamin Herrenschmidt | cd15b04 | 2014-02-11 11:32:38 +1100 | [diff] [blame] | 25 | #include <linux/memblock.h> |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 26 | |
| 27 | #include <asm/sections.h> |
| 28 | #include <asm/io.h> |
| 29 | #include <asm/prom.h> |
| 30 | #include <asm/pci-bridge.h> |
| 31 | #include <asm/machdep.h> |
Gavin Shan | fb1b55d | 2013-03-05 21:12:37 +0000 | [diff] [blame] | 32 | #include <asm/msi_bitmap.h> |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 33 | #include <asm/ppc-pci.h> |
| 34 | #include <asm/opal.h> |
| 35 | #include <asm/iommu.h> |
| 36 | #include <asm/tce.h> |
Gavin Shan | 137436c | 2013-04-25 19:20:59 +0000 | [diff] [blame] | 37 | #include <asm/xics.h> |
Gavin Shan | 37c367f | 2013-06-20 18:13:25 +0800 | [diff] [blame] | 38 | #include <asm/debug.h> |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 39 | |
| 40 | #include "powernv.h" |
| 41 | #include "pci.h" |
| 42 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 43 | #define define_pe_printk_level(func, kern_level) \ |
| 44 | static int func(const struct pnv_ioda_pe *pe, const char *fmt, ...) \ |
| 45 | { \ |
| 46 | struct va_format vaf; \ |
| 47 | va_list args; \ |
Gavin Shan | 490e078 | 2012-10-17 19:53:30 +0000 | [diff] [blame] | 48 | char pfix[32]; \ |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 49 | int r; \ |
| 50 | \ |
| 51 | va_start(args, fmt); \ |
| 52 | \ |
| 53 | vaf.fmt = fmt; \ |
| 54 | vaf.va = &args; \ |
| 55 | \ |
Gavin Shan | 490e078 | 2012-10-17 19:53:30 +0000 | [diff] [blame] | 56 | if (pe->pdev) \ |
| 57 | strlcpy(pfix, dev_name(&pe->pdev->dev), \ |
| 58 | sizeof(pfix)); \ |
| 59 | else \ |
| 60 | sprintf(pfix, "%04x:%02x ", \ |
| 61 | pci_domain_nr(pe->pbus), \ |
| 62 | pe->pbus->number); \ |
| 63 | r = printk(kern_level "pci %s: [PE# %.3d] %pV", \ |
| 64 | pfix, pe->pe_number, &vaf); \ |
| 65 | \ |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 66 | va_end(args); \ |
| 67 | \ |
| 68 | return r; \ |
| 69 | } \ |
| 70 | |
| 71 | define_pe_printk_level(pe_err, KERN_ERR); |
| 72 | define_pe_printk_level(pe_warn, KERN_WARNING); |
| 73 | define_pe_printk_level(pe_info, KERN_INFO); |
| 74 | |
Alexey Kardashevskiy | 8e0a161 | 2013-08-28 18:37:43 +1000 | [diff] [blame] | 75 | /* |
| 76 | * stdcix is only supposed to be used in hypervisor real mode as per |
| 77 | * the architecture spec |
| 78 | */ |
| 79 | static inline void __raw_rm_writeq(u64 val, volatile void __iomem *paddr) |
| 80 | { |
| 81 | __asm__ __volatile__("stdcix %0,0,%1" |
| 82 | : : "r" (val), "r" (paddr) : "memory"); |
| 83 | } |
| 84 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 85 | static int pnv_ioda_alloc_pe(struct pnv_phb *phb) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 86 | { |
| 87 | unsigned long pe; |
| 88 | |
| 89 | do { |
| 90 | pe = find_next_zero_bit(phb->ioda.pe_alloc, |
| 91 | phb->ioda.total_pe, 0); |
| 92 | if (pe >= phb->ioda.total_pe) |
| 93 | return IODA_INVALID_PE; |
| 94 | } while(test_and_set_bit(pe, phb->ioda.pe_alloc)); |
| 95 | |
Gavin Shan | 4cce955 | 2013-04-25 19:21:00 +0000 | [diff] [blame] | 96 | phb->ioda.pe_array[pe].phb = phb; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 97 | phb->ioda.pe_array[pe].pe_number = pe; |
| 98 | return pe; |
| 99 | } |
| 100 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 101 | static void pnv_ioda_free_pe(struct pnv_phb *phb, int pe) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 102 | { |
| 103 | WARN_ON(phb->ioda.pe_array[pe].pdev); |
| 104 | |
| 105 | memset(&phb->ioda.pe_array[pe], 0, sizeof(struct pnv_ioda_pe)); |
| 106 | clear_bit(pe, phb->ioda.pe_alloc); |
| 107 | } |
| 108 | |
| 109 | /* Currently those 2 are only used when MSIs are enabled, this will change |
| 110 | * but in the meantime, we need to protect them to avoid warnings |
| 111 | */ |
| 112 | #ifdef CONFIG_PCI_MSI |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 113 | static struct pnv_ioda_pe *pnv_ioda_get_pe(struct pci_dev *dev) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 114 | { |
| 115 | struct pci_controller *hose = pci_bus_to_host(dev->bus); |
| 116 | struct pnv_phb *phb = hose->private_data; |
Benjamin Herrenschmidt | b72c1f6 | 2013-05-21 22:58:21 +0000 | [diff] [blame] | 117 | struct pci_dn *pdn = pci_get_pdn(dev); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 118 | |
| 119 | if (!pdn) |
| 120 | return NULL; |
| 121 | if (pdn->pe_number == IODA_INVALID_PE) |
| 122 | return NULL; |
| 123 | return &phb->ioda.pe_array[pdn->pe_number]; |
| 124 | } |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 125 | #endif /* CONFIG_PCI_MSI */ |
| 126 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 127 | static int pnv_ioda_configure_pe(struct pnv_phb *phb, struct pnv_ioda_pe *pe) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 128 | { |
| 129 | struct pci_dev *parent; |
| 130 | uint8_t bcomp, dcomp, fcomp; |
| 131 | long rc, rid_end, rid; |
| 132 | |
| 133 | /* Bus validation ? */ |
| 134 | if (pe->pbus) { |
| 135 | int count; |
| 136 | |
| 137 | dcomp = OPAL_IGNORE_RID_DEVICE_NUMBER; |
| 138 | fcomp = OPAL_IGNORE_RID_FUNCTION_NUMBER; |
| 139 | parent = pe->pbus->self; |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 140 | if (pe->flags & PNV_IODA_PE_BUS_ALL) |
| 141 | count = pe->pbus->busn_res.end - pe->pbus->busn_res.start + 1; |
| 142 | else |
| 143 | count = 1; |
| 144 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 145 | switch(count) { |
| 146 | case 1: bcomp = OpalPciBusAll; break; |
| 147 | case 2: bcomp = OpalPciBus7Bits; break; |
| 148 | case 4: bcomp = OpalPciBus6Bits; break; |
| 149 | case 8: bcomp = OpalPciBus5Bits; break; |
| 150 | case 16: bcomp = OpalPciBus4Bits; break; |
| 151 | case 32: bcomp = OpalPciBus3Bits; break; |
| 152 | default: |
| 153 | pr_err("%s: Number of subordinate busses %d" |
| 154 | " unsupported\n", |
| 155 | pci_name(pe->pbus->self), count); |
| 156 | /* Do an exact match only */ |
| 157 | bcomp = OpalPciBusAll; |
| 158 | } |
| 159 | rid_end = pe->rid + (count << 8); |
| 160 | } else { |
| 161 | parent = pe->pdev->bus->self; |
| 162 | bcomp = OpalPciBusAll; |
| 163 | dcomp = OPAL_COMPARE_RID_DEVICE_NUMBER; |
| 164 | fcomp = OPAL_COMPARE_RID_FUNCTION_NUMBER; |
| 165 | rid_end = pe->rid + 1; |
| 166 | } |
| 167 | |
Gavin Shan | 631ad69 | 2013-11-04 16:32:46 +0800 | [diff] [blame] | 168 | /* |
| 169 | * Associate PE in PELT. We need add the PE into the |
| 170 | * corresponding PELT-V as well. Otherwise, the error |
| 171 | * originated from the PE might contribute to other |
| 172 | * PEs. |
| 173 | */ |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 174 | rc = opal_pci_set_pe(phb->opal_id, pe->pe_number, pe->rid, |
| 175 | bcomp, dcomp, fcomp, OPAL_MAP_PE); |
| 176 | if (rc) { |
| 177 | pe_err(pe, "OPAL error %ld trying to setup PELT table\n", rc); |
| 178 | return -ENXIO; |
| 179 | } |
Gavin Shan | 631ad69 | 2013-11-04 16:32:46 +0800 | [diff] [blame] | 180 | |
| 181 | rc = opal_pci_set_peltv(phb->opal_id, pe->pe_number, |
| 182 | pe->pe_number, OPAL_ADD_PE_TO_DOMAIN); |
| 183 | if (rc) |
| 184 | pe_warn(pe, "OPAL error %d adding self to PELTV\n", rc); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 185 | opal_pci_eeh_freeze_clear(phb->opal_id, pe->pe_number, |
| 186 | OPAL_EEH_ACTION_CLEAR_FREEZE_ALL); |
| 187 | |
| 188 | /* Add to all parents PELT-V */ |
| 189 | while (parent) { |
Benjamin Herrenschmidt | b72c1f6 | 2013-05-21 22:58:21 +0000 | [diff] [blame] | 190 | struct pci_dn *pdn = pci_get_pdn(parent); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 191 | if (pdn && pdn->pe_number != IODA_INVALID_PE) { |
| 192 | rc = opal_pci_set_peltv(phb->opal_id, pdn->pe_number, |
Benjamin Herrenschmidt | cee72d5 | 2011-11-29 18:22:53 +0000 | [diff] [blame] | 193 | pe->pe_number, OPAL_ADD_PE_TO_DOMAIN); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 194 | /* XXX What to do in case of error ? */ |
| 195 | } |
| 196 | parent = parent->bus->self; |
| 197 | } |
| 198 | /* Setup reverse map */ |
| 199 | for (rid = pe->rid; rid < rid_end; rid++) |
| 200 | phb->ioda.pe_rmap[rid] = pe->pe_number; |
| 201 | |
| 202 | /* Setup one MVTs on IODA1 */ |
| 203 | if (phb->type == PNV_PHB_IODA1) { |
| 204 | pe->mve_number = pe->pe_number; |
| 205 | rc = opal_pci_set_mve(phb->opal_id, pe->mve_number, |
| 206 | pe->pe_number); |
| 207 | if (rc) { |
| 208 | pe_err(pe, "OPAL error %ld setting up MVE %d\n", |
| 209 | rc, pe->mve_number); |
| 210 | pe->mve_number = -1; |
| 211 | } else { |
| 212 | rc = opal_pci_set_mve_enable(phb->opal_id, |
Benjamin Herrenschmidt | cee72d5 | 2011-11-29 18:22:53 +0000 | [diff] [blame] | 213 | pe->mve_number, OPAL_ENABLE_MVE); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 214 | if (rc) { |
| 215 | pe_err(pe, "OPAL error %ld enabling MVE %d\n", |
| 216 | rc, pe->mve_number); |
| 217 | pe->mve_number = -1; |
| 218 | } |
| 219 | } |
| 220 | } else if (phb->type == PNV_PHB_IODA2) |
| 221 | pe->mve_number = 0; |
| 222 | |
| 223 | return 0; |
| 224 | } |
| 225 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 226 | static void pnv_ioda_link_pe_by_weight(struct pnv_phb *phb, |
| 227 | struct pnv_ioda_pe *pe) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 228 | { |
| 229 | struct pnv_ioda_pe *lpe; |
| 230 | |
Gavin Shan | 7ebdf95 | 2012-08-20 03:49:15 +0000 | [diff] [blame] | 231 | list_for_each_entry(lpe, &phb->ioda.pe_dma_list, dma_link) { |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 232 | if (lpe->dma_weight < pe->dma_weight) { |
Gavin Shan | 7ebdf95 | 2012-08-20 03:49:15 +0000 | [diff] [blame] | 233 | list_add_tail(&pe->dma_link, &lpe->dma_link); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 234 | return; |
| 235 | } |
| 236 | } |
Gavin Shan | 7ebdf95 | 2012-08-20 03:49:15 +0000 | [diff] [blame] | 237 | list_add_tail(&pe->dma_link, &phb->ioda.pe_dma_list); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | static unsigned int pnv_ioda_dma_weight(struct pci_dev *dev) |
| 241 | { |
| 242 | /* This is quite simplistic. The "base" weight of a device |
| 243 | * is 10. 0 means no DMA is to be accounted for it. |
| 244 | */ |
| 245 | |
| 246 | /* If it's a bridge, no DMA */ |
| 247 | if (dev->hdr_type != PCI_HEADER_TYPE_NORMAL) |
| 248 | return 0; |
| 249 | |
| 250 | /* Reduce the weight of slow USB controllers */ |
| 251 | if (dev->class == PCI_CLASS_SERIAL_USB_UHCI || |
| 252 | dev->class == PCI_CLASS_SERIAL_USB_OHCI || |
| 253 | dev->class == PCI_CLASS_SERIAL_USB_EHCI) |
| 254 | return 3; |
| 255 | |
| 256 | /* Increase the weight of RAID (includes Obsidian) */ |
| 257 | if ((dev->class >> 8) == PCI_CLASS_STORAGE_RAID) |
| 258 | return 15; |
| 259 | |
| 260 | /* Default */ |
| 261 | return 10; |
| 262 | } |
| 263 | |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 264 | #if 0 |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 265 | static struct pnv_ioda_pe *pnv_ioda_setup_dev_PE(struct pci_dev *dev) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 266 | { |
| 267 | struct pci_controller *hose = pci_bus_to_host(dev->bus); |
| 268 | struct pnv_phb *phb = hose->private_data; |
Benjamin Herrenschmidt | b72c1f6 | 2013-05-21 22:58:21 +0000 | [diff] [blame] | 269 | struct pci_dn *pdn = pci_get_pdn(dev); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 270 | struct pnv_ioda_pe *pe; |
| 271 | int pe_num; |
| 272 | |
| 273 | if (!pdn) { |
| 274 | pr_err("%s: Device tree node not associated properly\n", |
| 275 | pci_name(dev)); |
| 276 | return NULL; |
| 277 | } |
| 278 | if (pdn->pe_number != IODA_INVALID_PE) |
| 279 | return NULL; |
| 280 | |
| 281 | /* PE#0 has been pre-set */ |
| 282 | if (dev->bus->number == 0) |
| 283 | pe_num = 0; |
| 284 | else |
| 285 | pe_num = pnv_ioda_alloc_pe(phb); |
| 286 | if (pe_num == IODA_INVALID_PE) { |
| 287 | pr_warning("%s: Not enough PE# available, disabling device\n", |
| 288 | pci_name(dev)); |
| 289 | return NULL; |
| 290 | } |
| 291 | |
| 292 | /* NOTE: We get only one ref to the pci_dev for the pdn, not for the |
| 293 | * pointer in the PE data structure, both should be destroyed at the |
| 294 | * same time. However, this needs to be looked at more closely again |
| 295 | * once we actually start removing things (Hotplug, SR-IOV, ...) |
| 296 | * |
| 297 | * At some point we want to remove the PDN completely anyways |
| 298 | */ |
| 299 | pe = &phb->ioda.pe_array[pe_num]; |
| 300 | pci_dev_get(dev); |
| 301 | pdn->pcidev = dev; |
| 302 | pdn->pe_number = pe_num; |
| 303 | pe->pdev = dev; |
| 304 | pe->pbus = NULL; |
| 305 | pe->tce32_seg = -1; |
| 306 | pe->mve_number = -1; |
| 307 | pe->rid = dev->bus->number << 8 | pdn->devfn; |
| 308 | |
| 309 | pe_info(pe, "Associated device to PE\n"); |
| 310 | |
| 311 | if (pnv_ioda_configure_pe(phb, pe)) { |
| 312 | /* XXX What do we do here ? */ |
| 313 | if (pe_num) |
| 314 | pnv_ioda_free_pe(phb, pe_num); |
| 315 | pdn->pe_number = IODA_INVALID_PE; |
| 316 | pe->pdev = NULL; |
| 317 | pci_dev_put(dev); |
| 318 | return NULL; |
| 319 | } |
| 320 | |
| 321 | /* Assign a DMA weight to the device */ |
| 322 | pe->dma_weight = pnv_ioda_dma_weight(dev); |
| 323 | if (pe->dma_weight != 0) { |
| 324 | phb->ioda.dma_weight += pe->dma_weight; |
| 325 | phb->ioda.dma_pe_count++; |
| 326 | } |
| 327 | |
| 328 | /* Link the PE */ |
| 329 | pnv_ioda_link_pe_by_weight(phb, pe); |
| 330 | |
| 331 | return pe; |
| 332 | } |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 333 | #endif /* Useful for SRIOV case */ |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 334 | |
| 335 | static void pnv_ioda_setup_same_PE(struct pci_bus *bus, struct pnv_ioda_pe *pe) |
| 336 | { |
| 337 | struct pci_dev *dev; |
| 338 | |
| 339 | list_for_each_entry(dev, &bus->devices, bus_list) { |
Benjamin Herrenschmidt | b72c1f6 | 2013-05-21 22:58:21 +0000 | [diff] [blame] | 340 | struct pci_dn *pdn = pci_get_pdn(dev); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 341 | |
| 342 | if (pdn == NULL) { |
| 343 | pr_warn("%s: No device node associated with device !\n", |
| 344 | pci_name(dev)); |
| 345 | continue; |
| 346 | } |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 347 | pdn->pcidev = dev; |
| 348 | pdn->pe_number = pe->pe_number; |
| 349 | pe->dma_weight += pnv_ioda_dma_weight(dev); |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 350 | if ((pe->flags & PNV_IODA_PE_BUS_ALL) && dev->subordinate) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 351 | pnv_ioda_setup_same_PE(dev->subordinate, pe); |
| 352 | } |
| 353 | } |
| 354 | |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 355 | /* |
| 356 | * There're 2 types of PCI bus sensitive PEs: One that is compromised of |
| 357 | * single PCI bus. Another one that contains the primary PCI bus and its |
| 358 | * subordinate PCI devices and buses. The second type of PE is normally |
| 359 | * orgiriated by PCIe-to-PCI bridge or PLX switch downstream ports. |
| 360 | */ |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 361 | static void pnv_ioda_setup_bus_PE(struct pci_bus *bus, int all) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 362 | { |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 363 | struct pci_controller *hose = pci_bus_to_host(bus); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 364 | struct pnv_phb *phb = hose->private_data; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 365 | struct pnv_ioda_pe *pe; |
| 366 | int pe_num; |
| 367 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 368 | pe_num = pnv_ioda_alloc_pe(phb); |
| 369 | if (pe_num == IODA_INVALID_PE) { |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 370 | pr_warning("%s: Not enough PE# available for PCI bus %04x:%02x\n", |
| 371 | __func__, pci_domain_nr(bus), bus->number); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 372 | return; |
| 373 | } |
| 374 | |
| 375 | pe = &phb->ioda.pe_array[pe_num]; |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 376 | pe->flags = (all ? PNV_IODA_PE_BUS_ALL : PNV_IODA_PE_BUS); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 377 | pe->pbus = bus; |
| 378 | pe->pdev = NULL; |
| 379 | pe->tce32_seg = -1; |
| 380 | pe->mve_number = -1; |
Yinghai Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 381 | pe->rid = bus->busn_res.start << 8; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 382 | pe->dma_weight = 0; |
| 383 | |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 384 | if (all) |
| 385 | pe_info(pe, "Secondary bus %d..%d associated with PE#%d\n", |
| 386 | bus->busn_res.start, bus->busn_res.end, pe_num); |
| 387 | else |
| 388 | pe_info(pe, "Secondary bus %d associated with PE#%d\n", |
| 389 | bus->busn_res.start, pe_num); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 390 | |
| 391 | if (pnv_ioda_configure_pe(phb, pe)) { |
| 392 | /* XXX What do we do here ? */ |
| 393 | if (pe_num) |
| 394 | pnv_ioda_free_pe(phb, pe_num); |
| 395 | pe->pbus = NULL; |
| 396 | return; |
| 397 | } |
| 398 | |
| 399 | /* Associate it with all child devices */ |
| 400 | pnv_ioda_setup_same_PE(bus, pe); |
| 401 | |
Gavin Shan | 7ebdf95 | 2012-08-20 03:49:15 +0000 | [diff] [blame] | 402 | /* Put PE to the list */ |
| 403 | list_add_tail(&pe->list, &phb->ioda.pe_list); |
| 404 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 405 | /* Account for one DMA PE if at least one DMA capable device exist |
| 406 | * below the bridge |
| 407 | */ |
| 408 | if (pe->dma_weight != 0) { |
| 409 | phb->ioda.dma_weight += pe->dma_weight; |
| 410 | phb->ioda.dma_pe_count++; |
| 411 | } |
| 412 | |
| 413 | /* Link the PE */ |
| 414 | pnv_ioda_link_pe_by_weight(phb, pe); |
| 415 | } |
| 416 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 417 | static void pnv_ioda_setup_PEs(struct pci_bus *bus) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 418 | { |
| 419 | struct pci_dev *dev; |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 420 | |
| 421 | pnv_ioda_setup_bus_PE(bus, 0); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 422 | |
| 423 | list_for_each_entry(dev, &bus->devices, bus_list) { |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 424 | if (dev->subordinate) { |
| 425 | if (pci_pcie_type(dev) == PCI_EXP_TYPE_PCI_BRIDGE) |
| 426 | pnv_ioda_setup_bus_PE(dev->subordinate, 1); |
| 427 | else |
| 428 | pnv_ioda_setup_PEs(dev->subordinate); |
| 429 | } |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | /* |
| 434 | * Configure PEs so that the downstream PCI buses and devices |
| 435 | * could have their associated PE#. Unfortunately, we didn't |
| 436 | * figure out the way to identify the PLX bridge yet. So we |
| 437 | * simply put the PCI bus and the subordinate behind the root |
| 438 | * port to PE# here. The game rule here is expected to be changed |
| 439 | * as soon as we can detected PLX bridge correctly. |
| 440 | */ |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 441 | static void pnv_pci_ioda_setup_PEs(void) |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 442 | { |
| 443 | struct pci_controller *hose, *tmp; |
| 444 | |
| 445 | list_for_each_entry_safe(hose, tmp, &hose_list, list_node) { |
| 446 | pnv_ioda_setup_PEs(hose->bus); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 447 | } |
| 448 | } |
| 449 | |
Gavin Shan | 959c9bd | 2013-04-25 19:21:02 +0000 | [diff] [blame] | 450 | static void pnv_pci_ioda_dma_dev_setup(struct pnv_phb *phb, struct pci_dev *pdev) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 451 | { |
Benjamin Herrenschmidt | b72c1f6 | 2013-05-21 22:58:21 +0000 | [diff] [blame] | 452 | struct pci_dn *pdn = pci_get_pdn(pdev); |
Gavin Shan | 959c9bd | 2013-04-25 19:21:02 +0000 | [diff] [blame] | 453 | struct pnv_ioda_pe *pe; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 454 | |
Gavin Shan | 959c9bd | 2013-04-25 19:21:02 +0000 | [diff] [blame] | 455 | /* |
| 456 | * The function can be called while the PE# |
| 457 | * hasn't been assigned. Do nothing for the |
| 458 | * case. |
| 459 | */ |
| 460 | if (!pdn || pdn->pe_number == IODA_INVALID_PE) |
| 461 | return; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 462 | |
Gavin Shan | 959c9bd | 2013-04-25 19:21:02 +0000 | [diff] [blame] | 463 | pe = &phb->ioda.pe_array[pdn->pe_number]; |
Benjamin Herrenschmidt | cd15b04 | 2014-02-11 11:32:38 +1100 | [diff] [blame] | 464 | WARN_ON(get_dma_ops(&pdev->dev) != &dma_iommu_ops); |
Wei Yang | 3f28c5a | 2014-04-23 10:26:32 +0800 | [diff] [blame] | 465 | set_iommu_table_base(&pdev->dev, &pe->tce32_table); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 466 | } |
| 467 | |
Benjamin Herrenschmidt | cd15b04 | 2014-02-11 11:32:38 +1100 | [diff] [blame] | 468 | static int pnv_pci_ioda_dma_set_mask(struct pnv_phb *phb, |
| 469 | struct pci_dev *pdev, u64 dma_mask) |
| 470 | { |
| 471 | struct pci_dn *pdn = pci_get_pdn(pdev); |
| 472 | struct pnv_ioda_pe *pe; |
| 473 | uint64_t top; |
| 474 | bool bypass = false; |
| 475 | |
| 476 | if (WARN_ON(!pdn || pdn->pe_number == IODA_INVALID_PE)) |
| 477 | return -ENODEV;; |
| 478 | |
| 479 | pe = &phb->ioda.pe_array[pdn->pe_number]; |
| 480 | if (pe->tce_bypass_enabled) { |
| 481 | top = pe->tce_bypass_base + memblock_end_of_DRAM() - 1; |
| 482 | bypass = (dma_mask >= top); |
| 483 | } |
| 484 | |
| 485 | if (bypass) { |
| 486 | dev_info(&pdev->dev, "Using 64-bit DMA iommu bypass\n"); |
| 487 | set_dma_ops(&pdev->dev, &dma_direct_ops); |
| 488 | set_dma_offset(&pdev->dev, pe->tce_bypass_base); |
| 489 | } else { |
| 490 | dev_info(&pdev->dev, "Using 32-bit DMA via iommu\n"); |
| 491 | set_dma_ops(&pdev->dev, &dma_iommu_ops); |
| 492 | set_iommu_table_base(&pdev->dev, &pe->tce32_table); |
| 493 | } |
| 494 | return 0; |
| 495 | } |
| 496 | |
Benjamin Herrenschmidt | 74251fe | 2013-07-01 17:54:09 +1000 | [diff] [blame] | 497 | static void pnv_ioda_setup_bus_dma(struct pnv_ioda_pe *pe, struct pci_bus *bus) |
| 498 | { |
| 499 | struct pci_dev *dev; |
| 500 | |
| 501 | list_for_each_entry(dev, &bus->devices, bus_list) { |
Alexey Kardashevskiy | d905c5d | 2013-11-21 17:43:14 +1100 | [diff] [blame] | 502 | set_iommu_table_base_and_group(&dev->dev, &pe->tce32_table); |
Benjamin Herrenschmidt | 74251fe | 2013-07-01 17:54:09 +1000 | [diff] [blame] | 503 | if (dev->subordinate) |
| 504 | pnv_ioda_setup_bus_dma(pe, dev->subordinate); |
| 505 | } |
| 506 | } |
| 507 | |
Alexey Kardashevskiy | 8e0a161 | 2013-08-28 18:37:43 +1000 | [diff] [blame] | 508 | static void pnv_pci_ioda1_tce_invalidate(struct pnv_ioda_pe *pe, |
| 509 | struct iommu_table *tbl, |
Benjamin Herrenschmidt | 3ad26e5 | 2013-10-11 18:23:53 +1100 | [diff] [blame] | 510 | __be64 *startp, __be64 *endp, bool rm) |
Gavin Shan | 4cce955 | 2013-04-25 19:21:00 +0000 | [diff] [blame] | 511 | { |
Benjamin Herrenschmidt | 3ad26e5 | 2013-10-11 18:23:53 +1100 | [diff] [blame] | 512 | __be64 __iomem *invalidate = rm ? |
| 513 | (__be64 __iomem *)pe->tce_inval_reg_phys : |
| 514 | (__be64 __iomem *)tbl->it_index; |
Gavin Shan | 4cce955 | 2013-04-25 19:21:00 +0000 | [diff] [blame] | 515 | unsigned long start, end, inc; |
| 516 | |
| 517 | start = __pa(startp); |
| 518 | end = __pa(endp); |
| 519 | |
| 520 | /* BML uses this case for p6/p7/galaxy2: Shift addr and put in node */ |
| 521 | if (tbl->it_busno) { |
| 522 | start <<= 12; |
| 523 | end <<= 12; |
| 524 | inc = 128 << 12; |
| 525 | start |= tbl->it_busno; |
| 526 | end |= tbl->it_busno; |
| 527 | } else if (tbl->it_type & TCE_PCI_SWINV_PAIR) { |
| 528 | /* p7ioc-style invalidation, 2 TCEs per write */ |
| 529 | start |= (1ull << 63); |
| 530 | end |= (1ull << 63); |
| 531 | inc = 16; |
| 532 | } else { |
| 533 | /* Default (older HW) */ |
| 534 | inc = 128; |
| 535 | } |
| 536 | |
| 537 | end |= inc - 1; /* round up end to be different than start */ |
| 538 | |
| 539 | mb(); /* Ensure above stores are visible */ |
| 540 | while (start <= end) { |
Alexey Kardashevskiy | 8e0a161 | 2013-08-28 18:37:43 +1000 | [diff] [blame] | 541 | if (rm) |
Benjamin Herrenschmidt | 3ad26e5 | 2013-10-11 18:23:53 +1100 | [diff] [blame] | 542 | __raw_rm_writeq(cpu_to_be64(start), invalidate); |
Alexey Kardashevskiy | 8e0a161 | 2013-08-28 18:37:43 +1000 | [diff] [blame] | 543 | else |
Benjamin Herrenschmidt | 3ad26e5 | 2013-10-11 18:23:53 +1100 | [diff] [blame] | 544 | __raw_writeq(cpu_to_be64(start), invalidate); |
Gavin Shan | 4cce955 | 2013-04-25 19:21:00 +0000 | [diff] [blame] | 545 | start += inc; |
| 546 | } |
| 547 | |
| 548 | /* |
| 549 | * The iommu layer will do another mb() for us on build() |
| 550 | * and we don't care on free() |
| 551 | */ |
| 552 | } |
| 553 | |
| 554 | static void pnv_pci_ioda2_tce_invalidate(struct pnv_ioda_pe *pe, |
| 555 | struct iommu_table *tbl, |
Benjamin Herrenschmidt | 3ad26e5 | 2013-10-11 18:23:53 +1100 | [diff] [blame] | 556 | __be64 *startp, __be64 *endp, bool rm) |
Gavin Shan | 4cce955 | 2013-04-25 19:21:00 +0000 | [diff] [blame] | 557 | { |
| 558 | unsigned long start, end, inc; |
Benjamin Herrenschmidt | 3ad26e5 | 2013-10-11 18:23:53 +1100 | [diff] [blame] | 559 | __be64 __iomem *invalidate = rm ? |
| 560 | (__be64 __iomem *)pe->tce_inval_reg_phys : |
| 561 | (__be64 __iomem *)tbl->it_index; |
Gavin Shan | 4cce955 | 2013-04-25 19:21:00 +0000 | [diff] [blame] | 562 | |
| 563 | /* We'll invalidate DMA address in PE scope */ |
| 564 | start = 0x2ul << 60; |
| 565 | start |= (pe->pe_number & 0xFF); |
| 566 | end = start; |
| 567 | |
| 568 | /* Figure out the start, end and step */ |
| 569 | inc = tbl->it_offset + (((u64)startp - tbl->it_base) / sizeof(u64)); |
| 570 | start |= (inc << 12); |
| 571 | inc = tbl->it_offset + (((u64)endp - tbl->it_base) / sizeof(u64)); |
| 572 | end |= (inc << 12); |
| 573 | inc = (0x1ul << 12); |
| 574 | mb(); |
| 575 | |
| 576 | while (start <= end) { |
Alexey Kardashevskiy | 8e0a161 | 2013-08-28 18:37:43 +1000 | [diff] [blame] | 577 | if (rm) |
Benjamin Herrenschmidt | 3ad26e5 | 2013-10-11 18:23:53 +1100 | [diff] [blame] | 578 | __raw_rm_writeq(cpu_to_be64(start), invalidate); |
Alexey Kardashevskiy | 8e0a161 | 2013-08-28 18:37:43 +1000 | [diff] [blame] | 579 | else |
Benjamin Herrenschmidt | 3ad26e5 | 2013-10-11 18:23:53 +1100 | [diff] [blame] | 580 | __raw_writeq(cpu_to_be64(start), invalidate); |
Gavin Shan | 4cce955 | 2013-04-25 19:21:00 +0000 | [diff] [blame] | 581 | start += inc; |
| 582 | } |
| 583 | } |
| 584 | |
| 585 | void pnv_pci_ioda_tce_invalidate(struct iommu_table *tbl, |
Benjamin Herrenschmidt | 3ad26e5 | 2013-10-11 18:23:53 +1100 | [diff] [blame] | 586 | __be64 *startp, __be64 *endp, bool rm) |
Gavin Shan | 4cce955 | 2013-04-25 19:21:00 +0000 | [diff] [blame] | 587 | { |
| 588 | struct pnv_ioda_pe *pe = container_of(tbl, struct pnv_ioda_pe, |
| 589 | tce32_table); |
| 590 | struct pnv_phb *phb = pe->phb; |
| 591 | |
| 592 | if (phb->type == PNV_PHB_IODA1) |
Alexey Kardashevskiy | 8e0a161 | 2013-08-28 18:37:43 +1000 | [diff] [blame] | 593 | pnv_pci_ioda1_tce_invalidate(pe, tbl, startp, endp, rm); |
Gavin Shan | 4cce955 | 2013-04-25 19:21:00 +0000 | [diff] [blame] | 594 | else |
Alexey Kardashevskiy | 8e0a161 | 2013-08-28 18:37:43 +1000 | [diff] [blame] | 595 | pnv_pci_ioda2_tce_invalidate(pe, tbl, startp, endp, rm); |
Gavin Shan | 4cce955 | 2013-04-25 19:21:00 +0000 | [diff] [blame] | 596 | } |
| 597 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 598 | static void pnv_pci_ioda_setup_dma_pe(struct pnv_phb *phb, |
| 599 | struct pnv_ioda_pe *pe, unsigned int base, |
| 600 | unsigned int segs) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 601 | { |
| 602 | |
| 603 | struct page *tce_mem = NULL; |
| 604 | const __be64 *swinvp; |
| 605 | struct iommu_table *tbl; |
| 606 | unsigned int i; |
| 607 | int64_t rc; |
| 608 | void *addr; |
| 609 | |
| 610 | /* 256M DMA window, 4K TCE pages, 8 bytes TCE */ |
| 611 | #define TCE32_TABLE_SIZE ((0x10000000 / 0x1000) * 8) |
| 612 | |
| 613 | /* XXX FIXME: Handle 64-bit only DMA devices */ |
| 614 | /* XXX FIXME: Provide 64-bit DMA facilities & non-4K TCE tables etc.. */ |
| 615 | /* XXX FIXME: Allocate multi-level tables on PHB3 */ |
| 616 | |
| 617 | /* We shouldn't already have a 32-bit DMA associated */ |
| 618 | if (WARN_ON(pe->tce32_seg >= 0)) |
| 619 | return; |
| 620 | |
| 621 | /* Grab a 32-bit TCE table */ |
| 622 | pe->tce32_seg = base; |
| 623 | pe_info(pe, " Setting up 32-bit TCE table at %08x..%08x\n", |
| 624 | (base << 28), ((base + segs) << 28) - 1); |
| 625 | |
| 626 | /* XXX Currently, we allocate one big contiguous table for the |
| 627 | * TCEs. We only really need one chunk per 256M of TCE space |
| 628 | * (ie per segment) but that's an optimization for later, it |
| 629 | * requires some added smarts with our get/put_tce implementation |
| 630 | */ |
| 631 | tce_mem = alloc_pages_node(phb->hose->node, GFP_KERNEL, |
| 632 | get_order(TCE32_TABLE_SIZE * segs)); |
| 633 | if (!tce_mem) { |
| 634 | pe_err(pe, " Failed to allocate a 32-bit TCE memory\n"); |
| 635 | goto fail; |
| 636 | } |
| 637 | addr = page_address(tce_mem); |
| 638 | memset(addr, 0, TCE32_TABLE_SIZE * segs); |
| 639 | |
| 640 | /* Configure HW */ |
| 641 | for (i = 0; i < segs; i++) { |
| 642 | rc = opal_pci_map_pe_dma_window(phb->opal_id, |
| 643 | pe->pe_number, |
| 644 | base + i, 1, |
| 645 | __pa(addr) + TCE32_TABLE_SIZE * i, |
| 646 | TCE32_TABLE_SIZE, 0x1000); |
| 647 | if (rc) { |
| 648 | pe_err(pe, " Failed to configure 32-bit TCE table," |
| 649 | " err %ld\n", rc); |
| 650 | goto fail; |
| 651 | } |
| 652 | } |
| 653 | |
| 654 | /* Setup linux iommu table */ |
| 655 | tbl = &pe->tce32_table; |
| 656 | pnv_pci_setup_iommu_table(tbl, addr, TCE32_TABLE_SIZE * segs, |
| 657 | base << 28); |
| 658 | |
| 659 | /* OPAL variant of P7IOC SW invalidated TCEs */ |
| 660 | swinvp = of_get_property(phb->hose->dn, "ibm,opal-tce-kill", NULL); |
| 661 | if (swinvp) { |
| 662 | /* We need a couple more fields -- an address and a data |
| 663 | * to or. Since the bus is only printed out on table free |
| 664 | * errors, and on the first pass the data will be a relative |
| 665 | * bus number, print that out instead. |
| 666 | */ |
| 667 | tbl->it_busno = 0; |
Alexey Kardashevskiy | 8e0a161 | 2013-08-28 18:37:43 +1000 | [diff] [blame] | 668 | pe->tce_inval_reg_phys = be64_to_cpup(swinvp); |
| 669 | tbl->it_index = (unsigned long)ioremap(pe->tce_inval_reg_phys, |
| 670 | 8); |
Gavin Shan | 373f565 | 2013-04-25 19:21:01 +0000 | [diff] [blame] | 671 | tbl->it_type = TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE | |
| 672 | TCE_PCI_SWINV_PAIR; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 673 | } |
| 674 | iommu_init_table(tbl, phb->hose->node); |
Alexey Kardashevskiy | 4e13c1a | 2013-05-21 13:33:09 +1000 | [diff] [blame] | 675 | iommu_register_group(tbl, pci_domain_nr(pe->pbus), pe->pe_number); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 676 | |
Benjamin Herrenschmidt | 74251fe | 2013-07-01 17:54:09 +1000 | [diff] [blame] | 677 | if (pe->pdev) |
Alexey Kardashevskiy | d905c5d | 2013-11-21 17:43:14 +1100 | [diff] [blame] | 678 | set_iommu_table_base_and_group(&pe->pdev->dev, tbl); |
Benjamin Herrenschmidt | 74251fe | 2013-07-01 17:54:09 +1000 | [diff] [blame] | 679 | else |
| 680 | pnv_ioda_setup_bus_dma(pe, pe->pbus); |
| 681 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 682 | return; |
| 683 | fail: |
| 684 | /* XXX Failure: Try to fallback to 64-bit only ? */ |
| 685 | if (pe->tce32_seg >= 0) |
| 686 | pe->tce32_seg = -1; |
| 687 | if (tce_mem) |
| 688 | __free_pages(tce_mem, get_order(TCE32_TABLE_SIZE * segs)); |
| 689 | } |
| 690 | |
Benjamin Herrenschmidt | cd15b04 | 2014-02-11 11:32:38 +1100 | [diff] [blame] | 691 | static void pnv_pci_ioda2_set_bypass(struct iommu_table *tbl, bool enable) |
| 692 | { |
| 693 | struct pnv_ioda_pe *pe = container_of(tbl, struct pnv_ioda_pe, |
| 694 | tce32_table); |
| 695 | uint16_t window_id = (pe->pe_number << 1 ) + 1; |
| 696 | int64_t rc; |
| 697 | |
| 698 | pe_info(pe, "%sabling 64-bit DMA bypass\n", enable ? "En" : "Dis"); |
| 699 | if (enable) { |
| 700 | phys_addr_t top = memblock_end_of_DRAM(); |
| 701 | |
| 702 | top = roundup_pow_of_two(top); |
| 703 | rc = opal_pci_map_pe_dma_window_real(pe->phb->opal_id, |
| 704 | pe->pe_number, |
| 705 | window_id, |
| 706 | pe->tce_bypass_base, |
| 707 | top); |
| 708 | } else { |
| 709 | rc = opal_pci_map_pe_dma_window_real(pe->phb->opal_id, |
| 710 | pe->pe_number, |
| 711 | window_id, |
| 712 | pe->tce_bypass_base, |
| 713 | 0); |
| 714 | |
| 715 | /* |
| 716 | * We might want to reset the DMA ops of all devices on |
| 717 | * this PE. However in theory, that shouldn't be necessary |
| 718 | * as this is used for VFIO/KVM pass-through and the device |
| 719 | * hasn't yet been returned to its kernel driver |
| 720 | */ |
| 721 | } |
| 722 | if (rc) |
| 723 | pe_err(pe, "OPAL error %lld configuring bypass window\n", rc); |
| 724 | else |
| 725 | pe->tce_bypass_enabled = enable; |
| 726 | } |
| 727 | |
| 728 | static void pnv_pci_ioda2_setup_bypass_pe(struct pnv_phb *phb, |
| 729 | struct pnv_ioda_pe *pe) |
| 730 | { |
| 731 | /* TVE #1 is selected by PCI address bit 59 */ |
| 732 | pe->tce_bypass_base = 1ull << 59; |
| 733 | |
| 734 | /* Install set_bypass callback for VFIO */ |
| 735 | pe->tce32_table.set_bypass = pnv_pci_ioda2_set_bypass; |
| 736 | |
| 737 | /* Enable bypass by default */ |
| 738 | pnv_pci_ioda2_set_bypass(&pe->tce32_table, true); |
| 739 | } |
| 740 | |
Gavin Shan | 373f565 | 2013-04-25 19:21:01 +0000 | [diff] [blame] | 741 | static void pnv_pci_ioda2_setup_dma_pe(struct pnv_phb *phb, |
| 742 | struct pnv_ioda_pe *pe) |
| 743 | { |
| 744 | struct page *tce_mem = NULL; |
| 745 | void *addr; |
| 746 | const __be64 *swinvp; |
| 747 | struct iommu_table *tbl; |
| 748 | unsigned int tce_table_size, end; |
| 749 | int64_t rc; |
| 750 | |
| 751 | /* We shouldn't already have a 32-bit DMA associated */ |
| 752 | if (WARN_ON(pe->tce32_seg >= 0)) |
| 753 | return; |
| 754 | |
| 755 | /* The PE will reserve all possible 32-bits space */ |
| 756 | pe->tce32_seg = 0; |
| 757 | end = (1 << ilog2(phb->ioda.m32_pci_base)); |
| 758 | tce_table_size = (end / 0x1000) * 8; |
| 759 | pe_info(pe, "Setting up 32-bit TCE table at 0..%08x\n", |
| 760 | end); |
| 761 | |
| 762 | /* Allocate TCE table */ |
| 763 | tce_mem = alloc_pages_node(phb->hose->node, GFP_KERNEL, |
| 764 | get_order(tce_table_size)); |
| 765 | if (!tce_mem) { |
| 766 | pe_err(pe, "Failed to allocate a 32-bit TCE memory\n"); |
| 767 | goto fail; |
| 768 | } |
| 769 | addr = page_address(tce_mem); |
| 770 | memset(addr, 0, tce_table_size); |
| 771 | |
| 772 | /* |
| 773 | * Map TCE table through TVT. The TVE index is the PE number |
| 774 | * shifted by 1 bit for 32-bits DMA space. |
| 775 | */ |
| 776 | rc = opal_pci_map_pe_dma_window(phb->opal_id, pe->pe_number, |
| 777 | pe->pe_number << 1, 1, __pa(addr), |
| 778 | tce_table_size, 0x1000); |
| 779 | if (rc) { |
| 780 | pe_err(pe, "Failed to configure 32-bit TCE table," |
| 781 | " err %ld\n", rc); |
| 782 | goto fail; |
| 783 | } |
| 784 | |
| 785 | /* Setup linux iommu table */ |
| 786 | tbl = &pe->tce32_table; |
| 787 | pnv_pci_setup_iommu_table(tbl, addr, tce_table_size, 0); |
| 788 | |
| 789 | /* OPAL variant of PHB3 invalidated TCEs */ |
| 790 | swinvp = of_get_property(phb->hose->dn, "ibm,opal-tce-kill", NULL); |
| 791 | if (swinvp) { |
| 792 | /* We need a couple more fields -- an address and a data |
| 793 | * to or. Since the bus is only printed out on table free |
| 794 | * errors, and on the first pass the data will be a relative |
| 795 | * bus number, print that out instead. |
| 796 | */ |
| 797 | tbl->it_busno = 0; |
Alexey Kardashevskiy | 8e0a161 | 2013-08-28 18:37:43 +1000 | [diff] [blame] | 798 | pe->tce_inval_reg_phys = be64_to_cpup(swinvp); |
| 799 | tbl->it_index = (unsigned long)ioremap(pe->tce_inval_reg_phys, |
| 800 | 8); |
Gavin Shan | 373f565 | 2013-04-25 19:21:01 +0000 | [diff] [blame] | 801 | tbl->it_type = TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE; |
| 802 | } |
| 803 | iommu_init_table(tbl, phb->hose->node); |
Thadeu Lima de Souza Cascardo | 08607af | 2013-12-09 14:41:01 -0200 | [diff] [blame] | 804 | iommu_register_group(tbl, pci_domain_nr(pe->pbus), pe->pe_number); |
Gavin Shan | 373f565 | 2013-04-25 19:21:01 +0000 | [diff] [blame] | 805 | |
Benjamin Herrenschmidt | 74251fe | 2013-07-01 17:54:09 +1000 | [diff] [blame] | 806 | if (pe->pdev) |
Alexey Kardashevskiy | d905c5d | 2013-11-21 17:43:14 +1100 | [diff] [blame] | 807 | set_iommu_table_base_and_group(&pe->pdev->dev, tbl); |
Benjamin Herrenschmidt | 74251fe | 2013-07-01 17:54:09 +1000 | [diff] [blame] | 808 | else |
| 809 | pnv_ioda_setup_bus_dma(pe, pe->pbus); |
| 810 | |
Benjamin Herrenschmidt | cd15b04 | 2014-02-11 11:32:38 +1100 | [diff] [blame] | 811 | /* Also create a bypass window */ |
| 812 | pnv_pci_ioda2_setup_bypass_pe(phb, pe); |
Gavin Shan | 373f565 | 2013-04-25 19:21:01 +0000 | [diff] [blame] | 813 | return; |
| 814 | fail: |
| 815 | if (pe->tce32_seg >= 0) |
| 816 | pe->tce32_seg = -1; |
| 817 | if (tce_mem) |
| 818 | __free_pages(tce_mem, get_order(tce_table_size)); |
| 819 | } |
| 820 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 821 | static void pnv_ioda_setup_dma(struct pnv_phb *phb) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 822 | { |
| 823 | struct pci_controller *hose = phb->hose; |
| 824 | unsigned int residual, remaining, segs, tw, base; |
| 825 | struct pnv_ioda_pe *pe; |
| 826 | |
| 827 | /* If we have more PE# than segments available, hand out one |
| 828 | * per PE until we run out and let the rest fail. If not, |
| 829 | * then we assign at least one segment per PE, plus more based |
| 830 | * on the amount of devices under that PE |
| 831 | */ |
| 832 | if (phb->ioda.dma_pe_count > phb->ioda.tce32_count) |
| 833 | residual = 0; |
| 834 | else |
| 835 | residual = phb->ioda.tce32_count - |
| 836 | phb->ioda.dma_pe_count; |
| 837 | |
| 838 | pr_info("PCI: Domain %04x has %ld available 32-bit DMA segments\n", |
| 839 | hose->global_number, phb->ioda.tce32_count); |
| 840 | pr_info("PCI: %d PE# for a total weight of %d\n", |
| 841 | phb->ioda.dma_pe_count, phb->ioda.dma_weight); |
| 842 | |
| 843 | /* Walk our PE list and configure their DMA segments, hand them |
| 844 | * out one base segment plus any residual segments based on |
| 845 | * weight |
| 846 | */ |
| 847 | remaining = phb->ioda.tce32_count; |
| 848 | tw = phb->ioda.dma_weight; |
| 849 | base = 0; |
Gavin Shan | 7ebdf95 | 2012-08-20 03:49:15 +0000 | [diff] [blame] | 850 | list_for_each_entry(pe, &phb->ioda.pe_dma_list, dma_link) { |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 851 | if (!pe->dma_weight) |
| 852 | continue; |
| 853 | if (!remaining) { |
| 854 | pe_warn(pe, "No DMA32 resources available\n"); |
| 855 | continue; |
| 856 | } |
| 857 | segs = 1; |
| 858 | if (residual) { |
| 859 | segs += ((pe->dma_weight * residual) + (tw / 2)) / tw; |
| 860 | if (segs > remaining) |
| 861 | segs = remaining; |
| 862 | } |
Gavin Shan | 373f565 | 2013-04-25 19:21:01 +0000 | [diff] [blame] | 863 | |
| 864 | /* |
| 865 | * For IODA2 compliant PHB3, we needn't care about the weight. |
| 866 | * The all available 32-bits DMA space will be assigned to |
| 867 | * the specific PE. |
| 868 | */ |
| 869 | if (phb->type == PNV_PHB_IODA1) { |
| 870 | pe_info(pe, "DMA weight %d, assigned %d DMA32 segments\n", |
| 871 | pe->dma_weight, segs); |
| 872 | pnv_pci_ioda_setup_dma_pe(phb, pe, base, segs); |
| 873 | } else { |
| 874 | pe_info(pe, "Assign DMA32 space\n"); |
| 875 | segs = 0; |
| 876 | pnv_pci_ioda2_setup_dma_pe(phb, pe); |
| 877 | } |
| 878 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 879 | remaining -= segs; |
| 880 | base += segs; |
| 881 | } |
| 882 | } |
| 883 | |
| 884 | #ifdef CONFIG_PCI_MSI |
Gavin Shan | 137436c | 2013-04-25 19:20:59 +0000 | [diff] [blame] | 885 | static void pnv_ioda2_msi_eoi(struct irq_data *d) |
| 886 | { |
| 887 | unsigned int hw_irq = (unsigned int)irqd_to_hwirq(d); |
| 888 | struct irq_chip *chip = irq_data_get_irq_chip(d); |
| 889 | struct pnv_phb *phb = container_of(chip, struct pnv_phb, |
| 890 | ioda.irq_chip); |
| 891 | int64_t rc; |
| 892 | |
| 893 | rc = opal_pci_msi_eoi(phb->opal_id, hw_irq); |
| 894 | WARN_ON_ONCE(rc); |
| 895 | |
| 896 | icp_native_eoi(d); |
| 897 | } |
| 898 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 899 | static int pnv_pci_ioda_msi_setup(struct pnv_phb *phb, struct pci_dev *dev, |
Gavin Shan | 137436c | 2013-04-25 19:20:59 +0000 | [diff] [blame] | 900 | unsigned int hwirq, unsigned int virq, |
| 901 | unsigned int is_64, struct msi_msg *msg) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 902 | { |
| 903 | struct pnv_ioda_pe *pe = pnv_ioda_get_pe(dev); |
Benjamin Herrenschmidt | b72c1f6 | 2013-05-21 22:58:21 +0000 | [diff] [blame] | 904 | struct pci_dn *pdn = pci_get_pdn(dev); |
Gavin Shan | 137436c | 2013-04-25 19:20:59 +0000 | [diff] [blame] | 905 | struct irq_data *idata; |
| 906 | struct irq_chip *ichip; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 907 | unsigned int xive_num = hwirq - phb->msi_base; |
Benjamin Herrenschmidt | 3a1a466 | 2013-09-23 12:05:01 +1000 | [diff] [blame] | 908 | __be32 data; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 909 | int rc; |
| 910 | |
| 911 | /* No PE assigned ? bail out ... no MSI for you ! */ |
| 912 | if (pe == NULL) |
| 913 | return -ENXIO; |
| 914 | |
| 915 | /* Check if we have an MVE */ |
| 916 | if (pe->mve_number < 0) |
| 917 | return -ENXIO; |
| 918 | |
Benjamin Herrenschmidt | b72c1f6 | 2013-05-21 22:58:21 +0000 | [diff] [blame] | 919 | /* Force 32-bit MSI on some broken devices */ |
| 920 | if (pdn && pdn->force_32bit_msi) |
| 921 | is_64 = 0; |
| 922 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 923 | /* Assign XIVE to PE */ |
| 924 | rc = opal_pci_set_xive_pe(phb->opal_id, pe->pe_number, xive_num); |
| 925 | if (rc) { |
| 926 | pr_warn("%s: OPAL error %d setting XIVE %d PE\n", |
| 927 | pci_name(dev), rc, xive_num); |
| 928 | return -EIO; |
| 929 | } |
| 930 | |
| 931 | if (is_64) { |
Benjamin Herrenschmidt | 3a1a466 | 2013-09-23 12:05:01 +1000 | [diff] [blame] | 932 | __be64 addr64; |
| 933 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 934 | rc = opal_get_msi_64(phb->opal_id, pe->mve_number, xive_num, 1, |
| 935 | &addr64, &data); |
| 936 | if (rc) { |
| 937 | pr_warn("%s: OPAL error %d getting 64-bit MSI data\n", |
| 938 | pci_name(dev), rc); |
| 939 | return -EIO; |
| 940 | } |
Benjamin Herrenschmidt | 3a1a466 | 2013-09-23 12:05:01 +1000 | [diff] [blame] | 941 | msg->address_hi = be64_to_cpu(addr64) >> 32; |
| 942 | msg->address_lo = be64_to_cpu(addr64) & 0xfffffffful; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 943 | } else { |
Benjamin Herrenschmidt | 3a1a466 | 2013-09-23 12:05:01 +1000 | [diff] [blame] | 944 | __be32 addr32; |
| 945 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 946 | rc = opal_get_msi_32(phb->opal_id, pe->mve_number, xive_num, 1, |
| 947 | &addr32, &data); |
| 948 | if (rc) { |
| 949 | pr_warn("%s: OPAL error %d getting 32-bit MSI data\n", |
| 950 | pci_name(dev), rc); |
| 951 | return -EIO; |
| 952 | } |
| 953 | msg->address_hi = 0; |
Benjamin Herrenschmidt | 3a1a466 | 2013-09-23 12:05:01 +1000 | [diff] [blame] | 954 | msg->address_lo = be32_to_cpu(addr32); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 955 | } |
Benjamin Herrenschmidt | 3a1a466 | 2013-09-23 12:05:01 +1000 | [diff] [blame] | 956 | msg->data = be32_to_cpu(data); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 957 | |
Gavin Shan | 137436c | 2013-04-25 19:20:59 +0000 | [diff] [blame] | 958 | /* |
| 959 | * Change the IRQ chip for the MSI interrupts on PHB3. |
| 960 | * The corresponding IRQ chip should be populated for |
| 961 | * the first time. |
| 962 | */ |
| 963 | if (phb->type == PNV_PHB_IODA2) { |
| 964 | if (!phb->ioda.irq_chip_init) { |
| 965 | idata = irq_get_irq_data(virq); |
| 966 | ichip = irq_data_get_irq_chip(idata); |
| 967 | phb->ioda.irq_chip_init = 1; |
| 968 | phb->ioda.irq_chip = *ichip; |
| 969 | phb->ioda.irq_chip.irq_eoi = pnv_ioda2_msi_eoi; |
| 970 | } |
| 971 | |
| 972 | irq_set_chip(virq, &phb->ioda.irq_chip); |
| 973 | } |
| 974 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 975 | pr_devel("%s: %s-bit MSI on hwirq %x (xive #%d)," |
| 976 | " address=%x_%08x data=%x PE# %d\n", |
| 977 | pci_name(dev), is_64 ? "64" : "32", hwirq, xive_num, |
| 978 | msg->address_hi, msg->address_lo, data, pe->pe_number); |
| 979 | |
| 980 | return 0; |
| 981 | } |
| 982 | |
| 983 | static void pnv_pci_init_ioda_msis(struct pnv_phb *phb) |
| 984 | { |
Gavin Shan | fb1b55d | 2013-03-05 21:12:37 +0000 | [diff] [blame] | 985 | unsigned int count; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 986 | const __be32 *prop = of_get_property(phb->hose->dn, |
| 987 | "ibm,opal-msi-ranges", NULL); |
| 988 | if (!prop) { |
| 989 | /* BML Fallback */ |
| 990 | prop = of_get_property(phb->hose->dn, "msi-ranges", NULL); |
| 991 | } |
| 992 | if (!prop) |
| 993 | return; |
| 994 | |
| 995 | phb->msi_base = be32_to_cpup(prop); |
Gavin Shan | fb1b55d | 2013-03-05 21:12:37 +0000 | [diff] [blame] | 996 | count = be32_to_cpup(prop + 1); |
| 997 | if (msi_bitmap_alloc(&phb->msi_bmp, count, phb->hose->dn)) { |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 998 | pr_err("PCI %d: Failed to allocate MSI bitmap !\n", |
| 999 | phb->hose->global_number); |
| 1000 | return; |
| 1001 | } |
Gavin Shan | fb1b55d | 2013-03-05 21:12:37 +0000 | [diff] [blame] | 1002 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1003 | phb->msi_setup = pnv_pci_ioda_msi_setup; |
| 1004 | phb->msi32_support = 1; |
| 1005 | pr_info(" Allocated bitmap for %d MSIs (base IRQ 0x%x)\n", |
Gavin Shan | fb1b55d | 2013-03-05 21:12:37 +0000 | [diff] [blame] | 1006 | count, phb->msi_base); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1007 | } |
| 1008 | #else |
| 1009 | static void pnv_pci_init_ioda_msis(struct pnv_phb *phb) { } |
| 1010 | #endif /* CONFIG_PCI_MSI */ |
| 1011 | |
Gavin Shan | 11685be | 2012-08-20 03:49:16 +0000 | [diff] [blame] | 1012 | /* |
| 1013 | * This function is supposed to be called on basis of PE from top |
| 1014 | * to bottom style. So the the I/O or MMIO segment assigned to |
| 1015 | * parent PE could be overrided by its child PEs if necessary. |
| 1016 | */ |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 1017 | static void pnv_ioda_setup_pe_seg(struct pci_controller *hose, |
| 1018 | struct pnv_ioda_pe *pe) |
Gavin Shan | 11685be | 2012-08-20 03:49:16 +0000 | [diff] [blame] | 1019 | { |
| 1020 | struct pnv_phb *phb = hose->private_data; |
| 1021 | struct pci_bus_region region; |
| 1022 | struct resource *res; |
| 1023 | int i, index; |
| 1024 | int rc; |
| 1025 | |
| 1026 | /* |
| 1027 | * NOTE: We only care PCI bus based PE for now. For PCI |
| 1028 | * device based PE, for example SRIOV sensitive VF should |
| 1029 | * be figured out later. |
| 1030 | */ |
| 1031 | BUG_ON(!(pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL))); |
| 1032 | |
| 1033 | pci_bus_for_each_resource(pe->pbus, res, i) { |
| 1034 | if (!res || !res->flags || |
| 1035 | res->start > res->end) |
| 1036 | continue; |
| 1037 | |
| 1038 | if (res->flags & IORESOURCE_IO) { |
| 1039 | region.start = res->start - phb->ioda.io_pci_base; |
| 1040 | region.end = res->end - phb->ioda.io_pci_base; |
| 1041 | index = region.start / phb->ioda.io_segsize; |
| 1042 | |
| 1043 | while (index < phb->ioda.total_pe && |
| 1044 | region.start <= region.end) { |
| 1045 | phb->ioda.io_segmap[index] = pe->pe_number; |
| 1046 | rc = opal_pci_map_pe_mmio_window(phb->opal_id, |
| 1047 | pe->pe_number, OPAL_IO_WINDOW_TYPE, 0, index); |
| 1048 | if (rc != OPAL_SUCCESS) { |
| 1049 | pr_err("%s: OPAL error %d when mapping IO " |
| 1050 | "segment #%d to PE#%d\n", |
| 1051 | __func__, rc, index, pe->pe_number); |
| 1052 | break; |
| 1053 | } |
| 1054 | |
| 1055 | region.start += phb->ioda.io_segsize; |
| 1056 | index++; |
| 1057 | } |
| 1058 | } else if (res->flags & IORESOURCE_MEM) { |
Benjamin Herrenschmidt | 3fd47f0 | 2013-05-06 13:40:40 +1000 | [diff] [blame] | 1059 | /* WARNING: Assumes M32 is mem region 0 in PHB. We need to |
| 1060 | * harden that algorithm when we start supporting M64 |
| 1061 | */ |
Gavin Shan | 11685be | 2012-08-20 03:49:16 +0000 | [diff] [blame] | 1062 | region.start = res->start - |
Benjamin Herrenschmidt | 3fd47f0 | 2013-05-06 13:40:40 +1000 | [diff] [blame] | 1063 | hose->mem_offset[0] - |
Gavin Shan | 11685be | 2012-08-20 03:49:16 +0000 | [diff] [blame] | 1064 | phb->ioda.m32_pci_base; |
| 1065 | region.end = res->end - |
Benjamin Herrenschmidt | 3fd47f0 | 2013-05-06 13:40:40 +1000 | [diff] [blame] | 1066 | hose->mem_offset[0] - |
Gavin Shan | 11685be | 2012-08-20 03:49:16 +0000 | [diff] [blame] | 1067 | phb->ioda.m32_pci_base; |
| 1068 | index = region.start / phb->ioda.m32_segsize; |
| 1069 | |
| 1070 | while (index < phb->ioda.total_pe && |
| 1071 | region.start <= region.end) { |
| 1072 | phb->ioda.m32_segmap[index] = pe->pe_number; |
| 1073 | rc = opal_pci_map_pe_mmio_window(phb->opal_id, |
| 1074 | pe->pe_number, OPAL_M32_WINDOW_TYPE, 0, index); |
| 1075 | if (rc != OPAL_SUCCESS) { |
| 1076 | pr_err("%s: OPAL error %d when mapping M32 " |
| 1077 | "segment#%d to PE#%d", |
| 1078 | __func__, rc, index, pe->pe_number); |
| 1079 | break; |
| 1080 | } |
| 1081 | |
| 1082 | region.start += phb->ioda.m32_segsize; |
| 1083 | index++; |
| 1084 | } |
| 1085 | } |
| 1086 | } |
| 1087 | } |
| 1088 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 1089 | static void pnv_pci_ioda_setup_seg(void) |
Gavin Shan | 11685be | 2012-08-20 03:49:16 +0000 | [diff] [blame] | 1090 | { |
| 1091 | struct pci_controller *tmp, *hose; |
| 1092 | struct pnv_phb *phb; |
| 1093 | struct pnv_ioda_pe *pe; |
| 1094 | |
| 1095 | list_for_each_entry_safe(hose, tmp, &hose_list, list_node) { |
| 1096 | phb = hose->private_data; |
| 1097 | list_for_each_entry(pe, &phb->ioda.pe_list, list) { |
| 1098 | pnv_ioda_setup_pe_seg(hose, pe); |
| 1099 | } |
| 1100 | } |
| 1101 | } |
| 1102 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 1103 | static void pnv_pci_ioda_setup_DMA(void) |
Gavin Shan | 13395c4 | 2012-08-20 03:49:17 +0000 | [diff] [blame] | 1104 | { |
| 1105 | struct pci_controller *hose, *tmp; |
Gavin Shan | db1266c | 2012-08-20 03:49:18 +0000 | [diff] [blame] | 1106 | struct pnv_phb *phb; |
Gavin Shan | 13395c4 | 2012-08-20 03:49:17 +0000 | [diff] [blame] | 1107 | |
| 1108 | list_for_each_entry_safe(hose, tmp, &hose_list, list_node) { |
| 1109 | pnv_ioda_setup_dma(hose->private_data); |
Gavin Shan | db1266c | 2012-08-20 03:49:18 +0000 | [diff] [blame] | 1110 | |
| 1111 | /* Mark the PHB initialization done */ |
| 1112 | phb = hose->private_data; |
| 1113 | phb->initialized = 1; |
Gavin Shan | 13395c4 | 2012-08-20 03:49:17 +0000 | [diff] [blame] | 1114 | } |
| 1115 | } |
| 1116 | |
Gavin Shan | 37c367f | 2013-06-20 18:13:25 +0800 | [diff] [blame] | 1117 | static void pnv_pci_ioda_create_dbgfs(void) |
| 1118 | { |
| 1119 | #ifdef CONFIG_DEBUG_FS |
| 1120 | struct pci_controller *hose, *tmp; |
| 1121 | struct pnv_phb *phb; |
| 1122 | char name[16]; |
| 1123 | |
| 1124 | list_for_each_entry_safe(hose, tmp, &hose_list, list_node) { |
| 1125 | phb = hose->private_data; |
| 1126 | |
| 1127 | sprintf(name, "PCI%04x", hose->global_number); |
| 1128 | phb->dbgfs = debugfs_create_dir(name, powerpc_debugfs_root); |
| 1129 | if (!phb->dbgfs) |
| 1130 | pr_warning("%s: Error on creating debugfs on PHB#%x\n", |
| 1131 | __func__, hose->global_number); |
| 1132 | } |
| 1133 | #endif /* CONFIG_DEBUG_FS */ |
| 1134 | } |
| 1135 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 1136 | static void pnv_pci_ioda_fixup(void) |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 1137 | { |
| 1138 | pnv_pci_ioda_setup_PEs(); |
Gavin Shan | 11685be | 2012-08-20 03:49:16 +0000 | [diff] [blame] | 1139 | pnv_pci_ioda_setup_seg(); |
Gavin Shan | 13395c4 | 2012-08-20 03:49:17 +0000 | [diff] [blame] | 1140 | pnv_pci_ioda_setup_DMA(); |
Gavin Shan | e9cc17d | 2013-06-20 13:21:14 +0800 | [diff] [blame] | 1141 | |
Gavin Shan | 37c367f | 2013-06-20 18:13:25 +0800 | [diff] [blame] | 1142 | pnv_pci_ioda_create_dbgfs(); |
| 1143 | |
Gavin Shan | e9cc17d | 2013-06-20 13:21:14 +0800 | [diff] [blame] | 1144 | #ifdef CONFIG_EEH |
Gavin Shan | 88b6d14 | 2013-06-27 13:46:45 +0800 | [diff] [blame] | 1145 | eeh_probe_mode_set(EEH_PROBE_MODE_DEV); |
Gavin Shan | e9cc17d | 2013-06-20 13:21:14 +0800 | [diff] [blame] | 1146 | eeh_addr_cache_build(); |
| 1147 | eeh_init(); |
| 1148 | #endif |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 1149 | } |
| 1150 | |
Gavin Shan | 271fd03 | 2012-09-11 16:59:47 -0600 | [diff] [blame] | 1151 | /* |
| 1152 | * Returns the alignment for I/O or memory windows for P2P |
| 1153 | * bridges. That actually depends on how PEs are segmented. |
| 1154 | * For now, we return I/O or M32 segment size for PE sensitive |
| 1155 | * P2P bridges. Otherwise, the default values (4KiB for I/O, |
| 1156 | * 1MiB for memory) will be returned. |
| 1157 | * |
| 1158 | * The current PCI bus might be put into one PE, which was |
| 1159 | * create against the parent PCI bridge. For that case, we |
| 1160 | * needn't enlarge the alignment so that we can save some |
| 1161 | * resources. |
| 1162 | */ |
| 1163 | static resource_size_t pnv_pci_window_alignment(struct pci_bus *bus, |
| 1164 | unsigned long type) |
| 1165 | { |
| 1166 | struct pci_dev *bridge; |
| 1167 | struct pci_controller *hose = pci_bus_to_host(bus); |
| 1168 | struct pnv_phb *phb = hose->private_data; |
| 1169 | int num_pci_bridges = 0; |
| 1170 | |
| 1171 | bridge = bus->self; |
| 1172 | while (bridge) { |
| 1173 | if (pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE) { |
| 1174 | num_pci_bridges++; |
| 1175 | if (num_pci_bridges >= 2) |
| 1176 | return 1; |
| 1177 | } |
| 1178 | |
| 1179 | bridge = bridge->bus->self; |
| 1180 | } |
| 1181 | |
| 1182 | /* We need support prefetchable memory window later */ |
| 1183 | if (type & IORESOURCE_MEM) |
| 1184 | return phb->ioda.m32_segsize; |
| 1185 | |
| 1186 | return phb->ioda.io_segsize; |
| 1187 | } |
| 1188 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1189 | /* Prevent enabling devices for which we couldn't properly |
| 1190 | * assign a PE |
| 1191 | */ |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 1192 | static int pnv_pci_enable_device_hook(struct pci_dev *dev) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1193 | { |
Gavin Shan | db1266c | 2012-08-20 03:49:18 +0000 | [diff] [blame] | 1194 | struct pci_controller *hose = pci_bus_to_host(dev->bus); |
| 1195 | struct pnv_phb *phb = hose->private_data; |
| 1196 | struct pci_dn *pdn; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1197 | |
Gavin Shan | db1266c | 2012-08-20 03:49:18 +0000 | [diff] [blame] | 1198 | /* The function is probably called while the PEs have |
| 1199 | * not be created yet. For example, resource reassignment |
| 1200 | * during PCI probe period. We just skip the check if |
| 1201 | * PEs isn't ready. |
| 1202 | */ |
| 1203 | if (!phb->initialized) |
| 1204 | return 0; |
| 1205 | |
Benjamin Herrenschmidt | b72c1f6 | 2013-05-21 22:58:21 +0000 | [diff] [blame] | 1206 | pdn = pci_get_pdn(dev); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1207 | if (!pdn || pdn->pe_number == IODA_INVALID_PE) |
| 1208 | return -EINVAL; |
Gavin Shan | db1266c | 2012-08-20 03:49:18 +0000 | [diff] [blame] | 1209 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1210 | return 0; |
| 1211 | } |
| 1212 | |
| 1213 | static u32 pnv_ioda_bdfn_to_pe(struct pnv_phb *phb, struct pci_bus *bus, |
| 1214 | u32 devfn) |
| 1215 | { |
| 1216 | return phb->ioda.pe_rmap[(bus->number << 8) | devfn]; |
| 1217 | } |
| 1218 | |
Benjamin Herrenschmidt | 73ed148 | 2013-05-10 16:59:18 +1000 | [diff] [blame] | 1219 | static void pnv_pci_ioda_shutdown(struct pnv_phb *phb) |
| 1220 | { |
| 1221 | opal_pci_reset(phb->opal_id, OPAL_PCI_IODA_TABLE_RESET, |
| 1222 | OPAL_ASSERT_RESET); |
| 1223 | } |
| 1224 | |
Gavin Shan | e9cc17d | 2013-06-20 13:21:14 +0800 | [diff] [blame] | 1225 | void __init pnv_pci_init_ioda_phb(struct device_node *np, |
| 1226 | u64 hub_id, int ioda_type) |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1227 | { |
| 1228 | struct pci_controller *hose; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1229 | struct pnv_phb *phb; |
Gavin Shan | 8184616 | 2013-12-26 09:29:40 +0800 | [diff] [blame] | 1230 | unsigned long size, m32map_off, pemap_off, iomap_off = 0; |
Alistair Popple | c681b93 | 2013-09-23 12:04:57 +1000 | [diff] [blame] | 1231 | const __be64 *prop64; |
Benjamin Herrenschmidt | 3a1a466 | 2013-09-23 12:05:01 +1000 | [diff] [blame] | 1232 | const __be32 *prop32; |
Gavin Shan | f1b7cc3 | 2013-07-31 16:47:01 +0800 | [diff] [blame] | 1233 | int len; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1234 | u64 phb_id; |
| 1235 | void *aux; |
| 1236 | long rc; |
| 1237 | |
Gavin Shan | 58d714e | 2013-07-31 16:47:00 +0800 | [diff] [blame] | 1238 | pr_info("Initializing IODA%d OPAL PHB %s\n", ioda_type, np->full_name); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1239 | |
| 1240 | prop64 = of_get_property(np, "ibm,opal-phbid", NULL); |
| 1241 | if (!prop64) { |
| 1242 | pr_err(" Missing \"ibm,opal-phbid\" property !\n"); |
| 1243 | return; |
| 1244 | } |
| 1245 | phb_id = be64_to_cpup(prop64); |
| 1246 | pr_debug(" PHB-ID : 0x%016llx\n", phb_id); |
| 1247 | |
| 1248 | phb = alloc_bootmem(sizeof(struct pnv_phb)); |
Gavin Shan | 58d714e | 2013-07-31 16:47:00 +0800 | [diff] [blame] | 1249 | if (!phb) { |
| 1250 | pr_err(" Out of memory !\n"); |
| 1251 | return; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1252 | } |
Gavin Shan | 58d714e | 2013-07-31 16:47:00 +0800 | [diff] [blame] | 1253 | |
| 1254 | /* Allocate PCI controller */ |
| 1255 | memset(phb, 0, sizeof(struct pnv_phb)); |
| 1256 | phb->hose = hose = pcibios_alloc_controller(np); |
| 1257 | if (!phb->hose) { |
| 1258 | pr_err(" Can't allocate PCI controller for %s\n", |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1259 | np->full_name); |
Gavin Shan | 58d714e | 2013-07-31 16:47:00 +0800 | [diff] [blame] | 1260 | free_bootmem((unsigned long)phb, sizeof(struct pnv_phb)); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1261 | return; |
| 1262 | } |
| 1263 | |
| 1264 | spin_lock_init(&phb->lock); |
Gavin Shan | f1b7cc3 | 2013-07-31 16:47:01 +0800 | [diff] [blame] | 1265 | prop32 = of_get_property(np, "bus-range", &len); |
| 1266 | if (prop32 && len == 8) { |
Benjamin Herrenschmidt | 3a1a466 | 2013-09-23 12:05:01 +1000 | [diff] [blame] | 1267 | hose->first_busno = be32_to_cpu(prop32[0]); |
| 1268 | hose->last_busno = be32_to_cpu(prop32[1]); |
Gavin Shan | f1b7cc3 | 2013-07-31 16:47:01 +0800 | [diff] [blame] | 1269 | } else { |
| 1270 | pr_warn(" Broken <bus-range> on %s\n", np->full_name); |
| 1271 | hose->first_busno = 0; |
| 1272 | hose->last_busno = 0xff; |
| 1273 | } |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1274 | hose->private_data = phb; |
Gavin Shan | e9cc17d | 2013-06-20 13:21:14 +0800 | [diff] [blame] | 1275 | phb->hub_id = hub_id; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1276 | phb->opal_id = phb_id; |
Gavin Shan | aa0c033 | 2013-04-25 19:20:57 +0000 | [diff] [blame] | 1277 | phb->type = ioda_type; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1278 | |
Benjamin Herrenschmidt | cee72d5 | 2011-11-29 18:22:53 +0000 | [diff] [blame] | 1279 | /* Detect specific models for error handling */ |
| 1280 | if (of_device_is_compatible(np, "ibm,p7ioc-pciex")) |
| 1281 | phb->model = PNV_PHB_MODEL_P7IOC; |
Benjamin Herrenschmidt | f3d40c2 | 2013-05-04 14:24:32 +0000 | [diff] [blame] | 1282 | else if (of_device_is_compatible(np, "ibm,power8-pciex")) |
Gavin Shan | aa0c033 | 2013-04-25 19:20:57 +0000 | [diff] [blame] | 1283 | phb->model = PNV_PHB_MODEL_PHB3; |
Benjamin Herrenschmidt | cee72d5 | 2011-11-29 18:22:53 +0000 | [diff] [blame] | 1284 | else |
| 1285 | phb->model = PNV_PHB_MODEL_UNKNOWN; |
| 1286 | |
Gavin Shan | aa0c033 | 2013-04-25 19:20:57 +0000 | [diff] [blame] | 1287 | /* Parse 32-bit and IO ranges (if any) */ |
Gavin Shan | 2f1ec02 | 2013-07-31 16:47:02 +0800 | [diff] [blame] | 1288 | pci_process_bridge_OF_ranges(hose, np, !hose->global_number); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1289 | |
Gavin Shan | aa0c033 | 2013-04-25 19:20:57 +0000 | [diff] [blame] | 1290 | /* Get registers */ |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1291 | phb->regs = of_iomap(np, 0); |
| 1292 | if (phb->regs == NULL) |
| 1293 | pr_err(" Failed to map registers !\n"); |
| 1294 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1295 | /* Initialize more IODA stuff */ |
Gavin Shan | 36954dc | 2013-11-04 16:32:47 +0800 | [diff] [blame] | 1296 | phb->ioda.total_pe = 1; |
Gavin Shan | aa0c033 | 2013-04-25 19:20:57 +0000 | [diff] [blame] | 1297 | prop32 = of_get_property(np, "ibm,opal-num-pes", NULL); |
Gavin Shan | 36954dc | 2013-11-04 16:32:47 +0800 | [diff] [blame] | 1298 | if (prop32) |
Benjamin Herrenschmidt | 3a1a466 | 2013-09-23 12:05:01 +1000 | [diff] [blame] | 1299 | phb->ioda.total_pe = be32_to_cpup(prop32); |
Gavin Shan | 36954dc | 2013-11-04 16:32:47 +0800 | [diff] [blame] | 1300 | prop32 = of_get_property(np, "ibm,opal-reserved-pe", NULL); |
| 1301 | if (prop32) |
| 1302 | phb->ioda.reserved_pe = be32_to_cpup(prop32); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1303 | phb->ioda.m32_size = resource_size(&hose->mem_resources[0]); |
Gavin Shan | aa0c033 | 2013-04-25 19:20:57 +0000 | [diff] [blame] | 1304 | /* FW Has already off top 64k of M32 space (MSI space) */ |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1305 | phb->ioda.m32_size += 0x10000; |
| 1306 | |
| 1307 | phb->ioda.m32_segsize = phb->ioda.m32_size / phb->ioda.total_pe; |
Benjamin Herrenschmidt | 3fd47f0 | 2013-05-06 13:40:40 +1000 | [diff] [blame] | 1308 | phb->ioda.m32_pci_base = hose->mem_resources[0].start - hose->mem_offset[0]; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1309 | phb->ioda.io_size = hose->pci_io_size; |
| 1310 | phb->ioda.io_segsize = phb->ioda.io_size / phb->ioda.total_pe; |
| 1311 | phb->ioda.io_pci_base = 0; /* XXX calculate this ? */ |
| 1312 | |
Gavin Shan | c35d2a8 | 2013-07-31 16:47:04 +0800 | [diff] [blame] | 1313 | /* Allocate aux data & arrays. We don't have IO ports on PHB3 */ |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1314 | size = _ALIGN_UP(phb->ioda.total_pe / 8, sizeof(unsigned long)); |
| 1315 | m32map_off = size; |
Gavin Shan | e47747f | 2012-08-20 03:49:19 +0000 | [diff] [blame] | 1316 | size += phb->ioda.total_pe * sizeof(phb->ioda.m32_segmap[0]); |
Gavin Shan | c35d2a8 | 2013-07-31 16:47:04 +0800 | [diff] [blame] | 1317 | if (phb->type == PNV_PHB_IODA1) { |
| 1318 | iomap_off = size; |
| 1319 | size += phb->ioda.total_pe * sizeof(phb->ioda.io_segmap[0]); |
| 1320 | } |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1321 | pemap_off = size; |
| 1322 | size += phb->ioda.total_pe * sizeof(struct pnv_ioda_pe); |
| 1323 | aux = alloc_bootmem(size); |
| 1324 | memset(aux, 0, size); |
| 1325 | phb->ioda.pe_alloc = aux; |
| 1326 | phb->ioda.m32_segmap = aux + m32map_off; |
Gavin Shan | c35d2a8 | 2013-07-31 16:47:04 +0800 | [diff] [blame] | 1327 | if (phb->type == PNV_PHB_IODA1) |
| 1328 | phb->ioda.io_segmap = aux + iomap_off; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1329 | phb->ioda.pe_array = aux + pemap_off; |
Gavin Shan | 36954dc | 2013-11-04 16:32:47 +0800 | [diff] [blame] | 1330 | set_bit(phb->ioda.reserved_pe, phb->ioda.pe_alloc); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1331 | |
Gavin Shan | 7ebdf95 | 2012-08-20 03:49:15 +0000 | [diff] [blame] | 1332 | INIT_LIST_HEAD(&phb->ioda.pe_dma_list); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1333 | INIT_LIST_HEAD(&phb->ioda.pe_list); |
| 1334 | |
| 1335 | /* Calculate how many 32-bit TCE segments we have */ |
| 1336 | phb->ioda.tce32_count = phb->ioda.m32_pci_base >> 28; |
| 1337 | |
| 1338 | /* Clear unusable m64 */ |
| 1339 | hose->mem_resources[1].flags = 0; |
| 1340 | hose->mem_resources[1].start = 0; |
| 1341 | hose->mem_resources[1].end = 0; |
| 1342 | hose->mem_resources[2].flags = 0; |
| 1343 | hose->mem_resources[2].start = 0; |
| 1344 | hose->mem_resources[2].end = 0; |
| 1345 | |
Gavin Shan | aa0c033 | 2013-04-25 19:20:57 +0000 | [diff] [blame] | 1346 | #if 0 /* We should really do that ... */ |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1347 | rc = opal_pci_set_phb_mem_window(opal->phb_id, |
| 1348 | window_type, |
| 1349 | window_num, |
| 1350 | starting_real_address, |
| 1351 | starting_pci_address, |
| 1352 | segment_size); |
| 1353 | #endif |
| 1354 | |
Gavin Shan | 36954dc | 2013-11-04 16:32:47 +0800 | [diff] [blame] | 1355 | pr_info(" %d (%d) PE's M32: 0x%x [segment=0x%x]" |
| 1356 | " IO: 0x%x [segment=0x%x]\n", |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1357 | phb->ioda.total_pe, |
Gavin Shan | 36954dc | 2013-11-04 16:32:47 +0800 | [diff] [blame] | 1358 | phb->ioda.reserved_pe, |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1359 | phb->ioda.m32_size, phb->ioda.m32_segsize, |
| 1360 | phb->ioda.io_size, phb->ioda.io_segsize); |
| 1361 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1362 | phb->hose->ops = &pnv_pci_ops; |
Gavin Shan | e9cc17d | 2013-06-20 13:21:14 +0800 | [diff] [blame] | 1363 | #ifdef CONFIG_EEH |
| 1364 | phb->eeh_ops = &ioda_eeh_ops; |
| 1365 | #endif |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1366 | |
| 1367 | /* Setup RID -> PE mapping function */ |
| 1368 | phb->bdfn_to_pe = pnv_ioda_bdfn_to_pe; |
| 1369 | |
| 1370 | /* Setup TCEs */ |
| 1371 | phb->dma_dev_setup = pnv_pci_ioda_dma_dev_setup; |
Benjamin Herrenschmidt | cd15b04 | 2014-02-11 11:32:38 +1100 | [diff] [blame] | 1372 | phb->dma_set_mask = pnv_pci_ioda_dma_set_mask; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1373 | |
Benjamin Herrenschmidt | 73ed148 | 2013-05-10 16:59:18 +1000 | [diff] [blame] | 1374 | /* Setup shutdown function for kexec */ |
| 1375 | phb->shutdown = pnv_pci_ioda_shutdown; |
| 1376 | |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1377 | /* Setup MSI support */ |
| 1378 | pnv_pci_init_ioda_msis(phb); |
| 1379 | |
Gavin Shan | c40a421 | 2012-08-20 03:49:20 +0000 | [diff] [blame] | 1380 | /* |
| 1381 | * We pass the PCI probe flag PCI_REASSIGN_ALL_RSRC here |
| 1382 | * to let the PCI core do resource assignment. It's supposed |
| 1383 | * that the PCI core will do correct I/O and MMIO alignment |
| 1384 | * for the P2P bridge bars so that each PCI bus (excluding |
| 1385 | * the child P2P bridges) can form individual PE. |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1386 | */ |
Gavin Shan | fb446ad | 2012-08-20 03:49:14 +0000 | [diff] [blame] | 1387 | ppc_md.pcibios_fixup = pnv_pci_ioda_fixup; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1388 | ppc_md.pcibios_enable_device_hook = pnv_pci_enable_device_hook; |
Gavin Shan | 271fd03 | 2012-09-11 16:59:47 -0600 | [diff] [blame] | 1389 | ppc_md.pcibios_window_alignment = pnv_pci_window_alignment; |
Gavin Shan | d92a208 | 2014-04-24 18:00:24 +1000 | [diff] [blame] | 1390 | ppc_md.pcibios_reset_secondary_bus = pnv_pci_reset_secondary_bus; |
Gavin Shan | c40a421 | 2012-08-20 03:49:20 +0000 | [diff] [blame] | 1391 | pci_add_flags(PCI_REASSIGN_ALL_RSRC); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1392 | |
| 1393 | /* Reset IODA tables to a clean state */ |
Benjamin Herrenschmidt | f11fe55 | 2011-11-29 18:22:50 +0000 | [diff] [blame] | 1394 | rc = opal_pci_reset(phb_id, OPAL_PCI_IODA_TABLE_RESET, OPAL_ASSERT_RESET); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1395 | if (rc) |
Benjamin Herrenschmidt | f11fe55 | 2011-11-29 18:22:50 +0000 | [diff] [blame] | 1396 | pr_warning(" OPAL Error %ld performing IODA table reset !\n", rc); |
Gavin Shan | 361f2a2 | 2014-04-24 18:00:25 +1000 | [diff] [blame^] | 1397 | |
| 1398 | /* If we're running in kdump kerenl, the previous kerenl never |
| 1399 | * shutdown PCI devices correctly. We already got IODA table |
| 1400 | * cleaned out. So we have to issue PHB reset to stop all PCI |
| 1401 | * transactions from previous kerenl. |
| 1402 | */ |
| 1403 | if (is_kdump_kernel()) { |
| 1404 | pr_info(" Issue PHB reset ...\n"); |
| 1405 | ioda_eeh_phb_reset(hose, EEH_RESET_FUNDAMENTAL); |
| 1406 | ioda_eeh_phb_reset(hose, OPAL_DEASSERT_RESET); |
| 1407 | } |
Gavin Shan | aa0c033 | 2013-04-25 19:20:57 +0000 | [diff] [blame] | 1408 | } |
| 1409 | |
Bjorn Helgaas | 6797500 | 2013-07-02 12:20:03 -0600 | [diff] [blame] | 1410 | void __init pnv_pci_init_ioda2_phb(struct device_node *np) |
Gavin Shan | aa0c033 | 2013-04-25 19:20:57 +0000 | [diff] [blame] | 1411 | { |
Gavin Shan | e9cc17d | 2013-06-20 13:21:14 +0800 | [diff] [blame] | 1412 | pnv_pci_init_ioda_phb(np, 0, PNV_PHB_IODA2); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1413 | } |
| 1414 | |
| 1415 | void __init pnv_pci_init_ioda_hub(struct device_node *np) |
| 1416 | { |
| 1417 | struct device_node *phbn; |
Alistair Popple | c681b93 | 2013-09-23 12:04:57 +1000 | [diff] [blame] | 1418 | const __be64 *prop64; |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1419 | u64 hub_id; |
| 1420 | |
| 1421 | pr_info("Probing IODA IO-Hub %s\n", np->full_name); |
| 1422 | |
| 1423 | prop64 = of_get_property(np, "ibm,opal-hubid", NULL); |
| 1424 | if (!prop64) { |
| 1425 | pr_err(" Missing \"ibm,opal-hubid\" property !\n"); |
| 1426 | return; |
| 1427 | } |
| 1428 | hub_id = be64_to_cpup(prop64); |
| 1429 | pr_devel(" HUB-ID : 0x%016llx\n", hub_id); |
| 1430 | |
| 1431 | /* Count child PHBs */ |
| 1432 | for_each_child_of_node(np, phbn) { |
| 1433 | /* Look for IODA1 PHBs */ |
| 1434 | if (of_device_is_compatible(phbn, "ibm,ioda-phb")) |
Gavin Shan | e9cc17d | 2013-06-20 13:21:14 +0800 | [diff] [blame] | 1435 | pnv_pci_init_ioda_phb(phbn, hub_id, PNV_PHB_IODA1); |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 1436 | } |
| 1437 | } |