blob: d7fbbf1851085e47574632397a69626dda87c729 [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
Joe Perches6d31c2f2014-09-21 10:55:06 -070060static void pe_level_printk(const struct pnv_ioda_pe *pe, const char *level,
61 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
91#define pe_err(pe, fmt, ...) \
92 pe_level_printk(pe, KERN_ERR, fmt, ##__VA_ARGS__)
93#define pe_warn(pe, fmt, ...) \
94 pe_level_printk(pe, KERN_WARNING, fmt, ##__VA_ARGS__)
95#define pe_info(pe, fmt, ...) \
96 pe_level_printk(pe, KERN_INFO, fmt, ##__VA_ARGS__)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000097
Thadeu Lima de Souza Cascardo4e287842014-10-23 19:19:35 -020098static bool pnv_iommu_bypass_disabled __read_mostly;
99
100static int __init iommu_setup(char *str)
101{
102 if (!str)
103 return -EINVAL;
104
105 while (*str) {
106 if (!strncmp(str, "nobypass", 8)) {
107 pnv_iommu_bypass_disabled = true;
108 pr_info("PowerNV: IOMMU bypass window disabled.\n");
109 break;
110 }
111 str += strcspn(str, ",");
112 if (*str == ',')
113 str++;
114 }
115
116 return 0;
117}
118early_param("iommu", iommu_setup);
119
Guo Chao262af552014-07-21 14:42:30 +1000120static inline bool pnv_pci_is_mem_pref_64(unsigned long flags)
121{
122 return ((flags & (IORESOURCE_MEM_64 | IORESOURCE_PREFETCH)) ==
123 (IORESOURCE_MEM_64 | IORESOURCE_PREFETCH));
124}
125
Gavin Shan1e916772016-05-03 15:41:36 +1000126static struct pnv_ioda_pe *pnv_ioda_init_pe(struct pnv_phb *phb, int pe_no)
127{
128 phb->ioda.pe_array[pe_no].phb = phb;
129 phb->ioda.pe_array[pe_no].pe_number = pe_no;
130
131 return &phb->ioda.pe_array[pe_no];
132}
133
Gavin Shan4b82ab12014-11-12 13:36:07 +1100134static void pnv_ioda_reserve_pe(struct pnv_phb *phb, int pe_no)
135{
Gavin Shan92b8f132016-05-03 15:41:24 +1000136 if (!(pe_no >= 0 && pe_no < phb->ioda.total_pe_num)) {
Gavin Shan4b82ab12014-11-12 13:36:07 +1100137 pr_warn("%s: Invalid PE %d on PHB#%x\n",
138 __func__, pe_no, phb->hose->global_number);
139 return;
140 }
141
Gavin Shane9dc4d72015-06-19 12:26:16 +1000142 if (test_and_set_bit(pe_no, phb->ioda.pe_alloc))
143 pr_debug("%s: PE %d was reserved on PHB#%x\n",
144 __func__, pe_no, phb->hose->global_number);
Gavin Shan4b82ab12014-11-12 13:36:07 +1100145
Gavin Shan1e916772016-05-03 15:41:36 +1000146 pnv_ioda_init_pe(phb, pe_no);
Gavin Shan4b82ab12014-11-12 13:36:07 +1100147}
148
Gavin Shan1e916772016-05-03 15:41:36 +1000149static struct pnv_ioda_pe *pnv_ioda_alloc_pe(struct pnv_phb *phb)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000150{
151 unsigned long pe;
152
153 do {
154 pe = find_next_zero_bit(phb->ioda.pe_alloc,
Gavin Shan92b8f132016-05-03 15:41:24 +1000155 phb->ioda.total_pe_num, 0);
156 if (pe >= phb->ioda.total_pe_num)
Gavin Shan1e916772016-05-03 15:41:36 +1000157 return NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000158 } while(test_and_set_bit(pe, phb->ioda.pe_alloc));
159
Gavin Shan1e916772016-05-03 15:41:36 +1000160 return pnv_ioda_init_pe(phb, pe);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000161}
162
Gavin Shan1e916772016-05-03 15:41:36 +1000163static void pnv_ioda_free_pe(struct pnv_ioda_pe *pe)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000164{
Gavin Shan1e916772016-05-03 15:41:36 +1000165 struct pnv_phb *phb = pe->phb;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000166
Gavin Shan1e916772016-05-03 15:41:36 +1000167 WARN_ON(pe->pdev);
168
169 memset(pe, 0, sizeof(struct pnv_ioda_pe));
170 clear_bit(pe->pe_number, phb->ioda.pe_alloc);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000171}
172
Guo Chao262af552014-07-21 14:42:30 +1000173/* The default M64 BAR is shared by all PEs */
174static int pnv_ioda2_init_m64(struct pnv_phb *phb)
175{
176 const char *desc;
177 struct resource *r;
178 s64 rc;
179
180 /* Configure the default M64 BAR */
181 rc = opal_pci_set_phb_mem_window(phb->opal_id,
182 OPAL_M64_WINDOW_TYPE,
183 phb->ioda.m64_bar_idx,
184 phb->ioda.m64_base,
185 0, /* unused */
186 phb->ioda.m64_size);
187 if (rc != OPAL_SUCCESS) {
188 desc = "configuring";
189 goto fail;
190 }
191
192 /* Enable the default M64 BAR */
193 rc = opal_pci_phb_mmio_enable(phb->opal_id,
194 OPAL_M64_WINDOW_TYPE,
195 phb->ioda.m64_bar_idx,
196 OPAL_ENABLE_M64_SPLIT);
197 if (rc != OPAL_SUCCESS) {
198 desc = "enabling";
199 goto fail;
200 }
201
202 /* Mark the M64 BAR assigned */
203 set_bit(phb->ioda.m64_bar_idx, &phb->ioda.m64_bar_alloc);
204
205 /*
206 * Strip off the segment used by the reserved PE, which is
207 * expected to be 0 or last one of PE capabicity.
208 */
209 r = &phb->hose->mem_resources[1];
Gavin Shan92b8f132016-05-03 15:41:24 +1000210 if (phb->ioda.reserved_pe_idx == 0)
Guo Chao262af552014-07-21 14:42:30 +1000211 r->start += phb->ioda.m64_segsize;
Gavin Shan92b8f132016-05-03 15:41:24 +1000212 else if (phb->ioda.reserved_pe_idx == (phb->ioda.total_pe_num - 1))
Guo Chao262af552014-07-21 14:42:30 +1000213 r->end -= phb->ioda.m64_segsize;
214 else
215 pr_warn(" Cannot strip M64 segment for reserved PE#%d\n",
Gavin Shan92b8f132016-05-03 15:41:24 +1000216 phb->ioda.reserved_pe_idx);
Guo Chao262af552014-07-21 14:42:30 +1000217
218 return 0;
219
220fail:
221 pr_warn(" Failure %lld %s M64 BAR#%d\n",
222 rc, desc, phb->ioda.m64_bar_idx);
223 opal_pci_phb_mmio_enable(phb->opal_id,
224 OPAL_M64_WINDOW_TYPE,
225 phb->ioda.m64_bar_idx,
226 OPAL_DISABLE_M64);
227 return -EIO;
228}
229
Gavin Shanc4306702016-05-03 15:41:30 +1000230static void pnv_ioda_reserve_dev_m64_pe(struct pci_dev *pdev,
Gavin Shan96a2f922015-06-19 12:26:17 +1000231 unsigned long *pe_bitmap)
Guo Chao262af552014-07-21 14:42:30 +1000232{
Gavin Shan96a2f922015-06-19 12:26:17 +1000233 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
234 struct pnv_phb *phb = hose->private_data;
Guo Chao262af552014-07-21 14:42:30 +1000235 struct resource *r;
Gavin Shan96a2f922015-06-19 12:26:17 +1000236 resource_size_t base, sgsz, start, end;
237 int segno, i;
Guo Chao262af552014-07-21 14:42:30 +1000238
Gavin Shan96a2f922015-06-19 12:26:17 +1000239 base = phb->ioda.m64_base;
240 sgsz = phb->ioda.m64_segsize;
241 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
242 r = &pdev->resource[i];
243 if (!r->parent || !pnv_pci_is_mem_pref_64(r->flags))
244 continue;
Guo Chao262af552014-07-21 14:42:30 +1000245
Gavin Shan96a2f922015-06-19 12:26:17 +1000246 start = _ALIGN_DOWN(r->start - base, sgsz);
247 end = _ALIGN_UP(r->end - base, sgsz);
248 for (segno = start / sgsz; segno < end / sgsz; segno++) {
249 if (pe_bitmap)
250 set_bit(segno, pe_bitmap);
251 else
252 pnv_ioda_reserve_pe(phb, segno);
Guo Chao262af552014-07-21 14:42:30 +1000253 }
254 }
255}
256
Gavin Shan99451552016-05-05 12:02:13 +1000257static int pnv_ioda1_init_m64(struct pnv_phb *phb)
258{
259 struct resource *r;
260 int index;
261
262 /*
263 * There are 16 M64 BARs, each of which has 8 segments. So
264 * there are as many M64 segments as the maximum number of
265 * PEs, which is 128.
266 */
267 for (index = 0; index < PNV_IODA1_M64_NUM; index++) {
268 unsigned long base, segsz = phb->ioda.m64_segsize;
269 int64_t rc;
270
271 base = phb->ioda.m64_base +
272 index * PNV_IODA1_M64_SEGS * segsz;
273 rc = opal_pci_set_phb_mem_window(phb->opal_id,
274 OPAL_M64_WINDOW_TYPE, index, base, 0,
275 PNV_IODA1_M64_SEGS * segsz);
276 if (rc != OPAL_SUCCESS) {
277 pr_warn(" Error %lld setting M64 PHB#%d-BAR#%d\n",
278 rc, phb->hose->global_number, index);
279 goto fail;
280 }
281
282 rc = opal_pci_phb_mmio_enable(phb->opal_id,
283 OPAL_M64_WINDOW_TYPE, index,
284 OPAL_ENABLE_M64_SPLIT);
285 if (rc != OPAL_SUCCESS) {
286 pr_warn(" Error %lld enabling M64 PHB#%d-BAR#%d\n",
287 rc, phb->hose->global_number, index);
288 goto fail;
289 }
290 }
291
292 /*
293 * Exclude the segment used by the reserved PE, which
294 * is expected to be 0 or last supported PE#.
295 */
296 r = &phb->hose->mem_resources[1];
297 if (phb->ioda.reserved_pe_idx == 0)
298 r->start += phb->ioda.m64_segsize;
299 else if (phb->ioda.reserved_pe_idx == (phb->ioda.total_pe_num - 1))
300 r->end -= phb->ioda.m64_segsize;
301 else
302 WARN(1, "Wrong reserved PE#%d on PHB#%d\n",
303 phb->ioda.reserved_pe_idx, phb->hose->global_number);
304
305 return 0;
306
307fail:
308 for ( ; index >= 0; index--)
309 opal_pci_phb_mmio_enable(phb->opal_id,
310 OPAL_M64_WINDOW_TYPE, index, OPAL_DISABLE_M64);
311
312 return -EIO;
313}
314
Gavin Shanc4306702016-05-03 15:41:30 +1000315static void pnv_ioda_reserve_m64_pe(struct pci_bus *bus,
316 unsigned long *pe_bitmap,
317 bool all)
Guo Chao262af552014-07-21 14:42:30 +1000318{
Guo Chao262af552014-07-21 14:42:30 +1000319 struct pci_dev *pdev;
Gavin Shan96a2f922015-06-19 12:26:17 +1000320
321 list_for_each_entry(pdev, &bus->devices, bus_list) {
Gavin Shanc4306702016-05-03 15:41:30 +1000322 pnv_ioda_reserve_dev_m64_pe(pdev, pe_bitmap);
Gavin Shan96a2f922015-06-19 12:26:17 +1000323
324 if (all && pdev->subordinate)
Gavin Shanc4306702016-05-03 15:41:30 +1000325 pnv_ioda_reserve_m64_pe(pdev->subordinate,
326 pe_bitmap, all);
Gavin Shan96a2f922015-06-19 12:26:17 +1000327 }
328}
329
Gavin Shan1e916772016-05-03 15:41:36 +1000330static struct pnv_ioda_pe *pnv_ioda_pick_m64_pe(struct pci_bus *bus, bool all)
Guo Chao262af552014-07-21 14:42:30 +1000331{
Gavin Shan26ba2482015-06-19 12:26:19 +1000332 struct pci_controller *hose = pci_bus_to_host(bus);
333 struct pnv_phb *phb = hose->private_data;
Guo Chao262af552014-07-21 14:42:30 +1000334 struct pnv_ioda_pe *master_pe, *pe;
335 unsigned long size, *pe_alloc;
Gavin Shan26ba2482015-06-19 12:26:19 +1000336 int i;
Guo Chao262af552014-07-21 14:42:30 +1000337
338 /* Root bus shouldn't use M64 */
339 if (pci_is_root_bus(bus))
Gavin Shan1e916772016-05-03 15:41:36 +1000340 return NULL;
Guo Chao262af552014-07-21 14:42:30 +1000341
Guo Chao262af552014-07-21 14:42:30 +1000342 /* Allocate bitmap */
Gavin Shan92b8f132016-05-03 15:41:24 +1000343 size = _ALIGN_UP(phb->ioda.total_pe_num / 8, sizeof(unsigned long));
Guo Chao262af552014-07-21 14:42:30 +1000344 pe_alloc = kzalloc(size, GFP_KERNEL);
345 if (!pe_alloc) {
346 pr_warn("%s: Out of memory !\n",
347 __func__);
Gavin Shan1e916772016-05-03 15:41:36 +1000348 return NULL;
Guo Chao262af552014-07-21 14:42:30 +1000349 }
350
Gavin Shan26ba2482015-06-19 12:26:19 +1000351 /* Figure out reserved PE numbers by the PE */
Gavin Shanc4306702016-05-03 15:41:30 +1000352 pnv_ioda_reserve_m64_pe(bus, pe_alloc, all);
Guo Chao262af552014-07-21 14:42:30 +1000353
354 /*
355 * the current bus might not own M64 window and that's all
356 * contributed by its child buses. For the case, we needn't
357 * pick M64 dependent PE#.
358 */
Gavin Shan92b8f132016-05-03 15:41:24 +1000359 if (bitmap_empty(pe_alloc, phb->ioda.total_pe_num)) {
Guo Chao262af552014-07-21 14:42:30 +1000360 kfree(pe_alloc);
Gavin Shan1e916772016-05-03 15:41:36 +1000361 return NULL;
Guo Chao262af552014-07-21 14:42:30 +1000362 }
363
364 /*
365 * Figure out the master PE and put all slave PEs to master
366 * PE's list to form compound PE.
367 */
Guo Chao262af552014-07-21 14:42:30 +1000368 master_pe = NULL;
369 i = -1;
Gavin Shan92b8f132016-05-03 15:41:24 +1000370 while ((i = find_next_bit(pe_alloc, phb->ioda.total_pe_num, i + 1)) <
371 phb->ioda.total_pe_num) {
Guo Chao262af552014-07-21 14:42:30 +1000372 pe = &phb->ioda.pe_array[i];
Guo Chao262af552014-07-21 14:42:30 +1000373
Gavin Shan93289d82016-05-03 15:41:29 +1000374 phb->ioda.m64_segmap[pe->pe_number] = pe->pe_number;
Guo Chao262af552014-07-21 14:42:30 +1000375 if (!master_pe) {
376 pe->flags |= PNV_IODA_PE_MASTER;
377 INIT_LIST_HEAD(&pe->slaves);
378 master_pe = pe;
379 } else {
380 pe->flags |= PNV_IODA_PE_SLAVE;
381 pe->master = master_pe;
382 list_add_tail(&pe->list, &master_pe->slaves);
383 }
Gavin Shan99451552016-05-05 12:02:13 +1000384
385 /*
386 * P7IOC supports M64DT, which helps mapping M64 segment
387 * to one particular PE#. However, PHB3 has fixed mapping
388 * between M64 segment and PE#. In order to have same logic
389 * for P7IOC and PHB3, we enforce fixed mapping between M64
390 * segment and PE# on P7IOC.
391 */
392 if (phb->type == PNV_PHB_IODA1) {
393 int64_t rc;
394
395 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
396 pe->pe_number, OPAL_M64_WINDOW_TYPE,
397 pe->pe_number / PNV_IODA1_M64_SEGS,
398 pe->pe_number % PNV_IODA1_M64_SEGS);
399 if (rc != OPAL_SUCCESS)
400 pr_warn("%s: Error %lld mapping M64 for PHB#%d-PE#%d\n",
401 __func__, rc, phb->hose->global_number,
402 pe->pe_number);
403 }
Guo Chao262af552014-07-21 14:42:30 +1000404 }
405
406 kfree(pe_alloc);
Gavin Shan1e916772016-05-03 15:41:36 +1000407 return master_pe;
Guo Chao262af552014-07-21 14:42:30 +1000408}
409
410static void __init pnv_ioda_parse_m64_window(struct pnv_phb *phb)
411{
412 struct pci_controller *hose = phb->hose;
413 struct device_node *dn = hose->dn;
414 struct resource *res;
415 const u32 *r;
416 u64 pci_addr;
417
Gavin Shan99451552016-05-05 12:02:13 +1000418 if (phb->type != PNV_PHB_IODA1 && phb->type != PNV_PHB_IODA2) {
Gavin Shan1665c4a2014-11-12 13:36:04 +1100419 pr_info(" Not support M64 window\n");
420 return;
421 }
422
Stewart Smithe4d54f72015-12-09 17:18:20 +1100423 if (!firmware_has_feature(FW_FEATURE_OPAL)) {
Guo Chao262af552014-07-21 14:42:30 +1000424 pr_info(" Firmware too old to support M64 window\n");
425 return;
426 }
427
428 r = of_get_property(dn, "ibm,opal-m64-window", NULL);
429 if (!r) {
430 pr_info(" No <ibm,opal-m64-window> on %s\n",
431 dn->full_name);
432 return;
433 }
434
Guo Chao262af552014-07-21 14:42:30 +1000435 res = &hose->mem_resources[1];
Gavin Shane80c4e72015-10-22 12:03:08 +1100436 res->name = dn->full_name;
Guo Chao262af552014-07-21 14:42:30 +1000437 res->start = of_translate_address(dn, r + 2);
438 res->end = res->start + of_read_number(r + 4, 2) - 1;
439 res->flags = (IORESOURCE_MEM | IORESOURCE_MEM_64 | IORESOURCE_PREFETCH);
440 pci_addr = of_read_number(r, 2);
441 hose->mem_offset[1] = res->start - pci_addr;
442
443 phb->ioda.m64_size = resource_size(res);
Gavin Shan92b8f132016-05-03 15:41:24 +1000444 phb->ioda.m64_segsize = phb->ioda.m64_size / phb->ioda.total_pe_num;
Guo Chao262af552014-07-21 14:42:30 +1000445 phb->ioda.m64_base = pci_addr;
446
Wei Yange9863e62014-12-12 12:39:37 +0800447 pr_info(" MEM64 0x%016llx..0x%016llx -> 0x%016llx\n",
448 res->start, res->end, pci_addr);
449
Guo Chao262af552014-07-21 14:42:30 +1000450 /* Use last M64 BAR to cover M64 window */
451 phb->ioda.m64_bar_idx = 15;
Gavin Shan99451552016-05-05 12:02:13 +1000452 if (phb->type == PNV_PHB_IODA1)
453 phb->init_m64 = pnv_ioda1_init_m64;
454 else
455 phb->init_m64 = pnv_ioda2_init_m64;
Gavin Shanc4306702016-05-03 15:41:30 +1000456 phb->reserve_m64_pe = pnv_ioda_reserve_m64_pe;
457 phb->pick_m64_pe = pnv_ioda_pick_m64_pe;
Guo Chao262af552014-07-21 14:42:30 +1000458}
459
Gavin Shan49dec922014-07-21 14:42:33 +1000460static void pnv_ioda_freeze_pe(struct pnv_phb *phb, int pe_no)
461{
462 struct pnv_ioda_pe *pe = &phb->ioda.pe_array[pe_no];
463 struct pnv_ioda_pe *slave;
464 s64 rc;
465
466 /* Fetch master PE */
467 if (pe->flags & PNV_IODA_PE_SLAVE) {
468 pe = pe->master;
Gavin Shanec8e4e92014-11-12 13:36:10 +1100469 if (WARN_ON(!pe || !(pe->flags & PNV_IODA_PE_MASTER)))
470 return;
471
Gavin Shan49dec922014-07-21 14:42:33 +1000472 pe_no = pe->pe_number;
473 }
474
475 /* Freeze master PE */
476 rc = opal_pci_eeh_freeze_set(phb->opal_id,
477 pe_no,
478 OPAL_EEH_ACTION_SET_FREEZE_ALL);
479 if (rc != OPAL_SUCCESS) {
480 pr_warn("%s: Failure %lld freezing PHB#%x-PE#%x\n",
481 __func__, rc, phb->hose->global_number, pe_no);
482 return;
483 }
484
485 /* Freeze slave PEs */
486 if (!(pe->flags & PNV_IODA_PE_MASTER))
487 return;
488
489 list_for_each_entry(slave, &pe->slaves, list) {
490 rc = opal_pci_eeh_freeze_set(phb->opal_id,
491 slave->pe_number,
492 OPAL_EEH_ACTION_SET_FREEZE_ALL);
493 if (rc != OPAL_SUCCESS)
494 pr_warn("%s: Failure %lld freezing PHB#%x-PE#%x\n",
495 __func__, rc, phb->hose->global_number,
496 slave->pe_number);
497 }
498}
499
Anton Blancharde51df2c2014-08-20 08:55:18 +1000500static int pnv_ioda_unfreeze_pe(struct pnv_phb *phb, int pe_no, int opt)
Gavin Shan49dec922014-07-21 14:42:33 +1000501{
502 struct pnv_ioda_pe *pe, *slave;
503 s64 rc;
504
505 /* Find master PE */
506 pe = &phb->ioda.pe_array[pe_no];
507 if (pe->flags & PNV_IODA_PE_SLAVE) {
508 pe = pe->master;
509 WARN_ON(!pe || !(pe->flags & PNV_IODA_PE_MASTER));
510 pe_no = pe->pe_number;
511 }
512
513 /* Clear frozen state for master PE */
514 rc = opal_pci_eeh_freeze_clear(phb->opal_id, pe_no, opt);
515 if (rc != OPAL_SUCCESS) {
516 pr_warn("%s: Failure %lld clear %d on PHB#%x-PE#%x\n",
517 __func__, rc, opt, phb->hose->global_number, pe_no);
518 return -EIO;
519 }
520
521 if (!(pe->flags & PNV_IODA_PE_MASTER))
522 return 0;
523
524 /* Clear frozen state for slave PEs */
525 list_for_each_entry(slave, &pe->slaves, list) {
526 rc = opal_pci_eeh_freeze_clear(phb->opal_id,
527 slave->pe_number,
528 opt);
529 if (rc != OPAL_SUCCESS) {
530 pr_warn("%s: Failure %lld clear %d on PHB#%x-PE#%x\n",
531 __func__, rc, opt, phb->hose->global_number,
532 slave->pe_number);
533 return -EIO;
534 }
535 }
536
537 return 0;
538}
539
540static int pnv_ioda_get_pe_state(struct pnv_phb *phb, int pe_no)
541{
542 struct pnv_ioda_pe *slave, *pe;
543 u8 fstate, state;
544 __be16 pcierr;
545 s64 rc;
546
547 /* Sanity check on PE number */
Gavin Shan92b8f132016-05-03 15:41:24 +1000548 if (pe_no < 0 || pe_no >= phb->ioda.total_pe_num)
Gavin Shan49dec922014-07-21 14:42:33 +1000549 return OPAL_EEH_STOPPED_PERM_UNAVAIL;
550
551 /*
552 * Fetch the master PE and the PE instance might be
553 * not initialized yet.
554 */
555 pe = &phb->ioda.pe_array[pe_no];
556 if (pe->flags & PNV_IODA_PE_SLAVE) {
557 pe = pe->master;
558 WARN_ON(!pe || !(pe->flags & PNV_IODA_PE_MASTER));
559 pe_no = pe->pe_number;
560 }
561
562 /* Check the master PE */
563 rc = opal_pci_eeh_freeze_status(phb->opal_id, pe_no,
564 &state, &pcierr, NULL);
565 if (rc != OPAL_SUCCESS) {
566 pr_warn("%s: Failure %lld getting "
567 "PHB#%x-PE#%x state\n",
568 __func__, rc,
569 phb->hose->global_number, pe_no);
570 return OPAL_EEH_STOPPED_TEMP_UNAVAIL;
571 }
572
573 /* Check the slave PE */
574 if (!(pe->flags & PNV_IODA_PE_MASTER))
575 return state;
576
577 list_for_each_entry(slave, &pe->slaves, list) {
578 rc = opal_pci_eeh_freeze_status(phb->opal_id,
579 slave->pe_number,
580 &fstate,
581 &pcierr,
582 NULL);
583 if (rc != OPAL_SUCCESS) {
584 pr_warn("%s: Failure %lld getting "
585 "PHB#%x-PE#%x state\n",
586 __func__, rc,
587 phb->hose->global_number, slave->pe_number);
588 return OPAL_EEH_STOPPED_TEMP_UNAVAIL;
589 }
590
591 /*
592 * Override the result based on the ascending
593 * priority.
594 */
595 if (fstate > state)
596 state = fstate;
597 }
598
599 return state;
600}
601
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000602/* Currently those 2 are only used when MSIs are enabled, this will change
603 * but in the meantime, we need to protect them to avoid warnings
604 */
605#ifdef CONFIG_PCI_MSI
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800606static struct pnv_ioda_pe *pnv_ioda_get_pe(struct pci_dev *dev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000607{
608 struct pci_controller *hose = pci_bus_to_host(dev->bus);
609 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000610 struct pci_dn *pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000611
612 if (!pdn)
613 return NULL;
614 if (pdn->pe_number == IODA_INVALID_PE)
615 return NULL;
616 return &phb->ioda.pe_array[pdn->pe_number];
617}
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000618#endif /* CONFIG_PCI_MSI */
619
Gavin Shanb131a842014-11-12 13:36:08 +1100620static int pnv_ioda_set_one_peltv(struct pnv_phb *phb,
621 struct pnv_ioda_pe *parent,
622 struct pnv_ioda_pe *child,
623 bool is_add)
624{
625 const char *desc = is_add ? "adding" : "removing";
626 uint8_t op = is_add ? OPAL_ADD_PE_TO_DOMAIN :
627 OPAL_REMOVE_PE_FROM_DOMAIN;
628 struct pnv_ioda_pe *slave;
629 long rc;
630
631 /* Parent PE affects child PE */
632 rc = opal_pci_set_peltv(phb->opal_id, parent->pe_number,
633 child->pe_number, op);
634 if (rc != OPAL_SUCCESS) {
635 pe_warn(child, "OPAL error %ld %s to parent PELTV\n",
636 rc, desc);
637 return -ENXIO;
638 }
639
640 if (!(child->flags & PNV_IODA_PE_MASTER))
641 return 0;
642
643 /* Compound case: parent PE affects slave PEs */
644 list_for_each_entry(slave, &child->slaves, list) {
645 rc = opal_pci_set_peltv(phb->opal_id, parent->pe_number,
646 slave->pe_number, op);
647 if (rc != OPAL_SUCCESS) {
648 pe_warn(slave, "OPAL error %ld %s to parent PELTV\n",
649 rc, desc);
650 return -ENXIO;
651 }
652 }
653
654 return 0;
655}
656
657static int pnv_ioda_set_peltv(struct pnv_phb *phb,
658 struct pnv_ioda_pe *pe,
659 bool is_add)
660{
661 struct pnv_ioda_pe *slave;
Wei Yang781a8682015-03-25 16:23:57 +0800662 struct pci_dev *pdev = NULL;
Gavin Shanb131a842014-11-12 13:36:08 +1100663 int ret;
664
665 /*
666 * Clear PE frozen state. If it's master PE, we need
667 * clear slave PE frozen state as well.
668 */
669 if (is_add) {
670 opal_pci_eeh_freeze_clear(phb->opal_id, pe->pe_number,
671 OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
672 if (pe->flags & PNV_IODA_PE_MASTER) {
673 list_for_each_entry(slave, &pe->slaves, list)
674 opal_pci_eeh_freeze_clear(phb->opal_id,
675 slave->pe_number,
676 OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
677 }
678 }
679
680 /*
681 * Associate PE in PELT. We need add the PE into the
682 * corresponding PELT-V as well. Otherwise, the error
683 * originated from the PE might contribute to other
684 * PEs.
685 */
686 ret = pnv_ioda_set_one_peltv(phb, pe, pe, is_add);
687 if (ret)
688 return ret;
689
690 /* For compound PEs, any one affects all of them */
691 if (pe->flags & PNV_IODA_PE_MASTER) {
692 list_for_each_entry(slave, &pe->slaves, list) {
693 ret = pnv_ioda_set_one_peltv(phb, slave, pe, is_add);
694 if (ret)
695 return ret;
696 }
697 }
698
699 if (pe->flags & (PNV_IODA_PE_BUS_ALL | PNV_IODA_PE_BUS))
700 pdev = pe->pbus->self;
Wei Yang781a8682015-03-25 16:23:57 +0800701 else if (pe->flags & PNV_IODA_PE_DEV)
Gavin Shanb131a842014-11-12 13:36:08 +1100702 pdev = pe->pdev->bus->self;
Wei Yang781a8682015-03-25 16:23:57 +0800703#ifdef CONFIG_PCI_IOV
704 else if (pe->flags & PNV_IODA_PE_VF)
Gavin Shan283e2d82015-06-22 13:45:47 +1000705 pdev = pe->parent_dev;
Wei Yang781a8682015-03-25 16:23:57 +0800706#endif /* CONFIG_PCI_IOV */
Gavin Shanb131a842014-11-12 13:36:08 +1100707 while (pdev) {
708 struct pci_dn *pdn = pci_get_pdn(pdev);
709 struct pnv_ioda_pe *parent;
710
711 if (pdn && pdn->pe_number != IODA_INVALID_PE) {
712 parent = &phb->ioda.pe_array[pdn->pe_number];
713 ret = pnv_ioda_set_one_peltv(phb, parent, pe, is_add);
714 if (ret)
715 return ret;
716 }
717
718 pdev = pdev->bus->self;
719 }
720
721 return 0;
722}
723
Wei Yang781a8682015-03-25 16:23:57 +0800724#ifdef CONFIG_PCI_IOV
725static int pnv_ioda_deconfigure_pe(struct pnv_phb *phb, struct pnv_ioda_pe *pe)
726{
727 struct pci_dev *parent;
728 uint8_t bcomp, dcomp, fcomp;
729 int64_t rc;
730 long rid_end, rid;
731
732 /* Currently, we just deconfigure VF PE. Bus PE will always there.*/
733 if (pe->pbus) {
734 int count;
735
736 dcomp = OPAL_IGNORE_RID_DEVICE_NUMBER;
737 fcomp = OPAL_IGNORE_RID_FUNCTION_NUMBER;
738 parent = pe->pbus->self;
739 if (pe->flags & PNV_IODA_PE_BUS_ALL)
740 count = pe->pbus->busn_res.end - pe->pbus->busn_res.start + 1;
741 else
742 count = 1;
743
744 switch(count) {
745 case 1: bcomp = OpalPciBusAll; break;
746 case 2: bcomp = OpalPciBus7Bits; break;
747 case 4: bcomp = OpalPciBus6Bits; break;
748 case 8: bcomp = OpalPciBus5Bits; break;
749 case 16: bcomp = OpalPciBus4Bits; break;
750 case 32: bcomp = OpalPciBus3Bits; break;
751 default:
752 dev_err(&pe->pbus->dev, "Number of subordinate buses %d unsupported\n",
753 count);
754 /* Do an exact match only */
755 bcomp = OpalPciBusAll;
756 }
757 rid_end = pe->rid + (count << 8);
758 } else {
759 if (pe->flags & PNV_IODA_PE_VF)
760 parent = pe->parent_dev;
761 else
762 parent = pe->pdev->bus->self;
763 bcomp = OpalPciBusAll;
764 dcomp = OPAL_COMPARE_RID_DEVICE_NUMBER;
765 fcomp = OPAL_COMPARE_RID_FUNCTION_NUMBER;
766 rid_end = pe->rid + 1;
767 }
768
769 /* Clear the reverse map */
770 for (rid = pe->rid; rid < rid_end; rid++)
771 phb->ioda.pe_rmap[rid] = 0;
772
773 /* Release from all parents PELT-V */
774 while (parent) {
775 struct pci_dn *pdn = pci_get_pdn(parent);
776 if (pdn && pdn->pe_number != IODA_INVALID_PE) {
777 rc = opal_pci_set_peltv(phb->opal_id, pdn->pe_number,
778 pe->pe_number, OPAL_REMOVE_PE_FROM_DOMAIN);
779 /* XXX What to do in case of error ? */
780 }
781 parent = parent->bus->self;
782 }
783
Gavin Shanf951e512015-06-23 17:01:13 +1000784 opal_pci_eeh_freeze_clear(phb->opal_id, pe->pe_number,
Wei Yang781a8682015-03-25 16:23:57 +0800785 OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
786
787 /* Disassociate PE in PELT */
788 rc = opal_pci_set_peltv(phb->opal_id, pe->pe_number,
789 pe->pe_number, OPAL_REMOVE_PE_FROM_DOMAIN);
790 if (rc)
791 pe_warn(pe, "OPAL error %ld remove self from PELTV\n", rc);
792 rc = opal_pci_set_pe(phb->opal_id, pe->pe_number, pe->rid,
793 bcomp, dcomp, fcomp, OPAL_UNMAP_PE);
794 if (rc)
795 pe_err(pe, "OPAL error %ld trying to setup PELT table\n", rc);
796
797 pe->pbus = NULL;
798 pe->pdev = NULL;
799 pe->parent_dev = NULL;
800
801 return 0;
802}
803#endif /* CONFIG_PCI_IOV */
804
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800805static int pnv_ioda_configure_pe(struct pnv_phb *phb, struct pnv_ioda_pe *pe)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000806{
807 struct pci_dev *parent;
808 uint8_t bcomp, dcomp, fcomp;
809 long rc, rid_end, rid;
810
811 /* Bus validation ? */
812 if (pe->pbus) {
813 int count;
814
815 dcomp = OPAL_IGNORE_RID_DEVICE_NUMBER;
816 fcomp = OPAL_IGNORE_RID_FUNCTION_NUMBER;
817 parent = pe->pbus->self;
Gavin Shanfb446ad2012-08-20 03:49:14 +0000818 if (pe->flags & PNV_IODA_PE_BUS_ALL)
819 count = pe->pbus->busn_res.end - pe->pbus->busn_res.start + 1;
820 else
821 count = 1;
822
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000823 switch(count) {
824 case 1: bcomp = OpalPciBusAll; break;
825 case 2: bcomp = OpalPciBus7Bits; break;
826 case 4: bcomp = OpalPciBus6Bits; break;
827 case 8: bcomp = OpalPciBus5Bits; break;
828 case 16: bcomp = OpalPciBus4Bits; break;
829 case 32: bcomp = OpalPciBus3Bits; break;
830 default:
Wei Yang781a8682015-03-25 16:23:57 +0800831 dev_err(&pe->pbus->dev, "Number of subordinate buses %d unsupported\n",
832 count);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000833 /* Do an exact match only */
834 bcomp = OpalPciBusAll;
835 }
836 rid_end = pe->rid + (count << 8);
837 } else {
Wei Yang781a8682015-03-25 16:23:57 +0800838#ifdef CONFIG_PCI_IOV
839 if (pe->flags & PNV_IODA_PE_VF)
840 parent = pe->parent_dev;
841 else
842#endif /* CONFIG_PCI_IOV */
843 parent = pe->pdev->bus->self;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000844 bcomp = OpalPciBusAll;
845 dcomp = OPAL_COMPARE_RID_DEVICE_NUMBER;
846 fcomp = OPAL_COMPARE_RID_FUNCTION_NUMBER;
847 rid_end = pe->rid + 1;
848 }
849
Gavin Shan631ad692013-11-04 16:32:46 +0800850 /*
851 * Associate PE in PELT. We need add the PE into the
852 * corresponding PELT-V as well. Otherwise, the error
853 * originated from the PE might contribute to other
854 * PEs.
855 */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000856 rc = opal_pci_set_pe(phb->opal_id, pe->pe_number, pe->rid,
857 bcomp, dcomp, fcomp, OPAL_MAP_PE);
858 if (rc) {
859 pe_err(pe, "OPAL error %ld trying to setup PELT table\n", rc);
860 return -ENXIO;
861 }
Gavin Shan631ad692013-11-04 16:32:46 +0800862
Alistair Popple5d2aa712015-12-17 13:43:13 +1100863 /*
864 * Configure PELTV. NPUs don't have a PELTV table so skip
865 * configuration on them.
866 */
867 if (phb->type != PNV_PHB_NPU)
868 pnv_ioda_set_peltv(phb, pe, true);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000869
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000870 /* Setup reverse map */
871 for (rid = pe->rid; rid < rid_end; rid++)
872 phb->ioda.pe_rmap[rid] = pe->pe_number;
873
874 /* Setup one MVTs on IODA1 */
Gavin Shan4773f762014-11-12 13:36:09 +1100875 if (phb->type != PNV_PHB_IODA1) {
876 pe->mve_number = 0;
877 goto out;
878 }
879
880 pe->mve_number = pe->pe_number;
881 rc = opal_pci_set_mve(phb->opal_id, pe->mve_number, pe->pe_number);
882 if (rc != OPAL_SUCCESS) {
883 pe_err(pe, "OPAL error %ld setting up MVE %d\n",
884 rc, pe->mve_number);
885 pe->mve_number = -1;
886 } else {
887 rc = opal_pci_set_mve_enable(phb->opal_id,
888 pe->mve_number, OPAL_ENABLE_MVE);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000889 if (rc) {
Gavin Shan4773f762014-11-12 13:36:09 +1100890 pe_err(pe, "OPAL error %ld enabling MVE %d\n",
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000891 rc, pe->mve_number);
892 pe->mve_number = -1;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000893 }
Gavin Shan4773f762014-11-12 13:36:09 +1100894 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000895
Gavin Shan4773f762014-11-12 13:36:09 +1100896out:
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000897 return 0;
898}
899
Wei Yang781a8682015-03-25 16:23:57 +0800900#ifdef CONFIG_PCI_IOV
901static int pnv_pci_vf_resource_shift(struct pci_dev *dev, int offset)
902{
903 struct pci_dn *pdn = pci_get_pdn(dev);
904 int i;
905 struct resource *res, res2;
906 resource_size_t size;
907 u16 num_vfs;
908
909 if (!dev->is_physfn)
910 return -EINVAL;
911
912 /*
913 * "offset" is in VFs. The M64 windows are sized so that when they
914 * are segmented, each segment is the same size as the IOV BAR.
915 * Each segment is in a separate PE, and the high order bits of the
916 * address are the PE number. Therefore, each VF's BAR is in a
917 * separate PE, and changing the IOV BAR start address changes the
918 * range of PEs the VFs are in.
919 */
920 num_vfs = pdn->num_vfs;
921 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
922 res = &dev->resource[i + PCI_IOV_RESOURCES];
923 if (!res->flags || !res->parent)
924 continue;
925
Wei Yang781a8682015-03-25 16:23:57 +0800926 /*
927 * The actual IOV BAR range is determined by the start address
928 * and the actual size for num_vfs VFs BAR. This check is to
929 * make sure that after shifting, the range will not overlap
930 * with another device.
931 */
932 size = pci_iov_resource_size(dev, i + PCI_IOV_RESOURCES);
933 res2.flags = res->flags;
934 res2.start = res->start + (size * offset);
935 res2.end = res2.start + (size * num_vfs) - 1;
936
937 if (res2.end > res->end) {
938 dev_err(&dev->dev, "VF BAR%d: %pR would extend past %pR (trying to enable %d VFs shifted by %d)\n",
939 i, &res2, res, num_vfs, offset);
940 return -EBUSY;
941 }
942 }
943
944 /*
945 * After doing so, there would be a "hole" in the /proc/iomem when
946 * offset is a positive value. It looks like the device return some
947 * mmio back to the system, which actually no one could use it.
948 */
949 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
950 res = &dev->resource[i + PCI_IOV_RESOURCES];
951 if (!res->flags || !res->parent)
952 continue;
953
Wei Yang781a8682015-03-25 16:23:57 +0800954 size = pci_iov_resource_size(dev, i + PCI_IOV_RESOURCES);
955 res2 = *res;
956 res->start += size * offset;
957
Wei Yang74703cc2015-07-20 18:14:58 +0800958 dev_info(&dev->dev, "VF BAR%d: %pR shifted to %pR (%sabling %d VFs shifted by %d)\n",
959 i, &res2, res, (offset > 0) ? "En" : "Dis",
960 num_vfs, offset);
Wei Yang781a8682015-03-25 16:23:57 +0800961 pci_update_resource(dev, i + PCI_IOV_RESOURCES);
962 }
963 return 0;
964}
965#endif /* CONFIG_PCI_IOV */
966
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800967static struct pnv_ioda_pe *pnv_ioda_setup_dev_PE(struct pci_dev *dev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000968{
969 struct pci_controller *hose = pci_bus_to_host(dev->bus);
970 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000971 struct pci_dn *pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000972 struct pnv_ioda_pe *pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000973
974 if (!pdn) {
975 pr_err("%s: Device tree node not associated properly\n",
976 pci_name(dev));
977 return NULL;
978 }
979 if (pdn->pe_number != IODA_INVALID_PE)
980 return NULL;
981
Gavin Shan1e916772016-05-03 15:41:36 +1000982 pe = pnv_ioda_alloc_pe(phb);
983 if (!pe) {
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000984 pr_warning("%s: Not enough PE# available, disabling device\n",
985 pci_name(dev));
986 return NULL;
987 }
988
989 /* NOTE: We get only one ref to the pci_dev for the pdn, not for the
990 * pointer in the PE data structure, both should be destroyed at the
991 * same time. However, this needs to be looked at more closely again
992 * once we actually start removing things (Hotplug, SR-IOV, ...)
993 *
994 * At some point we want to remove the PDN completely anyways
995 */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000996 pci_dev_get(dev);
997 pdn->pcidev = dev;
Gavin Shan1e916772016-05-03 15:41:36 +1000998 pdn->pe_number = pe->pe_number;
Alistair Popple5d2aa712015-12-17 13:43:13 +1100999 pe->flags = PNV_IODA_PE_DEV;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001000 pe->pdev = dev;
1001 pe->pbus = NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001002 pe->mve_number = -1;
1003 pe->rid = dev->bus->number << 8 | pdn->devfn;
1004
1005 pe_info(pe, "Associated device to PE\n");
1006
1007 if (pnv_ioda_configure_pe(phb, pe)) {
1008 /* XXX What do we do here ? */
Gavin Shan1e916772016-05-03 15:41:36 +10001009 pnv_ioda_free_pe(pe);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001010 pdn->pe_number = IODA_INVALID_PE;
1011 pe->pdev = NULL;
1012 pci_dev_put(dev);
1013 return NULL;
1014 }
1015
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001016 return pe;
1017}
1018
1019static void pnv_ioda_setup_same_PE(struct pci_bus *bus, struct pnv_ioda_pe *pe)
1020{
1021 struct pci_dev *dev;
1022
1023 list_for_each_entry(dev, &bus->devices, bus_list) {
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00001024 struct pci_dn *pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001025
1026 if (pdn == NULL) {
1027 pr_warn("%s: No device node associated with device !\n",
1028 pci_name(dev));
1029 continue;
1030 }
Alistair Popple94973b22015-12-17 13:43:11 +11001031 pdn->pcidev = dev;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001032 pdn->pe_number = pe->pe_number;
Gavin Shanfb446ad2012-08-20 03:49:14 +00001033 if ((pe->flags & PNV_IODA_PE_BUS_ALL) && dev->subordinate)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001034 pnv_ioda_setup_same_PE(dev->subordinate, pe);
1035 }
1036}
1037
Gavin Shanfb446ad2012-08-20 03:49:14 +00001038/*
1039 * There're 2 types of PCI bus sensitive PEs: One that is compromised of
1040 * single PCI bus. Another one that contains the primary PCI bus and its
1041 * subordinate PCI devices and buses. The second type of PE is normally
1042 * orgiriated by PCIe-to-PCI bridge or PLX switch downstream ports.
1043 */
Gavin Shan1e916772016-05-03 15:41:36 +10001044static struct pnv_ioda_pe *pnv_ioda_setup_bus_PE(struct pci_bus *bus, bool all)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001045{
Gavin Shanfb446ad2012-08-20 03:49:14 +00001046 struct pci_controller *hose = pci_bus_to_host(bus);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001047 struct pnv_phb *phb = hose->private_data;
Gavin Shan1e916772016-05-03 15:41:36 +10001048 struct pnv_ioda_pe *pe = NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001049
Guo Chao262af552014-07-21 14:42:30 +10001050 /* Check if PE is determined by M64 */
1051 if (phb->pick_m64_pe)
Gavin Shan1e916772016-05-03 15:41:36 +10001052 pe = phb->pick_m64_pe(bus, all);
Guo Chao262af552014-07-21 14:42:30 +10001053
1054 /* The PE number isn't pinned by M64 */
Gavin Shan1e916772016-05-03 15:41:36 +10001055 if (!pe)
1056 pe = pnv_ioda_alloc_pe(phb);
Guo Chao262af552014-07-21 14:42:30 +10001057
Gavin Shan1e916772016-05-03 15:41:36 +10001058 if (!pe) {
Gavin Shanfb446ad2012-08-20 03:49:14 +00001059 pr_warning("%s: Not enough PE# available for PCI bus %04x:%02x\n",
1060 __func__, pci_domain_nr(bus), bus->number);
Gavin Shan1e916772016-05-03 15:41:36 +10001061 return NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001062 }
1063
Guo Chao262af552014-07-21 14:42:30 +10001064 pe->flags |= (all ? PNV_IODA_PE_BUS_ALL : PNV_IODA_PE_BUS);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001065 pe->pbus = bus;
1066 pe->pdev = NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001067 pe->mve_number = -1;
Yinghai Lub918c622012-05-17 18:51:11 -07001068 pe->rid = bus->busn_res.start << 8;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001069
Gavin Shanfb446ad2012-08-20 03:49:14 +00001070 if (all)
1071 pe_info(pe, "Secondary bus %d..%d associated with PE#%d\n",
Gavin Shan1e916772016-05-03 15:41:36 +10001072 bus->busn_res.start, bus->busn_res.end, pe->pe_number);
Gavin Shanfb446ad2012-08-20 03:49:14 +00001073 else
1074 pe_info(pe, "Secondary bus %d associated with PE#%d\n",
Gavin Shan1e916772016-05-03 15:41:36 +10001075 bus->busn_res.start, pe->pe_number);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001076
1077 if (pnv_ioda_configure_pe(phb, pe)) {
1078 /* XXX What do we do here ? */
Gavin Shan1e916772016-05-03 15:41:36 +10001079 pnv_ioda_free_pe(pe);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001080 pe->pbus = NULL;
Gavin Shan1e916772016-05-03 15:41:36 +10001081 return NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001082 }
1083
1084 /* Associate it with all child devices */
1085 pnv_ioda_setup_same_PE(bus, pe);
1086
Gavin Shan7ebdf952012-08-20 03:49:15 +00001087 /* Put PE to the list */
1088 list_add_tail(&pe->list, &phb->ioda.pe_list);
Gavin Shan1e916772016-05-03 15:41:36 +10001089
1090 return pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001091}
1092
Alistair Poppleb5215492016-01-11 16:53:49 +11001093static struct pnv_ioda_pe *pnv_ioda_setup_npu_PE(struct pci_dev *npu_pdev)
Alistair Popple5d2aa712015-12-17 13:43:13 +11001094{
Alistair Poppleb5215492016-01-11 16:53:49 +11001095 int pe_num, found_pe = false, rc;
1096 long rid;
1097 struct pnv_ioda_pe *pe;
1098 struct pci_dev *gpu_pdev;
1099 struct pci_dn *npu_pdn;
1100 struct pci_controller *hose = pci_bus_to_host(npu_pdev->bus);
1101 struct pnv_phb *phb = hose->private_data;
1102
1103 /*
1104 * Due to a hardware errata PE#0 on the NPU is reserved for
1105 * error handling. This means we only have three PEs remaining
1106 * which need to be assigned to four links, implying some
1107 * links must share PEs.
1108 *
1109 * To achieve this we assign PEs such that NPUs linking the
1110 * same GPU get assigned the same PE.
1111 */
1112 gpu_pdev = pnv_pci_get_gpu_dev(npu_pdev);
Gavin Shan92b8f132016-05-03 15:41:24 +10001113 for (pe_num = 0; pe_num < phb->ioda.total_pe_num; pe_num++) {
Alistair Poppleb5215492016-01-11 16:53:49 +11001114 pe = &phb->ioda.pe_array[pe_num];
1115 if (!pe->pdev)
1116 continue;
1117
1118 if (pnv_pci_get_gpu_dev(pe->pdev) == gpu_pdev) {
1119 /*
1120 * This device has the same peer GPU so should
1121 * be assigned the same PE as the existing
1122 * peer NPU.
1123 */
1124 dev_info(&npu_pdev->dev,
1125 "Associating to existing PE %d\n", pe_num);
1126 pci_dev_get(npu_pdev);
1127 npu_pdn = pci_get_pdn(npu_pdev);
1128 rid = npu_pdev->bus->number << 8 | npu_pdn->devfn;
1129 npu_pdn->pcidev = npu_pdev;
1130 npu_pdn->pe_number = pe_num;
Alistair Poppleb5215492016-01-11 16:53:49 +11001131 phb->ioda.pe_rmap[rid] = pe->pe_number;
1132
1133 /* Map the PE to this link */
1134 rc = opal_pci_set_pe(phb->opal_id, pe_num, rid,
1135 OpalPciBusAll,
1136 OPAL_COMPARE_RID_DEVICE_NUMBER,
1137 OPAL_COMPARE_RID_FUNCTION_NUMBER,
1138 OPAL_MAP_PE);
1139 WARN_ON(rc != OPAL_SUCCESS);
1140 found_pe = true;
1141 break;
1142 }
1143 }
1144
1145 if (!found_pe)
1146 /*
1147 * Could not find an existing PE so allocate a new
1148 * one.
1149 */
1150 return pnv_ioda_setup_dev_PE(npu_pdev);
1151 else
1152 return pe;
1153}
1154
1155static void pnv_ioda_setup_npu_PEs(struct pci_bus *bus)
1156{
Alistair Popple5d2aa712015-12-17 13:43:13 +11001157 struct pci_dev *pdev;
1158
1159 list_for_each_entry(pdev, &bus->devices, bus_list)
Alistair Poppleb5215492016-01-11 16:53:49 +11001160 pnv_ioda_setup_npu_PE(pdev);
Alistair Popple5d2aa712015-12-17 13:43:13 +11001161}
1162
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08001163static void pnv_ioda_setup_PEs(struct pci_bus *bus)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001164{
1165 struct pci_dev *dev;
Gavin Shanfb446ad2012-08-20 03:49:14 +00001166
Gavin Shand1203852015-06-19 12:26:18 +10001167 pnv_ioda_setup_bus_PE(bus, false);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001168
1169 list_for_each_entry(dev, &bus->devices, bus_list) {
Gavin Shanfb446ad2012-08-20 03:49:14 +00001170 if (dev->subordinate) {
1171 if (pci_pcie_type(dev) == PCI_EXP_TYPE_PCI_BRIDGE)
Gavin Shand1203852015-06-19 12:26:18 +10001172 pnv_ioda_setup_bus_PE(dev->subordinate, true);
Gavin Shanfb446ad2012-08-20 03:49:14 +00001173 else
1174 pnv_ioda_setup_PEs(dev->subordinate);
1175 }
1176 }
1177}
1178
1179/*
1180 * Configure PEs so that the downstream PCI buses and devices
1181 * could have their associated PE#. Unfortunately, we didn't
1182 * figure out the way to identify the PLX bridge yet. So we
1183 * simply put the PCI bus and the subordinate behind the root
1184 * port to PE# here. The game rule here is expected to be changed
1185 * as soon as we can detected PLX bridge correctly.
1186 */
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08001187static void pnv_pci_ioda_setup_PEs(void)
Gavin Shanfb446ad2012-08-20 03:49:14 +00001188{
1189 struct pci_controller *hose, *tmp;
Guo Chao262af552014-07-21 14:42:30 +10001190 struct pnv_phb *phb;
Gavin Shanfb446ad2012-08-20 03:49:14 +00001191
1192 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
Guo Chao262af552014-07-21 14:42:30 +10001193 phb = hose->private_data;
1194
1195 /* M64 layout might affect PE allocation */
Gavin Shan5ef73562014-11-12 13:36:06 +11001196 if (phb->reserve_m64_pe)
Gavin Shan96a2f922015-06-19 12:26:17 +10001197 phb->reserve_m64_pe(hose->bus, NULL, true);
Guo Chao262af552014-07-21 14:42:30 +10001198
Alistair Popple5d2aa712015-12-17 13:43:13 +11001199 /*
1200 * On NPU PHB, we expect separate PEs for individual PCI
1201 * functions. PCI bus dependent PEs are required for the
1202 * remaining types of PHBs.
1203 */
Alistair Popple08f48f32016-01-11 16:53:50 +11001204 if (phb->type == PNV_PHB_NPU) {
1205 /* PE#0 is needed for error reporting */
1206 pnv_ioda_reserve_pe(phb, 0);
Alistair Poppleb5215492016-01-11 16:53:49 +11001207 pnv_ioda_setup_npu_PEs(hose->bus);
Alistair Popple08f48f32016-01-11 16:53:50 +11001208 } else
Alistair Popple5d2aa712015-12-17 13:43:13 +11001209 pnv_ioda_setup_PEs(hose->bus);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001210 }
1211}
1212
Gavin Shana8b2f822015-03-25 16:23:52 +08001213#ifdef CONFIG_PCI_IOV
Wei Yangee8222f2015-10-22 09:22:16 +08001214static int pnv_pci_vf_release_m64(struct pci_dev *pdev, u16 num_vfs)
Wei Yang781a8682015-03-25 16:23:57 +08001215{
1216 struct pci_bus *bus;
1217 struct pci_controller *hose;
1218 struct pnv_phb *phb;
1219 struct pci_dn *pdn;
Wei Yang02639b02015-03-25 16:23:59 +08001220 int i, j;
Wei Yangee8222f2015-10-22 09:22:16 +08001221 int m64_bars;
Wei Yang781a8682015-03-25 16:23:57 +08001222
1223 bus = pdev->bus;
1224 hose = pci_bus_to_host(bus);
1225 phb = hose->private_data;
1226 pdn = pci_get_pdn(pdev);
1227
Wei Yangee8222f2015-10-22 09:22:16 +08001228 if (pdn->m64_single_mode)
1229 m64_bars = num_vfs;
1230 else
1231 m64_bars = 1;
1232
Wei Yang02639b02015-03-25 16:23:59 +08001233 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++)
Wei Yangee8222f2015-10-22 09:22:16 +08001234 for (j = 0; j < m64_bars; j++) {
1235 if (pdn->m64_map[j][i] == IODA_INVALID_M64)
Wei Yang02639b02015-03-25 16:23:59 +08001236 continue;
1237 opal_pci_phb_mmio_enable(phb->opal_id,
Wei Yangee8222f2015-10-22 09:22:16 +08001238 OPAL_M64_WINDOW_TYPE, pdn->m64_map[j][i], 0);
1239 clear_bit(pdn->m64_map[j][i], &phb->ioda.m64_bar_alloc);
1240 pdn->m64_map[j][i] = IODA_INVALID_M64;
Wei Yang02639b02015-03-25 16:23:59 +08001241 }
Wei Yang781a8682015-03-25 16:23:57 +08001242
Wei Yangee8222f2015-10-22 09:22:16 +08001243 kfree(pdn->m64_map);
Wei Yang781a8682015-03-25 16:23:57 +08001244 return 0;
1245}
1246
Wei Yang02639b02015-03-25 16:23:59 +08001247static int pnv_pci_vf_assign_m64(struct pci_dev *pdev, u16 num_vfs)
Wei Yang781a8682015-03-25 16:23:57 +08001248{
1249 struct pci_bus *bus;
1250 struct pci_controller *hose;
1251 struct pnv_phb *phb;
1252 struct pci_dn *pdn;
1253 unsigned int win;
1254 struct resource *res;
Wei Yang02639b02015-03-25 16:23:59 +08001255 int i, j;
Wei Yang781a8682015-03-25 16:23:57 +08001256 int64_t rc;
Wei Yang02639b02015-03-25 16:23:59 +08001257 int total_vfs;
1258 resource_size_t size, start;
1259 int pe_num;
Wei Yangee8222f2015-10-22 09:22:16 +08001260 int m64_bars;
Wei Yang781a8682015-03-25 16:23:57 +08001261
1262 bus = pdev->bus;
1263 hose = pci_bus_to_host(bus);
1264 phb = hose->private_data;
1265 pdn = pci_get_pdn(pdev);
Wei Yang02639b02015-03-25 16:23:59 +08001266 total_vfs = pci_sriov_get_totalvfs(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001267
Wei Yangee8222f2015-10-22 09:22:16 +08001268 if (pdn->m64_single_mode)
1269 m64_bars = num_vfs;
1270 else
1271 m64_bars = 1;
Wei Yang02639b02015-03-25 16:23:59 +08001272
Wei Yangee8222f2015-10-22 09:22:16 +08001273 pdn->m64_map = kmalloc(sizeof(*pdn->m64_map) * m64_bars, GFP_KERNEL);
1274 if (!pdn->m64_map)
1275 return -ENOMEM;
1276 /* Initialize the m64_map to IODA_INVALID_M64 */
1277 for (i = 0; i < m64_bars ; i++)
1278 for (j = 0; j < PCI_SRIOV_NUM_BARS; j++)
1279 pdn->m64_map[i][j] = IODA_INVALID_M64;
1280
Wei Yang781a8682015-03-25 16:23:57 +08001281
1282 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
1283 res = &pdev->resource[i + PCI_IOV_RESOURCES];
1284 if (!res->flags || !res->parent)
1285 continue;
1286
Wei Yangee8222f2015-10-22 09:22:16 +08001287 for (j = 0; j < m64_bars; j++) {
Wei Yang02639b02015-03-25 16:23:59 +08001288 do {
1289 win = find_next_zero_bit(&phb->ioda.m64_bar_alloc,
1290 phb->ioda.m64_bar_idx + 1, 0);
Wei Yang781a8682015-03-25 16:23:57 +08001291
Wei Yang02639b02015-03-25 16:23:59 +08001292 if (win >= phb->ioda.m64_bar_idx + 1)
1293 goto m64_failed;
1294 } while (test_and_set_bit(win, &phb->ioda.m64_bar_alloc));
Wei Yang781a8682015-03-25 16:23:57 +08001295
Wei Yangee8222f2015-10-22 09:22:16 +08001296 pdn->m64_map[j][i] = win;
Wei Yang781a8682015-03-25 16:23:57 +08001297
Wei Yangee8222f2015-10-22 09:22:16 +08001298 if (pdn->m64_single_mode) {
Wei Yang02639b02015-03-25 16:23:59 +08001299 size = pci_iov_resource_size(pdev,
1300 PCI_IOV_RESOURCES + i);
Wei Yang02639b02015-03-25 16:23:59 +08001301 start = res->start + size * j;
1302 } else {
1303 size = resource_size(res);
1304 start = res->start;
1305 }
1306
1307 /* Map the M64 here */
Wei Yangee8222f2015-10-22 09:22:16 +08001308 if (pdn->m64_single_mode) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001309 pe_num = pdn->pe_num_map[j];
Wei Yang02639b02015-03-25 16:23:59 +08001310 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
1311 pe_num, OPAL_M64_WINDOW_TYPE,
Wei Yangee8222f2015-10-22 09:22:16 +08001312 pdn->m64_map[j][i], 0);
Wei Yang02639b02015-03-25 16:23:59 +08001313 }
1314
1315 rc = opal_pci_set_phb_mem_window(phb->opal_id,
Wei Yang781a8682015-03-25 16:23:57 +08001316 OPAL_M64_WINDOW_TYPE,
Wei Yangee8222f2015-10-22 09:22:16 +08001317 pdn->m64_map[j][i],
Wei Yang02639b02015-03-25 16:23:59 +08001318 start,
Wei Yang781a8682015-03-25 16:23:57 +08001319 0, /* unused */
Wei Yang02639b02015-03-25 16:23:59 +08001320 size);
Wei Yang781a8682015-03-25 16:23:57 +08001321
Wei Yang02639b02015-03-25 16:23:59 +08001322
1323 if (rc != OPAL_SUCCESS) {
1324 dev_err(&pdev->dev, "Failed to map M64 window #%d: %lld\n",
1325 win, rc);
1326 goto m64_failed;
1327 }
1328
Wei Yangee8222f2015-10-22 09:22:16 +08001329 if (pdn->m64_single_mode)
Wei Yang02639b02015-03-25 16:23:59 +08001330 rc = opal_pci_phb_mmio_enable(phb->opal_id,
Wei Yangee8222f2015-10-22 09:22:16 +08001331 OPAL_M64_WINDOW_TYPE, pdn->m64_map[j][i], 2);
Wei Yang02639b02015-03-25 16:23:59 +08001332 else
1333 rc = opal_pci_phb_mmio_enable(phb->opal_id,
Wei Yangee8222f2015-10-22 09:22:16 +08001334 OPAL_M64_WINDOW_TYPE, pdn->m64_map[j][i], 1);
Wei Yang02639b02015-03-25 16:23:59 +08001335
1336 if (rc != OPAL_SUCCESS) {
1337 dev_err(&pdev->dev, "Failed to enable M64 window #%d: %llx\n",
1338 win, rc);
1339 goto m64_failed;
1340 }
Wei Yang781a8682015-03-25 16:23:57 +08001341 }
1342 }
1343 return 0;
1344
1345m64_failed:
Wei Yangee8222f2015-10-22 09:22:16 +08001346 pnv_pci_vf_release_m64(pdev, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001347 return -EBUSY;
1348}
1349
Alexey Kardashevskiyc035e372015-06-05 16:35:21 +10001350static long pnv_pci_ioda2_unset_window(struct iommu_table_group *table_group,
1351 int num);
1352static void pnv_pci_ioda2_set_bypass(struct pnv_ioda_pe *pe, bool enable);
1353
Wei Yang781a8682015-03-25 16:23:57 +08001354static void pnv_pci_ioda2_release_dma_pe(struct pci_dev *dev, struct pnv_ioda_pe *pe)
1355{
Wei Yang781a8682015-03-25 16:23:57 +08001356 struct iommu_table *tbl;
Wei Yang781a8682015-03-25 16:23:57 +08001357 int64_t rc;
1358
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001359 tbl = pe->table_group.tables[0];
Alexey Kardashevskiyc035e372015-06-05 16:35:21 +10001360 rc = pnv_pci_ioda2_unset_window(&pe->table_group, 0);
Wei Yang781a8682015-03-25 16:23:57 +08001361 if (rc)
1362 pe_warn(pe, "OPAL error %ld release DMA window\n", rc);
1363
Alexey Kardashevskiyc035e372015-06-05 16:35:21 +10001364 pnv_pci_ioda2_set_bypass(pe, false);
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10001365 if (pe->table_group.group) {
1366 iommu_group_put(pe->table_group.group);
1367 BUG_ON(pe->table_group.group);
Alexey Kardashevskiyac9a5882015-06-05 16:34:56 +10001368 }
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10001369 pnv_pci_ioda2_table_free_pages(tbl);
Wei Yang781a8682015-03-25 16:23:57 +08001370 iommu_free_table(tbl, of_node_full_name(dev->dev.of_node));
Wei Yang781a8682015-03-25 16:23:57 +08001371}
1372
Wei Yangee8222f2015-10-22 09:22:16 +08001373static void pnv_ioda_release_vf_PE(struct pci_dev *pdev)
Wei Yang781a8682015-03-25 16:23:57 +08001374{
1375 struct pci_bus *bus;
1376 struct pci_controller *hose;
1377 struct pnv_phb *phb;
1378 struct pnv_ioda_pe *pe, *pe_n;
1379 struct pci_dn *pdn;
1380
1381 bus = pdev->bus;
1382 hose = pci_bus_to_host(bus);
1383 phb = hose->private_data;
Wei Yang02639b02015-03-25 16:23:59 +08001384 pdn = pci_get_pdn(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001385
1386 if (!pdev->is_physfn)
1387 return;
1388
Wei Yang781a8682015-03-25 16:23:57 +08001389 list_for_each_entry_safe(pe, pe_n, &phb->ioda.pe_list, list) {
1390 if (pe->parent_dev != pdev)
1391 continue;
1392
1393 pnv_pci_ioda2_release_dma_pe(pdev, pe);
1394
1395 /* Remove from list */
1396 mutex_lock(&phb->ioda.pe_list_mutex);
1397 list_del(&pe->list);
1398 mutex_unlock(&phb->ioda.pe_list_mutex);
1399
1400 pnv_ioda_deconfigure_pe(phb, pe);
1401
Gavin Shan1e916772016-05-03 15:41:36 +10001402 pnv_ioda_free_pe(pe);
Wei Yang781a8682015-03-25 16:23:57 +08001403 }
1404}
1405
1406void pnv_pci_sriov_disable(struct pci_dev *pdev)
1407{
1408 struct pci_bus *bus;
1409 struct pci_controller *hose;
1410 struct pnv_phb *phb;
Gavin Shan1e916772016-05-03 15:41:36 +10001411 struct pnv_ioda_pe *pe;
Wei Yang781a8682015-03-25 16:23:57 +08001412 struct pci_dn *pdn;
1413 struct pci_sriov *iov;
Wei Yangbe283ee2015-10-22 09:22:19 +08001414 u16 num_vfs, i;
Wei Yang781a8682015-03-25 16:23:57 +08001415
1416 bus = pdev->bus;
1417 hose = pci_bus_to_host(bus);
1418 phb = hose->private_data;
1419 pdn = pci_get_pdn(pdev);
1420 iov = pdev->sriov;
1421 num_vfs = pdn->num_vfs;
1422
1423 /* Release VF PEs */
Wei Yangee8222f2015-10-22 09:22:16 +08001424 pnv_ioda_release_vf_PE(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001425
1426 if (phb->type == PNV_PHB_IODA2) {
Wei Yangee8222f2015-10-22 09:22:16 +08001427 if (!pdn->m64_single_mode)
Wei Yangbe283ee2015-10-22 09:22:19 +08001428 pnv_pci_vf_resource_shift(pdev, -*pdn->pe_num_map);
Wei Yang781a8682015-03-25 16:23:57 +08001429
1430 /* Release M64 windows */
Wei Yangee8222f2015-10-22 09:22:16 +08001431 pnv_pci_vf_release_m64(pdev, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001432
1433 /* Release PE numbers */
Wei Yangbe283ee2015-10-22 09:22:19 +08001434 if (pdn->m64_single_mode) {
1435 for (i = 0; i < num_vfs; i++) {
Gavin Shan1e916772016-05-03 15:41:36 +10001436 if (pdn->pe_num_map[i] == IODA_INVALID_PE)
1437 continue;
1438
1439 pe = &phb->ioda.pe_array[pdn->pe_num_map[i]];
1440 pnv_ioda_free_pe(pe);
Wei Yangbe283ee2015-10-22 09:22:19 +08001441 }
1442 } else
1443 bitmap_clear(phb->ioda.pe_alloc, *pdn->pe_num_map, num_vfs);
1444 /* Releasing pe_num_map */
1445 kfree(pdn->pe_num_map);
Wei Yang781a8682015-03-25 16:23:57 +08001446 }
1447}
1448
1449static void pnv_pci_ioda2_setup_dma_pe(struct pnv_phb *phb,
1450 struct pnv_ioda_pe *pe);
1451static void pnv_ioda_setup_vf_PE(struct pci_dev *pdev, u16 num_vfs)
1452{
1453 struct pci_bus *bus;
1454 struct pci_controller *hose;
1455 struct pnv_phb *phb;
1456 struct pnv_ioda_pe *pe;
1457 int pe_num;
1458 u16 vf_index;
1459 struct pci_dn *pdn;
1460
1461 bus = pdev->bus;
1462 hose = pci_bus_to_host(bus);
1463 phb = hose->private_data;
1464 pdn = pci_get_pdn(pdev);
1465
1466 if (!pdev->is_physfn)
1467 return;
1468
1469 /* Reserve PE for each VF */
1470 for (vf_index = 0; vf_index < num_vfs; vf_index++) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001471 if (pdn->m64_single_mode)
1472 pe_num = pdn->pe_num_map[vf_index];
1473 else
1474 pe_num = *pdn->pe_num_map + vf_index;
Wei Yang781a8682015-03-25 16:23:57 +08001475
1476 pe = &phb->ioda.pe_array[pe_num];
1477 pe->pe_number = pe_num;
1478 pe->phb = phb;
1479 pe->flags = PNV_IODA_PE_VF;
1480 pe->pbus = NULL;
1481 pe->parent_dev = pdev;
Wei Yang781a8682015-03-25 16:23:57 +08001482 pe->mve_number = -1;
1483 pe->rid = (pci_iov_virtfn_bus(pdev, vf_index) << 8) |
1484 pci_iov_virtfn_devfn(pdev, vf_index);
1485
1486 pe_info(pe, "VF %04d:%02d:%02d.%d associated with PE#%d\n",
1487 hose->global_number, pdev->bus->number,
1488 PCI_SLOT(pci_iov_virtfn_devfn(pdev, vf_index)),
1489 PCI_FUNC(pci_iov_virtfn_devfn(pdev, vf_index)), pe_num);
1490
1491 if (pnv_ioda_configure_pe(phb, pe)) {
1492 /* XXX What do we do here ? */
Gavin Shan1e916772016-05-03 15:41:36 +10001493 pnv_ioda_free_pe(pe);
Wei Yang781a8682015-03-25 16:23:57 +08001494 pe->pdev = NULL;
1495 continue;
1496 }
1497
Wei Yang781a8682015-03-25 16:23:57 +08001498 /* Put PE to the list */
1499 mutex_lock(&phb->ioda.pe_list_mutex);
1500 list_add_tail(&pe->list, &phb->ioda.pe_list);
1501 mutex_unlock(&phb->ioda.pe_list_mutex);
1502
1503 pnv_pci_ioda2_setup_dma_pe(phb, pe);
1504 }
1505}
1506
1507int pnv_pci_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
1508{
1509 struct pci_bus *bus;
1510 struct pci_controller *hose;
1511 struct pnv_phb *phb;
Gavin Shan1e916772016-05-03 15:41:36 +10001512 struct pnv_ioda_pe *pe;
Wei Yang781a8682015-03-25 16:23:57 +08001513 struct pci_dn *pdn;
1514 int ret;
Wei Yangbe283ee2015-10-22 09:22:19 +08001515 u16 i;
Wei Yang781a8682015-03-25 16:23:57 +08001516
1517 bus = pdev->bus;
1518 hose = pci_bus_to_host(bus);
1519 phb = hose->private_data;
1520 pdn = pci_get_pdn(pdev);
1521
1522 if (phb->type == PNV_PHB_IODA2) {
Wei Yangb0331852015-10-22 09:22:14 +08001523 if (!pdn->vfs_expanded) {
1524 dev_info(&pdev->dev, "don't support this SRIOV device"
1525 " with non 64bit-prefetchable IOV BAR\n");
1526 return -ENOSPC;
1527 }
1528
Wei Yangee8222f2015-10-22 09:22:16 +08001529 /*
1530 * When M64 BARs functions in Single PE mode, the number of VFs
1531 * could be enabled must be less than the number of M64 BARs.
1532 */
1533 if (pdn->m64_single_mode && num_vfs > phb->ioda.m64_bar_idx) {
1534 dev_info(&pdev->dev, "Not enough M64 BAR for VFs\n");
1535 return -EBUSY;
1536 }
1537
Wei Yangbe283ee2015-10-22 09:22:19 +08001538 /* Allocating pe_num_map */
1539 if (pdn->m64_single_mode)
1540 pdn->pe_num_map = kmalloc(sizeof(*pdn->pe_num_map) * num_vfs,
1541 GFP_KERNEL);
1542 else
1543 pdn->pe_num_map = kmalloc(sizeof(*pdn->pe_num_map), GFP_KERNEL);
1544
1545 if (!pdn->pe_num_map)
1546 return -ENOMEM;
1547
1548 if (pdn->m64_single_mode)
1549 for (i = 0; i < num_vfs; i++)
1550 pdn->pe_num_map[i] = IODA_INVALID_PE;
1551
Wei Yang781a8682015-03-25 16:23:57 +08001552 /* Calculate available PE for required VFs */
Wei Yangbe283ee2015-10-22 09:22:19 +08001553 if (pdn->m64_single_mode) {
1554 for (i = 0; i < num_vfs; i++) {
Gavin Shan1e916772016-05-03 15:41:36 +10001555 pe = pnv_ioda_alloc_pe(phb);
1556 if (!pe) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001557 ret = -EBUSY;
1558 goto m64_failed;
1559 }
Gavin Shan1e916772016-05-03 15:41:36 +10001560
1561 pdn->pe_num_map[i] = pe->pe_number;
Wei Yangbe283ee2015-10-22 09:22:19 +08001562 }
1563 } else {
1564 mutex_lock(&phb->ioda.pe_alloc_mutex);
1565 *pdn->pe_num_map = bitmap_find_next_zero_area(
Gavin Shan92b8f132016-05-03 15:41:24 +10001566 phb->ioda.pe_alloc, phb->ioda.total_pe_num,
Wei Yangbe283ee2015-10-22 09:22:19 +08001567 0, num_vfs, 0);
Gavin Shan92b8f132016-05-03 15:41:24 +10001568 if (*pdn->pe_num_map >= phb->ioda.total_pe_num) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001569 mutex_unlock(&phb->ioda.pe_alloc_mutex);
1570 dev_info(&pdev->dev, "Failed to enable VF%d\n", num_vfs);
1571 kfree(pdn->pe_num_map);
1572 return -EBUSY;
1573 }
1574 bitmap_set(phb->ioda.pe_alloc, *pdn->pe_num_map, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001575 mutex_unlock(&phb->ioda.pe_alloc_mutex);
Wei Yang781a8682015-03-25 16:23:57 +08001576 }
Wei Yang781a8682015-03-25 16:23:57 +08001577 pdn->num_vfs = num_vfs;
Wei Yang781a8682015-03-25 16:23:57 +08001578
1579 /* Assign M64 window accordingly */
Wei Yang02639b02015-03-25 16:23:59 +08001580 ret = pnv_pci_vf_assign_m64(pdev, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001581 if (ret) {
1582 dev_info(&pdev->dev, "Not enough M64 window resources\n");
1583 goto m64_failed;
1584 }
1585
1586 /*
1587 * When using one M64 BAR to map one IOV BAR, we need to shift
1588 * the IOV BAR according to the PE# allocated to the VFs.
1589 * Otherwise, the PE# for the VF will conflict with others.
1590 */
Wei Yangee8222f2015-10-22 09:22:16 +08001591 if (!pdn->m64_single_mode) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001592 ret = pnv_pci_vf_resource_shift(pdev, *pdn->pe_num_map);
Wei Yang02639b02015-03-25 16:23:59 +08001593 if (ret)
1594 goto m64_failed;
1595 }
Wei Yang781a8682015-03-25 16:23:57 +08001596 }
1597
1598 /* Setup VF PEs */
1599 pnv_ioda_setup_vf_PE(pdev, num_vfs);
1600
1601 return 0;
1602
1603m64_failed:
Wei Yangbe283ee2015-10-22 09:22:19 +08001604 if (pdn->m64_single_mode) {
1605 for (i = 0; i < num_vfs; i++) {
Gavin Shan1e916772016-05-03 15:41:36 +10001606 if (pdn->pe_num_map[i] == IODA_INVALID_PE)
1607 continue;
1608
1609 pe = &phb->ioda.pe_array[pdn->pe_num_map[i]];
1610 pnv_ioda_free_pe(pe);
Wei Yangbe283ee2015-10-22 09:22:19 +08001611 }
1612 } else
1613 bitmap_clear(phb->ioda.pe_alloc, *pdn->pe_num_map, num_vfs);
1614
1615 /* Releasing pe_num_map */
1616 kfree(pdn->pe_num_map);
Wei Yang781a8682015-03-25 16:23:57 +08001617
1618 return ret;
1619}
1620
Gavin Shana8b2f822015-03-25 16:23:52 +08001621int pcibios_sriov_disable(struct pci_dev *pdev)
1622{
Wei Yang781a8682015-03-25 16:23:57 +08001623 pnv_pci_sriov_disable(pdev);
1624
Gavin Shana8b2f822015-03-25 16:23:52 +08001625 /* Release PCI data */
1626 remove_dev_pci_data(pdev);
1627 return 0;
1628}
1629
1630int pcibios_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
1631{
1632 /* Allocate PCI data */
1633 add_dev_pci_data(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001634
Wei Yangee8222f2015-10-22 09:22:16 +08001635 return pnv_pci_sriov_enable(pdev, num_vfs);
Gavin Shana8b2f822015-03-25 16:23:52 +08001636}
1637#endif /* CONFIG_PCI_IOV */
1638
Gavin Shan959c9bd2013-04-25 19:21:02 +00001639static void pnv_pci_ioda_dma_dev_setup(struct pnv_phb *phb, struct pci_dev *pdev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001640{
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00001641 struct pci_dn *pdn = pci_get_pdn(pdev);
Gavin Shan959c9bd2013-04-25 19:21:02 +00001642 struct pnv_ioda_pe *pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001643
Gavin Shan959c9bd2013-04-25 19:21:02 +00001644 /*
1645 * The function can be called while the PE#
1646 * hasn't been assigned. Do nothing for the
1647 * case.
1648 */
1649 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
1650 return;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001651
Gavin Shan959c9bd2013-04-25 19:21:02 +00001652 pe = &phb->ioda.pe_array[pdn->pe_number];
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001653 WARN_ON(get_dma_ops(&pdev->dev) != &dma_iommu_ops);
Alexey Kardashevskiy0e1ffef2015-08-27 16:01:16 +10001654 set_dma_offset(&pdev->dev, pe->tce_bypass_base);
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001655 set_iommu_table_base(&pdev->dev, pe->table_group.tables[0]);
Alexey Kardashevskiy46170822015-06-05 16:34:54 +10001656 /*
1657 * Note: iommu_add_device() will fail here as
1658 * for physical PE: the device is already added by now;
1659 * for virtual PE: sysfs entries are not ready yet and
1660 * tce_iommu_bus_notifier will add the device to a group later.
1661 */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001662}
1663
Daniel Axtens763d2d82015-04-28 15:12:07 +10001664static int pnv_pci_ioda_dma_set_mask(struct pci_dev *pdev, u64 dma_mask)
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001665{
Daniel Axtens763d2d82015-04-28 15:12:07 +10001666 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
1667 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001668 struct pci_dn *pdn = pci_get_pdn(pdev);
1669 struct pnv_ioda_pe *pe;
1670 uint64_t top;
1671 bool bypass = false;
Alistair Popple5d2aa712015-12-17 13:43:13 +11001672 struct pci_dev *linked_npu_dev;
1673 int i;
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001674
1675 if (WARN_ON(!pdn || pdn->pe_number == IODA_INVALID_PE))
1676 return -ENODEV;;
1677
1678 pe = &phb->ioda.pe_array[pdn->pe_number];
1679 if (pe->tce_bypass_enabled) {
1680 top = pe->tce_bypass_base + memblock_end_of_DRAM() - 1;
1681 bypass = (dma_mask >= top);
1682 }
1683
1684 if (bypass) {
1685 dev_info(&pdev->dev, "Using 64-bit DMA iommu bypass\n");
1686 set_dma_ops(&pdev->dev, &dma_direct_ops);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001687 } else {
1688 dev_info(&pdev->dev, "Using 32-bit DMA via iommu\n");
1689 set_dma_ops(&pdev->dev, &dma_iommu_ops);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001690 }
Brian W Harta32305b2014-07-31 14:24:37 -05001691 *pdev->dev.dma_mask = dma_mask;
Alistair Popple5d2aa712015-12-17 13:43:13 +11001692
1693 /* Update peer npu devices */
1694 if (pe->flags & PNV_IODA_PE_PEER)
Alistair Popple419dbd52016-01-08 11:35:09 +11001695 for (i = 0; i < PNV_IODA_MAX_PEER_PES; i++) {
1696 if (!pe->peers[i])
1697 continue;
1698
Alistair Popple5d2aa712015-12-17 13:43:13 +11001699 linked_npu_dev = pe->peers[i]->pdev;
1700 if (dma_get_mask(&linked_npu_dev->dev) != dma_mask)
1701 dma_set_mask(&linked_npu_dev->dev, dma_mask);
1702 }
1703
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001704 return 0;
1705}
1706
Andrew Donnellan535229822015-08-07 13:45:54 +10001707static u64 pnv_pci_ioda_dma_get_required_mask(struct pci_dev *pdev)
Gavin Shanfe7e85c2014-09-30 12:39:10 +10001708{
Andrew Donnellan535229822015-08-07 13:45:54 +10001709 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
1710 struct pnv_phb *phb = hose->private_data;
Gavin Shanfe7e85c2014-09-30 12:39:10 +10001711 struct pci_dn *pdn = pci_get_pdn(pdev);
1712 struct pnv_ioda_pe *pe;
1713 u64 end, mask;
1714
1715 if (WARN_ON(!pdn || pdn->pe_number == IODA_INVALID_PE))
1716 return 0;
1717
1718 pe = &phb->ioda.pe_array[pdn->pe_number];
1719 if (!pe->tce_bypass_enabled)
1720 return __dma_get_required_mask(&pdev->dev);
1721
1722
1723 end = pe->tce_bypass_base + memblock_end_of_DRAM();
1724 mask = 1ULL << (fls64(end) - 1);
1725 mask += mask - 1;
1726
1727 return mask;
1728}
1729
Gavin Shandff4a392014-07-15 17:00:55 +10001730static void pnv_ioda_setup_bus_dma(struct pnv_ioda_pe *pe,
Alexey Kardashevskiyea30e992015-06-05 16:34:53 +10001731 struct pci_bus *bus)
Benjamin Herrenschmidt74251fe2013-07-01 17:54:09 +10001732{
1733 struct pci_dev *dev;
1734
1735 list_for_each_entry(dev, &bus->devices, bus_list) {
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001736 set_iommu_table_base(&dev->dev, pe->table_group.tables[0]);
Benjamin Herrenschmidte91c25112015-06-24 15:25:27 +10001737 set_dma_offset(&dev->dev, pe->tce_bypass_base);
Alexey Kardashevskiy46170822015-06-05 16:34:54 +10001738 iommu_add_device(&dev->dev);
Gavin Shandff4a392014-07-15 17:00:55 +10001739
Alexey Kardashevskiy5c89a872015-06-18 11:41:36 +10001740 if ((pe->flags & PNV_IODA_PE_BUS_ALL) && dev->subordinate)
Alexey Kardashevskiyea30e992015-06-05 16:34:53 +10001741 pnv_ioda_setup_bus_dma(pe, dev->subordinate);
Benjamin Herrenschmidt74251fe2013-07-01 17:54:09 +10001742 }
1743}
1744
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001745static void pnv_pci_ioda1_tce_invalidate(struct iommu_table *tbl,
1746 unsigned long index, unsigned long npages, bool rm)
Gavin Shan4cce9552013-04-25 19:21:00 +00001747{
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10001748 struct iommu_table_group_link *tgl = list_first_entry_or_null(
1749 &tbl->it_group_list, struct iommu_table_group_link,
1750 next);
1751 struct pnv_ioda_pe *pe = container_of(tgl->table_group,
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001752 struct pnv_ioda_pe, table_group);
Benjamin Herrenschmidt3ad26e52013-10-11 18:23:53 +11001753 __be64 __iomem *invalidate = rm ?
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10001754 (__be64 __iomem *)pe->phb->ioda.tce_inval_reg_phys :
1755 pe->phb->ioda.tce_inval_reg;
Gavin Shan4cce9552013-04-25 19:21:00 +00001756 unsigned long start, end, inc;
Alexey Kardashevskiyb0376c92014-06-06 18:44:01 +10001757 const unsigned shift = tbl->it_page_shift;
Gavin Shan4cce9552013-04-25 19:21:00 +00001758
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001759 start = __pa(((__be64 *)tbl->it_base) + index - tbl->it_offset);
1760 end = __pa(((__be64 *)tbl->it_base) + index - tbl->it_offset +
1761 npages - 1);
Gavin Shan4cce9552013-04-25 19:21:00 +00001762
1763 /* BML uses this case for p6/p7/galaxy2: Shift addr and put in node */
1764 if (tbl->it_busno) {
Alexey Kardashevskiyb0376c92014-06-06 18:44:01 +10001765 start <<= shift;
1766 end <<= shift;
1767 inc = 128ull << shift;
Gavin Shan4cce9552013-04-25 19:21:00 +00001768 start |= tbl->it_busno;
1769 end |= tbl->it_busno;
1770 } else if (tbl->it_type & TCE_PCI_SWINV_PAIR) {
1771 /* p7ioc-style invalidation, 2 TCEs per write */
1772 start |= (1ull << 63);
1773 end |= (1ull << 63);
1774 inc = 16;
1775 } else {
1776 /* Default (older HW) */
1777 inc = 128;
1778 }
1779
1780 end |= inc - 1; /* round up end to be different than start */
1781
1782 mb(); /* Ensure above stores are visible */
1783 while (start <= end) {
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10001784 if (rm)
Benjamin Herrenschmidt3ad26e52013-10-11 18:23:53 +11001785 __raw_rm_writeq(cpu_to_be64(start), invalidate);
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10001786 else
Benjamin Herrenschmidt3ad26e52013-10-11 18:23:53 +11001787 __raw_writeq(cpu_to_be64(start), invalidate);
Gavin Shan4cce9552013-04-25 19:21:00 +00001788 start += inc;
1789 }
1790
1791 /*
1792 * The iommu layer will do another mb() for us on build()
1793 * and we don't care on free()
1794 */
1795}
1796
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001797static int pnv_ioda1_tce_build(struct iommu_table *tbl, long index,
1798 long npages, unsigned long uaddr,
1799 enum dma_data_direction direction,
1800 struct dma_attrs *attrs)
1801{
1802 int ret = pnv_tce_build(tbl, index, npages, uaddr, direction,
1803 attrs);
1804
1805 if (!ret && (tbl->it_type & TCE_PCI_SWINV_CREATE))
1806 pnv_pci_ioda1_tce_invalidate(tbl, index, npages, false);
1807
1808 return ret;
1809}
1810
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10001811#ifdef CONFIG_IOMMU_API
1812static int pnv_ioda1_tce_xchg(struct iommu_table *tbl, long index,
1813 unsigned long *hpa, enum dma_data_direction *direction)
1814{
1815 long ret = pnv_tce_xchg(tbl, index, hpa, direction);
1816
1817 if (!ret && (tbl->it_type &
1818 (TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE)))
1819 pnv_pci_ioda1_tce_invalidate(tbl, index, 1, false);
1820
1821 return ret;
1822}
1823#endif
1824
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001825static void pnv_ioda1_tce_free(struct iommu_table *tbl, long index,
1826 long npages)
1827{
1828 pnv_tce_free(tbl, index, npages);
1829
1830 if (tbl->it_type & TCE_PCI_SWINV_FREE)
1831 pnv_pci_ioda1_tce_invalidate(tbl, index, npages, false);
1832}
1833
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10001834static struct iommu_table_ops pnv_ioda1_iommu_ops = {
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001835 .set = pnv_ioda1_tce_build,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10001836#ifdef CONFIG_IOMMU_API
1837 .exchange = pnv_ioda1_tce_xchg,
1838#endif
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001839 .clear = pnv_ioda1_tce_free,
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10001840 .get = pnv_tce_get,
1841};
1842
Alexey Kardashevskiybef92532016-04-29 18:55:17 +10001843#define TCE_KILL_INVAL_PE PPC_BIT(1)
1844#define TCE_KILL_INVAL_TCE PPC_BIT(2)
1845
Alexey Kardashevskiya7cf13c2016-04-29 18:55:16 +10001846static inline void pnv_pci_ioda2_tce_invalidate_pe(struct pnv_ioda_pe *pe)
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10001847{
1848 /* 01xb - invalidate TCEs that match the specified PE# */
Alexey Kardashevskiybef92532016-04-29 18:55:17 +10001849 unsigned long val = TCE_KILL_INVAL_PE | (pe->pe_number & 0xFF);
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10001850 struct pnv_phb *phb = pe->phb;
Alistair Popple5d2aa712015-12-17 13:43:13 +11001851 struct pnv_ioda_pe *npe;
1852 int i;
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10001853
1854 if (!phb->ioda.tce_inval_reg)
1855 return;
1856
1857 mb(); /* Ensure above stores are visible */
1858 __raw_writeq(cpu_to_be64(val), phb->ioda.tce_inval_reg);
Alistair Popple5d2aa712015-12-17 13:43:13 +11001859
1860 if (pe->flags & PNV_IODA_PE_PEER)
1861 for (i = 0; i < PNV_IODA_MAX_PEER_PES; i++) {
1862 npe = pe->peers[i];
1863 if (!npe || npe->phb->type != PNV_PHB_NPU)
1864 continue;
1865
1866 pnv_npu_tce_invalidate_entire(npe);
1867 }
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10001868}
1869
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10001870static void pnv_pci_ioda2_do_tce_invalidate(unsigned pe_number, bool rm,
1871 __be64 __iomem *invalidate, unsigned shift,
1872 unsigned long index, unsigned long npages)
Gavin Shan4cce9552013-04-25 19:21:00 +00001873{
1874 unsigned long start, end, inc;
Gavin Shan4cce9552013-04-25 19:21:00 +00001875
1876 /* We'll invalidate DMA address in PE scope */
Alexey Kardashevskiybef92532016-04-29 18:55:17 +10001877 start = TCE_KILL_INVAL_TCE;
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10001878 start |= (pe_number & 0xFF);
Gavin Shan4cce9552013-04-25 19:21:00 +00001879 end = start;
1880
1881 /* Figure out the start, end and step */
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001882 start |= (index << shift);
1883 end |= ((index + npages - 1) << shift);
Alexey Kardashevskiyb0376c92014-06-06 18:44:01 +10001884 inc = (0x1ull << shift);
Gavin Shan4cce9552013-04-25 19:21:00 +00001885 mb();
1886
1887 while (start <= end) {
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10001888 if (rm)
Benjamin Herrenschmidt3ad26e52013-10-11 18:23:53 +11001889 __raw_rm_writeq(cpu_to_be64(start), invalidate);
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10001890 else
Benjamin Herrenschmidt3ad26e52013-10-11 18:23:53 +11001891 __raw_writeq(cpu_to_be64(start), invalidate);
Gavin Shan4cce9552013-04-25 19:21:00 +00001892 start += inc;
1893 }
1894}
1895
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10001896static void pnv_pci_ioda2_tce_invalidate(struct iommu_table *tbl,
1897 unsigned long index, unsigned long npages, bool rm)
1898{
1899 struct iommu_table_group_link *tgl;
1900
1901 list_for_each_entry_rcu(tgl, &tbl->it_group_list, next) {
Alistair Popple5d2aa712015-12-17 13:43:13 +11001902 struct pnv_ioda_pe *npe;
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10001903 struct pnv_ioda_pe *pe = container_of(tgl->table_group,
1904 struct pnv_ioda_pe, table_group);
1905 __be64 __iomem *invalidate = rm ?
1906 (__be64 __iomem *)pe->phb->ioda.tce_inval_reg_phys :
1907 pe->phb->ioda.tce_inval_reg;
Alistair Popple5d2aa712015-12-17 13:43:13 +11001908 int i;
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10001909
1910 pnv_pci_ioda2_do_tce_invalidate(pe->pe_number, rm,
1911 invalidate, tbl->it_page_shift,
1912 index, npages);
Alistair Popple5d2aa712015-12-17 13:43:13 +11001913
1914 if (pe->flags & PNV_IODA_PE_PEER)
1915 /* Invalidate PEs using the same TCE table */
1916 for (i = 0; i < PNV_IODA_MAX_PEER_PES; i++) {
1917 npe = pe->peers[i];
1918 if (!npe || npe->phb->type != PNV_PHB_NPU)
1919 continue;
1920
1921 pnv_npu_tce_invalidate(npe, tbl, index,
1922 npages, rm);
1923 }
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10001924 }
1925}
1926
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001927static int pnv_ioda2_tce_build(struct iommu_table *tbl, long index,
1928 long npages, unsigned long uaddr,
1929 enum dma_data_direction direction,
1930 struct dma_attrs *attrs)
Gavin Shan4cce9552013-04-25 19:21:00 +00001931{
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001932 int ret = pnv_tce_build(tbl, index, npages, uaddr, direction,
1933 attrs);
Gavin Shan4cce9552013-04-25 19:21:00 +00001934
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001935 if (!ret && (tbl->it_type & TCE_PCI_SWINV_CREATE))
1936 pnv_pci_ioda2_tce_invalidate(tbl, index, npages, false);
1937
1938 return ret;
1939}
1940
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10001941#ifdef CONFIG_IOMMU_API
1942static int pnv_ioda2_tce_xchg(struct iommu_table *tbl, long index,
1943 unsigned long *hpa, enum dma_data_direction *direction)
1944{
1945 long ret = pnv_tce_xchg(tbl, index, hpa, direction);
1946
1947 if (!ret && (tbl->it_type &
1948 (TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE)))
1949 pnv_pci_ioda2_tce_invalidate(tbl, index, 1, false);
1950
1951 return ret;
1952}
1953#endif
1954
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001955static void pnv_ioda2_tce_free(struct iommu_table *tbl, long index,
1956 long npages)
1957{
1958 pnv_tce_free(tbl, index, npages);
1959
1960 if (tbl->it_type & TCE_PCI_SWINV_FREE)
1961 pnv_pci_ioda2_tce_invalidate(tbl, index, npages, false);
Gavin Shan4cce9552013-04-25 19:21:00 +00001962}
1963
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10001964static void pnv_ioda2_table_free(struct iommu_table *tbl)
1965{
1966 pnv_pci_ioda2_table_free_pages(tbl);
1967 iommu_free_table(tbl, "pnv");
1968}
1969
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10001970static struct iommu_table_ops pnv_ioda2_iommu_ops = {
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001971 .set = pnv_ioda2_tce_build,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10001972#ifdef CONFIG_IOMMU_API
1973 .exchange = pnv_ioda2_tce_xchg,
1974#endif
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001975 .clear = pnv_ioda2_tce_free,
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10001976 .get = pnv_tce_get,
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10001977 .free = pnv_ioda2_table_free,
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10001978};
1979
Gavin Shan801846d2016-05-03 15:41:34 +10001980static int pnv_pci_ioda_dev_dma_weight(struct pci_dev *dev, void *data)
1981{
1982 unsigned int *weight = (unsigned int *)data;
1983
1984 /* This is quite simplistic. The "base" weight of a device
1985 * is 10. 0 means no DMA is to be accounted for it.
1986 */
1987 if (dev->hdr_type != PCI_HEADER_TYPE_NORMAL)
1988 return 0;
1989
1990 if (dev->class == PCI_CLASS_SERIAL_USB_UHCI ||
1991 dev->class == PCI_CLASS_SERIAL_USB_OHCI ||
1992 dev->class == PCI_CLASS_SERIAL_USB_EHCI)
1993 *weight += 3;
1994 else if ((dev->class >> 8) == PCI_CLASS_STORAGE_RAID)
1995 *weight += 15;
1996 else
1997 *weight += 10;
1998
1999 return 0;
2000}
2001
2002static unsigned int pnv_pci_ioda_pe_dma_weight(struct pnv_ioda_pe *pe)
2003{
2004 unsigned int weight = 0;
2005
2006 /* SRIOV VF has same DMA32 weight as its PF */
2007#ifdef CONFIG_PCI_IOV
2008 if ((pe->flags & PNV_IODA_PE_VF) && pe->parent_dev) {
2009 pnv_pci_ioda_dev_dma_weight(pe->parent_dev, &weight);
2010 return weight;
2011 }
2012#endif
2013
2014 if ((pe->flags & PNV_IODA_PE_DEV) && pe->pdev) {
2015 pnv_pci_ioda_dev_dma_weight(pe->pdev, &weight);
2016 } else if ((pe->flags & PNV_IODA_PE_BUS) && pe->pbus) {
2017 struct pci_dev *pdev;
2018
2019 list_for_each_entry(pdev, &pe->pbus->devices, bus_list)
2020 pnv_pci_ioda_dev_dma_weight(pdev, &weight);
2021 } else if ((pe->flags & PNV_IODA_PE_BUS_ALL) && pe->pbus) {
2022 pci_walk_bus(pe->pbus, pnv_pci_ioda_dev_dma_weight, &weight);
2023 }
2024
2025 return weight;
2026}
2027
Gavin Shanb30d9362016-05-03 15:41:32 +10002028static void pnv_pci_ioda1_setup_dma_pe(struct pnv_phb *phb,
Gavin Shan2b923ed2016-05-05 12:04:16 +10002029 struct pnv_ioda_pe *pe)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002030{
2031
2032 struct page *tce_mem = NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002033 struct iommu_table *tbl;
Gavin Shan2b923ed2016-05-05 12:04:16 +10002034 unsigned int weight, total_weight = 0;
2035 unsigned int tce32_segsz, base, segs, avail, i;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002036 int64_t rc;
2037 void *addr;
2038
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002039 /* XXX FIXME: Handle 64-bit only DMA devices */
2040 /* XXX FIXME: Provide 64-bit DMA facilities & non-4K TCE tables etc.. */
2041 /* XXX FIXME: Allocate multi-level tables on PHB3 */
Gavin Shan2b923ed2016-05-05 12:04:16 +10002042 weight = pnv_pci_ioda_pe_dma_weight(pe);
2043 if (!weight)
2044 return;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002045
Gavin Shan2b923ed2016-05-05 12:04:16 +10002046 pci_walk_bus(phb->hose->bus, pnv_pci_ioda_dev_dma_weight,
2047 &total_weight);
2048 segs = (weight * phb->ioda.dma32_count) / total_weight;
2049 if (!segs)
2050 segs = 1;
2051
2052 /*
2053 * Allocate contiguous DMA32 segments. We begin with the expected
2054 * number of segments. With one more attempt, the number of DMA32
2055 * segments to be allocated is decreased by one until one segment
2056 * is allocated successfully.
2057 */
2058 do {
2059 for (base = 0; base <= phb->ioda.dma32_count - segs; base++) {
2060 for (avail = 0, i = base; i < base + segs; i++) {
2061 if (phb->ioda.dma32_segmap[i] ==
2062 IODA_INVALID_PE)
2063 avail++;
2064 }
2065
2066 if (avail == segs)
2067 goto found;
2068 }
2069 } while (--segs);
2070
2071 if (!segs) {
2072 pe_warn(pe, "No available DMA32 segments\n");
2073 return;
2074 }
2075
2076found:
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002077 tbl = pnv_pci_table_alloc(phb->hose->node);
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10002078 iommu_register_group(&pe->table_group, phb->hose->global_number,
2079 pe->pe_number);
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002080 pnv_pci_link_table_and_group(phb->hose->node, 0, tbl, &pe->table_group);
Alexey Kardashevskiyc5773822015-06-05 16:34:55 +10002081
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002082 /* Grab a 32-bit TCE table */
Gavin Shan2b923ed2016-05-05 12:04:16 +10002083 pe_info(pe, "DMA weight %d (%d), assigned (%d) %d DMA32 segments\n",
2084 weight, total_weight, base, segs);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002085 pe_info(pe, " Setting up 32-bit TCE table at %08x..%08x\n",
Gavin Shanacce9712016-05-03 15:41:33 +10002086 base * PNV_IODA1_DMA32_SEGSIZE,
2087 (base + segs) * PNV_IODA1_DMA32_SEGSIZE - 1);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002088
2089 /* XXX Currently, we allocate one big contiguous table for the
2090 * TCEs. We only really need one chunk per 256M of TCE space
2091 * (ie per segment) but that's an optimization for later, it
2092 * requires some added smarts with our get/put_tce implementation
Gavin Shanacce9712016-05-03 15:41:33 +10002093 *
2094 * Each TCE page is 4KB in size and each TCE entry occupies 8
2095 * bytes
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002096 */
Gavin Shanacce9712016-05-03 15:41:33 +10002097 tce32_segsz = PNV_IODA1_DMA32_SEGSIZE >> (IOMMU_PAGE_SHIFT_4K - 3);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002098 tce_mem = alloc_pages_node(phb->hose->node, GFP_KERNEL,
Gavin Shanacce9712016-05-03 15:41:33 +10002099 get_order(tce32_segsz * segs));
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002100 if (!tce_mem) {
2101 pe_err(pe, " Failed to allocate a 32-bit TCE memory\n");
2102 goto fail;
2103 }
2104 addr = page_address(tce_mem);
Gavin Shanacce9712016-05-03 15:41:33 +10002105 memset(addr, 0, tce32_segsz * segs);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002106
2107 /* Configure HW */
2108 for (i = 0; i < segs; i++) {
2109 rc = opal_pci_map_pe_dma_window(phb->opal_id,
2110 pe->pe_number,
2111 base + i, 1,
Gavin Shanacce9712016-05-03 15:41:33 +10002112 __pa(addr) + tce32_segsz * i,
2113 tce32_segsz, IOMMU_PAGE_SIZE_4K);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002114 if (rc) {
2115 pe_err(pe, " Failed to configure 32-bit TCE table,"
2116 " err %ld\n", rc);
2117 goto fail;
2118 }
2119 }
2120
Gavin Shan2b923ed2016-05-05 12:04:16 +10002121 /* Setup DMA32 segment mapping */
2122 for (i = base; i < base + segs; i++)
2123 phb->ioda.dma32_segmap[i] = pe->pe_number;
2124
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002125 /* Setup linux iommu table */
Gavin Shanacce9712016-05-03 15:41:33 +10002126 pnv_pci_setup_iommu_table(tbl, addr, tce32_segsz * segs,
2127 base * PNV_IODA1_DMA32_SEGSIZE,
2128 IOMMU_PAGE_SHIFT_4K);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002129
2130 /* OPAL variant of P7IOC SW invalidated TCEs */
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002131 if (phb->ioda.tce_inval_reg)
Gavin Shan65fd7662014-04-24 18:00:28 +10002132 tbl->it_type |= (TCE_PCI_SWINV_CREATE |
2133 TCE_PCI_SWINV_FREE |
2134 TCE_PCI_SWINV_PAIR);
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002135
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002136 tbl->it_ops = &pnv_ioda1_iommu_ops;
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002137 pe->table_group.tce32_start = tbl->it_offset << tbl->it_page_shift;
2138 pe->table_group.tce32_size = tbl->it_size << tbl->it_page_shift;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002139 iommu_init_table(tbl, phb->hose->node);
2140
Wei Yang781a8682015-03-25 16:23:57 +08002141 if (pe->flags & PNV_IODA_PE_DEV) {
Alexey Kardashevskiy46170822015-06-05 16:34:54 +10002142 /*
2143 * Setting table base here only for carrying iommu_group
2144 * further down to let iommu_add_device() do the job.
2145 * pnv_pci_ioda_dma_dev_setup will override it later anyway.
2146 */
2147 set_iommu_table_base(&pe->pdev->dev, tbl);
2148 iommu_add_device(&pe->pdev->dev);
Alexey Kardashevskiyc5773822015-06-05 16:34:55 +10002149 } else if (pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL))
Alexey Kardashevskiyea30e992015-06-05 16:34:53 +10002150 pnv_ioda_setup_bus_dma(pe, pe->pbus);
Benjamin Herrenschmidt74251fe2013-07-01 17:54:09 +10002151
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002152 return;
2153 fail:
2154 /* XXX Failure: Try to fallback to 64-bit only ? */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002155 if (tce_mem)
Gavin Shanacce9712016-05-03 15:41:33 +10002156 __free_pages(tce_mem, get_order(tce32_segsz * segs));
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002157 if (tbl) {
2158 pnv_pci_unlink_table_and_group(tbl, &pe->table_group);
2159 iommu_free_table(tbl, "pnv");
2160 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002161}
2162
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002163static long pnv_pci_ioda2_set_window(struct iommu_table_group *table_group,
2164 int num, struct iommu_table *tbl)
2165{
2166 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2167 table_group);
2168 struct pnv_phb *phb = pe->phb;
2169 int64_t rc;
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002170 const unsigned long size = tbl->it_indirect_levels ?
2171 tbl->it_level_size : tbl->it_size;
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002172 const __u64 start_addr = tbl->it_offset << tbl->it_page_shift;
2173 const __u64 win_size = tbl->it_size << tbl->it_page_shift;
2174
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002175 pe_info(pe, "Setting up window#%d %llx..%llx pg=%x\n", num,
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002176 start_addr, start_addr + win_size - 1,
2177 IOMMU_PAGE_SIZE(tbl));
2178
2179 /*
2180 * Map TCE table through TVT. The TVE index is the PE number
2181 * shifted by 1 bit for 32-bits DMA space.
2182 */
2183 rc = opal_pci_map_pe_dma_window(phb->opal_id,
2184 pe->pe_number,
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002185 (pe->pe_number << 1) + num,
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002186 tbl->it_indirect_levels + 1,
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002187 __pa(tbl->it_base),
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002188 size << 3,
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002189 IOMMU_PAGE_SIZE(tbl));
2190 if (rc) {
2191 pe_err(pe, "Failed to configure TCE table, err %ld\n", rc);
2192 return rc;
2193 }
2194
2195 pnv_pci_link_table_and_group(phb->hose->node, num,
2196 tbl, &pe->table_group);
Alexey Kardashevskiya7cf13c2016-04-29 18:55:16 +10002197 pnv_pci_ioda2_tce_invalidate_pe(pe);
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002198
2199 return 0;
2200}
2201
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002202static void pnv_pci_ioda2_set_bypass(struct pnv_ioda_pe *pe, bool enable)
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002203{
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002204 uint16_t window_id = (pe->pe_number << 1 ) + 1;
2205 int64_t rc;
2206
2207 pe_info(pe, "%sabling 64-bit DMA bypass\n", enable ? "En" : "Dis");
2208 if (enable) {
2209 phys_addr_t top = memblock_end_of_DRAM();
2210
2211 top = roundup_pow_of_two(top);
2212 rc = opal_pci_map_pe_dma_window_real(pe->phb->opal_id,
2213 pe->pe_number,
2214 window_id,
2215 pe->tce_bypass_base,
2216 top);
2217 } else {
2218 rc = opal_pci_map_pe_dma_window_real(pe->phb->opal_id,
2219 pe->pe_number,
2220 window_id,
2221 pe->tce_bypass_base,
2222 0);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002223 }
2224 if (rc)
2225 pe_err(pe, "OPAL error %lld configuring bypass window\n", rc);
2226 else
2227 pe->tce_bypass_enabled = enable;
2228}
2229
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002230static long pnv_pci_ioda2_table_alloc_pages(int nid, __u64 bus_offset,
2231 __u32 page_shift, __u64 window_size, __u32 levels,
2232 struct iommu_table *tbl);
2233
2234static long pnv_pci_ioda2_create_table(struct iommu_table_group *table_group,
2235 int num, __u32 page_shift, __u64 window_size, __u32 levels,
2236 struct iommu_table **ptbl)
2237{
2238 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2239 table_group);
2240 int nid = pe->phb->hose->node;
2241 __u64 bus_offset = num ? pe->tce_bypass_base : table_group->tce32_start;
2242 long ret;
2243 struct iommu_table *tbl;
2244
2245 tbl = pnv_pci_table_alloc(nid);
2246 if (!tbl)
2247 return -ENOMEM;
2248
2249 ret = pnv_pci_ioda2_table_alloc_pages(nid,
2250 bus_offset, page_shift, window_size,
2251 levels, tbl);
2252 if (ret) {
2253 iommu_free_table(tbl, "pnv");
2254 return ret;
2255 }
2256
2257 tbl->it_ops = &pnv_ioda2_iommu_ops;
2258 if (pe->phb->ioda.tce_inval_reg)
2259 tbl->it_type |= (TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE);
2260
2261 *ptbl = tbl;
2262
2263 return 0;
2264}
2265
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002266static long pnv_pci_ioda2_setup_default_config(struct pnv_ioda_pe *pe)
2267{
2268 struct iommu_table *tbl = NULL;
2269 long rc;
2270
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002271 /*
Nishanth Aravamudanfa144862015-09-04 11:22:52 -07002272 * crashkernel= specifies the kdump kernel's maximum memory at
2273 * some offset and there is no guaranteed the result is a power
2274 * of 2, which will cause errors later.
2275 */
2276 const u64 max_memory = __rounddown_pow_of_two(memory_hotplug_max());
2277
2278 /*
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002279 * In memory constrained environments, e.g. kdump kernel, the
2280 * DMA window can be larger than available memory, which will
2281 * cause errors later.
2282 */
Nishanth Aravamudanfa144862015-09-04 11:22:52 -07002283 const u64 window_size = min((u64)pe->table_group.tce32_size, max_memory);
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002284
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002285 rc = pnv_pci_ioda2_create_table(&pe->table_group, 0,
2286 IOMMU_PAGE_SHIFT_4K,
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002287 window_size,
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002288 POWERNV_IOMMU_DEFAULT_LEVELS, &tbl);
2289 if (rc) {
2290 pe_err(pe, "Failed to create 32-bit TCE table, err %ld",
2291 rc);
2292 return rc;
2293 }
2294
2295 iommu_init_table(tbl, pe->phb->hose->node);
2296
2297 rc = pnv_pci_ioda2_set_window(&pe->table_group, 0, tbl);
2298 if (rc) {
2299 pe_err(pe, "Failed to configure 32-bit TCE table, err %ld\n",
2300 rc);
2301 pnv_ioda2_table_free(tbl);
2302 return rc;
2303 }
2304
2305 if (!pnv_iommu_bypass_disabled)
2306 pnv_pci_ioda2_set_bypass(pe, true);
2307
2308 /* OPAL variant of PHB3 invalidated TCEs */
2309 if (pe->phb->ioda.tce_inval_reg)
2310 tbl->it_type |= (TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE);
2311
2312 /*
2313 * Setting table base here only for carrying iommu_group
2314 * further down to let iommu_add_device() do the job.
2315 * pnv_pci_ioda_dma_dev_setup will override it later anyway.
2316 */
2317 if (pe->flags & PNV_IODA_PE_DEV)
2318 set_iommu_table_base(&pe->pdev->dev, tbl);
2319
2320 return 0;
2321}
2322
Alexey Kardashevskiyb5926432015-06-15 17:49:59 +10002323#if defined(CONFIG_IOMMU_API) || defined(CONFIG_PCI_IOV)
2324static long pnv_pci_ioda2_unset_window(struct iommu_table_group *table_group,
2325 int num)
2326{
2327 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2328 table_group);
2329 struct pnv_phb *phb = pe->phb;
2330 long ret;
2331
2332 pe_info(pe, "Removing DMA window #%d\n", num);
2333
2334 ret = opal_pci_map_pe_dma_window(phb->opal_id, pe->pe_number,
2335 (pe->pe_number << 1) + num,
2336 0/* levels */, 0/* table address */,
2337 0/* table size */, 0/* page size */);
2338 if (ret)
2339 pe_warn(pe, "Unmapping failed, ret = %ld\n", ret);
2340 else
Alexey Kardashevskiya7cf13c2016-04-29 18:55:16 +10002341 pnv_pci_ioda2_tce_invalidate_pe(pe);
Alexey Kardashevskiyb5926432015-06-15 17:49:59 +10002342
2343 pnv_pci_unlink_table_and_group(table_group->tables[num], table_group);
2344
2345 return ret;
2346}
2347#endif
2348
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002349#ifdef CONFIG_IOMMU_API
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002350static unsigned long pnv_pci_ioda2_get_table_size(__u32 page_shift,
2351 __u64 window_size, __u32 levels)
2352{
2353 unsigned long bytes = 0;
2354 const unsigned window_shift = ilog2(window_size);
2355 unsigned entries_shift = window_shift - page_shift;
2356 unsigned table_shift = entries_shift + 3;
2357 unsigned long tce_table_size = max(0x1000UL, 1UL << table_shift);
2358 unsigned long direct_table_size;
2359
2360 if (!levels || (levels > POWERNV_IOMMU_MAX_LEVELS) ||
2361 (window_size > memory_hotplug_max()) ||
2362 !is_power_of_2(window_size))
2363 return 0;
2364
2365 /* Calculate a direct table size from window_size and levels */
2366 entries_shift = (entries_shift + levels - 1) / levels;
2367 table_shift = entries_shift + 3;
2368 table_shift = max_t(unsigned, table_shift, PAGE_SHIFT);
2369 direct_table_size = 1UL << table_shift;
2370
2371 for ( ; levels; --levels) {
2372 bytes += _ALIGN_UP(tce_table_size, direct_table_size);
2373
2374 tce_table_size /= direct_table_size;
2375 tce_table_size <<= 3;
2376 tce_table_size = _ALIGN_UP(tce_table_size, direct_table_size);
2377 }
2378
2379 return bytes;
2380}
2381
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002382static void pnv_ioda2_take_ownership(struct iommu_table_group *table_group)
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002383{
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002384 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2385 table_group);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002386 /* Store @tbl as pnv_pci_ioda2_unset_window() resets it */
2387 struct iommu_table *tbl = pe->table_group.tables[0];
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002388
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002389 pnv_pci_ioda2_set_bypass(pe, false);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002390 pnv_pci_ioda2_unset_window(&pe->table_group, 0);
2391 pnv_ioda2_table_free(tbl);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002392}
2393
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002394static void pnv_ioda2_release_ownership(struct iommu_table_group *table_group)
2395{
2396 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2397 table_group);
2398
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002399 pnv_pci_ioda2_setup_default_config(pe);
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002400}
2401
2402static struct iommu_table_group_ops pnv_pci_ioda2_ops = {
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002403 .get_table_size = pnv_pci_ioda2_get_table_size,
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002404 .create_table = pnv_pci_ioda2_create_table,
2405 .set_window = pnv_pci_ioda2_set_window,
2406 .unset_window = pnv_pci_ioda2_unset_window,
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002407 .take_ownership = pnv_ioda2_take_ownership,
2408 .release_ownership = pnv_ioda2_release_ownership,
2409};
2410#endif
2411
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002412static void pnv_pci_ioda_setup_opal_tce_kill(struct pnv_phb *phb)
2413{
2414 const __be64 *swinvp;
2415
2416 /* OPAL variant of PHB3 invalidated TCEs */
2417 swinvp = of_get_property(phb->hose->dn, "ibm,opal-tce-kill", NULL);
2418 if (!swinvp)
2419 return;
2420
2421 phb->ioda.tce_inval_reg_phys = be64_to_cpup(swinvp);
2422 phb->ioda.tce_inval_reg = ioremap(phb->ioda.tce_inval_reg_phys, 8);
2423}
2424
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002425static __be64 *pnv_pci_ioda2_table_do_alloc_pages(int nid, unsigned shift,
2426 unsigned levels, unsigned long limit,
Alexey Kardashevskiy3ba3a732015-07-20 20:45:51 +10002427 unsigned long *current_offset, unsigned long *total_allocated)
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002428{
2429 struct page *tce_mem = NULL;
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002430 __be64 *addr, *tmp;
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002431 unsigned order = max_t(unsigned, shift, PAGE_SHIFT) - PAGE_SHIFT;
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002432 unsigned long allocated = 1UL << (order + PAGE_SHIFT);
2433 unsigned entries = 1UL << (shift - 3);
2434 long i;
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002435
2436 tce_mem = alloc_pages_node(nid, GFP_KERNEL, order);
2437 if (!tce_mem) {
2438 pr_err("Failed to allocate a TCE memory, order=%d\n", order);
2439 return NULL;
2440 }
2441 addr = page_address(tce_mem);
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002442 memset(addr, 0, allocated);
Alexey Kardashevskiy3ba3a732015-07-20 20:45:51 +10002443 *total_allocated += allocated;
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002444
2445 --levels;
2446 if (!levels) {
2447 *current_offset += allocated;
2448 return addr;
2449 }
2450
2451 for (i = 0; i < entries; ++i) {
2452 tmp = pnv_pci_ioda2_table_do_alloc_pages(nid, shift,
Alexey Kardashevskiy3ba3a732015-07-20 20:45:51 +10002453 levels, limit, current_offset, total_allocated);
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002454 if (!tmp)
2455 break;
2456
2457 addr[i] = cpu_to_be64(__pa(tmp) |
2458 TCE_PCI_READ | TCE_PCI_WRITE);
2459
2460 if (*current_offset >= limit)
2461 break;
2462 }
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002463
2464 return addr;
2465}
2466
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002467static void pnv_pci_ioda2_table_do_free_pages(__be64 *addr,
2468 unsigned long size, unsigned level);
2469
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002470static long pnv_pci_ioda2_table_alloc_pages(int nid, __u64 bus_offset,
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002471 __u32 page_shift, __u64 window_size, __u32 levels,
2472 struct iommu_table *tbl)
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002473{
2474 void *addr;
Alexey Kardashevskiy3ba3a732015-07-20 20:45:51 +10002475 unsigned long offset = 0, level_shift, total_allocated = 0;
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002476 const unsigned window_shift = ilog2(window_size);
2477 unsigned entries_shift = window_shift - page_shift;
2478 unsigned table_shift = max_t(unsigned, entries_shift + 3, PAGE_SHIFT);
2479 const unsigned long tce_table_size = 1UL << table_shift;
2480
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002481 if (!levels || (levels > POWERNV_IOMMU_MAX_LEVELS))
2482 return -EINVAL;
2483
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002484 if ((window_size > memory_hotplug_max()) || !is_power_of_2(window_size))
2485 return -EINVAL;
2486
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002487 /* Adjust direct table size from window_size and levels */
2488 entries_shift = (entries_shift + levels - 1) / levels;
2489 level_shift = entries_shift + 3;
2490 level_shift = max_t(unsigned, level_shift, PAGE_SHIFT);
2491
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002492 /* Allocate TCE table */
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002493 addr = pnv_pci_ioda2_table_do_alloc_pages(nid, level_shift,
Alexey Kardashevskiy3ba3a732015-07-20 20:45:51 +10002494 levels, tce_table_size, &offset, &total_allocated);
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002495
2496 /* addr==NULL means that the first level allocation failed */
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002497 if (!addr)
2498 return -ENOMEM;
2499
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002500 /*
2501 * First level was allocated but some lower level failed as
2502 * we did not allocate as much as we wanted,
2503 * release partially allocated table.
2504 */
2505 if (offset < tce_table_size) {
2506 pnv_pci_ioda2_table_do_free_pages(addr,
2507 1ULL << (level_shift - 3), levels - 1);
2508 return -ENOMEM;
2509 }
2510
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002511 /* Setup linux iommu table */
2512 pnv_pci_setup_iommu_table(tbl, addr, tce_table_size, bus_offset,
2513 page_shift);
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002514 tbl->it_level_size = 1ULL << (level_shift - 3);
2515 tbl->it_indirect_levels = levels - 1;
Alexey Kardashevskiy3ba3a732015-07-20 20:45:51 +10002516 tbl->it_allocated_size = total_allocated;
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002517
2518 pr_devel("Created TCE table: ws=%08llx ts=%lx @%08llx\n",
2519 window_size, tce_table_size, bus_offset);
2520
2521 return 0;
2522}
2523
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002524static void pnv_pci_ioda2_table_do_free_pages(__be64 *addr,
2525 unsigned long size, unsigned level)
2526{
2527 const unsigned long addr_ul = (unsigned long) addr &
2528 ~(TCE_PCI_READ | TCE_PCI_WRITE);
2529
2530 if (level) {
2531 long i;
2532 u64 *tmp = (u64 *) addr_ul;
2533
2534 for (i = 0; i < size; ++i) {
2535 unsigned long hpa = be64_to_cpu(tmp[i]);
2536
2537 if (!(hpa & (TCE_PCI_READ | TCE_PCI_WRITE)))
2538 continue;
2539
2540 pnv_pci_ioda2_table_do_free_pages(__va(hpa), size,
2541 level - 1);
2542 }
2543 }
2544
2545 free_pages(addr_ul, get_order(size << 3));
2546}
2547
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002548static void pnv_pci_ioda2_table_free_pages(struct iommu_table *tbl)
2549{
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002550 const unsigned long size = tbl->it_indirect_levels ?
2551 tbl->it_level_size : tbl->it_size;
2552
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002553 if (!tbl->it_size)
2554 return;
2555
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002556 pnv_pci_ioda2_table_do_free_pages((__be64 *)tbl->it_base, size,
2557 tbl->it_indirect_levels);
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002558}
2559
Gavin Shan373f5652013-04-25 19:21:01 +00002560static void pnv_pci_ioda2_setup_dma_pe(struct pnv_phb *phb,
2561 struct pnv_ioda_pe *pe)
2562{
Gavin Shan373f5652013-04-25 19:21:01 +00002563 int64_t rc;
2564
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002565 /* TVE #1 is selected by PCI address bit 59 */
2566 pe->tce_bypass_base = 1ull << 59;
2567
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10002568 iommu_register_group(&pe->table_group, phb->hose->global_number,
2569 pe->pe_number);
Alexey Kardashevskiyc5773822015-06-05 16:34:55 +10002570
Gavin Shan373f5652013-04-25 19:21:01 +00002571 /* The PE will reserve all possible 32-bits space */
Gavin Shan373f5652013-04-25 19:21:01 +00002572 pe_info(pe, "Setting up 32-bit TCE table at 0..%08x\n",
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002573 phb->ioda.m32_pci_base);
Gavin Shan373f5652013-04-25 19:21:01 +00002574
Alexey Kardashevskiye5aad1e2015-06-05 16:35:16 +10002575 /* Setup linux iommu table */
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002576 pe->table_group.tce32_start = 0;
2577 pe->table_group.tce32_size = phb->ioda.m32_pci_base;
2578 pe->table_group.max_dynamic_windows_supported =
2579 IOMMU_TABLE_GROUP_MAX_TABLES;
2580 pe->table_group.max_levels = POWERNV_IOMMU_MAX_LEVELS;
2581 pe->table_group.pgsizes = SZ_4K | SZ_64K | SZ_16M;
Alexey Kardashevskiye5aad1e2015-06-05 16:35:16 +10002582#ifdef CONFIG_IOMMU_API
2583 pe->table_group.ops = &pnv_pci_ioda2_ops;
2584#endif
2585
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002586 rc = pnv_pci_ioda2_setup_default_config(pe);
Gavin Shan801846d2016-05-03 15:41:34 +10002587 if (rc)
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002588 return;
Gavin Shan373f5652013-04-25 19:21:01 +00002589
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002590 if (pe->flags & PNV_IODA_PE_DEV)
Alexey Kardashevskiy46170822015-06-05 16:34:54 +10002591 iommu_add_device(&pe->pdev->dev);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002592 else if (pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL))
Alexey Kardashevskiyea30e992015-06-05 16:34:53 +10002593 pnv_ioda_setup_bus_dma(pe, pe->pbus);
Gavin Shan373f5652013-04-25 19:21:01 +00002594}
2595
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08002596static void pnv_ioda_setup_dma(struct pnv_phb *phb)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002597{
2598 struct pci_controller *hose = phb->hose;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002599 struct pnv_ioda_pe *pe;
Gavin Shan2b923ed2016-05-05 12:04:16 +10002600 unsigned int weight;
Gavin Shan801846d2016-05-03 15:41:34 +10002601
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002602 /* If we have more PE# than segments available, hand out one
2603 * per PE until we run out and let the rest fail. If not,
2604 * then we assign at least one segment per PE, plus more based
2605 * on the amount of devices under that PE
2606 */
Gavin Shan2b923ed2016-05-05 12:04:16 +10002607 pr_info("PCI: Domain %04x has %d available 32-bit DMA segments\n",
2608 hose->global_number, phb->ioda.dma32_count);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002609
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002610 pnv_pci_ioda_setup_opal_tce_kill(phb);
2611
Gavin Shan2b923ed2016-05-05 12:04:16 +10002612 /* Walk our PE list and configure their DMA segments */
Gavin Shan801846d2016-05-03 15:41:34 +10002613 list_for_each_entry(pe, &phb->ioda.pe_list, list) {
2614 weight = pnv_pci_ioda_pe_dma_weight(pe);
2615 if (!weight)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002616 continue;
Gavin Shan801846d2016-05-03 15:41:34 +10002617
Gavin Shan373f5652013-04-25 19:21:01 +00002618 /*
2619 * For IODA2 compliant PHB3, we needn't care about the weight.
2620 * The all available 32-bits DMA space will be assigned to
2621 * the specific PE.
2622 */
2623 if (phb->type == PNV_PHB_IODA1) {
Gavin Shan2b923ed2016-05-05 12:04:16 +10002624 pnv_pci_ioda1_setup_dma_pe(phb, pe);
Alistair Popple5d2aa712015-12-17 13:43:13 +11002625 } else if (phb->type == PNV_PHB_IODA2) {
Gavin Shan373f5652013-04-25 19:21:01 +00002626 pe_info(pe, "Assign DMA32 space\n");
Gavin Shan373f5652013-04-25 19:21:01 +00002627 pnv_pci_ioda2_setup_dma_pe(phb, pe);
Alistair Popple5d2aa712015-12-17 13:43:13 +11002628 } else if (phb->type == PNV_PHB_NPU) {
2629 /*
2630 * We initialise the DMA space for an NPU PHB
2631 * after setup of the PHB is complete as we
2632 * point the NPU TVT to the the same location
2633 * as the PHB3 TVT.
2634 */
Gavin Shan373f5652013-04-25 19:21:01 +00002635 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002636 }
2637}
2638
2639#ifdef CONFIG_PCI_MSI
Gavin Shan137436c2013-04-25 19:20:59 +00002640static void pnv_ioda2_msi_eoi(struct irq_data *d)
2641{
2642 unsigned int hw_irq = (unsigned int)irqd_to_hwirq(d);
2643 struct irq_chip *chip = irq_data_get_irq_chip(d);
2644 struct pnv_phb *phb = container_of(chip, struct pnv_phb,
2645 ioda.irq_chip);
2646 int64_t rc;
2647
2648 rc = opal_pci_msi_eoi(phb->opal_id, hw_irq);
2649 WARN_ON_ONCE(rc);
2650
2651 icp_native_eoi(d);
2652}
2653
Ian Munsiefd9a1c22014-10-08 19:54:55 +11002654
2655static void set_msi_irq_chip(struct pnv_phb *phb, unsigned int virq)
2656{
2657 struct irq_data *idata;
2658 struct irq_chip *ichip;
2659
2660 if (phb->type != PNV_PHB_IODA2)
2661 return;
2662
2663 if (!phb->ioda.irq_chip_init) {
2664 /*
2665 * First time we setup an MSI IRQ, we need to setup the
2666 * corresponding IRQ chip to route correctly.
2667 */
2668 idata = irq_get_irq_data(virq);
2669 ichip = irq_data_get_irq_chip(idata);
2670 phb->ioda.irq_chip_init = 1;
2671 phb->ioda.irq_chip = *ichip;
2672 phb->ioda.irq_chip.irq_eoi = pnv_ioda2_msi_eoi;
2673 }
2674 irq_set_chip(virq, &phb->ioda.irq_chip);
2675}
2676
Ian Munsie80c49c72014-10-08 19:54:57 +11002677#ifdef CONFIG_CXL_BASE
2678
Ryan Grimm6f963ec2015-01-28 20:16:04 -06002679struct device_node *pnv_pci_get_phb_node(struct pci_dev *dev)
Ian Munsie80c49c72014-10-08 19:54:57 +11002680{
2681 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2682
Ryan Grimm6f963ec2015-01-28 20:16:04 -06002683 return of_node_get(hose->dn);
Ian Munsie80c49c72014-10-08 19:54:57 +11002684}
Ryan Grimm6f963ec2015-01-28 20:16:04 -06002685EXPORT_SYMBOL(pnv_pci_get_phb_node);
Ian Munsie80c49c72014-10-08 19:54:57 +11002686
Ryan Grimm1212aa12015-01-19 11:52:50 -06002687int pnv_phb_to_cxl_mode(struct pci_dev *dev, uint64_t mode)
Ian Munsie80c49c72014-10-08 19:54:57 +11002688{
2689 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2690 struct pnv_phb *phb = hose->private_data;
2691 struct pnv_ioda_pe *pe;
2692 int rc;
2693
2694 pe = pnv_ioda_get_pe(dev);
2695 if (!pe)
2696 return -ENODEV;
2697
2698 pe_info(pe, "Switching PHB to CXL\n");
2699
Ryan Grimm1212aa12015-01-19 11:52:50 -06002700 rc = opal_pci_set_phb_cxl_mode(phb->opal_id, mode, pe->pe_number);
Ian Munsie80c49c72014-10-08 19:54:57 +11002701 if (rc)
2702 dev_err(&dev->dev, "opal_pci_set_phb_cxl_mode failed: %i\n", rc);
2703
2704 return rc;
2705}
Ryan Grimm1212aa12015-01-19 11:52:50 -06002706EXPORT_SYMBOL(pnv_phb_to_cxl_mode);
Ian Munsie80c49c72014-10-08 19:54:57 +11002707
2708/* Find PHB for cxl dev and allocate MSI hwirqs?
2709 * Returns the absolute hardware IRQ number
2710 */
2711int pnv_cxl_alloc_hwirqs(struct pci_dev *dev, int num)
2712{
2713 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2714 struct pnv_phb *phb = hose->private_data;
2715 int hwirq = msi_bitmap_alloc_hwirqs(&phb->msi_bmp, num);
2716
2717 if (hwirq < 0) {
2718 dev_warn(&dev->dev, "Failed to find a free MSI\n");
2719 return -ENOSPC;
2720 }
2721
2722 return phb->msi_base + hwirq;
2723}
2724EXPORT_SYMBOL(pnv_cxl_alloc_hwirqs);
2725
2726void pnv_cxl_release_hwirqs(struct pci_dev *dev, int hwirq, int num)
2727{
2728 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2729 struct pnv_phb *phb = hose->private_data;
2730
2731 msi_bitmap_free_hwirqs(&phb->msi_bmp, hwirq - phb->msi_base, num);
2732}
2733EXPORT_SYMBOL(pnv_cxl_release_hwirqs);
2734
2735void pnv_cxl_release_hwirq_ranges(struct cxl_irq_ranges *irqs,
2736 struct pci_dev *dev)
2737{
2738 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2739 struct pnv_phb *phb = hose->private_data;
2740 int i, hwirq;
2741
2742 for (i = 1; i < CXL_IRQ_RANGES; i++) {
2743 if (!irqs->range[i])
2744 continue;
2745 pr_devel("cxl release irq range 0x%x: offset: 0x%lx limit: %ld\n",
2746 i, irqs->offset[i],
2747 irqs->range[i]);
2748 hwirq = irqs->offset[i] - phb->msi_base;
2749 msi_bitmap_free_hwirqs(&phb->msi_bmp, hwirq,
2750 irqs->range[i]);
2751 }
2752}
2753EXPORT_SYMBOL(pnv_cxl_release_hwirq_ranges);
2754
2755int pnv_cxl_alloc_hwirq_ranges(struct cxl_irq_ranges *irqs,
2756 struct pci_dev *dev, int num)
2757{
2758 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2759 struct pnv_phb *phb = hose->private_data;
2760 int i, hwirq, try;
2761
2762 memset(irqs, 0, sizeof(struct cxl_irq_ranges));
2763
2764 /* 0 is reserved for the multiplexed PSL DSI interrupt */
2765 for (i = 1; i < CXL_IRQ_RANGES && num; i++) {
2766 try = num;
2767 while (try) {
2768 hwirq = msi_bitmap_alloc_hwirqs(&phb->msi_bmp, try);
2769 if (hwirq >= 0)
2770 break;
2771 try /= 2;
2772 }
2773 if (!try)
2774 goto fail;
2775
2776 irqs->offset[i] = phb->msi_base + hwirq;
2777 irqs->range[i] = try;
2778 pr_devel("cxl alloc irq range 0x%x: offset: 0x%lx limit: %li\n",
2779 i, irqs->offset[i], irqs->range[i]);
2780 num -= try;
2781 }
2782 if (num)
2783 goto fail;
2784
2785 return 0;
2786fail:
2787 pnv_cxl_release_hwirq_ranges(irqs, dev);
2788 return -ENOSPC;
2789}
2790EXPORT_SYMBOL(pnv_cxl_alloc_hwirq_ranges);
2791
2792int pnv_cxl_get_irq_count(struct pci_dev *dev)
2793{
2794 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2795 struct pnv_phb *phb = hose->private_data;
2796
2797 return phb->msi_bmp.irq_count;
2798}
2799EXPORT_SYMBOL(pnv_cxl_get_irq_count);
2800
2801int pnv_cxl_ioda_msi_setup(struct pci_dev *dev, unsigned int hwirq,
2802 unsigned int virq)
2803{
2804 struct pci_controller *hose = pci_bus_to_host(dev->bus);
2805 struct pnv_phb *phb = hose->private_data;
2806 unsigned int xive_num = hwirq - phb->msi_base;
2807 struct pnv_ioda_pe *pe;
2808 int rc;
2809
2810 if (!(pe = pnv_ioda_get_pe(dev)))
2811 return -ENODEV;
2812
2813 /* Assign XIVE to PE */
2814 rc = opal_pci_set_xive_pe(phb->opal_id, pe->pe_number, xive_num);
2815 if (rc) {
2816 pe_warn(pe, "%s: OPAL error %d setting msi_base 0x%x "
2817 "hwirq 0x%x XIVE 0x%x PE\n",
2818 pci_name(dev), rc, phb->msi_base, hwirq, xive_num);
2819 return -EIO;
2820 }
2821 set_msi_irq_chip(phb, virq);
2822
2823 return 0;
2824}
2825EXPORT_SYMBOL(pnv_cxl_ioda_msi_setup);
2826#endif
2827
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002828static int pnv_pci_ioda_msi_setup(struct pnv_phb *phb, struct pci_dev *dev,
Gavin Shan137436c2013-04-25 19:20:59 +00002829 unsigned int hwirq, unsigned int virq,
2830 unsigned int is_64, struct msi_msg *msg)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002831{
2832 struct pnv_ioda_pe *pe = pnv_ioda_get_pe(dev);
2833 unsigned int xive_num = hwirq - phb->msi_base;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002834 __be32 data;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002835 int rc;
2836
2837 /* No PE assigned ? bail out ... no MSI for you ! */
2838 if (pe == NULL)
2839 return -ENXIO;
2840
2841 /* Check if we have an MVE */
2842 if (pe->mve_number < 0)
2843 return -ENXIO;
2844
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00002845 /* Force 32-bit MSI on some broken devices */
Benjamin Herrenschmidt36074382014-10-07 16:12:36 +11002846 if (dev->no_64bit_msi)
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00002847 is_64 = 0;
2848
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002849 /* Assign XIVE to PE */
2850 rc = opal_pci_set_xive_pe(phb->opal_id, pe->pe_number, xive_num);
2851 if (rc) {
2852 pr_warn("%s: OPAL error %d setting XIVE %d PE\n",
2853 pci_name(dev), rc, xive_num);
2854 return -EIO;
2855 }
2856
2857 if (is_64) {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002858 __be64 addr64;
2859
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002860 rc = opal_get_msi_64(phb->opal_id, pe->mve_number, xive_num, 1,
2861 &addr64, &data);
2862 if (rc) {
2863 pr_warn("%s: OPAL error %d getting 64-bit MSI data\n",
2864 pci_name(dev), rc);
2865 return -EIO;
2866 }
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002867 msg->address_hi = be64_to_cpu(addr64) >> 32;
2868 msg->address_lo = be64_to_cpu(addr64) & 0xfffffffful;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002869 } else {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002870 __be32 addr32;
2871
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002872 rc = opal_get_msi_32(phb->opal_id, pe->mve_number, xive_num, 1,
2873 &addr32, &data);
2874 if (rc) {
2875 pr_warn("%s: OPAL error %d getting 32-bit MSI data\n",
2876 pci_name(dev), rc);
2877 return -EIO;
2878 }
2879 msg->address_hi = 0;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002880 msg->address_lo = be32_to_cpu(addr32);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002881 }
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002882 msg->data = be32_to_cpu(data);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002883
Ian Munsiefd9a1c22014-10-08 19:54:55 +11002884 set_msi_irq_chip(phb, virq);
Gavin Shan137436c2013-04-25 19:20:59 +00002885
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002886 pr_devel("%s: %s-bit MSI on hwirq %x (xive #%d),"
2887 " address=%x_%08x data=%x PE# %d\n",
2888 pci_name(dev), is_64 ? "64" : "32", hwirq, xive_num,
2889 msg->address_hi, msg->address_lo, data, pe->pe_number);
2890
2891 return 0;
2892}
2893
2894static void pnv_pci_init_ioda_msis(struct pnv_phb *phb)
2895{
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002896 unsigned int count;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002897 const __be32 *prop = of_get_property(phb->hose->dn,
2898 "ibm,opal-msi-ranges", NULL);
2899 if (!prop) {
2900 /* BML Fallback */
2901 prop = of_get_property(phb->hose->dn, "msi-ranges", NULL);
2902 }
2903 if (!prop)
2904 return;
2905
2906 phb->msi_base = be32_to_cpup(prop);
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002907 count = be32_to_cpup(prop + 1);
2908 if (msi_bitmap_alloc(&phb->msi_bmp, count, phb->hose->dn)) {
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002909 pr_err("PCI %d: Failed to allocate MSI bitmap !\n",
2910 phb->hose->global_number);
2911 return;
2912 }
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002913
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002914 phb->msi_setup = pnv_pci_ioda_msi_setup;
2915 phb->msi32_support = 1;
2916 pr_info(" Allocated bitmap for %d MSIs (base IRQ 0x%x)\n",
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002917 count, phb->msi_base);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002918}
2919#else
2920static void pnv_pci_init_ioda_msis(struct pnv_phb *phb) { }
2921#endif /* CONFIG_PCI_MSI */
2922
Wei Yang6e628c72015-03-25 16:23:55 +08002923#ifdef CONFIG_PCI_IOV
2924static void pnv_pci_ioda_fixup_iov_resources(struct pci_dev *pdev)
2925{
Wei Yangf2dd0af2015-10-22 09:22:17 +08002926 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
2927 struct pnv_phb *phb = hose->private_data;
2928 const resource_size_t gate = phb->ioda.m64_segsize >> 2;
Wei Yang6e628c72015-03-25 16:23:55 +08002929 struct resource *res;
2930 int i;
Wei Yangdfcc8d42015-10-22 09:22:18 +08002931 resource_size_t size, total_vf_bar_sz;
Wei Yang6e628c72015-03-25 16:23:55 +08002932 struct pci_dn *pdn;
Wei Yang5b88ec22015-03-25 16:23:58 +08002933 int mul, total_vfs;
Wei Yang6e628c72015-03-25 16:23:55 +08002934
2935 if (!pdev->is_physfn || pdev->is_added)
2936 return;
2937
Wei Yang6e628c72015-03-25 16:23:55 +08002938 pdn = pci_get_pdn(pdev);
2939 pdn->vfs_expanded = 0;
Wei Yangee8222f2015-10-22 09:22:16 +08002940 pdn->m64_single_mode = false;
Wei Yang6e628c72015-03-25 16:23:55 +08002941
Wei Yang5b88ec22015-03-25 16:23:58 +08002942 total_vfs = pci_sriov_get_totalvfs(pdev);
Gavin Shan92b8f132016-05-03 15:41:24 +10002943 mul = phb->ioda.total_pe_num;
Wei Yangdfcc8d42015-10-22 09:22:18 +08002944 total_vf_bar_sz = 0;
Wei Yang5b88ec22015-03-25 16:23:58 +08002945
2946 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
2947 res = &pdev->resource[i + PCI_IOV_RESOURCES];
2948 if (!res->flags || res->parent)
2949 continue;
2950 if (!pnv_pci_is_mem_pref_64(res->flags)) {
Wei Yangb0331852015-10-22 09:22:14 +08002951 dev_warn(&pdev->dev, "Don't support SR-IOV with"
2952 " non M64 VF BAR%d: %pR. \n",
Wei Yang5b88ec22015-03-25 16:23:58 +08002953 i, res);
Wei Yangb0331852015-10-22 09:22:14 +08002954 goto truncate_iov;
Wei Yang5b88ec22015-03-25 16:23:58 +08002955 }
2956
Wei Yangdfcc8d42015-10-22 09:22:18 +08002957 total_vf_bar_sz += pci_iov_resource_size(pdev,
2958 i + PCI_IOV_RESOURCES);
Wei Yang5b88ec22015-03-25 16:23:58 +08002959
Wei Yangf2dd0af2015-10-22 09:22:17 +08002960 /*
2961 * If bigger than quarter of M64 segment size, just round up
2962 * power of two.
2963 *
2964 * Generally, one M64 BAR maps one IOV BAR. To avoid conflict
2965 * with other devices, IOV BAR size is expanded to be
2966 * (total_pe * VF_BAR_size). When VF_BAR_size is half of M64
2967 * segment size , the expanded size would equal to half of the
2968 * whole M64 space size, which will exhaust the M64 Space and
2969 * limit the system flexibility. This is a design decision to
2970 * set the boundary to quarter of the M64 segment size.
2971 */
Wei Yangdfcc8d42015-10-22 09:22:18 +08002972 if (total_vf_bar_sz > gate) {
Wei Yang5b88ec22015-03-25 16:23:58 +08002973 mul = roundup_pow_of_two(total_vfs);
Wei Yangdfcc8d42015-10-22 09:22:18 +08002974 dev_info(&pdev->dev,
2975 "VF BAR Total IOV size %llx > %llx, roundup to %d VFs\n",
2976 total_vf_bar_sz, gate, mul);
Wei Yangee8222f2015-10-22 09:22:16 +08002977 pdn->m64_single_mode = true;
Wei Yang5b88ec22015-03-25 16:23:58 +08002978 break;
2979 }
2980 }
2981
Wei Yang6e628c72015-03-25 16:23:55 +08002982 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
2983 res = &pdev->resource[i + PCI_IOV_RESOURCES];
2984 if (!res->flags || res->parent)
2985 continue;
Wei Yang6e628c72015-03-25 16:23:55 +08002986
Wei Yang6e628c72015-03-25 16:23:55 +08002987 size = pci_iov_resource_size(pdev, i + PCI_IOV_RESOURCES);
Wei Yangee8222f2015-10-22 09:22:16 +08002988 /*
2989 * On PHB3, the minimum size alignment of M64 BAR in single
2990 * mode is 32MB.
2991 */
2992 if (pdn->m64_single_mode && (size < SZ_32M))
2993 goto truncate_iov;
2994 dev_dbg(&pdev->dev, " Fixing VF BAR%d: %pR to\n", i, res);
Wei Yang5b88ec22015-03-25 16:23:58 +08002995 res->end = res->start + size * mul - 1;
Wei Yang6e628c72015-03-25 16:23:55 +08002996 dev_dbg(&pdev->dev, " %pR\n", res);
2997 dev_info(&pdev->dev, "VF BAR%d: %pR (expanded to %d VFs for PE alignment)",
Wei Yang5b88ec22015-03-25 16:23:58 +08002998 i, res, mul);
Wei Yang6e628c72015-03-25 16:23:55 +08002999 }
Wei Yang5b88ec22015-03-25 16:23:58 +08003000 pdn->vfs_expanded = mul;
Wei Yangb0331852015-10-22 09:22:14 +08003001
3002 return;
3003
3004truncate_iov:
3005 /* To save MMIO space, IOV BAR is truncated. */
3006 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
3007 res = &pdev->resource[i + PCI_IOV_RESOURCES];
3008 res->flags = 0;
3009 res->end = res->start - 1;
3010 }
Wei Yang6e628c72015-03-25 16:23:55 +08003011}
3012#endif /* CONFIG_PCI_IOV */
3013
Gavin Shan23e79422016-05-03 15:41:27 +10003014static void pnv_ioda_setup_pe_res(struct pnv_ioda_pe *pe,
3015 struct resource *res)
3016{
3017 struct pnv_phb *phb = pe->phb;
3018 struct pci_bus_region region;
3019 int index;
3020 int64_t rc;
3021
3022 if (!res || !res->flags || res->start > res->end)
3023 return;
3024
3025 if (res->flags & IORESOURCE_IO) {
3026 region.start = res->start - phb->ioda.io_pci_base;
3027 region.end = res->end - phb->ioda.io_pci_base;
3028 index = region.start / phb->ioda.io_segsize;
3029
3030 while (index < phb->ioda.total_pe_num &&
3031 region.start <= region.end) {
3032 phb->ioda.io_segmap[index] = pe->pe_number;
3033 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
3034 pe->pe_number, OPAL_IO_WINDOW_TYPE, 0, index);
3035 if (rc != OPAL_SUCCESS) {
3036 pr_err("%s: Error %lld mapping IO segment#%d to PE#%d\n",
3037 __func__, rc, index, pe->pe_number);
3038 break;
3039 }
3040
3041 region.start += phb->ioda.io_segsize;
3042 index++;
3043 }
3044 } else if ((res->flags & IORESOURCE_MEM) &&
3045 !pnv_pci_is_mem_pref_64(res->flags)) {
3046 region.start = res->start -
3047 phb->hose->mem_offset[0] -
3048 phb->ioda.m32_pci_base;
3049 region.end = res->end -
3050 phb->hose->mem_offset[0] -
3051 phb->ioda.m32_pci_base;
3052 index = region.start / phb->ioda.m32_segsize;
3053
3054 while (index < phb->ioda.total_pe_num &&
3055 region.start <= region.end) {
3056 phb->ioda.m32_segmap[index] = pe->pe_number;
3057 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
3058 pe->pe_number, OPAL_M32_WINDOW_TYPE, 0, index);
3059 if (rc != OPAL_SUCCESS) {
3060 pr_err("%s: Error %lld mapping M32 segment#%d to PE#%d",
3061 __func__, rc, index, pe->pe_number);
3062 break;
3063 }
3064
3065 region.start += phb->ioda.m32_segsize;
3066 index++;
3067 }
3068 }
3069}
3070
Gavin Shan11685be2012-08-20 03:49:16 +00003071/*
3072 * This function is supposed to be called on basis of PE from top
3073 * to bottom style. So the the I/O or MMIO segment assigned to
3074 * parent PE could be overrided by its child PEs if necessary.
3075 */
Gavin Shan23e79422016-05-03 15:41:27 +10003076static void pnv_ioda_setup_pe_seg(struct pnv_ioda_pe *pe)
Gavin Shan11685be2012-08-20 03:49:16 +00003077{
Gavin Shan69d733e2016-05-03 15:41:28 +10003078 struct pci_dev *pdev;
Gavin Shan23e79422016-05-03 15:41:27 +10003079 int i;
Gavin Shan11685be2012-08-20 03:49:16 +00003080
3081 /*
3082 * NOTE: We only care PCI bus based PE for now. For PCI
3083 * device based PE, for example SRIOV sensitive VF should
3084 * be figured out later.
3085 */
3086 BUG_ON(!(pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL)));
3087
Gavin Shan69d733e2016-05-03 15:41:28 +10003088 list_for_each_entry(pdev, &pe->pbus->devices, bus_list) {
3089 for (i = 0; i <= PCI_ROM_RESOURCE; i++)
3090 pnv_ioda_setup_pe_res(pe, &pdev->resource[i]);
3091
3092 /*
3093 * If the PE contains all subordinate PCI buses, the
3094 * windows of the child bridges should be mapped to
3095 * the PE as well.
3096 */
3097 if (!(pe->flags & PNV_IODA_PE_BUS_ALL) || !pci_is_bridge(pdev))
3098 continue;
3099 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++)
3100 pnv_ioda_setup_pe_res(pe,
3101 &pdev->resource[PCI_BRIDGE_RESOURCES + i]);
3102 }
Gavin Shan11685be2012-08-20 03:49:16 +00003103}
3104
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08003105static void pnv_pci_ioda_setup_seg(void)
Gavin Shan11685be2012-08-20 03:49:16 +00003106{
3107 struct pci_controller *tmp, *hose;
3108 struct pnv_phb *phb;
3109 struct pnv_ioda_pe *pe;
3110
3111 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
3112 phb = hose->private_data;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003113
3114 /* NPU PHB does not support IO or MMIO segmentation */
3115 if (phb->type == PNV_PHB_NPU)
3116 continue;
3117
Gavin Shan11685be2012-08-20 03:49:16 +00003118 list_for_each_entry(pe, &phb->ioda.pe_list, list) {
Gavin Shan23e79422016-05-03 15:41:27 +10003119 pnv_ioda_setup_pe_seg(pe);
Gavin Shan11685be2012-08-20 03:49:16 +00003120 }
3121 }
3122}
3123
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08003124static void pnv_pci_ioda_setup_DMA(void)
Gavin Shan13395c42012-08-20 03:49:17 +00003125{
3126 struct pci_controller *hose, *tmp;
Gavin Shandb1266c2012-08-20 03:49:18 +00003127 struct pnv_phb *phb;
Gavin Shan13395c42012-08-20 03:49:17 +00003128
3129 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
3130 pnv_ioda_setup_dma(hose->private_data);
Gavin Shandb1266c2012-08-20 03:49:18 +00003131
3132 /* Mark the PHB initialization done */
3133 phb = hose->private_data;
3134 phb->initialized = 1;
Gavin Shan13395c42012-08-20 03:49:17 +00003135 }
3136}
3137
Gavin Shan37c367f2013-06-20 18:13:25 +08003138static void pnv_pci_ioda_create_dbgfs(void)
3139{
3140#ifdef CONFIG_DEBUG_FS
3141 struct pci_controller *hose, *tmp;
3142 struct pnv_phb *phb;
3143 char name[16];
3144
3145 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
3146 phb = hose->private_data;
3147
3148 sprintf(name, "PCI%04x", hose->global_number);
3149 phb->dbgfs = debugfs_create_dir(name, powerpc_debugfs_root);
3150 if (!phb->dbgfs)
3151 pr_warning("%s: Error on creating debugfs on PHB#%x\n",
3152 __func__, hose->global_number);
3153 }
3154#endif /* CONFIG_DEBUG_FS */
3155}
3156
Alistair Popple5d2aa712015-12-17 13:43:13 +11003157static void pnv_npu_ioda_fixup(void)
3158{
3159 bool enable_bypass;
3160 struct pci_controller *hose, *tmp;
3161 struct pnv_phb *phb;
3162 struct pnv_ioda_pe *pe;
Gavin Shan801846d2016-05-03 15:41:34 +10003163 unsigned int weight;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003164
3165 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
3166 phb = hose->private_data;
3167 if (phb->type != PNV_PHB_NPU)
3168 continue;
3169
Gavin Shan801846d2016-05-03 15:41:34 +10003170 list_for_each_entry(pe, &phb->ioda.pe_list, list) {
3171 weight = pnv_pci_ioda_pe_dma_weight(pe);
3172 if (WARN_ON(!weight))
3173 continue;
3174
Alistair Popple5d2aa712015-12-17 13:43:13 +11003175 enable_bypass = dma_get_mask(&pe->pdev->dev) ==
3176 DMA_BIT_MASK(64);
3177 pnv_npu_init_dma_pe(pe);
3178 pnv_npu_dma_set_bypass(pe, enable_bypass);
3179 }
3180 }
3181}
3182
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08003183static void pnv_pci_ioda_fixup(void)
Gavin Shanfb446ad2012-08-20 03:49:14 +00003184{
3185 pnv_pci_ioda_setup_PEs();
Gavin Shan11685be2012-08-20 03:49:16 +00003186 pnv_pci_ioda_setup_seg();
Gavin Shan13395c42012-08-20 03:49:17 +00003187 pnv_pci_ioda_setup_DMA();
Gavin Shane9cc17d2013-06-20 13:21:14 +08003188
Gavin Shan37c367f2013-06-20 18:13:25 +08003189 pnv_pci_ioda_create_dbgfs();
3190
Gavin Shane9cc17d2013-06-20 13:21:14 +08003191#ifdef CONFIG_EEH
Gavin Shane9cc17d2013-06-20 13:21:14 +08003192 eeh_init();
Mike Qiudadcd6d2014-06-26 02:58:47 -04003193 eeh_addr_cache_build();
Gavin Shane9cc17d2013-06-20 13:21:14 +08003194#endif
Alistair Popple5d2aa712015-12-17 13:43:13 +11003195
3196 /* Link NPU IODA tables to their PCI devices. */
3197 pnv_npu_ioda_fixup();
Gavin Shanfb446ad2012-08-20 03:49:14 +00003198}
3199
Gavin Shan271fd032012-09-11 16:59:47 -06003200/*
3201 * Returns the alignment for I/O or memory windows for P2P
3202 * bridges. That actually depends on how PEs are segmented.
3203 * For now, we return I/O or M32 segment size for PE sensitive
3204 * P2P bridges. Otherwise, the default values (4KiB for I/O,
3205 * 1MiB for memory) will be returned.
3206 *
3207 * The current PCI bus might be put into one PE, which was
3208 * create against the parent PCI bridge. For that case, we
3209 * needn't enlarge the alignment so that we can save some
3210 * resources.
3211 */
3212static resource_size_t pnv_pci_window_alignment(struct pci_bus *bus,
3213 unsigned long type)
3214{
3215 struct pci_dev *bridge;
3216 struct pci_controller *hose = pci_bus_to_host(bus);
3217 struct pnv_phb *phb = hose->private_data;
3218 int num_pci_bridges = 0;
3219
3220 bridge = bus->self;
3221 while (bridge) {
3222 if (pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE) {
3223 num_pci_bridges++;
3224 if (num_pci_bridges >= 2)
3225 return 1;
3226 }
3227
3228 bridge = bridge->bus->self;
3229 }
3230
Guo Chao262af552014-07-21 14:42:30 +10003231 /* We fail back to M32 if M64 isn't supported */
3232 if (phb->ioda.m64_segsize &&
3233 pnv_pci_is_mem_pref_64(type))
3234 return phb->ioda.m64_segsize;
Gavin Shan271fd032012-09-11 16:59:47 -06003235 if (type & IORESOURCE_MEM)
3236 return phb->ioda.m32_segsize;
3237
3238 return phb->ioda.io_segsize;
3239}
3240
Wei Yang5350ab32015-03-25 16:23:56 +08003241#ifdef CONFIG_PCI_IOV
3242static resource_size_t pnv_pci_iov_resource_alignment(struct pci_dev *pdev,
3243 int resno)
3244{
Wei Yangee8222f2015-10-22 09:22:16 +08003245 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
3246 struct pnv_phb *phb = hose->private_data;
Wei Yang5350ab32015-03-25 16:23:56 +08003247 struct pci_dn *pdn = pci_get_pdn(pdev);
Wei Yang7fbe7a92015-10-22 09:22:15 +08003248 resource_size_t align;
Wei Yang5350ab32015-03-25 16:23:56 +08003249
Wei Yang7fbe7a92015-10-22 09:22:15 +08003250 /*
3251 * On PowerNV platform, IOV BAR is mapped by M64 BAR to enable the
3252 * SR-IOV. While from hardware perspective, the range mapped by M64
3253 * BAR should be size aligned.
3254 *
Wei Yangee8222f2015-10-22 09:22:16 +08003255 * When IOV BAR is mapped with M64 BAR in Single PE mode, the extra
3256 * powernv-specific hardware restriction is gone. But if just use the
3257 * VF BAR size as the alignment, PF BAR / VF BAR may be allocated with
3258 * in one segment of M64 #15, which introduces the PE conflict between
3259 * PF and VF. Based on this, the minimum alignment of an IOV BAR is
3260 * m64_segsize.
3261 *
Wei Yang7fbe7a92015-10-22 09:22:15 +08003262 * This function returns the total IOV BAR size if M64 BAR is in
3263 * Shared PE mode or just VF BAR size if not.
Wei Yangee8222f2015-10-22 09:22:16 +08003264 * If the M64 BAR is in Single PE mode, return the VF BAR size or
3265 * M64 segment size if IOV BAR size is less.
Wei Yang7fbe7a92015-10-22 09:22:15 +08003266 */
Wei Yang5350ab32015-03-25 16:23:56 +08003267 align = pci_iov_resource_size(pdev, resno);
Wei Yang7fbe7a92015-10-22 09:22:15 +08003268 if (!pdn->vfs_expanded)
3269 return align;
Wei Yangee8222f2015-10-22 09:22:16 +08003270 if (pdn->m64_single_mode)
3271 return max(align, (resource_size_t)phb->ioda.m64_segsize);
Wei Yang5350ab32015-03-25 16:23:56 +08003272
Wei Yang7fbe7a92015-10-22 09:22:15 +08003273 return pdn->vfs_expanded * align;
Wei Yang5350ab32015-03-25 16:23:56 +08003274}
3275#endif /* CONFIG_PCI_IOV */
3276
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003277/* Prevent enabling devices for which we couldn't properly
3278 * assign a PE
3279 */
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003280static bool pnv_pci_enable_device_hook(struct pci_dev *dev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003281{
Gavin Shandb1266c2012-08-20 03:49:18 +00003282 struct pci_controller *hose = pci_bus_to_host(dev->bus);
3283 struct pnv_phb *phb = hose->private_data;
3284 struct pci_dn *pdn;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003285
Gavin Shandb1266c2012-08-20 03:49:18 +00003286 /* The function is probably called while the PEs have
3287 * not be created yet. For example, resource reassignment
3288 * during PCI probe period. We just skip the check if
3289 * PEs isn't ready.
3290 */
3291 if (!phb->initialized)
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003292 return true;
Gavin Shandb1266c2012-08-20 03:49:18 +00003293
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00003294 pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003295 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003296 return false;
Gavin Shandb1266c2012-08-20 03:49:18 +00003297
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003298 return true;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003299}
3300
Michael Neuling7a8e6bb2015-05-27 16:06:59 +10003301static void pnv_pci_ioda_shutdown(struct pci_controller *hose)
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +10003302{
Michael Neuling7a8e6bb2015-05-27 16:06:59 +10003303 struct pnv_phb *phb = hose->private_data;
3304
Gavin Shand1a85ee2014-09-30 12:39:05 +10003305 opal_pci_reset(phb->opal_id, OPAL_RESET_PCI_IODA_TABLE,
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +10003306 OPAL_ASSERT_RESET);
3307}
3308
Daniel Axtens92ae0352015-04-28 15:12:05 +10003309static const struct pci_controller_ops pnv_pci_ioda_controller_ops = {
Gavin Shancb4224c2016-05-03 15:41:21 +10003310 .dma_dev_setup = pnv_pci_dma_dev_setup,
3311 .dma_bus_setup = pnv_pci_dma_bus_setup,
Daniel Axtens92ae0352015-04-28 15:12:05 +10003312#ifdef CONFIG_PCI_MSI
Gavin Shancb4224c2016-05-03 15:41:21 +10003313 .setup_msi_irqs = pnv_setup_msi_irqs,
3314 .teardown_msi_irqs = pnv_teardown_msi_irqs,
Daniel Axtens92ae0352015-04-28 15:12:05 +10003315#endif
Gavin Shancb4224c2016-05-03 15:41:21 +10003316 .enable_device_hook = pnv_pci_enable_device_hook,
3317 .window_alignment = pnv_pci_window_alignment,
3318 .reset_secondary_bus = pnv_pci_reset_secondary_bus,
3319 .dma_set_mask = pnv_pci_ioda_dma_set_mask,
3320 .dma_get_required_mask = pnv_pci_ioda_dma_get_required_mask,
3321 .shutdown = pnv_pci_ioda_shutdown,
Daniel Axtens92ae0352015-04-28 15:12:05 +10003322};
3323
Alistair Popple5d2aa712015-12-17 13:43:13 +11003324static const struct pci_controller_ops pnv_npu_ioda_controller_ops = {
Gavin Shancb4224c2016-05-03 15:41:21 +10003325 .dma_dev_setup = pnv_pci_dma_dev_setup,
Alistair Popple5d2aa712015-12-17 13:43:13 +11003326#ifdef CONFIG_PCI_MSI
Gavin Shancb4224c2016-05-03 15:41:21 +10003327 .setup_msi_irqs = pnv_setup_msi_irqs,
3328 .teardown_msi_irqs = pnv_teardown_msi_irqs,
Alistair Popple5d2aa712015-12-17 13:43:13 +11003329#endif
Gavin Shancb4224c2016-05-03 15:41:21 +10003330 .enable_device_hook = pnv_pci_enable_device_hook,
3331 .window_alignment = pnv_pci_window_alignment,
3332 .reset_secondary_bus = pnv_pci_reset_secondary_bus,
3333 .dma_set_mask = pnv_npu_dma_set_mask,
3334 .shutdown = pnv_pci_ioda_shutdown,
Alistair Popple5d2aa712015-12-17 13:43:13 +11003335};
3336
Anton Blancharde51df2c2014-08-20 08:55:18 +10003337static void __init pnv_pci_init_ioda_phb(struct device_node *np,
3338 u64 hub_id, int ioda_type)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003339{
3340 struct pci_controller *hose;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003341 struct pnv_phb *phb;
Gavin Shan2b923ed2016-05-05 12:04:16 +10003342 unsigned long size, m64map_off, m32map_off, pemap_off;
3343 unsigned long iomap_off = 0, dma32map_off = 0;
Alistair Popplec681b932013-09-23 12:04:57 +10003344 const __be64 *prop64;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10003345 const __be32 *prop32;
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003346 int len;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003347 unsigned int segno;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003348 u64 phb_id;
3349 void *aux;
3350 long rc;
3351
Gavin Shan58d714e2013-07-31 16:47:00 +08003352 pr_info("Initializing IODA%d OPAL PHB %s\n", ioda_type, np->full_name);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003353
3354 prop64 = of_get_property(np, "ibm,opal-phbid", NULL);
3355 if (!prop64) {
3356 pr_err(" Missing \"ibm,opal-phbid\" property !\n");
3357 return;
3358 }
3359 phb_id = be64_to_cpup(prop64);
3360 pr_debug(" PHB-ID : 0x%016llx\n", phb_id);
3361
Michael Ellermane39f223f2014-11-18 16:47:35 +11003362 phb = memblock_virt_alloc(sizeof(struct pnv_phb), 0);
Gavin Shan58d714e2013-07-31 16:47:00 +08003363
3364 /* Allocate PCI controller */
Gavin Shan58d714e2013-07-31 16:47:00 +08003365 phb->hose = hose = pcibios_alloc_controller(np);
3366 if (!phb->hose) {
3367 pr_err(" Can't allocate PCI controller for %s\n",
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003368 np->full_name);
Michael Ellermane39f223f2014-11-18 16:47:35 +11003369 memblock_free(__pa(phb), sizeof(struct pnv_phb));
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003370 return;
3371 }
3372
3373 spin_lock_init(&phb->lock);
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003374 prop32 = of_get_property(np, "bus-range", &len);
3375 if (prop32 && len == 8) {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10003376 hose->first_busno = be32_to_cpu(prop32[0]);
3377 hose->last_busno = be32_to_cpu(prop32[1]);
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003378 } else {
3379 pr_warn(" Broken <bus-range> on %s\n", np->full_name);
3380 hose->first_busno = 0;
3381 hose->last_busno = 0xff;
3382 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003383 hose->private_data = phb;
Gavin Shane9cc17d2013-06-20 13:21:14 +08003384 phb->hub_id = hub_id;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003385 phb->opal_id = phb_id;
Gavin Shanaa0c0332013-04-25 19:20:57 +00003386 phb->type = ioda_type;
Wei Yang781a8682015-03-25 16:23:57 +08003387 mutex_init(&phb->ioda.pe_alloc_mutex);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003388
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +00003389 /* Detect specific models for error handling */
3390 if (of_device_is_compatible(np, "ibm,p7ioc-pciex"))
3391 phb->model = PNV_PHB_MODEL_P7IOC;
Benjamin Herrenschmidtf3d40c22013-05-04 14:24:32 +00003392 else if (of_device_is_compatible(np, "ibm,power8-pciex"))
Gavin Shanaa0c0332013-04-25 19:20:57 +00003393 phb->model = PNV_PHB_MODEL_PHB3;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003394 else if (of_device_is_compatible(np, "ibm,power8-npu-pciex"))
3395 phb->model = PNV_PHB_MODEL_NPU;
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +00003396 else
3397 phb->model = PNV_PHB_MODEL_UNKNOWN;
3398
Gavin Shanaa0c0332013-04-25 19:20:57 +00003399 /* Parse 32-bit and IO ranges (if any) */
Gavin Shan2f1ec022013-07-31 16:47:02 +08003400 pci_process_bridge_OF_ranges(hose, np, !hose->global_number);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003401
Gavin Shanaa0c0332013-04-25 19:20:57 +00003402 /* Get registers */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003403 phb->regs = of_iomap(np, 0);
3404 if (phb->regs == NULL)
3405 pr_err(" Failed to map registers !\n");
3406
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003407 /* Initialize more IODA stuff */
Gavin Shan92b8f132016-05-03 15:41:24 +10003408 phb->ioda.total_pe_num = 1;
Gavin Shanaa0c0332013-04-25 19:20:57 +00003409 prop32 = of_get_property(np, "ibm,opal-num-pes", NULL);
Gavin Shan36954dc2013-11-04 16:32:47 +08003410 if (prop32)
Gavin Shan92b8f132016-05-03 15:41:24 +10003411 phb->ioda.total_pe_num = be32_to_cpup(prop32);
Gavin Shan36954dc2013-11-04 16:32:47 +08003412 prop32 = of_get_property(np, "ibm,opal-reserved-pe", NULL);
3413 if (prop32)
Gavin Shan92b8f132016-05-03 15:41:24 +10003414 phb->ioda.reserved_pe_idx = be32_to_cpup(prop32);
Guo Chao262af552014-07-21 14:42:30 +10003415
3416 /* Parse 64-bit MMIO range */
3417 pnv_ioda_parse_m64_window(phb);
3418
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003419 phb->ioda.m32_size = resource_size(&hose->mem_resources[0]);
Gavin Shanaa0c0332013-04-25 19:20:57 +00003420 /* FW Has already off top 64k of M32 space (MSI space) */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003421 phb->ioda.m32_size += 0x10000;
3422
Gavin Shan92b8f132016-05-03 15:41:24 +10003423 phb->ioda.m32_segsize = phb->ioda.m32_size / phb->ioda.total_pe_num;
Benjamin Herrenschmidt3fd47f02013-05-06 13:40:40 +10003424 phb->ioda.m32_pci_base = hose->mem_resources[0].start - hose->mem_offset[0];
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003425 phb->ioda.io_size = hose->pci_io_size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003426 phb->ioda.io_segsize = phb->ioda.io_size / phb->ioda.total_pe_num;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003427 phb->ioda.io_pci_base = 0; /* XXX calculate this ? */
3428
Gavin Shan2b923ed2016-05-05 12:04:16 +10003429 /* Calculate how many 32-bit TCE segments we have */
3430 phb->ioda.dma32_count = phb->ioda.m32_pci_base /
3431 PNV_IODA1_DMA32_SEGSIZE;
3432
Gavin Shanc35d2a82013-07-31 16:47:04 +08003433 /* Allocate aux data & arrays. We don't have IO ports on PHB3 */
Gavin Shan92b8f132016-05-03 15:41:24 +10003434 size = _ALIGN_UP(phb->ioda.total_pe_num / 8, sizeof(unsigned long));
Gavin Shan93289d82016-05-03 15:41:29 +10003435 m64map_off = size;
3436 size += phb->ioda.total_pe_num * sizeof(phb->ioda.m64_segmap[0]);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003437 m32map_off = size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003438 size += phb->ioda.total_pe_num * sizeof(phb->ioda.m32_segmap[0]);
Gavin Shanc35d2a82013-07-31 16:47:04 +08003439 if (phb->type == PNV_PHB_IODA1) {
3440 iomap_off = size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003441 size += phb->ioda.total_pe_num * sizeof(phb->ioda.io_segmap[0]);
Gavin Shan2b923ed2016-05-05 12:04:16 +10003442 dma32map_off = size;
3443 size += phb->ioda.dma32_count *
3444 sizeof(phb->ioda.dma32_segmap[0]);
Gavin Shanc35d2a82013-07-31 16:47:04 +08003445 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003446 pemap_off = size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003447 size += phb->ioda.total_pe_num * sizeof(struct pnv_ioda_pe);
Michael Ellermane39f223f2014-11-18 16:47:35 +11003448 aux = memblock_virt_alloc(size, 0);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003449 phb->ioda.pe_alloc = aux;
Gavin Shan93289d82016-05-03 15:41:29 +10003450 phb->ioda.m64_segmap = aux + m64map_off;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003451 phb->ioda.m32_segmap = aux + m32map_off;
Gavin Shan93289d82016-05-03 15:41:29 +10003452 for (segno = 0; segno < phb->ioda.total_pe_num; segno++) {
3453 phb->ioda.m64_segmap[segno] = IODA_INVALID_PE;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003454 phb->ioda.m32_segmap[segno] = IODA_INVALID_PE;
Gavin Shan93289d82016-05-03 15:41:29 +10003455 }
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003456 if (phb->type == PNV_PHB_IODA1) {
Gavin Shanc35d2a82013-07-31 16:47:04 +08003457 phb->ioda.io_segmap = aux + iomap_off;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003458 for (segno = 0; segno < phb->ioda.total_pe_num; segno++)
3459 phb->ioda.io_segmap[segno] = IODA_INVALID_PE;
Gavin Shan2b923ed2016-05-05 12:04:16 +10003460
3461 phb->ioda.dma32_segmap = aux + dma32map_off;
3462 for (segno = 0; segno < phb->ioda.dma32_count; segno++)
3463 phb->ioda.dma32_segmap[segno] = IODA_INVALID_PE;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003464 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003465 phb->ioda.pe_array = aux + pemap_off;
Gavin Shan92b8f132016-05-03 15:41:24 +10003466 set_bit(phb->ioda.reserved_pe_idx, phb->ioda.pe_alloc);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003467
3468 INIT_LIST_HEAD(&phb->ioda.pe_list);
Wei Yang781a8682015-03-25 16:23:57 +08003469 mutex_init(&phb->ioda.pe_list_mutex);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003470
3471 /* Calculate how many 32-bit TCE segments we have */
Gavin Shan2b923ed2016-05-05 12:04:16 +10003472 phb->ioda.dma32_count = phb->ioda.m32_pci_base /
Gavin Shanacce9712016-05-03 15:41:33 +10003473 PNV_IODA1_DMA32_SEGSIZE;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003474
Gavin Shanaa0c0332013-04-25 19:20:57 +00003475#if 0 /* We should really do that ... */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003476 rc = opal_pci_set_phb_mem_window(opal->phb_id,
3477 window_type,
3478 window_num,
3479 starting_real_address,
3480 starting_pci_address,
3481 segment_size);
3482#endif
3483
Guo Chao262af552014-07-21 14:42:30 +10003484 pr_info(" %03d (%03d) PE's M32: 0x%x [segment=0x%x]\n",
Gavin Shan92b8f132016-05-03 15:41:24 +10003485 phb->ioda.total_pe_num, phb->ioda.reserved_pe_idx,
Guo Chao262af552014-07-21 14:42:30 +10003486 phb->ioda.m32_size, phb->ioda.m32_segsize);
3487 if (phb->ioda.m64_size)
3488 pr_info(" M64: 0x%lx [segment=0x%lx]\n",
3489 phb->ioda.m64_size, phb->ioda.m64_segsize);
3490 if (phb->ioda.io_size)
3491 pr_info(" IO: 0x%x [segment=0x%x]\n",
3492 phb->ioda.io_size, phb->ioda.io_segsize);
3493
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003494
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003495 phb->hose->ops = &pnv_pci_ops;
Gavin Shan49dec922014-07-21 14:42:33 +10003496 phb->get_pe_state = pnv_ioda_get_pe_state;
3497 phb->freeze_pe = pnv_ioda_freeze_pe;
3498 phb->unfreeze_pe = pnv_ioda_unfreeze_pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003499
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003500 /* Setup TCEs */
3501 phb->dma_dev_setup = pnv_pci_ioda_dma_dev_setup;
3502
3503 /* Setup MSI support */
3504 pnv_pci_init_ioda_msis(phb);
3505
Gavin Shanc40a4212012-08-20 03:49:20 +00003506 /*
3507 * We pass the PCI probe flag PCI_REASSIGN_ALL_RSRC here
3508 * to let the PCI core do resource assignment. It's supposed
3509 * that the PCI core will do correct I/O and MMIO alignment
3510 * for the P2P bridge bars so that each PCI bus (excluding
3511 * the child P2P bridges) can form individual PE.
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003512 */
Gavin Shanfb446ad2012-08-20 03:49:14 +00003513 ppc_md.pcibios_fixup = pnv_pci_ioda_fixup;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003514
3515 if (phb->type == PNV_PHB_NPU)
3516 hose->controller_ops = pnv_npu_ioda_controller_ops;
3517 else
3518 hose->controller_ops = pnv_pci_ioda_controller_ops;
Michael Ellermanad30cb92015-04-14 09:29:23 +10003519
Wei Yang6e628c72015-03-25 16:23:55 +08003520#ifdef CONFIG_PCI_IOV
3521 ppc_md.pcibios_fixup_sriov = pnv_pci_ioda_fixup_iov_resources;
Wei Yang5350ab32015-03-25 16:23:56 +08003522 ppc_md.pcibios_iov_resource_alignment = pnv_pci_iov_resource_alignment;
Michael Ellermanad30cb92015-04-14 09:29:23 +10003523#endif
3524
Gavin Shanc40a4212012-08-20 03:49:20 +00003525 pci_add_flags(PCI_REASSIGN_ALL_RSRC);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003526
3527 /* Reset IODA tables to a clean state */
Gavin Shand1a85ee2014-09-30 12:39:05 +10003528 rc = opal_pci_reset(phb_id, OPAL_RESET_PCI_IODA_TABLE, OPAL_ASSERT_RESET);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003529 if (rc)
Benjamin Herrenschmidtf11fe552011-11-29 18:22:50 +00003530 pr_warning(" OPAL Error %ld performing IODA table reset !\n", rc);
Gavin Shan361f2a22014-04-24 18:00:25 +10003531
3532 /* If we're running in kdump kerenl, the previous kerenl never
3533 * shutdown PCI devices correctly. We already got IODA table
3534 * cleaned out. So we have to issue PHB reset to stop all PCI
3535 * transactions from previous kerenl.
3536 */
3537 if (is_kdump_kernel()) {
3538 pr_info(" Issue PHB reset ...\n");
Gavin Shancadf3642015-02-16 14:45:47 +11003539 pnv_eeh_phb_reset(hose, EEH_RESET_FUNDAMENTAL);
3540 pnv_eeh_phb_reset(hose, EEH_RESET_DEACTIVATE);
Gavin Shan361f2a22014-04-24 18:00:25 +10003541 }
Guo Chao262af552014-07-21 14:42:30 +10003542
Gavin Shan9e9e8932014-11-12 13:36:05 +11003543 /* Remove M64 resource if we can't configure it successfully */
3544 if (!phb->init_m64 || phb->init_m64(phb))
Guo Chao262af552014-07-21 14:42:30 +10003545 hose->mem_resources[1].flags = 0;
Gavin Shanaa0c0332013-04-25 19:20:57 +00003546}
3547
Bjorn Helgaas67975002013-07-02 12:20:03 -06003548void __init pnv_pci_init_ioda2_phb(struct device_node *np)
Gavin Shanaa0c0332013-04-25 19:20:57 +00003549{
Gavin Shane9cc17d2013-06-20 13:21:14 +08003550 pnv_pci_init_ioda_phb(np, 0, PNV_PHB_IODA2);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003551}
3552
Alistair Popple5d2aa712015-12-17 13:43:13 +11003553void __init pnv_pci_init_npu_phb(struct device_node *np)
3554{
3555 pnv_pci_init_ioda_phb(np, 0, PNV_PHB_NPU);
3556}
3557
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003558void __init pnv_pci_init_ioda_hub(struct device_node *np)
3559{
3560 struct device_node *phbn;
Alistair Popplec681b932013-09-23 12:04:57 +10003561 const __be64 *prop64;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003562 u64 hub_id;
3563
3564 pr_info("Probing IODA IO-Hub %s\n", np->full_name);
3565
3566 prop64 = of_get_property(np, "ibm,opal-hubid", NULL);
3567 if (!prop64) {
3568 pr_err(" Missing \"ibm,opal-hubid\" property !\n");
3569 return;
3570 }
3571 hub_id = be64_to_cpup(prop64);
3572 pr_devel(" HUB-ID : 0x%016llx\n", hub_id);
3573
3574 /* Count child PHBs */
3575 for_each_child_of_node(np, phbn) {
3576 /* Look for IODA1 PHBs */
3577 if (of_device_is_compatible(phbn, "ibm,ioda-phb"))
Gavin Shane9cc17d2013-06-20 13:21:14 +08003578 pnv_pci_init_ioda_phb(phbn, hub_id, PNV_PHB_IODA1);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003579 }
3580}