blob: ef31218f4e832d58faa5d06a8beeb675608a7009 [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>
Gavin Shan361f2a22014-04-24 18:00:25 +100016#include <linux/crash_dump.h>
Gavin Shan37c367f2013-06-20 18:13:25 +080017#include <linux/debugfs.h>
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000018#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 Herrenschmidtcd15b042014-02-11 11:32:38 +110025#include <linux/memblock.h>
Alexey Kardashevskiyac9a5882015-06-05 16:34:56 +100026#include <linux/iommu.h>
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +100027#include <linux/rculist.h>
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +100028#include <linux/sizes.h>
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000029
30#include <asm/sections.h>
31#include <asm/io.h>
32#include <asm/prom.h>
33#include <asm/pci-bridge.h>
34#include <asm/machdep.h>
Gavin Shanfb1b55d2013-03-05 21:12:37 +000035#include <asm/msi_bitmap.h>
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000036#include <asm/ppc-pci.h>
37#include <asm/opal.h>
38#include <asm/iommu.h>
39#include <asm/tce.h>
Gavin Shan137436c2013-04-25 19:20:59 +000040#include <asm/xics.h>
Gavin Shan37c367f2013-06-20 18:13:25 +080041#include <asm/debug.h>
Guo Chao262af552014-07-21 14:42:30 +100042#include <asm/firmware.h>
Ian Munsie80c49c72014-10-08 19:54:57 +110043#include <asm/pnv-pci.h>
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +100044#include <asm/mmzone.h>
Ian Munsie80c49c72014-10-08 19:54:57 +110045
Michael Neulingec249dd2015-05-27 16:07:16 +100046#include <misc/cxl-base.h>
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000047
48#include "powernv.h"
49#include "pci.h"
50
Gavin Shan99451552016-05-05 12:02:13 +100051#define PNV_IODA1_M64_NUM 16 /* Number of M64 BARs */
52#define PNV_IODA1_M64_SEGS 8 /* Segments per M64 BAR */
Gavin Shanacce9712016-05-03 15:41:33 +100053#define PNV_IODA1_DMA32_SEGSIZE 0x10000000
Wei Yang781a8682015-03-25 16:23:57 +080054
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +100055#define POWERNV_IOMMU_DEFAULT_LEVELS 1
56#define POWERNV_IOMMU_MAX_LEVELS 5
57
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +100058static void pnv_pci_ioda2_table_free_pages(struct iommu_table *tbl);
59
Alexey Kardashevskiy7d623e42016-04-29 18:55:21 +100060void pe_level_printk(const struct pnv_ioda_pe *pe, const char *level,
Joe Perches6d31c2f2014-09-21 10:55:06 -070061 const char *fmt, ...)
62{
63 struct va_format vaf;
64 va_list args;
65 char pfix[32];
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000066
Joe Perches6d31c2f2014-09-21 10:55:06 -070067 va_start(args, fmt);
68
69 vaf.fmt = fmt;
70 vaf.va = &args;
71
Wei Yang781a8682015-03-25 16:23:57 +080072 if (pe->flags & PNV_IODA_PE_DEV)
Joe Perches6d31c2f2014-09-21 10:55:06 -070073 strlcpy(pfix, dev_name(&pe->pdev->dev), sizeof(pfix));
Wei Yang781a8682015-03-25 16:23:57 +080074 else if (pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL))
Joe Perches6d31c2f2014-09-21 10:55:06 -070075 sprintf(pfix, "%04x:%02x ",
76 pci_domain_nr(pe->pbus), pe->pbus->number);
Wei Yang781a8682015-03-25 16:23:57 +080077#ifdef CONFIG_PCI_IOV
78 else if (pe->flags & PNV_IODA_PE_VF)
79 sprintf(pfix, "%04x:%02x:%2x.%d",
80 pci_domain_nr(pe->parent_dev->bus),
81 (pe->rid & 0xff00) >> 8,
82 PCI_SLOT(pe->rid), PCI_FUNC(pe->rid));
83#endif /* CONFIG_PCI_IOV*/
Joe Perches6d31c2f2014-09-21 10:55:06 -070084
85 printk("%spci %s: [PE# %.3d] %pV",
86 level, pfix, pe->pe_number, &vaf);
87
88 va_end(args);
89}
90
Thadeu Lima de Souza Cascardo4e287842014-10-23 19:19:35 -020091static bool pnv_iommu_bypass_disabled __read_mostly;
92
93static int __init iommu_setup(char *str)
94{
95 if (!str)
96 return -EINVAL;
97
98 while (*str) {
99 if (!strncmp(str, "nobypass", 8)) {
100 pnv_iommu_bypass_disabled = true;
101 pr_info("PowerNV: IOMMU bypass window disabled.\n");
102 break;
103 }
104 str += strcspn(str, ",");
105 if (*str == ',')
106 str++;
107 }
108
109 return 0;
110}
111early_param("iommu", iommu_setup);
112
Guo Chao262af552014-07-21 14:42:30 +1000113static inline bool pnv_pci_is_mem_pref_64(unsigned long flags)
114{
115 return ((flags & (IORESOURCE_MEM_64 | IORESOURCE_PREFETCH)) ==
116 (IORESOURCE_MEM_64 | IORESOURCE_PREFETCH));
117}
118
Gavin Shan1e916772016-05-03 15:41:36 +1000119static struct pnv_ioda_pe *pnv_ioda_init_pe(struct pnv_phb *phb, int pe_no)
120{
121 phb->ioda.pe_array[pe_no].phb = phb;
122 phb->ioda.pe_array[pe_no].pe_number = pe_no;
123
124 return &phb->ioda.pe_array[pe_no];
125}
126
Gavin Shan4b82ab12014-11-12 13:36:07 +1100127static void pnv_ioda_reserve_pe(struct pnv_phb *phb, int pe_no)
128{
Gavin Shan92b8f132016-05-03 15:41:24 +1000129 if (!(pe_no >= 0 && pe_no < phb->ioda.total_pe_num)) {
Gavin Shan4b82ab12014-11-12 13:36:07 +1100130 pr_warn("%s: Invalid PE %d on PHB#%x\n",
131 __func__, pe_no, phb->hose->global_number);
132 return;
133 }
134
Gavin Shane9dc4d72015-06-19 12:26:16 +1000135 if (test_and_set_bit(pe_no, phb->ioda.pe_alloc))
136 pr_debug("%s: PE %d was reserved on PHB#%x\n",
137 __func__, pe_no, phb->hose->global_number);
Gavin Shan4b82ab12014-11-12 13:36:07 +1100138
Gavin Shan1e916772016-05-03 15:41:36 +1000139 pnv_ioda_init_pe(phb, pe_no);
Gavin Shan4b82ab12014-11-12 13:36:07 +1100140}
141
Gavin Shan1e916772016-05-03 15:41:36 +1000142static struct pnv_ioda_pe *pnv_ioda_alloc_pe(struct pnv_phb *phb)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000143{
144 unsigned long pe;
145
146 do {
147 pe = find_next_zero_bit(phb->ioda.pe_alloc,
Gavin Shan92b8f132016-05-03 15:41:24 +1000148 phb->ioda.total_pe_num, 0);
149 if (pe >= phb->ioda.total_pe_num)
Gavin Shan1e916772016-05-03 15:41:36 +1000150 return NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000151 } while(test_and_set_bit(pe, phb->ioda.pe_alloc));
152
Gavin Shan1e916772016-05-03 15:41:36 +1000153 return pnv_ioda_init_pe(phb, pe);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000154}
155
Gavin Shan1e916772016-05-03 15:41:36 +1000156static void pnv_ioda_free_pe(struct pnv_ioda_pe *pe)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000157{
Gavin Shan1e916772016-05-03 15:41:36 +1000158 struct pnv_phb *phb = pe->phb;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000159
Gavin Shan1e916772016-05-03 15:41:36 +1000160 WARN_ON(pe->pdev);
161
162 memset(pe, 0, sizeof(struct pnv_ioda_pe));
163 clear_bit(pe->pe_number, phb->ioda.pe_alloc);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000164}
165
Guo Chao262af552014-07-21 14:42:30 +1000166/* The default M64 BAR is shared by all PEs */
167static int pnv_ioda2_init_m64(struct pnv_phb *phb)
168{
169 const char *desc;
170 struct resource *r;
171 s64 rc;
172
173 /* Configure the default M64 BAR */
174 rc = opal_pci_set_phb_mem_window(phb->opal_id,
175 OPAL_M64_WINDOW_TYPE,
176 phb->ioda.m64_bar_idx,
177 phb->ioda.m64_base,
178 0, /* unused */
179 phb->ioda.m64_size);
180 if (rc != OPAL_SUCCESS) {
181 desc = "configuring";
182 goto fail;
183 }
184
185 /* Enable the default M64 BAR */
186 rc = opal_pci_phb_mmio_enable(phb->opal_id,
187 OPAL_M64_WINDOW_TYPE,
188 phb->ioda.m64_bar_idx,
189 OPAL_ENABLE_M64_SPLIT);
190 if (rc != OPAL_SUCCESS) {
191 desc = "enabling";
192 goto fail;
193 }
194
195 /* Mark the M64 BAR assigned */
196 set_bit(phb->ioda.m64_bar_idx, &phb->ioda.m64_bar_alloc);
197
198 /*
199 * Strip off the segment used by the reserved PE, which is
200 * expected to be 0 or last one of PE capabicity.
201 */
202 r = &phb->hose->mem_resources[1];
Gavin Shan92b8f132016-05-03 15:41:24 +1000203 if (phb->ioda.reserved_pe_idx == 0)
Guo Chao262af552014-07-21 14:42:30 +1000204 r->start += phb->ioda.m64_segsize;
Gavin Shan92b8f132016-05-03 15:41:24 +1000205 else if (phb->ioda.reserved_pe_idx == (phb->ioda.total_pe_num - 1))
Guo Chao262af552014-07-21 14:42:30 +1000206 r->end -= phb->ioda.m64_segsize;
207 else
208 pr_warn(" Cannot strip M64 segment for reserved PE#%d\n",
Gavin Shan92b8f132016-05-03 15:41:24 +1000209 phb->ioda.reserved_pe_idx);
Guo Chao262af552014-07-21 14:42:30 +1000210
211 return 0;
212
213fail:
214 pr_warn(" Failure %lld %s M64 BAR#%d\n",
215 rc, desc, phb->ioda.m64_bar_idx);
216 opal_pci_phb_mmio_enable(phb->opal_id,
217 OPAL_M64_WINDOW_TYPE,
218 phb->ioda.m64_bar_idx,
219 OPAL_DISABLE_M64);
220 return -EIO;
221}
222
Gavin Shanc4306702016-05-03 15:41:30 +1000223static void pnv_ioda_reserve_dev_m64_pe(struct pci_dev *pdev,
Gavin Shan96a2f922015-06-19 12:26:17 +1000224 unsigned long *pe_bitmap)
Guo Chao262af552014-07-21 14:42:30 +1000225{
Gavin Shan96a2f922015-06-19 12:26:17 +1000226 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
227 struct pnv_phb *phb = hose->private_data;
Guo Chao262af552014-07-21 14:42:30 +1000228 struct resource *r;
Gavin Shan96a2f922015-06-19 12:26:17 +1000229 resource_size_t base, sgsz, start, end;
230 int segno, i;
Guo Chao262af552014-07-21 14:42:30 +1000231
Gavin Shan96a2f922015-06-19 12:26:17 +1000232 base = phb->ioda.m64_base;
233 sgsz = phb->ioda.m64_segsize;
234 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
235 r = &pdev->resource[i];
236 if (!r->parent || !pnv_pci_is_mem_pref_64(r->flags))
237 continue;
Guo Chao262af552014-07-21 14:42:30 +1000238
Gavin Shan96a2f922015-06-19 12:26:17 +1000239 start = _ALIGN_DOWN(r->start - base, sgsz);
240 end = _ALIGN_UP(r->end - base, sgsz);
241 for (segno = start / sgsz; segno < end / sgsz; segno++) {
242 if (pe_bitmap)
243 set_bit(segno, pe_bitmap);
244 else
245 pnv_ioda_reserve_pe(phb, segno);
Guo Chao262af552014-07-21 14:42:30 +1000246 }
247 }
248}
249
Gavin Shan99451552016-05-05 12:02:13 +1000250static int pnv_ioda1_init_m64(struct pnv_phb *phb)
251{
252 struct resource *r;
253 int index;
254
255 /*
256 * There are 16 M64 BARs, each of which has 8 segments. So
257 * there are as many M64 segments as the maximum number of
258 * PEs, which is 128.
259 */
260 for (index = 0; index < PNV_IODA1_M64_NUM; index++) {
261 unsigned long base, segsz = phb->ioda.m64_segsize;
262 int64_t rc;
263
264 base = phb->ioda.m64_base +
265 index * PNV_IODA1_M64_SEGS * segsz;
266 rc = opal_pci_set_phb_mem_window(phb->opal_id,
267 OPAL_M64_WINDOW_TYPE, index, base, 0,
268 PNV_IODA1_M64_SEGS * segsz);
269 if (rc != OPAL_SUCCESS) {
270 pr_warn(" Error %lld setting M64 PHB#%d-BAR#%d\n",
271 rc, phb->hose->global_number, index);
272 goto fail;
273 }
274
275 rc = opal_pci_phb_mmio_enable(phb->opal_id,
276 OPAL_M64_WINDOW_TYPE, index,
277 OPAL_ENABLE_M64_SPLIT);
278 if (rc != OPAL_SUCCESS) {
279 pr_warn(" Error %lld enabling M64 PHB#%d-BAR#%d\n",
280 rc, phb->hose->global_number, index);
281 goto fail;
282 }
283 }
284
285 /*
286 * Exclude the segment used by the reserved PE, which
287 * is expected to be 0 or last supported PE#.
288 */
289 r = &phb->hose->mem_resources[1];
290 if (phb->ioda.reserved_pe_idx == 0)
291 r->start += phb->ioda.m64_segsize;
292 else if (phb->ioda.reserved_pe_idx == (phb->ioda.total_pe_num - 1))
293 r->end -= phb->ioda.m64_segsize;
294 else
295 WARN(1, "Wrong reserved PE#%d on PHB#%d\n",
296 phb->ioda.reserved_pe_idx, phb->hose->global_number);
297
298 return 0;
299
300fail:
301 for ( ; index >= 0; index--)
302 opal_pci_phb_mmio_enable(phb->opal_id,
303 OPAL_M64_WINDOW_TYPE, index, OPAL_DISABLE_M64);
304
305 return -EIO;
306}
307
Gavin Shanc4306702016-05-03 15:41:30 +1000308static void pnv_ioda_reserve_m64_pe(struct pci_bus *bus,
309 unsigned long *pe_bitmap,
310 bool all)
Guo Chao262af552014-07-21 14:42:30 +1000311{
Guo Chao262af552014-07-21 14:42:30 +1000312 struct pci_dev *pdev;
Gavin Shan96a2f922015-06-19 12:26:17 +1000313
314 list_for_each_entry(pdev, &bus->devices, bus_list) {
Gavin Shanc4306702016-05-03 15:41:30 +1000315 pnv_ioda_reserve_dev_m64_pe(pdev, pe_bitmap);
Gavin Shan96a2f922015-06-19 12:26:17 +1000316
317 if (all && pdev->subordinate)
Gavin Shanc4306702016-05-03 15:41:30 +1000318 pnv_ioda_reserve_m64_pe(pdev->subordinate,
319 pe_bitmap, all);
Gavin Shan96a2f922015-06-19 12:26:17 +1000320 }
321}
322
Gavin Shan1e916772016-05-03 15:41:36 +1000323static struct pnv_ioda_pe *pnv_ioda_pick_m64_pe(struct pci_bus *bus, bool all)
Guo Chao262af552014-07-21 14:42:30 +1000324{
Gavin Shan26ba2482015-06-19 12:26:19 +1000325 struct pci_controller *hose = pci_bus_to_host(bus);
326 struct pnv_phb *phb = hose->private_data;
Guo Chao262af552014-07-21 14:42:30 +1000327 struct pnv_ioda_pe *master_pe, *pe;
328 unsigned long size, *pe_alloc;
Gavin Shan26ba2482015-06-19 12:26:19 +1000329 int i;
Guo Chao262af552014-07-21 14:42:30 +1000330
331 /* Root bus shouldn't use M64 */
332 if (pci_is_root_bus(bus))
Gavin Shan1e916772016-05-03 15:41:36 +1000333 return NULL;
Guo Chao262af552014-07-21 14:42:30 +1000334
Guo Chao262af552014-07-21 14:42:30 +1000335 /* Allocate bitmap */
Gavin Shan92b8f132016-05-03 15:41:24 +1000336 size = _ALIGN_UP(phb->ioda.total_pe_num / 8, sizeof(unsigned long));
Guo Chao262af552014-07-21 14:42:30 +1000337 pe_alloc = kzalloc(size, GFP_KERNEL);
338 if (!pe_alloc) {
339 pr_warn("%s: Out of memory !\n",
340 __func__);
Gavin Shan1e916772016-05-03 15:41:36 +1000341 return NULL;
Guo Chao262af552014-07-21 14:42:30 +1000342 }
343
Gavin Shan26ba2482015-06-19 12:26:19 +1000344 /* Figure out reserved PE numbers by the PE */
Gavin Shanc4306702016-05-03 15:41:30 +1000345 pnv_ioda_reserve_m64_pe(bus, pe_alloc, all);
Guo Chao262af552014-07-21 14:42:30 +1000346
347 /*
348 * the current bus might not own M64 window and that's all
349 * contributed by its child buses. For the case, we needn't
350 * pick M64 dependent PE#.
351 */
Gavin Shan92b8f132016-05-03 15:41:24 +1000352 if (bitmap_empty(pe_alloc, phb->ioda.total_pe_num)) {
Guo Chao262af552014-07-21 14:42:30 +1000353 kfree(pe_alloc);
Gavin Shan1e916772016-05-03 15:41:36 +1000354 return NULL;
Guo Chao262af552014-07-21 14:42:30 +1000355 }
356
357 /*
358 * Figure out the master PE and put all slave PEs to master
359 * PE's list to form compound PE.
360 */
Guo Chao262af552014-07-21 14:42:30 +1000361 master_pe = NULL;
362 i = -1;
Gavin Shan92b8f132016-05-03 15:41:24 +1000363 while ((i = find_next_bit(pe_alloc, phb->ioda.total_pe_num, i + 1)) <
364 phb->ioda.total_pe_num) {
Guo Chao262af552014-07-21 14:42:30 +1000365 pe = &phb->ioda.pe_array[i];
Guo Chao262af552014-07-21 14:42:30 +1000366
Gavin Shan93289d82016-05-03 15:41:29 +1000367 phb->ioda.m64_segmap[pe->pe_number] = pe->pe_number;
Guo Chao262af552014-07-21 14:42:30 +1000368 if (!master_pe) {
369 pe->flags |= PNV_IODA_PE_MASTER;
370 INIT_LIST_HEAD(&pe->slaves);
371 master_pe = pe;
372 } else {
373 pe->flags |= PNV_IODA_PE_SLAVE;
374 pe->master = master_pe;
375 list_add_tail(&pe->list, &master_pe->slaves);
376 }
Gavin Shan99451552016-05-05 12:02:13 +1000377
378 /*
379 * P7IOC supports M64DT, which helps mapping M64 segment
380 * to one particular PE#. However, PHB3 has fixed mapping
381 * between M64 segment and PE#. In order to have same logic
382 * for P7IOC and PHB3, we enforce fixed mapping between M64
383 * segment and PE# on P7IOC.
384 */
385 if (phb->type == PNV_PHB_IODA1) {
386 int64_t rc;
387
388 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
389 pe->pe_number, OPAL_M64_WINDOW_TYPE,
390 pe->pe_number / PNV_IODA1_M64_SEGS,
391 pe->pe_number % PNV_IODA1_M64_SEGS);
392 if (rc != OPAL_SUCCESS)
393 pr_warn("%s: Error %lld mapping M64 for PHB#%d-PE#%d\n",
394 __func__, rc, phb->hose->global_number,
395 pe->pe_number);
396 }
Guo Chao262af552014-07-21 14:42:30 +1000397 }
398
399 kfree(pe_alloc);
Gavin Shan1e916772016-05-03 15:41:36 +1000400 return master_pe;
Guo Chao262af552014-07-21 14:42:30 +1000401}
402
403static void __init pnv_ioda_parse_m64_window(struct pnv_phb *phb)
404{
405 struct pci_controller *hose = phb->hose;
406 struct device_node *dn = hose->dn;
407 struct resource *res;
408 const u32 *r;
409 u64 pci_addr;
410
Gavin Shan99451552016-05-05 12:02:13 +1000411 if (phb->type != PNV_PHB_IODA1 && phb->type != PNV_PHB_IODA2) {
Gavin Shan1665c4a2014-11-12 13:36:04 +1100412 pr_info(" Not support M64 window\n");
413 return;
414 }
415
Stewart Smithe4d54f72015-12-09 17:18:20 +1100416 if (!firmware_has_feature(FW_FEATURE_OPAL)) {
Guo Chao262af552014-07-21 14:42:30 +1000417 pr_info(" Firmware too old to support M64 window\n");
418 return;
419 }
420
421 r = of_get_property(dn, "ibm,opal-m64-window", NULL);
422 if (!r) {
423 pr_info(" No <ibm,opal-m64-window> on %s\n",
424 dn->full_name);
425 return;
426 }
427
Guo Chao262af552014-07-21 14:42:30 +1000428 res = &hose->mem_resources[1];
Gavin Shane80c4e72015-10-22 12:03:08 +1100429 res->name = dn->full_name;
Guo Chao262af552014-07-21 14:42:30 +1000430 res->start = of_translate_address(dn, r + 2);
431 res->end = res->start + of_read_number(r + 4, 2) - 1;
432 res->flags = (IORESOURCE_MEM | IORESOURCE_MEM_64 | IORESOURCE_PREFETCH);
433 pci_addr = of_read_number(r, 2);
434 hose->mem_offset[1] = res->start - pci_addr;
435
436 phb->ioda.m64_size = resource_size(res);
Gavin Shan92b8f132016-05-03 15:41:24 +1000437 phb->ioda.m64_segsize = phb->ioda.m64_size / phb->ioda.total_pe_num;
Guo Chao262af552014-07-21 14:42:30 +1000438 phb->ioda.m64_base = pci_addr;
439
Wei Yange9863e62014-12-12 12:39:37 +0800440 pr_info(" MEM64 0x%016llx..0x%016llx -> 0x%016llx\n",
441 res->start, res->end, pci_addr);
442
Guo Chao262af552014-07-21 14:42:30 +1000443 /* Use last M64 BAR to cover M64 window */
444 phb->ioda.m64_bar_idx = 15;
Gavin Shan99451552016-05-05 12:02:13 +1000445 if (phb->type == PNV_PHB_IODA1)
446 phb->init_m64 = pnv_ioda1_init_m64;
447 else
448 phb->init_m64 = pnv_ioda2_init_m64;
Gavin Shanc4306702016-05-03 15:41:30 +1000449 phb->reserve_m64_pe = pnv_ioda_reserve_m64_pe;
450 phb->pick_m64_pe = pnv_ioda_pick_m64_pe;
Guo Chao262af552014-07-21 14:42:30 +1000451}
452
Gavin Shan49dec922014-07-21 14:42:33 +1000453static void pnv_ioda_freeze_pe(struct pnv_phb *phb, int pe_no)
454{
455 struct pnv_ioda_pe *pe = &phb->ioda.pe_array[pe_no];
456 struct pnv_ioda_pe *slave;
457 s64 rc;
458
459 /* Fetch master PE */
460 if (pe->flags & PNV_IODA_PE_SLAVE) {
461 pe = pe->master;
Gavin Shanec8e4e92014-11-12 13:36:10 +1100462 if (WARN_ON(!pe || !(pe->flags & PNV_IODA_PE_MASTER)))
463 return;
464
Gavin Shan49dec922014-07-21 14:42:33 +1000465 pe_no = pe->pe_number;
466 }
467
468 /* Freeze master PE */
469 rc = opal_pci_eeh_freeze_set(phb->opal_id,
470 pe_no,
471 OPAL_EEH_ACTION_SET_FREEZE_ALL);
472 if (rc != OPAL_SUCCESS) {
473 pr_warn("%s: Failure %lld freezing PHB#%x-PE#%x\n",
474 __func__, rc, phb->hose->global_number, pe_no);
475 return;
476 }
477
478 /* Freeze slave PEs */
479 if (!(pe->flags & PNV_IODA_PE_MASTER))
480 return;
481
482 list_for_each_entry(slave, &pe->slaves, list) {
483 rc = opal_pci_eeh_freeze_set(phb->opal_id,
484 slave->pe_number,
485 OPAL_EEH_ACTION_SET_FREEZE_ALL);
486 if (rc != OPAL_SUCCESS)
487 pr_warn("%s: Failure %lld freezing PHB#%x-PE#%x\n",
488 __func__, rc, phb->hose->global_number,
489 slave->pe_number);
490 }
491}
492
Anton Blancharde51df2c2014-08-20 08:55:18 +1000493static int pnv_ioda_unfreeze_pe(struct pnv_phb *phb, int pe_no, int opt)
Gavin Shan49dec922014-07-21 14:42:33 +1000494{
495 struct pnv_ioda_pe *pe, *slave;
496 s64 rc;
497
498 /* Find master PE */
499 pe = &phb->ioda.pe_array[pe_no];
500 if (pe->flags & PNV_IODA_PE_SLAVE) {
501 pe = pe->master;
502 WARN_ON(!pe || !(pe->flags & PNV_IODA_PE_MASTER));
503 pe_no = pe->pe_number;
504 }
505
506 /* Clear frozen state for master PE */
507 rc = opal_pci_eeh_freeze_clear(phb->opal_id, pe_no, opt);
508 if (rc != OPAL_SUCCESS) {
509 pr_warn("%s: Failure %lld clear %d on PHB#%x-PE#%x\n",
510 __func__, rc, opt, phb->hose->global_number, pe_no);
511 return -EIO;
512 }
513
514 if (!(pe->flags & PNV_IODA_PE_MASTER))
515 return 0;
516
517 /* Clear frozen state for slave PEs */
518 list_for_each_entry(slave, &pe->slaves, list) {
519 rc = opal_pci_eeh_freeze_clear(phb->opal_id,
520 slave->pe_number,
521 opt);
522 if (rc != OPAL_SUCCESS) {
523 pr_warn("%s: Failure %lld clear %d on PHB#%x-PE#%x\n",
524 __func__, rc, opt, phb->hose->global_number,
525 slave->pe_number);
526 return -EIO;
527 }
528 }
529
530 return 0;
531}
532
533static int pnv_ioda_get_pe_state(struct pnv_phb *phb, int pe_no)
534{
535 struct pnv_ioda_pe *slave, *pe;
536 u8 fstate, state;
537 __be16 pcierr;
538 s64 rc;
539
540 /* Sanity check on PE number */
Gavin Shan92b8f132016-05-03 15:41:24 +1000541 if (pe_no < 0 || pe_no >= phb->ioda.total_pe_num)
Gavin Shan49dec922014-07-21 14:42:33 +1000542 return OPAL_EEH_STOPPED_PERM_UNAVAIL;
543
544 /*
545 * Fetch the master PE and the PE instance might be
546 * not initialized yet.
547 */
548 pe = &phb->ioda.pe_array[pe_no];
549 if (pe->flags & PNV_IODA_PE_SLAVE) {
550 pe = pe->master;
551 WARN_ON(!pe || !(pe->flags & PNV_IODA_PE_MASTER));
552 pe_no = pe->pe_number;
553 }
554
555 /* Check the master PE */
556 rc = opal_pci_eeh_freeze_status(phb->opal_id, pe_no,
557 &state, &pcierr, NULL);
558 if (rc != OPAL_SUCCESS) {
559 pr_warn("%s: Failure %lld getting "
560 "PHB#%x-PE#%x state\n",
561 __func__, rc,
562 phb->hose->global_number, pe_no);
563 return OPAL_EEH_STOPPED_TEMP_UNAVAIL;
564 }
565
566 /* Check the slave PE */
567 if (!(pe->flags & PNV_IODA_PE_MASTER))
568 return state;
569
570 list_for_each_entry(slave, &pe->slaves, list) {
571 rc = opal_pci_eeh_freeze_status(phb->opal_id,
572 slave->pe_number,
573 &fstate,
574 &pcierr,
575 NULL);
576 if (rc != OPAL_SUCCESS) {
577 pr_warn("%s: Failure %lld getting "
578 "PHB#%x-PE#%x state\n",
579 __func__, rc,
580 phb->hose->global_number, slave->pe_number);
581 return OPAL_EEH_STOPPED_TEMP_UNAVAIL;
582 }
583
584 /*
585 * Override the result based on the ascending
586 * priority.
587 */
588 if (fstate > state)
589 state = fstate;
590 }
591
592 return state;
593}
594
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000595/* Currently those 2 are only used when MSIs are enabled, this will change
596 * but in the meantime, we need to protect them to avoid warnings
597 */
598#ifdef CONFIG_PCI_MSI
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800599static struct pnv_ioda_pe *pnv_ioda_get_pe(struct pci_dev *dev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000600{
601 struct pci_controller *hose = pci_bus_to_host(dev->bus);
602 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000603 struct pci_dn *pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000604
605 if (!pdn)
606 return NULL;
607 if (pdn->pe_number == IODA_INVALID_PE)
608 return NULL;
609 return &phb->ioda.pe_array[pdn->pe_number];
610}
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000611#endif /* CONFIG_PCI_MSI */
612
Gavin Shanb131a842014-11-12 13:36:08 +1100613static int pnv_ioda_set_one_peltv(struct pnv_phb *phb,
614 struct pnv_ioda_pe *parent,
615 struct pnv_ioda_pe *child,
616 bool is_add)
617{
618 const char *desc = is_add ? "adding" : "removing";
619 uint8_t op = is_add ? OPAL_ADD_PE_TO_DOMAIN :
620 OPAL_REMOVE_PE_FROM_DOMAIN;
621 struct pnv_ioda_pe *slave;
622 long rc;
623
624 /* Parent PE affects child PE */
625 rc = opal_pci_set_peltv(phb->opal_id, parent->pe_number,
626 child->pe_number, op);
627 if (rc != OPAL_SUCCESS) {
628 pe_warn(child, "OPAL error %ld %s to parent PELTV\n",
629 rc, desc);
630 return -ENXIO;
631 }
632
633 if (!(child->flags & PNV_IODA_PE_MASTER))
634 return 0;
635
636 /* Compound case: parent PE affects slave PEs */
637 list_for_each_entry(slave, &child->slaves, list) {
638 rc = opal_pci_set_peltv(phb->opal_id, parent->pe_number,
639 slave->pe_number, op);
640 if (rc != OPAL_SUCCESS) {
641 pe_warn(slave, "OPAL error %ld %s to parent PELTV\n",
642 rc, desc);
643 return -ENXIO;
644 }
645 }
646
647 return 0;
648}
649
650static int pnv_ioda_set_peltv(struct pnv_phb *phb,
651 struct pnv_ioda_pe *pe,
652 bool is_add)
653{
654 struct pnv_ioda_pe *slave;
Wei Yang781a8682015-03-25 16:23:57 +0800655 struct pci_dev *pdev = NULL;
Gavin Shanb131a842014-11-12 13:36:08 +1100656 int ret;
657
658 /*
659 * Clear PE frozen state. If it's master PE, we need
660 * clear slave PE frozen state as well.
661 */
662 if (is_add) {
663 opal_pci_eeh_freeze_clear(phb->opal_id, pe->pe_number,
664 OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
665 if (pe->flags & PNV_IODA_PE_MASTER) {
666 list_for_each_entry(slave, &pe->slaves, list)
667 opal_pci_eeh_freeze_clear(phb->opal_id,
668 slave->pe_number,
669 OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
670 }
671 }
672
673 /*
674 * Associate PE in PELT. We need add the PE into the
675 * corresponding PELT-V as well. Otherwise, the error
676 * originated from the PE might contribute to other
677 * PEs.
678 */
679 ret = pnv_ioda_set_one_peltv(phb, pe, pe, is_add);
680 if (ret)
681 return ret;
682
683 /* For compound PEs, any one affects all of them */
684 if (pe->flags & PNV_IODA_PE_MASTER) {
685 list_for_each_entry(slave, &pe->slaves, list) {
686 ret = pnv_ioda_set_one_peltv(phb, slave, pe, is_add);
687 if (ret)
688 return ret;
689 }
690 }
691
692 if (pe->flags & (PNV_IODA_PE_BUS_ALL | PNV_IODA_PE_BUS))
693 pdev = pe->pbus->self;
Wei Yang781a8682015-03-25 16:23:57 +0800694 else if (pe->flags & PNV_IODA_PE_DEV)
Gavin Shanb131a842014-11-12 13:36:08 +1100695 pdev = pe->pdev->bus->self;
Wei Yang781a8682015-03-25 16:23:57 +0800696#ifdef CONFIG_PCI_IOV
697 else if (pe->flags & PNV_IODA_PE_VF)
Gavin Shan283e2d82015-06-22 13:45:47 +1000698 pdev = pe->parent_dev;
Wei Yang781a8682015-03-25 16:23:57 +0800699#endif /* CONFIG_PCI_IOV */
Gavin Shanb131a842014-11-12 13:36:08 +1100700 while (pdev) {
701 struct pci_dn *pdn = pci_get_pdn(pdev);
702 struct pnv_ioda_pe *parent;
703
704 if (pdn && pdn->pe_number != IODA_INVALID_PE) {
705 parent = &phb->ioda.pe_array[pdn->pe_number];
706 ret = pnv_ioda_set_one_peltv(phb, parent, pe, is_add);
707 if (ret)
708 return ret;
709 }
710
711 pdev = pdev->bus->self;
712 }
713
714 return 0;
715}
716
Wei Yang781a8682015-03-25 16:23:57 +0800717#ifdef CONFIG_PCI_IOV
718static int pnv_ioda_deconfigure_pe(struct pnv_phb *phb, struct pnv_ioda_pe *pe)
719{
720 struct pci_dev *parent;
721 uint8_t bcomp, dcomp, fcomp;
722 int64_t rc;
723 long rid_end, rid;
724
725 /* Currently, we just deconfigure VF PE. Bus PE will always there.*/
726 if (pe->pbus) {
727 int count;
728
729 dcomp = OPAL_IGNORE_RID_DEVICE_NUMBER;
730 fcomp = OPAL_IGNORE_RID_FUNCTION_NUMBER;
731 parent = pe->pbus->self;
732 if (pe->flags & PNV_IODA_PE_BUS_ALL)
733 count = pe->pbus->busn_res.end - pe->pbus->busn_res.start + 1;
734 else
735 count = 1;
736
737 switch(count) {
738 case 1: bcomp = OpalPciBusAll; break;
739 case 2: bcomp = OpalPciBus7Bits; break;
740 case 4: bcomp = OpalPciBus6Bits; break;
741 case 8: bcomp = OpalPciBus5Bits; break;
742 case 16: bcomp = OpalPciBus4Bits; break;
743 case 32: bcomp = OpalPciBus3Bits; break;
744 default:
745 dev_err(&pe->pbus->dev, "Number of subordinate buses %d unsupported\n",
746 count);
747 /* Do an exact match only */
748 bcomp = OpalPciBusAll;
749 }
750 rid_end = pe->rid + (count << 8);
751 } else {
752 if (pe->flags & PNV_IODA_PE_VF)
753 parent = pe->parent_dev;
754 else
755 parent = pe->pdev->bus->self;
756 bcomp = OpalPciBusAll;
757 dcomp = OPAL_COMPARE_RID_DEVICE_NUMBER;
758 fcomp = OPAL_COMPARE_RID_FUNCTION_NUMBER;
759 rid_end = pe->rid + 1;
760 }
761
762 /* Clear the reverse map */
763 for (rid = pe->rid; rid < rid_end; rid++)
764 phb->ioda.pe_rmap[rid] = 0;
765
766 /* Release from all parents PELT-V */
767 while (parent) {
768 struct pci_dn *pdn = pci_get_pdn(parent);
769 if (pdn && pdn->pe_number != IODA_INVALID_PE) {
770 rc = opal_pci_set_peltv(phb->opal_id, pdn->pe_number,
771 pe->pe_number, OPAL_REMOVE_PE_FROM_DOMAIN);
772 /* XXX What to do in case of error ? */
773 }
774 parent = parent->bus->self;
775 }
776
Gavin Shanf951e512015-06-23 17:01:13 +1000777 opal_pci_eeh_freeze_clear(phb->opal_id, pe->pe_number,
Wei Yang781a8682015-03-25 16:23:57 +0800778 OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
779
780 /* Disassociate PE in PELT */
781 rc = opal_pci_set_peltv(phb->opal_id, pe->pe_number,
782 pe->pe_number, OPAL_REMOVE_PE_FROM_DOMAIN);
783 if (rc)
784 pe_warn(pe, "OPAL error %ld remove self from PELTV\n", rc);
785 rc = opal_pci_set_pe(phb->opal_id, pe->pe_number, pe->rid,
786 bcomp, dcomp, fcomp, OPAL_UNMAP_PE);
787 if (rc)
788 pe_err(pe, "OPAL error %ld trying to setup PELT table\n", rc);
789
790 pe->pbus = NULL;
791 pe->pdev = NULL;
792 pe->parent_dev = NULL;
793
794 return 0;
795}
796#endif /* CONFIG_PCI_IOV */
797
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800798static int pnv_ioda_configure_pe(struct pnv_phb *phb, struct pnv_ioda_pe *pe)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000799{
800 struct pci_dev *parent;
801 uint8_t bcomp, dcomp, fcomp;
802 long rc, rid_end, rid;
803
804 /* Bus validation ? */
805 if (pe->pbus) {
806 int count;
807
808 dcomp = OPAL_IGNORE_RID_DEVICE_NUMBER;
809 fcomp = OPAL_IGNORE_RID_FUNCTION_NUMBER;
810 parent = pe->pbus->self;
Gavin Shanfb446ad2012-08-20 03:49:14 +0000811 if (pe->flags & PNV_IODA_PE_BUS_ALL)
812 count = pe->pbus->busn_res.end - pe->pbus->busn_res.start + 1;
813 else
814 count = 1;
815
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000816 switch(count) {
817 case 1: bcomp = OpalPciBusAll; break;
818 case 2: bcomp = OpalPciBus7Bits; break;
819 case 4: bcomp = OpalPciBus6Bits; break;
820 case 8: bcomp = OpalPciBus5Bits; break;
821 case 16: bcomp = OpalPciBus4Bits; break;
822 case 32: bcomp = OpalPciBus3Bits; break;
823 default:
Wei Yang781a8682015-03-25 16:23:57 +0800824 dev_err(&pe->pbus->dev, "Number of subordinate buses %d unsupported\n",
825 count);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000826 /* Do an exact match only */
827 bcomp = OpalPciBusAll;
828 }
829 rid_end = pe->rid + (count << 8);
830 } else {
Wei Yang781a8682015-03-25 16:23:57 +0800831#ifdef CONFIG_PCI_IOV
832 if (pe->flags & PNV_IODA_PE_VF)
833 parent = pe->parent_dev;
834 else
835#endif /* CONFIG_PCI_IOV */
836 parent = pe->pdev->bus->self;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000837 bcomp = OpalPciBusAll;
838 dcomp = OPAL_COMPARE_RID_DEVICE_NUMBER;
839 fcomp = OPAL_COMPARE_RID_FUNCTION_NUMBER;
840 rid_end = pe->rid + 1;
841 }
842
Gavin Shan631ad692013-11-04 16:32:46 +0800843 /*
844 * Associate PE in PELT. We need add the PE into the
845 * corresponding PELT-V as well. Otherwise, the error
846 * originated from the PE might contribute to other
847 * PEs.
848 */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000849 rc = opal_pci_set_pe(phb->opal_id, pe->pe_number, pe->rid,
850 bcomp, dcomp, fcomp, OPAL_MAP_PE);
851 if (rc) {
852 pe_err(pe, "OPAL error %ld trying to setup PELT table\n", rc);
853 return -ENXIO;
854 }
Gavin Shan631ad692013-11-04 16:32:46 +0800855
Alistair Popple5d2aa712015-12-17 13:43:13 +1100856 /*
857 * Configure PELTV. NPUs don't have a PELTV table so skip
858 * configuration on them.
859 */
860 if (phb->type != PNV_PHB_NPU)
861 pnv_ioda_set_peltv(phb, pe, true);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000862
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000863 /* Setup reverse map */
864 for (rid = pe->rid; rid < rid_end; rid++)
865 phb->ioda.pe_rmap[rid] = pe->pe_number;
866
867 /* Setup one MVTs on IODA1 */
Gavin Shan4773f762014-11-12 13:36:09 +1100868 if (phb->type != PNV_PHB_IODA1) {
869 pe->mve_number = 0;
870 goto out;
871 }
872
873 pe->mve_number = pe->pe_number;
874 rc = opal_pci_set_mve(phb->opal_id, pe->mve_number, pe->pe_number);
875 if (rc != OPAL_SUCCESS) {
876 pe_err(pe, "OPAL error %ld setting up MVE %d\n",
877 rc, pe->mve_number);
878 pe->mve_number = -1;
879 } else {
880 rc = opal_pci_set_mve_enable(phb->opal_id,
881 pe->mve_number, OPAL_ENABLE_MVE);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000882 if (rc) {
Gavin Shan4773f762014-11-12 13:36:09 +1100883 pe_err(pe, "OPAL error %ld enabling MVE %d\n",
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000884 rc, pe->mve_number);
885 pe->mve_number = -1;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000886 }
Gavin Shan4773f762014-11-12 13:36:09 +1100887 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000888
Gavin Shan4773f762014-11-12 13:36:09 +1100889out:
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000890 return 0;
891}
892
Wei Yang781a8682015-03-25 16:23:57 +0800893#ifdef CONFIG_PCI_IOV
894static int pnv_pci_vf_resource_shift(struct pci_dev *dev, int offset)
895{
896 struct pci_dn *pdn = pci_get_pdn(dev);
897 int i;
898 struct resource *res, res2;
899 resource_size_t size;
900 u16 num_vfs;
901
902 if (!dev->is_physfn)
903 return -EINVAL;
904
905 /*
906 * "offset" is in VFs. The M64 windows are sized so that when they
907 * are segmented, each segment is the same size as the IOV BAR.
908 * Each segment is in a separate PE, and the high order bits of the
909 * address are the PE number. Therefore, each VF's BAR is in a
910 * separate PE, and changing the IOV BAR start address changes the
911 * range of PEs the VFs are in.
912 */
913 num_vfs = pdn->num_vfs;
914 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
915 res = &dev->resource[i + PCI_IOV_RESOURCES];
916 if (!res->flags || !res->parent)
917 continue;
918
Wei Yang781a8682015-03-25 16:23:57 +0800919 /*
920 * The actual IOV BAR range is determined by the start address
921 * and the actual size for num_vfs VFs BAR. This check is to
922 * make sure that after shifting, the range will not overlap
923 * with another device.
924 */
925 size = pci_iov_resource_size(dev, i + PCI_IOV_RESOURCES);
926 res2.flags = res->flags;
927 res2.start = res->start + (size * offset);
928 res2.end = res2.start + (size * num_vfs) - 1;
929
930 if (res2.end > res->end) {
931 dev_err(&dev->dev, "VF BAR%d: %pR would extend past %pR (trying to enable %d VFs shifted by %d)\n",
932 i, &res2, res, num_vfs, offset);
933 return -EBUSY;
934 }
935 }
936
937 /*
938 * After doing so, there would be a "hole" in the /proc/iomem when
939 * offset is a positive value. It looks like the device return some
940 * mmio back to the system, which actually no one could use it.
941 */
942 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
943 res = &dev->resource[i + PCI_IOV_RESOURCES];
944 if (!res->flags || !res->parent)
945 continue;
946
Wei Yang781a8682015-03-25 16:23:57 +0800947 size = pci_iov_resource_size(dev, i + PCI_IOV_RESOURCES);
948 res2 = *res;
949 res->start += size * offset;
950
Wei Yang74703cc2015-07-20 18:14:58 +0800951 dev_info(&dev->dev, "VF BAR%d: %pR shifted to %pR (%sabling %d VFs shifted by %d)\n",
952 i, &res2, res, (offset > 0) ? "En" : "Dis",
953 num_vfs, offset);
Wei Yang781a8682015-03-25 16:23:57 +0800954 pci_update_resource(dev, i + PCI_IOV_RESOURCES);
955 }
956 return 0;
957}
958#endif /* CONFIG_PCI_IOV */
959
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800960static struct pnv_ioda_pe *pnv_ioda_setup_dev_PE(struct pci_dev *dev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000961{
962 struct pci_controller *hose = pci_bus_to_host(dev->bus);
963 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000964 struct pci_dn *pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000965 struct pnv_ioda_pe *pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000966
967 if (!pdn) {
968 pr_err("%s: Device tree node not associated properly\n",
969 pci_name(dev));
970 return NULL;
971 }
972 if (pdn->pe_number != IODA_INVALID_PE)
973 return NULL;
974
Gavin Shan1e916772016-05-03 15:41:36 +1000975 pe = pnv_ioda_alloc_pe(phb);
976 if (!pe) {
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000977 pr_warning("%s: Not enough PE# available, disabling device\n",
978 pci_name(dev));
979 return NULL;
980 }
981
982 /* NOTE: We get only one ref to the pci_dev for the pdn, not for the
983 * pointer in the PE data structure, both should be destroyed at the
984 * same time. However, this needs to be looked at more closely again
985 * once we actually start removing things (Hotplug, SR-IOV, ...)
986 *
987 * At some point we want to remove the PDN completely anyways
988 */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000989 pci_dev_get(dev);
990 pdn->pcidev = dev;
Gavin Shan1e916772016-05-03 15:41:36 +1000991 pdn->pe_number = pe->pe_number;
Alistair Popple5d2aa712015-12-17 13:43:13 +1100992 pe->flags = PNV_IODA_PE_DEV;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000993 pe->pdev = dev;
994 pe->pbus = NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000995 pe->mve_number = -1;
996 pe->rid = dev->bus->number << 8 | pdn->devfn;
997
998 pe_info(pe, "Associated device to PE\n");
999
1000 if (pnv_ioda_configure_pe(phb, pe)) {
1001 /* XXX What do we do here ? */
Gavin Shan1e916772016-05-03 15:41:36 +10001002 pnv_ioda_free_pe(pe);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001003 pdn->pe_number = IODA_INVALID_PE;
1004 pe->pdev = NULL;
1005 pci_dev_put(dev);
1006 return NULL;
1007 }
1008
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001009 return pe;
1010}
1011
1012static void pnv_ioda_setup_same_PE(struct pci_bus *bus, struct pnv_ioda_pe *pe)
1013{
1014 struct pci_dev *dev;
1015
1016 list_for_each_entry(dev, &bus->devices, bus_list) {
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00001017 struct pci_dn *pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001018
1019 if (pdn == NULL) {
1020 pr_warn("%s: No device node associated with device !\n",
1021 pci_name(dev));
1022 continue;
1023 }
Alistair Popple94973b22015-12-17 13:43:11 +11001024 pdn->pcidev = dev;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001025 pdn->pe_number = pe->pe_number;
Gavin Shanfb446ad2012-08-20 03:49:14 +00001026 if ((pe->flags & PNV_IODA_PE_BUS_ALL) && dev->subordinate)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001027 pnv_ioda_setup_same_PE(dev->subordinate, pe);
1028 }
1029}
1030
Gavin Shanfb446ad2012-08-20 03:49:14 +00001031/*
1032 * There're 2 types of PCI bus sensitive PEs: One that is compromised of
1033 * single PCI bus. Another one that contains the primary PCI bus and its
1034 * subordinate PCI devices and buses. The second type of PE is normally
1035 * orgiriated by PCIe-to-PCI bridge or PLX switch downstream ports.
1036 */
Gavin Shan1e916772016-05-03 15:41:36 +10001037static struct pnv_ioda_pe *pnv_ioda_setup_bus_PE(struct pci_bus *bus, bool all)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001038{
Gavin Shanfb446ad2012-08-20 03:49:14 +00001039 struct pci_controller *hose = pci_bus_to_host(bus);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001040 struct pnv_phb *phb = hose->private_data;
Gavin Shan1e916772016-05-03 15:41:36 +10001041 struct pnv_ioda_pe *pe = NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001042
Guo Chao262af552014-07-21 14:42:30 +10001043 /* Check if PE is determined by M64 */
1044 if (phb->pick_m64_pe)
Gavin Shan1e916772016-05-03 15:41:36 +10001045 pe = phb->pick_m64_pe(bus, all);
Guo Chao262af552014-07-21 14:42:30 +10001046
1047 /* The PE number isn't pinned by M64 */
Gavin Shan1e916772016-05-03 15:41:36 +10001048 if (!pe)
1049 pe = pnv_ioda_alloc_pe(phb);
Guo Chao262af552014-07-21 14:42:30 +10001050
Gavin Shan1e916772016-05-03 15:41:36 +10001051 if (!pe) {
Gavin Shanfb446ad2012-08-20 03:49:14 +00001052 pr_warning("%s: Not enough PE# available for PCI bus %04x:%02x\n",
1053 __func__, pci_domain_nr(bus), bus->number);
Gavin Shan1e916772016-05-03 15:41:36 +10001054 return NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001055 }
1056
Guo Chao262af552014-07-21 14:42:30 +10001057 pe->flags |= (all ? PNV_IODA_PE_BUS_ALL : PNV_IODA_PE_BUS);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001058 pe->pbus = bus;
1059 pe->pdev = NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001060 pe->mve_number = -1;
Yinghai Lub918c622012-05-17 18:51:11 -07001061 pe->rid = bus->busn_res.start << 8;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001062
Gavin Shanfb446ad2012-08-20 03:49:14 +00001063 if (all)
1064 pe_info(pe, "Secondary bus %d..%d associated with PE#%d\n",
Gavin Shan1e916772016-05-03 15:41:36 +10001065 bus->busn_res.start, bus->busn_res.end, pe->pe_number);
Gavin Shanfb446ad2012-08-20 03:49:14 +00001066 else
1067 pe_info(pe, "Secondary bus %d associated with PE#%d\n",
Gavin Shan1e916772016-05-03 15:41:36 +10001068 bus->busn_res.start, pe->pe_number);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001069
1070 if (pnv_ioda_configure_pe(phb, pe)) {
1071 /* XXX What do we do here ? */
Gavin Shan1e916772016-05-03 15:41:36 +10001072 pnv_ioda_free_pe(pe);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001073 pe->pbus = NULL;
Gavin Shan1e916772016-05-03 15:41:36 +10001074 return NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001075 }
1076
1077 /* Associate it with all child devices */
1078 pnv_ioda_setup_same_PE(bus, pe);
1079
Gavin Shan7ebdf952012-08-20 03:49:15 +00001080 /* Put PE to the list */
1081 list_add_tail(&pe->list, &phb->ioda.pe_list);
Gavin Shan1e916772016-05-03 15:41:36 +10001082
1083 return pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001084}
1085
Alistair Poppleb5215492016-01-11 16:53:49 +11001086static struct pnv_ioda_pe *pnv_ioda_setup_npu_PE(struct pci_dev *npu_pdev)
Alistair Popple5d2aa712015-12-17 13:43:13 +11001087{
Alistair Poppleb5215492016-01-11 16:53:49 +11001088 int pe_num, found_pe = false, rc;
1089 long rid;
1090 struct pnv_ioda_pe *pe;
1091 struct pci_dev *gpu_pdev;
1092 struct pci_dn *npu_pdn;
1093 struct pci_controller *hose = pci_bus_to_host(npu_pdev->bus);
1094 struct pnv_phb *phb = hose->private_data;
1095
1096 /*
1097 * Due to a hardware errata PE#0 on the NPU is reserved for
1098 * error handling. This means we only have three PEs remaining
1099 * which need to be assigned to four links, implying some
1100 * links must share PEs.
1101 *
1102 * To achieve this we assign PEs such that NPUs linking the
1103 * same GPU get assigned the same PE.
1104 */
1105 gpu_pdev = pnv_pci_get_gpu_dev(npu_pdev);
Gavin Shan92b8f132016-05-03 15:41:24 +10001106 for (pe_num = 0; pe_num < phb->ioda.total_pe_num; pe_num++) {
Alistair Poppleb5215492016-01-11 16:53:49 +11001107 pe = &phb->ioda.pe_array[pe_num];
1108 if (!pe->pdev)
1109 continue;
1110
1111 if (pnv_pci_get_gpu_dev(pe->pdev) == gpu_pdev) {
1112 /*
1113 * This device has the same peer GPU so should
1114 * be assigned the same PE as the existing
1115 * peer NPU.
1116 */
1117 dev_info(&npu_pdev->dev,
1118 "Associating to existing PE %d\n", pe_num);
1119 pci_dev_get(npu_pdev);
1120 npu_pdn = pci_get_pdn(npu_pdev);
1121 rid = npu_pdev->bus->number << 8 | npu_pdn->devfn;
1122 npu_pdn->pcidev = npu_pdev;
1123 npu_pdn->pe_number = pe_num;
Alistair Poppleb5215492016-01-11 16:53:49 +11001124 phb->ioda.pe_rmap[rid] = pe->pe_number;
1125
1126 /* Map the PE to this link */
1127 rc = opal_pci_set_pe(phb->opal_id, pe_num, rid,
1128 OpalPciBusAll,
1129 OPAL_COMPARE_RID_DEVICE_NUMBER,
1130 OPAL_COMPARE_RID_FUNCTION_NUMBER,
1131 OPAL_MAP_PE);
1132 WARN_ON(rc != OPAL_SUCCESS);
1133 found_pe = true;
1134 break;
1135 }
1136 }
1137
1138 if (!found_pe)
1139 /*
1140 * Could not find an existing PE so allocate a new
1141 * one.
1142 */
1143 return pnv_ioda_setup_dev_PE(npu_pdev);
1144 else
1145 return pe;
1146}
1147
1148static void pnv_ioda_setup_npu_PEs(struct pci_bus *bus)
1149{
Alistair Popple5d2aa712015-12-17 13:43:13 +11001150 struct pci_dev *pdev;
1151
1152 list_for_each_entry(pdev, &bus->devices, bus_list)
Alistair Poppleb5215492016-01-11 16:53:49 +11001153 pnv_ioda_setup_npu_PE(pdev);
Alistair Popple5d2aa712015-12-17 13:43:13 +11001154}
1155
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08001156static void pnv_ioda_setup_PEs(struct pci_bus *bus)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001157{
1158 struct pci_dev *dev;
Gavin Shanfb446ad2012-08-20 03:49:14 +00001159
Gavin Shand1203852015-06-19 12:26:18 +10001160 pnv_ioda_setup_bus_PE(bus, false);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001161
1162 list_for_each_entry(dev, &bus->devices, bus_list) {
Gavin Shanfb446ad2012-08-20 03:49:14 +00001163 if (dev->subordinate) {
1164 if (pci_pcie_type(dev) == PCI_EXP_TYPE_PCI_BRIDGE)
Gavin Shand1203852015-06-19 12:26:18 +10001165 pnv_ioda_setup_bus_PE(dev->subordinate, true);
Gavin Shanfb446ad2012-08-20 03:49:14 +00001166 else
1167 pnv_ioda_setup_PEs(dev->subordinate);
1168 }
1169 }
1170}
1171
1172/*
1173 * Configure PEs so that the downstream PCI buses and devices
1174 * could have their associated PE#. Unfortunately, we didn't
1175 * figure out the way to identify the PLX bridge yet. So we
1176 * simply put the PCI bus and the subordinate behind the root
1177 * port to PE# here. The game rule here is expected to be changed
1178 * as soon as we can detected PLX bridge correctly.
1179 */
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08001180static void pnv_pci_ioda_setup_PEs(void)
Gavin Shanfb446ad2012-08-20 03:49:14 +00001181{
1182 struct pci_controller *hose, *tmp;
Guo Chao262af552014-07-21 14:42:30 +10001183 struct pnv_phb *phb;
Gavin Shanfb446ad2012-08-20 03:49:14 +00001184
1185 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
Guo Chao262af552014-07-21 14:42:30 +10001186 phb = hose->private_data;
1187
1188 /* M64 layout might affect PE allocation */
Gavin Shan5ef73562014-11-12 13:36:06 +11001189 if (phb->reserve_m64_pe)
Gavin Shan96a2f922015-06-19 12:26:17 +10001190 phb->reserve_m64_pe(hose->bus, NULL, true);
Guo Chao262af552014-07-21 14:42:30 +10001191
Alistair Popple5d2aa712015-12-17 13:43:13 +11001192 /*
1193 * On NPU PHB, we expect separate PEs for individual PCI
1194 * functions. PCI bus dependent PEs are required for the
1195 * remaining types of PHBs.
1196 */
Alistair Popple08f48f32016-01-11 16:53:50 +11001197 if (phb->type == PNV_PHB_NPU) {
1198 /* PE#0 is needed for error reporting */
1199 pnv_ioda_reserve_pe(phb, 0);
Alistair Poppleb5215492016-01-11 16:53:49 +11001200 pnv_ioda_setup_npu_PEs(hose->bus);
Alistair Popple08f48f32016-01-11 16:53:50 +11001201 } else
Alistair Popple5d2aa712015-12-17 13:43:13 +11001202 pnv_ioda_setup_PEs(hose->bus);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001203 }
1204}
1205
Gavin Shana8b2f822015-03-25 16:23:52 +08001206#ifdef CONFIG_PCI_IOV
Wei Yangee8222f2015-10-22 09:22:16 +08001207static int pnv_pci_vf_release_m64(struct pci_dev *pdev, u16 num_vfs)
Wei Yang781a8682015-03-25 16:23:57 +08001208{
1209 struct pci_bus *bus;
1210 struct pci_controller *hose;
1211 struct pnv_phb *phb;
1212 struct pci_dn *pdn;
Wei Yang02639b02015-03-25 16:23:59 +08001213 int i, j;
Wei Yangee8222f2015-10-22 09:22:16 +08001214 int m64_bars;
Wei Yang781a8682015-03-25 16:23:57 +08001215
1216 bus = pdev->bus;
1217 hose = pci_bus_to_host(bus);
1218 phb = hose->private_data;
1219 pdn = pci_get_pdn(pdev);
1220
Wei Yangee8222f2015-10-22 09:22:16 +08001221 if (pdn->m64_single_mode)
1222 m64_bars = num_vfs;
1223 else
1224 m64_bars = 1;
1225
Wei Yang02639b02015-03-25 16:23:59 +08001226 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++)
Wei Yangee8222f2015-10-22 09:22:16 +08001227 for (j = 0; j < m64_bars; j++) {
1228 if (pdn->m64_map[j][i] == IODA_INVALID_M64)
Wei Yang02639b02015-03-25 16:23:59 +08001229 continue;
1230 opal_pci_phb_mmio_enable(phb->opal_id,
Wei Yangee8222f2015-10-22 09:22:16 +08001231 OPAL_M64_WINDOW_TYPE, pdn->m64_map[j][i], 0);
1232 clear_bit(pdn->m64_map[j][i], &phb->ioda.m64_bar_alloc);
1233 pdn->m64_map[j][i] = IODA_INVALID_M64;
Wei Yang02639b02015-03-25 16:23:59 +08001234 }
Wei Yang781a8682015-03-25 16:23:57 +08001235
Wei Yangee8222f2015-10-22 09:22:16 +08001236 kfree(pdn->m64_map);
Wei Yang781a8682015-03-25 16:23:57 +08001237 return 0;
1238}
1239
Wei Yang02639b02015-03-25 16:23:59 +08001240static int pnv_pci_vf_assign_m64(struct pci_dev *pdev, u16 num_vfs)
Wei Yang781a8682015-03-25 16:23:57 +08001241{
1242 struct pci_bus *bus;
1243 struct pci_controller *hose;
1244 struct pnv_phb *phb;
1245 struct pci_dn *pdn;
1246 unsigned int win;
1247 struct resource *res;
Wei Yang02639b02015-03-25 16:23:59 +08001248 int i, j;
Wei Yang781a8682015-03-25 16:23:57 +08001249 int64_t rc;
Wei Yang02639b02015-03-25 16:23:59 +08001250 int total_vfs;
1251 resource_size_t size, start;
1252 int pe_num;
Wei Yangee8222f2015-10-22 09:22:16 +08001253 int m64_bars;
Wei Yang781a8682015-03-25 16:23:57 +08001254
1255 bus = pdev->bus;
1256 hose = pci_bus_to_host(bus);
1257 phb = hose->private_data;
1258 pdn = pci_get_pdn(pdev);
Wei Yang02639b02015-03-25 16:23:59 +08001259 total_vfs = pci_sriov_get_totalvfs(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001260
Wei Yangee8222f2015-10-22 09:22:16 +08001261 if (pdn->m64_single_mode)
1262 m64_bars = num_vfs;
1263 else
1264 m64_bars = 1;
Wei Yang02639b02015-03-25 16:23:59 +08001265
Wei Yangee8222f2015-10-22 09:22:16 +08001266 pdn->m64_map = kmalloc(sizeof(*pdn->m64_map) * m64_bars, GFP_KERNEL);
1267 if (!pdn->m64_map)
1268 return -ENOMEM;
1269 /* Initialize the m64_map to IODA_INVALID_M64 */
1270 for (i = 0; i < m64_bars ; i++)
1271 for (j = 0; j < PCI_SRIOV_NUM_BARS; j++)
1272 pdn->m64_map[i][j] = IODA_INVALID_M64;
1273
Wei Yang781a8682015-03-25 16:23:57 +08001274
1275 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
1276 res = &pdev->resource[i + PCI_IOV_RESOURCES];
1277 if (!res->flags || !res->parent)
1278 continue;
1279
Wei Yangee8222f2015-10-22 09:22:16 +08001280 for (j = 0; j < m64_bars; j++) {
Wei Yang02639b02015-03-25 16:23:59 +08001281 do {
1282 win = find_next_zero_bit(&phb->ioda.m64_bar_alloc,
1283 phb->ioda.m64_bar_idx + 1, 0);
Wei Yang781a8682015-03-25 16:23:57 +08001284
Wei Yang02639b02015-03-25 16:23:59 +08001285 if (win >= phb->ioda.m64_bar_idx + 1)
1286 goto m64_failed;
1287 } while (test_and_set_bit(win, &phb->ioda.m64_bar_alloc));
Wei Yang781a8682015-03-25 16:23:57 +08001288
Wei Yangee8222f2015-10-22 09:22:16 +08001289 pdn->m64_map[j][i] = win;
Wei Yang781a8682015-03-25 16:23:57 +08001290
Wei Yangee8222f2015-10-22 09:22:16 +08001291 if (pdn->m64_single_mode) {
Wei Yang02639b02015-03-25 16:23:59 +08001292 size = pci_iov_resource_size(pdev,
1293 PCI_IOV_RESOURCES + i);
Wei Yang02639b02015-03-25 16:23:59 +08001294 start = res->start + size * j;
1295 } else {
1296 size = resource_size(res);
1297 start = res->start;
1298 }
1299
1300 /* Map the M64 here */
Wei Yangee8222f2015-10-22 09:22:16 +08001301 if (pdn->m64_single_mode) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001302 pe_num = pdn->pe_num_map[j];
Wei Yang02639b02015-03-25 16:23:59 +08001303 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
1304 pe_num, OPAL_M64_WINDOW_TYPE,
Wei Yangee8222f2015-10-22 09:22:16 +08001305 pdn->m64_map[j][i], 0);
Wei Yang02639b02015-03-25 16:23:59 +08001306 }
1307
1308 rc = opal_pci_set_phb_mem_window(phb->opal_id,
Wei Yang781a8682015-03-25 16:23:57 +08001309 OPAL_M64_WINDOW_TYPE,
Wei Yangee8222f2015-10-22 09:22:16 +08001310 pdn->m64_map[j][i],
Wei Yang02639b02015-03-25 16:23:59 +08001311 start,
Wei Yang781a8682015-03-25 16:23:57 +08001312 0, /* unused */
Wei Yang02639b02015-03-25 16:23:59 +08001313 size);
Wei Yang781a8682015-03-25 16:23:57 +08001314
Wei Yang02639b02015-03-25 16:23:59 +08001315
1316 if (rc != OPAL_SUCCESS) {
1317 dev_err(&pdev->dev, "Failed to map M64 window #%d: %lld\n",
1318 win, rc);
1319 goto m64_failed;
1320 }
1321
Wei Yangee8222f2015-10-22 09:22:16 +08001322 if (pdn->m64_single_mode)
Wei Yang02639b02015-03-25 16:23:59 +08001323 rc = opal_pci_phb_mmio_enable(phb->opal_id,
Wei Yangee8222f2015-10-22 09:22:16 +08001324 OPAL_M64_WINDOW_TYPE, pdn->m64_map[j][i], 2);
Wei Yang02639b02015-03-25 16:23:59 +08001325 else
1326 rc = opal_pci_phb_mmio_enable(phb->opal_id,
Wei Yangee8222f2015-10-22 09:22:16 +08001327 OPAL_M64_WINDOW_TYPE, pdn->m64_map[j][i], 1);
Wei Yang02639b02015-03-25 16:23:59 +08001328
1329 if (rc != OPAL_SUCCESS) {
1330 dev_err(&pdev->dev, "Failed to enable M64 window #%d: %llx\n",
1331 win, rc);
1332 goto m64_failed;
1333 }
Wei Yang781a8682015-03-25 16:23:57 +08001334 }
1335 }
1336 return 0;
1337
1338m64_failed:
Wei Yangee8222f2015-10-22 09:22:16 +08001339 pnv_pci_vf_release_m64(pdev, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001340 return -EBUSY;
1341}
1342
Alexey Kardashevskiyc035e372015-06-05 16:35:21 +10001343static long pnv_pci_ioda2_unset_window(struct iommu_table_group *table_group,
1344 int num);
1345static void pnv_pci_ioda2_set_bypass(struct pnv_ioda_pe *pe, bool enable);
1346
Wei Yang781a8682015-03-25 16:23:57 +08001347static void pnv_pci_ioda2_release_dma_pe(struct pci_dev *dev, struct pnv_ioda_pe *pe)
1348{
Wei Yang781a8682015-03-25 16:23:57 +08001349 struct iommu_table *tbl;
Wei Yang781a8682015-03-25 16:23:57 +08001350 int64_t rc;
1351
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001352 tbl = pe->table_group.tables[0];
Alexey Kardashevskiyc035e372015-06-05 16:35:21 +10001353 rc = pnv_pci_ioda2_unset_window(&pe->table_group, 0);
Wei Yang781a8682015-03-25 16:23:57 +08001354 if (rc)
1355 pe_warn(pe, "OPAL error %ld release DMA window\n", rc);
1356
Alexey Kardashevskiyc035e372015-06-05 16:35:21 +10001357 pnv_pci_ioda2_set_bypass(pe, false);
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10001358 if (pe->table_group.group) {
1359 iommu_group_put(pe->table_group.group);
1360 BUG_ON(pe->table_group.group);
Alexey Kardashevskiyac9a5882015-06-05 16:34:56 +10001361 }
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10001362 pnv_pci_ioda2_table_free_pages(tbl);
Wei Yang781a8682015-03-25 16:23:57 +08001363 iommu_free_table(tbl, of_node_full_name(dev->dev.of_node));
Wei Yang781a8682015-03-25 16:23:57 +08001364}
1365
Wei Yangee8222f2015-10-22 09:22:16 +08001366static void pnv_ioda_release_vf_PE(struct pci_dev *pdev)
Wei Yang781a8682015-03-25 16:23:57 +08001367{
1368 struct pci_bus *bus;
1369 struct pci_controller *hose;
1370 struct pnv_phb *phb;
1371 struct pnv_ioda_pe *pe, *pe_n;
1372 struct pci_dn *pdn;
1373
1374 bus = pdev->bus;
1375 hose = pci_bus_to_host(bus);
1376 phb = hose->private_data;
Wei Yang02639b02015-03-25 16:23:59 +08001377 pdn = pci_get_pdn(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001378
1379 if (!pdev->is_physfn)
1380 return;
1381
Wei Yang781a8682015-03-25 16:23:57 +08001382 list_for_each_entry_safe(pe, pe_n, &phb->ioda.pe_list, list) {
1383 if (pe->parent_dev != pdev)
1384 continue;
1385
1386 pnv_pci_ioda2_release_dma_pe(pdev, pe);
1387
1388 /* Remove from list */
1389 mutex_lock(&phb->ioda.pe_list_mutex);
1390 list_del(&pe->list);
1391 mutex_unlock(&phb->ioda.pe_list_mutex);
1392
1393 pnv_ioda_deconfigure_pe(phb, pe);
1394
Gavin Shan1e916772016-05-03 15:41:36 +10001395 pnv_ioda_free_pe(pe);
Wei Yang781a8682015-03-25 16:23:57 +08001396 }
1397}
1398
1399void pnv_pci_sriov_disable(struct pci_dev *pdev)
1400{
1401 struct pci_bus *bus;
1402 struct pci_controller *hose;
1403 struct pnv_phb *phb;
Gavin Shan1e916772016-05-03 15:41:36 +10001404 struct pnv_ioda_pe *pe;
Wei Yang781a8682015-03-25 16:23:57 +08001405 struct pci_dn *pdn;
1406 struct pci_sriov *iov;
Wei Yangbe283ee2015-10-22 09:22:19 +08001407 u16 num_vfs, i;
Wei Yang781a8682015-03-25 16:23:57 +08001408
1409 bus = pdev->bus;
1410 hose = pci_bus_to_host(bus);
1411 phb = hose->private_data;
1412 pdn = pci_get_pdn(pdev);
1413 iov = pdev->sriov;
1414 num_vfs = pdn->num_vfs;
1415
1416 /* Release VF PEs */
Wei Yangee8222f2015-10-22 09:22:16 +08001417 pnv_ioda_release_vf_PE(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001418
1419 if (phb->type == PNV_PHB_IODA2) {
Wei Yangee8222f2015-10-22 09:22:16 +08001420 if (!pdn->m64_single_mode)
Wei Yangbe283ee2015-10-22 09:22:19 +08001421 pnv_pci_vf_resource_shift(pdev, -*pdn->pe_num_map);
Wei Yang781a8682015-03-25 16:23:57 +08001422
1423 /* Release M64 windows */
Wei Yangee8222f2015-10-22 09:22:16 +08001424 pnv_pci_vf_release_m64(pdev, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001425
1426 /* Release PE numbers */
Wei Yangbe283ee2015-10-22 09:22:19 +08001427 if (pdn->m64_single_mode) {
1428 for (i = 0; i < num_vfs; i++) {
Gavin Shan1e916772016-05-03 15:41:36 +10001429 if (pdn->pe_num_map[i] == IODA_INVALID_PE)
1430 continue;
1431
1432 pe = &phb->ioda.pe_array[pdn->pe_num_map[i]];
1433 pnv_ioda_free_pe(pe);
Wei Yangbe283ee2015-10-22 09:22:19 +08001434 }
1435 } else
1436 bitmap_clear(phb->ioda.pe_alloc, *pdn->pe_num_map, num_vfs);
1437 /* Releasing pe_num_map */
1438 kfree(pdn->pe_num_map);
Wei Yang781a8682015-03-25 16:23:57 +08001439 }
1440}
1441
1442static void pnv_pci_ioda2_setup_dma_pe(struct pnv_phb *phb,
1443 struct pnv_ioda_pe *pe);
1444static void pnv_ioda_setup_vf_PE(struct pci_dev *pdev, u16 num_vfs)
1445{
1446 struct pci_bus *bus;
1447 struct pci_controller *hose;
1448 struct pnv_phb *phb;
1449 struct pnv_ioda_pe *pe;
1450 int pe_num;
1451 u16 vf_index;
1452 struct pci_dn *pdn;
1453
1454 bus = pdev->bus;
1455 hose = pci_bus_to_host(bus);
1456 phb = hose->private_data;
1457 pdn = pci_get_pdn(pdev);
1458
1459 if (!pdev->is_physfn)
1460 return;
1461
1462 /* Reserve PE for each VF */
1463 for (vf_index = 0; vf_index < num_vfs; vf_index++) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001464 if (pdn->m64_single_mode)
1465 pe_num = pdn->pe_num_map[vf_index];
1466 else
1467 pe_num = *pdn->pe_num_map + vf_index;
Wei Yang781a8682015-03-25 16:23:57 +08001468
1469 pe = &phb->ioda.pe_array[pe_num];
1470 pe->pe_number = pe_num;
1471 pe->phb = phb;
1472 pe->flags = PNV_IODA_PE_VF;
1473 pe->pbus = NULL;
1474 pe->parent_dev = pdev;
Wei Yang781a8682015-03-25 16:23:57 +08001475 pe->mve_number = -1;
1476 pe->rid = (pci_iov_virtfn_bus(pdev, vf_index) << 8) |
1477 pci_iov_virtfn_devfn(pdev, vf_index);
1478
1479 pe_info(pe, "VF %04d:%02d:%02d.%d associated with PE#%d\n",
1480 hose->global_number, pdev->bus->number,
1481 PCI_SLOT(pci_iov_virtfn_devfn(pdev, vf_index)),
1482 PCI_FUNC(pci_iov_virtfn_devfn(pdev, vf_index)), pe_num);
1483
1484 if (pnv_ioda_configure_pe(phb, pe)) {
1485 /* XXX What do we do here ? */
Gavin Shan1e916772016-05-03 15:41:36 +10001486 pnv_ioda_free_pe(pe);
Wei Yang781a8682015-03-25 16:23:57 +08001487 pe->pdev = NULL;
1488 continue;
1489 }
1490
Wei Yang781a8682015-03-25 16:23:57 +08001491 /* Put PE to the list */
1492 mutex_lock(&phb->ioda.pe_list_mutex);
1493 list_add_tail(&pe->list, &phb->ioda.pe_list);
1494 mutex_unlock(&phb->ioda.pe_list_mutex);
1495
1496 pnv_pci_ioda2_setup_dma_pe(phb, pe);
1497 }
1498}
1499
1500int pnv_pci_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
1501{
1502 struct pci_bus *bus;
1503 struct pci_controller *hose;
1504 struct pnv_phb *phb;
Gavin Shan1e916772016-05-03 15:41:36 +10001505 struct pnv_ioda_pe *pe;
Wei Yang781a8682015-03-25 16:23:57 +08001506 struct pci_dn *pdn;
1507 int ret;
Wei Yangbe283ee2015-10-22 09:22:19 +08001508 u16 i;
Wei Yang781a8682015-03-25 16:23:57 +08001509
1510 bus = pdev->bus;
1511 hose = pci_bus_to_host(bus);
1512 phb = hose->private_data;
1513 pdn = pci_get_pdn(pdev);
1514
1515 if (phb->type == PNV_PHB_IODA2) {
Wei Yangb0331852015-10-22 09:22:14 +08001516 if (!pdn->vfs_expanded) {
1517 dev_info(&pdev->dev, "don't support this SRIOV device"
1518 " with non 64bit-prefetchable IOV BAR\n");
1519 return -ENOSPC;
1520 }
1521
Wei Yangee8222f2015-10-22 09:22:16 +08001522 /*
1523 * When M64 BARs functions in Single PE mode, the number of VFs
1524 * could be enabled must be less than the number of M64 BARs.
1525 */
1526 if (pdn->m64_single_mode && num_vfs > phb->ioda.m64_bar_idx) {
1527 dev_info(&pdev->dev, "Not enough M64 BAR for VFs\n");
1528 return -EBUSY;
1529 }
1530
Wei Yangbe283ee2015-10-22 09:22:19 +08001531 /* Allocating pe_num_map */
1532 if (pdn->m64_single_mode)
1533 pdn->pe_num_map = kmalloc(sizeof(*pdn->pe_num_map) * num_vfs,
1534 GFP_KERNEL);
1535 else
1536 pdn->pe_num_map = kmalloc(sizeof(*pdn->pe_num_map), GFP_KERNEL);
1537
1538 if (!pdn->pe_num_map)
1539 return -ENOMEM;
1540
1541 if (pdn->m64_single_mode)
1542 for (i = 0; i < num_vfs; i++)
1543 pdn->pe_num_map[i] = IODA_INVALID_PE;
1544
Wei Yang781a8682015-03-25 16:23:57 +08001545 /* Calculate available PE for required VFs */
Wei Yangbe283ee2015-10-22 09:22:19 +08001546 if (pdn->m64_single_mode) {
1547 for (i = 0; i < num_vfs; i++) {
Gavin Shan1e916772016-05-03 15:41:36 +10001548 pe = pnv_ioda_alloc_pe(phb);
1549 if (!pe) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001550 ret = -EBUSY;
1551 goto m64_failed;
1552 }
Gavin Shan1e916772016-05-03 15:41:36 +10001553
1554 pdn->pe_num_map[i] = pe->pe_number;
Wei Yangbe283ee2015-10-22 09:22:19 +08001555 }
1556 } else {
1557 mutex_lock(&phb->ioda.pe_alloc_mutex);
1558 *pdn->pe_num_map = bitmap_find_next_zero_area(
Gavin Shan92b8f132016-05-03 15:41:24 +10001559 phb->ioda.pe_alloc, phb->ioda.total_pe_num,
Wei Yangbe283ee2015-10-22 09:22:19 +08001560 0, num_vfs, 0);
Gavin Shan92b8f132016-05-03 15:41:24 +10001561 if (*pdn->pe_num_map >= phb->ioda.total_pe_num) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001562 mutex_unlock(&phb->ioda.pe_alloc_mutex);
1563 dev_info(&pdev->dev, "Failed to enable VF%d\n", num_vfs);
1564 kfree(pdn->pe_num_map);
1565 return -EBUSY;
1566 }
1567 bitmap_set(phb->ioda.pe_alloc, *pdn->pe_num_map, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001568 mutex_unlock(&phb->ioda.pe_alloc_mutex);
Wei Yang781a8682015-03-25 16:23:57 +08001569 }
Wei Yang781a8682015-03-25 16:23:57 +08001570 pdn->num_vfs = num_vfs;
Wei Yang781a8682015-03-25 16:23:57 +08001571
1572 /* Assign M64 window accordingly */
Wei Yang02639b02015-03-25 16:23:59 +08001573 ret = pnv_pci_vf_assign_m64(pdev, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001574 if (ret) {
1575 dev_info(&pdev->dev, "Not enough M64 window resources\n");
1576 goto m64_failed;
1577 }
1578
1579 /*
1580 * When using one M64 BAR to map one IOV BAR, we need to shift
1581 * the IOV BAR according to the PE# allocated to the VFs.
1582 * Otherwise, the PE# for the VF will conflict with others.
1583 */
Wei Yangee8222f2015-10-22 09:22:16 +08001584 if (!pdn->m64_single_mode) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001585 ret = pnv_pci_vf_resource_shift(pdev, *pdn->pe_num_map);
Wei Yang02639b02015-03-25 16:23:59 +08001586 if (ret)
1587 goto m64_failed;
1588 }
Wei Yang781a8682015-03-25 16:23:57 +08001589 }
1590
1591 /* Setup VF PEs */
1592 pnv_ioda_setup_vf_PE(pdev, num_vfs);
1593
1594 return 0;
1595
1596m64_failed:
Wei Yangbe283ee2015-10-22 09:22:19 +08001597 if (pdn->m64_single_mode) {
1598 for (i = 0; i < num_vfs; i++) {
Gavin Shan1e916772016-05-03 15:41:36 +10001599 if (pdn->pe_num_map[i] == IODA_INVALID_PE)
1600 continue;
1601
1602 pe = &phb->ioda.pe_array[pdn->pe_num_map[i]];
1603 pnv_ioda_free_pe(pe);
Wei Yangbe283ee2015-10-22 09:22:19 +08001604 }
1605 } else
1606 bitmap_clear(phb->ioda.pe_alloc, *pdn->pe_num_map, num_vfs);
1607
1608 /* Releasing pe_num_map */
1609 kfree(pdn->pe_num_map);
Wei Yang781a8682015-03-25 16:23:57 +08001610
1611 return ret;
1612}
1613
Gavin Shana8b2f822015-03-25 16:23:52 +08001614int pcibios_sriov_disable(struct pci_dev *pdev)
1615{
Wei Yang781a8682015-03-25 16:23:57 +08001616 pnv_pci_sriov_disable(pdev);
1617
Gavin Shana8b2f822015-03-25 16:23:52 +08001618 /* Release PCI data */
1619 remove_dev_pci_data(pdev);
1620 return 0;
1621}
1622
1623int pcibios_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
1624{
1625 /* Allocate PCI data */
1626 add_dev_pci_data(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001627
Wei Yangee8222f2015-10-22 09:22:16 +08001628 return pnv_pci_sriov_enable(pdev, num_vfs);
Gavin Shana8b2f822015-03-25 16:23:52 +08001629}
1630#endif /* CONFIG_PCI_IOV */
1631
Gavin Shan959c9bd2013-04-25 19:21:02 +00001632static void pnv_pci_ioda_dma_dev_setup(struct pnv_phb *phb, struct pci_dev *pdev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001633{
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00001634 struct pci_dn *pdn = pci_get_pdn(pdev);
Gavin Shan959c9bd2013-04-25 19:21:02 +00001635 struct pnv_ioda_pe *pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001636
Gavin Shan959c9bd2013-04-25 19:21:02 +00001637 /*
1638 * The function can be called while the PE#
1639 * hasn't been assigned. Do nothing for the
1640 * case.
1641 */
1642 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
1643 return;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001644
Gavin Shan959c9bd2013-04-25 19:21:02 +00001645 pe = &phb->ioda.pe_array[pdn->pe_number];
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001646 WARN_ON(get_dma_ops(&pdev->dev) != &dma_iommu_ops);
Alexey Kardashevskiy0e1ffef2015-08-27 16:01:16 +10001647 set_dma_offset(&pdev->dev, pe->tce_bypass_base);
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001648 set_iommu_table_base(&pdev->dev, pe->table_group.tables[0]);
Alexey Kardashevskiy46170822015-06-05 16:34:54 +10001649 /*
1650 * Note: iommu_add_device() will fail here as
1651 * for physical PE: the device is already added by now;
1652 * for virtual PE: sysfs entries are not ready yet and
1653 * tce_iommu_bus_notifier will add the device to a group later.
1654 */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001655}
1656
Daniel Axtens763d2d82015-04-28 15:12:07 +10001657static int pnv_pci_ioda_dma_set_mask(struct pci_dev *pdev, u64 dma_mask)
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001658{
Daniel Axtens763d2d82015-04-28 15:12:07 +10001659 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
1660 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001661 struct pci_dn *pdn = pci_get_pdn(pdev);
1662 struct pnv_ioda_pe *pe;
1663 uint64_t top;
1664 bool bypass = false;
1665
1666 if (WARN_ON(!pdn || pdn->pe_number == IODA_INVALID_PE))
1667 return -ENODEV;;
1668
1669 pe = &phb->ioda.pe_array[pdn->pe_number];
1670 if (pe->tce_bypass_enabled) {
1671 top = pe->tce_bypass_base + memblock_end_of_DRAM() - 1;
1672 bypass = (dma_mask >= top);
1673 }
1674
1675 if (bypass) {
1676 dev_info(&pdev->dev, "Using 64-bit DMA iommu bypass\n");
1677 set_dma_ops(&pdev->dev, &dma_direct_ops);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001678 } else {
1679 dev_info(&pdev->dev, "Using 32-bit DMA via iommu\n");
1680 set_dma_ops(&pdev->dev, &dma_iommu_ops);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001681 }
Brian W Harta32305b2014-07-31 14:24:37 -05001682 *pdev->dev.dma_mask = dma_mask;
Alistair Popple5d2aa712015-12-17 13:43:13 +11001683
1684 /* Update peer npu devices */
Alexey Kardashevskiyf9f83452016-04-29 18:55:20 +10001685 pnv_npu_try_dma_set_bypass(pdev, bypass);
Alistair Popple5d2aa712015-12-17 13:43:13 +11001686
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001687 return 0;
1688}
1689
Andrew Donnellan535229822015-08-07 13:45:54 +10001690static u64 pnv_pci_ioda_dma_get_required_mask(struct pci_dev *pdev)
Gavin Shanfe7e85c2014-09-30 12:39:10 +10001691{
Andrew Donnellan535229822015-08-07 13:45:54 +10001692 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
1693 struct pnv_phb *phb = hose->private_data;
Gavin Shanfe7e85c2014-09-30 12:39:10 +10001694 struct pci_dn *pdn = pci_get_pdn(pdev);
1695 struct pnv_ioda_pe *pe;
1696 u64 end, mask;
1697
1698 if (WARN_ON(!pdn || pdn->pe_number == IODA_INVALID_PE))
1699 return 0;
1700
1701 pe = &phb->ioda.pe_array[pdn->pe_number];
1702 if (!pe->tce_bypass_enabled)
1703 return __dma_get_required_mask(&pdev->dev);
1704
1705
1706 end = pe->tce_bypass_base + memblock_end_of_DRAM();
1707 mask = 1ULL << (fls64(end) - 1);
1708 mask += mask - 1;
1709
1710 return mask;
1711}
1712
Gavin Shandff4a392014-07-15 17:00:55 +10001713static void pnv_ioda_setup_bus_dma(struct pnv_ioda_pe *pe,
Alexey Kardashevskiyea30e992015-06-05 16:34:53 +10001714 struct pci_bus *bus)
Benjamin Herrenschmidt74251fe2013-07-01 17:54:09 +10001715{
1716 struct pci_dev *dev;
1717
1718 list_for_each_entry(dev, &bus->devices, bus_list) {
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001719 set_iommu_table_base(&dev->dev, pe->table_group.tables[0]);
Benjamin Herrenschmidte91c25112015-06-24 15:25:27 +10001720 set_dma_offset(&dev->dev, pe->tce_bypass_base);
Alexey Kardashevskiy46170822015-06-05 16:34:54 +10001721 iommu_add_device(&dev->dev);
Gavin Shandff4a392014-07-15 17:00:55 +10001722
Alexey Kardashevskiy5c89a872015-06-18 11:41:36 +10001723 if ((pe->flags & PNV_IODA_PE_BUS_ALL) && dev->subordinate)
Alexey Kardashevskiyea30e992015-06-05 16:34:53 +10001724 pnv_ioda_setup_bus_dma(pe, dev->subordinate);
Benjamin Herrenschmidt74251fe2013-07-01 17:54:09 +10001725 }
1726}
1727
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001728static void pnv_pci_ioda1_tce_invalidate(struct iommu_table *tbl,
1729 unsigned long index, unsigned long npages, bool rm)
Gavin Shan4cce9552013-04-25 19:21:00 +00001730{
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10001731 struct iommu_table_group_link *tgl = list_first_entry_or_null(
1732 &tbl->it_group_list, struct iommu_table_group_link,
1733 next);
1734 struct pnv_ioda_pe *pe = container_of(tgl->table_group,
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001735 struct pnv_ioda_pe, table_group);
Benjamin Herrenschmidt3ad26e52013-10-11 18:23:53 +11001736 __be64 __iomem *invalidate = rm ?
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10001737 (__be64 __iomem *)pe->phb->ioda.tce_inval_reg_phys :
1738 pe->phb->ioda.tce_inval_reg;
Gavin Shan4cce9552013-04-25 19:21:00 +00001739 unsigned long start, end, inc;
Alexey Kardashevskiyb0376c92014-06-06 18:44:01 +10001740 const unsigned shift = tbl->it_page_shift;
Gavin Shan4cce9552013-04-25 19:21:00 +00001741
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001742 start = __pa(((__be64 *)tbl->it_base) + index - tbl->it_offset);
1743 end = __pa(((__be64 *)tbl->it_base) + index - tbl->it_offset +
1744 npages - 1);
Gavin Shan4cce9552013-04-25 19:21:00 +00001745
1746 /* BML uses this case for p6/p7/galaxy2: Shift addr and put in node */
1747 if (tbl->it_busno) {
Alexey Kardashevskiyb0376c92014-06-06 18:44:01 +10001748 start <<= shift;
1749 end <<= shift;
1750 inc = 128ull << shift;
Gavin Shan4cce9552013-04-25 19:21:00 +00001751 start |= tbl->it_busno;
1752 end |= tbl->it_busno;
1753 } else if (tbl->it_type & TCE_PCI_SWINV_PAIR) {
1754 /* p7ioc-style invalidation, 2 TCEs per write */
1755 start |= (1ull << 63);
1756 end |= (1ull << 63);
1757 inc = 16;
1758 } else {
1759 /* Default (older HW) */
1760 inc = 128;
1761 }
1762
1763 end |= inc - 1; /* round up end to be different than start */
1764
1765 mb(); /* Ensure above stores are visible */
1766 while (start <= end) {
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10001767 if (rm)
Benjamin Herrenschmidt3ad26e52013-10-11 18:23:53 +11001768 __raw_rm_writeq(cpu_to_be64(start), invalidate);
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10001769 else
Benjamin Herrenschmidt3ad26e52013-10-11 18:23:53 +11001770 __raw_writeq(cpu_to_be64(start), invalidate);
Gavin Shan4cce9552013-04-25 19:21:00 +00001771 start += inc;
1772 }
1773
1774 /*
1775 * The iommu layer will do another mb() for us on build()
1776 * and we don't care on free()
1777 */
1778}
1779
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001780static int pnv_ioda1_tce_build(struct iommu_table *tbl, long index,
1781 long npages, unsigned long uaddr,
1782 enum dma_data_direction direction,
1783 struct dma_attrs *attrs)
1784{
1785 int ret = pnv_tce_build(tbl, index, npages, uaddr, direction,
1786 attrs);
1787
1788 if (!ret && (tbl->it_type & TCE_PCI_SWINV_CREATE))
1789 pnv_pci_ioda1_tce_invalidate(tbl, index, npages, false);
1790
1791 return ret;
1792}
1793
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10001794#ifdef CONFIG_IOMMU_API
1795static int pnv_ioda1_tce_xchg(struct iommu_table *tbl, long index,
1796 unsigned long *hpa, enum dma_data_direction *direction)
1797{
1798 long ret = pnv_tce_xchg(tbl, index, hpa, direction);
1799
1800 if (!ret && (tbl->it_type &
1801 (TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE)))
1802 pnv_pci_ioda1_tce_invalidate(tbl, index, 1, false);
1803
1804 return ret;
1805}
1806#endif
1807
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001808static void pnv_ioda1_tce_free(struct iommu_table *tbl, long index,
1809 long npages)
1810{
1811 pnv_tce_free(tbl, index, npages);
1812
1813 if (tbl->it_type & TCE_PCI_SWINV_FREE)
1814 pnv_pci_ioda1_tce_invalidate(tbl, index, npages, false);
1815}
1816
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10001817static struct iommu_table_ops pnv_ioda1_iommu_ops = {
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001818 .set = pnv_ioda1_tce_build,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10001819#ifdef CONFIG_IOMMU_API
1820 .exchange = pnv_ioda1_tce_xchg,
1821#endif
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001822 .clear = pnv_ioda1_tce_free,
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10001823 .get = pnv_tce_get,
1824};
1825
Alexey Kardashevskiy0bbcdb42016-04-29 18:55:18 +10001826#define TCE_KILL_INVAL_ALL PPC_BIT(0)
Alexey Kardashevskiybef92532016-04-29 18:55:17 +10001827#define TCE_KILL_INVAL_PE PPC_BIT(1)
1828#define TCE_KILL_INVAL_TCE PPC_BIT(2)
1829
Alexey Kardashevskiy0bbcdb42016-04-29 18:55:18 +10001830void pnv_pci_ioda2_tce_invalidate_entire(struct pnv_phb *phb, bool rm)
1831{
1832 const unsigned long val = TCE_KILL_INVAL_ALL;
1833
1834 mb(); /* Ensure previous TCE table stores are visible */
1835 if (rm)
1836 __raw_rm_writeq(cpu_to_be64(val),
1837 (__be64 __iomem *)
1838 phb->ioda.tce_inval_reg_phys);
1839 else
1840 __raw_writeq(cpu_to_be64(val), phb->ioda.tce_inval_reg);
1841}
1842
Alexey Kardashevskiya7cf13c2016-04-29 18:55:16 +10001843static inline void pnv_pci_ioda2_tce_invalidate_pe(struct pnv_ioda_pe *pe)
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10001844{
1845 /* 01xb - invalidate TCEs that match the specified PE# */
Alexey Kardashevskiybef92532016-04-29 18:55:17 +10001846 unsigned long val = TCE_KILL_INVAL_PE | (pe->pe_number & 0xFF);
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10001847 struct pnv_phb *phb = pe->phb;
1848
1849 if (!phb->ioda.tce_inval_reg)
1850 return;
1851
1852 mb(); /* Ensure above stores are visible */
1853 __raw_writeq(cpu_to_be64(val), phb->ioda.tce_inval_reg);
1854}
1855
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10001856static void pnv_pci_ioda2_do_tce_invalidate(unsigned pe_number, bool rm,
1857 __be64 __iomem *invalidate, unsigned shift,
1858 unsigned long index, unsigned long npages)
Gavin Shan4cce9552013-04-25 19:21:00 +00001859{
1860 unsigned long start, end, inc;
Gavin Shan4cce9552013-04-25 19:21:00 +00001861
1862 /* We'll invalidate DMA address in PE scope */
Alexey Kardashevskiybef92532016-04-29 18:55:17 +10001863 start = TCE_KILL_INVAL_TCE;
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10001864 start |= (pe_number & 0xFF);
Gavin Shan4cce9552013-04-25 19:21:00 +00001865 end = start;
1866
1867 /* Figure out the start, end and step */
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001868 start |= (index << shift);
1869 end |= ((index + npages - 1) << shift);
Alexey Kardashevskiyb0376c92014-06-06 18:44:01 +10001870 inc = (0x1ull << shift);
Gavin Shan4cce9552013-04-25 19:21:00 +00001871 mb();
1872
1873 while (start <= end) {
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10001874 if (rm)
Benjamin Herrenschmidt3ad26e52013-10-11 18:23:53 +11001875 __raw_rm_writeq(cpu_to_be64(start), invalidate);
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10001876 else
Benjamin Herrenschmidt3ad26e52013-10-11 18:23:53 +11001877 __raw_writeq(cpu_to_be64(start), invalidate);
Gavin Shan4cce9552013-04-25 19:21:00 +00001878 start += inc;
1879 }
1880}
1881
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10001882static void pnv_pci_ioda2_tce_invalidate(struct iommu_table *tbl,
1883 unsigned long index, unsigned long npages, bool rm)
1884{
1885 struct iommu_table_group_link *tgl;
1886
1887 list_for_each_entry_rcu(tgl, &tbl->it_group_list, next) {
1888 struct pnv_ioda_pe *pe = container_of(tgl->table_group,
1889 struct pnv_ioda_pe, table_group);
1890 __be64 __iomem *invalidate = rm ?
1891 (__be64 __iomem *)pe->phb->ioda.tce_inval_reg_phys :
1892 pe->phb->ioda.tce_inval_reg;
1893
Alexey Kardashevskiy85674862016-04-29 18:55:23 +10001894 if (pe->phb->type == PNV_PHB_NPU) {
Alexey Kardashevskiy0bbcdb42016-04-29 18:55:18 +10001895 /*
1896 * The NVLink hardware does not support TCE kill
1897 * per TCE entry so we have to invalidate
1898 * the entire cache for it.
1899 */
Alexey Kardashevskiy85674862016-04-29 18:55:23 +10001900 pnv_pci_ioda2_tce_invalidate_entire(pe->phb, rm);
1901 continue;
1902 }
1903 pnv_pci_ioda2_do_tce_invalidate(pe->pe_number, rm,
1904 invalidate, tbl->it_page_shift,
1905 index, npages);
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10001906 }
1907}
1908
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001909static int pnv_ioda2_tce_build(struct iommu_table *tbl, long index,
1910 long npages, unsigned long uaddr,
1911 enum dma_data_direction direction,
1912 struct dma_attrs *attrs)
Gavin Shan4cce9552013-04-25 19:21:00 +00001913{
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001914 int ret = pnv_tce_build(tbl, index, npages, uaddr, direction,
1915 attrs);
Gavin Shan4cce9552013-04-25 19:21:00 +00001916
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001917 if (!ret && (tbl->it_type & TCE_PCI_SWINV_CREATE))
1918 pnv_pci_ioda2_tce_invalidate(tbl, index, npages, false);
1919
1920 return ret;
1921}
1922
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10001923#ifdef CONFIG_IOMMU_API
1924static int pnv_ioda2_tce_xchg(struct iommu_table *tbl, long index,
1925 unsigned long *hpa, enum dma_data_direction *direction)
1926{
1927 long ret = pnv_tce_xchg(tbl, index, hpa, direction);
1928
1929 if (!ret && (tbl->it_type &
1930 (TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE)))
1931 pnv_pci_ioda2_tce_invalidate(tbl, index, 1, false);
1932
1933 return ret;
1934}
1935#endif
1936
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001937static void pnv_ioda2_tce_free(struct iommu_table *tbl, long index,
1938 long npages)
1939{
1940 pnv_tce_free(tbl, index, npages);
1941
1942 if (tbl->it_type & TCE_PCI_SWINV_FREE)
1943 pnv_pci_ioda2_tce_invalidate(tbl, index, npages, false);
Gavin Shan4cce9552013-04-25 19:21:00 +00001944}
1945
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10001946static void pnv_ioda2_table_free(struct iommu_table *tbl)
1947{
1948 pnv_pci_ioda2_table_free_pages(tbl);
1949 iommu_free_table(tbl, "pnv");
1950}
1951
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10001952static struct iommu_table_ops pnv_ioda2_iommu_ops = {
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001953 .set = pnv_ioda2_tce_build,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10001954#ifdef CONFIG_IOMMU_API
1955 .exchange = pnv_ioda2_tce_xchg,
1956#endif
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001957 .clear = pnv_ioda2_tce_free,
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10001958 .get = pnv_tce_get,
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10001959 .free = pnv_ioda2_table_free,
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10001960};
1961
Gavin Shan801846d2016-05-03 15:41:34 +10001962static int pnv_pci_ioda_dev_dma_weight(struct pci_dev *dev, void *data)
1963{
1964 unsigned int *weight = (unsigned int *)data;
1965
1966 /* This is quite simplistic. The "base" weight of a device
1967 * is 10. 0 means no DMA is to be accounted for it.
1968 */
1969 if (dev->hdr_type != PCI_HEADER_TYPE_NORMAL)
1970 return 0;
1971
1972 if (dev->class == PCI_CLASS_SERIAL_USB_UHCI ||
1973 dev->class == PCI_CLASS_SERIAL_USB_OHCI ||
1974 dev->class == PCI_CLASS_SERIAL_USB_EHCI)
1975 *weight += 3;
1976 else if ((dev->class >> 8) == PCI_CLASS_STORAGE_RAID)
1977 *weight += 15;
1978 else
1979 *weight += 10;
1980
1981 return 0;
1982}
1983
1984static unsigned int pnv_pci_ioda_pe_dma_weight(struct pnv_ioda_pe *pe)
1985{
1986 unsigned int weight = 0;
1987
1988 /* SRIOV VF has same DMA32 weight as its PF */
1989#ifdef CONFIG_PCI_IOV
1990 if ((pe->flags & PNV_IODA_PE_VF) && pe->parent_dev) {
1991 pnv_pci_ioda_dev_dma_weight(pe->parent_dev, &weight);
1992 return weight;
1993 }
1994#endif
1995
1996 if ((pe->flags & PNV_IODA_PE_DEV) && pe->pdev) {
1997 pnv_pci_ioda_dev_dma_weight(pe->pdev, &weight);
1998 } else if ((pe->flags & PNV_IODA_PE_BUS) && pe->pbus) {
1999 struct pci_dev *pdev;
2000
2001 list_for_each_entry(pdev, &pe->pbus->devices, bus_list)
2002 pnv_pci_ioda_dev_dma_weight(pdev, &weight);
2003 } else if ((pe->flags & PNV_IODA_PE_BUS_ALL) && pe->pbus) {
2004 pci_walk_bus(pe->pbus, pnv_pci_ioda_dev_dma_weight, &weight);
2005 }
2006
2007 return weight;
2008}
2009
Gavin Shanb30d9362016-05-03 15:41:32 +10002010static void pnv_pci_ioda1_setup_dma_pe(struct pnv_phb *phb,
Gavin Shan2b923ed2016-05-05 12:04:16 +10002011 struct pnv_ioda_pe *pe)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002012{
2013
2014 struct page *tce_mem = NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002015 struct iommu_table *tbl;
Gavin Shan2b923ed2016-05-05 12:04:16 +10002016 unsigned int weight, total_weight = 0;
2017 unsigned int tce32_segsz, base, segs, avail, i;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002018 int64_t rc;
2019 void *addr;
2020
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002021 /* XXX FIXME: Handle 64-bit only DMA devices */
2022 /* XXX FIXME: Provide 64-bit DMA facilities & non-4K TCE tables etc.. */
2023 /* XXX FIXME: Allocate multi-level tables on PHB3 */
Gavin Shan2b923ed2016-05-05 12:04:16 +10002024 weight = pnv_pci_ioda_pe_dma_weight(pe);
2025 if (!weight)
2026 return;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002027
Gavin Shan2b923ed2016-05-05 12:04:16 +10002028 pci_walk_bus(phb->hose->bus, pnv_pci_ioda_dev_dma_weight,
2029 &total_weight);
2030 segs = (weight * phb->ioda.dma32_count) / total_weight;
2031 if (!segs)
2032 segs = 1;
2033
2034 /*
2035 * Allocate contiguous DMA32 segments. We begin with the expected
2036 * number of segments. With one more attempt, the number of DMA32
2037 * segments to be allocated is decreased by one until one segment
2038 * is allocated successfully.
2039 */
2040 do {
2041 for (base = 0; base <= phb->ioda.dma32_count - segs; base++) {
2042 for (avail = 0, i = base; i < base + segs; i++) {
2043 if (phb->ioda.dma32_segmap[i] ==
2044 IODA_INVALID_PE)
2045 avail++;
2046 }
2047
2048 if (avail == segs)
2049 goto found;
2050 }
2051 } while (--segs);
2052
2053 if (!segs) {
2054 pe_warn(pe, "No available DMA32 segments\n");
2055 return;
2056 }
2057
2058found:
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002059 tbl = pnv_pci_table_alloc(phb->hose->node);
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10002060 iommu_register_group(&pe->table_group, phb->hose->global_number,
2061 pe->pe_number);
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002062 pnv_pci_link_table_and_group(phb->hose->node, 0, tbl, &pe->table_group);
Alexey Kardashevskiyc5773822015-06-05 16:34:55 +10002063
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002064 /* Grab a 32-bit TCE table */
Gavin Shan2b923ed2016-05-05 12:04:16 +10002065 pe_info(pe, "DMA weight %d (%d), assigned (%d) %d DMA32 segments\n",
2066 weight, total_weight, base, segs);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002067 pe_info(pe, " Setting up 32-bit TCE table at %08x..%08x\n",
Gavin Shanacce9712016-05-03 15:41:33 +10002068 base * PNV_IODA1_DMA32_SEGSIZE,
2069 (base + segs) * PNV_IODA1_DMA32_SEGSIZE - 1);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002070
2071 /* XXX Currently, we allocate one big contiguous table for the
2072 * TCEs. We only really need one chunk per 256M of TCE space
2073 * (ie per segment) but that's an optimization for later, it
2074 * requires some added smarts with our get/put_tce implementation
Gavin Shanacce9712016-05-03 15:41:33 +10002075 *
2076 * Each TCE page is 4KB in size and each TCE entry occupies 8
2077 * bytes
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002078 */
Gavin Shanacce9712016-05-03 15:41:33 +10002079 tce32_segsz = PNV_IODA1_DMA32_SEGSIZE >> (IOMMU_PAGE_SHIFT_4K - 3);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002080 tce_mem = alloc_pages_node(phb->hose->node, GFP_KERNEL,
Gavin Shanacce9712016-05-03 15:41:33 +10002081 get_order(tce32_segsz * segs));
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002082 if (!tce_mem) {
2083 pe_err(pe, " Failed to allocate a 32-bit TCE memory\n");
2084 goto fail;
2085 }
2086 addr = page_address(tce_mem);
Gavin Shanacce9712016-05-03 15:41:33 +10002087 memset(addr, 0, tce32_segsz * segs);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002088
2089 /* Configure HW */
2090 for (i = 0; i < segs; i++) {
2091 rc = opal_pci_map_pe_dma_window(phb->opal_id,
2092 pe->pe_number,
2093 base + i, 1,
Gavin Shanacce9712016-05-03 15:41:33 +10002094 __pa(addr) + tce32_segsz * i,
2095 tce32_segsz, IOMMU_PAGE_SIZE_4K);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002096 if (rc) {
2097 pe_err(pe, " Failed to configure 32-bit TCE table,"
2098 " err %ld\n", rc);
2099 goto fail;
2100 }
2101 }
2102
Gavin Shan2b923ed2016-05-05 12:04:16 +10002103 /* Setup DMA32 segment mapping */
2104 for (i = base; i < base + segs; i++)
2105 phb->ioda.dma32_segmap[i] = pe->pe_number;
2106
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002107 /* Setup linux iommu table */
Gavin Shanacce9712016-05-03 15:41:33 +10002108 pnv_pci_setup_iommu_table(tbl, addr, tce32_segsz * segs,
2109 base * PNV_IODA1_DMA32_SEGSIZE,
2110 IOMMU_PAGE_SHIFT_4K);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002111
2112 /* OPAL variant of P7IOC SW invalidated TCEs */
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002113 if (phb->ioda.tce_inval_reg)
Gavin Shan65fd7662014-04-24 18:00:28 +10002114 tbl->it_type |= (TCE_PCI_SWINV_CREATE |
2115 TCE_PCI_SWINV_FREE |
2116 TCE_PCI_SWINV_PAIR);
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002117
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002118 tbl->it_ops = &pnv_ioda1_iommu_ops;
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002119 pe->table_group.tce32_start = tbl->it_offset << tbl->it_page_shift;
2120 pe->table_group.tce32_size = tbl->it_size << tbl->it_page_shift;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002121 iommu_init_table(tbl, phb->hose->node);
2122
Wei Yang781a8682015-03-25 16:23:57 +08002123 if (pe->flags & PNV_IODA_PE_DEV) {
Alexey Kardashevskiy46170822015-06-05 16:34:54 +10002124 /*
2125 * Setting table base here only for carrying iommu_group
2126 * further down to let iommu_add_device() do the job.
2127 * pnv_pci_ioda_dma_dev_setup will override it later anyway.
2128 */
2129 set_iommu_table_base(&pe->pdev->dev, tbl);
2130 iommu_add_device(&pe->pdev->dev);
Alexey Kardashevskiyc5773822015-06-05 16:34:55 +10002131 } else if (pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL))
Alexey Kardashevskiyea30e992015-06-05 16:34:53 +10002132 pnv_ioda_setup_bus_dma(pe, pe->pbus);
Benjamin Herrenschmidt74251fe2013-07-01 17:54:09 +10002133
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002134 return;
2135 fail:
2136 /* XXX Failure: Try to fallback to 64-bit only ? */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002137 if (tce_mem)
Gavin Shanacce9712016-05-03 15:41:33 +10002138 __free_pages(tce_mem, get_order(tce32_segsz * segs));
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002139 if (tbl) {
2140 pnv_pci_unlink_table_and_group(tbl, &pe->table_group);
2141 iommu_free_table(tbl, "pnv");
2142 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002143}
2144
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002145static long pnv_pci_ioda2_set_window(struct iommu_table_group *table_group,
2146 int num, struct iommu_table *tbl)
2147{
2148 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2149 table_group);
2150 struct pnv_phb *phb = pe->phb;
2151 int64_t rc;
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002152 const unsigned long size = tbl->it_indirect_levels ?
2153 tbl->it_level_size : tbl->it_size;
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002154 const __u64 start_addr = tbl->it_offset << tbl->it_page_shift;
2155 const __u64 win_size = tbl->it_size << tbl->it_page_shift;
2156
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002157 pe_info(pe, "Setting up window#%d %llx..%llx pg=%x\n", num,
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002158 start_addr, start_addr + win_size - 1,
2159 IOMMU_PAGE_SIZE(tbl));
2160
2161 /*
2162 * Map TCE table through TVT. The TVE index is the PE number
2163 * shifted by 1 bit for 32-bits DMA space.
2164 */
2165 rc = opal_pci_map_pe_dma_window(phb->opal_id,
2166 pe->pe_number,
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002167 (pe->pe_number << 1) + num,
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002168 tbl->it_indirect_levels + 1,
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002169 __pa(tbl->it_base),
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002170 size << 3,
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002171 IOMMU_PAGE_SIZE(tbl));
2172 if (rc) {
2173 pe_err(pe, "Failed to configure TCE table, err %ld\n", rc);
2174 return rc;
2175 }
2176
2177 pnv_pci_link_table_and_group(phb->hose->node, num,
2178 tbl, &pe->table_group);
Alexey Kardashevskiya7cf13c2016-04-29 18:55:16 +10002179 pnv_pci_ioda2_tce_invalidate_pe(pe);
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002180
2181 return 0;
2182}
2183
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002184static void pnv_pci_ioda2_set_bypass(struct pnv_ioda_pe *pe, bool enable)
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002185{
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002186 uint16_t window_id = (pe->pe_number << 1 ) + 1;
2187 int64_t rc;
2188
2189 pe_info(pe, "%sabling 64-bit DMA bypass\n", enable ? "En" : "Dis");
2190 if (enable) {
2191 phys_addr_t top = memblock_end_of_DRAM();
2192
2193 top = roundup_pow_of_two(top);
2194 rc = opal_pci_map_pe_dma_window_real(pe->phb->opal_id,
2195 pe->pe_number,
2196 window_id,
2197 pe->tce_bypass_base,
2198 top);
2199 } else {
2200 rc = opal_pci_map_pe_dma_window_real(pe->phb->opal_id,
2201 pe->pe_number,
2202 window_id,
2203 pe->tce_bypass_base,
2204 0);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002205 }
2206 if (rc)
2207 pe_err(pe, "OPAL error %lld configuring bypass window\n", rc);
2208 else
2209 pe->tce_bypass_enabled = enable;
2210}
2211
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002212static long pnv_pci_ioda2_table_alloc_pages(int nid, __u64 bus_offset,
2213 __u32 page_shift, __u64 window_size, __u32 levels,
2214 struct iommu_table *tbl);
2215
2216static long pnv_pci_ioda2_create_table(struct iommu_table_group *table_group,
2217 int num, __u32 page_shift, __u64 window_size, __u32 levels,
2218 struct iommu_table **ptbl)
2219{
2220 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2221 table_group);
2222 int nid = pe->phb->hose->node;
2223 __u64 bus_offset = num ? pe->tce_bypass_base : table_group->tce32_start;
2224 long ret;
2225 struct iommu_table *tbl;
2226
2227 tbl = pnv_pci_table_alloc(nid);
2228 if (!tbl)
2229 return -ENOMEM;
2230
2231 ret = pnv_pci_ioda2_table_alloc_pages(nid,
2232 bus_offset, page_shift, window_size,
2233 levels, tbl);
2234 if (ret) {
2235 iommu_free_table(tbl, "pnv");
2236 return ret;
2237 }
2238
2239 tbl->it_ops = &pnv_ioda2_iommu_ops;
2240 if (pe->phb->ioda.tce_inval_reg)
2241 tbl->it_type |= (TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE);
2242
2243 *ptbl = tbl;
2244
2245 return 0;
2246}
2247
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002248static long pnv_pci_ioda2_setup_default_config(struct pnv_ioda_pe *pe)
2249{
2250 struct iommu_table *tbl = NULL;
2251 long rc;
2252
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002253 /*
Nishanth Aravamudanfa144862015-09-04 11:22:52 -07002254 * crashkernel= specifies the kdump kernel's maximum memory at
2255 * some offset and there is no guaranteed the result is a power
2256 * of 2, which will cause errors later.
2257 */
2258 const u64 max_memory = __rounddown_pow_of_two(memory_hotplug_max());
2259
2260 /*
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002261 * In memory constrained environments, e.g. kdump kernel, the
2262 * DMA window can be larger than available memory, which will
2263 * cause errors later.
2264 */
Nishanth Aravamudanfa144862015-09-04 11:22:52 -07002265 const u64 window_size = min((u64)pe->table_group.tce32_size, max_memory);
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002266
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002267 rc = pnv_pci_ioda2_create_table(&pe->table_group, 0,
2268 IOMMU_PAGE_SHIFT_4K,
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002269 window_size,
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002270 POWERNV_IOMMU_DEFAULT_LEVELS, &tbl);
2271 if (rc) {
2272 pe_err(pe, "Failed to create 32-bit TCE table, err %ld",
2273 rc);
2274 return rc;
2275 }
2276
2277 iommu_init_table(tbl, pe->phb->hose->node);
2278
2279 rc = pnv_pci_ioda2_set_window(&pe->table_group, 0, tbl);
2280 if (rc) {
2281 pe_err(pe, "Failed to configure 32-bit TCE table, err %ld\n",
2282 rc);
2283 pnv_ioda2_table_free(tbl);
2284 return rc;
2285 }
2286
2287 if (!pnv_iommu_bypass_disabled)
2288 pnv_pci_ioda2_set_bypass(pe, true);
2289
2290 /* OPAL variant of PHB3 invalidated TCEs */
2291 if (pe->phb->ioda.tce_inval_reg)
2292 tbl->it_type |= (TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE);
2293
2294 /*
2295 * Setting table base here only for carrying iommu_group
2296 * further down to let iommu_add_device() do the job.
2297 * pnv_pci_ioda_dma_dev_setup will override it later anyway.
2298 */
2299 if (pe->flags & PNV_IODA_PE_DEV)
2300 set_iommu_table_base(&pe->pdev->dev, tbl);
2301
2302 return 0;
2303}
2304
Alexey Kardashevskiyb5926432015-06-15 17:49:59 +10002305#if defined(CONFIG_IOMMU_API) || defined(CONFIG_PCI_IOV)
2306static long pnv_pci_ioda2_unset_window(struct iommu_table_group *table_group,
2307 int num)
2308{
2309 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2310 table_group);
2311 struct pnv_phb *phb = pe->phb;
2312 long ret;
2313
2314 pe_info(pe, "Removing DMA window #%d\n", num);
2315
2316 ret = opal_pci_map_pe_dma_window(phb->opal_id, pe->pe_number,
2317 (pe->pe_number << 1) + num,
2318 0/* levels */, 0/* table address */,
2319 0/* table size */, 0/* page size */);
2320 if (ret)
2321 pe_warn(pe, "Unmapping failed, ret = %ld\n", ret);
2322 else
Alexey Kardashevskiya7cf13c2016-04-29 18:55:16 +10002323 pnv_pci_ioda2_tce_invalidate_pe(pe);
Alexey Kardashevskiyb5926432015-06-15 17:49:59 +10002324
2325 pnv_pci_unlink_table_and_group(table_group->tables[num], table_group);
2326
2327 return ret;
2328}
2329#endif
2330
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002331#ifdef CONFIG_IOMMU_API
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002332static unsigned long pnv_pci_ioda2_get_table_size(__u32 page_shift,
2333 __u64 window_size, __u32 levels)
2334{
2335 unsigned long bytes = 0;
2336 const unsigned window_shift = ilog2(window_size);
2337 unsigned entries_shift = window_shift - page_shift;
2338 unsigned table_shift = entries_shift + 3;
2339 unsigned long tce_table_size = max(0x1000UL, 1UL << table_shift);
2340 unsigned long direct_table_size;
2341
2342 if (!levels || (levels > POWERNV_IOMMU_MAX_LEVELS) ||
2343 (window_size > memory_hotplug_max()) ||
2344 !is_power_of_2(window_size))
2345 return 0;
2346
2347 /* Calculate a direct table size from window_size and levels */
2348 entries_shift = (entries_shift + levels - 1) / levels;
2349 table_shift = entries_shift + 3;
2350 table_shift = max_t(unsigned, table_shift, PAGE_SHIFT);
2351 direct_table_size = 1UL << table_shift;
2352
2353 for ( ; levels; --levels) {
2354 bytes += _ALIGN_UP(tce_table_size, direct_table_size);
2355
2356 tce_table_size /= direct_table_size;
2357 tce_table_size <<= 3;
2358 tce_table_size = _ALIGN_UP(tce_table_size, direct_table_size);
2359 }
2360
2361 return bytes;
2362}
2363
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002364static void pnv_ioda2_take_ownership(struct iommu_table_group *table_group)
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002365{
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002366 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2367 table_group);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002368 /* Store @tbl as pnv_pci_ioda2_unset_window() resets it */
2369 struct iommu_table *tbl = pe->table_group.tables[0];
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002370
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002371 pnv_pci_ioda2_set_bypass(pe, false);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002372 pnv_pci_ioda2_unset_window(&pe->table_group, 0);
2373 pnv_ioda2_table_free(tbl);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002374}
2375
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002376static void pnv_ioda2_release_ownership(struct iommu_table_group *table_group)
2377{
2378 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2379 table_group);
2380
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002381 pnv_pci_ioda2_setup_default_config(pe);
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002382}
2383
2384static struct iommu_table_group_ops pnv_pci_ioda2_ops = {
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002385 .get_table_size = pnv_pci_ioda2_get_table_size,
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002386 .create_table = pnv_pci_ioda2_create_table,
2387 .set_window = pnv_pci_ioda2_set_window,
2388 .unset_window = pnv_pci_ioda2_unset_window,
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002389 .take_ownership = pnv_ioda2_take_ownership,
2390 .release_ownership = pnv_ioda2_release_ownership,
2391};
2392#endif
2393
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002394static void pnv_pci_ioda_setup_opal_tce_kill(struct pnv_phb *phb)
2395{
2396 const __be64 *swinvp;
2397
2398 /* OPAL variant of PHB3 invalidated TCEs */
2399 swinvp = of_get_property(phb->hose->dn, "ibm,opal-tce-kill", NULL);
2400 if (!swinvp)
2401 return;
2402
2403 phb->ioda.tce_inval_reg_phys = be64_to_cpup(swinvp);
2404 phb->ioda.tce_inval_reg = ioremap(phb->ioda.tce_inval_reg_phys, 8);
2405}
2406
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002407static __be64 *pnv_pci_ioda2_table_do_alloc_pages(int nid, unsigned shift,
2408 unsigned levels, unsigned long limit,
Alexey Kardashevskiy3ba3a732015-07-20 20:45:51 +10002409 unsigned long *current_offset, unsigned long *total_allocated)
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002410{
2411 struct page *tce_mem = NULL;
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002412 __be64 *addr, *tmp;
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002413 unsigned order = max_t(unsigned, shift, PAGE_SHIFT) - PAGE_SHIFT;
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002414 unsigned long allocated = 1UL << (order + PAGE_SHIFT);
2415 unsigned entries = 1UL << (shift - 3);
2416 long i;
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002417
2418 tce_mem = alloc_pages_node(nid, GFP_KERNEL, order);
2419 if (!tce_mem) {
2420 pr_err("Failed to allocate a TCE memory, order=%d\n", order);
2421 return NULL;
2422 }
2423 addr = page_address(tce_mem);
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002424 memset(addr, 0, allocated);
Alexey Kardashevskiy3ba3a732015-07-20 20:45:51 +10002425 *total_allocated += allocated;
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002426
2427 --levels;
2428 if (!levels) {
2429 *current_offset += allocated;
2430 return addr;
2431 }
2432
2433 for (i = 0; i < entries; ++i) {
2434 tmp = pnv_pci_ioda2_table_do_alloc_pages(nid, shift,
Alexey Kardashevskiy3ba3a732015-07-20 20:45:51 +10002435 levels, limit, current_offset, total_allocated);
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002436 if (!tmp)
2437 break;
2438
2439 addr[i] = cpu_to_be64(__pa(tmp) |
2440 TCE_PCI_READ | TCE_PCI_WRITE);
2441
2442 if (*current_offset >= limit)
2443 break;
2444 }
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002445
2446 return addr;
2447}
2448
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002449static void pnv_pci_ioda2_table_do_free_pages(__be64 *addr,
2450 unsigned long size, unsigned level);
2451
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002452static long pnv_pci_ioda2_table_alloc_pages(int nid, __u64 bus_offset,
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002453 __u32 page_shift, __u64 window_size, __u32 levels,
2454 struct iommu_table *tbl)
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002455{
2456 void *addr;
Alexey Kardashevskiy3ba3a732015-07-20 20:45:51 +10002457 unsigned long offset = 0, level_shift, total_allocated = 0;
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002458 const unsigned window_shift = ilog2(window_size);
2459 unsigned entries_shift = window_shift - page_shift;
2460 unsigned table_shift = max_t(unsigned, entries_shift + 3, PAGE_SHIFT);
2461 const unsigned long tce_table_size = 1UL << table_shift;
2462
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002463 if (!levels || (levels > POWERNV_IOMMU_MAX_LEVELS))
2464 return -EINVAL;
2465
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002466 if ((window_size > memory_hotplug_max()) || !is_power_of_2(window_size))
2467 return -EINVAL;
2468
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002469 /* Adjust direct table size from window_size and levels */
2470 entries_shift = (entries_shift + levels - 1) / levels;
2471 level_shift = entries_shift + 3;
2472 level_shift = max_t(unsigned, level_shift, PAGE_SHIFT);
2473
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002474 /* Allocate TCE table */
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002475 addr = pnv_pci_ioda2_table_do_alloc_pages(nid, level_shift,
Alexey Kardashevskiy3ba3a732015-07-20 20:45:51 +10002476 levels, tce_table_size, &offset, &total_allocated);
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002477
2478 /* addr==NULL means that the first level allocation failed */
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002479 if (!addr)
2480 return -ENOMEM;
2481
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002482 /*
2483 * First level was allocated but some lower level failed as
2484 * we did not allocate as much as we wanted,
2485 * release partially allocated table.
2486 */
2487 if (offset < tce_table_size) {
2488 pnv_pci_ioda2_table_do_free_pages(addr,
2489 1ULL << (level_shift - 3), levels - 1);
2490 return -ENOMEM;
2491 }
2492
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002493 /* Setup linux iommu table */
2494 pnv_pci_setup_iommu_table(tbl, addr, tce_table_size, bus_offset,
2495 page_shift);
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002496 tbl->it_level_size = 1ULL << (level_shift - 3);
2497 tbl->it_indirect_levels = levels - 1;
Alexey Kardashevskiy3ba3a732015-07-20 20:45:51 +10002498 tbl->it_allocated_size = total_allocated;
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002499
2500 pr_devel("Created TCE table: ws=%08llx ts=%lx @%08llx\n",
2501 window_size, tce_table_size, bus_offset);
2502
2503 return 0;
2504}
2505
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002506static void pnv_pci_ioda2_table_do_free_pages(__be64 *addr,
2507 unsigned long size, unsigned level)
2508{
2509 const unsigned long addr_ul = (unsigned long) addr &
2510 ~(TCE_PCI_READ | TCE_PCI_WRITE);
2511
2512 if (level) {
2513 long i;
2514 u64 *tmp = (u64 *) addr_ul;
2515
2516 for (i = 0; i < size; ++i) {
2517 unsigned long hpa = be64_to_cpu(tmp[i]);
2518
2519 if (!(hpa & (TCE_PCI_READ | TCE_PCI_WRITE)))
2520 continue;
2521
2522 pnv_pci_ioda2_table_do_free_pages(__va(hpa), size,
2523 level - 1);
2524 }
2525 }
2526
2527 free_pages(addr_ul, get_order(size << 3));
2528}
2529
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002530static void pnv_pci_ioda2_table_free_pages(struct iommu_table *tbl)
2531{
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002532 const unsigned long size = tbl->it_indirect_levels ?
2533 tbl->it_level_size : tbl->it_size;
2534
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002535 if (!tbl->it_size)
2536 return;
2537
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002538 pnv_pci_ioda2_table_do_free_pages((__be64 *)tbl->it_base, size,
2539 tbl->it_indirect_levels);
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002540}
2541
Gavin Shan373f5652013-04-25 19:21:01 +00002542static void pnv_pci_ioda2_setup_dma_pe(struct pnv_phb *phb,
2543 struct pnv_ioda_pe *pe)
2544{
Gavin Shan373f5652013-04-25 19:21:01 +00002545 int64_t rc;
2546
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002547 /* TVE #1 is selected by PCI address bit 59 */
2548 pe->tce_bypass_base = 1ull << 59;
2549
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10002550 iommu_register_group(&pe->table_group, phb->hose->global_number,
2551 pe->pe_number);
Alexey Kardashevskiyc5773822015-06-05 16:34:55 +10002552
Gavin Shan373f5652013-04-25 19:21:01 +00002553 /* The PE will reserve all possible 32-bits space */
Gavin Shan373f5652013-04-25 19:21:01 +00002554 pe_info(pe, "Setting up 32-bit TCE table at 0..%08x\n",
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002555 phb->ioda.m32_pci_base);
Gavin Shan373f5652013-04-25 19:21:01 +00002556
Alexey Kardashevskiye5aad1e2015-06-05 16:35:16 +10002557 /* Setup linux iommu table */
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002558 pe->table_group.tce32_start = 0;
2559 pe->table_group.tce32_size = phb->ioda.m32_pci_base;
2560 pe->table_group.max_dynamic_windows_supported =
2561 IOMMU_TABLE_GROUP_MAX_TABLES;
2562 pe->table_group.max_levels = POWERNV_IOMMU_MAX_LEVELS;
2563 pe->table_group.pgsizes = SZ_4K | SZ_64K | SZ_16M;
Alexey Kardashevskiye5aad1e2015-06-05 16:35:16 +10002564#ifdef CONFIG_IOMMU_API
2565 pe->table_group.ops = &pnv_pci_ioda2_ops;
2566#endif
2567
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002568 rc = pnv_pci_ioda2_setup_default_config(pe);
Gavin Shan801846d2016-05-03 15:41:34 +10002569 if (rc)
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002570 return;
Gavin Shan373f5652013-04-25 19:21:01 +00002571
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002572 if (pe->flags & PNV_IODA_PE_DEV)
Alexey Kardashevskiy46170822015-06-05 16:34:54 +10002573 iommu_add_device(&pe->pdev->dev);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002574 else if (pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL))
Alexey Kardashevskiyea30e992015-06-05 16:34:53 +10002575 pnv_ioda_setup_bus_dma(pe, pe->pbus);
Gavin Shan373f5652013-04-25 19:21:01 +00002576}
2577
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08002578static void pnv_ioda_setup_dma(struct pnv_phb *phb)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002579{
2580 struct pci_controller *hose = phb->hose;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002581 struct pnv_ioda_pe *pe;
Gavin Shan2b923ed2016-05-05 12:04:16 +10002582 unsigned int weight;
Gavin Shan801846d2016-05-03 15:41:34 +10002583
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002584 /* If we have more PE# than segments available, hand out one
2585 * per PE until we run out and let the rest fail. If not,
2586 * then we assign at least one segment per PE, plus more based
2587 * on the amount of devices under that PE
2588 */
Gavin Shan2b923ed2016-05-05 12:04:16 +10002589 pr_info("PCI: Domain %04x has %d available 32-bit DMA segments\n",
2590 hose->global_number, phb->ioda.dma32_count);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002591
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002592 pnv_pci_ioda_setup_opal_tce_kill(phb);
2593
Gavin Shan2b923ed2016-05-05 12:04:16 +10002594 /* Walk our PE list and configure their DMA segments */
Gavin Shan801846d2016-05-03 15:41:34 +10002595 list_for_each_entry(pe, &phb->ioda.pe_list, list) {
2596 weight = pnv_pci_ioda_pe_dma_weight(pe);
2597 if (!weight)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002598 continue;
Gavin Shan801846d2016-05-03 15:41:34 +10002599
Gavin Shan373f5652013-04-25 19:21:01 +00002600 /*
2601 * For IODA2 compliant PHB3, we needn't care about the weight.
2602 * The all available 32-bits DMA space will be assigned to
2603 * the specific PE.
2604 */
2605 if (phb->type == PNV_PHB_IODA1) {
Gavin Shan2b923ed2016-05-05 12:04:16 +10002606 pnv_pci_ioda1_setup_dma_pe(phb, pe);
Alistair Popple5d2aa712015-12-17 13:43:13 +11002607 } else if (phb->type == PNV_PHB_IODA2) {
Gavin Shan373f5652013-04-25 19:21:01 +00002608 pe_info(pe, "Assign DMA32 space\n");
Gavin Shan373f5652013-04-25 19:21:01 +00002609 pnv_pci_ioda2_setup_dma_pe(phb, pe);
Alistair Popple5d2aa712015-12-17 13:43:13 +11002610 } else if (phb->type == PNV_PHB_NPU) {
2611 /*
2612 * We initialise the DMA space for an NPU PHB
2613 * after setup of the PHB is complete as we
2614 * point the NPU TVT to the the same location
2615 * as the PHB3 TVT.
2616 */
Gavin Shan373f5652013-04-25 19:21:01 +00002617 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002618 }
2619}
2620
2621#ifdef CONFIG_PCI_MSI
Gavin Shan137436c2013-04-25 19:20:59 +00002622static void pnv_ioda2_msi_eoi(struct irq_data *d)
2623{
2624 unsigned int hw_irq = (unsigned int)irqd_to_hwirq(d);
2625 struct irq_chip *chip = irq_data_get_irq_chip(d);
2626 struct pnv_phb *phb = container_of(chip, struct pnv_phb,
2627 ioda.irq_chip);
2628 int64_t rc;
2629
2630 rc = opal_pci_msi_eoi(phb->opal_id, hw_irq);
2631 WARN_ON_ONCE(rc);
2632
2633 icp_native_eoi(d);
2634}
2635
Ian Munsiefd9a1c22014-10-08 19:54:55 +11002636
2637static void set_msi_irq_chip(struct pnv_phb *phb, unsigned int virq)
2638{
2639 struct irq_data *idata;
2640 struct irq_chip *ichip;
2641
2642 if (phb->type != PNV_PHB_IODA2)
2643 return;
2644
2645 if (!phb->ioda.irq_chip_init) {
2646 /*
2647 * First time we setup an MSI IRQ, we need to setup the
2648 * corresponding IRQ chip to route correctly.
2649 */
2650 idata = irq_get_irq_data(virq);
2651 ichip = irq_data_get_irq_chip(idata);
2652 phb->ioda.irq_chip_init = 1;
2653 phb->ioda.irq_chip = *ichip;
2654 phb->ioda.irq_chip.irq_eoi = pnv_ioda2_msi_eoi;
2655 }
2656 irq_set_chip(virq, &phb->ioda.irq_chip);
2657}
2658
Ian Munsie80c49c72014-10-08 19:54:57 +11002659#ifdef CONFIG_CXL_BASE
2660
Ryan Grimm6f963ec2015-01-28 20:16:04 -06002661struct device_node *pnv_pci_get_phb_node(struct pci_dev *dev)
Ian Munsie80c49c72014-10-08 19:54:57 +11002662{
2663 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2664
Ryan Grimm6f963ec2015-01-28 20:16:04 -06002665 return of_node_get(hose->dn);
Ian Munsie80c49c72014-10-08 19:54:57 +11002666}
Ryan Grimm6f963ec2015-01-28 20:16:04 -06002667EXPORT_SYMBOL(pnv_pci_get_phb_node);
Ian Munsie80c49c72014-10-08 19:54:57 +11002668
Ryan Grimm1212aa12015-01-19 11:52:50 -06002669int pnv_phb_to_cxl_mode(struct pci_dev *dev, uint64_t mode)
Ian Munsie80c49c72014-10-08 19:54:57 +11002670{
2671 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2672 struct pnv_phb *phb = hose->private_data;
2673 struct pnv_ioda_pe *pe;
2674 int rc;
2675
2676 pe = pnv_ioda_get_pe(dev);
2677 if (!pe)
2678 return -ENODEV;
2679
2680 pe_info(pe, "Switching PHB to CXL\n");
2681
Ryan Grimm1212aa12015-01-19 11:52:50 -06002682 rc = opal_pci_set_phb_cxl_mode(phb->opal_id, mode, pe->pe_number);
Ian Munsie80c49c72014-10-08 19:54:57 +11002683 if (rc)
2684 dev_err(&dev->dev, "opal_pci_set_phb_cxl_mode failed: %i\n", rc);
2685
2686 return rc;
2687}
Ryan Grimm1212aa12015-01-19 11:52:50 -06002688EXPORT_SYMBOL(pnv_phb_to_cxl_mode);
Ian Munsie80c49c72014-10-08 19:54:57 +11002689
2690/* Find PHB for cxl dev and allocate MSI hwirqs?
2691 * Returns the absolute hardware IRQ number
2692 */
2693int pnv_cxl_alloc_hwirqs(struct pci_dev *dev, int num)
2694{
2695 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2696 struct pnv_phb *phb = hose->private_data;
2697 int hwirq = msi_bitmap_alloc_hwirqs(&phb->msi_bmp, num);
2698
2699 if (hwirq < 0) {
2700 dev_warn(&dev->dev, "Failed to find a free MSI\n");
2701 return -ENOSPC;
2702 }
2703
2704 return phb->msi_base + hwirq;
2705}
2706EXPORT_SYMBOL(pnv_cxl_alloc_hwirqs);
2707
2708void pnv_cxl_release_hwirqs(struct pci_dev *dev, int hwirq, int num)
2709{
2710 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2711 struct pnv_phb *phb = hose->private_data;
2712
2713 msi_bitmap_free_hwirqs(&phb->msi_bmp, hwirq - phb->msi_base, num);
2714}
2715EXPORT_SYMBOL(pnv_cxl_release_hwirqs);
2716
2717void pnv_cxl_release_hwirq_ranges(struct cxl_irq_ranges *irqs,
2718 struct pci_dev *dev)
2719{
2720 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2721 struct pnv_phb *phb = hose->private_data;
2722 int i, hwirq;
2723
2724 for (i = 1; i < CXL_IRQ_RANGES; i++) {
2725 if (!irqs->range[i])
2726 continue;
2727 pr_devel("cxl release irq range 0x%x: offset: 0x%lx limit: %ld\n",
2728 i, irqs->offset[i],
2729 irqs->range[i]);
2730 hwirq = irqs->offset[i] - phb->msi_base;
2731 msi_bitmap_free_hwirqs(&phb->msi_bmp, hwirq,
2732 irqs->range[i]);
2733 }
2734}
2735EXPORT_SYMBOL(pnv_cxl_release_hwirq_ranges);
2736
2737int pnv_cxl_alloc_hwirq_ranges(struct cxl_irq_ranges *irqs,
2738 struct pci_dev *dev, int num)
2739{
2740 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2741 struct pnv_phb *phb = hose->private_data;
2742 int i, hwirq, try;
2743
2744 memset(irqs, 0, sizeof(struct cxl_irq_ranges));
2745
2746 /* 0 is reserved for the multiplexed PSL DSI interrupt */
2747 for (i = 1; i < CXL_IRQ_RANGES && num; i++) {
2748 try = num;
2749 while (try) {
2750 hwirq = msi_bitmap_alloc_hwirqs(&phb->msi_bmp, try);
2751 if (hwirq >= 0)
2752 break;
2753 try /= 2;
2754 }
2755 if (!try)
2756 goto fail;
2757
2758 irqs->offset[i] = phb->msi_base + hwirq;
2759 irqs->range[i] = try;
2760 pr_devel("cxl alloc irq range 0x%x: offset: 0x%lx limit: %li\n",
2761 i, irqs->offset[i], irqs->range[i]);
2762 num -= try;
2763 }
2764 if (num)
2765 goto fail;
2766
2767 return 0;
2768fail:
2769 pnv_cxl_release_hwirq_ranges(irqs, dev);
2770 return -ENOSPC;
2771}
2772EXPORT_SYMBOL(pnv_cxl_alloc_hwirq_ranges);
2773
2774int pnv_cxl_get_irq_count(struct pci_dev *dev)
2775{
2776 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2777 struct pnv_phb *phb = hose->private_data;
2778
2779 return phb->msi_bmp.irq_count;
2780}
2781EXPORT_SYMBOL(pnv_cxl_get_irq_count);
2782
2783int pnv_cxl_ioda_msi_setup(struct pci_dev *dev, unsigned int hwirq,
2784 unsigned int virq)
2785{
2786 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2787 struct pnv_phb *phb = hose->private_data;
2788 unsigned int xive_num = hwirq - phb->msi_base;
2789 struct pnv_ioda_pe *pe;
2790 int rc;
2791
2792 if (!(pe = pnv_ioda_get_pe(dev)))
2793 return -ENODEV;
2794
2795 /* Assign XIVE to PE */
2796 rc = opal_pci_set_xive_pe(phb->opal_id, pe->pe_number, xive_num);
2797 if (rc) {
2798 pe_warn(pe, "%s: OPAL error %d setting msi_base 0x%x "
2799 "hwirq 0x%x XIVE 0x%x PE\n",
2800 pci_name(dev), rc, phb->msi_base, hwirq, xive_num);
2801 return -EIO;
2802 }
2803 set_msi_irq_chip(phb, virq);
2804
2805 return 0;
2806}
2807EXPORT_SYMBOL(pnv_cxl_ioda_msi_setup);
2808#endif
2809
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002810static int pnv_pci_ioda_msi_setup(struct pnv_phb *phb, struct pci_dev *dev,
Gavin Shan137436c2013-04-25 19:20:59 +00002811 unsigned int hwirq, unsigned int virq,
2812 unsigned int is_64, struct msi_msg *msg)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002813{
2814 struct pnv_ioda_pe *pe = pnv_ioda_get_pe(dev);
2815 unsigned int xive_num = hwirq - phb->msi_base;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002816 __be32 data;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002817 int rc;
2818
2819 /* No PE assigned ? bail out ... no MSI for you ! */
2820 if (pe == NULL)
2821 return -ENXIO;
2822
2823 /* Check if we have an MVE */
2824 if (pe->mve_number < 0)
2825 return -ENXIO;
2826
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00002827 /* Force 32-bit MSI on some broken devices */
Benjamin Herrenschmidt36074382014-10-07 16:12:36 +11002828 if (dev->no_64bit_msi)
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00002829 is_64 = 0;
2830
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002831 /* Assign XIVE to PE */
2832 rc = opal_pci_set_xive_pe(phb->opal_id, pe->pe_number, xive_num);
2833 if (rc) {
2834 pr_warn("%s: OPAL error %d setting XIVE %d PE\n",
2835 pci_name(dev), rc, xive_num);
2836 return -EIO;
2837 }
2838
2839 if (is_64) {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002840 __be64 addr64;
2841
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002842 rc = opal_get_msi_64(phb->opal_id, pe->mve_number, xive_num, 1,
2843 &addr64, &data);
2844 if (rc) {
2845 pr_warn("%s: OPAL error %d getting 64-bit MSI data\n",
2846 pci_name(dev), rc);
2847 return -EIO;
2848 }
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002849 msg->address_hi = be64_to_cpu(addr64) >> 32;
2850 msg->address_lo = be64_to_cpu(addr64) & 0xfffffffful;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002851 } else {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002852 __be32 addr32;
2853
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002854 rc = opal_get_msi_32(phb->opal_id, pe->mve_number, xive_num, 1,
2855 &addr32, &data);
2856 if (rc) {
2857 pr_warn("%s: OPAL error %d getting 32-bit MSI data\n",
2858 pci_name(dev), rc);
2859 return -EIO;
2860 }
2861 msg->address_hi = 0;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002862 msg->address_lo = be32_to_cpu(addr32);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002863 }
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002864 msg->data = be32_to_cpu(data);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002865
Ian Munsiefd9a1c22014-10-08 19:54:55 +11002866 set_msi_irq_chip(phb, virq);
Gavin Shan137436c2013-04-25 19:20:59 +00002867
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002868 pr_devel("%s: %s-bit MSI on hwirq %x (xive #%d),"
2869 " address=%x_%08x data=%x PE# %d\n",
2870 pci_name(dev), is_64 ? "64" : "32", hwirq, xive_num,
2871 msg->address_hi, msg->address_lo, data, pe->pe_number);
2872
2873 return 0;
2874}
2875
2876static void pnv_pci_init_ioda_msis(struct pnv_phb *phb)
2877{
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002878 unsigned int count;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002879 const __be32 *prop = of_get_property(phb->hose->dn,
2880 "ibm,opal-msi-ranges", NULL);
2881 if (!prop) {
2882 /* BML Fallback */
2883 prop = of_get_property(phb->hose->dn, "msi-ranges", NULL);
2884 }
2885 if (!prop)
2886 return;
2887
2888 phb->msi_base = be32_to_cpup(prop);
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002889 count = be32_to_cpup(prop + 1);
2890 if (msi_bitmap_alloc(&phb->msi_bmp, count, phb->hose->dn)) {
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002891 pr_err("PCI %d: Failed to allocate MSI bitmap !\n",
2892 phb->hose->global_number);
2893 return;
2894 }
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002895
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002896 phb->msi_setup = pnv_pci_ioda_msi_setup;
2897 phb->msi32_support = 1;
2898 pr_info(" Allocated bitmap for %d MSIs (base IRQ 0x%x)\n",
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002899 count, phb->msi_base);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002900}
2901#else
2902static void pnv_pci_init_ioda_msis(struct pnv_phb *phb) { }
2903#endif /* CONFIG_PCI_MSI */
2904
Wei Yang6e628c72015-03-25 16:23:55 +08002905#ifdef CONFIG_PCI_IOV
2906static void pnv_pci_ioda_fixup_iov_resources(struct pci_dev *pdev)
2907{
Wei Yangf2dd0af2015-10-22 09:22:17 +08002908 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
2909 struct pnv_phb *phb = hose->private_data;
2910 const resource_size_t gate = phb->ioda.m64_segsize >> 2;
Wei Yang6e628c72015-03-25 16:23:55 +08002911 struct resource *res;
2912 int i;
Wei Yangdfcc8d42015-10-22 09:22:18 +08002913 resource_size_t size, total_vf_bar_sz;
Wei Yang6e628c72015-03-25 16:23:55 +08002914 struct pci_dn *pdn;
Wei Yang5b88ec22015-03-25 16:23:58 +08002915 int mul, total_vfs;
Wei Yang6e628c72015-03-25 16:23:55 +08002916
2917 if (!pdev->is_physfn || pdev->is_added)
2918 return;
2919
Wei Yang6e628c72015-03-25 16:23:55 +08002920 pdn = pci_get_pdn(pdev);
2921 pdn->vfs_expanded = 0;
Wei Yangee8222f2015-10-22 09:22:16 +08002922 pdn->m64_single_mode = false;
Wei Yang6e628c72015-03-25 16:23:55 +08002923
Wei Yang5b88ec22015-03-25 16:23:58 +08002924 total_vfs = pci_sriov_get_totalvfs(pdev);
Gavin Shan92b8f132016-05-03 15:41:24 +10002925 mul = phb->ioda.total_pe_num;
Wei Yangdfcc8d42015-10-22 09:22:18 +08002926 total_vf_bar_sz = 0;
Wei Yang5b88ec22015-03-25 16:23:58 +08002927
2928 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
2929 res = &pdev->resource[i + PCI_IOV_RESOURCES];
2930 if (!res->flags || res->parent)
2931 continue;
2932 if (!pnv_pci_is_mem_pref_64(res->flags)) {
Wei Yangb0331852015-10-22 09:22:14 +08002933 dev_warn(&pdev->dev, "Don't support SR-IOV with"
2934 " non M64 VF BAR%d: %pR. \n",
Wei Yang5b88ec22015-03-25 16:23:58 +08002935 i, res);
Wei Yangb0331852015-10-22 09:22:14 +08002936 goto truncate_iov;
Wei Yang5b88ec22015-03-25 16:23:58 +08002937 }
2938
Wei Yangdfcc8d42015-10-22 09:22:18 +08002939 total_vf_bar_sz += pci_iov_resource_size(pdev,
2940 i + PCI_IOV_RESOURCES);
Wei Yang5b88ec22015-03-25 16:23:58 +08002941
Wei Yangf2dd0af2015-10-22 09:22:17 +08002942 /*
2943 * If bigger than quarter of M64 segment size, just round up
2944 * power of two.
2945 *
2946 * Generally, one M64 BAR maps one IOV BAR. To avoid conflict
2947 * with other devices, IOV BAR size is expanded to be
2948 * (total_pe * VF_BAR_size). When VF_BAR_size is half of M64
2949 * segment size , the expanded size would equal to half of the
2950 * whole M64 space size, which will exhaust the M64 Space and
2951 * limit the system flexibility. This is a design decision to
2952 * set the boundary to quarter of the M64 segment size.
2953 */
Wei Yangdfcc8d42015-10-22 09:22:18 +08002954 if (total_vf_bar_sz > gate) {
Wei Yang5b88ec22015-03-25 16:23:58 +08002955 mul = roundup_pow_of_two(total_vfs);
Wei Yangdfcc8d42015-10-22 09:22:18 +08002956 dev_info(&pdev->dev,
2957 "VF BAR Total IOV size %llx > %llx, roundup to %d VFs\n",
2958 total_vf_bar_sz, gate, mul);
Wei Yangee8222f2015-10-22 09:22:16 +08002959 pdn->m64_single_mode = true;
Wei Yang5b88ec22015-03-25 16:23:58 +08002960 break;
2961 }
2962 }
2963
Wei Yang6e628c72015-03-25 16:23:55 +08002964 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
2965 res = &pdev->resource[i + PCI_IOV_RESOURCES];
2966 if (!res->flags || res->parent)
2967 continue;
Wei Yang6e628c72015-03-25 16:23:55 +08002968
Wei Yang6e628c72015-03-25 16:23:55 +08002969 size = pci_iov_resource_size(pdev, i + PCI_IOV_RESOURCES);
Wei Yangee8222f2015-10-22 09:22:16 +08002970 /*
2971 * On PHB3, the minimum size alignment of M64 BAR in single
2972 * mode is 32MB.
2973 */
2974 if (pdn->m64_single_mode && (size < SZ_32M))
2975 goto truncate_iov;
2976 dev_dbg(&pdev->dev, " Fixing VF BAR%d: %pR to\n", i, res);
Wei Yang5b88ec22015-03-25 16:23:58 +08002977 res->end = res->start + size * mul - 1;
Wei Yang6e628c72015-03-25 16:23:55 +08002978 dev_dbg(&pdev->dev, " %pR\n", res);
2979 dev_info(&pdev->dev, "VF BAR%d: %pR (expanded to %d VFs for PE alignment)",
Wei Yang5b88ec22015-03-25 16:23:58 +08002980 i, res, mul);
Wei Yang6e628c72015-03-25 16:23:55 +08002981 }
Wei Yang5b88ec22015-03-25 16:23:58 +08002982 pdn->vfs_expanded = mul;
Wei Yangb0331852015-10-22 09:22:14 +08002983
2984 return;
2985
2986truncate_iov:
2987 /* To save MMIO space, IOV BAR is truncated. */
2988 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
2989 res = &pdev->resource[i + PCI_IOV_RESOURCES];
2990 res->flags = 0;
2991 res->end = res->start - 1;
2992 }
Wei Yang6e628c72015-03-25 16:23:55 +08002993}
2994#endif /* CONFIG_PCI_IOV */
2995
Gavin Shan23e79422016-05-03 15:41:27 +10002996static void pnv_ioda_setup_pe_res(struct pnv_ioda_pe *pe,
2997 struct resource *res)
2998{
2999 struct pnv_phb *phb = pe->phb;
3000 struct pci_bus_region region;
3001 int index;
3002 int64_t rc;
3003
3004 if (!res || !res->flags || res->start > res->end)
3005 return;
3006
3007 if (res->flags & IORESOURCE_IO) {
3008 region.start = res->start - phb->ioda.io_pci_base;
3009 region.end = res->end - phb->ioda.io_pci_base;
3010 index = region.start / phb->ioda.io_segsize;
3011
3012 while (index < phb->ioda.total_pe_num &&
3013 region.start <= region.end) {
3014 phb->ioda.io_segmap[index] = pe->pe_number;
3015 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
3016 pe->pe_number, OPAL_IO_WINDOW_TYPE, 0, index);
3017 if (rc != OPAL_SUCCESS) {
3018 pr_err("%s: Error %lld mapping IO segment#%d to PE#%d\n",
3019 __func__, rc, index, pe->pe_number);
3020 break;
3021 }
3022
3023 region.start += phb->ioda.io_segsize;
3024 index++;
3025 }
3026 } else if ((res->flags & IORESOURCE_MEM) &&
3027 !pnv_pci_is_mem_pref_64(res->flags)) {
3028 region.start = res->start -
3029 phb->hose->mem_offset[0] -
3030 phb->ioda.m32_pci_base;
3031 region.end = res->end -
3032 phb->hose->mem_offset[0] -
3033 phb->ioda.m32_pci_base;
3034 index = region.start / phb->ioda.m32_segsize;
3035
3036 while (index < phb->ioda.total_pe_num &&
3037 region.start <= region.end) {
3038 phb->ioda.m32_segmap[index] = pe->pe_number;
3039 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
3040 pe->pe_number, OPAL_M32_WINDOW_TYPE, 0, index);
3041 if (rc != OPAL_SUCCESS) {
3042 pr_err("%s: Error %lld mapping M32 segment#%d to PE#%d",
3043 __func__, rc, index, pe->pe_number);
3044 break;
3045 }
3046
3047 region.start += phb->ioda.m32_segsize;
3048 index++;
3049 }
3050 }
3051}
3052
Gavin Shan11685be2012-08-20 03:49:16 +00003053/*
3054 * This function is supposed to be called on basis of PE from top
3055 * to bottom style. So the the I/O or MMIO segment assigned to
3056 * parent PE could be overrided by its child PEs if necessary.
3057 */
Gavin Shan23e79422016-05-03 15:41:27 +10003058static void pnv_ioda_setup_pe_seg(struct pnv_ioda_pe *pe)
Gavin Shan11685be2012-08-20 03:49:16 +00003059{
Gavin Shan69d733e2016-05-03 15:41:28 +10003060 struct pci_dev *pdev;
Gavin Shan23e79422016-05-03 15:41:27 +10003061 int i;
Gavin Shan11685be2012-08-20 03:49:16 +00003062
3063 /*
3064 * NOTE: We only care PCI bus based PE for now. For PCI
3065 * device based PE, for example SRIOV sensitive VF should
3066 * be figured out later.
3067 */
3068 BUG_ON(!(pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL)));
3069
Gavin Shan69d733e2016-05-03 15:41:28 +10003070 list_for_each_entry(pdev, &pe->pbus->devices, bus_list) {
3071 for (i = 0; i <= PCI_ROM_RESOURCE; i++)
3072 pnv_ioda_setup_pe_res(pe, &pdev->resource[i]);
3073
3074 /*
3075 * If the PE contains all subordinate PCI buses, the
3076 * windows of the child bridges should be mapped to
3077 * the PE as well.
3078 */
3079 if (!(pe->flags & PNV_IODA_PE_BUS_ALL) || !pci_is_bridge(pdev))
3080 continue;
3081 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++)
3082 pnv_ioda_setup_pe_res(pe,
3083 &pdev->resource[PCI_BRIDGE_RESOURCES + i]);
3084 }
Gavin Shan11685be2012-08-20 03:49:16 +00003085}
3086
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08003087static void pnv_pci_ioda_setup_seg(void)
Gavin Shan11685be2012-08-20 03:49:16 +00003088{
3089 struct pci_controller *tmp, *hose;
3090 struct pnv_phb *phb;
3091 struct pnv_ioda_pe *pe;
3092
3093 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
3094 phb = hose->private_data;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003095
3096 /* NPU PHB does not support IO or MMIO segmentation */
3097 if (phb->type == PNV_PHB_NPU)
3098 continue;
3099
Gavin Shan11685be2012-08-20 03:49:16 +00003100 list_for_each_entry(pe, &phb->ioda.pe_list, list) {
Gavin Shan23e79422016-05-03 15:41:27 +10003101 pnv_ioda_setup_pe_seg(pe);
Gavin Shan11685be2012-08-20 03:49:16 +00003102 }
3103 }
3104}
3105
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08003106static void pnv_pci_ioda_setup_DMA(void)
Gavin Shan13395c42012-08-20 03:49:17 +00003107{
3108 struct pci_controller *hose, *tmp;
Gavin Shandb1266c2012-08-20 03:49:18 +00003109 struct pnv_phb *phb;
Gavin Shan13395c42012-08-20 03:49:17 +00003110
3111 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
3112 pnv_ioda_setup_dma(hose->private_data);
Gavin Shandb1266c2012-08-20 03:49:18 +00003113
3114 /* Mark the PHB initialization done */
3115 phb = hose->private_data;
3116 phb->initialized = 1;
Gavin Shan13395c42012-08-20 03:49:17 +00003117 }
3118}
3119
Gavin Shan37c367f2013-06-20 18:13:25 +08003120static void pnv_pci_ioda_create_dbgfs(void)
3121{
3122#ifdef CONFIG_DEBUG_FS
3123 struct pci_controller *hose, *tmp;
3124 struct pnv_phb *phb;
3125 char name[16];
3126
3127 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
3128 phb = hose->private_data;
3129
3130 sprintf(name, "PCI%04x", hose->global_number);
3131 phb->dbgfs = debugfs_create_dir(name, powerpc_debugfs_root);
3132 if (!phb->dbgfs)
3133 pr_warning("%s: Error on creating debugfs on PHB#%x\n",
3134 __func__, hose->global_number);
3135 }
3136#endif /* CONFIG_DEBUG_FS */
3137}
3138
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08003139static void pnv_pci_ioda_fixup(void)
Gavin Shanfb446ad2012-08-20 03:49:14 +00003140{
3141 pnv_pci_ioda_setup_PEs();
Gavin Shan11685be2012-08-20 03:49:16 +00003142 pnv_pci_ioda_setup_seg();
Gavin Shan13395c42012-08-20 03:49:17 +00003143 pnv_pci_ioda_setup_DMA();
Gavin Shane9cc17d2013-06-20 13:21:14 +08003144
Gavin Shan37c367f2013-06-20 18:13:25 +08003145 pnv_pci_ioda_create_dbgfs();
3146
Gavin Shane9cc17d2013-06-20 13:21:14 +08003147#ifdef CONFIG_EEH
Gavin Shane9cc17d2013-06-20 13:21:14 +08003148 eeh_init();
Mike Qiudadcd6d2014-06-26 02:58:47 -04003149 eeh_addr_cache_build();
Gavin Shane9cc17d2013-06-20 13:21:14 +08003150#endif
Gavin Shanfb446ad2012-08-20 03:49:14 +00003151}
3152
Gavin Shan271fd032012-09-11 16:59:47 -06003153/*
3154 * Returns the alignment for I/O or memory windows for P2P
3155 * bridges. That actually depends on how PEs are segmented.
3156 * For now, we return I/O or M32 segment size for PE sensitive
3157 * P2P bridges. Otherwise, the default values (4KiB for I/O,
3158 * 1MiB for memory) will be returned.
3159 *
3160 * The current PCI bus might be put into one PE, which was
3161 * create against the parent PCI bridge. For that case, we
3162 * needn't enlarge the alignment so that we can save some
3163 * resources.
3164 */
3165static resource_size_t pnv_pci_window_alignment(struct pci_bus *bus,
3166 unsigned long type)
3167{
3168 struct pci_dev *bridge;
3169 struct pci_controller *hose = pci_bus_to_host(bus);
3170 struct pnv_phb *phb = hose->private_data;
3171 int num_pci_bridges = 0;
3172
3173 bridge = bus->self;
3174 while (bridge) {
3175 if (pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE) {
3176 num_pci_bridges++;
3177 if (num_pci_bridges >= 2)
3178 return 1;
3179 }
3180
3181 bridge = bridge->bus->self;
3182 }
3183
Guo Chao262af552014-07-21 14:42:30 +10003184 /* We fail back to M32 if M64 isn't supported */
3185 if (phb->ioda.m64_segsize &&
3186 pnv_pci_is_mem_pref_64(type))
3187 return phb->ioda.m64_segsize;
Gavin Shan271fd032012-09-11 16:59:47 -06003188 if (type & IORESOURCE_MEM)
3189 return phb->ioda.m32_segsize;
3190
3191 return phb->ioda.io_segsize;
3192}
3193
Wei Yang5350ab32015-03-25 16:23:56 +08003194#ifdef CONFIG_PCI_IOV
3195static resource_size_t pnv_pci_iov_resource_alignment(struct pci_dev *pdev,
3196 int resno)
3197{
Wei Yangee8222f2015-10-22 09:22:16 +08003198 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
3199 struct pnv_phb *phb = hose->private_data;
Wei Yang5350ab32015-03-25 16:23:56 +08003200 struct pci_dn *pdn = pci_get_pdn(pdev);
Wei Yang7fbe7a92015-10-22 09:22:15 +08003201 resource_size_t align;
Wei Yang5350ab32015-03-25 16:23:56 +08003202
Wei Yang7fbe7a92015-10-22 09:22:15 +08003203 /*
3204 * On PowerNV platform, IOV BAR is mapped by M64 BAR to enable the
3205 * SR-IOV. While from hardware perspective, the range mapped by M64
3206 * BAR should be size aligned.
3207 *
Wei Yangee8222f2015-10-22 09:22:16 +08003208 * When IOV BAR is mapped with M64 BAR in Single PE mode, the extra
3209 * powernv-specific hardware restriction is gone. But if just use the
3210 * VF BAR size as the alignment, PF BAR / VF BAR may be allocated with
3211 * in one segment of M64 #15, which introduces the PE conflict between
3212 * PF and VF. Based on this, the minimum alignment of an IOV BAR is
3213 * m64_segsize.
3214 *
Wei Yang7fbe7a92015-10-22 09:22:15 +08003215 * This function returns the total IOV BAR size if M64 BAR is in
3216 * Shared PE mode or just VF BAR size if not.
Wei Yangee8222f2015-10-22 09:22:16 +08003217 * If the M64 BAR is in Single PE mode, return the VF BAR size or
3218 * M64 segment size if IOV BAR size is less.
Wei Yang7fbe7a92015-10-22 09:22:15 +08003219 */
Wei Yang5350ab32015-03-25 16:23:56 +08003220 align = pci_iov_resource_size(pdev, resno);
Wei Yang7fbe7a92015-10-22 09:22:15 +08003221 if (!pdn->vfs_expanded)
3222 return align;
Wei Yangee8222f2015-10-22 09:22:16 +08003223 if (pdn->m64_single_mode)
3224 return max(align, (resource_size_t)phb->ioda.m64_segsize);
Wei Yang5350ab32015-03-25 16:23:56 +08003225
Wei Yang7fbe7a92015-10-22 09:22:15 +08003226 return pdn->vfs_expanded * align;
Wei Yang5350ab32015-03-25 16:23:56 +08003227}
3228#endif /* CONFIG_PCI_IOV */
3229
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003230/* Prevent enabling devices for which we couldn't properly
3231 * assign a PE
3232 */
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003233static bool pnv_pci_enable_device_hook(struct pci_dev *dev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003234{
Gavin Shandb1266c2012-08-20 03:49:18 +00003235 struct pci_controller *hose = pci_bus_to_host(dev->bus);
3236 struct pnv_phb *phb = hose->private_data;
3237 struct pci_dn *pdn;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003238
Gavin Shandb1266c2012-08-20 03:49:18 +00003239 /* The function is probably called while the PEs have
3240 * not be created yet. For example, resource reassignment
3241 * during PCI probe period. We just skip the check if
3242 * PEs isn't ready.
3243 */
3244 if (!phb->initialized)
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003245 return true;
Gavin Shandb1266c2012-08-20 03:49:18 +00003246
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00003247 pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003248 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003249 return false;
Gavin Shandb1266c2012-08-20 03:49:18 +00003250
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003251 return true;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003252}
3253
Michael Neuling7a8e6bb2015-05-27 16:06:59 +10003254static void pnv_pci_ioda_shutdown(struct pci_controller *hose)
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +10003255{
Michael Neuling7a8e6bb2015-05-27 16:06:59 +10003256 struct pnv_phb *phb = hose->private_data;
3257
Gavin Shand1a85ee2014-09-30 12:39:05 +10003258 opal_pci_reset(phb->opal_id, OPAL_RESET_PCI_IODA_TABLE,
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +10003259 OPAL_ASSERT_RESET);
3260}
3261
Daniel Axtens92ae0352015-04-28 15:12:05 +10003262static const struct pci_controller_ops pnv_pci_ioda_controller_ops = {
Gavin Shancb4224c2016-05-03 15:41:21 +10003263 .dma_dev_setup = pnv_pci_dma_dev_setup,
3264 .dma_bus_setup = pnv_pci_dma_bus_setup,
Daniel Axtens92ae0352015-04-28 15:12:05 +10003265#ifdef CONFIG_PCI_MSI
Gavin Shancb4224c2016-05-03 15:41:21 +10003266 .setup_msi_irqs = pnv_setup_msi_irqs,
3267 .teardown_msi_irqs = pnv_teardown_msi_irqs,
Daniel Axtens92ae0352015-04-28 15:12:05 +10003268#endif
Gavin Shancb4224c2016-05-03 15:41:21 +10003269 .enable_device_hook = pnv_pci_enable_device_hook,
3270 .window_alignment = pnv_pci_window_alignment,
3271 .reset_secondary_bus = pnv_pci_reset_secondary_bus,
3272 .dma_set_mask = pnv_pci_ioda_dma_set_mask,
3273 .dma_get_required_mask = pnv_pci_ioda_dma_get_required_mask,
3274 .shutdown = pnv_pci_ioda_shutdown,
Daniel Axtens92ae0352015-04-28 15:12:05 +10003275};
3276
Alexey Kardashevskiyf9f83452016-04-29 18:55:20 +10003277static int pnv_npu_dma_set_mask(struct pci_dev *npdev, u64 dma_mask)
3278{
3279 dev_err_once(&npdev->dev,
3280 "%s operation unsupported for NVLink devices\n",
3281 __func__);
3282 return -EPERM;
3283}
3284
Alistair Popple5d2aa712015-12-17 13:43:13 +11003285static const struct pci_controller_ops pnv_npu_ioda_controller_ops = {
Gavin Shancb4224c2016-05-03 15:41:21 +10003286 .dma_dev_setup = pnv_pci_dma_dev_setup,
Alistair Popple5d2aa712015-12-17 13:43:13 +11003287#ifdef CONFIG_PCI_MSI
Gavin Shancb4224c2016-05-03 15:41:21 +10003288 .setup_msi_irqs = pnv_setup_msi_irqs,
3289 .teardown_msi_irqs = pnv_teardown_msi_irqs,
Alistair Popple5d2aa712015-12-17 13:43:13 +11003290#endif
Gavin Shancb4224c2016-05-03 15:41:21 +10003291 .enable_device_hook = pnv_pci_enable_device_hook,
3292 .window_alignment = pnv_pci_window_alignment,
3293 .reset_secondary_bus = pnv_pci_reset_secondary_bus,
3294 .dma_set_mask = pnv_npu_dma_set_mask,
3295 .shutdown = pnv_pci_ioda_shutdown,
Alistair Popple5d2aa712015-12-17 13:43:13 +11003296};
3297
Anton Blancharde51df2c2014-08-20 08:55:18 +10003298static void __init pnv_pci_init_ioda_phb(struct device_node *np,
3299 u64 hub_id, int ioda_type)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003300{
3301 struct pci_controller *hose;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003302 struct pnv_phb *phb;
Gavin Shan2b923ed2016-05-05 12:04:16 +10003303 unsigned long size, m64map_off, m32map_off, pemap_off;
3304 unsigned long iomap_off = 0, dma32map_off = 0;
Alistair Popplec681b932013-09-23 12:04:57 +10003305 const __be64 *prop64;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10003306 const __be32 *prop32;
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003307 int len;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003308 unsigned int segno;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003309 u64 phb_id;
3310 void *aux;
3311 long rc;
3312
Gavin Shan58d714e2013-07-31 16:47:00 +08003313 pr_info("Initializing IODA%d OPAL PHB %s\n", ioda_type, np->full_name);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003314
3315 prop64 = of_get_property(np, "ibm,opal-phbid", NULL);
3316 if (!prop64) {
3317 pr_err(" Missing \"ibm,opal-phbid\" property !\n");
3318 return;
3319 }
3320 phb_id = be64_to_cpup(prop64);
3321 pr_debug(" PHB-ID : 0x%016llx\n", phb_id);
3322
Michael Ellermane39f223f2014-11-18 16:47:35 +11003323 phb = memblock_virt_alloc(sizeof(struct pnv_phb), 0);
Gavin Shan58d714e2013-07-31 16:47:00 +08003324
3325 /* Allocate PCI controller */
Gavin Shan58d714e2013-07-31 16:47:00 +08003326 phb->hose = hose = pcibios_alloc_controller(np);
3327 if (!phb->hose) {
3328 pr_err(" Can't allocate PCI controller for %s\n",
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003329 np->full_name);
Michael Ellermane39f223f2014-11-18 16:47:35 +11003330 memblock_free(__pa(phb), sizeof(struct pnv_phb));
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003331 return;
3332 }
3333
3334 spin_lock_init(&phb->lock);
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003335 prop32 = of_get_property(np, "bus-range", &len);
3336 if (prop32 && len == 8) {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10003337 hose->first_busno = be32_to_cpu(prop32[0]);
3338 hose->last_busno = be32_to_cpu(prop32[1]);
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003339 } else {
3340 pr_warn(" Broken <bus-range> on %s\n", np->full_name);
3341 hose->first_busno = 0;
3342 hose->last_busno = 0xff;
3343 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003344 hose->private_data = phb;
Gavin Shane9cc17d2013-06-20 13:21:14 +08003345 phb->hub_id = hub_id;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003346 phb->opal_id = phb_id;
Gavin Shanaa0c0332013-04-25 19:20:57 +00003347 phb->type = ioda_type;
Wei Yang781a8682015-03-25 16:23:57 +08003348 mutex_init(&phb->ioda.pe_alloc_mutex);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003349
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +00003350 /* Detect specific models for error handling */
3351 if (of_device_is_compatible(np, "ibm,p7ioc-pciex"))
3352 phb->model = PNV_PHB_MODEL_P7IOC;
Benjamin Herrenschmidtf3d40c22013-05-04 14:24:32 +00003353 else if (of_device_is_compatible(np, "ibm,power8-pciex"))
Gavin Shanaa0c0332013-04-25 19:20:57 +00003354 phb->model = PNV_PHB_MODEL_PHB3;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003355 else if (of_device_is_compatible(np, "ibm,power8-npu-pciex"))
3356 phb->model = PNV_PHB_MODEL_NPU;
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +00003357 else
3358 phb->model = PNV_PHB_MODEL_UNKNOWN;
3359
Gavin Shanaa0c0332013-04-25 19:20:57 +00003360 /* Parse 32-bit and IO ranges (if any) */
Gavin Shan2f1ec022013-07-31 16:47:02 +08003361 pci_process_bridge_OF_ranges(hose, np, !hose->global_number);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003362
Gavin Shanaa0c0332013-04-25 19:20:57 +00003363 /* Get registers */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003364 phb->regs = of_iomap(np, 0);
3365 if (phb->regs == NULL)
3366 pr_err(" Failed to map registers !\n");
3367
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003368 /* Initialize more IODA stuff */
Gavin Shan92b8f132016-05-03 15:41:24 +10003369 phb->ioda.total_pe_num = 1;
Gavin Shanaa0c0332013-04-25 19:20:57 +00003370 prop32 = of_get_property(np, "ibm,opal-num-pes", NULL);
Gavin Shan36954dc2013-11-04 16:32:47 +08003371 if (prop32)
Gavin Shan92b8f132016-05-03 15:41:24 +10003372 phb->ioda.total_pe_num = be32_to_cpup(prop32);
Gavin Shan36954dc2013-11-04 16:32:47 +08003373 prop32 = of_get_property(np, "ibm,opal-reserved-pe", NULL);
3374 if (prop32)
Gavin Shan92b8f132016-05-03 15:41:24 +10003375 phb->ioda.reserved_pe_idx = be32_to_cpup(prop32);
Guo Chao262af552014-07-21 14:42:30 +10003376
3377 /* Parse 64-bit MMIO range */
3378 pnv_ioda_parse_m64_window(phb);
3379
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003380 phb->ioda.m32_size = resource_size(&hose->mem_resources[0]);
Gavin Shanaa0c0332013-04-25 19:20:57 +00003381 /* FW Has already off top 64k of M32 space (MSI space) */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003382 phb->ioda.m32_size += 0x10000;
3383
Gavin Shan92b8f132016-05-03 15:41:24 +10003384 phb->ioda.m32_segsize = phb->ioda.m32_size / phb->ioda.total_pe_num;
Benjamin Herrenschmidt3fd47f02013-05-06 13:40:40 +10003385 phb->ioda.m32_pci_base = hose->mem_resources[0].start - hose->mem_offset[0];
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003386 phb->ioda.io_size = hose->pci_io_size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003387 phb->ioda.io_segsize = phb->ioda.io_size / phb->ioda.total_pe_num;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003388 phb->ioda.io_pci_base = 0; /* XXX calculate this ? */
3389
Gavin Shan2b923ed2016-05-05 12:04:16 +10003390 /* Calculate how many 32-bit TCE segments we have */
3391 phb->ioda.dma32_count = phb->ioda.m32_pci_base /
3392 PNV_IODA1_DMA32_SEGSIZE;
3393
Gavin Shanc35d2a82013-07-31 16:47:04 +08003394 /* Allocate aux data & arrays. We don't have IO ports on PHB3 */
Gavin Shan92b8f132016-05-03 15:41:24 +10003395 size = _ALIGN_UP(phb->ioda.total_pe_num / 8, sizeof(unsigned long));
Gavin Shan93289d82016-05-03 15:41:29 +10003396 m64map_off = size;
3397 size += phb->ioda.total_pe_num * sizeof(phb->ioda.m64_segmap[0]);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003398 m32map_off = size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003399 size += phb->ioda.total_pe_num * sizeof(phb->ioda.m32_segmap[0]);
Gavin Shanc35d2a82013-07-31 16:47:04 +08003400 if (phb->type == PNV_PHB_IODA1) {
3401 iomap_off = size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003402 size += phb->ioda.total_pe_num * sizeof(phb->ioda.io_segmap[0]);
Gavin Shan2b923ed2016-05-05 12:04:16 +10003403 dma32map_off = size;
3404 size += phb->ioda.dma32_count *
3405 sizeof(phb->ioda.dma32_segmap[0]);
Gavin Shanc35d2a82013-07-31 16:47:04 +08003406 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003407 pemap_off = size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003408 size += phb->ioda.total_pe_num * sizeof(struct pnv_ioda_pe);
Michael Ellermane39f223f2014-11-18 16:47:35 +11003409 aux = memblock_virt_alloc(size, 0);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003410 phb->ioda.pe_alloc = aux;
Gavin Shan93289d82016-05-03 15:41:29 +10003411 phb->ioda.m64_segmap = aux + m64map_off;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003412 phb->ioda.m32_segmap = aux + m32map_off;
Gavin Shan93289d82016-05-03 15:41:29 +10003413 for (segno = 0; segno < phb->ioda.total_pe_num; segno++) {
3414 phb->ioda.m64_segmap[segno] = IODA_INVALID_PE;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003415 phb->ioda.m32_segmap[segno] = IODA_INVALID_PE;
Gavin Shan93289d82016-05-03 15:41:29 +10003416 }
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003417 if (phb->type == PNV_PHB_IODA1) {
Gavin Shanc35d2a82013-07-31 16:47:04 +08003418 phb->ioda.io_segmap = aux + iomap_off;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003419 for (segno = 0; segno < phb->ioda.total_pe_num; segno++)
3420 phb->ioda.io_segmap[segno] = IODA_INVALID_PE;
Gavin Shan2b923ed2016-05-05 12:04:16 +10003421
3422 phb->ioda.dma32_segmap = aux + dma32map_off;
3423 for (segno = 0; segno < phb->ioda.dma32_count; segno++)
3424 phb->ioda.dma32_segmap[segno] = IODA_INVALID_PE;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003425 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003426 phb->ioda.pe_array = aux + pemap_off;
Gavin Shan92b8f132016-05-03 15:41:24 +10003427 set_bit(phb->ioda.reserved_pe_idx, phb->ioda.pe_alloc);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003428
3429 INIT_LIST_HEAD(&phb->ioda.pe_list);
Wei Yang781a8682015-03-25 16:23:57 +08003430 mutex_init(&phb->ioda.pe_list_mutex);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003431
3432 /* Calculate how many 32-bit TCE segments we have */
Gavin Shan2b923ed2016-05-05 12:04:16 +10003433 phb->ioda.dma32_count = phb->ioda.m32_pci_base /
Gavin Shanacce9712016-05-03 15:41:33 +10003434 PNV_IODA1_DMA32_SEGSIZE;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003435
Gavin Shanaa0c0332013-04-25 19:20:57 +00003436#if 0 /* We should really do that ... */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003437 rc = opal_pci_set_phb_mem_window(opal->phb_id,
3438 window_type,
3439 window_num,
3440 starting_real_address,
3441 starting_pci_address,
3442 segment_size);
3443#endif
3444
Guo Chao262af552014-07-21 14:42:30 +10003445 pr_info(" %03d (%03d) PE's M32: 0x%x [segment=0x%x]\n",
Gavin Shan92b8f132016-05-03 15:41:24 +10003446 phb->ioda.total_pe_num, phb->ioda.reserved_pe_idx,
Guo Chao262af552014-07-21 14:42:30 +10003447 phb->ioda.m32_size, phb->ioda.m32_segsize);
3448 if (phb->ioda.m64_size)
3449 pr_info(" M64: 0x%lx [segment=0x%lx]\n",
3450 phb->ioda.m64_size, phb->ioda.m64_segsize);
3451 if (phb->ioda.io_size)
3452 pr_info(" IO: 0x%x [segment=0x%x]\n",
3453 phb->ioda.io_size, phb->ioda.io_segsize);
3454
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003455
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003456 phb->hose->ops = &pnv_pci_ops;
Gavin Shan49dec922014-07-21 14:42:33 +10003457 phb->get_pe_state = pnv_ioda_get_pe_state;
3458 phb->freeze_pe = pnv_ioda_freeze_pe;
3459 phb->unfreeze_pe = pnv_ioda_unfreeze_pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003460
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003461 /* Setup MSI support */
3462 pnv_pci_init_ioda_msis(phb);
3463
Gavin Shanc40a4212012-08-20 03:49:20 +00003464 /*
3465 * We pass the PCI probe flag PCI_REASSIGN_ALL_RSRC here
3466 * to let the PCI core do resource assignment. It's supposed
3467 * that the PCI core will do correct I/O and MMIO alignment
3468 * for the P2P bridge bars so that each PCI bus (excluding
3469 * the child P2P bridges) can form individual PE.
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003470 */
Gavin Shanfb446ad2012-08-20 03:49:14 +00003471 ppc_md.pcibios_fixup = pnv_pci_ioda_fixup;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003472
Alexey Kardashevskiyf9f83452016-04-29 18:55:20 +10003473 if (phb->type == PNV_PHB_NPU) {
Alistair Popple5d2aa712015-12-17 13:43:13 +11003474 hose->controller_ops = pnv_npu_ioda_controller_ops;
Alexey Kardashevskiyf9f83452016-04-29 18:55:20 +10003475 } else {
3476 phb->dma_dev_setup = pnv_pci_ioda_dma_dev_setup;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003477 hose->controller_ops = pnv_pci_ioda_controller_ops;
Alexey Kardashevskiyf9f83452016-04-29 18:55:20 +10003478 }
Michael Ellermanad30cb92015-04-14 09:29:23 +10003479
Wei Yang6e628c72015-03-25 16:23:55 +08003480#ifdef CONFIG_PCI_IOV
3481 ppc_md.pcibios_fixup_sriov = pnv_pci_ioda_fixup_iov_resources;
Wei Yang5350ab32015-03-25 16:23:56 +08003482 ppc_md.pcibios_iov_resource_alignment = pnv_pci_iov_resource_alignment;
Michael Ellermanad30cb92015-04-14 09:29:23 +10003483#endif
3484
Gavin Shanc40a4212012-08-20 03:49:20 +00003485 pci_add_flags(PCI_REASSIGN_ALL_RSRC);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003486
3487 /* Reset IODA tables to a clean state */
Gavin Shand1a85ee2014-09-30 12:39:05 +10003488 rc = opal_pci_reset(phb_id, OPAL_RESET_PCI_IODA_TABLE, OPAL_ASSERT_RESET);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003489 if (rc)
Benjamin Herrenschmidtf11fe552011-11-29 18:22:50 +00003490 pr_warning(" OPAL Error %ld performing IODA table reset !\n", rc);
Gavin Shan361f2a22014-04-24 18:00:25 +10003491
3492 /* If we're running in kdump kerenl, the previous kerenl never
3493 * shutdown PCI devices correctly. We already got IODA table
3494 * cleaned out. So we have to issue PHB reset to stop all PCI
3495 * transactions from previous kerenl.
3496 */
3497 if (is_kdump_kernel()) {
3498 pr_info(" Issue PHB reset ...\n");
Gavin Shancadf3642015-02-16 14:45:47 +11003499 pnv_eeh_phb_reset(hose, EEH_RESET_FUNDAMENTAL);
3500 pnv_eeh_phb_reset(hose, EEH_RESET_DEACTIVATE);
Gavin Shan361f2a22014-04-24 18:00:25 +10003501 }
Guo Chao262af552014-07-21 14:42:30 +10003502
Gavin Shan9e9e8932014-11-12 13:36:05 +11003503 /* Remove M64 resource if we can't configure it successfully */
3504 if (!phb->init_m64 || phb->init_m64(phb))
Guo Chao262af552014-07-21 14:42:30 +10003505 hose->mem_resources[1].flags = 0;
Gavin Shanaa0c0332013-04-25 19:20:57 +00003506}
3507
Bjorn Helgaas67975002013-07-02 12:20:03 -06003508void __init pnv_pci_init_ioda2_phb(struct device_node *np)
Gavin Shanaa0c0332013-04-25 19:20:57 +00003509{
Gavin Shane9cc17d2013-06-20 13:21:14 +08003510 pnv_pci_init_ioda_phb(np, 0, PNV_PHB_IODA2);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003511}
3512
Alistair Popple5d2aa712015-12-17 13:43:13 +11003513void __init pnv_pci_init_npu_phb(struct device_node *np)
3514{
3515 pnv_pci_init_ioda_phb(np, 0, PNV_PHB_NPU);
3516}
3517
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003518void __init pnv_pci_init_ioda_hub(struct device_node *np)
3519{
3520 struct device_node *phbn;
Alistair Popplec681b932013-09-23 12:04:57 +10003521 const __be64 *prop64;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003522 u64 hub_id;
3523
3524 pr_info("Probing IODA IO-Hub %s\n", np->full_name);
3525
3526 prop64 = of_get_property(np, "ibm,opal-hubid", NULL);
3527 if (!prop64) {
3528 pr_err(" Missing \"ibm,opal-hubid\" property !\n");
3529 return;
3530 }
3531 hub_id = be64_to_cpup(prop64);
3532 pr_devel(" HUB-ID : 0x%016llx\n", hub_id);
3533
3534 /* Count child PHBs */
3535 for_each_child_of_node(np, phbn) {
3536 /* Look for IODA1 PHBs */
3537 if (of_device_is_compatible(phbn, "ibm,ioda-phb"))
Gavin Shane9cc17d2013-06-20 13:21:14 +08003538 pnv_pci_init_ioda_phb(phbn, hub_id, PNV_PHB_IODA1);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003539 }
3540}