blob: 319ed61d674a682475e6280cdee1eb46cab778f7 [file] [log] [blame]
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001/*
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 Herrenschmidtcee72d52011-11-29 18:22:53 +000012#undef DEBUG
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000013
14#include <linux/kernel.h>
15#include <linux/pci.h>
16#include <linux/delay.h>
17#include <linux/string.h>
18#include <linux/init.h>
19#include <linux/bootmem.h>
20#include <linux/irq.h>
21#include <linux/io.h>
22#include <linux/msi.h>
23
24#include <asm/sections.h>
25#include <asm/io.h>
26#include <asm/prom.h>
27#include <asm/pci-bridge.h>
28#include <asm/machdep.h>
Gavin Shanfb1b55d2013-03-05 21:12:37 +000029#include <asm/msi_bitmap.h>
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000030#include <asm/ppc-pci.h>
31#include <asm/opal.h>
32#include <asm/iommu.h>
33#include <asm/tce.h>
Gavin Shan137436c2013-04-25 19:20:59 +000034#include <asm/xics.h>
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000035
36#include "powernv.h"
37#include "pci.h"
38
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000039#define define_pe_printk_level(func, kern_level) \
40static int func(const struct pnv_ioda_pe *pe, const char *fmt, ...) \
41{ \
42 struct va_format vaf; \
43 va_list args; \
Gavin Shan490e0782012-10-17 19:53:30 +000044 char pfix[32]; \
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000045 int r; \
46 \
47 va_start(args, fmt); \
48 \
49 vaf.fmt = fmt; \
50 vaf.va = &args; \
51 \
Gavin Shan490e0782012-10-17 19:53:30 +000052 if (pe->pdev) \
53 strlcpy(pfix, dev_name(&pe->pdev->dev), \
54 sizeof(pfix)); \
55 else \
56 sprintf(pfix, "%04x:%02x ", \
57 pci_domain_nr(pe->pbus), \
58 pe->pbus->number); \
59 r = printk(kern_level "pci %s: [PE# %.3d] %pV", \
60 pfix, pe->pe_number, &vaf); \
61 \
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000062 va_end(args); \
63 \
64 return r; \
65} \
66
67define_pe_printk_level(pe_err, KERN_ERR);
68define_pe_printk_level(pe_warn, KERN_WARNING);
69define_pe_printk_level(pe_info, KERN_INFO);
70
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -080071static int pnv_ioda_alloc_pe(struct pnv_phb *phb)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000072{
73 unsigned long pe;
74
75 do {
76 pe = find_next_zero_bit(phb->ioda.pe_alloc,
77 phb->ioda.total_pe, 0);
78 if (pe >= phb->ioda.total_pe)
79 return IODA_INVALID_PE;
80 } while(test_and_set_bit(pe, phb->ioda.pe_alloc));
81
Gavin Shan4cce9552013-04-25 19:21:00 +000082 phb->ioda.pe_array[pe].phb = phb;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000083 phb->ioda.pe_array[pe].pe_number = pe;
84 return pe;
85}
86
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -080087static void pnv_ioda_free_pe(struct pnv_phb *phb, int pe)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000088{
89 WARN_ON(phb->ioda.pe_array[pe].pdev);
90
91 memset(&phb->ioda.pe_array[pe], 0, sizeof(struct pnv_ioda_pe));
92 clear_bit(pe, phb->ioda.pe_alloc);
93}
94
95/* Currently those 2 are only used when MSIs are enabled, this will change
96 * but in the meantime, we need to protect them to avoid warnings
97 */
98#ifdef CONFIG_PCI_MSI
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -080099static struct pnv_ioda_pe *pnv_ioda_get_pe(struct pci_dev *dev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000100{
101 struct pci_controller *hose = pci_bus_to_host(dev->bus);
102 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000103 struct pci_dn *pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000104
105 if (!pdn)
106 return NULL;
107 if (pdn->pe_number == IODA_INVALID_PE)
108 return NULL;
109 return &phb->ioda.pe_array[pdn->pe_number];
110}
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000111#endif /* CONFIG_PCI_MSI */
112
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800113static int pnv_ioda_configure_pe(struct pnv_phb *phb, struct pnv_ioda_pe *pe)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000114{
115 struct pci_dev *parent;
116 uint8_t bcomp, dcomp, fcomp;
117 long rc, rid_end, rid;
118
119 /* Bus validation ? */
120 if (pe->pbus) {
121 int count;
122
123 dcomp = OPAL_IGNORE_RID_DEVICE_NUMBER;
124 fcomp = OPAL_IGNORE_RID_FUNCTION_NUMBER;
125 parent = pe->pbus->self;
Gavin Shanfb446ad2012-08-20 03:49:14 +0000126 if (pe->flags & PNV_IODA_PE_BUS_ALL)
127 count = pe->pbus->busn_res.end - pe->pbus->busn_res.start + 1;
128 else
129 count = 1;
130
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000131 switch(count) {
132 case 1: bcomp = OpalPciBusAll; break;
133 case 2: bcomp = OpalPciBus7Bits; break;
134 case 4: bcomp = OpalPciBus6Bits; break;
135 case 8: bcomp = OpalPciBus5Bits; break;
136 case 16: bcomp = OpalPciBus4Bits; break;
137 case 32: bcomp = OpalPciBus3Bits; break;
138 default:
139 pr_err("%s: Number of subordinate busses %d"
140 " unsupported\n",
141 pci_name(pe->pbus->self), count);
142 /* Do an exact match only */
143 bcomp = OpalPciBusAll;
144 }
145 rid_end = pe->rid + (count << 8);
146 } else {
147 parent = pe->pdev->bus->self;
148 bcomp = OpalPciBusAll;
149 dcomp = OPAL_COMPARE_RID_DEVICE_NUMBER;
150 fcomp = OPAL_COMPARE_RID_FUNCTION_NUMBER;
151 rid_end = pe->rid + 1;
152 }
153
154 /* Associate PE in PELT */
155 rc = opal_pci_set_pe(phb->opal_id, pe->pe_number, pe->rid,
156 bcomp, dcomp, fcomp, OPAL_MAP_PE);
157 if (rc) {
158 pe_err(pe, "OPAL error %ld trying to setup PELT table\n", rc);
159 return -ENXIO;
160 }
161 opal_pci_eeh_freeze_clear(phb->opal_id, pe->pe_number,
162 OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
163
164 /* Add to all parents PELT-V */
165 while (parent) {
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000166 struct pci_dn *pdn = pci_get_pdn(parent);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000167 if (pdn && pdn->pe_number != IODA_INVALID_PE) {
168 rc = opal_pci_set_peltv(phb->opal_id, pdn->pe_number,
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +0000169 pe->pe_number, OPAL_ADD_PE_TO_DOMAIN);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000170 /* XXX What to do in case of error ? */
171 }
172 parent = parent->bus->self;
173 }
174 /* Setup reverse map */
175 for (rid = pe->rid; rid < rid_end; rid++)
176 phb->ioda.pe_rmap[rid] = pe->pe_number;
177
178 /* Setup one MVTs on IODA1 */
179 if (phb->type == PNV_PHB_IODA1) {
180 pe->mve_number = pe->pe_number;
181 rc = opal_pci_set_mve(phb->opal_id, pe->mve_number,
182 pe->pe_number);
183 if (rc) {
184 pe_err(pe, "OPAL error %ld setting up MVE %d\n",
185 rc, pe->mve_number);
186 pe->mve_number = -1;
187 } else {
188 rc = opal_pci_set_mve_enable(phb->opal_id,
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +0000189 pe->mve_number, OPAL_ENABLE_MVE);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000190 if (rc) {
191 pe_err(pe, "OPAL error %ld enabling MVE %d\n",
192 rc, pe->mve_number);
193 pe->mve_number = -1;
194 }
195 }
196 } else if (phb->type == PNV_PHB_IODA2)
197 pe->mve_number = 0;
198
199 return 0;
200}
201
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800202static void pnv_ioda_link_pe_by_weight(struct pnv_phb *phb,
203 struct pnv_ioda_pe *pe)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000204{
205 struct pnv_ioda_pe *lpe;
206
Gavin Shan7ebdf952012-08-20 03:49:15 +0000207 list_for_each_entry(lpe, &phb->ioda.pe_dma_list, dma_link) {
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000208 if (lpe->dma_weight < pe->dma_weight) {
Gavin Shan7ebdf952012-08-20 03:49:15 +0000209 list_add_tail(&pe->dma_link, &lpe->dma_link);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000210 return;
211 }
212 }
Gavin Shan7ebdf952012-08-20 03:49:15 +0000213 list_add_tail(&pe->dma_link, &phb->ioda.pe_dma_list);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000214}
215
216static unsigned int pnv_ioda_dma_weight(struct pci_dev *dev)
217{
218 /* This is quite simplistic. The "base" weight of a device
219 * is 10. 0 means no DMA is to be accounted for it.
220 */
221
222 /* If it's a bridge, no DMA */
223 if (dev->hdr_type != PCI_HEADER_TYPE_NORMAL)
224 return 0;
225
226 /* Reduce the weight of slow USB controllers */
227 if (dev->class == PCI_CLASS_SERIAL_USB_UHCI ||
228 dev->class == PCI_CLASS_SERIAL_USB_OHCI ||
229 dev->class == PCI_CLASS_SERIAL_USB_EHCI)
230 return 3;
231
232 /* Increase the weight of RAID (includes Obsidian) */
233 if ((dev->class >> 8) == PCI_CLASS_STORAGE_RAID)
234 return 15;
235
236 /* Default */
237 return 10;
238}
239
Gavin Shanfb446ad2012-08-20 03:49:14 +0000240#if 0
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800241static struct pnv_ioda_pe *pnv_ioda_setup_dev_PE(struct pci_dev *dev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000242{
243 struct pci_controller *hose = pci_bus_to_host(dev->bus);
244 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000245 struct pci_dn *pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000246 struct pnv_ioda_pe *pe;
247 int pe_num;
248
249 if (!pdn) {
250 pr_err("%s: Device tree node not associated properly\n",
251 pci_name(dev));
252 return NULL;
253 }
254 if (pdn->pe_number != IODA_INVALID_PE)
255 return NULL;
256
257 /* PE#0 has been pre-set */
258 if (dev->bus->number == 0)
259 pe_num = 0;
260 else
261 pe_num = pnv_ioda_alloc_pe(phb);
262 if (pe_num == IODA_INVALID_PE) {
263 pr_warning("%s: Not enough PE# available, disabling device\n",
264 pci_name(dev));
265 return NULL;
266 }
267
268 /* NOTE: We get only one ref to the pci_dev for the pdn, not for the
269 * pointer in the PE data structure, both should be destroyed at the
270 * same time. However, this needs to be looked at more closely again
271 * once we actually start removing things (Hotplug, SR-IOV, ...)
272 *
273 * At some point we want to remove the PDN completely anyways
274 */
275 pe = &phb->ioda.pe_array[pe_num];
276 pci_dev_get(dev);
277 pdn->pcidev = dev;
278 pdn->pe_number = pe_num;
279 pe->pdev = dev;
280 pe->pbus = NULL;
281 pe->tce32_seg = -1;
282 pe->mve_number = -1;
283 pe->rid = dev->bus->number << 8 | pdn->devfn;
284
285 pe_info(pe, "Associated device to PE\n");
286
287 if (pnv_ioda_configure_pe(phb, pe)) {
288 /* XXX What do we do here ? */
289 if (pe_num)
290 pnv_ioda_free_pe(phb, pe_num);
291 pdn->pe_number = IODA_INVALID_PE;
292 pe->pdev = NULL;
293 pci_dev_put(dev);
294 return NULL;
295 }
296
297 /* Assign a DMA weight to the device */
298 pe->dma_weight = pnv_ioda_dma_weight(dev);
299 if (pe->dma_weight != 0) {
300 phb->ioda.dma_weight += pe->dma_weight;
301 phb->ioda.dma_pe_count++;
302 }
303
304 /* Link the PE */
305 pnv_ioda_link_pe_by_weight(phb, pe);
306
307 return pe;
308}
Gavin Shanfb446ad2012-08-20 03:49:14 +0000309#endif /* Useful for SRIOV case */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000310
311static void pnv_ioda_setup_same_PE(struct pci_bus *bus, struct pnv_ioda_pe *pe)
312{
313 struct pci_dev *dev;
314
315 list_for_each_entry(dev, &bus->devices, bus_list) {
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000316 struct pci_dn *pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000317
318 if (pdn == NULL) {
319 pr_warn("%s: No device node associated with device !\n",
320 pci_name(dev));
321 continue;
322 }
323 pci_dev_get(dev);
324 pdn->pcidev = dev;
325 pdn->pe_number = pe->pe_number;
326 pe->dma_weight += pnv_ioda_dma_weight(dev);
Gavin Shanfb446ad2012-08-20 03:49:14 +0000327 if ((pe->flags & PNV_IODA_PE_BUS_ALL) && dev->subordinate)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000328 pnv_ioda_setup_same_PE(dev->subordinate, pe);
329 }
330}
331
Gavin Shanfb446ad2012-08-20 03:49:14 +0000332/*
333 * There're 2 types of PCI bus sensitive PEs: One that is compromised of
334 * single PCI bus. Another one that contains the primary PCI bus and its
335 * subordinate PCI devices and buses. The second type of PE is normally
336 * orgiriated by PCIe-to-PCI bridge or PLX switch downstream ports.
337 */
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800338static void pnv_ioda_setup_bus_PE(struct pci_bus *bus, int all)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000339{
Gavin Shanfb446ad2012-08-20 03:49:14 +0000340 struct pci_controller *hose = pci_bus_to_host(bus);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000341 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000342 struct pnv_ioda_pe *pe;
343 int pe_num;
344
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000345 pe_num = pnv_ioda_alloc_pe(phb);
346 if (pe_num == IODA_INVALID_PE) {
Gavin Shanfb446ad2012-08-20 03:49:14 +0000347 pr_warning("%s: Not enough PE# available for PCI bus %04x:%02x\n",
348 __func__, pci_domain_nr(bus), bus->number);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000349 return;
350 }
351
352 pe = &phb->ioda.pe_array[pe_num];
Gavin Shanfb446ad2012-08-20 03:49:14 +0000353 pe->flags = (all ? PNV_IODA_PE_BUS_ALL : PNV_IODA_PE_BUS);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000354 pe->pbus = bus;
355 pe->pdev = NULL;
356 pe->tce32_seg = -1;
357 pe->mve_number = -1;
Yinghai Lub918c622012-05-17 18:51:11 -0700358 pe->rid = bus->busn_res.start << 8;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000359 pe->dma_weight = 0;
360
Gavin Shanfb446ad2012-08-20 03:49:14 +0000361 if (all)
362 pe_info(pe, "Secondary bus %d..%d associated with PE#%d\n",
363 bus->busn_res.start, bus->busn_res.end, pe_num);
364 else
365 pe_info(pe, "Secondary bus %d associated with PE#%d\n",
366 bus->busn_res.start, pe_num);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000367
368 if (pnv_ioda_configure_pe(phb, pe)) {
369 /* XXX What do we do here ? */
370 if (pe_num)
371 pnv_ioda_free_pe(phb, pe_num);
372 pe->pbus = NULL;
373 return;
374 }
375
376 /* Associate it with all child devices */
377 pnv_ioda_setup_same_PE(bus, pe);
378
Gavin Shan7ebdf952012-08-20 03:49:15 +0000379 /* Put PE to the list */
380 list_add_tail(&pe->list, &phb->ioda.pe_list);
381
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000382 /* Account for one DMA PE if at least one DMA capable device exist
383 * below the bridge
384 */
385 if (pe->dma_weight != 0) {
386 phb->ioda.dma_weight += pe->dma_weight;
387 phb->ioda.dma_pe_count++;
388 }
389
390 /* Link the PE */
391 pnv_ioda_link_pe_by_weight(phb, pe);
392}
393
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800394static void pnv_ioda_setup_PEs(struct pci_bus *bus)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000395{
396 struct pci_dev *dev;
Gavin Shanfb446ad2012-08-20 03:49:14 +0000397
398 pnv_ioda_setup_bus_PE(bus, 0);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000399
400 list_for_each_entry(dev, &bus->devices, bus_list) {
Gavin Shanfb446ad2012-08-20 03:49:14 +0000401 if (dev->subordinate) {
402 if (pci_pcie_type(dev) == PCI_EXP_TYPE_PCI_BRIDGE)
403 pnv_ioda_setup_bus_PE(dev->subordinate, 1);
404 else
405 pnv_ioda_setup_PEs(dev->subordinate);
406 }
407 }
408}
409
410/*
411 * Configure PEs so that the downstream PCI buses and devices
412 * could have their associated PE#. Unfortunately, we didn't
413 * figure out the way to identify the PLX bridge yet. So we
414 * simply put the PCI bus and the subordinate behind the root
415 * port to PE# here. The game rule here is expected to be changed
416 * as soon as we can detected PLX bridge correctly.
417 */
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800418static void pnv_pci_ioda_setup_PEs(void)
Gavin Shanfb446ad2012-08-20 03:49:14 +0000419{
420 struct pci_controller *hose, *tmp;
421
422 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
423 pnv_ioda_setup_PEs(hose->bus);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000424 }
425}
426
Gavin Shan959c9bd2013-04-25 19:21:02 +0000427static void pnv_pci_ioda_dma_dev_setup(struct pnv_phb *phb, struct pci_dev *pdev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000428{
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000429 struct pci_dn *pdn = pci_get_pdn(pdev);
Gavin Shan959c9bd2013-04-25 19:21:02 +0000430 struct pnv_ioda_pe *pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000431
Gavin Shan959c9bd2013-04-25 19:21:02 +0000432 /*
433 * The function can be called while the PE#
434 * hasn't been assigned. Do nothing for the
435 * case.
436 */
437 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
438 return;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000439
Gavin Shan959c9bd2013-04-25 19:21:02 +0000440 pe = &phb->ioda.pe_array[pdn->pe_number];
441 set_iommu_table_base(&pdev->dev, &pe->tce32_table);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000442}
443
Gavin Shan4cce9552013-04-25 19:21:00 +0000444static void pnv_pci_ioda1_tce_invalidate(struct iommu_table *tbl,
445 u64 *startp, u64 *endp)
446{
447 u64 __iomem *invalidate = (u64 __iomem *)tbl->it_index;
448 unsigned long start, end, inc;
449
450 start = __pa(startp);
451 end = __pa(endp);
452
453 /* BML uses this case for p6/p7/galaxy2: Shift addr and put in node */
454 if (tbl->it_busno) {
455 start <<= 12;
456 end <<= 12;
457 inc = 128 << 12;
458 start |= tbl->it_busno;
459 end |= tbl->it_busno;
460 } else if (tbl->it_type & TCE_PCI_SWINV_PAIR) {
461 /* p7ioc-style invalidation, 2 TCEs per write */
462 start |= (1ull << 63);
463 end |= (1ull << 63);
464 inc = 16;
465 } else {
466 /* Default (older HW) */
467 inc = 128;
468 }
469
470 end |= inc - 1; /* round up end to be different than start */
471
472 mb(); /* Ensure above stores are visible */
473 while (start <= end) {
474 __raw_writeq(start, invalidate);
475 start += inc;
476 }
477
478 /*
479 * The iommu layer will do another mb() for us on build()
480 * and we don't care on free()
481 */
482}
483
484static void pnv_pci_ioda2_tce_invalidate(struct pnv_ioda_pe *pe,
485 struct iommu_table *tbl,
486 u64 *startp, u64 *endp)
487{
488 unsigned long start, end, inc;
489 u64 __iomem *invalidate = (u64 __iomem *)tbl->it_index;
490
491 /* We'll invalidate DMA address in PE scope */
492 start = 0x2ul << 60;
493 start |= (pe->pe_number & 0xFF);
494 end = start;
495
496 /* Figure out the start, end and step */
497 inc = tbl->it_offset + (((u64)startp - tbl->it_base) / sizeof(u64));
498 start |= (inc << 12);
499 inc = tbl->it_offset + (((u64)endp - tbl->it_base) / sizeof(u64));
500 end |= (inc << 12);
501 inc = (0x1ul << 12);
502 mb();
503
504 while (start <= end) {
505 __raw_writeq(start, invalidate);
506 start += inc;
507 }
508}
509
510void pnv_pci_ioda_tce_invalidate(struct iommu_table *tbl,
511 u64 *startp, u64 *endp)
512{
513 struct pnv_ioda_pe *pe = container_of(tbl, struct pnv_ioda_pe,
514 tce32_table);
515 struct pnv_phb *phb = pe->phb;
516
517 if (phb->type == PNV_PHB_IODA1)
518 pnv_pci_ioda1_tce_invalidate(tbl, startp, endp);
519 else
520 pnv_pci_ioda2_tce_invalidate(pe, tbl, startp, endp);
521}
522
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800523static void pnv_pci_ioda_setup_dma_pe(struct pnv_phb *phb,
524 struct pnv_ioda_pe *pe, unsigned int base,
525 unsigned int segs)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000526{
527
528 struct page *tce_mem = NULL;
529 const __be64 *swinvp;
530 struct iommu_table *tbl;
531 unsigned int i;
532 int64_t rc;
533 void *addr;
534
535 /* 256M DMA window, 4K TCE pages, 8 bytes TCE */
536#define TCE32_TABLE_SIZE ((0x10000000 / 0x1000) * 8)
537
538 /* XXX FIXME: Handle 64-bit only DMA devices */
539 /* XXX FIXME: Provide 64-bit DMA facilities & non-4K TCE tables etc.. */
540 /* XXX FIXME: Allocate multi-level tables on PHB3 */
541
542 /* We shouldn't already have a 32-bit DMA associated */
543 if (WARN_ON(pe->tce32_seg >= 0))
544 return;
545
546 /* Grab a 32-bit TCE table */
547 pe->tce32_seg = base;
548 pe_info(pe, " Setting up 32-bit TCE table at %08x..%08x\n",
549 (base << 28), ((base + segs) << 28) - 1);
550
551 /* XXX Currently, we allocate one big contiguous table for the
552 * TCEs. We only really need one chunk per 256M of TCE space
553 * (ie per segment) but that's an optimization for later, it
554 * requires some added smarts with our get/put_tce implementation
555 */
556 tce_mem = alloc_pages_node(phb->hose->node, GFP_KERNEL,
557 get_order(TCE32_TABLE_SIZE * segs));
558 if (!tce_mem) {
559 pe_err(pe, " Failed to allocate a 32-bit TCE memory\n");
560 goto fail;
561 }
562 addr = page_address(tce_mem);
563 memset(addr, 0, TCE32_TABLE_SIZE * segs);
564
565 /* Configure HW */
566 for (i = 0; i < segs; i++) {
567 rc = opal_pci_map_pe_dma_window(phb->opal_id,
568 pe->pe_number,
569 base + i, 1,
570 __pa(addr) + TCE32_TABLE_SIZE * i,
571 TCE32_TABLE_SIZE, 0x1000);
572 if (rc) {
573 pe_err(pe, " Failed to configure 32-bit TCE table,"
574 " err %ld\n", rc);
575 goto fail;
576 }
577 }
578
579 /* Setup linux iommu table */
580 tbl = &pe->tce32_table;
581 pnv_pci_setup_iommu_table(tbl, addr, TCE32_TABLE_SIZE * segs,
582 base << 28);
583
584 /* OPAL variant of P7IOC SW invalidated TCEs */
585 swinvp = of_get_property(phb->hose->dn, "ibm,opal-tce-kill", NULL);
586 if (swinvp) {
587 /* We need a couple more fields -- an address and a data
588 * to or. Since the bus is only printed out on table free
589 * errors, and on the first pass the data will be a relative
590 * bus number, print that out instead.
591 */
592 tbl->it_busno = 0;
593 tbl->it_index = (unsigned long)ioremap(be64_to_cpup(swinvp), 8);
Gavin Shan373f5652013-04-25 19:21:01 +0000594 tbl->it_type = TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE |
595 TCE_PCI_SWINV_PAIR;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000596 }
597 iommu_init_table(tbl, phb->hose->node);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000598 iommu_register_group(tbl, pci_domain_nr(pe->pbus), pe->pe_number);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000599
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000600 return;
601 fail:
602 /* XXX Failure: Try to fallback to 64-bit only ? */
603 if (pe->tce32_seg >= 0)
604 pe->tce32_seg = -1;
605 if (tce_mem)
606 __free_pages(tce_mem, get_order(TCE32_TABLE_SIZE * segs));
607}
608
Gavin Shan373f5652013-04-25 19:21:01 +0000609static void pnv_pci_ioda2_setup_dma_pe(struct pnv_phb *phb,
610 struct pnv_ioda_pe *pe)
611{
612 struct page *tce_mem = NULL;
613 void *addr;
614 const __be64 *swinvp;
615 struct iommu_table *tbl;
616 unsigned int tce_table_size, end;
617 int64_t rc;
618
619 /* We shouldn't already have a 32-bit DMA associated */
620 if (WARN_ON(pe->tce32_seg >= 0))
621 return;
622
623 /* The PE will reserve all possible 32-bits space */
624 pe->tce32_seg = 0;
625 end = (1 << ilog2(phb->ioda.m32_pci_base));
626 tce_table_size = (end / 0x1000) * 8;
627 pe_info(pe, "Setting up 32-bit TCE table at 0..%08x\n",
628 end);
629
630 /* Allocate TCE table */
631 tce_mem = alloc_pages_node(phb->hose->node, GFP_KERNEL,
632 get_order(tce_table_size));
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, tce_table_size);
639
640 /*
641 * Map TCE table through TVT. The TVE index is the PE number
642 * shifted by 1 bit for 32-bits DMA space.
643 */
644 rc = opal_pci_map_pe_dma_window(phb->opal_id, pe->pe_number,
645 pe->pe_number << 1, 1, __pa(addr),
646 tce_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 /* Setup linux iommu table */
654 tbl = &pe->tce32_table;
655 pnv_pci_setup_iommu_table(tbl, addr, tce_table_size, 0);
656
657 /* OPAL variant of PHB3 invalidated TCEs */
658 swinvp = of_get_property(phb->hose->dn, "ibm,opal-tce-kill", NULL);
659 if (swinvp) {
660 /* We need a couple more fields -- an address and a data
661 * to or. Since the bus is only printed out on table free
662 * errors, and on the first pass the data will be a relative
663 * bus number, print that out instead.
664 */
665 tbl->it_busno = 0;
666 tbl->it_index = (unsigned long)ioremap(be64_to_cpup(swinvp), 8);
667 tbl->it_type = TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE;
668 }
669 iommu_init_table(tbl, phb->hose->node);
670
Gavin Shan373f5652013-04-25 19:21:01 +0000671 return;
672fail:
673 if (pe->tce32_seg >= 0)
674 pe->tce32_seg = -1;
675 if (tce_mem)
676 __free_pages(tce_mem, get_order(tce_table_size));
677}
678
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800679static void pnv_ioda_setup_dma(struct pnv_phb *phb)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000680{
681 struct pci_controller *hose = phb->hose;
682 unsigned int residual, remaining, segs, tw, base;
683 struct pnv_ioda_pe *pe;
684
685 /* If we have more PE# than segments available, hand out one
686 * per PE until we run out and let the rest fail. If not,
687 * then we assign at least one segment per PE, plus more based
688 * on the amount of devices under that PE
689 */
690 if (phb->ioda.dma_pe_count > phb->ioda.tce32_count)
691 residual = 0;
692 else
693 residual = phb->ioda.tce32_count -
694 phb->ioda.dma_pe_count;
695
696 pr_info("PCI: Domain %04x has %ld available 32-bit DMA segments\n",
697 hose->global_number, phb->ioda.tce32_count);
698 pr_info("PCI: %d PE# for a total weight of %d\n",
699 phb->ioda.dma_pe_count, phb->ioda.dma_weight);
700
701 /* Walk our PE list and configure their DMA segments, hand them
702 * out one base segment plus any residual segments based on
703 * weight
704 */
705 remaining = phb->ioda.tce32_count;
706 tw = phb->ioda.dma_weight;
707 base = 0;
Gavin Shan7ebdf952012-08-20 03:49:15 +0000708 list_for_each_entry(pe, &phb->ioda.pe_dma_list, dma_link) {
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000709 if (!pe->dma_weight)
710 continue;
711 if (!remaining) {
712 pe_warn(pe, "No DMA32 resources available\n");
713 continue;
714 }
715 segs = 1;
716 if (residual) {
717 segs += ((pe->dma_weight * residual) + (tw / 2)) / tw;
718 if (segs > remaining)
719 segs = remaining;
720 }
Gavin Shan373f5652013-04-25 19:21:01 +0000721
722 /*
723 * For IODA2 compliant PHB3, we needn't care about the weight.
724 * The all available 32-bits DMA space will be assigned to
725 * the specific PE.
726 */
727 if (phb->type == PNV_PHB_IODA1) {
728 pe_info(pe, "DMA weight %d, assigned %d DMA32 segments\n",
729 pe->dma_weight, segs);
730 pnv_pci_ioda_setup_dma_pe(phb, pe, base, segs);
731 } else {
732 pe_info(pe, "Assign DMA32 space\n");
733 segs = 0;
734 pnv_pci_ioda2_setup_dma_pe(phb, pe);
735 }
736
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000737 remaining -= segs;
738 base += segs;
739 }
740}
741
742#ifdef CONFIG_PCI_MSI
Gavin Shan137436c2013-04-25 19:20:59 +0000743static void pnv_ioda2_msi_eoi(struct irq_data *d)
744{
745 unsigned int hw_irq = (unsigned int)irqd_to_hwirq(d);
746 struct irq_chip *chip = irq_data_get_irq_chip(d);
747 struct pnv_phb *phb = container_of(chip, struct pnv_phb,
748 ioda.irq_chip);
749 int64_t rc;
750
751 rc = opal_pci_msi_eoi(phb->opal_id, hw_irq);
752 WARN_ON_ONCE(rc);
753
754 icp_native_eoi(d);
755}
756
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000757static int pnv_pci_ioda_msi_setup(struct pnv_phb *phb, struct pci_dev *dev,
Gavin Shan137436c2013-04-25 19:20:59 +0000758 unsigned int hwirq, unsigned int virq,
759 unsigned int is_64, struct msi_msg *msg)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000760{
761 struct pnv_ioda_pe *pe = pnv_ioda_get_pe(dev);
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000762 struct pci_dn *pdn = pci_get_pdn(dev);
Gavin Shan137436c2013-04-25 19:20:59 +0000763 struct irq_data *idata;
764 struct irq_chip *ichip;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000765 unsigned int xive_num = hwirq - phb->msi_base;
766 uint64_t addr64;
767 uint32_t addr32, data;
768 int rc;
769
770 /* No PE assigned ? bail out ... no MSI for you ! */
771 if (pe == NULL)
772 return -ENXIO;
773
774 /* Check if we have an MVE */
775 if (pe->mve_number < 0)
776 return -ENXIO;
777
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000778 /* Force 32-bit MSI on some broken devices */
779 if (pdn && pdn->force_32bit_msi)
780 is_64 = 0;
781
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000782 /* Assign XIVE to PE */
783 rc = opal_pci_set_xive_pe(phb->opal_id, pe->pe_number, xive_num);
784 if (rc) {
785 pr_warn("%s: OPAL error %d setting XIVE %d PE\n",
786 pci_name(dev), rc, xive_num);
787 return -EIO;
788 }
789
790 if (is_64) {
791 rc = opal_get_msi_64(phb->opal_id, pe->mve_number, xive_num, 1,
792 &addr64, &data);
793 if (rc) {
794 pr_warn("%s: OPAL error %d getting 64-bit MSI data\n",
795 pci_name(dev), rc);
796 return -EIO;
797 }
798 msg->address_hi = addr64 >> 32;
799 msg->address_lo = addr64 & 0xfffffffful;
800 } else {
801 rc = opal_get_msi_32(phb->opal_id, pe->mve_number, xive_num, 1,
802 &addr32, &data);
803 if (rc) {
804 pr_warn("%s: OPAL error %d getting 32-bit MSI data\n",
805 pci_name(dev), rc);
806 return -EIO;
807 }
808 msg->address_hi = 0;
809 msg->address_lo = addr32;
810 }
811 msg->data = data;
812
Gavin Shan137436c2013-04-25 19:20:59 +0000813 /*
814 * Change the IRQ chip for the MSI interrupts on PHB3.
815 * The corresponding IRQ chip should be populated for
816 * the first time.
817 */
818 if (phb->type == PNV_PHB_IODA2) {
819 if (!phb->ioda.irq_chip_init) {
820 idata = irq_get_irq_data(virq);
821 ichip = irq_data_get_irq_chip(idata);
822 phb->ioda.irq_chip_init = 1;
823 phb->ioda.irq_chip = *ichip;
824 phb->ioda.irq_chip.irq_eoi = pnv_ioda2_msi_eoi;
825 }
826
827 irq_set_chip(virq, &phb->ioda.irq_chip);
828 }
829
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000830 pr_devel("%s: %s-bit MSI on hwirq %x (xive #%d),"
831 " address=%x_%08x data=%x PE# %d\n",
832 pci_name(dev), is_64 ? "64" : "32", hwirq, xive_num,
833 msg->address_hi, msg->address_lo, data, pe->pe_number);
834
835 return 0;
836}
837
838static void pnv_pci_init_ioda_msis(struct pnv_phb *phb)
839{
Gavin Shanfb1b55d2013-03-05 21:12:37 +0000840 unsigned int count;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000841 const __be32 *prop = of_get_property(phb->hose->dn,
842 "ibm,opal-msi-ranges", NULL);
843 if (!prop) {
844 /* BML Fallback */
845 prop = of_get_property(phb->hose->dn, "msi-ranges", NULL);
846 }
847 if (!prop)
848 return;
849
850 phb->msi_base = be32_to_cpup(prop);
Gavin Shanfb1b55d2013-03-05 21:12:37 +0000851 count = be32_to_cpup(prop + 1);
852 if (msi_bitmap_alloc(&phb->msi_bmp, count, phb->hose->dn)) {
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000853 pr_err("PCI %d: Failed to allocate MSI bitmap !\n",
854 phb->hose->global_number);
855 return;
856 }
Gavin Shanfb1b55d2013-03-05 21:12:37 +0000857
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000858 phb->msi_setup = pnv_pci_ioda_msi_setup;
859 phb->msi32_support = 1;
860 pr_info(" Allocated bitmap for %d MSIs (base IRQ 0x%x)\n",
Gavin Shanfb1b55d2013-03-05 21:12:37 +0000861 count, phb->msi_base);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000862}
863#else
864static void pnv_pci_init_ioda_msis(struct pnv_phb *phb) { }
865#endif /* CONFIG_PCI_MSI */
866
Gavin Shan11685be2012-08-20 03:49:16 +0000867/*
868 * This function is supposed to be called on basis of PE from top
869 * to bottom style. So the the I/O or MMIO segment assigned to
870 * parent PE could be overrided by its child PEs if necessary.
871 */
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800872static void pnv_ioda_setup_pe_seg(struct pci_controller *hose,
873 struct pnv_ioda_pe *pe)
Gavin Shan11685be2012-08-20 03:49:16 +0000874{
875 struct pnv_phb *phb = hose->private_data;
876 struct pci_bus_region region;
877 struct resource *res;
878 int i, index;
879 int rc;
880
881 /*
882 * NOTE: We only care PCI bus based PE for now. For PCI
883 * device based PE, for example SRIOV sensitive VF should
884 * be figured out later.
885 */
886 BUG_ON(!(pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL)));
887
888 pci_bus_for_each_resource(pe->pbus, res, i) {
889 if (!res || !res->flags ||
890 res->start > res->end)
891 continue;
892
893 if (res->flags & IORESOURCE_IO) {
894 region.start = res->start - phb->ioda.io_pci_base;
895 region.end = res->end - phb->ioda.io_pci_base;
896 index = region.start / phb->ioda.io_segsize;
897
898 while (index < phb->ioda.total_pe &&
899 region.start <= region.end) {
900 phb->ioda.io_segmap[index] = pe->pe_number;
901 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
902 pe->pe_number, OPAL_IO_WINDOW_TYPE, 0, index);
903 if (rc != OPAL_SUCCESS) {
904 pr_err("%s: OPAL error %d when mapping IO "
905 "segment #%d to PE#%d\n",
906 __func__, rc, index, pe->pe_number);
907 break;
908 }
909
910 region.start += phb->ioda.io_segsize;
911 index++;
912 }
913 } else if (res->flags & IORESOURCE_MEM) {
Benjamin Herrenschmidt3fd47f02013-05-06 13:40:40 +1000914 /* WARNING: Assumes M32 is mem region 0 in PHB. We need to
915 * harden that algorithm when we start supporting M64
916 */
Gavin Shan11685be2012-08-20 03:49:16 +0000917 region.start = res->start -
Benjamin Herrenschmidt3fd47f02013-05-06 13:40:40 +1000918 hose->mem_offset[0] -
Gavin Shan11685be2012-08-20 03:49:16 +0000919 phb->ioda.m32_pci_base;
920 region.end = res->end -
Benjamin Herrenschmidt3fd47f02013-05-06 13:40:40 +1000921 hose->mem_offset[0] -
Gavin Shan11685be2012-08-20 03:49:16 +0000922 phb->ioda.m32_pci_base;
923 index = region.start / phb->ioda.m32_segsize;
924
925 while (index < phb->ioda.total_pe &&
926 region.start <= region.end) {
927 phb->ioda.m32_segmap[index] = pe->pe_number;
928 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
929 pe->pe_number, OPAL_M32_WINDOW_TYPE, 0, index);
930 if (rc != OPAL_SUCCESS) {
931 pr_err("%s: OPAL error %d when mapping M32 "
932 "segment#%d to PE#%d",
933 __func__, rc, index, pe->pe_number);
934 break;
935 }
936
937 region.start += phb->ioda.m32_segsize;
938 index++;
939 }
940 }
941 }
942}
943
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800944static void pnv_pci_ioda_setup_seg(void)
Gavin Shan11685be2012-08-20 03:49:16 +0000945{
946 struct pci_controller *tmp, *hose;
947 struct pnv_phb *phb;
948 struct pnv_ioda_pe *pe;
949
950 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
951 phb = hose->private_data;
952 list_for_each_entry(pe, &phb->ioda.pe_list, list) {
953 pnv_ioda_setup_pe_seg(hose, pe);
954 }
955 }
956}
957
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800958static void pnv_pci_ioda_setup_DMA(void)
Gavin Shan13395c42012-08-20 03:49:17 +0000959{
960 struct pci_controller *hose, *tmp;
Gavin Shandb1266c2012-08-20 03:49:18 +0000961 struct pnv_phb *phb;
Gavin Shan13395c42012-08-20 03:49:17 +0000962
963 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
964 pnv_ioda_setup_dma(hose->private_data);
Gavin Shandb1266c2012-08-20 03:49:18 +0000965
966 /* Mark the PHB initialization done */
967 phb = hose->private_data;
968 phb->initialized = 1;
Gavin Shan13395c42012-08-20 03:49:17 +0000969 }
970}
971
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800972static void pnv_pci_ioda_fixup(void)
Gavin Shanfb446ad2012-08-20 03:49:14 +0000973{
974 pnv_pci_ioda_setup_PEs();
Gavin Shan11685be2012-08-20 03:49:16 +0000975 pnv_pci_ioda_setup_seg();
Gavin Shan13395c42012-08-20 03:49:17 +0000976 pnv_pci_ioda_setup_DMA();
Gavin Shane9cc17d2013-06-20 13:21:14 +0800977
978#ifdef CONFIG_EEH
979 eeh_addr_cache_build();
980 eeh_init();
981#endif
Gavin Shanfb446ad2012-08-20 03:49:14 +0000982}
983
Gavin Shan271fd032012-09-11 16:59:47 -0600984/*
985 * Returns the alignment for I/O or memory windows for P2P
986 * bridges. That actually depends on how PEs are segmented.
987 * For now, we return I/O or M32 segment size for PE sensitive
988 * P2P bridges. Otherwise, the default values (4KiB for I/O,
989 * 1MiB for memory) will be returned.
990 *
991 * The current PCI bus might be put into one PE, which was
992 * create against the parent PCI bridge. For that case, we
993 * needn't enlarge the alignment so that we can save some
994 * resources.
995 */
996static resource_size_t pnv_pci_window_alignment(struct pci_bus *bus,
997 unsigned long type)
998{
999 struct pci_dev *bridge;
1000 struct pci_controller *hose = pci_bus_to_host(bus);
1001 struct pnv_phb *phb = hose->private_data;
1002 int num_pci_bridges = 0;
1003
1004 bridge = bus->self;
1005 while (bridge) {
1006 if (pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE) {
1007 num_pci_bridges++;
1008 if (num_pci_bridges >= 2)
1009 return 1;
1010 }
1011
1012 bridge = bridge->bus->self;
1013 }
1014
1015 /* We need support prefetchable memory window later */
1016 if (type & IORESOURCE_MEM)
1017 return phb->ioda.m32_segsize;
1018
1019 return phb->ioda.io_segsize;
1020}
1021
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001022/* Prevent enabling devices for which we couldn't properly
1023 * assign a PE
1024 */
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08001025static int pnv_pci_enable_device_hook(struct pci_dev *dev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001026{
Gavin Shandb1266c2012-08-20 03:49:18 +00001027 struct pci_controller *hose = pci_bus_to_host(dev->bus);
1028 struct pnv_phb *phb = hose->private_data;
1029 struct pci_dn *pdn;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001030
Gavin Shandb1266c2012-08-20 03:49:18 +00001031 /* The function is probably called while the PEs have
1032 * not be created yet. For example, resource reassignment
1033 * during PCI probe period. We just skip the check if
1034 * PEs isn't ready.
1035 */
1036 if (!phb->initialized)
1037 return 0;
1038
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00001039 pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001040 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
1041 return -EINVAL;
Gavin Shandb1266c2012-08-20 03:49:18 +00001042
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001043 return 0;
1044}
1045
1046static u32 pnv_ioda_bdfn_to_pe(struct pnv_phb *phb, struct pci_bus *bus,
1047 u32 devfn)
1048{
1049 return phb->ioda.pe_rmap[(bus->number << 8) | devfn];
1050}
1051
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +10001052static void pnv_pci_ioda_shutdown(struct pnv_phb *phb)
1053{
1054 opal_pci_reset(phb->opal_id, OPAL_PCI_IODA_TABLE_RESET,
1055 OPAL_ASSERT_RESET);
1056}
1057
Gavin Shane9cc17d2013-06-20 13:21:14 +08001058void __init pnv_pci_init_ioda_phb(struct device_node *np,
1059 u64 hub_id, int ioda_type)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001060{
1061 struct pci_controller *hose;
1062 static int primary = 1;
1063 struct pnv_phb *phb;
1064 unsigned long size, m32map_off, iomap_off, pemap_off;
1065 const u64 *prop64;
Gavin Shanaa0c0332013-04-25 19:20:57 +00001066 const u32 *prop32;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001067 u64 phb_id;
1068 void *aux;
1069 long rc;
1070
Gavin Shanaa0c0332013-04-25 19:20:57 +00001071 pr_info(" Initializing IODA%d OPAL PHB %s\n", ioda_type, np->full_name);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001072
1073 prop64 = of_get_property(np, "ibm,opal-phbid", NULL);
1074 if (!prop64) {
1075 pr_err(" Missing \"ibm,opal-phbid\" property !\n");
1076 return;
1077 }
1078 phb_id = be64_to_cpup(prop64);
1079 pr_debug(" PHB-ID : 0x%016llx\n", phb_id);
1080
1081 phb = alloc_bootmem(sizeof(struct pnv_phb));
1082 if (phb) {
1083 memset(phb, 0, sizeof(struct pnv_phb));
1084 phb->hose = hose = pcibios_alloc_controller(np);
1085 }
1086 if (!phb || !phb->hose) {
1087 pr_err("PCI: Failed to allocate PCI controller for %s\n",
1088 np->full_name);
1089 return;
1090 }
1091
1092 spin_lock_init(&phb->lock);
1093 /* XXX Use device-tree */
1094 hose->first_busno = 0;
1095 hose->last_busno = 0xff;
1096 hose->private_data = phb;
Gavin Shane9cc17d2013-06-20 13:21:14 +08001097 phb->hub_id = hub_id;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001098 phb->opal_id = phb_id;
Gavin Shanaa0c0332013-04-25 19:20:57 +00001099 phb->type = ioda_type;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001100
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +00001101 /* Detect specific models for error handling */
1102 if (of_device_is_compatible(np, "ibm,p7ioc-pciex"))
1103 phb->model = PNV_PHB_MODEL_P7IOC;
Benjamin Herrenschmidtf3d40c22013-05-04 14:24:32 +00001104 else if (of_device_is_compatible(np, "ibm,power8-pciex"))
Gavin Shanaa0c0332013-04-25 19:20:57 +00001105 phb->model = PNV_PHB_MODEL_PHB3;
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +00001106 else
1107 phb->model = PNV_PHB_MODEL_UNKNOWN;
1108
Gavin Shanaa0c0332013-04-25 19:20:57 +00001109 /* Parse 32-bit and IO ranges (if any) */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001110 pci_process_bridge_OF_ranges(phb->hose, np, primary);
1111 primary = 0;
1112
Gavin Shanaa0c0332013-04-25 19:20:57 +00001113 /* Get registers */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001114 phb->regs = of_iomap(np, 0);
1115 if (phb->regs == NULL)
1116 pr_err(" Failed to map registers !\n");
1117
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001118 /* Initialize more IODA stuff */
Gavin Shanaa0c0332013-04-25 19:20:57 +00001119 prop32 = of_get_property(np, "ibm,opal-num-pes", NULL);
1120 if (!prop32)
1121 phb->ioda.total_pe = 1;
1122 else
1123 phb->ioda.total_pe = *prop32;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001124
1125 phb->ioda.m32_size = resource_size(&hose->mem_resources[0]);
Gavin Shanaa0c0332013-04-25 19:20:57 +00001126 /* FW Has already off top 64k of M32 space (MSI space) */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001127 phb->ioda.m32_size += 0x10000;
1128
1129 phb->ioda.m32_segsize = phb->ioda.m32_size / phb->ioda.total_pe;
Benjamin Herrenschmidt3fd47f02013-05-06 13:40:40 +10001130 phb->ioda.m32_pci_base = hose->mem_resources[0].start - hose->mem_offset[0];
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001131 phb->ioda.io_size = hose->pci_io_size;
1132 phb->ioda.io_segsize = phb->ioda.io_size / phb->ioda.total_pe;
1133 phb->ioda.io_pci_base = 0; /* XXX calculate this ? */
1134
Gavin Shanaa0c0332013-04-25 19:20:57 +00001135 /* Allocate aux data & arrays
1136 *
1137 * XXX TODO: Don't allocate io segmap on PHB3
1138 */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001139 size = _ALIGN_UP(phb->ioda.total_pe / 8, sizeof(unsigned long));
1140 m32map_off = size;
Gavin Shane47747f2012-08-20 03:49:19 +00001141 size += phb->ioda.total_pe * sizeof(phb->ioda.m32_segmap[0]);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001142 iomap_off = size;
Gavin Shane47747f2012-08-20 03:49:19 +00001143 size += phb->ioda.total_pe * sizeof(phb->ioda.io_segmap[0]);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001144 pemap_off = size;
1145 size += phb->ioda.total_pe * sizeof(struct pnv_ioda_pe);
1146 aux = alloc_bootmem(size);
1147 memset(aux, 0, size);
1148 phb->ioda.pe_alloc = aux;
1149 phb->ioda.m32_segmap = aux + m32map_off;
1150 phb->ioda.io_segmap = aux + iomap_off;
1151 phb->ioda.pe_array = aux + pemap_off;
1152 set_bit(0, phb->ioda.pe_alloc);
1153
Gavin Shan7ebdf952012-08-20 03:49:15 +00001154 INIT_LIST_HEAD(&phb->ioda.pe_dma_list);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001155 INIT_LIST_HEAD(&phb->ioda.pe_list);
1156
1157 /* Calculate how many 32-bit TCE segments we have */
1158 phb->ioda.tce32_count = phb->ioda.m32_pci_base >> 28;
1159
1160 /* Clear unusable m64 */
1161 hose->mem_resources[1].flags = 0;
1162 hose->mem_resources[1].start = 0;
1163 hose->mem_resources[1].end = 0;
1164 hose->mem_resources[2].flags = 0;
1165 hose->mem_resources[2].start = 0;
1166 hose->mem_resources[2].end = 0;
1167
Gavin Shanaa0c0332013-04-25 19:20:57 +00001168#if 0 /* We should really do that ... */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001169 rc = opal_pci_set_phb_mem_window(opal->phb_id,
1170 window_type,
1171 window_num,
1172 starting_real_address,
1173 starting_pci_address,
1174 segment_size);
1175#endif
1176
1177 pr_info(" %d PE's M32: 0x%x [segment=0x%x] IO: 0x%x [segment=0x%x]\n",
1178 phb->ioda.total_pe,
1179 phb->ioda.m32_size, phb->ioda.m32_segsize,
1180 phb->ioda.io_size, phb->ioda.io_segsize);
1181
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001182 phb->hose->ops = &pnv_pci_ops;
Gavin Shane9cc17d2013-06-20 13:21:14 +08001183#ifdef CONFIG_EEH
1184 phb->eeh_ops = &ioda_eeh_ops;
1185#endif
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001186
1187 /* Setup RID -> PE mapping function */
1188 phb->bdfn_to_pe = pnv_ioda_bdfn_to_pe;
1189
1190 /* Setup TCEs */
1191 phb->dma_dev_setup = pnv_pci_ioda_dma_dev_setup;
1192
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +10001193 /* Setup shutdown function for kexec */
1194 phb->shutdown = pnv_pci_ioda_shutdown;
1195
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001196 /* Setup MSI support */
1197 pnv_pci_init_ioda_msis(phb);
1198
Gavin Shanc40a4212012-08-20 03:49:20 +00001199 /*
1200 * We pass the PCI probe flag PCI_REASSIGN_ALL_RSRC here
1201 * to let the PCI core do resource assignment. It's supposed
1202 * that the PCI core will do correct I/O and MMIO alignment
1203 * for the P2P bridge bars so that each PCI bus (excluding
1204 * the child P2P bridges) can form individual PE.
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001205 */
Gavin Shanfb446ad2012-08-20 03:49:14 +00001206 ppc_md.pcibios_fixup = pnv_pci_ioda_fixup;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001207 ppc_md.pcibios_enable_device_hook = pnv_pci_enable_device_hook;
Gavin Shan271fd032012-09-11 16:59:47 -06001208 ppc_md.pcibios_window_alignment = pnv_pci_window_alignment;
Gavin Shanc40a4212012-08-20 03:49:20 +00001209 pci_add_flags(PCI_REASSIGN_ALL_RSRC);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001210
1211 /* Reset IODA tables to a clean state */
Benjamin Herrenschmidtf11fe552011-11-29 18:22:50 +00001212 rc = opal_pci_reset(phb_id, OPAL_PCI_IODA_TABLE_RESET, OPAL_ASSERT_RESET);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001213 if (rc)
Benjamin Herrenschmidtf11fe552011-11-29 18:22:50 +00001214 pr_warning(" OPAL Error %ld performing IODA table reset !\n", rc);
Gavin Shanaa0c0332013-04-25 19:20:57 +00001215
1216 /*
1217 * On IODA1 map everything to PE#0, on IODA2 we assume the IODA reset
1218 * has cleared the RTT which has the same effect
1219 */
1220 if (ioda_type == PNV_PHB_IODA1)
1221 opal_pci_set_pe(phb_id, 0, 0, 7, 1, 1 , OPAL_MAP_PE);
1222}
1223
1224void pnv_pci_init_ioda2_phb(struct device_node *np)
1225{
Gavin Shane9cc17d2013-06-20 13:21:14 +08001226 pnv_pci_init_ioda_phb(np, 0, PNV_PHB_IODA2);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001227}
1228
1229void __init pnv_pci_init_ioda_hub(struct device_node *np)
1230{
1231 struct device_node *phbn;
1232 const u64 *prop64;
1233 u64 hub_id;
1234
1235 pr_info("Probing IODA IO-Hub %s\n", np->full_name);
1236
1237 prop64 = of_get_property(np, "ibm,opal-hubid", NULL);
1238 if (!prop64) {
1239 pr_err(" Missing \"ibm,opal-hubid\" property !\n");
1240 return;
1241 }
1242 hub_id = be64_to_cpup(prop64);
1243 pr_devel(" HUB-ID : 0x%016llx\n", hub_id);
1244
1245 /* Count child PHBs */
1246 for_each_child_of_node(np, phbn) {
1247 /* Look for IODA1 PHBs */
1248 if (of_device_is_compatible(phbn, "ibm,ioda-phb"))
Gavin Shane9cc17d2013-06-20 13:21:14 +08001249 pnv_pci_init_ioda_phb(phbn, hub_id, PNV_PHB_IODA1);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001250 }
1251}