blob: 326ca6288bb12969a8941b471c1cc3bf3a76f02d [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>
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000017#include <linux/delay.h>
18#include <linux/string.h>
19#include <linux/init.h>
20#include <linux/bootmem.h>
21#include <linux/irq.h>
22#include <linux/io.h>
23#include <linux/msi.h>
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +110024#include <linux/memblock.h>
Alexey Kardashevskiyac9a5882015-06-05 16:34:56 +100025#include <linux/iommu.h>
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +100026#include <linux/rculist.h>
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +100027#include <linux/sizes.h>
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000028
29#include <asm/sections.h>
30#include <asm/io.h>
31#include <asm/prom.h>
32#include <asm/pci-bridge.h>
33#include <asm/machdep.h>
Gavin Shanfb1b55d2013-03-05 21:12:37 +000034#include <asm/msi_bitmap.h>
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000035#include <asm/ppc-pci.h>
36#include <asm/opal.h>
37#include <asm/iommu.h>
38#include <asm/tce.h>
Gavin Shan137436c2013-04-25 19:20:59 +000039#include <asm/xics.h>
Michael Ellerman7644d582017-02-10 12:04:56 +110040#include <asm/debugfs.h>
Guo Chao262af552014-07-21 14:42:30 +100041#include <asm/firmware.h>
Ian Munsie80c49c72014-10-08 19:54:57 +110042#include <asm/pnv-pci.h>
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +100043#include <asm/mmzone.h>
Ian Munsie80c49c72014-10-08 19:54:57 +110044
Michael Neulingec249dd2015-05-27 16:07:16 +100045#include <misc/cxl-base.h>
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000046
47#include "powernv.h"
48#include "pci.h"
Hari Vyas44bda4b2018-07-03 14:35:41 +053049#include "../../../../drivers/pci/pci.h"
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000050
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
Frederic Barrat7f2c39e2018-01-23 12:31:36 +010055static const char * const pnv_phb_names[] = { "IODA1", "IODA2", "NPU_NVLINK",
56 "NPU_OCAPI" };
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +100057
Alexey Kardashevskiy7d623e42016-04-29 18:55:21 +100058void pe_level_printk(const struct pnv_ioda_pe *pe, const char *level,
Joe Perches6d31c2f2014-09-21 10:55:06 -070059 const char *fmt, ...)
60{
61 struct va_format vaf;
62 va_list args;
63 char pfix[32];
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000064
Joe Perches6d31c2f2014-09-21 10:55:06 -070065 va_start(args, fmt);
66
67 vaf.fmt = fmt;
68 vaf.va = &args;
69
Wei Yang781a8682015-03-25 16:23:57 +080070 if (pe->flags & PNV_IODA_PE_DEV)
Joe Perches6d31c2f2014-09-21 10:55:06 -070071 strlcpy(pfix, dev_name(&pe->pdev->dev), sizeof(pfix));
Wei Yang781a8682015-03-25 16:23:57 +080072 else if (pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL))
Joe Perches6d31c2f2014-09-21 10:55:06 -070073 sprintf(pfix, "%04x:%02x ",
74 pci_domain_nr(pe->pbus), pe->pbus->number);
Wei Yang781a8682015-03-25 16:23:57 +080075#ifdef CONFIG_PCI_IOV
76 else if (pe->flags & PNV_IODA_PE_VF)
77 sprintf(pfix, "%04x:%02x:%2x.%d",
78 pci_domain_nr(pe->parent_dev->bus),
79 (pe->rid & 0xff00) >> 8,
80 PCI_SLOT(pe->rid), PCI_FUNC(pe->rid));
81#endif /* CONFIG_PCI_IOV*/
Joe Perches6d31c2f2014-09-21 10:55:06 -070082
Russell Currey1f52f172016-11-16 14:02:15 +110083 printk("%spci %s: [PE# %.2x] %pV",
Joe Perches6d31c2f2014-09-21 10:55:06 -070084 level, pfix, pe->pe_number, &vaf);
85
86 va_end(args);
87}
88
Thadeu Lima de Souza Cascardo4e287842014-10-23 19:19:35 -020089static bool pnv_iommu_bypass_disabled __read_mostly;
Guilherme G. Piccoli45baee12017-11-17 16:58:59 -020090static bool pci_reset_phbs __read_mostly;
Thadeu Lima de Souza Cascardo4e287842014-10-23 19:19:35 -020091
92static int __init iommu_setup(char *str)
93{
94 if (!str)
95 return -EINVAL;
96
97 while (*str) {
98 if (!strncmp(str, "nobypass", 8)) {
99 pnv_iommu_bypass_disabled = true;
100 pr_info("PowerNV: IOMMU bypass window disabled.\n");
101 break;
102 }
103 str += strcspn(str, ",");
104 if (*str == ',')
105 str++;
106 }
107
108 return 0;
109}
110early_param("iommu", iommu_setup);
111
Guilherme G. Piccoli45baee12017-11-17 16:58:59 -0200112static int __init pci_reset_phbs_setup(char *str)
113{
114 pci_reset_phbs = true;
115 return 0;
116}
117
118early_param("ppc_pci_reset_phbs", pci_reset_phbs_setup);
119
Benjamin Herrenschmidt5958d192016-07-08 15:55:43 +1000120static inline bool pnv_pci_is_m64(struct pnv_phb *phb, struct resource *r)
Guo Chao262af552014-07-21 14:42:30 +1000121{
Benjamin Herrenschmidt5958d192016-07-08 15:55:43 +1000122 /*
123 * WARNING: We cannot rely on the resource flags. The Linux PCI
124 * allocation code sometimes decides to put a 64-bit prefetchable
125 * BAR in the 32-bit window, so we have to compare the addresses.
126 *
127 * For simplicity we only test resource start.
128 */
129 return (r->start >= phb->ioda.m64_base &&
130 r->start < (phb->ioda.m64_base + phb->ioda.m64_size));
Guo Chao262af552014-07-21 14:42:30 +1000131}
132
Russell Curreyb79331a2016-09-14 16:37:17 +1000133static inline bool pnv_pci_is_m64_flags(unsigned long resource_flags)
134{
135 unsigned long flags = (IORESOURCE_MEM_64 | IORESOURCE_PREFETCH);
136
137 return (resource_flags & flags) == flags;
138}
139
Gavin Shan1e916772016-05-03 15:41:36 +1000140static struct pnv_ioda_pe *pnv_ioda_init_pe(struct pnv_phb *phb, int pe_no)
141{
Gavin Shan313483d2016-09-28 14:34:56 +1000142 s64 rc;
143
Gavin Shan1e916772016-05-03 15:41:36 +1000144 phb->ioda.pe_array[pe_no].phb = phb;
145 phb->ioda.pe_array[pe_no].pe_number = pe_no;
146
Gavin Shan313483d2016-09-28 14:34:56 +1000147 /*
148 * Clear the PE frozen state as it might be put into frozen state
149 * in the last PCI remove path. It's not harmful to do so when the
150 * PE is already in unfrozen state.
151 */
152 rc = opal_pci_eeh_freeze_clear(phb->opal_id, pe_no,
153 OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
Russell Curreyd4791db2016-11-16 12:12:26 +1100154 if (rc != OPAL_SUCCESS && rc != OPAL_UNSUPPORTED)
Russell Currey1f52f172016-11-16 14:02:15 +1100155 pr_warn("%s: Error %lld unfreezing PHB#%x-PE#%x\n",
Gavin Shan313483d2016-09-28 14:34:56 +1000156 __func__, rc, phb->hose->global_number, pe_no);
157
Gavin Shan1e916772016-05-03 15:41:36 +1000158 return &phb->ioda.pe_array[pe_no];
159}
160
Gavin Shan4b82ab12014-11-12 13:36:07 +1100161static void pnv_ioda_reserve_pe(struct pnv_phb *phb, int pe_no)
162{
Gavin Shan92b8f132016-05-03 15:41:24 +1000163 if (!(pe_no >= 0 && pe_no < phb->ioda.total_pe_num)) {
Russell Currey1f52f172016-11-16 14:02:15 +1100164 pr_warn("%s: Invalid PE %x on PHB#%x\n",
Gavin Shan4b82ab12014-11-12 13:36:07 +1100165 __func__, pe_no, phb->hose->global_number);
166 return;
167 }
168
Gavin Shane9dc4d72015-06-19 12:26:16 +1000169 if (test_and_set_bit(pe_no, phb->ioda.pe_alloc))
Russell Currey1f52f172016-11-16 14:02:15 +1100170 pr_debug("%s: PE %x was reserved on PHB#%x\n",
Gavin Shane9dc4d72015-06-19 12:26:16 +1000171 __func__, pe_no, phb->hose->global_number);
Gavin Shan4b82ab12014-11-12 13:36:07 +1100172
Gavin Shan1e916772016-05-03 15:41:36 +1000173 pnv_ioda_init_pe(phb, pe_no);
Gavin Shan4b82ab12014-11-12 13:36:07 +1100174}
175
Gavin Shan1e916772016-05-03 15:41:36 +1000176static struct pnv_ioda_pe *pnv_ioda_alloc_pe(struct pnv_phb *phb)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000177{
Andrzej Hajda60964812016-08-17 12:03:05 +0200178 long pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000179
Gavin Shan9fcd6f42016-05-20 16:41:30 +1000180 for (pe = phb->ioda.total_pe_num - 1; pe >= 0; pe--) {
181 if (!test_and_set_bit(pe, phb->ioda.pe_alloc))
182 return pnv_ioda_init_pe(phb, pe);
183 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000184
Gavin Shan9fcd6f42016-05-20 16:41:30 +1000185 return NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000186}
187
Gavin Shan1e916772016-05-03 15:41:36 +1000188static void pnv_ioda_free_pe(struct pnv_ioda_pe *pe)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000189{
Gavin Shan1e916772016-05-03 15:41:36 +1000190 struct pnv_phb *phb = pe->phb;
Gavin Shancaa58f82016-09-06 14:17:18 +1000191 unsigned int pe_num = pe->pe_number;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000192
Gavin Shan1e916772016-05-03 15:41:36 +1000193 WARN_ON(pe->pdev);
194
195 memset(pe, 0, sizeof(struct pnv_ioda_pe));
Gavin Shancaa58f82016-09-06 14:17:18 +1000196 clear_bit(pe_num, phb->ioda.pe_alloc);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000197}
198
Guo Chao262af552014-07-21 14:42:30 +1000199/* The default M64 BAR is shared by all PEs */
200static int pnv_ioda2_init_m64(struct pnv_phb *phb)
201{
202 const char *desc;
203 struct resource *r;
204 s64 rc;
205
206 /* Configure the default M64 BAR */
207 rc = opal_pci_set_phb_mem_window(phb->opal_id,
208 OPAL_M64_WINDOW_TYPE,
209 phb->ioda.m64_bar_idx,
210 phb->ioda.m64_base,
211 0, /* unused */
212 phb->ioda.m64_size);
213 if (rc != OPAL_SUCCESS) {
214 desc = "configuring";
215 goto fail;
216 }
217
218 /* Enable the default M64 BAR */
219 rc = opal_pci_phb_mmio_enable(phb->opal_id,
220 OPAL_M64_WINDOW_TYPE,
221 phb->ioda.m64_bar_idx,
222 OPAL_ENABLE_M64_SPLIT);
223 if (rc != OPAL_SUCCESS) {
224 desc = "enabling";
225 goto fail;
226 }
227
Guo Chao262af552014-07-21 14:42:30 +1000228 /*
Gavin Shan63803c32016-05-20 16:41:32 +1000229 * Exclude the segments for reserved and root bus PE, which
230 * are first or last two PEs.
Guo Chao262af552014-07-21 14:42:30 +1000231 */
232 r = &phb->hose->mem_resources[1];
Gavin Shan92b8f132016-05-03 15:41:24 +1000233 if (phb->ioda.reserved_pe_idx == 0)
Gavin Shan63803c32016-05-20 16:41:32 +1000234 r->start += (2 * phb->ioda.m64_segsize);
Gavin Shan92b8f132016-05-03 15:41:24 +1000235 else if (phb->ioda.reserved_pe_idx == (phb->ioda.total_pe_num - 1))
Gavin Shan63803c32016-05-20 16:41:32 +1000236 r->end -= (2 * phb->ioda.m64_segsize);
Guo Chao262af552014-07-21 14:42:30 +1000237 else
Russell Currey1f52f172016-11-16 14:02:15 +1100238 pr_warn(" Cannot strip M64 segment for reserved PE#%x\n",
Gavin Shan92b8f132016-05-03 15:41:24 +1000239 phb->ioda.reserved_pe_idx);
Guo Chao262af552014-07-21 14:42:30 +1000240
241 return 0;
242
243fail:
244 pr_warn(" Failure %lld %s M64 BAR#%d\n",
245 rc, desc, phb->ioda.m64_bar_idx);
246 opal_pci_phb_mmio_enable(phb->opal_id,
247 OPAL_M64_WINDOW_TYPE,
248 phb->ioda.m64_bar_idx,
249 OPAL_DISABLE_M64);
250 return -EIO;
251}
252
Gavin Shanc4306702016-05-03 15:41:30 +1000253static void pnv_ioda_reserve_dev_m64_pe(struct pci_dev *pdev,
Gavin Shan96a2f922015-06-19 12:26:17 +1000254 unsigned long *pe_bitmap)
Guo Chao262af552014-07-21 14:42:30 +1000255{
Gavin Shan96a2f922015-06-19 12:26:17 +1000256 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
257 struct pnv_phb *phb = hose->private_data;
Guo Chao262af552014-07-21 14:42:30 +1000258 struct resource *r;
Gavin Shan96a2f922015-06-19 12:26:17 +1000259 resource_size_t base, sgsz, start, end;
260 int segno, i;
Guo Chao262af552014-07-21 14:42:30 +1000261
Gavin Shan96a2f922015-06-19 12:26:17 +1000262 base = phb->ioda.m64_base;
263 sgsz = phb->ioda.m64_segsize;
264 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
265 r = &pdev->resource[i];
Benjamin Herrenschmidt5958d192016-07-08 15:55:43 +1000266 if (!r->parent || !pnv_pci_is_m64(phb, r))
Gavin Shan96a2f922015-06-19 12:26:17 +1000267 continue;
Guo Chao262af552014-07-21 14:42:30 +1000268
Gavin Shan96a2f922015-06-19 12:26:17 +1000269 start = _ALIGN_DOWN(r->start - base, sgsz);
270 end = _ALIGN_UP(r->end - base, sgsz);
271 for (segno = start / sgsz; segno < end / sgsz; segno++) {
272 if (pe_bitmap)
273 set_bit(segno, pe_bitmap);
274 else
275 pnv_ioda_reserve_pe(phb, segno);
Guo Chao262af552014-07-21 14:42:30 +1000276 }
277 }
278}
279
Gavin Shan99451552016-05-05 12:02:13 +1000280static int pnv_ioda1_init_m64(struct pnv_phb *phb)
281{
282 struct resource *r;
283 int index;
284
285 /*
286 * There are 16 M64 BARs, each of which has 8 segments. So
287 * there are as many M64 segments as the maximum number of
288 * PEs, which is 128.
289 */
290 for (index = 0; index < PNV_IODA1_M64_NUM; index++) {
291 unsigned long base, segsz = phb->ioda.m64_segsize;
292 int64_t rc;
293
294 base = phb->ioda.m64_base +
295 index * PNV_IODA1_M64_SEGS * segsz;
296 rc = opal_pci_set_phb_mem_window(phb->opal_id,
297 OPAL_M64_WINDOW_TYPE, index, base, 0,
298 PNV_IODA1_M64_SEGS * segsz);
299 if (rc != OPAL_SUCCESS) {
Russell Currey1f52f172016-11-16 14:02:15 +1100300 pr_warn(" Error %lld setting M64 PHB#%x-BAR#%d\n",
Gavin Shan99451552016-05-05 12:02:13 +1000301 rc, phb->hose->global_number, index);
302 goto fail;
303 }
304
305 rc = opal_pci_phb_mmio_enable(phb->opal_id,
306 OPAL_M64_WINDOW_TYPE, index,
307 OPAL_ENABLE_M64_SPLIT);
308 if (rc != OPAL_SUCCESS) {
Russell Currey1f52f172016-11-16 14:02:15 +1100309 pr_warn(" Error %lld enabling M64 PHB#%x-BAR#%d\n",
Gavin Shan99451552016-05-05 12:02:13 +1000310 rc, phb->hose->global_number, index);
311 goto fail;
312 }
313 }
314
315 /*
Gavin Shan63803c32016-05-20 16:41:32 +1000316 * Exclude the segments for reserved and root bus PE, which
317 * are first or last two PEs.
Gavin Shan99451552016-05-05 12:02:13 +1000318 */
319 r = &phb->hose->mem_resources[1];
320 if (phb->ioda.reserved_pe_idx == 0)
Gavin Shan63803c32016-05-20 16:41:32 +1000321 r->start += (2 * phb->ioda.m64_segsize);
Gavin Shan99451552016-05-05 12:02:13 +1000322 else if (phb->ioda.reserved_pe_idx == (phb->ioda.total_pe_num - 1))
Gavin Shan63803c32016-05-20 16:41:32 +1000323 r->end -= (2 * phb->ioda.m64_segsize);
Gavin Shan99451552016-05-05 12:02:13 +1000324 else
Russell Currey1f52f172016-11-16 14:02:15 +1100325 WARN(1, "Wrong reserved PE#%x on PHB#%x\n",
Gavin Shan99451552016-05-05 12:02:13 +1000326 phb->ioda.reserved_pe_idx, phb->hose->global_number);
327
328 return 0;
329
330fail:
331 for ( ; index >= 0; index--)
332 opal_pci_phb_mmio_enable(phb->opal_id,
333 OPAL_M64_WINDOW_TYPE, index, OPAL_DISABLE_M64);
334
335 return -EIO;
336}
337
Gavin Shanc4306702016-05-03 15:41:30 +1000338static void pnv_ioda_reserve_m64_pe(struct pci_bus *bus,
339 unsigned long *pe_bitmap,
340 bool all)
Guo Chao262af552014-07-21 14:42:30 +1000341{
Guo Chao262af552014-07-21 14:42:30 +1000342 struct pci_dev *pdev;
Gavin Shan96a2f922015-06-19 12:26:17 +1000343
344 list_for_each_entry(pdev, &bus->devices, bus_list) {
Gavin Shanc4306702016-05-03 15:41:30 +1000345 pnv_ioda_reserve_dev_m64_pe(pdev, pe_bitmap);
Gavin Shan96a2f922015-06-19 12:26:17 +1000346
347 if (all && pdev->subordinate)
Gavin Shanc4306702016-05-03 15:41:30 +1000348 pnv_ioda_reserve_m64_pe(pdev->subordinate,
349 pe_bitmap, all);
Gavin Shan96a2f922015-06-19 12:26:17 +1000350 }
351}
352
Gavin Shan1e916772016-05-03 15:41:36 +1000353static struct pnv_ioda_pe *pnv_ioda_pick_m64_pe(struct pci_bus *bus, bool all)
Guo Chao262af552014-07-21 14:42:30 +1000354{
Gavin Shan26ba2482015-06-19 12:26:19 +1000355 struct pci_controller *hose = pci_bus_to_host(bus);
356 struct pnv_phb *phb = hose->private_data;
Guo Chao262af552014-07-21 14:42:30 +1000357 struct pnv_ioda_pe *master_pe, *pe;
358 unsigned long size, *pe_alloc;
Gavin Shan26ba2482015-06-19 12:26:19 +1000359 int i;
Guo Chao262af552014-07-21 14:42:30 +1000360
361 /* Root bus shouldn't use M64 */
362 if (pci_is_root_bus(bus))
Gavin Shan1e916772016-05-03 15:41:36 +1000363 return NULL;
Guo Chao262af552014-07-21 14:42:30 +1000364
Guo Chao262af552014-07-21 14:42:30 +1000365 /* Allocate bitmap */
Gavin Shan92b8f132016-05-03 15:41:24 +1000366 size = _ALIGN_UP(phb->ioda.total_pe_num / 8, sizeof(unsigned long));
Guo Chao262af552014-07-21 14:42:30 +1000367 pe_alloc = kzalloc(size, GFP_KERNEL);
368 if (!pe_alloc) {
369 pr_warn("%s: Out of memory !\n",
370 __func__);
Gavin Shan1e916772016-05-03 15:41:36 +1000371 return NULL;
Guo Chao262af552014-07-21 14:42:30 +1000372 }
373
Gavin Shan26ba2482015-06-19 12:26:19 +1000374 /* Figure out reserved PE numbers by the PE */
Gavin Shanc4306702016-05-03 15:41:30 +1000375 pnv_ioda_reserve_m64_pe(bus, pe_alloc, all);
Guo Chao262af552014-07-21 14:42:30 +1000376
377 /*
378 * the current bus might not own M64 window and that's all
379 * contributed by its child buses. For the case, we needn't
380 * pick M64 dependent PE#.
381 */
Gavin Shan92b8f132016-05-03 15:41:24 +1000382 if (bitmap_empty(pe_alloc, phb->ioda.total_pe_num)) {
Guo Chao262af552014-07-21 14:42:30 +1000383 kfree(pe_alloc);
Gavin Shan1e916772016-05-03 15:41:36 +1000384 return NULL;
Guo Chao262af552014-07-21 14:42:30 +1000385 }
386
387 /*
388 * Figure out the master PE and put all slave PEs to master
389 * PE's list to form compound PE.
390 */
Guo Chao262af552014-07-21 14:42:30 +1000391 master_pe = NULL;
392 i = -1;
Gavin Shan92b8f132016-05-03 15:41:24 +1000393 while ((i = find_next_bit(pe_alloc, phb->ioda.total_pe_num, i + 1)) <
394 phb->ioda.total_pe_num) {
Guo Chao262af552014-07-21 14:42:30 +1000395 pe = &phb->ioda.pe_array[i];
Guo Chao262af552014-07-21 14:42:30 +1000396
Gavin Shan93289d82016-05-03 15:41:29 +1000397 phb->ioda.m64_segmap[pe->pe_number] = pe->pe_number;
Guo Chao262af552014-07-21 14:42:30 +1000398 if (!master_pe) {
399 pe->flags |= PNV_IODA_PE_MASTER;
400 INIT_LIST_HEAD(&pe->slaves);
401 master_pe = pe;
402 } else {
403 pe->flags |= PNV_IODA_PE_SLAVE;
404 pe->master = master_pe;
405 list_add_tail(&pe->list, &master_pe->slaves);
406 }
Gavin Shan99451552016-05-05 12:02:13 +1000407
408 /*
409 * P7IOC supports M64DT, which helps mapping M64 segment
410 * to one particular PE#. However, PHB3 has fixed mapping
411 * between M64 segment and PE#. In order to have same logic
412 * for P7IOC and PHB3, we enforce fixed mapping between M64
413 * segment and PE# on P7IOC.
414 */
415 if (phb->type == PNV_PHB_IODA1) {
416 int64_t rc;
417
418 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
419 pe->pe_number, OPAL_M64_WINDOW_TYPE,
420 pe->pe_number / PNV_IODA1_M64_SEGS,
421 pe->pe_number % PNV_IODA1_M64_SEGS);
422 if (rc != OPAL_SUCCESS)
Russell Currey1f52f172016-11-16 14:02:15 +1100423 pr_warn("%s: Error %lld mapping M64 for PHB#%x-PE#%x\n",
Gavin Shan99451552016-05-05 12:02:13 +1000424 __func__, rc, phb->hose->global_number,
425 pe->pe_number);
426 }
Guo Chao262af552014-07-21 14:42:30 +1000427 }
428
429 kfree(pe_alloc);
Gavin Shan1e916772016-05-03 15:41:36 +1000430 return master_pe;
Guo Chao262af552014-07-21 14:42:30 +1000431}
432
433static void __init pnv_ioda_parse_m64_window(struct pnv_phb *phb)
434{
435 struct pci_controller *hose = phb->hose;
436 struct device_node *dn = hose->dn;
437 struct resource *res;
Benjamin Herrenschmidta1339fa2016-07-08 16:37:16 +1000438 u32 m64_range[2], i;
Gavin Shan0e7736c2016-08-02 14:10:35 +1000439 const __be32 *r;
Guo Chao262af552014-07-21 14:42:30 +1000440 u64 pci_addr;
441
Gavin Shan99451552016-05-05 12:02:13 +1000442 if (phb->type != PNV_PHB_IODA1 && phb->type != PNV_PHB_IODA2) {
Gavin Shan1665c4a2014-11-12 13:36:04 +1100443 pr_info(" Not support M64 window\n");
444 return;
445 }
446
Stewart Smithe4d54f72015-12-09 17:18:20 +1100447 if (!firmware_has_feature(FW_FEATURE_OPAL)) {
Guo Chao262af552014-07-21 14:42:30 +1000448 pr_info(" Firmware too old to support M64 window\n");
449 return;
450 }
451
452 r = of_get_property(dn, "ibm,opal-m64-window", NULL);
453 if (!r) {
Rob Herringb7c670d2017-08-21 10:16:47 -0500454 pr_info(" No <ibm,opal-m64-window> on %pOF\n",
455 dn);
Guo Chao262af552014-07-21 14:42:30 +1000456 return;
457 }
458
Benjamin Herrenschmidta1339fa2016-07-08 16:37:16 +1000459 /*
460 * Find the available M64 BAR range and pickup the last one for
461 * covering the whole 64-bits space. We support only one range.
462 */
463 if (of_property_read_u32_array(dn, "ibm,opal-available-m64-ranges",
464 m64_range, 2)) {
465 /* In absence of the property, assume 0..15 */
466 m64_range[0] = 0;
467 m64_range[1] = 16;
468 }
469 /* We only support 64 bits in our allocator */
470 if (m64_range[1] > 63) {
471 pr_warn("%s: Limiting M64 range to 63 (from %d) on PHB#%x\n",
472 __func__, m64_range[1], phb->hose->global_number);
473 m64_range[1] = 63;
474 }
475 /* Empty range, no m64 */
476 if (m64_range[1] <= m64_range[0]) {
477 pr_warn("%s: M64 empty, disabling M64 usage on PHB#%x\n",
478 __func__, phb->hose->global_number);
479 return;
480 }
481
482 /* Configure M64 informations */
Guo Chao262af552014-07-21 14:42:30 +1000483 res = &hose->mem_resources[1];
Gavin Shane80c4e72015-10-22 12:03:08 +1100484 res->name = dn->full_name;
Guo Chao262af552014-07-21 14:42:30 +1000485 res->start = of_translate_address(dn, r + 2);
486 res->end = res->start + of_read_number(r + 4, 2) - 1;
487 res->flags = (IORESOURCE_MEM | IORESOURCE_MEM_64 | IORESOURCE_PREFETCH);
488 pci_addr = of_read_number(r, 2);
489 hose->mem_offset[1] = res->start - pci_addr;
490
491 phb->ioda.m64_size = resource_size(res);
Gavin Shan92b8f132016-05-03 15:41:24 +1000492 phb->ioda.m64_segsize = phb->ioda.m64_size / phb->ioda.total_pe_num;
Guo Chao262af552014-07-21 14:42:30 +1000493 phb->ioda.m64_base = pci_addr;
494
Benjamin Herrenschmidta1339fa2016-07-08 16:37:16 +1000495 /* This lines up nicely with the display from processing OF ranges */
496 pr_info(" MEM 0x%016llx..0x%016llx -> 0x%016llx (M64 #%d..%d)\n",
497 res->start, res->end, pci_addr, m64_range[0],
498 m64_range[0] + m64_range[1] - 1);
499
500 /* Mark all M64 used up by default */
501 phb->ioda.m64_bar_alloc = (unsigned long)-1;
Wei Yange9863e62014-12-12 12:39:37 +0800502
Guo Chao262af552014-07-21 14:42:30 +1000503 /* Use last M64 BAR to cover M64 window */
Benjamin Herrenschmidta1339fa2016-07-08 16:37:16 +1000504 m64_range[1]--;
505 phb->ioda.m64_bar_idx = m64_range[0] + m64_range[1];
506
507 pr_info(" Using M64 #%d as default window\n", phb->ioda.m64_bar_idx);
508
509 /* Mark remaining ones free */
510 for (i = m64_range[0]; i < m64_range[1]; i++)
511 clear_bit(i, &phb->ioda.m64_bar_alloc);
512
513 /*
514 * Setup init functions for M64 based on IODA version, IODA3 uses
515 * the IODA2 code.
516 */
Gavin Shan99451552016-05-05 12:02:13 +1000517 if (phb->type == PNV_PHB_IODA1)
518 phb->init_m64 = pnv_ioda1_init_m64;
519 else
520 phb->init_m64 = pnv_ioda2_init_m64;
Gavin Shanc4306702016-05-03 15:41:30 +1000521 phb->reserve_m64_pe = pnv_ioda_reserve_m64_pe;
522 phb->pick_m64_pe = pnv_ioda_pick_m64_pe;
Guo Chao262af552014-07-21 14:42:30 +1000523}
524
Gavin Shan49dec922014-07-21 14:42:33 +1000525static void pnv_ioda_freeze_pe(struct pnv_phb *phb, int pe_no)
526{
527 struct pnv_ioda_pe *pe = &phb->ioda.pe_array[pe_no];
528 struct pnv_ioda_pe *slave;
529 s64 rc;
530
531 /* Fetch master PE */
532 if (pe->flags & PNV_IODA_PE_SLAVE) {
533 pe = pe->master;
Gavin Shanec8e4e92014-11-12 13:36:10 +1100534 if (WARN_ON(!pe || !(pe->flags & PNV_IODA_PE_MASTER)))
535 return;
536
Gavin Shan49dec922014-07-21 14:42:33 +1000537 pe_no = pe->pe_number;
538 }
539
540 /* Freeze master PE */
541 rc = opal_pci_eeh_freeze_set(phb->opal_id,
542 pe_no,
543 OPAL_EEH_ACTION_SET_FREEZE_ALL);
544 if (rc != OPAL_SUCCESS) {
545 pr_warn("%s: Failure %lld freezing PHB#%x-PE#%x\n",
546 __func__, rc, phb->hose->global_number, pe_no);
547 return;
548 }
549
550 /* Freeze slave PEs */
551 if (!(pe->flags & PNV_IODA_PE_MASTER))
552 return;
553
554 list_for_each_entry(slave, &pe->slaves, list) {
555 rc = opal_pci_eeh_freeze_set(phb->opal_id,
556 slave->pe_number,
557 OPAL_EEH_ACTION_SET_FREEZE_ALL);
558 if (rc != OPAL_SUCCESS)
559 pr_warn("%s: Failure %lld freezing PHB#%x-PE#%x\n",
560 __func__, rc, phb->hose->global_number,
561 slave->pe_number);
562 }
563}
564
Anton Blancharde51df2c2014-08-20 08:55:18 +1000565static int pnv_ioda_unfreeze_pe(struct pnv_phb *phb, int pe_no, int opt)
Gavin Shan49dec922014-07-21 14:42:33 +1000566{
567 struct pnv_ioda_pe *pe, *slave;
568 s64 rc;
569
570 /* Find master PE */
571 pe = &phb->ioda.pe_array[pe_no];
572 if (pe->flags & PNV_IODA_PE_SLAVE) {
573 pe = pe->master;
574 WARN_ON(!pe || !(pe->flags & PNV_IODA_PE_MASTER));
575 pe_no = pe->pe_number;
576 }
577
578 /* Clear frozen state for master PE */
579 rc = opal_pci_eeh_freeze_clear(phb->opal_id, pe_no, opt);
580 if (rc != OPAL_SUCCESS) {
581 pr_warn("%s: Failure %lld clear %d on PHB#%x-PE#%x\n",
582 __func__, rc, opt, phb->hose->global_number, pe_no);
583 return -EIO;
584 }
585
586 if (!(pe->flags & PNV_IODA_PE_MASTER))
587 return 0;
588
589 /* Clear frozen state for slave PEs */
590 list_for_each_entry(slave, &pe->slaves, list) {
591 rc = opal_pci_eeh_freeze_clear(phb->opal_id,
592 slave->pe_number,
593 opt);
594 if (rc != OPAL_SUCCESS) {
595 pr_warn("%s: Failure %lld clear %d on PHB#%x-PE#%x\n",
596 __func__, rc, opt, phb->hose->global_number,
597 slave->pe_number);
598 return -EIO;
599 }
600 }
601
602 return 0;
603}
604
605static int pnv_ioda_get_pe_state(struct pnv_phb *phb, int pe_no)
606{
607 struct pnv_ioda_pe *slave, *pe;
608 u8 fstate, state;
609 __be16 pcierr;
610 s64 rc;
611
612 /* Sanity check on PE number */
Gavin Shan92b8f132016-05-03 15:41:24 +1000613 if (pe_no < 0 || pe_no >= phb->ioda.total_pe_num)
Gavin Shan49dec922014-07-21 14:42:33 +1000614 return OPAL_EEH_STOPPED_PERM_UNAVAIL;
615
616 /*
617 * Fetch the master PE and the PE instance might be
618 * not initialized yet.
619 */
620 pe = &phb->ioda.pe_array[pe_no];
621 if (pe->flags & PNV_IODA_PE_SLAVE) {
622 pe = pe->master;
623 WARN_ON(!pe || !(pe->flags & PNV_IODA_PE_MASTER));
624 pe_no = pe->pe_number;
625 }
626
627 /* Check the master PE */
628 rc = opal_pci_eeh_freeze_status(phb->opal_id, pe_no,
629 &state, &pcierr, NULL);
630 if (rc != OPAL_SUCCESS) {
631 pr_warn("%s: Failure %lld getting "
632 "PHB#%x-PE#%x state\n",
633 __func__, rc,
634 phb->hose->global_number, pe_no);
635 return OPAL_EEH_STOPPED_TEMP_UNAVAIL;
636 }
637
638 /* Check the slave PE */
639 if (!(pe->flags & PNV_IODA_PE_MASTER))
640 return state;
641
642 list_for_each_entry(slave, &pe->slaves, list) {
643 rc = opal_pci_eeh_freeze_status(phb->opal_id,
644 slave->pe_number,
645 &fstate,
646 &pcierr,
647 NULL);
648 if (rc != OPAL_SUCCESS) {
649 pr_warn("%s: Failure %lld getting "
650 "PHB#%x-PE#%x state\n",
651 __func__, rc,
652 phb->hose->global_number, slave->pe_number);
653 return OPAL_EEH_STOPPED_TEMP_UNAVAIL;
654 }
655
656 /*
657 * Override the result based on the ascending
658 * priority.
659 */
660 if (fstate > state)
661 state = fstate;
662 }
663
664 return state;
665}
666
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000667/* Currently those 2 are only used when MSIs are enabled, this will change
668 * but in the meantime, we need to protect them to avoid warnings
669 */
670#ifdef CONFIG_PCI_MSI
Ian Munsief4568342016-07-14 07:17:00 +1000671struct pnv_ioda_pe *pnv_ioda_get_pe(struct pci_dev *dev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000672{
673 struct pci_controller *hose = pci_bus_to_host(dev->bus);
674 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +0000675 struct pci_dn *pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000676
677 if (!pdn)
678 return NULL;
679 if (pdn->pe_number == IODA_INVALID_PE)
680 return NULL;
681 return &phb->ioda.pe_array[pdn->pe_number];
682}
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000683#endif /* CONFIG_PCI_MSI */
684
Gavin Shanb131a842014-11-12 13:36:08 +1100685static int pnv_ioda_set_one_peltv(struct pnv_phb *phb,
686 struct pnv_ioda_pe *parent,
687 struct pnv_ioda_pe *child,
688 bool is_add)
689{
690 const char *desc = is_add ? "adding" : "removing";
691 uint8_t op = is_add ? OPAL_ADD_PE_TO_DOMAIN :
692 OPAL_REMOVE_PE_FROM_DOMAIN;
693 struct pnv_ioda_pe *slave;
694 long rc;
695
696 /* Parent PE affects child PE */
697 rc = opal_pci_set_peltv(phb->opal_id, parent->pe_number,
698 child->pe_number, op);
699 if (rc != OPAL_SUCCESS) {
700 pe_warn(child, "OPAL error %ld %s to parent PELTV\n",
701 rc, desc);
702 return -ENXIO;
703 }
704
705 if (!(child->flags & PNV_IODA_PE_MASTER))
706 return 0;
707
708 /* Compound case: parent PE affects slave PEs */
709 list_for_each_entry(slave, &child->slaves, list) {
710 rc = opal_pci_set_peltv(phb->opal_id, parent->pe_number,
711 slave->pe_number, op);
712 if (rc != OPAL_SUCCESS) {
713 pe_warn(slave, "OPAL error %ld %s to parent PELTV\n",
714 rc, desc);
715 return -ENXIO;
716 }
717 }
718
719 return 0;
720}
721
722static int pnv_ioda_set_peltv(struct pnv_phb *phb,
723 struct pnv_ioda_pe *pe,
724 bool is_add)
725{
726 struct pnv_ioda_pe *slave;
Wei Yang781a8682015-03-25 16:23:57 +0800727 struct pci_dev *pdev = NULL;
Gavin Shanb131a842014-11-12 13:36:08 +1100728 int ret;
729
730 /*
731 * Clear PE frozen state. If it's master PE, we need
732 * clear slave PE frozen state as well.
733 */
734 if (is_add) {
735 opal_pci_eeh_freeze_clear(phb->opal_id, pe->pe_number,
736 OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
737 if (pe->flags & PNV_IODA_PE_MASTER) {
738 list_for_each_entry(slave, &pe->slaves, list)
739 opal_pci_eeh_freeze_clear(phb->opal_id,
740 slave->pe_number,
741 OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
742 }
743 }
744
745 /*
746 * Associate PE in PELT. We need add the PE into the
747 * corresponding PELT-V as well. Otherwise, the error
748 * originated from the PE might contribute to other
749 * PEs.
750 */
751 ret = pnv_ioda_set_one_peltv(phb, pe, pe, is_add);
752 if (ret)
753 return ret;
754
755 /* For compound PEs, any one affects all of them */
756 if (pe->flags & PNV_IODA_PE_MASTER) {
757 list_for_each_entry(slave, &pe->slaves, list) {
758 ret = pnv_ioda_set_one_peltv(phb, slave, pe, is_add);
759 if (ret)
760 return ret;
761 }
762 }
763
764 if (pe->flags & (PNV_IODA_PE_BUS_ALL | PNV_IODA_PE_BUS))
765 pdev = pe->pbus->self;
Wei Yang781a8682015-03-25 16:23:57 +0800766 else if (pe->flags & PNV_IODA_PE_DEV)
Gavin Shanb131a842014-11-12 13:36:08 +1100767 pdev = pe->pdev->bus->self;
Wei Yang781a8682015-03-25 16:23:57 +0800768#ifdef CONFIG_PCI_IOV
769 else if (pe->flags & PNV_IODA_PE_VF)
Gavin Shan283e2d82015-06-22 13:45:47 +1000770 pdev = pe->parent_dev;
Wei Yang781a8682015-03-25 16:23:57 +0800771#endif /* CONFIG_PCI_IOV */
Gavin Shanb131a842014-11-12 13:36:08 +1100772 while (pdev) {
773 struct pci_dn *pdn = pci_get_pdn(pdev);
774 struct pnv_ioda_pe *parent;
775
776 if (pdn && pdn->pe_number != IODA_INVALID_PE) {
777 parent = &phb->ioda.pe_array[pdn->pe_number];
778 ret = pnv_ioda_set_one_peltv(phb, parent, pe, is_add);
779 if (ret)
780 return ret;
781 }
782
783 pdev = pdev->bus->self;
784 }
785
786 return 0;
787}
788
Wei Yang781a8682015-03-25 16:23:57 +0800789static int pnv_ioda_deconfigure_pe(struct pnv_phb *phb, struct pnv_ioda_pe *pe)
790{
791 struct pci_dev *parent;
792 uint8_t bcomp, dcomp, fcomp;
793 int64_t rc;
794 long rid_end, rid;
795
796 /* Currently, we just deconfigure VF PE. Bus PE will always there.*/
797 if (pe->pbus) {
798 int count;
799
800 dcomp = OPAL_IGNORE_RID_DEVICE_NUMBER;
801 fcomp = OPAL_IGNORE_RID_FUNCTION_NUMBER;
802 parent = pe->pbus->self;
803 if (pe->flags & PNV_IODA_PE_BUS_ALL)
804 count = pe->pbus->busn_res.end - pe->pbus->busn_res.start + 1;
805 else
806 count = 1;
807
808 switch(count) {
809 case 1: bcomp = OpalPciBusAll; break;
810 case 2: bcomp = OpalPciBus7Bits; break;
811 case 4: bcomp = OpalPciBus6Bits; break;
812 case 8: bcomp = OpalPciBus5Bits; break;
813 case 16: bcomp = OpalPciBus4Bits; break;
814 case 32: bcomp = OpalPciBus3Bits; break;
815 default:
816 dev_err(&pe->pbus->dev, "Number of subordinate buses %d unsupported\n",
817 count);
818 /* Do an exact match only */
819 bcomp = OpalPciBusAll;
820 }
821 rid_end = pe->rid + (count << 8);
822 } else {
Gavin Shan93e01a52016-05-20 16:41:34 +1000823#ifdef CONFIG_PCI_IOV
Wei Yang781a8682015-03-25 16:23:57 +0800824 if (pe->flags & PNV_IODA_PE_VF)
825 parent = pe->parent_dev;
826 else
Gavin Shan93e01a52016-05-20 16:41:34 +1000827#endif
Wei Yang781a8682015-03-25 16:23:57 +0800828 parent = pe->pdev->bus->self;
829 bcomp = OpalPciBusAll;
830 dcomp = OPAL_COMPARE_RID_DEVICE_NUMBER;
831 fcomp = OPAL_COMPARE_RID_FUNCTION_NUMBER;
832 rid_end = pe->rid + 1;
833 }
834
835 /* Clear the reverse map */
836 for (rid = pe->rid; rid < rid_end; rid++)
Gavin Shanc1275622016-05-20 16:41:29 +1000837 phb->ioda.pe_rmap[rid] = IODA_INVALID_PE;
Wei Yang781a8682015-03-25 16:23:57 +0800838
839 /* Release from all parents PELT-V */
840 while (parent) {
841 struct pci_dn *pdn = pci_get_pdn(parent);
842 if (pdn && pdn->pe_number != IODA_INVALID_PE) {
843 rc = opal_pci_set_peltv(phb->opal_id, pdn->pe_number,
844 pe->pe_number, OPAL_REMOVE_PE_FROM_DOMAIN);
845 /* XXX What to do in case of error ? */
846 }
847 parent = parent->bus->self;
848 }
849
Gavin Shanf951e512015-06-23 17:01:13 +1000850 opal_pci_eeh_freeze_clear(phb->opal_id, pe->pe_number,
Wei Yang781a8682015-03-25 16:23:57 +0800851 OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
852
853 /* Disassociate PE in PELT */
854 rc = opal_pci_set_peltv(phb->opal_id, pe->pe_number,
855 pe->pe_number, OPAL_REMOVE_PE_FROM_DOMAIN);
856 if (rc)
857 pe_warn(pe, "OPAL error %ld remove self from PELTV\n", rc);
858 rc = opal_pci_set_pe(phb->opal_id, pe->pe_number, pe->rid,
859 bcomp, dcomp, fcomp, OPAL_UNMAP_PE);
860 if (rc)
861 pe_err(pe, "OPAL error %ld trying to setup PELT table\n", rc);
862
863 pe->pbus = NULL;
864 pe->pdev = NULL;
Gavin Shan93e01a52016-05-20 16:41:34 +1000865#ifdef CONFIG_PCI_IOV
Wei Yang781a8682015-03-25 16:23:57 +0800866 pe->parent_dev = NULL;
Gavin Shan93e01a52016-05-20 16:41:34 +1000867#endif
Wei Yang781a8682015-03-25 16:23:57 +0800868
869 return 0;
870}
Wei Yang781a8682015-03-25 16:23:57 +0800871
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800872static int pnv_ioda_configure_pe(struct pnv_phb *phb, struct pnv_ioda_pe *pe)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000873{
874 struct pci_dev *parent;
875 uint8_t bcomp, dcomp, fcomp;
876 long rc, rid_end, rid;
877
878 /* Bus validation ? */
879 if (pe->pbus) {
880 int count;
881
882 dcomp = OPAL_IGNORE_RID_DEVICE_NUMBER;
883 fcomp = OPAL_IGNORE_RID_FUNCTION_NUMBER;
884 parent = pe->pbus->self;
Gavin Shanfb446ad2012-08-20 03:49:14 +0000885 if (pe->flags & PNV_IODA_PE_BUS_ALL)
886 count = pe->pbus->busn_res.end - pe->pbus->busn_res.start + 1;
887 else
888 count = 1;
889
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000890 switch(count) {
891 case 1: bcomp = OpalPciBusAll; break;
892 case 2: bcomp = OpalPciBus7Bits; break;
893 case 4: bcomp = OpalPciBus6Bits; break;
894 case 8: bcomp = OpalPciBus5Bits; break;
895 case 16: bcomp = OpalPciBus4Bits; break;
896 case 32: bcomp = OpalPciBus3Bits; break;
897 default:
Wei Yang781a8682015-03-25 16:23:57 +0800898 dev_err(&pe->pbus->dev, "Number of subordinate buses %d unsupported\n",
899 count);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000900 /* Do an exact match only */
901 bcomp = OpalPciBusAll;
902 }
903 rid_end = pe->rid + (count << 8);
904 } else {
Wei Yang781a8682015-03-25 16:23:57 +0800905#ifdef CONFIG_PCI_IOV
906 if (pe->flags & PNV_IODA_PE_VF)
907 parent = pe->parent_dev;
908 else
909#endif /* CONFIG_PCI_IOV */
910 parent = pe->pdev->bus->self;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000911 bcomp = OpalPciBusAll;
912 dcomp = OPAL_COMPARE_RID_DEVICE_NUMBER;
913 fcomp = OPAL_COMPARE_RID_FUNCTION_NUMBER;
914 rid_end = pe->rid + 1;
915 }
916
Gavin Shan631ad692013-11-04 16:32:46 +0800917 /*
918 * Associate PE in PELT. We need add the PE into the
919 * corresponding PELT-V as well. Otherwise, the error
920 * originated from the PE might contribute to other
921 * PEs.
922 */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000923 rc = opal_pci_set_pe(phb->opal_id, pe->pe_number, pe->rid,
924 bcomp, dcomp, fcomp, OPAL_MAP_PE);
925 if (rc) {
926 pe_err(pe, "OPAL error %ld trying to setup PELT table\n", rc);
927 return -ENXIO;
928 }
Gavin Shan631ad692013-11-04 16:32:46 +0800929
Alistair Popple5d2aa712015-12-17 13:43:13 +1100930 /*
931 * Configure PELTV. NPUs don't have a PELTV table so skip
932 * configuration on them.
933 */
Frederic Barrat7f2c39e2018-01-23 12:31:36 +0100934 if (phb->type != PNV_PHB_NPU_NVLINK && phb->type != PNV_PHB_NPU_OCAPI)
Alistair Popple5d2aa712015-12-17 13:43:13 +1100935 pnv_ioda_set_peltv(phb, pe, true);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000936
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000937 /* Setup reverse map */
938 for (rid = pe->rid; rid < rid_end; rid++)
939 phb->ioda.pe_rmap[rid] = pe->pe_number;
940
941 /* Setup one MVTs on IODA1 */
Gavin Shan4773f762014-11-12 13:36:09 +1100942 if (phb->type != PNV_PHB_IODA1) {
943 pe->mve_number = 0;
944 goto out;
945 }
946
947 pe->mve_number = pe->pe_number;
948 rc = opal_pci_set_mve(phb->opal_id, pe->mve_number, pe->pe_number);
949 if (rc != OPAL_SUCCESS) {
Russell Currey1f52f172016-11-16 14:02:15 +1100950 pe_err(pe, "OPAL error %ld setting up MVE %x\n",
Gavin Shan4773f762014-11-12 13:36:09 +1100951 rc, pe->mve_number);
952 pe->mve_number = -1;
953 } else {
954 rc = opal_pci_set_mve_enable(phb->opal_id,
955 pe->mve_number, OPAL_ENABLE_MVE);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000956 if (rc) {
Russell Currey1f52f172016-11-16 14:02:15 +1100957 pe_err(pe, "OPAL error %ld enabling MVE %x\n",
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000958 rc, pe->mve_number);
959 pe->mve_number = -1;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000960 }
Gavin Shan4773f762014-11-12 13:36:09 +1100961 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000962
Gavin Shan4773f762014-11-12 13:36:09 +1100963out:
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000964 return 0;
965}
966
Wei Yang781a8682015-03-25 16:23:57 +0800967#ifdef CONFIG_PCI_IOV
968static int pnv_pci_vf_resource_shift(struct pci_dev *dev, int offset)
969{
970 struct pci_dn *pdn = pci_get_pdn(dev);
971 int i;
972 struct resource *res, res2;
973 resource_size_t size;
974 u16 num_vfs;
975
976 if (!dev->is_physfn)
977 return -EINVAL;
978
979 /*
980 * "offset" is in VFs. The M64 windows are sized so that when they
981 * are segmented, each segment is the same size as the IOV BAR.
982 * Each segment is in a separate PE, and the high order bits of the
983 * address are the PE number. Therefore, each VF's BAR is in a
984 * separate PE, and changing the IOV BAR start address changes the
985 * range of PEs the VFs are in.
986 */
987 num_vfs = pdn->num_vfs;
988 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
989 res = &dev->resource[i + PCI_IOV_RESOURCES];
990 if (!res->flags || !res->parent)
991 continue;
992
Wei Yang781a8682015-03-25 16:23:57 +0800993 /*
994 * The actual IOV BAR range is determined by the start address
995 * and the actual size for num_vfs VFs BAR. This check is to
996 * make sure that after shifting, the range will not overlap
997 * with another device.
998 */
999 size = pci_iov_resource_size(dev, i + PCI_IOV_RESOURCES);
1000 res2.flags = res->flags;
1001 res2.start = res->start + (size * offset);
1002 res2.end = res2.start + (size * num_vfs) - 1;
1003
1004 if (res2.end > res->end) {
1005 dev_err(&dev->dev, "VF BAR%d: %pR would extend past %pR (trying to enable %d VFs shifted by %d)\n",
1006 i, &res2, res, num_vfs, offset);
1007 return -EBUSY;
1008 }
1009 }
1010
1011 /*
Alexey Kardashevskiyd6f934f2017-09-27 16:52:31 +10001012 * Since M64 BAR shares segments among all possible 256 PEs,
1013 * we have to shift the beginning of PF IOV BAR to make it start from
1014 * the segment which belongs to the PE number assigned to the first VF.
1015 * This creates a "hole" in the /proc/iomem which could be used for
1016 * allocating other resources so we reserve this area below and
1017 * release when IOV is released.
Wei Yang781a8682015-03-25 16:23:57 +08001018 */
1019 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
1020 res = &dev->resource[i + PCI_IOV_RESOURCES];
1021 if (!res->flags || !res->parent)
1022 continue;
1023
Wei Yang781a8682015-03-25 16:23:57 +08001024 size = pci_iov_resource_size(dev, i + PCI_IOV_RESOURCES);
1025 res2 = *res;
1026 res->start += size * offset;
1027
Wei Yang74703cc2015-07-20 18:14:58 +08001028 dev_info(&dev->dev, "VF BAR%d: %pR shifted to %pR (%sabling %d VFs shifted by %d)\n",
1029 i, &res2, res, (offset > 0) ? "En" : "Dis",
1030 num_vfs, offset);
Alexey Kardashevskiyd6f934f2017-09-27 16:52:31 +10001031
1032 if (offset < 0) {
1033 devm_release_resource(&dev->dev, &pdn->holes[i]);
1034 memset(&pdn->holes[i], 0, sizeof(pdn->holes[i]));
1035 }
1036
Wei Yang781a8682015-03-25 16:23:57 +08001037 pci_update_resource(dev, i + PCI_IOV_RESOURCES);
Alexey Kardashevskiyd6f934f2017-09-27 16:52:31 +10001038
1039 if (offset > 0) {
1040 pdn->holes[i].start = res2.start;
1041 pdn->holes[i].end = res2.start + size * offset - 1;
1042 pdn->holes[i].flags = IORESOURCE_BUS;
1043 pdn->holes[i].name = "pnv_iov_reserved";
1044 devm_request_resource(&dev->dev, res->parent,
1045 &pdn->holes[i]);
1046 }
Wei Yang781a8682015-03-25 16:23:57 +08001047 }
1048 return 0;
1049}
1050#endif /* CONFIG_PCI_IOV */
1051
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08001052static struct pnv_ioda_pe *pnv_ioda_setup_dev_PE(struct pci_dev *dev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001053{
1054 struct pci_controller *hose = pci_bus_to_host(dev->bus);
1055 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00001056 struct pci_dn *pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001057 struct pnv_ioda_pe *pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001058
1059 if (!pdn) {
1060 pr_err("%s: Device tree node not associated properly\n",
1061 pci_name(dev));
1062 return NULL;
1063 }
1064 if (pdn->pe_number != IODA_INVALID_PE)
1065 return NULL;
1066
Gavin Shan1e916772016-05-03 15:41:36 +10001067 pe = pnv_ioda_alloc_pe(phb);
1068 if (!pe) {
Joe Perchesf2c2cbc2016-10-24 21:00:08 -07001069 pr_warn("%s: Not enough PE# available, disabling device\n",
1070 pci_name(dev));
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001071 return NULL;
1072 }
1073
1074 /* NOTE: We get only one ref to the pci_dev for the pdn, not for the
1075 * pointer in the PE data structure, both should be destroyed at the
1076 * same time. However, this needs to be looked at more closely again
1077 * once we actually start removing things (Hotplug, SR-IOV, ...)
1078 *
1079 * At some point we want to remove the PDN completely anyways
1080 */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001081 pci_dev_get(dev);
Gavin Shan1e916772016-05-03 15:41:36 +10001082 pdn->pe_number = pe->pe_number;
Alistair Popple5d2aa712015-12-17 13:43:13 +11001083 pe->flags = PNV_IODA_PE_DEV;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001084 pe->pdev = dev;
1085 pe->pbus = NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001086 pe->mve_number = -1;
1087 pe->rid = dev->bus->number << 8 | pdn->devfn;
1088
1089 pe_info(pe, "Associated device to PE\n");
1090
1091 if (pnv_ioda_configure_pe(phb, pe)) {
1092 /* XXX What do we do here ? */
Gavin Shan1e916772016-05-03 15:41:36 +10001093 pnv_ioda_free_pe(pe);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001094 pdn->pe_number = IODA_INVALID_PE;
1095 pe->pdev = NULL;
1096 pci_dev_put(dev);
1097 return NULL;
1098 }
1099
Alexey Kardashevskiy1d4e89c2016-05-12 15:47:10 +10001100 /* Put PE to the list */
1101 list_add_tail(&pe->list, &phb->ioda.pe_list);
1102
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001103 return pe;
1104}
1105
1106static void pnv_ioda_setup_same_PE(struct pci_bus *bus, struct pnv_ioda_pe *pe)
1107{
1108 struct pci_dev *dev;
1109
1110 list_for_each_entry(dev, &bus->devices, bus_list) {
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00001111 struct pci_dn *pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001112
1113 if (pdn == NULL) {
1114 pr_warn("%s: No device node associated with device !\n",
1115 pci_name(dev));
1116 continue;
1117 }
Gavin Shanccd1c192016-05-20 16:41:31 +10001118
1119 /*
1120 * In partial hotplug case, the PCI device might be still
1121 * associated with the PE and needn't attach it to the PE
1122 * again.
1123 */
1124 if (pdn->pe_number != IODA_INVALID_PE)
1125 continue;
1126
Gavin Shanc5f77002016-05-20 16:41:35 +10001127 pe->device_count++;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001128 pdn->pe_number = pe->pe_number;
Gavin Shanfb446ad2012-08-20 03:49:14 +00001129 if ((pe->flags & PNV_IODA_PE_BUS_ALL) && dev->subordinate)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001130 pnv_ioda_setup_same_PE(dev->subordinate, pe);
1131 }
1132}
1133
Gavin Shanfb446ad2012-08-20 03:49:14 +00001134/*
1135 * There're 2 types of PCI bus sensitive PEs: One that is compromised of
1136 * single PCI bus. Another one that contains the primary PCI bus and its
1137 * subordinate PCI devices and buses. The second type of PE is normally
1138 * orgiriated by PCIe-to-PCI bridge or PLX switch downstream ports.
1139 */
Gavin Shan1e916772016-05-03 15:41:36 +10001140static struct pnv_ioda_pe *pnv_ioda_setup_bus_PE(struct pci_bus *bus, bool all)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001141{
Gavin Shanfb446ad2012-08-20 03:49:14 +00001142 struct pci_controller *hose = pci_bus_to_host(bus);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001143 struct pnv_phb *phb = hose->private_data;
Gavin Shan1e916772016-05-03 15:41:36 +10001144 struct pnv_ioda_pe *pe = NULL;
Gavin Shanccd1c192016-05-20 16:41:31 +10001145 unsigned int pe_num;
1146
1147 /*
1148 * In partial hotplug case, the PE instance might be still alive.
1149 * We should reuse it instead of allocating a new one.
1150 */
1151 pe_num = phb->ioda.pe_rmap[bus->number << 8];
1152 if (pe_num != IODA_INVALID_PE) {
1153 pe = &phb->ioda.pe_array[pe_num];
1154 pnv_ioda_setup_same_PE(bus, pe);
1155 return NULL;
1156 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001157
Gavin Shan63803c32016-05-20 16:41:32 +10001158 /* PE number for root bus should have been reserved */
1159 if (pci_is_root_bus(bus) &&
1160 phb->ioda.root_pe_idx != IODA_INVALID_PE)
1161 pe = &phb->ioda.pe_array[phb->ioda.root_pe_idx];
1162
Guo Chao262af552014-07-21 14:42:30 +10001163 /* Check if PE is determined by M64 */
Gavin Shan63803c32016-05-20 16:41:32 +10001164 if (!pe && phb->pick_m64_pe)
Gavin Shan1e916772016-05-03 15:41:36 +10001165 pe = phb->pick_m64_pe(bus, all);
Guo Chao262af552014-07-21 14:42:30 +10001166
1167 /* The PE number isn't pinned by M64 */
Gavin Shan1e916772016-05-03 15:41:36 +10001168 if (!pe)
1169 pe = pnv_ioda_alloc_pe(phb);
Guo Chao262af552014-07-21 14:42:30 +10001170
Gavin Shan1e916772016-05-03 15:41:36 +10001171 if (!pe) {
Joe Perchesf2c2cbc2016-10-24 21:00:08 -07001172 pr_warn("%s: Not enough PE# available for PCI bus %04x:%02x\n",
Gavin Shanfb446ad2012-08-20 03:49:14 +00001173 __func__, pci_domain_nr(bus), bus->number);
Gavin Shan1e916772016-05-03 15:41:36 +10001174 return NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001175 }
1176
Guo Chao262af552014-07-21 14:42:30 +10001177 pe->flags |= (all ? PNV_IODA_PE_BUS_ALL : PNV_IODA_PE_BUS);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001178 pe->pbus = bus;
1179 pe->pdev = NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001180 pe->mve_number = -1;
Yinghai Lub918c622012-05-17 18:51:11 -07001181 pe->rid = bus->busn_res.start << 8;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001182
Gavin Shanfb446ad2012-08-20 03:49:14 +00001183 if (all)
Russell Currey1f52f172016-11-16 14:02:15 +11001184 pe_info(pe, "Secondary bus %d..%d associated with PE#%x\n",
Gavin Shan1e916772016-05-03 15:41:36 +10001185 bus->busn_res.start, bus->busn_res.end, pe->pe_number);
Gavin Shanfb446ad2012-08-20 03:49:14 +00001186 else
Russell Currey1f52f172016-11-16 14:02:15 +11001187 pe_info(pe, "Secondary bus %d associated with PE#%x\n",
Gavin Shan1e916772016-05-03 15:41:36 +10001188 bus->busn_res.start, pe->pe_number);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001189
1190 if (pnv_ioda_configure_pe(phb, pe)) {
1191 /* XXX What do we do here ? */
Gavin Shan1e916772016-05-03 15:41:36 +10001192 pnv_ioda_free_pe(pe);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001193 pe->pbus = NULL;
Gavin Shan1e916772016-05-03 15:41:36 +10001194 return NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001195 }
1196
1197 /* Associate it with all child devices */
1198 pnv_ioda_setup_same_PE(bus, pe);
1199
Gavin Shan7ebdf952012-08-20 03:49:15 +00001200 /* Put PE to the list */
1201 list_add_tail(&pe->list, &phb->ioda.pe_list);
Gavin Shan1e916772016-05-03 15:41:36 +10001202
1203 return pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001204}
1205
Alistair Poppleb5215492016-01-11 16:53:49 +11001206static struct pnv_ioda_pe *pnv_ioda_setup_npu_PE(struct pci_dev *npu_pdev)
Alistair Popple5d2aa712015-12-17 13:43:13 +11001207{
Alistair Poppleb5215492016-01-11 16:53:49 +11001208 int pe_num, found_pe = false, rc;
1209 long rid;
1210 struct pnv_ioda_pe *pe;
1211 struct pci_dev *gpu_pdev;
1212 struct pci_dn *npu_pdn;
1213 struct pci_controller *hose = pci_bus_to_host(npu_pdev->bus);
1214 struct pnv_phb *phb = hose->private_data;
1215
1216 /*
1217 * Due to a hardware errata PE#0 on the NPU is reserved for
1218 * error handling. This means we only have three PEs remaining
1219 * which need to be assigned to four links, implying some
1220 * links must share PEs.
1221 *
1222 * To achieve this we assign PEs such that NPUs linking the
1223 * same GPU get assigned the same PE.
1224 */
1225 gpu_pdev = pnv_pci_get_gpu_dev(npu_pdev);
Gavin Shan92b8f132016-05-03 15:41:24 +10001226 for (pe_num = 0; pe_num < phb->ioda.total_pe_num; pe_num++) {
Alistair Poppleb5215492016-01-11 16:53:49 +11001227 pe = &phb->ioda.pe_array[pe_num];
1228 if (!pe->pdev)
1229 continue;
1230
1231 if (pnv_pci_get_gpu_dev(pe->pdev) == gpu_pdev) {
1232 /*
1233 * This device has the same peer GPU so should
1234 * be assigned the same PE as the existing
1235 * peer NPU.
1236 */
1237 dev_info(&npu_pdev->dev,
Russell Currey1f52f172016-11-16 14:02:15 +11001238 "Associating to existing PE %x\n", pe_num);
Alistair Poppleb5215492016-01-11 16:53:49 +11001239 pci_dev_get(npu_pdev);
1240 npu_pdn = pci_get_pdn(npu_pdev);
1241 rid = npu_pdev->bus->number << 8 | npu_pdn->devfn;
Alistair Poppleb5215492016-01-11 16:53:49 +11001242 npu_pdn->pe_number = pe_num;
Alistair Poppleb5215492016-01-11 16:53:49 +11001243 phb->ioda.pe_rmap[rid] = pe->pe_number;
1244
1245 /* Map the PE to this link */
1246 rc = opal_pci_set_pe(phb->opal_id, pe_num, rid,
1247 OpalPciBusAll,
1248 OPAL_COMPARE_RID_DEVICE_NUMBER,
1249 OPAL_COMPARE_RID_FUNCTION_NUMBER,
1250 OPAL_MAP_PE);
1251 WARN_ON(rc != OPAL_SUCCESS);
1252 found_pe = true;
1253 break;
1254 }
1255 }
1256
1257 if (!found_pe)
1258 /*
1259 * Could not find an existing PE so allocate a new
1260 * one.
1261 */
1262 return pnv_ioda_setup_dev_PE(npu_pdev);
1263 else
1264 return pe;
1265}
1266
1267static void pnv_ioda_setup_npu_PEs(struct pci_bus *bus)
1268{
Alistair Popple5d2aa712015-12-17 13:43:13 +11001269 struct pci_dev *pdev;
1270
1271 list_for_each_entry(pdev, &bus->devices, bus_list)
Alistair Poppleb5215492016-01-11 16:53:49 +11001272 pnv_ioda_setup_npu_PE(pdev);
Alistair Popple5d2aa712015-12-17 13:43:13 +11001273}
1274
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08001275static void pnv_pci_ioda_setup_PEs(void)
Gavin Shanfb446ad2012-08-20 03:49:14 +00001276{
1277 struct pci_controller *hose, *tmp;
Guo Chao262af552014-07-21 14:42:30 +10001278 struct pnv_phb *phb;
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01001279 struct pci_bus *bus;
1280 struct pci_dev *pdev;
Gavin Shanfb446ad2012-08-20 03:49:14 +00001281
1282 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
Guo Chao262af552014-07-21 14:42:30 +10001283 phb = hose->private_data;
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01001284 if (phb->type == PNV_PHB_NPU_NVLINK) {
Alistair Popple08f48f32016-01-11 16:53:50 +11001285 /* PE#0 is needed for error reporting */
1286 pnv_ioda_reserve_pe(phb, 0);
Alistair Poppleb5215492016-01-11 16:53:49 +11001287 pnv_ioda_setup_npu_PEs(hose->bus);
Alistair Popple1ab66d12017-04-03 19:51:44 +10001288 if (phb->model == PNV_PHB_MODEL_NPU2)
1289 pnv_npu2_init(phb);
Gavin Shanccd1c192016-05-20 16:41:31 +10001290 }
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01001291 if (phb->type == PNV_PHB_NPU_OCAPI) {
1292 bus = hose->bus;
1293 list_for_each_entry(pdev, &bus->devices, bus_list)
1294 pnv_ioda_setup_dev_PE(pdev);
1295 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001296 }
1297}
1298
Gavin Shana8b2f822015-03-25 16:23:52 +08001299#ifdef CONFIG_PCI_IOV
Wei Yangee8222f2015-10-22 09:22:16 +08001300static int pnv_pci_vf_release_m64(struct pci_dev *pdev, u16 num_vfs)
Wei Yang781a8682015-03-25 16:23:57 +08001301{
1302 struct pci_bus *bus;
1303 struct pci_controller *hose;
1304 struct pnv_phb *phb;
1305 struct pci_dn *pdn;
Wei Yang02639b02015-03-25 16:23:59 +08001306 int i, j;
Wei Yangee8222f2015-10-22 09:22:16 +08001307 int m64_bars;
Wei Yang781a8682015-03-25 16:23:57 +08001308
1309 bus = pdev->bus;
1310 hose = pci_bus_to_host(bus);
1311 phb = hose->private_data;
1312 pdn = pci_get_pdn(pdev);
1313
Wei Yangee8222f2015-10-22 09:22:16 +08001314 if (pdn->m64_single_mode)
1315 m64_bars = num_vfs;
1316 else
1317 m64_bars = 1;
1318
Wei Yang02639b02015-03-25 16:23:59 +08001319 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++)
Wei Yangee8222f2015-10-22 09:22:16 +08001320 for (j = 0; j < m64_bars; j++) {
1321 if (pdn->m64_map[j][i] == IODA_INVALID_M64)
Wei Yang02639b02015-03-25 16:23:59 +08001322 continue;
1323 opal_pci_phb_mmio_enable(phb->opal_id,
Wei Yangee8222f2015-10-22 09:22:16 +08001324 OPAL_M64_WINDOW_TYPE, pdn->m64_map[j][i], 0);
1325 clear_bit(pdn->m64_map[j][i], &phb->ioda.m64_bar_alloc);
1326 pdn->m64_map[j][i] = IODA_INVALID_M64;
Wei Yang02639b02015-03-25 16:23:59 +08001327 }
Wei Yang781a8682015-03-25 16:23:57 +08001328
Wei Yangee8222f2015-10-22 09:22:16 +08001329 kfree(pdn->m64_map);
Wei Yang781a8682015-03-25 16:23:57 +08001330 return 0;
1331}
1332
Wei Yang02639b02015-03-25 16:23:59 +08001333static int pnv_pci_vf_assign_m64(struct pci_dev *pdev, u16 num_vfs)
Wei Yang781a8682015-03-25 16:23:57 +08001334{
1335 struct pci_bus *bus;
1336 struct pci_controller *hose;
1337 struct pnv_phb *phb;
1338 struct pci_dn *pdn;
1339 unsigned int win;
1340 struct resource *res;
Wei Yang02639b02015-03-25 16:23:59 +08001341 int i, j;
Wei Yang781a8682015-03-25 16:23:57 +08001342 int64_t rc;
Wei Yang02639b02015-03-25 16:23:59 +08001343 int total_vfs;
1344 resource_size_t size, start;
1345 int pe_num;
Wei Yangee8222f2015-10-22 09:22:16 +08001346 int m64_bars;
Wei Yang781a8682015-03-25 16:23:57 +08001347
1348 bus = pdev->bus;
1349 hose = pci_bus_to_host(bus);
1350 phb = hose->private_data;
1351 pdn = pci_get_pdn(pdev);
Wei Yang02639b02015-03-25 16:23:59 +08001352 total_vfs = pci_sriov_get_totalvfs(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001353
Wei Yangee8222f2015-10-22 09:22:16 +08001354 if (pdn->m64_single_mode)
1355 m64_bars = num_vfs;
1356 else
1357 m64_bars = 1;
Wei Yang02639b02015-03-25 16:23:59 +08001358
Markus Elfringfb37e122016-08-24 22:26:37 +02001359 pdn->m64_map = kmalloc_array(m64_bars,
1360 sizeof(*pdn->m64_map),
1361 GFP_KERNEL);
Wei Yangee8222f2015-10-22 09:22:16 +08001362 if (!pdn->m64_map)
1363 return -ENOMEM;
1364 /* Initialize the m64_map to IODA_INVALID_M64 */
1365 for (i = 0; i < m64_bars ; i++)
1366 for (j = 0; j < PCI_SRIOV_NUM_BARS; j++)
1367 pdn->m64_map[i][j] = IODA_INVALID_M64;
1368
Wei Yang781a8682015-03-25 16:23:57 +08001369
1370 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
1371 res = &pdev->resource[i + PCI_IOV_RESOURCES];
1372 if (!res->flags || !res->parent)
1373 continue;
1374
Wei Yangee8222f2015-10-22 09:22:16 +08001375 for (j = 0; j < m64_bars; j++) {
Wei Yang02639b02015-03-25 16:23:59 +08001376 do {
1377 win = find_next_zero_bit(&phb->ioda.m64_bar_alloc,
1378 phb->ioda.m64_bar_idx + 1, 0);
Wei Yang781a8682015-03-25 16:23:57 +08001379
Wei Yang02639b02015-03-25 16:23:59 +08001380 if (win >= phb->ioda.m64_bar_idx + 1)
1381 goto m64_failed;
1382 } while (test_and_set_bit(win, &phb->ioda.m64_bar_alloc));
Wei Yang781a8682015-03-25 16:23:57 +08001383
Wei Yangee8222f2015-10-22 09:22:16 +08001384 pdn->m64_map[j][i] = win;
Wei Yang781a8682015-03-25 16:23:57 +08001385
Wei Yangee8222f2015-10-22 09:22:16 +08001386 if (pdn->m64_single_mode) {
Wei Yang02639b02015-03-25 16:23:59 +08001387 size = pci_iov_resource_size(pdev,
1388 PCI_IOV_RESOURCES + i);
Wei Yang02639b02015-03-25 16:23:59 +08001389 start = res->start + size * j;
1390 } else {
1391 size = resource_size(res);
1392 start = res->start;
1393 }
1394
1395 /* Map the M64 here */
Wei Yangee8222f2015-10-22 09:22:16 +08001396 if (pdn->m64_single_mode) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001397 pe_num = pdn->pe_num_map[j];
Wei Yang02639b02015-03-25 16:23:59 +08001398 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
1399 pe_num, OPAL_M64_WINDOW_TYPE,
Wei Yangee8222f2015-10-22 09:22:16 +08001400 pdn->m64_map[j][i], 0);
Wei Yang02639b02015-03-25 16:23:59 +08001401 }
1402
1403 rc = opal_pci_set_phb_mem_window(phb->opal_id,
Wei Yang781a8682015-03-25 16:23:57 +08001404 OPAL_M64_WINDOW_TYPE,
Wei Yangee8222f2015-10-22 09:22:16 +08001405 pdn->m64_map[j][i],
Wei Yang02639b02015-03-25 16:23:59 +08001406 start,
Wei Yang781a8682015-03-25 16:23:57 +08001407 0, /* unused */
Wei Yang02639b02015-03-25 16:23:59 +08001408 size);
Wei Yang781a8682015-03-25 16:23:57 +08001409
Wei Yang02639b02015-03-25 16:23:59 +08001410
1411 if (rc != OPAL_SUCCESS) {
1412 dev_err(&pdev->dev, "Failed to map M64 window #%d: %lld\n",
1413 win, rc);
1414 goto m64_failed;
1415 }
1416
Wei Yangee8222f2015-10-22 09:22:16 +08001417 if (pdn->m64_single_mode)
Wei Yang02639b02015-03-25 16:23:59 +08001418 rc = opal_pci_phb_mmio_enable(phb->opal_id,
Wei Yangee8222f2015-10-22 09:22:16 +08001419 OPAL_M64_WINDOW_TYPE, pdn->m64_map[j][i], 2);
Wei Yang02639b02015-03-25 16:23:59 +08001420 else
1421 rc = opal_pci_phb_mmio_enable(phb->opal_id,
Wei Yangee8222f2015-10-22 09:22:16 +08001422 OPAL_M64_WINDOW_TYPE, pdn->m64_map[j][i], 1);
Wei Yang02639b02015-03-25 16:23:59 +08001423
1424 if (rc != OPAL_SUCCESS) {
1425 dev_err(&pdev->dev, "Failed to enable M64 window #%d: %llx\n",
1426 win, rc);
1427 goto m64_failed;
1428 }
Wei Yang781a8682015-03-25 16:23:57 +08001429 }
1430 }
1431 return 0;
1432
1433m64_failed:
Wei Yangee8222f2015-10-22 09:22:16 +08001434 pnv_pci_vf_release_m64(pdev, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001435 return -EBUSY;
1436}
1437
Alexey Kardashevskiyc035e372015-06-05 16:35:21 +10001438static long pnv_pci_ioda2_unset_window(struct iommu_table_group *table_group,
1439 int num);
Alexey Kardashevskiyc035e372015-06-05 16:35:21 +10001440
Wei Yang781a8682015-03-25 16:23:57 +08001441static void pnv_pci_ioda2_release_dma_pe(struct pci_dev *dev, struct pnv_ioda_pe *pe)
1442{
Wei Yang781a8682015-03-25 16:23:57 +08001443 struct iommu_table *tbl;
Wei Yang781a8682015-03-25 16:23:57 +08001444 int64_t rc;
1445
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001446 tbl = pe->table_group.tables[0];
Alexey Kardashevskiyc035e372015-06-05 16:35:21 +10001447 rc = pnv_pci_ioda2_unset_window(&pe->table_group, 0);
Wei Yang781a8682015-03-25 16:23:57 +08001448 if (rc)
1449 pe_warn(pe, "OPAL error %ld release DMA window\n", rc);
1450
Alexey Kardashevskiyc035e372015-06-05 16:35:21 +10001451 pnv_pci_ioda2_set_bypass(pe, false);
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10001452 if (pe->table_group.group) {
1453 iommu_group_put(pe->table_group.group);
1454 BUG_ON(pe->table_group.group);
Alexey Kardashevskiyac9a5882015-06-05 16:34:56 +10001455 }
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +11001456 iommu_tce_table_put(tbl);
Wei Yang781a8682015-03-25 16:23:57 +08001457}
1458
Wei Yangee8222f2015-10-22 09:22:16 +08001459static void pnv_ioda_release_vf_PE(struct pci_dev *pdev)
Wei Yang781a8682015-03-25 16:23:57 +08001460{
1461 struct pci_bus *bus;
1462 struct pci_controller *hose;
1463 struct pnv_phb *phb;
1464 struct pnv_ioda_pe *pe, *pe_n;
1465 struct pci_dn *pdn;
1466
1467 bus = pdev->bus;
1468 hose = pci_bus_to_host(bus);
1469 phb = hose->private_data;
Wei Yang02639b02015-03-25 16:23:59 +08001470 pdn = pci_get_pdn(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001471
1472 if (!pdev->is_physfn)
1473 return;
1474
Wei Yang781a8682015-03-25 16:23:57 +08001475 list_for_each_entry_safe(pe, pe_n, &phb->ioda.pe_list, list) {
1476 if (pe->parent_dev != pdev)
1477 continue;
1478
1479 pnv_pci_ioda2_release_dma_pe(pdev, pe);
1480
1481 /* Remove from list */
1482 mutex_lock(&phb->ioda.pe_list_mutex);
1483 list_del(&pe->list);
1484 mutex_unlock(&phb->ioda.pe_list_mutex);
1485
1486 pnv_ioda_deconfigure_pe(phb, pe);
1487
Gavin Shan1e916772016-05-03 15:41:36 +10001488 pnv_ioda_free_pe(pe);
Wei Yang781a8682015-03-25 16:23:57 +08001489 }
1490}
1491
1492void pnv_pci_sriov_disable(struct pci_dev *pdev)
1493{
1494 struct pci_bus *bus;
1495 struct pci_controller *hose;
1496 struct pnv_phb *phb;
Gavin Shan1e916772016-05-03 15:41:36 +10001497 struct pnv_ioda_pe *pe;
Wei Yang781a8682015-03-25 16:23:57 +08001498 struct pci_dn *pdn;
Wei Yangbe283ee2015-10-22 09:22:19 +08001499 u16 num_vfs, i;
Wei Yang781a8682015-03-25 16:23:57 +08001500
1501 bus = pdev->bus;
1502 hose = pci_bus_to_host(bus);
1503 phb = hose->private_data;
1504 pdn = pci_get_pdn(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001505 num_vfs = pdn->num_vfs;
1506
1507 /* Release VF PEs */
Wei Yangee8222f2015-10-22 09:22:16 +08001508 pnv_ioda_release_vf_PE(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001509
1510 if (phb->type == PNV_PHB_IODA2) {
Wei Yangee8222f2015-10-22 09:22:16 +08001511 if (!pdn->m64_single_mode)
Wei Yangbe283ee2015-10-22 09:22:19 +08001512 pnv_pci_vf_resource_shift(pdev, -*pdn->pe_num_map);
Wei Yang781a8682015-03-25 16:23:57 +08001513
1514 /* Release M64 windows */
Wei Yangee8222f2015-10-22 09:22:16 +08001515 pnv_pci_vf_release_m64(pdev, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001516
1517 /* Release PE numbers */
Wei Yangbe283ee2015-10-22 09:22:19 +08001518 if (pdn->m64_single_mode) {
1519 for (i = 0; i < num_vfs; i++) {
Gavin Shan1e916772016-05-03 15:41:36 +10001520 if (pdn->pe_num_map[i] == IODA_INVALID_PE)
1521 continue;
1522
1523 pe = &phb->ioda.pe_array[pdn->pe_num_map[i]];
1524 pnv_ioda_free_pe(pe);
Wei Yangbe283ee2015-10-22 09:22:19 +08001525 }
1526 } else
1527 bitmap_clear(phb->ioda.pe_alloc, *pdn->pe_num_map, num_vfs);
1528 /* Releasing pe_num_map */
1529 kfree(pdn->pe_num_map);
Wei Yang781a8682015-03-25 16:23:57 +08001530 }
1531}
1532
1533static void pnv_pci_ioda2_setup_dma_pe(struct pnv_phb *phb,
1534 struct pnv_ioda_pe *pe);
1535static void pnv_ioda_setup_vf_PE(struct pci_dev *pdev, u16 num_vfs)
1536{
1537 struct pci_bus *bus;
1538 struct pci_controller *hose;
1539 struct pnv_phb *phb;
1540 struct pnv_ioda_pe *pe;
1541 int pe_num;
1542 u16 vf_index;
1543 struct pci_dn *pdn;
1544
1545 bus = pdev->bus;
1546 hose = pci_bus_to_host(bus);
1547 phb = hose->private_data;
1548 pdn = pci_get_pdn(pdev);
1549
1550 if (!pdev->is_physfn)
1551 return;
1552
1553 /* Reserve PE for each VF */
1554 for (vf_index = 0; vf_index < num_vfs; vf_index++) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001555 if (pdn->m64_single_mode)
1556 pe_num = pdn->pe_num_map[vf_index];
1557 else
1558 pe_num = *pdn->pe_num_map + vf_index;
Wei Yang781a8682015-03-25 16:23:57 +08001559
1560 pe = &phb->ioda.pe_array[pe_num];
1561 pe->pe_number = pe_num;
1562 pe->phb = phb;
1563 pe->flags = PNV_IODA_PE_VF;
1564 pe->pbus = NULL;
1565 pe->parent_dev = pdev;
Wei Yang781a8682015-03-25 16:23:57 +08001566 pe->mve_number = -1;
1567 pe->rid = (pci_iov_virtfn_bus(pdev, vf_index) << 8) |
1568 pci_iov_virtfn_devfn(pdev, vf_index);
1569
Russell Currey1f52f172016-11-16 14:02:15 +11001570 pe_info(pe, "VF %04d:%02d:%02d.%d associated with PE#%x\n",
Wei Yang781a8682015-03-25 16:23:57 +08001571 hose->global_number, pdev->bus->number,
1572 PCI_SLOT(pci_iov_virtfn_devfn(pdev, vf_index)),
1573 PCI_FUNC(pci_iov_virtfn_devfn(pdev, vf_index)), pe_num);
1574
1575 if (pnv_ioda_configure_pe(phb, pe)) {
1576 /* XXX What do we do here ? */
Gavin Shan1e916772016-05-03 15:41:36 +10001577 pnv_ioda_free_pe(pe);
Wei Yang781a8682015-03-25 16:23:57 +08001578 pe->pdev = NULL;
1579 continue;
1580 }
1581
Wei Yang781a8682015-03-25 16:23:57 +08001582 /* Put PE to the list */
1583 mutex_lock(&phb->ioda.pe_list_mutex);
1584 list_add_tail(&pe->list, &phb->ioda.pe_list);
1585 mutex_unlock(&phb->ioda.pe_list_mutex);
1586
1587 pnv_pci_ioda2_setup_dma_pe(phb, pe);
1588 }
1589}
1590
1591int pnv_pci_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
1592{
1593 struct pci_bus *bus;
1594 struct pci_controller *hose;
1595 struct pnv_phb *phb;
Gavin Shan1e916772016-05-03 15:41:36 +10001596 struct pnv_ioda_pe *pe;
Wei Yang781a8682015-03-25 16:23:57 +08001597 struct pci_dn *pdn;
1598 int ret;
Wei Yangbe283ee2015-10-22 09:22:19 +08001599 u16 i;
Wei Yang781a8682015-03-25 16:23:57 +08001600
1601 bus = pdev->bus;
1602 hose = pci_bus_to_host(bus);
1603 phb = hose->private_data;
1604 pdn = pci_get_pdn(pdev);
1605
1606 if (phb->type == PNV_PHB_IODA2) {
Wei Yangb0331852015-10-22 09:22:14 +08001607 if (!pdn->vfs_expanded) {
1608 dev_info(&pdev->dev, "don't support this SRIOV device"
1609 " with non 64bit-prefetchable IOV BAR\n");
1610 return -ENOSPC;
1611 }
1612
Wei Yangee8222f2015-10-22 09:22:16 +08001613 /*
1614 * When M64 BARs functions in Single PE mode, the number of VFs
1615 * could be enabled must be less than the number of M64 BARs.
1616 */
1617 if (pdn->m64_single_mode && num_vfs > phb->ioda.m64_bar_idx) {
1618 dev_info(&pdev->dev, "Not enough M64 BAR for VFs\n");
1619 return -EBUSY;
1620 }
1621
Wei Yangbe283ee2015-10-22 09:22:19 +08001622 /* Allocating pe_num_map */
1623 if (pdn->m64_single_mode)
Markus Elfringfb37e122016-08-24 22:26:37 +02001624 pdn->pe_num_map = kmalloc_array(num_vfs,
1625 sizeof(*pdn->pe_num_map),
1626 GFP_KERNEL);
Wei Yangbe283ee2015-10-22 09:22:19 +08001627 else
1628 pdn->pe_num_map = kmalloc(sizeof(*pdn->pe_num_map), GFP_KERNEL);
1629
1630 if (!pdn->pe_num_map)
1631 return -ENOMEM;
1632
1633 if (pdn->m64_single_mode)
1634 for (i = 0; i < num_vfs; i++)
1635 pdn->pe_num_map[i] = IODA_INVALID_PE;
1636
Wei Yang781a8682015-03-25 16:23:57 +08001637 /* Calculate available PE for required VFs */
Wei Yangbe283ee2015-10-22 09:22:19 +08001638 if (pdn->m64_single_mode) {
1639 for (i = 0; i < num_vfs; i++) {
Gavin Shan1e916772016-05-03 15:41:36 +10001640 pe = pnv_ioda_alloc_pe(phb);
1641 if (!pe) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001642 ret = -EBUSY;
1643 goto m64_failed;
1644 }
Gavin Shan1e916772016-05-03 15:41:36 +10001645
1646 pdn->pe_num_map[i] = pe->pe_number;
Wei Yangbe283ee2015-10-22 09:22:19 +08001647 }
1648 } else {
1649 mutex_lock(&phb->ioda.pe_alloc_mutex);
1650 *pdn->pe_num_map = bitmap_find_next_zero_area(
Gavin Shan92b8f132016-05-03 15:41:24 +10001651 phb->ioda.pe_alloc, phb->ioda.total_pe_num,
Wei Yangbe283ee2015-10-22 09:22:19 +08001652 0, num_vfs, 0);
Gavin Shan92b8f132016-05-03 15:41:24 +10001653 if (*pdn->pe_num_map >= phb->ioda.total_pe_num) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001654 mutex_unlock(&phb->ioda.pe_alloc_mutex);
1655 dev_info(&pdev->dev, "Failed to enable VF%d\n", num_vfs);
1656 kfree(pdn->pe_num_map);
1657 return -EBUSY;
1658 }
1659 bitmap_set(phb->ioda.pe_alloc, *pdn->pe_num_map, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001660 mutex_unlock(&phb->ioda.pe_alloc_mutex);
Wei Yang781a8682015-03-25 16:23:57 +08001661 }
Wei Yang781a8682015-03-25 16:23:57 +08001662 pdn->num_vfs = num_vfs;
Wei Yang781a8682015-03-25 16:23:57 +08001663
1664 /* Assign M64 window accordingly */
Wei Yang02639b02015-03-25 16:23:59 +08001665 ret = pnv_pci_vf_assign_m64(pdev, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001666 if (ret) {
1667 dev_info(&pdev->dev, "Not enough M64 window resources\n");
1668 goto m64_failed;
1669 }
1670
1671 /*
1672 * When using one M64 BAR to map one IOV BAR, we need to shift
1673 * the IOV BAR according to the PE# allocated to the VFs.
1674 * Otherwise, the PE# for the VF will conflict with others.
1675 */
Wei Yangee8222f2015-10-22 09:22:16 +08001676 if (!pdn->m64_single_mode) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001677 ret = pnv_pci_vf_resource_shift(pdev, *pdn->pe_num_map);
Wei Yang02639b02015-03-25 16:23:59 +08001678 if (ret)
1679 goto m64_failed;
1680 }
Wei Yang781a8682015-03-25 16:23:57 +08001681 }
1682
1683 /* Setup VF PEs */
1684 pnv_ioda_setup_vf_PE(pdev, num_vfs);
1685
1686 return 0;
1687
1688m64_failed:
Wei Yangbe283ee2015-10-22 09:22:19 +08001689 if (pdn->m64_single_mode) {
1690 for (i = 0; i < num_vfs; i++) {
Gavin Shan1e916772016-05-03 15:41:36 +10001691 if (pdn->pe_num_map[i] == IODA_INVALID_PE)
1692 continue;
1693
1694 pe = &phb->ioda.pe_array[pdn->pe_num_map[i]];
1695 pnv_ioda_free_pe(pe);
Wei Yangbe283ee2015-10-22 09:22:19 +08001696 }
1697 } else
1698 bitmap_clear(phb->ioda.pe_alloc, *pdn->pe_num_map, num_vfs);
1699
1700 /* Releasing pe_num_map */
1701 kfree(pdn->pe_num_map);
Wei Yang781a8682015-03-25 16:23:57 +08001702
1703 return ret;
1704}
1705
Bryant G. Ly988fc3b2017-11-09 08:00:33 -06001706int pnv_pcibios_sriov_disable(struct pci_dev *pdev)
Gavin Shana8b2f822015-03-25 16:23:52 +08001707{
Wei Yang781a8682015-03-25 16:23:57 +08001708 pnv_pci_sriov_disable(pdev);
1709
Gavin Shana8b2f822015-03-25 16:23:52 +08001710 /* Release PCI data */
1711 remove_dev_pci_data(pdev);
1712 return 0;
1713}
1714
Bryant G. Ly988fc3b2017-11-09 08:00:33 -06001715int pnv_pcibios_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
Gavin Shana8b2f822015-03-25 16:23:52 +08001716{
1717 /* Allocate PCI data */
1718 add_dev_pci_data(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001719
Wei Yangee8222f2015-10-22 09:22:16 +08001720 return pnv_pci_sriov_enable(pdev, num_vfs);
Gavin Shana8b2f822015-03-25 16:23:52 +08001721}
1722#endif /* CONFIG_PCI_IOV */
1723
Gavin Shan959c9bd2013-04-25 19:21:02 +00001724static void pnv_pci_ioda_dma_dev_setup(struct pnv_phb *phb, struct pci_dev *pdev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001725{
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00001726 struct pci_dn *pdn = pci_get_pdn(pdev);
Gavin Shan959c9bd2013-04-25 19:21:02 +00001727 struct pnv_ioda_pe *pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001728
Gavin Shan959c9bd2013-04-25 19:21:02 +00001729 /*
1730 * The function can be called while the PE#
1731 * hasn't been assigned. Do nothing for the
1732 * case.
1733 */
1734 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
1735 return;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001736
Gavin Shan959c9bd2013-04-25 19:21:02 +00001737 pe = &phb->ioda.pe_array[pdn->pe_number];
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001738 WARN_ON(get_dma_ops(&pdev->dev) != &dma_iommu_ops);
Alexey Kardashevskiy0e1ffef2015-08-27 16:01:16 +10001739 set_dma_offset(&pdev->dev, pe->tce_bypass_base);
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001740 set_iommu_table_base(&pdev->dev, pe->table_group.tables[0]);
Alexey Kardashevskiy46170822015-06-05 16:34:54 +10001741 /*
1742 * Note: iommu_add_device() will fail here as
1743 * for physical PE: the device is already added by now;
1744 * for virtual PE: sysfs entries are not ready yet and
1745 * tce_iommu_bus_notifier will add the device to a group later.
1746 */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001747}
1748
Russell Curreya0f98622017-06-21 17:18:03 +10001749static bool pnv_pci_ioda_pe_single_vendor(struct pnv_ioda_pe *pe)
1750{
1751 unsigned short vendor = 0;
1752 struct pci_dev *pdev;
1753
1754 if (pe->device_count == 1)
1755 return true;
1756
1757 /* pe->pdev should be set if it's a single device, pe->pbus if not */
1758 if (!pe->pbus)
1759 return true;
1760
1761 list_for_each_entry(pdev, &pe->pbus->devices, bus_list) {
1762 if (!vendor) {
1763 vendor = pdev->vendor;
1764 continue;
1765 }
1766
1767 if (pdev->vendor != vendor)
1768 return false;
1769 }
1770
1771 return true;
1772}
1773
Russell Currey8e3f1b12017-06-21 17:18:04 +10001774/*
1775 * Reconfigure TVE#0 to be usable as 64-bit DMA space.
1776 *
1777 * The first 4GB of virtual memory for a PE is reserved for 32-bit accesses.
1778 * Devices can only access more than that if bit 59 of the PCI address is set
1779 * by hardware, which indicates TVE#1 should be used instead of TVE#0.
1780 * Many PCI devices are not capable of addressing that many bits, and as a
1781 * result are limited to the 4GB of virtual memory made available to 32-bit
1782 * devices in TVE#0.
1783 *
1784 * In order to work around this, reconfigure TVE#0 to be suitable for 64-bit
1785 * devices by configuring the virtual memory past the first 4GB inaccessible
1786 * by 64-bit DMAs. This should only be used by devices that want more than
1787 * 4GB, and only on PEs that have no 32-bit devices.
1788 *
1789 * Currently this will only work on PHB3 (POWER8).
1790 */
1791static int pnv_pci_ioda_dma_64bit_bypass(struct pnv_ioda_pe *pe)
1792{
1793 u64 window_size, table_size, tce_count, addr;
1794 struct page *table_pages;
1795 u64 tce_order = 28; /* 256MB TCEs */
1796 __be64 *tces;
1797 s64 rc;
1798
1799 /*
1800 * Window size needs to be a power of two, but needs to account for
1801 * shifting memory by the 4GB offset required to skip 32bit space.
1802 */
1803 window_size = roundup_pow_of_two(memory_hotplug_max() + (1ULL << 32));
1804 tce_count = window_size >> tce_order;
1805 table_size = tce_count << 3;
1806
1807 if (table_size < PAGE_SIZE)
1808 table_size = PAGE_SIZE;
1809
1810 table_pages = alloc_pages_node(pe->phb->hose->node, GFP_KERNEL,
1811 get_order(table_size));
1812 if (!table_pages)
1813 goto err;
1814
1815 tces = page_address(table_pages);
1816 if (!tces)
1817 goto err;
1818
1819 memset(tces, 0, table_size);
1820
1821 for (addr = 0; addr < memory_hotplug_max(); addr += (1 << tce_order)) {
1822 tces[(addr + (1ULL << 32)) >> tce_order] =
1823 cpu_to_be64(addr | TCE_PCI_READ | TCE_PCI_WRITE);
1824 }
1825
1826 rc = opal_pci_map_pe_dma_window(pe->phb->opal_id,
1827 pe->pe_number,
1828 /* reconfigure window 0 */
1829 (pe->pe_number << 1) + 0,
1830 1,
1831 __pa(tces),
1832 table_size,
1833 1 << tce_order);
1834 if (rc == OPAL_SUCCESS) {
1835 pe_info(pe, "Using 64-bit DMA iommu bypass (through TVE#0)\n");
1836 return 0;
1837 }
1838err:
1839 pe_err(pe, "Error configuring 64-bit DMA bypass\n");
1840 return -EIO;
1841}
1842
Daniel Axtens763d2d82015-04-28 15:12:07 +10001843static int pnv_pci_ioda_dma_set_mask(struct pci_dev *pdev, u64 dma_mask)
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001844{
Daniel Axtens763d2d82015-04-28 15:12:07 +10001845 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
1846 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001847 struct pci_dn *pdn = pci_get_pdn(pdev);
1848 struct pnv_ioda_pe *pe;
1849 uint64_t top;
1850 bool bypass = false;
Russell Currey8e3f1b12017-06-21 17:18:04 +10001851 s64 rc;
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001852
1853 if (WARN_ON(!pdn || pdn->pe_number == IODA_INVALID_PE))
Ingo Molnared7158b2018-02-22 10:54:55 +01001854 return -ENODEV;
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001855
1856 pe = &phb->ioda.pe_array[pdn->pe_number];
1857 if (pe->tce_bypass_enabled) {
1858 top = pe->tce_bypass_base + memblock_end_of_DRAM() - 1;
1859 bypass = (dma_mask >= top);
1860 }
1861
1862 if (bypass) {
1863 dev_info(&pdev->dev, "Using 64-bit DMA iommu bypass\n");
Christoph Hellwig2d9d6f62017-12-22 10:58:24 +01001864 set_dma_ops(&pdev->dev, &dma_nommu_ops);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001865 } else {
Russell Currey8e3f1b12017-06-21 17:18:04 +10001866 /*
1867 * If the device can't set the TCE bypass bit but still wants
1868 * to access 4GB or more, on PHB3 we can reconfigure TVE#0 to
1869 * bypass the 32-bit region and be usable for 64-bit DMAs.
1870 * The device needs to be able to address all of this space.
1871 */
1872 if (dma_mask >> 32 &&
1873 dma_mask > (memory_hotplug_max() + (1ULL << 32)) &&
1874 pnv_pci_ioda_pe_single_vendor(pe) &&
1875 phb->model == PNV_PHB_MODEL_PHB3) {
1876 /* Configure the bypass mode */
1877 rc = pnv_pci_ioda_dma_64bit_bypass(pe);
1878 if (rc)
1879 return rc;
1880 /* 4GB offset bypasses 32-bit space */
1881 set_dma_offset(&pdev->dev, (1ULL << 32));
Christoph Hellwig2d9d6f62017-12-22 10:58:24 +01001882 set_dma_ops(&pdev->dev, &dma_nommu_ops);
Alistair Popple253fd512017-07-26 15:26:40 +10001883 } else if (dma_mask >> 32 && dma_mask != DMA_BIT_MASK(64)) {
1884 /*
1885 * Fail the request if a DMA mask between 32 and 64 bits
1886 * was requested but couldn't be fulfilled. Ideally we
1887 * would do this for 64-bits but historically we have
1888 * always fallen back to 32-bits.
1889 */
1890 return -ENOMEM;
Russell Currey8e3f1b12017-06-21 17:18:04 +10001891 } else {
1892 dev_info(&pdev->dev, "Using 32-bit DMA via iommu\n");
1893 set_dma_ops(&pdev->dev, &dma_iommu_ops);
1894 }
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001895 }
Brian W Harta32305b2014-07-31 14:24:37 -05001896 *pdev->dev.dma_mask = dma_mask;
Alistair Popple5d2aa712015-12-17 13:43:13 +11001897
1898 /* Update peer npu devices */
Alexey Kardashevskiyf9f83452016-04-29 18:55:20 +10001899 pnv_npu_try_dma_set_bypass(pdev, bypass);
Alistair Popple5d2aa712015-12-17 13:43:13 +11001900
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001901 return 0;
1902}
1903
Andrew Donnellan535229822015-08-07 13:45:54 +10001904static u64 pnv_pci_ioda_dma_get_required_mask(struct pci_dev *pdev)
Gavin Shanfe7e85c2014-09-30 12:39:10 +10001905{
Andrew Donnellan535229822015-08-07 13:45:54 +10001906 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
1907 struct pnv_phb *phb = hose->private_data;
Gavin Shanfe7e85c2014-09-30 12:39:10 +10001908 struct pci_dn *pdn = pci_get_pdn(pdev);
1909 struct pnv_ioda_pe *pe;
1910 u64 end, mask;
1911
1912 if (WARN_ON(!pdn || pdn->pe_number == IODA_INVALID_PE))
1913 return 0;
1914
1915 pe = &phb->ioda.pe_array[pdn->pe_number];
1916 if (!pe->tce_bypass_enabled)
1917 return __dma_get_required_mask(&pdev->dev);
1918
1919
1920 end = pe->tce_bypass_base + memblock_end_of_DRAM();
1921 mask = 1ULL << (fls64(end) - 1);
1922 mask += mask - 1;
1923
1924 return mask;
1925}
1926
Gavin Shandff4a392014-07-15 17:00:55 +10001927static void pnv_ioda_setup_bus_dma(struct pnv_ioda_pe *pe,
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11001928 struct pci_bus *bus,
1929 bool add_to_group)
Benjamin Herrenschmidt74251fe2013-07-01 17:54:09 +10001930{
1931 struct pci_dev *dev;
1932
1933 list_for_each_entry(dev, &bus->devices, bus_list) {
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001934 set_iommu_table_base(&dev->dev, pe->table_group.tables[0]);
Benjamin Herrenschmidte91c25112015-06-24 15:25:27 +10001935 set_dma_offset(&dev->dev, pe->tce_bypass_base);
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11001936 if (add_to_group)
1937 iommu_add_device(&dev->dev);
Gavin Shandff4a392014-07-15 17:00:55 +10001938
Alexey Kardashevskiy5c89a872015-06-18 11:41:36 +10001939 if ((pe->flags & PNV_IODA_PE_BUS_ALL) && dev->subordinate)
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11001940 pnv_ioda_setup_bus_dma(pe, dev->subordinate,
1941 add_to_group);
Benjamin Herrenschmidt74251fe2013-07-01 17:54:09 +10001942 }
1943}
1944
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10001945static inline __be64 __iomem *pnv_ioda_get_inval_reg(struct pnv_phb *phb,
1946 bool real_mode)
1947{
1948 return real_mode ? (__be64 __iomem *)(phb->regs_phys + 0x210) :
1949 (phb->regs + 0x210);
1950}
1951
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10001952static void pnv_pci_p7ioc_tce_invalidate(struct iommu_table *tbl,
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001953 unsigned long index, unsigned long npages, bool rm)
Gavin Shan4cce9552013-04-25 19:21:00 +00001954{
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10001955 struct iommu_table_group_link *tgl = list_first_entry_or_null(
1956 &tbl->it_group_list, struct iommu_table_group_link,
1957 next);
1958 struct pnv_ioda_pe *pe = container_of(tgl->table_group,
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001959 struct pnv_ioda_pe, table_group);
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10001960 __be64 __iomem *invalidate = pnv_ioda_get_inval_reg(pe->phb, rm);
Gavin Shan4cce9552013-04-25 19:21:00 +00001961 unsigned long start, end, inc;
1962
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001963 start = __pa(((__be64 *)tbl->it_base) + index - tbl->it_offset);
1964 end = __pa(((__be64 *)tbl->it_base) + index - tbl->it_offset +
1965 npages - 1);
Gavin Shan4cce9552013-04-25 19:21:00 +00001966
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10001967 /* p7ioc-style invalidation, 2 TCEs per write */
1968 start |= (1ull << 63);
1969 end |= (1ull << 63);
1970 inc = 16;
Gavin Shan4cce9552013-04-25 19:21:00 +00001971 end |= inc - 1; /* round up end to be different than start */
1972
1973 mb(); /* Ensure above stores are visible */
1974 while (start <= end) {
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10001975 if (rm)
Michael Ellerman001ff2e2018-05-14 22:50:32 +10001976 __raw_rm_writeq_be(start, invalidate);
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10001977 else
Michael Ellerman001ff2e2018-05-14 22:50:32 +10001978 __raw_writeq_be(start, invalidate);
1979
Gavin Shan4cce9552013-04-25 19:21:00 +00001980 start += inc;
1981 }
1982
1983 /*
1984 * The iommu layer will do another mb() for us on build()
1985 * and we don't care on free()
1986 */
1987}
1988
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001989static int pnv_ioda1_tce_build(struct iommu_table *tbl, long index,
1990 long npages, unsigned long uaddr,
1991 enum dma_data_direction direction,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001992 unsigned long attrs)
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001993{
1994 int ret = pnv_tce_build(tbl, index, npages, uaddr, direction,
1995 attrs);
1996
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10001997 if (!ret)
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10001998 pnv_pci_p7ioc_tce_invalidate(tbl, index, npages, false);
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001999
2000 return ret;
2001}
2002
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002003#ifdef CONFIG_IOMMU_API
2004static int pnv_ioda1_tce_xchg(struct iommu_table *tbl, long index,
2005 unsigned long *hpa, enum dma_data_direction *direction)
2006{
Alexey Kardashevskiya68bd122018-07-04 16:13:49 +10002007 long ret = pnv_tce_xchg(tbl, index, hpa, direction, true);
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002008
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10002009 if (!ret)
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10002010 pnv_pci_p7ioc_tce_invalidate(tbl, index, 1, false);
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002011
2012 return ret;
2013}
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002014
2015static int pnv_ioda1_tce_xchg_rm(struct iommu_table *tbl, long index,
2016 unsigned long *hpa, enum dma_data_direction *direction)
2017{
Alexey Kardashevskiya68bd122018-07-04 16:13:49 +10002018 long ret = pnv_tce_xchg(tbl, index, hpa, direction, false);
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002019
2020 if (!ret)
2021 pnv_pci_p7ioc_tce_invalidate(tbl, index, 1, true);
2022
2023 return ret;
2024}
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002025#endif
2026
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002027static void pnv_ioda1_tce_free(struct iommu_table *tbl, long index,
2028 long npages)
2029{
2030 pnv_tce_free(tbl, index, npages);
2031
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10002032 pnv_pci_p7ioc_tce_invalidate(tbl, index, npages, false);
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002033}
2034
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002035static struct iommu_table_ops pnv_ioda1_iommu_ops = {
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002036 .set = pnv_ioda1_tce_build,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002037#ifdef CONFIG_IOMMU_API
2038 .exchange = pnv_ioda1_tce_xchg,
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002039 .exchange_rm = pnv_ioda1_tce_xchg_rm,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002040 .useraddrptr = pnv_tce_useraddrptr,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002041#endif
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002042 .clear = pnv_ioda1_tce_free,
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002043 .get = pnv_tce_get,
2044};
2045
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10002046#define PHB3_TCE_KILL_INVAL_ALL PPC_BIT(0)
2047#define PHB3_TCE_KILL_INVAL_PE PPC_BIT(1)
2048#define PHB3_TCE_KILL_INVAL_ONE PPC_BIT(2)
Alexey Kardashevskiybef92532016-04-29 18:55:17 +10002049
Alistair Popple6b3d12a2017-05-03 13:24:08 +10002050static void pnv_pci_phb3_tce_invalidate_entire(struct pnv_phb *phb, bool rm)
Alexey Kardashevskiy0bbcdb42016-04-29 18:55:18 +10002051{
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10002052 __be64 __iomem *invalidate = pnv_ioda_get_inval_reg(phb, rm);
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10002053 const unsigned long val = PHB3_TCE_KILL_INVAL_ALL;
Alexey Kardashevskiy0bbcdb42016-04-29 18:55:18 +10002054
2055 mb(); /* Ensure previous TCE table stores are visible */
2056 if (rm)
Michael Ellerman001ff2e2018-05-14 22:50:32 +10002057 __raw_rm_writeq_be(val, invalidate);
Alexey Kardashevskiy0bbcdb42016-04-29 18:55:18 +10002058 else
Michael Ellerman001ff2e2018-05-14 22:50:32 +10002059 __raw_writeq_be(val, invalidate);
Alexey Kardashevskiy0bbcdb42016-04-29 18:55:18 +10002060}
2061
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10002062static inline void pnv_pci_phb3_tce_invalidate_pe(struct pnv_ioda_pe *pe)
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002063{
2064 /* 01xb - invalidate TCEs that match the specified PE# */
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10002065 __be64 __iomem *invalidate = pnv_ioda_get_inval_reg(pe->phb, false);
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10002066 unsigned long val = PHB3_TCE_KILL_INVAL_PE | (pe->pe_number & 0xFF);
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002067
2068 mb(); /* Ensure above stores are visible */
Michael Ellerman001ff2e2018-05-14 22:50:32 +10002069 __raw_writeq_be(val, invalidate);
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002070}
2071
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10002072static void pnv_pci_phb3_tce_invalidate(struct pnv_ioda_pe *pe, bool rm,
2073 unsigned shift, unsigned long index,
2074 unsigned long npages)
Gavin Shan4cce9552013-04-25 19:21:00 +00002075{
Alexey Kardashevskiy4d902192016-08-03 18:40:45 +10002076 __be64 __iomem *invalidate = pnv_ioda_get_inval_reg(pe->phb, rm);
Gavin Shan4cce9552013-04-25 19:21:00 +00002077 unsigned long start, end, inc;
Gavin Shan4cce9552013-04-25 19:21:00 +00002078
2079 /* We'll invalidate DMA address in PE scope */
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10002080 start = PHB3_TCE_KILL_INVAL_ONE;
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10002081 start |= (pe->pe_number & 0xFF);
Gavin Shan4cce9552013-04-25 19:21:00 +00002082 end = start;
2083
2084 /* Figure out the start, end and step */
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002085 start |= (index << shift);
2086 end |= ((index + npages - 1) << shift);
Alexey Kardashevskiyb0376c92014-06-06 18:44:01 +10002087 inc = (0x1ull << shift);
Gavin Shan4cce9552013-04-25 19:21:00 +00002088 mb();
2089
2090 while (start <= end) {
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10002091 if (rm)
Michael Ellerman001ff2e2018-05-14 22:50:32 +10002092 __raw_rm_writeq_be(start, invalidate);
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10002093 else
Michael Ellerman001ff2e2018-05-14 22:50:32 +10002094 __raw_writeq_be(start, invalidate);
Gavin Shan4cce9552013-04-25 19:21:00 +00002095 start += inc;
2096 }
2097}
2098
Benjamin Herrenschmidtf0228c42016-07-08 16:37:15 +10002099static inline void pnv_pci_ioda2_tce_invalidate_pe(struct pnv_ioda_pe *pe)
2100{
2101 struct pnv_phb *phb = pe->phb;
2102
2103 if (phb->model == PNV_PHB_MODEL_PHB3 && phb->regs)
2104 pnv_pci_phb3_tce_invalidate_pe(pe);
2105 else
2106 opal_pci_tce_kill(phb->opal_id, OPAL_PCI_TCE_KILL_PE,
2107 pe->pe_number, 0, 0, 0);
2108}
2109
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10002110static void pnv_pci_ioda2_tce_invalidate(struct iommu_table *tbl,
2111 unsigned long index, unsigned long npages, bool rm)
2112{
2113 struct iommu_table_group_link *tgl;
2114
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002115 list_for_each_entry_lockless(tgl, &tbl->it_group_list, next) {
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10002116 struct pnv_ioda_pe *pe = container_of(tgl->table_group,
2117 struct pnv_ioda_pe, table_group);
Benjamin Herrenschmidtf0228c42016-07-08 16:37:15 +10002118 struct pnv_phb *phb = pe->phb;
2119 unsigned int shift = tbl->it_page_shift;
2120
Alistair Popple616badd2017-01-10 15:41:44 +11002121 /*
2122 * NVLink1 can use the TCE kill register directly as
2123 * it's the same as PHB3. NVLink2 is different and
2124 * should go via the OPAL call.
2125 */
2126 if (phb->model == PNV_PHB_MODEL_NPU) {
Alexey Kardashevskiy0bbcdb42016-04-29 18:55:18 +10002127 /*
2128 * The NVLink hardware does not support TCE kill
2129 * per TCE entry so we have to invalidate
2130 * the entire cache for it.
2131 */
Benjamin Herrenschmidtf0228c42016-07-08 16:37:15 +10002132 pnv_pci_phb3_tce_invalidate_entire(phb, rm);
Alexey Kardashevskiy85674862016-04-29 18:55:23 +10002133 continue;
2134 }
Benjamin Herrenschmidtf0228c42016-07-08 16:37:15 +10002135 if (phb->model == PNV_PHB_MODEL_PHB3 && phb->regs)
2136 pnv_pci_phb3_tce_invalidate(pe, rm, shift,
2137 index, npages);
Benjamin Herrenschmidtf0228c42016-07-08 16:37:15 +10002138 else
2139 opal_pci_tce_kill(phb->opal_id,
2140 OPAL_PCI_TCE_KILL_PAGES,
2141 pe->pe_number, 1u << shift,
2142 index << shift, npages);
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10002143 }
2144}
2145
Alistair Popple6b3d12a2017-05-03 13:24:08 +10002146void pnv_pci_ioda2_tce_invalidate_entire(struct pnv_phb *phb, bool rm)
2147{
2148 if (phb->model == PNV_PHB_MODEL_NPU || phb->model == PNV_PHB_MODEL_PHB3)
2149 pnv_pci_phb3_tce_invalidate_entire(phb, rm);
2150 else
2151 opal_pci_tce_kill(phb->opal_id, OPAL_PCI_TCE_KILL, 0, 0, 0, 0);
2152}
2153
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002154static int pnv_ioda2_tce_build(struct iommu_table *tbl, long index,
2155 long npages, unsigned long uaddr,
2156 enum dma_data_direction direction,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07002157 unsigned long attrs)
Gavin Shan4cce9552013-04-25 19:21:00 +00002158{
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002159 int ret = pnv_tce_build(tbl, index, npages, uaddr, direction,
2160 attrs);
Gavin Shan4cce9552013-04-25 19:21:00 +00002161
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10002162 if (!ret)
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002163 pnv_pci_ioda2_tce_invalidate(tbl, index, npages, false);
2164
2165 return ret;
2166}
2167
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002168#ifdef CONFIG_IOMMU_API
2169static int pnv_ioda2_tce_xchg(struct iommu_table *tbl, long index,
2170 unsigned long *hpa, enum dma_data_direction *direction)
2171{
Alexey Kardashevskiya68bd122018-07-04 16:13:49 +10002172 long ret = pnv_tce_xchg(tbl, index, hpa, direction, true);
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002173
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10002174 if (!ret)
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002175 pnv_pci_ioda2_tce_invalidate(tbl, index, 1, false);
2176
2177 return ret;
2178}
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002179
2180static int pnv_ioda2_tce_xchg_rm(struct iommu_table *tbl, long index,
2181 unsigned long *hpa, enum dma_data_direction *direction)
2182{
Alexey Kardashevskiya68bd122018-07-04 16:13:49 +10002183 long ret = pnv_tce_xchg(tbl, index, hpa, direction, false);
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002184
2185 if (!ret)
2186 pnv_pci_ioda2_tce_invalidate(tbl, index, 1, true);
2187
2188 return ret;
2189}
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002190#endif
2191
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002192static void pnv_ioda2_tce_free(struct iommu_table *tbl, long index,
2193 long npages)
2194{
2195 pnv_tce_free(tbl, index, npages);
2196
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10002197 pnv_pci_ioda2_tce_invalidate(tbl, index, npages, false);
Gavin Shan4cce9552013-04-25 19:21:00 +00002198}
2199
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002200static struct iommu_table_ops pnv_ioda2_iommu_ops = {
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002201 .set = pnv_ioda2_tce_build,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002202#ifdef CONFIG_IOMMU_API
2203 .exchange = pnv_ioda2_tce_xchg,
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002204 .exchange_rm = pnv_ioda2_tce_xchg_rm,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002205 .useraddrptr = pnv_tce_useraddrptr,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002206#endif
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002207 .clear = pnv_ioda2_tce_free,
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002208 .get = pnv_tce_get,
Alexey Kardashevskiyda2bb0d2018-07-04 16:13:44 +10002209 .free = pnv_pci_ioda2_table_free_pages,
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002210};
2211
Gavin Shan801846d2016-05-03 15:41:34 +10002212static int pnv_pci_ioda_dev_dma_weight(struct pci_dev *dev, void *data)
2213{
2214 unsigned int *weight = (unsigned int *)data;
2215
2216 /* This is quite simplistic. The "base" weight of a device
2217 * is 10. 0 means no DMA is to be accounted for it.
2218 */
2219 if (dev->hdr_type != PCI_HEADER_TYPE_NORMAL)
2220 return 0;
2221
2222 if (dev->class == PCI_CLASS_SERIAL_USB_UHCI ||
2223 dev->class == PCI_CLASS_SERIAL_USB_OHCI ||
2224 dev->class == PCI_CLASS_SERIAL_USB_EHCI)
2225 *weight += 3;
2226 else if ((dev->class >> 8) == PCI_CLASS_STORAGE_RAID)
2227 *weight += 15;
2228 else
2229 *weight += 10;
2230
2231 return 0;
2232}
2233
2234static unsigned int pnv_pci_ioda_pe_dma_weight(struct pnv_ioda_pe *pe)
2235{
2236 unsigned int weight = 0;
2237
2238 /* SRIOV VF has same DMA32 weight as its PF */
2239#ifdef CONFIG_PCI_IOV
2240 if ((pe->flags & PNV_IODA_PE_VF) && pe->parent_dev) {
2241 pnv_pci_ioda_dev_dma_weight(pe->parent_dev, &weight);
2242 return weight;
2243 }
2244#endif
2245
2246 if ((pe->flags & PNV_IODA_PE_DEV) && pe->pdev) {
2247 pnv_pci_ioda_dev_dma_weight(pe->pdev, &weight);
2248 } else if ((pe->flags & PNV_IODA_PE_BUS) && pe->pbus) {
2249 struct pci_dev *pdev;
2250
2251 list_for_each_entry(pdev, &pe->pbus->devices, bus_list)
2252 pnv_pci_ioda_dev_dma_weight(pdev, &weight);
2253 } else if ((pe->flags & PNV_IODA_PE_BUS_ALL) && pe->pbus) {
2254 pci_walk_bus(pe->pbus, pnv_pci_ioda_dev_dma_weight, &weight);
2255 }
2256
2257 return weight;
2258}
2259
Gavin Shanb30d9362016-05-03 15:41:32 +10002260static void pnv_pci_ioda1_setup_dma_pe(struct pnv_phb *phb,
Gavin Shan2b923ed2016-05-05 12:04:16 +10002261 struct pnv_ioda_pe *pe)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002262{
2263
2264 struct page *tce_mem = NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002265 struct iommu_table *tbl;
Gavin Shan2b923ed2016-05-05 12:04:16 +10002266 unsigned int weight, total_weight = 0;
2267 unsigned int tce32_segsz, base, segs, avail, i;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002268 int64_t rc;
2269 void *addr;
2270
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002271 /* XXX FIXME: Handle 64-bit only DMA devices */
2272 /* XXX FIXME: Provide 64-bit DMA facilities & non-4K TCE tables etc.. */
2273 /* XXX FIXME: Allocate multi-level tables on PHB3 */
Gavin Shan2b923ed2016-05-05 12:04:16 +10002274 weight = pnv_pci_ioda_pe_dma_weight(pe);
2275 if (!weight)
2276 return;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002277
Gavin Shan2b923ed2016-05-05 12:04:16 +10002278 pci_walk_bus(phb->hose->bus, pnv_pci_ioda_dev_dma_weight,
2279 &total_weight);
2280 segs = (weight * phb->ioda.dma32_count) / total_weight;
2281 if (!segs)
2282 segs = 1;
2283
2284 /*
2285 * Allocate contiguous DMA32 segments. We begin with the expected
2286 * number of segments. With one more attempt, the number of DMA32
2287 * segments to be allocated is decreased by one until one segment
2288 * is allocated successfully.
2289 */
2290 do {
2291 for (base = 0; base <= phb->ioda.dma32_count - segs; base++) {
2292 for (avail = 0, i = base; i < base + segs; i++) {
2293 if (phb->ioda.dma32_segmap[i] ==
2294 IODA_INVALID_PE)
2295 avail++;
2296 }
2297
2298 if (avail == segs)
2299 goto found;
2300 }
2301 } while (--segs);
2302
2303 if (!segs) {
2304 pe_warn(pe, "No available DMA32 segments\n");
2305 return;
2306 }
2307
2308found:
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002309 tbl = pnv_pci_table_alloc(phb->hose->node);
Alexey Kardashevskiy82eae1a2017-03-27 19:27:37 +11002310 if (WARN_ON(!tbl))
2311 return;
2312
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10002313 iommu_register_group(&pe->table_group, phb->hose->global_number,
2314 pe->pe_number);
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002315 pnv_pci_link_table_and_group(phb->hose->node, 0, tbl, &pe->table_group);
Alexey Kardashevskiyc5773822015-06-05 16:34:55 +10002316
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002317 /* Grab a 32-bit TCE table */
Gavin Shan2b923ed2016-05-05 12:04:16 +10002318 pe_info(pe, "DMA weight %d (%d), assigned (%d) %d DMA32 segments\n",
2319 weight, total_weight, base, segs);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002320 pe_info(pe, " Setting up 32-bit TCE table at %08x..%08x\n",
Gavin Shanacce9712016-05-03 15:41:33 +10002321 base * PNV_IODA1_DMA32_SEGSIZE,
2322 (base + segs) * PNV_IODA1_DMA32_SEGSIZE - 1);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002323
2324 /* XXX Currently, we allocate one big contiguous table for the
2325 * TCEs. We only really need one chunk per 256M of TCE space
2326 * (ie per segment) but that's an optimization for later, it
2327 * requires some added smarts with our get/put_tce implementation
Gavin Shanacce9712016-05-03 15:41:33 +10002328 *
2329 * Each TCE page is 4KB in size and each TCE entry occupies 8
2330 * bytes
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002331 */
Gavin Shanacce9712016-05-03 15:41:33 +10002332 tce32_segsz = PNV_IODA1_DMA32_SEGSIZE >> (IOMMU_PAGE_SHIFT_4K - 3);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002333 tce_mem = alloc_pages_node(phb->hose->node, GFP_KERNEL,
Gavin Shanacce9712016-05-03 15:41:33 +10002334 get_order(tce32_segsz * segs));
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002335 if (!tce_mem) {
2336 pe_err(pe, " Failed to allocate a 32-bit TCE memory\n");
2337 goto fail;
2338 }
2339 addr = page_address(tce_mem);
Gavin Shanacce9712016-05-03 15:41:33 +10002340 memset(addr, 0, tce32_segsz * segs);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002341
2342 /* Configure HW */
2343 for (i = 0; i < segs; i++) {
2344 rc = opal_pci_map_pe_dma_window(phb->opal_id,
2345 pe->pe_number,
2346 base + i, 1,
Gavin Shanacce9712016-05-03 15:41:33 +10002347 __pa(addr) + tce32_segsz * i,
2348 tce32_segsz, IOMMU_PAGE_SIZE_4K);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002349 if (rc) {
2350 pe_err(pe, " Failed to configure 32-bit TCE table,"
2351 " err %ld\n", rc);
2352 goto fail;
2353 }
2354 }
2355
Gavin Shan2b923ed2016-05-05 12:04:16 +10002356 /* Setup DMA32 segment mapping */
2357 for (i = base; i < base + segs; i++)
2358 phb->ioda.dma32_segmap[i] = pe->pe_number;
2359
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002360 /* Setup linux iommu table */
Gavin Shanacce9712016-05-03 15:41:33 +10002361 pnv_pci_setup_iommu_table(tbl, addr, tce32_segsz * segs,
2362 base * PNV_IODA1_DMA32_SEGSIZE,
2363 IOMMU_PAGE_SHIFT_4K);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002364
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002365 tbl->it_ops = &pnv_ioda1_iommu_ops;
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002366 pe->table_group.tce32_start = tbl->it_offset << tbl->it_page_shift;
2367 pe->table_group.tce32_size = tbl->it_size << tbl->it_page_shift;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002368 iommu_init_table(tbl, phb->hose->node);
2369
Wei Yang781a8682015-03-25 16:23:57 +08002370 if (pe->flags & PNV_IODA_PE_DEV) {
Alexey Kardashevskiy46170822015-06-05 16:34:54 +10002371 /*
2372 * Setting table base here only for carrying iommu_group
2373 * further down to let iommu_add_device() do the job.
2374 * pnv_pci_ioda_dma_dev_setup will override it later anyway.
2375 */
2376 set_iommu_table_base(&pe->pdev->dev, tbl);
2377 iommu_add_device(&pe->pdev->dev);
Alexey Kardashevskiyc5773822015-06-05 16:34:55 +10002378 } else if (pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL))
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11002379 pnv_ioda_setup_bus_dma(pe, pe->pbus, true);
Benjamin Herrenschmidt74251fe2013-07-01 17:54:09 +10002380
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002381 return;
2382 fail:
2383 /* XXX Failure: Try to fallback to 64-bit only ? */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002384 if (tce_mem)
Gavin Shanacce9712016-05-03 15:41:33 +10002385 __free_pages(tce_mem, get_order(tce32_segsz * segs));
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002386 if (tbl) {
2387 pnv_pci_unlink_table_and_group(tbl, &pe->table_group);
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +11002388 iommu_tce_table_put(tbl);
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002389 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002390}
2391
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002392static long pnv_pci_ioda2_set_window(struct iommu_table_group *table_group,
2393 int num, struct iommu_table *tbl)
2394{
2395 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2396 table_group);
2397 struct pnv_phb *phb = pe->phb;
2398 int64_t rc;
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002399 const unsigned long size = tbl->it_indirect_levels ?
2400 tbl->it_level_size : tbl->it_size;
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002401 const __u64 start_addr = tbl->it_offset << tbl->it_page_shift;
2402 const __u64 win_size = tbl->it_size << tbl->it_page_shift;
2403
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002404 pe_info(pe, "Setting up window#%d %llx..%llx pg=%x\n", num,
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002405 start_addr, start_addr + win_size - 1,
2406 IOMMU_PAGE_SIZE(tbl));
2407
2408 /*
2409 * Map TCE table through TVT. The TVE index is the PE number
2410 * shifted by 1 bit for 32-bits DMA space.
2411 */
2412 rc = opal_pci_map_pe_dma_window(phb->opal_id,
2413 pe->pe_number,
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002414 (pe->pe_number << 1) + num,
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002415 tbl->it_indirect_levels + 1,
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002416 __pa(tbl->it_base),
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002417 size << 3,
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002418 IOMMU_PAGE_SIZE(tbl));
2419 if (rc) {
2420 pe_err(pe, "Failed to configure TCE table, err %ld\n", rc);
2421 return rc;
2422 }
2423
2424 pnv_pci_link_table_and_group(phb->hose->node, num,
2425 tbl, &pe->table_group);
Michael Ellermaned7d9a12016-09-15 17:03:06 +10002426 pnv_pci_ioda2_tce_invalidate_pe(pe);
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002427
2428 return 0;
2429}
2430
Frederic Barrat25529102017-08-04 11:55:14 +02002431void pnv_pci_ioda2_set_bypass(struct pnv_ioda_pe *pe, bool enable)
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002432{
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002433 uint16_t window_id = (pe->pe_number << 1 ) + 1;
2434 int64_t rc;
2435
2436 pe_info(pe, "%sabling 64-bit DMA bypass\n", enable ? "En" : "Dis");
2437 if (enable) {
2438 phys_addr_t top = memblock_end_of_DRAM();
2439
2440 top = roundup_pow_of_two(top);
2441 rc = opal_pci_map_pe_dma_window_real(pe->phb->opal_id,
2442 pe->pe_number,
2443 window_id,
2444 pe->tce_bypass_base,
2445 top);
2446 } else {
2447 rc = opal_pci_map_pe_dma_window_real(pe->phb->opal_id,
2448 pe->pe_number,
2449 window_id,
2450 pe->tce_bypass_base,
2451 0);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002452 }
2453 if (rc)
2454 pe_err(pe, "OPAL error %lld configuring bypass window\n", rc);
2455 else
2456 pe->tce_bypass_enabled = enable;
2457}
2458
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002459static long pnv_pci_ioda2_create_table(struct iommu_table_group *table_group,
2460 int num, __u32 page_shift, __u64 window_size, __u32 levels,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002461 bool alloc_userspace_copy, struct iommu_table **ptbl)
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002462{
2463 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2464 table_group);
2465 int nid = pe->phb->hose->node;
2466 __u64 bus_offset = num ? pe->tce_bypass_base : table_group->tce32_start;
2467 long ret;
2468 struct iommu_table *tbl;
2469
2470 tbl = pnv_pci_table_alloc(nid);
2471 if (!tbl)
2472 return -ENOMEM;
2473
Alexey Kardashevskiy11edf112017-03-22 15:21:49 +11002474 tbl->it_ops = &pnv_ioda2_iommu_ops;
2475
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002476 ret = pnv_pci_ioda2_table_alloc_pages(nid,
2477 bus_offset, page_shift, window_size,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002478 levels, alloc_userspace_copy, tbl);
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002479 if (ret) {
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +11002480 iommu_tce_table_put(tbl);
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002481 return ret;
2482 }
2483
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002484 *ptbl = tbl;
2485
2486 return 0;
2487}
2488
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002489static long pnv_pci_ioda2_setup_default_config(struct pnv_ioda_pe *pe)
2490{
2491 struct iommu_table *tbl = NULL;
2492 long rc;
2493
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002494 /*
Nishanth Aravamudanfa144862015-09-04 11:22:52 -07002495 * crashkernel= specifies the kdump kernel's maximum memory at
2496 * some offset and there is no guaranteed the result is a power
2497 * of 2, which will cause errors later.
2498 */
2499 const u64 max_memory = __rounddown_pow_of_two(memory_hotplug_max());
2500
2501 /*
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002502 * In memory constrained environments, e.g. kdump kernel, the
2503 * DMA window can be larger than available memory, which will
2504 * cause errors later.
2505 */
Nishanth Aravamudanfa144862015-09-04 11:22:52 -07002506 const u64 window_size = min((u64)pe->table_group.tce32_size, max_memory);
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002507
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002508 rc = pnv_pci_ioda2_create_table(&pe->table_group, 0,
2509 IOMMU_PAGE_SHIFT_4K,
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002510 window_size,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002511 POWERNV_IOMMU_DEFAULT_LEVELS, false, &tbl);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002512 if (rc) {
2513 pe_err(pe, "Failed to create 32-bit TCE table, err %ld",
2514 rc);
2515 return rc;
2516 }
2517
2518 iommu_init_table(tbl, pe->phb->hose->node);
2519
2520 rc = pnv_pci_ioda2_set_window(&pe->table_group, 0, tbl);
2521 if (rc) {
2522 pe_err(pe, "Failed to configure 32-bit TCE table, err %ld\n",
2523 rc);
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +11002524 iommu_tce_table_put(tbl);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002525 return rc;
2526 }
2527
2528 if (!pnv_iommu_bypass_disabled)
2529 pnv_pci_ioda2_set_bypass(pe, true);
2530
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002531 /*
2532 * Setting table base here only for carrying iommu_group
2533 * further down to let iommu_add_device() do the job.
2534 * pnv_pci_ioda_dma_dev_setup will override it later anyway.
2535 */
2536 if (pe->flags & PNV_IODA_PE_DEV)
2537 set_iommu_table_base(&pe->pdev->dev, tbl);
2538
2539 return 0;
2540}
2541
Alexey Kardashevskiyb5926432015-06-15 17:49:59 +10002542#if defined(CONFIG_IOMMU_API) || defined(CONFIG_PCI_IOV)
2543static long pnv_pci_ioda2_unset_window(struct iommu_table_group *table_group,
2544 int num)
2545{
2546 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2547 table_group);
2548 struct pnv_phb *phb = pe->phb;
2549 long ret;
2550
2551 pe_info(pe, "Removing DMA window #%d\n", num);
2552
2553 ret = opal_pci_map_pe_dma_window(phb->opal_id, pe->pe_number,
2554 (pe->pe_number << 1) + num,
2555 0/* levels */, 0/* table address */,
2556 0/* table size */, 0/* page size */);
2557 if (ret)
2558 pe_warn(pe, "Unmapping failed, ret = %ld\n", ret);
2559 else
Michael Ellermaned7d9a12016-09-15 17:03:06 +10002560 pnv_pci_ioda2_tce_invalidate_pe(pe);
Alexey Kardashevskiyb5926432015-06-15 17:49:59 +10002561
2562 pnv_pci_unlink_table_and_group(table_group->tables[num], table_group);
2563
2564 return ret;
2565}
2566#endif
2567
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002568#ifdef CONFIG_IOMMU_API
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002569static unsigned long pnv_pci_ioda2_get_table_size(__u32 page_shift,
2570 __u64 window_size, __u32 levels)
2571{
2572 unsigned long bytes = 0;
2573 const unsigned window_shift = ilog2(window_size);
2574 unsigned entries_shift = window_shift - page_shift;
2575 unsigned table_shift = entries_shift + 3;
2576 unsigned long tce_table_size = max(0x1000UL, 1UL << table_shift);
2577 unsigned long direct_table_size;
2578
2579 if (!levels || (levels > POWERNV_IOMMU_MAX_LEVELS) ||
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002580 !is_power_of_2(window_size))
2581 return 0;
2582
2583 /* Calculate a direct table size from window_size and levels */
2584 entries_shift = (entries_shift + levels - 1) / levels;
2585 table_shift = entries_shift + 3;
2586 table_shift = max_t(unsigned, table_shift, PAGE_SHIFT);
2587 direct_table_size = 1UL << table_shift;
2588
2589 for ( ; levels; --levels) {
2590 bytes += _ALIGN_UP(tce_table_size, direct_table_size);
2591
2592 tce_table_size /= direct_table_size;
2593 tce_table_size <<= 3;
Alexey Kardashevskiye49a6a22017-04-13 17:05:27 +10002594 tce_table_size = max_t(unsigned long,
2595 tce_table_size, direct_table_size);
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002596 }
2597
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002598 return bytes + bytes; /* one for HW table, one for userspace copy */
2599}
2600
2601static long pnv_pci_ioda2_create_table_userspace(
2602 struct iommu_table_group *table_group,
2603 int num, __u32 page_shift, __u64 window_size, __u32 levels,
2604 struct iommu_table **ptbl)
2605{
Alexey Kardashevskiy4acf7972019-02-13 14:38:18 +11002606 long ret = pnv_pci_ioda2_create_table(table_group,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002607 num, page_shift, window_size, levels, true, ptbl);
Alexey Kardashevskiy4acf7972019-02-13 14:38:18 +11002608
2609 if (!ret)
2610 (*ptbl)->it_allocated_size = pnv_pci_ioda2_get_table_size(
2611 page_shift, window_size, levels);
2612 return ret;
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002613}
2614
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002615static void pnv_ioda2_take_ownership(struct iommu_table_group *table_group)
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002616{
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002617 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2618 table_group);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002619 /* Store @tbl as pnv_pci_ioda2_unset_window() resets it */
2620 struct iommu_table *tbl = pe->table_group.tables[0];
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002621
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002622 pnv_pci_ioda2_set_bypass(pe, false);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002623 pnv_pci_ioda2_unset_window(&pe->table_group, 0);
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11002624 if (pe->pbus)
2625 pnv_ioda_setup_bus_dma(pe, pe->pbus, false);
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +11002626 iommu_tce_table_put(tbl);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002627}
2628
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002629static void pnv_ioda2_release_ownership(struct iommu_table_group *table_group)
2630{
2631 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2632 table_group);
2633
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002634 pnv_pci_ioda2_setup_default_config(pe);
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11002635 if (pe->pbus)
2636 pnv_ioda_setup_bus_dma(pe, pe->pbus, false);
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002637}
2638
2639static struct iommu_table_group_ops pnv_pci_ioda2_ops = {
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002640 .get_table_size = pnv_pci_ioda2_get_table_size,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002641 .create_table = pnv_pci_ioda2_create_table_userspace,
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002642 .set_window = pnv_pci_ioda2_set_window,
2643 .unset_window = pnv_pci_ioda2_unset_window,
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002644 .take_ownership = pnv_ioda2_take_ownership,
2645 .release_ownership = pnv_ioda2_release_ownership,
2646};
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002647
2648static int gpe_table_group_to_npe_cb(struct device *dev, void *opaque)
2649{
2650 struct pci_controller *hose;
2651 struct pnv_phb *phb;
2652 struct pnv_ioda_pe **ptmppe = opaque;
2653 struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
2654 struct pci_dn *pdn = pci_get_pdn(pdev);
2655
2656 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
2657 return 0;
2658
2659 hose = pci_bus_to_host(pdev->bus);
2660 phb = hose->private_data;
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01002661 if (phb->type != PNV_PHB_NPU_NVLINK)
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002662 return 0;
2663
2664 *ptmppe = &phb->ioda.pe_array[pdn->pe_number];
2665
2666 return 1;
2667}
2668
2669/*
2670 * This returns PE of associated NPU.
2671 * This assumes that NPU is in the same IOMMU group with GPU and there is
2672 * no other PEs.
2673 */
2674static struct pnv_ioda_pe *gpe_table_group_to_npe(
2675 struct iommu_table_group *table_group)
2676{
2677 struct pnv_ioda_pe *npe = NULL;
2678 int ret = iommu_group_for_each_dev(table_group->group, &npe,
2679 gpe_table_group_to_npe_cb);
2680
2681 BUG_ON(!ret || !npe);
2682
2683 return npe;
2684}
2685
2686static long pnv_pci_ioda2_npu_set_window(struct iommu_table_group *table_group,
2687 int num, struct iommu_table *tbl)
2688{
Alexey Kardashevskiyd41ce7b2018-02-13 16:51:35 +11002689 struct pnv_ioda_pe *npe = gpe_table_group_to_npe(table_group);
2690 int num2 = (num == 0) ? 1 : 0;
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002691 long ret = pnv_pci_ioda2_set_window(table_group, num, tbl);
2692
2693 if (ret)
2694 return ret;
2695
Alexey Kardashevskiyd41ce7b2018-02-13 16:51:35 +11002696 if (table_group->tables[num2])
2697 pnv_npu_unset_window(npe, num2);
2698
2699 ret = pnv_npu_set_window(npe, num, tbl);
2700 if (ret) {
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002701 pnv_pci_ioda2_unset_window(table_group, num);
Alexey Kardashevskiyd41ce7b2018-02-13 16:51:35 +11002702 if (table_group->tables[num2])
2703 pnv_npu_set_window(npe, num2,
2704 table_group->tables[num2]);
2705 }
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002706
2707 return ret;
2708}
2709
2710static long pnv_pci_ioda2_npu_unset_window(
2711 struct iommu_table_group *table_group,
2712 int num)
2713{
Alexey Kardashevskiyd41ce7b2018-02-13 16:51:35 +11002714 struct pnv_ioda_pe *npe = gpe_table_group_to_npe(table_group);
2715 int num2 = (num == 0) ? 1 : 0;
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002716 long ret = pnv_pci_ioda2_unset_window(table_group, num);
2717
2718 if (ret)
2719 return ret;
2720
Alexey Kardashevskiyd41ce7b2018-02-13 16:51:35 +11002721 if (!npe->table_group.tables[num])
2722 return 0;
2723
2724 ret = pnv_npu_unset_window(npe, num);
2725 if (ret)
2726 return ret;
2727
2728 if (table_group->tables[num2])
2729 ret = pnv_npu_set_window(npe, num2, table_group->tables[num2]);
2730
2731 return ret;
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002732}
2733
2734static void pnv_ioda2_npu_take_ownership(struct iommu_table_group *table_group)
2735{
2736 /*
2737 * Detach NPU first as pnv_ioda2_take_ownership() will destroy
2738 * the iommu_table if 32bit DMA is enabled.
2739 */
2740 pnv_npu_take_ownership(gpe_table_group_to_npe(table_group));
2741 pnv_ioda2_take_ownership(table_group);
2742}
2743
2744static struct iommu_table_group_ops pnv_pci_ioda2_npu_ops = {
2745 .get_table_size = pnv_pci_ioda2_get_table_size,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002746 .create_table = pnv_pci_ioda2_create_table_userspace,
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002747 .set_window = pnv_pci_ioda2_npu_set_window,
2748 .unset_window = pnv_pci_ioda2_npu_unset_window,
2749 .take_ownership = pnv_ioda2_npu_take_ownership,
2750 .release_ownership = pnv_ioda2_release_ownership,
2751};
2752
2753static void pnv_pci_ioda_setup_iommu_api(void)
2754{
2755 struct pci_controller *hose, *tmp;
2756 struct pnv_phb *phb;
2757 struct pnv_ioda_pe *pe, *gpe;
2758
2759 /*
2760 * Now we have all PHBs discovered, time to add NPU devices to
2761 * the corresponding IOMMU groups.
2762 */
2763 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
2764 phb = hose->private_data;
2765
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01002766 if (phb->type != PNV_PHB_NPU_NVLINK)
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002767 continue;
2768
2769 list_for_each_entry(pe, &phb->ioda.pe_list, list) {
2770 gpe = pnv_pci_npu_setup_iommu(pe);
2771 if (gpe)
2772 gpe->table_group.ops = &pnv_pci_ioda2_npu_ops;
2773 }
2774 }
2775}
2776#else /* !CONFIG_IOMMU_API */
2777static void pnv_pci_ioda_setup_iommu_api(void) { };
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002778#endif
2779
Alexey Kardashevskiy7ef73cd2018-05-14 19:39:22 +10002780static unsigned long pnv_ioda_parse_tce_sizes(struct pnv_phb *phb)
2781{
2782 struct pci_controller *hose = phb->hose;
2783 struct device_node *dn = hose->dn;
2784 unsigned long mask = 0;
2785 int i, rc, count;
2786 u32 val;
2787
2788 count = of_property_count_u32_elems(dn, "ibm,supported-tce-sizes");
2789 if (count <= 0) {
2790 mask = SZ_4K | SZ_64K;
2791 /* Add 16M for POWER8 by default */
2792 if (cpu_has_feature(CPU_FTR_ARCH_207S) &&
2793 !cpu_has_feature(CPU_FTR_ARCH_300))
Alexey Kardashevskiy00c376f2018-07-02 17:42:05 +10002794 mask |= SZ_16M | SZ_256M;
Alexey Kardashevskiy7ef73cd2018-05-14 19:39:22 +10002795 return mask;
2796 }
2797
2798 for (i = 0; i < count; i++) {
2799 rc = of_property_read_u32_index(dn, "ibm,supported-tce-sizes",
2800 i, &val);
2801 if (rc == 0)
2802 mask |= 1ULL << val;
2803 }
2804
2805 return mask;
2806}
2807
Gavin Shan373f5652013-04-25 19:21:01 +00002808static void pnv_pci_ioda2_setup_dma_pe(struct pnv_phb *phb,
2809 struct pnv_ioda_pe *pe)
2810{
Gavin Shan373f5652013-04-25 19:21:01 +00002811 int64_t rc;
2812
Gavin Shanccd1c192016-05-20 16:41:31 +10002813 if (!pnv_pci_ioda_pe_dma_weight(pe))
2814 return;
2815
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002816 /* TVE #1 is selected by PCI address bit 59 */
2817 pe->tce_bypass_base = 1ull << 59;
2818
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10002819 iommu_register_group(&pe->table_group, phb->hose->global_number,
2820 pe->pe_number);
Alexey Kardashevskiyc5773822015-06-05 16:34:55 +10002821
Gavin Shan373f5652013-04-25 19:21:01 +00002822 /* The PE will reserve all possible 32-bits space */
Gavin Shan373f5652013-04-25 19:21:01 +00002823 pe_info(pe, "Setting up 32-bit TCE table at 0..%08x\n",
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002824 phb->ioda.m32_pci_base);
Gavin Shan373f5652013-04-25 19:21:01 +00002825
Alexey Kardashevskiye5aad1e2015-06-05 16:35:16 +10002826 /* Setup linux iommu table */
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002827 pe->table_group.tce32_start = 0;
2828 pe->table_group.tce32_size = phb->ioda.m32_pci_base;
2829 pe->table_group.max_dynamic_windows_supported =
2830 IOMMU_TABLE_GROUP_MAX_TABLES;
2831 pe->table_group.max_levels = POWERNV_IOMMU_MAX_LEVELS;
Alexey Kardashevskiy7ef73cd2018-05-14 19:39:22 +10002832 pe->table_group.pgsizes = pnv_ioda_parse_tce_sizes(phb);
Alexey Kardashevskiye5aad1e2015-06-05 16:35:16 +10002833#ifdef CONFIG_IOMMU_API
2834 pe->table_group.ops = &pnv_pci_ioda2_ops;
2835#endif
2836
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002837 rc = pnv_pci_ioda2_setup_default_config(pe);
Gavin Shan801846d2016-05-03 15:41:34 +10002838 if (rc)
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002839 return;
Gavin Shan373f5652013-04-25 19:21:01 +00002840
Alexey Kardashevskiy20f13b92017-02-21 13:40:20 +11002841 if (pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL))
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11002842 pnv_ioda_setup_bus_dma(pe, pe->pbus, true);
Gavin Shan373f5652013-04-25 19:21:01 +00002843}
2844
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002845#ifdef CONFIG_PCI_MSI
Suresh Warrier4ee11c12016-08-19 15:35:49 +10002846int64_t pnv_opal_pci_msi_eoi(struct irq_chip *chip, unsigned int hw_irq)
Gavin Shan137436c2013-04-25 19:20:59 +00002847{
Gavin Shan137436c2013-04-25 19:20:59 +00002848 struct pnv_phb *phb = container_of(chip, struct pnv_phb,
2849 ioda.irq_chip);
Gavin Shan137436c2013-04-25 19:20:59 +00002850
Suresh Warrier4ee11c12016-08-19 15:35:49 +10002851 return opal_pci_msi_eoi(phb->opal_id, hw_irq);
2852}
2853
2854static void pnv_ioda2_msi_eoi(struct irq_data *d)
2855{
2856 int64_t rc;
2857 unsigned int hw_irq = (unsigned int)irqd_to_hwirq(d);
2858 struct irq_chip *chip = irq_data_get_irq_chip(d);
2859
2860 rc = pnv_opal_pci_msi_eoi(chip, hw_irq);
Gavin Shan137436c2013-04-25 19:20:59 +00002861 WARN_ON_ONCE(rc);
2862
2863 icp_native_eoi(d);
2864}
2865
Ian Munsiefd9a1c22014-10-08 19:54:55 +11002866
Ian Munsief4568342016-07-14 07:17:00 +10002867void pnv_set_msi_irq_chip(struct pnv_phb *phb, unsigned int virq)
Ian Munsiefd9a1c22014-10-08 19:54:55 +11002868{
2869 struct irq_data *idata;
2870 struct irq_chip *ichip;
2871
Benjamin Herrenschmidtfb111332016-07-08 16:37:09 +10002872 /* The MSI EOI OPAL call is only needed on PHB3 */
2873 if (phb->model != PNV_PHB_MODEL_PHB3)
Ian Munsiefd9a1c22014-10-08 19:54:55 +11002874 return;
2875
2876 if (!phb->ioda.irq_chip_init) {
2877 /*
2878 * First time we setup an MSI IRQ, we need to setup the
2879 * corresponding IRQ chip to route correctly.
2880 */
2881 idata = irq_get_irq_data(virq);
2882 ichip = irq_data_get_irq_chip(idata);
2883 phb->ioda.irq_chip_init = 1;
2884 phb->ioda.irq_chip = *ichip;
2885 phb->ioda.irq_chip.irq_eoi = pnv_ioda2_msi_eoi;
2886 }
2887 irq_set_chip(virq, &phb->ioda.irq_chip);
2888}
2889
Suresh Warrier4ee11c12016-08-19 15:35:49 +10002890/*
2891 * Returns true iff chip is something that we could call
2892 * pnv_opal_pci_msi_eoi for.
2893 */
2894bool is_pnv_opal_msi(struct irq_chip *chip)
2895{
2896 return chip->irq_eoi == pnv_ioda2_msi_eoi;
2897}
2898EXPORT_SYMBOL_GPL(is_pnv_opal_msi);
2899
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002900static int pnv_pci_ioda_msi_setup(struct pnv_phb *phb, struct pci_dev *dev,
Gavin Shan137436c2013-04-25 19:20:59 +00002901 unsigned int hwirq, unsigned int virq,
2902 unsigned int is_64, struct msi_msg *msg)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002903{
2904 struct pnv_ioda_pe *pe = pnv_ioda_get_pe(dev);
2905 unsigned int xive_num = hwirq - phb->msi_base;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002906 __be32 data;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002907 int rc;
2908
2909 /* No PE assigned ? bail out ... no MSI for you ! */
2910 if (pe == NULL)
2911 return -ENXIO;
2912
2913 /* Check if we have an MVE */
2914 if (pe->mve_number < 0)
2915 return -ENXIO;
2916
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00002917 /* Force 32-bit MSI on some broken devices */
Benjamin Herrenschmidt36074382014-10-07 16:12:36 +11002918 if (dev->no_64bit_msi)
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00002919 is_64 = 0;
2920
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002921 /* Assign XIVE to PE */
2922 rc = opal_pci_set_xive_pe(phb->opal_id, pe->pe_number, xive_num);
2923 if (rc) {
2924 pr_warn("%s: OPAL error %d setting XIVE %d PE\n",
2925 pci_name(dev), rc, xive_num);
2926 return -EIO;
2927 }
2928
2929 if (is_64) {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002930 __be64 addr64;
2931
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002932 rc = opal_get_msi_64(phb->opal_id, pe->mve_number, xive_num, 1,
2933 &addr64, &data);
2934 if (rc) {
2935 pr_warn("%s: OPAL error %d getting 64-bit MSI data\n",
2936 pci_name(dev), rc);
2937 return -EIO;
2938 }
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002939 msg->address_hi = be64_to_cpu(addr64) >> 32;
2940 msg->address_lo = be64_to_cpu(addr64) & 0xfffffffful;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002941 } else {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002942 __be32 addr32;
2943
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002944 rc = opal_get_msi_32(phb->opal_id, pe->mve_number, xive_num, 1,
2945 &addr32, &data);
2946 if (rc) {
2947 pr_warn("%s: OPAL error %d getting 32-bit MSI data\n",
2948 pci_name(dev), rc);
2949 return -EIO;
2950 }
2951 msg->address_hi = 0;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002952 msg->address_lo = be32_to_cpu(addr32);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002953 }
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002954 msg->data = be32_to_cpu(data);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002955
Ian Munsief4568342016-07-14 07:17:00 +10002956 pnv_set_msi_irq_chip(phb, virq);
Gavin Shan137436c2013-04-25 19:20:59 +00002957
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002958 pr_devel("%s: %s-bit MSI on hwirq %x (xive #%d),"
Russell Currey1f52f172016-11-16 14:02:15 +11002959 " address=%x_%08x data=%x PE# %x\n",
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002960 pci_name(dev), is_64 ? "64" : "32", hwirq, xive_num,
2961 msg->address_hi, msg->address_lo, data, pe->pe_number);
2962
2963 return 0;
2964}
2965
2966static void pnv_pci_init_ioda_msis(struct pnv_phb *phb)
2967{
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002968 unsigned int count;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002969 const __be32 *prop = of_get_property(phb->hose->dn,
2970 "ibm,opal-msi-ranges", NULL);
2971 if (!prop) {
2972 /* BML Fallback */
2973 prop = of_get_property(phb->hose->dn, "msi-ranges", NULL);
2974 }
2975 if (!prop)
2976 return;
2977
2978 phb->msi_base = be32_to_cpup(prop);
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002979 count = be32_to_cpup(prop + 1);
2980 if (msi_bitmap_alloc(&phb->msi_bmp, count, phb->hose->dn)) {
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002981 pr_err("PCI %d: Failed to allocate MSI bitmap !\n",
2982 phb->hose->global_number);
2983 return;
2984 }
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002985
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002986 phb->msi_setup = pnv_pci_ioda_msi_setup;
2987 phb->msi32_support = 1;
2988 pr_info(" Allocated bitmap for %d MSIs (base IRQ 0x%x)\n",
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002989 count, phb->msi_base);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002990}
2991#else
2992static void pnv_pci_init_ioda_msis(struct pnv_phb *phb) { }
2993#endif /* CONFIG_PCI_MSI */
2994
Wei Yang6e628c72015-03-25 16:23:55 +08002995#ifdef CONFIG_PCI_IOV
2996static void pnv_pci_ioda_fixup_iov_resources(struct pci_dev *pdev)
2997{
Wei Yangf2dd0af2015-10-22 09:22:17 +08002998 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
2999 struct pnv_phb *phb = hose->private_data;
3000 const resource_size_t gate = phb->ioda.m64_segsize >> 2;
Wei Yang6e628c72015-03-25 16:23:55 +08003001 struct resource *res;
3002 int i;
Wei Yangdfcc8d42015-10-22 09:22:18 +08003003 resource_size_t size, total_vf_bar_sz;
Wei Yang6e628c72015-03-25 16:23:55 +08003004 struct pci_dn *pdn;
Wei Yang5b88ec22015-03-25 16:23:58 +08003005 int mul, total_vfs;
Wei Yang6e628c72015-03-25 16:23:55 +08003006
Hari Vyas44bda4b2018-07-03 14:35:41 +05303007 if (!pdev->is_physfn || pci_dev_is_added(pdev))
Wei Yang6e628c72015-03-25 16:23:55 +08003008 return;
3009
Wei Yang6e628c72015-03-25 16:23:55 +08003010 pdn = pci_get_pdn(pdev);
3011 pdn->vfs_expanded = 0;
Wei Yangee8222f2015-10-22 09:22:16 +08003012 pdn->m64_single_mode = false;
Wei Yang6e628c72015-03-25 16:23:55 +08003013
Wei Yang5b88ec22015-03-25 16:23:58 +08003014 total_vfs = pci_sriov_get_totalvfs(pdev);
Gavin Shan92b8f132016-05-03 15:41:24 +10003015 mul = phb->ioda.total_pe_num;
Wei Yangdfcc8d42015-10-22 09:22:18 +08003016 total_vf_bar_sz = 0;
Wei Yang5b88ec22015-03-25 16:23:58 +08003017
3018 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
3019 res = &pdev->resource[i + PCI_IOV_RESOURCES];
3020 if (!res->flags || res->parent)
3021 continue;
Russell Curreyb79331a2016-09-14 16:37:17 +10003022 if (!pnv_pci_is_m64_flags(res->flags)) {
Wei Yangb0331852015-10-22 09:22:14 +08003023 dev_warn(&pdev->dev, "Don't support SR-IOV with"
3024 " non M64 VF BAR%d: %pR. \n",
Wei Yang5b88ec22015-03-25 16:23:58 +08003025 i, res);
Wei Yangb0331852015-10-22 09:22:14 +08003026 goto truncate_iov;
Wei Yang5b88ec22015-03-25 16:23:58 +08003027 }
3028
Wei Yangdfcc8d42015-10-22 09:22:18 +08003029 total_vf_bar_sz += pci_iov_resource_size(pdev,
3030 i + PCI_IOV_RESOURCES);
Wei Yang5b88ec22015-03-25 16:23:58 +08003031
Wei Yangf2dd0af2015-10-22 09:22:17 +08003032 /*
3033 * If bigger than quarter of M64 segment size, just round up
3034 * power of two.
3035 *
3036 * Generally, one M64 BAR maps one IOV BAR. To avoid conflict
3037 * with other devices, IOV BAR size is expanded to be
3038 * (total_pe * VF_BAR_size). When VF_BAR_size is half of M64
3039 * segment size , the expanded size would equal to half of the
3040 * whole M64 space size, which will exhaust the M64 Space and
3041 * limit the system flexibility. This is a design decision to
3042 * set the boundary to quarter of the M64 segment size.
3043 */
Wei Yangdfcc8d42015-10-22 09:22:18 +08003044 if (total_vf_bar_sz > gate) {
Wei Yang5b88ec22015-03-25 16:23:58 +08003045 mul = roundup_pow_of_two(total_vfs);
Wei Yangdfcc8d42015-10-22 09:22:18 +08003046 dev_info(&pdev->dev,
3047 "VF BAR Total IOV size %llx > %llx, roundup to %d VFs\n",
3048 total_vf_bar_sz, gate, mul);
Wei Yangee8222f2015-10-22 09:22:16 +08003049 pdn->m64_single_mode = true;
Wei Yang5b88ec22015-03-25 16:23:58 +08003050 break;
3051 }
3052 }
3053
Wei Yang6e628c72015-03-25 16:23:55 +08003054 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
3055 res = &pdev->resource[i + PCI_IOV_RESOURCES];
3056 if (!res->flags || res->parent)
3057 continue;
Wei Yang6e628c72015-03-25 16:23:55 +08003058
Wei Yang6e628c72015-03-25 16:23:55 +08003059 size = pci_iov_resource_size(pdev, i + PCI_IOV_RESOURCES);
Wei Yangee8222f2015-10-22 09:22:16 +08003060 /*
3061 * On PHB3, the minimum size alignment of M64 BAR in single
3062 * mode is 32MB.
3063 */
3064 if (pdn->m64_single_mode && (size < SZ_32M))
3065 goto truncate_iov;
3066 dev_dbg(&pdev->dev, " Fixing VF BAR%d: %pR to\n", i, res);
Wei Yang5b88ec22015-03-25 16:23:58 +08003067 res->end = res->start + size * mul - 1;
Wei Yang6e628c72015-03-25 16:23:55 +08003068 dev_dbg(&pdev->dev, " %pR\n", res);
3069 dev_info(&pdev->dev, "VF BAR%d: %pR (expanded to %d VFs for PE alignment)",
Wei Yang5b88ec22015-03-25 16:23:58 +08003070 i, res, mul);
Wei Yang6e628c72015-03-25 16:23:55 +08003071 }
Wei Yang5b88ec22015-03-25 16:23:58 +08003072 pdn->vfs_expanded = mul;
Wei Yangb0331852015-10-22 09:22:14 +08003073
3074 return;
3075
3076truncate_iov:
3077 /* To save MMIO space, IOV BAR is truncated. */
3078 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
3079 res = &pdev->resource[i + PCI_IOV_RESOURCES];
3080 res->flags = 0;
3081 res->end = res->start - 1;
3082 }
Wei Yang6e628c72015-03-25 16:23:55 +08003083}
3084#endif /* CONFIG_PCI_IOV */
3085
Gavin Shan23e79422016-05-03 15:41:27 +10003086static void pnv_ioda_setup_pe_res(struct pnv_ioda_pe *pe,
3087 struct resource *res)
3088{
3089 struct pnv_phb *phb = pe->phb;
3090 struct pci_bus_region region;
3091 int index;
3092 int64_t rc;
3093
3094 if (!res || !res->flags || res->start > res->end)
3095 return;
3096
3097 if (res->flags & IORESOURCE_IO) {
3098 region.start = res->start - phb->ioda.io_pci_base;
3099 region.end = res->end - phb->ioda.io_pci_base;
3100 index = region.start / phb->ioda.io_segsize;
3101
3102 while (index < phb->ioda.total_pe_num &&
3103 region.start <= region.end) {
3104 phb->ioda.io_segmap[index] = pe->pe_number;
3105 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
3106 pe->pe_number, OPAL_IO_WINDOW_TYPE, 0, index);
3107 if (rc != OPAL_SUCCESS) {
Russell Currey1f52f172016-11-16 14:02:15 +11003108 pr_err("%s: Error %lld mapping IO segment#%d to PE#%x\n",
Gavin Shan23e79422016-05-03 15:41:27 +10003109 __func__, rc, index, pe->pe_number);
3110 break;
3111 }
3112
3113 region.start += phb->ioda.io_segsize;
3114 index++;
3115 }
3116 } else if ((res->flags & IORESOURCE_MEM) &&
Benjamin Herrenschmidt5958d192016-07-08 15:55:43 +10003117 !pnv_pci_is_m64(phb, res)) {
Gavin Shan23e79422016-05-03 15:41:27 +10003118 region.start = res->start -
3119 phb->hose->mem_offset[0] -
3120 phb->ioda.m32_pci_base;
3121 region.end = res->end -
3122 phb->hose->mem_offset[0] -
3123 phb->ioda.m32_pci_base;
3124 index = region.start / phb->ioda.m32_segsize;
3125
3126 while (index < phb->ioda.total_pe_num &&
3127 region.start <= region.end) {
3128 phb->ioda.m32_segmap[index] = pe->pe_number;
3129 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
3130 pe->pe_number, OPAL_M32_WINDOW_TYPE, 0, index);
3131 if (rc != OPAL_SUCCESS) {
Russell Currey1f52f172016-11-16 14:02:15 +11003132 pr_err("%s: Error %lld mapping M32 segment#%d to PE#%x",
Gavin Shan23e79422016-05-03 15:41:27 +10003133 __func__, rc, index, pe->pe_number);
3134 break;
3135 }
3136
3137 region.start += phb->ioda.m32_segsize;
3138 index++;
3139 }
3140 }
3141}
3142
Gavin Shan11685be2012-08-20 03:49:16 +00003143/*
3144 * This function is supposed to be called on basis of PE from top
3145 * to bottom style. So the the I/O or MMIO segment assigned to
Masahiro Yamada03671052017-02-27 14:29:28 -08003146 * parent PE could be overridden by its child PEs if necessary.
Gavin Shan11685be2012-08-20 03:49:16 +00003147 */
Gavin Shan23e79422016-05-03 15:41:27 +10003148static void pnv_ioda_setup_pe_seg(struct pnv_ioda_pe *pe)
Gavin Shan11685be2012-08-20 03:49:16 +00003149{
Gavin Shan69d733e2016-05-03 15:41:28 +10003150 struct pci_dev *pdev;
Gavin Shan23e79422016-05-03 15:41:27 +10003151 int i;
Gavin Shan11685be2012-08-20 03:49:16 +00003152
3153 /*
3154 * NOTE: We only care PCI bus based PE for now. For PCI
3155 * device based PE, for example SRIOV sensitive VF should
3156 * be figured out later.
3157 */
3158 BUG_ON(!(pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL)));
3159
Gavin Shan69d733e2016-05-03 15:41:28 +10003160 list_for_each_entry(pdev, &pe->pbus->devices, bus_list) {
3161 for (i = 0; i <= PCI_ROM_RESOURCE; i++)
3162 pnv_ioda_setup_pe_res(pe, &pdev->resource[i]);
3163
3164 /*
3165 * If the PE contains all subordinate PCI buses, the
3166 * windows of the child bridges should be mapped to
3167 * the PE as well.
3168 */
3169 if (!(pe->flags & PNV_IODA_PE_BUS_ALL) || !pci_is_bridge(pdev))
3170 continue;
3171 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++)
3172 pnv_ioda_setup_pe_res(pe,
3173 &pdev->resource[PCI_BRIDGE_RESOURCES + i]);
3174 }
Gavin Shan11685be2012-08-20 03:49:16 +00003175}
3176
Russell Currey98b665d2016-07-28 15:05:03 +10003177#ifdef CONFIG_DEBUG_FS
3178static int pnv_pci_diag_data_set(void *data, u64 val)
3179{
3180 struct pci_controller *hose;
3181 struct pnv_phb *phb;
3182 s64 ret;
3183
3184 if (val != 1ULL)
3185 return -EINVAL;
3186
3187 hose = (struct pci_controller *)data;
3188 if (!hose || !hose->private_data)
3189 return -ENODEV;
3190
3191 phb = hose->private_data;
3192
3193 /* Retrieve the diag data from firmware */
Russell Currey5cb1f8f2017-06-14 14:19:59 +10003194 ret = opal_pci_get_phb_diag_data2(phb->opal_id, phb->diag_data,
3195 phb->diag_data_size);
Russell Currey98b665d2016-07-28 15:05:03 +10003196 if (ret != OPAL_SUCCESS)
3197 return -EIO;
3198
3199 /* Print the diag data to the kernel log */
Russell Currey5cb1f8f2017-06-14 14:19:59 +10003200 pnv_pci_dump_phb_diag_data(phb->hose, phb->diag_data);
Russell Currey98b665d2016-07-28 15:05:03 +10003201 return 0;
3202}
3203
3204DEFINE_SIMPLE_ATTRIBUTE(pnv_pci_diag_data_fops, NULL,
3205 pnv_pci_diag_data_set, "%llu\n");
3206
3207#endif /* CONFIG_DEBUG_FS */
3208
Gavin Shan37c367f2013-06-20 18:13:25 +08003209static void pnv_pci_ioda_create_dbgfs(void)
3210{
3211#ifdef CONFIG_DEBUG_FS
3212 struct pci_controller *hose, *tmp;
3213 struct pnv_phb *phb;
3214 char name[16];
3215
3216 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
3217 phb = hose->private_data;
3218
Gavin Shanccd1c192016-05-20 16:41:31 +10003219 /* Notify initialization of PHB done */
3220 phb->initialized = 1;
3221
Gavin Shan37c367f2013-06-20 18:13:25 +08003222 sprintf(name, "PCI%04x", hose->global_number);
3223 phb->dbgfs = debugfs_create_dir(name, powerpc_debugfs_root);
Russell Currey98b665d2016-07-28 15:05:03 +10003224 if (!phb->dbgfs) {
Joe Perchesf2c2cbc2016-10-24 21:00:08 -07003225 pr_warn("%s: Error on creating debugfs on PHB#%x\n",
Gavin Shan37c367f2013-06-20 18:13:25 +08003226 __func__, hose->global_number);
Russell Currey98b665d2016-07-28 15:05:03 +10003227 continue;
3228 }
3229
3230 debugfs_create_file("dump_diag_regs", 0200, phb->dbgfs, hose,
3231 &pnv_pci_diag_data_fops);
Gavin Shan37c367f2013-06-20 18:13:25 +08003232 }
3233#endif /* CONFIG_DEBUG_FS */
3234}
3235
Benjamin Herrenschmidtdb217312018-08-17 17:30:39 +10003236static void pnv_pci_enable_bridge(struct pci_bus *bus)
3237{
3238 struct pci_dev *dev = bus->self;
3239 struct pci_bus *child;
3240
3241 /* Empty bus ? bail */
3242 if (list_empty(&bus->devices))
3243 return;
3244
3245 /*
3246 * If there's a bridge associated with that bus enable it. This works
3247 * around races in the generic code if the enabling is done during
3248 * parallel probing. This can be removed once those races have been
3249 * fixed.
3250 */
3251 if (dev) {
3252 int rc = pci_enable_device(dev);
3253 if (rc)
3254 pci_err(dev, "Error enabling bridge (%d)\n", rc);
3255 pci_set_master(dev);
3256 }
3257
3258 /* Perform the same to child busses */
3259 list_for_each_entry(child, &bus->children, node)
3260 pnv_pci_enable_bridge(child);
3261}
3262
3263static void pnv_pci_enable_bridges(void)
3264{
3265 struct pci_controller *hose;
3266
3267 list_for_each_entry(hose, &hose_list, list_node)
3268 pnv_pci_enable_bridge(hose->bus);
3269}
3270
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08003271static void pnv_pci_ioda_fixup(void)
Gavin Shanfb446ad2012-08-20 03:49:14 +00003272{
3273 pnv_pci_ioda_setup_PEs();
Gavin Shanccd1c192016-05-20 16:41:31 +10003274 pnv_pci_ioda_setup_iommu_api();
Gavin Shan37c367f2013-06-20 18:13:25 +08003275 pnv_pci_ioda_create_dbgfs();
3276
Benjamin Herrenschmidtdb217312018-08-17 17:30:39 +10003277 pnv_pci_enable_bridges();
3278
Gavin Shane9cc17d2013-06-20 13:21:14 +08003279#ifdef CONFIG_EEH
Benjamin Herrenschmidtb9fde582017-09-07 16:35:44 +10003280 pnv_eeh_post_init();
Gavin Shane9cc17d2013-06-20 13:21:14 +08003281#endif
Gavin Shanfb446ad2012-08-20 03:49:14 +00003282}
3283
Gavin Shan271fd032012-09-11 16:59:47 -06003284/*
3285 * Returns the alignment for I/O or memory windows for P2P
3286 * bridges. That actually depends on how PEs are segmented.
3287 * For now, we return I/O or M32 segment size for PE sensitive
3288 * P2P bridges. Otherwise, the default values (4KiB for I/O,
3289 * 1MiB for memory) will be returned.
3290 *
3291 * The current PCI bus might be put into one PE, which was
3292 * create against the parent PCI bridge. For that case, we
3293 * needn't enlarge the alignment so that we can save some
3294 * resources.
3295 */
3296static resource_size_t pnv_pci_window_alignment(struct pci_bus *bus,
3297 unsigned long type)
3298{
3299 struct pci_dev *bridge;
3300 struct pci_controller *hose = pci_bus_to_host(bus);
3301 struct pnv_phb *phb = hose->private_data;
3302 int num_pci_bridges = 0;
3303
3304 bridge = bus->self;
3305 while (bridge) {
3306 if (pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE) {
3307 num_pci_bridges++;
3308 if (num_pci_bridges >= 2)
3309 return 1;
3310 }
3311
3312 bridge = bridge->bus->self;
3313 }
3314
Benjamin Herrenschmidt5958d192016-07-08 15:55:43 +10003315 /*
3316 * We fall back to M32 if M64 isn't supported. We enforce the M64
3317 * alignment for any 64-bit resource, PCIe doesn't care and
3318 * bridges only do 64-bit prefetchable anyway.
3319 */
Russell Curreyb79331a2016-09-14 16:37:17 +10003320 if (phb->ioda.m64_segsize && pnv_pci_is_m64_flags(type))
Guo Chao262af552014-07-21 14:42:30 +10003321 return phb->ioda.m64_segsize;
Gavin Shan271fd032012-09-11 16:59:47 -06003322 if (type & IORESOURCE_MEM)
3323 return phb->ioda.m32_segsize;
3324
3325 return phb->ioda.io_segsize;
3326}
3327
Gavin Shan40e2a472016-05-20 16:41:33 +10003328/*
3329 * We are updating root port or the upstream port of the
3330 * bridge behind the root port with PHB's windows in order
3331 * to accommodate the changes on required resources during
3332 * PCI (slot) hotplug, which is connected to either root
3333 * port or the downstream ports of PCIe switch behind the
3334 * root port.
3335 */
3336static void pnv_pci_fixup_bridge_resources(struct pci_bus *bus,
3337 unsigned long type)
3338{
3339 struct pci_controller *hose = pci_bus_to_host(bus);
3340 struct pnv_phb *phb = hose->private_data;
3341 struct pci_dev *bridge = bus->self;
3342 struct resource *r, *w;
3343 bool msi_region = false;
3344 int i;
3345
3346 /* Check if we need apply fixup to the bridge's windows */
3347 if (!pci_is_root_bus(bridge->bus) &&
3348 !pci_is_root_bus(bridge->bus->self->bus))
3349 return;
3350
3351 /* Fixup the resources */
3352 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++) {
3353 r = &bridge->resource[PCI_BRIDGE_RESOURCES + i];
3354 if (!r->flags || !r->parent)
3355 continue;
3356
3357 w = NULL;
3358 if (r->flags & type & IORESOURCE_IO)
3359 w = &hose->io_resource;
Benjamin Herrenschmidt5958d192016-07-08 15:55:43 +10003360 else if (pnv_pci_is_m64(phb, r) &&
Gavin Shan40e2a472016-05-20 16:41:33 +10003361 (type & IORESOURCE_PREFETCH) &&
3362 phb->ioda.m64_segsize)
3363 w = &hose->mem_resources[1];
3364 else if (r->flags & type & IORESOURCE_MEM) {
3365 w = &hose->mem_resources[0];
3366 msi_region = true;
3367 }
3368
3369 r->start = w->start;
3370 r->end = w->end;
3371
3372 /* The 64KB 32-bits MSI region shouldn't be included in
3373 * the 32-bits bridge window. Otherwise, we can see strange
3374 * issues. One of them is EEH error observed on Garrison.
3375 *
3376 * Exclude top 1MB region which is the minimal alignment of
3377 * 32-bits bridge window.
3378 */
3379 if (msi_region) {
3380 r->end += 0x10000;
3381 r->end -= 0x100000;
3382 }
3383 }
3384}
3385
Gavin Shanccd1c192016-05-20 16:41:31 +10003386static void pnv_pci_setup_bridge(struct pci_bus *bus, unsigned long type)
3387{
3388 struct pci_controller *hose = pci_bus_to_host(bus);
3389 struct pnv_phb *phb = hose->private_data;
3390 struct pci_dev *bridge = bus->self;
3391 struct pnv_ioda_pe *pe;
3392 bool all = (pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE);
3393
Gavin Shan40e2a472016-05-20 16:41:33 +10003394 /* Extend bridge's windows if necessary */
3395 pnv_pci_fixup_bridge_resources(bus, type);
3396
Gavin Shan63803c32016-05-20 16:41:32 +10003397 /* The PE for root bus should be realized before any one else */
3398 if (!phb->ioda.root_pe_populated) {
3399 pe = pnv_ioda_setup_bus_PE(phb->hose->bus, false);
3400 if (pe) {
3401 phb->ioda.root_pe_idx = pe->pe_number;
3402 phb->ioda.root_pe_populated = true;
3403 }
3404 }
3405
Gavin Shanccd1c192016-05-20 16:41:31 +10003406 /* Don't assign PE to PCI bus, which doesn't have subordinate devices */
3407 if (list_empty(&bus->devices))
3408 return;
3409
3410 /* Reserve PEs according to used M64 resources */
3411 if (phb->reserve_m64_pe)
3412 phb->reserve_m64_pe(bus, NULL, all);
3413
3414 /*
3415 * Assign PE. We might run here because of partial hotplug.
3416 * For the case, we just pick up the existing PE and should
3417 * not allocate resources again.
3418 */
3419 pe = pnv_ioda_setup_bus_PE(bus, all);
3420 if (!pe)
3421 return;
3422
3423 pnv_ioda_setup_pe_seg(pe);
3424 switch (phb->type) {
3425 case PNV_PHB_IODA1:
3426 pnv_pci_ioda1_setup_dma_pe(phb, pe);
3427 break;
3428 case PNV_PHB_IODA2:
3429 pnv_pci_ioda2_setup_dma_pe(phb, pe);
3430 break;
3431 default:
Russell Currey1f52f172016-11-16 14:02:15 +11003432 pr_warn("%s: No DMA for PHB#%x (type %d)\n",
Gavin Shanccd1c192016-05-20 16:41:31 +10003433 __func__, phb->hose->global_number, phb->type);
3434 }
3435}
3436
Yongji Xie38274632017-04-10 19:58:13 +08003437static resource_size_t pnv_pci_default_alignment(void)
3438{
3439 return PAGE_SIZE;
3440}
3441
Wei Yang5350ab32015-03-25 16:23:56 +08003442#ifdef CONFIG_PCI_IOV
3443static resource_size_t pnv_pci_iov_resource_alignment(struct pci_dev *pdev,
3444 int resno)
3445{
Wei Yangee8222f2015-10-22 09:22:16 +08003446 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
3447 struct pnv_phb *phb = hose->private_data;
Wei Yang5350ab32015-03-25 16:23:56 +08003448 struct pci_dn *pdn = pci_get_pdn(pdev);
Wei Yang7fbe7a92015-10-22 09:22:15 +08003449 resource_size_t align;
Wei Yang5350ab32015-03-25 16:23:56 +08003450
Wei Yang7fbe7a92015-10-22 09:22:15 +08003451 /*
3452 * On PowerNV platform, IOV BAR is mapped by M64 BAR to enable the
3453 * SR-IOV. While from hardware perspective, the range mapped by M64
3454 * BAR should be size aligned.
3455 *
Wei Yangee8222f2015-10-22 09:22:16 +08003456 * When IOV BAR is mapped with M64 BAR in Single PE mode, the extra
3457 * powernv-specific hardware restriction is gone. But if just use the
3458 * VF BAR size as the alignment, PF BAR / VF BAR may be allocated with
3459 * in one segment of M64 #15, which introduces the PE conflict between
3460 * PF and VF. Based on this, the minimum alignment of an IOV BAR is
3461 * m64_segsize.
3462 *
Wei Yang7fbe7a92015-10-22 09:22:15 +08003463 * This function returns the total IOV BAR size if M64 BAR is in
3464 * Shared PE mode or just VF BAR size if not.
Wei Yangee8222f2015-10-22 09:22:16 +08003465 * If the M64 BAR is in Single PE mode, return the VF BAR size or
3466 * M64 segment size if IOV BAR size is less.
Wei Yang7fbe7a92015-10-22 09:22:15 +08003467 */
Wei Yang5350ab32015-03-25 16:23:56 +08003468 align = pci_iov_resource_size(pdev, resno);
Wei Yang7fbe7a92015-10-22 09:22:15 +08003469 if (!pdn->vfs_expanded)
3470 return align;
Wei Yangee8222f2015-10-22 09:22:16 +08003471 if (pdn->m64_single_mode)
3472 return max(align, (resource_size_t)phb->ioda.m64_segsize);
Wei Yang5350ab32015-03-25 16:23:56 +08003473
Wei Yang7fbe7a92015-10-22 09:22:15 +08003474 return pdn->vfs_expanded * align;
Wei Yang5350ab32015-03-25 16:23:56 +08003475}
3476#endif /* CONFIG_PCI_IOV */
3477
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003478/* Prevent enabling devices for which we couldn't properly
3479 * assign a PE
3480 */
Alastair D'Silva8bf6b912018-06-28 12:05:06 +02003481static bool pnv_pci_enable_device_hook(struct pci_dev *dev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003482{
Gavin Shandb1266c2012-08-20 03:49:18 +00003483 struct pci_controller *hose = pci_bus_to_host(dev->bus);
3484 struct pnv_phb *phb = hose->private_data;
3485 struct pci_dn *pdn;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003486
Gavin Shandb1266c2012-08-20 03:49:18 +00003487 /* The function is probably called while the PEs have
3488 * not be created yet. For example, resource reassignment
3489 * during PCI probe period. We just skip the check if
3490 * PEs isn't ready.
3491 */
3492 if (!phb->initialized)
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003493 return true;
Gavin Shandb1266c2012-08-20 03:49:18 +00003494
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00003495 pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003496 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003497 return false;
Gavin Shandb1266c2012-08-20 03:49:18 +00003498
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003499 return true;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003500}
3501
Gavin Shanc5f77002016-05-20 16:41:35 +10003502static long pnv_pci_ioda1_unset_window(struct iommu_table_group *table_group,
3503 int num)
3504{
3505 struct pnv_ioda_pe *pe = container_of(table_group,
3506 struct pnv_ioda_pe, table_group);
3507 struct pnv_phb *phb = pe->phb;
3508 unsigned int idx;
3509 long rc;
3510
3511 pe_info(pe, "Removing DMA window #%d\n", num);
3512 for (idx = 0; idx < phb->ioda.dma32_count; idx++) {
3513 if (phb->ioda.dma32_segmap[idx] != pe->pe_number)
3514 continue;
3515
3516 rc = opal_pci_map_pe_dma_window(phb->opal_id, pe->pe_number,
3517 idx, 0, 0ul, 0ul, 0ul);
3518 if (rc != OPAL_SUCCESS) {
3519 pe_warn(pe, "Failure %ld unmapping DMA32 segment#%d\n",
3520 rc, idx);
3521 return rc;
3522 }
3523
3524 phb->ioda.dma32_segmap[idx] = IODA_INVALID_PE;
3525 }
3526
3527 pnv_pci_unlink_table_and_group(table_group->tables[num], table_group);
3528 return OPAL_SUCCESS;
3529}
3530
3531static void pnv_pci_ioda1_release_pe_dma(struct pnv_ioda_pe *pe)
3532{
3533 unsigned int weight = pnv_pci_ioda_pe_dma_weight(pe);
3534 struct iommu_table *tbl = pe->table_group.tables[0];
3535 int64_t rc;
3536
3537 if (!weight)
3538 return;
3539
3540 rc = pnv_pci_ioda1_unset_window(&pe->table_group, 0);
3541 if (rc != OPAL_SUCCESS)
3542 return;
3543
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10003544 pnv_pci_p7ioc_tce_invalidate(tbl, tbl->it_offset, tbl->it_size, false);
Gavin Shanc5f77002016-05-20 16:41:35 +10003545 if (pe->table_group.group) {
3546 iommu_group_put(pe->table_group.group);
3547 WARN_ON(pe->table_group.group);
3548 }
3549
3550 free_pages(tbl->it_base, get_order(tbl->it_size << 3));
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +11003551 iommu_tce_table_put(tbl);
Gavin Shanc5f77002016-05-20 16:41:35 +10003552}
3553
3554static void pnv_pci_ioda2_release_pe_dma(struct pnv_ioda_pe *pe)
3555{
3556 struct iommu_table *tbl = pe->table_group.tables[0];
3557 unsigned int weight = pnv_pci_ioda_pe_dma_weight(pe);
3558#ifdef CONFIG_IOMMU_API
3559 int64_t rc;
3560#endif
3561
3562 if (!weight)
3563 return;
3564
3565#ifdef CONFIG_IOMMU_API
3566 rc = pnv_pci_ioda2_unset_window(&pe->table_group, 0);
3567 if (rc)
3568 pe_warn(pe, "OPAL error %ld release DMA window\n", rc);
3569#endif
3570
3571 pnv_pci_ioda2_set_bypass(pe, false);
3572 if (pe->table_group.group) {
3573 iommu_group_put(pe->table_group.group);
3574 WARN_ON(pe->table_group.group);
3575 }
3576
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +11003577 iommu_tce_table_put(tbl);
Gavin Shanc5f77002016-05-20 16:41:35 +10003578}
3579
3580static void pnv_ioda_free_pe_seg(struct pnv_ioda_pe *pe,
3581 unsigned short win,
3582 unsigned int *map)
3583{
3584 struct pnv_phb *phb = pe->phb;
3585 int idx;
3586 int64_t rc;
3587
3588 for (idx = 0; idx < phb->ioda.total_pe_num; idx++) {
3589 if (map[idx] != pe->pe_number)
3590 continue;
3591
3592 if (win == OPAL_M64_WINDOW_TYPE)
3593 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
3594 phb->ioda.reserved_pe_idx, win,
3595 idx / PNV_IODA1_M64_SEGS,
3596 idx % PNV_IODA1_M64_SEGS);
3597 else
3598 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
3599 phb->ioda.reserved_pe_idx, win, 0, idx);
3600
3601 if (rc != OPAL_SUCCESS)
3602 pe_warn(pe, "Error %ld unmapping (%d) segment#%d\n",
3603 rc, win, idx);
3604
3605 map[idx] = IODA_INVALID_PE;
3606 }
3607}
3608
3609static void pnv_ioda_release_pe_seg(struct pnv_ioda_pe *pe)
3610{
3611 struct pnv_phb *phb = pe->phb;
3612
3613 if (phb->type == PNV_PHB_IODA1) {
3614 pnv_ioda_free_pe_seg(pe, OPAL_IO_WINDOW_TYPE,
3615 phb->ioda.io_segmap);
3616 pnv_ioda_free_pe_seg(pe, OPAL_M32_WINDOW_TYPE,
3617 phb->ioda.m32_segmap);
3618 pnv_ioda_free_pe_seg(pe, OPAL_M64_WINDOW_TYPE,
3619 phb->ioda.m64_segmap);
3620 } else if (phb->type == PNV_PHB_IODA2) {
3621 pnv_ioda_free_pe_seg(pe, OPAL_M32_WINDOW_TYPE,
3622 phb->ioda.m32_segmap);
3623 }
3624}
3625
3626static void pnv_ioda_release_pe(struct pnv_ioda_pe *pe)
3627{
3628 struct pnv_phb *phb = pe->phb;
3629 struct pnv_ioda_pe *slave, *tmp;
3630
Gavin Shanc5f77002016-05-20 16:41:35 +10003631 list_del(&pe->list);
3632 switch (phb->type) {
3633 case PNV_PHB_IODA1:
3634 pnv_pci_ioda1_release_pe_dma(pe);
3635 break;
3636 case PNV_PHB_IODA2:
3637 pnv_pci_ioda2_release_pe_dma(pe);
3638 break;
3639 default:
3640 WARN_ON(1);
3641 }
3642
3643 pnv_ioda_release_pe_seg(pe);
3644 pnv_ioda_deconfigure_pe(pe->phb, pe);
Gavin Shanb3144272016-09-06 14:16:44 +10003645
3646 /* Release slave PEs in the compound PE */
3647 if (pe->flags & PNV_IODA_PE_MASTER) {
3648 list_for_each_entry_safe(slave, tmp, &pe->slaves, list) {
3649 list_del(&slave->list);
3650 pnv_ioda_free_pe(slave);
3651 }
3652 }
3653
Gavin Shan6eaed162016-09-13 16:40:24 +10003654 /*
3655 * The PE for root bus can be removed because of hotplug in EEH
3656 * recovery for fenced PHB error. We need to mark the PE dead so
3657 * that it can be populated again in PCI hot add path. The PE
3658 * shouldn't be destroyed as it's the global reserved resource.
3659 */
3660 if (phb->ioda.root_pe_populated &&
3661 phb->ioda.root_pe_idx == pe->pe_number)
3662 phb->ioda.root_pe_populated = false;
3663 else
3664 pnv_ioda_free_pe(pe);
Gavin Shanc5f77002016-05-20 16:41:35 +10003665}
3666
3667static void pnv_pci_release_device(struct pci_dev *pdev)
3668{
3669 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
3670 struct pnv_phb *phb = hose->private_data;
3671 struct pci_dn *pdn = pci_get_pdn(pdev);
3672 struct pnv_ioda_pe *pe;
3673
3674 if (pdev->is_virtfn)
3675 return;
3676
3677 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
3678 return;
3679
Gavin Shan29bf2822016-09-06 16:34:01 +10003680 /*
3681 * PCI hotplug can happen as part of EEH error recovery. The @pdn
3682 * isn't removed and added afterwards in this scenario. We should
3683 * set the PE number in @pdn to an invalid one. Otherwise, the PE's
3684 * device count is decreased on removing devices while failing to
3685 * be increased on adding devices. It leads to unbalanced PE's device
3686 * count and eventually make normal PCI hotplug path broken.
3687 */
Gavin Shanc5f77002016-05-20 16:41:35 +10003688 pe = &phb->ioda.pe_array[pdn->pe_number];
Gavin Shan29bf2822016-09-06 16:34:01 +10003689 pdn->pe_number = IODA_INVALID_PE;
3690
Gavin Shanc5f77002016-05-20 16:41:35 +10003691 WARN_ON(--pe->device_count < 0);
3692 if (pe->device_count == 0)
3693 pnv_ioda_release_pe(pe);
3694}
3695
Michael Neuling7a8e6bb2015-05-27 16:06:59 +10003696static void pnv_pci_ioda_shutdown(struct pci_controller *hose)
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +10003697{
Michael Neuling7a8e6bb2015-05-27 16:06:59 +10003698 struct pnv_phb *phb = hose->private_data;
3699
Gavin Shand1a85ee2014-09-30 12:39:05 +10003700 opal_pci_reset(phb->opal_id, OPAL_RESET_PCI_IODA_TABLE,
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +10003701 OPAL_ASSERT_RESET);
3702}
3703
Daniel Axtens92ae0352015-04-28 15:12:05 +10003704static const struct pci_controller_ops pnv_pci_ioda_controller_ops = {
Gavin Shancb4224c2016-05-03 15:41:21 +10003705 .dma_dev_setup = pnv_pci_dma_dev_setup,
3706 .dma_bus_setup = pnv_pci_dma_bus_setup,
Daniel Axtens92ae0352015-04-28 15:12:05 +10003707#ifdef CONFIG_PCI_MSI
Gavin Shancb4224c2016-05-03 15:41:21 +10003708 .setup_msi_irqs = pnv_setup_msi_irqs,
3709 .teardown_msi_irqs = pnv_teardown_msi_irqs,
Daniel Axtens92ae0352015-04-28 15:12:05 +10003710#endif
Gavin Shancb4224c2016-05-03 15:41:21 +10003711 .enable_device_hook = pnv_pci_enable_device_hook,
Gavin Shanc5f77002016-05-20 16:41:35 +10003712 .release_device = pnv_pci_release_device,
Gavin Shancb4224c2016-05-03 15:41:21 +10003713 .window_alignment = pnv_pci_window_alignment,
Gavin Shanccd1c192016-05-20 16:41:31 +10003714 .setup_bridge = pnv_pci_setup_bridge,
Gavin Shancb4224c2016-05-03 15:41:21 +10003715 .reset_secondary_bus = pnv_pci_reset_secondary_bus,
3716 .dma_set_mask = pnv_pci_ioda_dma_set_mask,
3717 .dma_get_required_mask = pnv_pci_ioda_dma_get_required_mask,
3718 .shutdown = pnv_pci_ioda_shutdown,
Daniel Axtens92ae0352015-04-28 15:12:05 +10003719};
3720
Alexey Kardashevskiyf9f83452016-04-29 18:55:20 +10003721static int pnv_npu_dma_set_mask(struct pci_dev *npdev, u64 dma_mask)
3722{
3723 dev_err_once(&npdev->dev,
3724 "%s operation unsupported for NVLink devices\n",
3725 __func__);
3726 return -EPERM;
3727}
3728
Alistair Popple5d2aa712015-12-17 13:43:13 +11003729static const struct pci_controller_ops pnv_npu_ioda_controller_ops = {
Gavin Shancb4224c2016-05-03 15:41:21 +10003730 .dma_dev_setup = pnv_pci_dma_dev_setup,
Alistair Popple5d2aa712015-12-17 13:43:13 +11003731#ifdef CONFIG_PCI_MSI
Gavin Shancb4224c2016-05-03 15:41:21 +10003732 .setup_msi_irqs = pnv_setup_msi_irqs,
3733 .teardown_msi_irqs = pnv_teardown_msi_irqs,
Alistair Popple5d2aa712015-12-17 13:43:13 +11003734#endif
Gavin Shancb4224c2016-05-03 15:41:21 +10003735 .enable_device_hook = pnv_pci_enable_device_hook,
3736 .window_alignment = pnv_pci_window_alignment,
3737 .reset_secondary_bus = pnv_pci_reset_secondary_bus,
3738 .dma_set_mask = pnv_npu_dma_set_mask,
3739 .shutdown = pnv_pci_ioda_shutdown,
Alistair Popple5d2aa712015-12-17 13:43:13 +11003740};
3741
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01003742static const struct pci_controller_ops pnv_npu_ocapi_ioda_controller_ops = {
3743 .enable_device_hook = pnv_pci_enable_device_hook,
3744 .window_alignment = pnv_pci_window_alignment,
3745 .reset_secondary_bus = pnv_pci_reset_secondary_bus,
3746 .shutdown = pnv_pci_ioda_shutdown,
3747};
3748
Anton Blancharde51df2c2014-08-20 08:55:18 +10003749static void __init pnv_pci_init_ioda_phb(struct device_node *np,
3750 u64 hub_id, int ioda_type)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003751{
3752 struct pci_controller *hose;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003753 struct pnv_phb *phb;
Gavin Shan2b923ed2016-05-05 12:04:16 +10003754 unsigned long size, m64map_off, m32map_off, pemap_off;
3755 unsigned long iomap_off = 0, dma32map_off = 0;
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10003756 struct resource r;
Alistair Popplec681b932013-09-23 12:04:57 +10003757 const __be64 *prop64;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10003758 const __be32 *prop32;
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003759 int len;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003760 unsigned int segno;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003761 u64 phb_id;
3762 void *aux;
3763 long rc;
3764
Benjamin Herrenschmidt08a45b32016-07-08 16:37:17 +10003765 if (!of_device_is_available(np))
3766 return;
3767
Rob Herringb7c670d2017-08-21 10:16:47 -05003768 pr_info("Initializing %s PHB (%pOF)\n", pnv_phb_names[ioda_type], np);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003769
3770 prop64 = of_get_property(np, "ibm,opal-phbid", NULL);
3771 if (!prop64) {
3772 pr_err(" Missing \"ibm,opal-phbid\" property !\n");
3773 return;
3774 }
3775 phb_id = be64_to_cpup(prop64);
3776 pr_debug(" PHB-ID : 0x%016llx\n", phb_id);
3777
Markus Elfringa0828cf2017-01-19 17:15:30 +01003778 phb = memblock_virt_alloc(sizeof(*phb), 0);
Gavin Shan58d714e2013-07-31 16:47:00 +08003779
3780 /* Allocate PCI controller */
Gavin Shan58d714e2013-07-31 16:47:00 +08003781 phb->hose = hose = pcibios_alloc_controller(np);
3782 if (!phb->hose) {
Rob Herringb7c670d2017-08-21 10:16:47 -05003783 pr_err(" Can't allocate PCI controller for %pOF\n",
3784 np);
Michael Ellermane39f223f2014-11-18 16:47:35 +11003785 memblock_free(__pa(phb), sizeof(struct pnv_phb));
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003786 return;
3787 }
3788
3789 spin_lock_init(&phb->lock);
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003790 prop32 = of_get_property(np, "bus-range", &len);
3791 if (prop32 && len == 8) {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10003792 hose->first_busno = be32_to_cpu(prop32[0]);
3793 hose->last_busno = be32_to_cpu(prop32[1]);
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003794 } else {
Rob Herringb7c670d2017-08-21 10:16:47 -05003795 pr_warn(" Broken <bus-range> on %pOF\n", np);
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003796 hose->first_busno = 0;
3797 hose->last_busno = 0xff;
3798 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003799 hose->private_data = phb;
Gavin Shane9cc17d2013-06-20 13:21:14 +08003800 phb->hub_id = hub_id;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003801 phb->opal_id = phb_id;
Gavin Shanaa0c0332013-04-25 19:20:57 +00003802 phb->type = ioda_type;
Wei Yang781a8682015-03-25 16:23:57 +08003803 mutex_init(&phb->ioda.pe_alloc_mutex);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003804
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +00003805 /* Detect specific models for error handling */
3806 if (of_device_is_compatible(np, "ibm,p7ioc-pciex"))
3807 phb->model = PNV_PHB_MODEL_P7IOC;
Benjamin Herrenschmidtf3d40c22013-05-04 14:24:32 +00003808 else if (of_device_is_compatible(np, "ibm,power8-pciex"))
Gavin Shanaa0c0332013-04-25 19:20:57 +00003809 phb->model = PNV_PHB_MODEL_PHB3;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003810 else if (of_device_is_compatible(np, "ibm,power8-npu-pciex"))
3811 phb->model = PNV_PHB_MODEL_NPU;
Alistair Popple616badd2017-01-10 15:41:44 +11003812 else if (of_device_is_compatible(np, "ibm,power9-npu-pciex"))
3813 phb->model = PNV_PHB_MODEL_NPU2;
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +00003814 else
3815 phb->model = PNV_PHB_MODEL_UNKNOWN;
3816
Russell Currey5cb1f8f2017-06-14 14:19:59 +10003817 /* Initialize diagnostic data buffer */
3818 prop32 = of_get_property(np, "ibm,phb-diag-data-size", NULL);
3819 if (prop32)
3820 phb->diag_data_size = be32_to_cpup(prop32);
3821 else
3822 phb->diag_data_size = PNV_PCI_DIAG_BUF_SIZE;
3823
3824 phb->diag_data = memblock_virt_alloc(phb->diag_data_size, 0);
3825
Gavin Shanaa0c0332013-04-25 19:20:57 +00003826 /* Parse 32-bit and IO ranges (if any) */
Gavin Shan2f1ec022013-07-31 16:47:02 +08003827 pci_process_bridge_OF_ranges(hose, np, !hose->global_number);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003828
Gavin Shanaa0c0332013-04-25 19:20:57 +00003829 /* Get registers */
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10003830 if (!of_address_to_resource(np, 0, &r)) {
3831 phb->regs_phys = r.start;
3832 phb->regs = ioremap(r.start, resource_size(&r));
3833 if (phb->regs == NULL)
3834 pr_err(" Failed to map registers !\n");
3835 }
Gavin Shan577c8c82016-05-20 16:41:28 +10003836
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003837 /* Initialize more IODA stuff */
Gavin Shan92b8f132016-05-03 15:41:24 +10003838 phb->ioda.total_pe_num = 1;
Gavin Shanaa0c0332013-04-25 19:20:57 +00003839 prop32 = of_get_property(np, "ibm,opal-num-pes", NULL);
Gavin Shan36954dc2013-11-04 16:32:47 +08003840 if (prop32)
Gavin Shan92b8f132016-05-03 15:41:24 +10003841 phb->ioda.total_pe_num = be32_to_cpup(prop32);
Gavin Shan36954dc2013-11-04 16:32:47 +08003842 prop32 = of_get_property(np, "ibm,opal-reserved-pe", NULL);
3843 if (prop32)
Gavin Shan92b8f132016-05-03 15:41:24 +10003844 phb->ioda.reserved_pe_idx = be32_to_cpup(prop32);
Guo Chao262af552014-07-21 14:42:30 +10003845
Gavin Shanc1275622016-05-20 16:41:29 +10003846 /* Invalidate RID to PE# mapping */
3847 for (segno = 0; segno < ARRAY_SIZE(phb->ioda.pe_rmap); segno++)
3848 phb->ioda.pe_rmap[segno] = IODA_INVALID_PE;
3849
Guo Chao262af552014-07-21 14:42:30 +10003850 /* Parse 64-bit MMIO range */
3851 pnv_ioda_parse_m64_window(phb);
3852
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003853 phb->ioda.m32_size = resource_size(&hose->mem_resources[0]);
Gavin Shanaa0c0332013-04-25 19:20:57 +00003854 /* FW Has already off top 64k of M32 space (MSI space) */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003855 phb->ioda.m32_size += 0x10000;
3856
Gavin Shan92b8f132016-05-03 15:41:24 +10003857 phb->ioda.m32_segsize = phb->ioda.m32_size / phb->ioda.total_pe_num;
Benjamin Herrenschmidt3fd47f02013-05-06 13:40:40 +10003858 phb->ioda.m32_pci_base = hose->mem_resources[0].start - hose->mem_offset[0];
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003859 phb->ioda.io_size = hose->pci_io_size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003860 phb->ioda.io_segsize = phb->ioda.io_size / phb->ioda.total_pe_num;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003861 phb->ioda.io_pci_base = 0; /* XXX calculate this ? */
3862
Gavin Shan2b923ed2016-05-05 12:04:16 +10003863 /* Calculate how many 32-bit TCE segments we have */
3864 phb->ioda.dma32_count = phb->ioda.m32_pci_base /
3865 PNV_IODA1_DMA32_SEGSIZE;
3866
Gavin Shanc35d2a82013-07-31 16:47:04 +08003867 /* Allocate aux data & arrays. We don't have IO ports on PHB3 */
Alexey Kardashevskiy92a86752016-05-12 15:47:09 +10003868 size = _ALIGN_UP(max_t(unsigned, phb->ioda.total_pe_num, 8) / 8,
3869 sizeof(unsigned long));
Gavin Shan93289d82016-05-03 15:41:29 +10003870 m64map_off = size;
3871 size += phb->ioda.total_pe_num * sizeof(phb->ioda.m64_segmap[0]);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003872 m32map_off = size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003873 size += phb->ioda.total_pe_num * sizeof(phb->ioda.m32_segmap[0]);
Gavin Shanc35d2a82013-07-31 16:47:04 +08003874 if (phb->type == PNV_PHB_IODA1) {
3875 iomap_off = size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003876 size += phb->ioda.total_pe_num * sizeof(phb->ioda.io_segmap[0]);
Gavin Shan2b923ed2016-05-05 12:04:16 +10003877 dma32map_off = size;
3878 size += phb->ioda.dma32_count *
3879 sizeof(phb->ioda.dma32_segmap[0]);
Gavin Shanc35d2a82013-07-31 16:47:04 +08003880 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003881 pemap_off = size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003882 size += phb->ioda.total_pe_num * sizeof(struct pnv_ioda_pe);
Michael Ellermane39f223f2014-11-18 16:47:35 +11003883 aux = memblock_virt_alloc(size, 0);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003884 phb->ioda.pe_alloc = aux;
Gavin Shan93289d82016-05-03 15:41:29 +10003885 phb->ioda.m64_segmap = aux + m64map_off;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003886 phb->ioda.m32_segmap = aux + m32map_off;
Gavin Shan93289d82016-05-03 15:41:29 +10003887 for (segno = 0; segno < phb->ioda.total_pe_num; segno++) {
3888 phb->ioda.m64_segmap[segno] = IODA_INVALID_PE;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003889 phb->ioda.m32_segmap[segno] = IODA_INVALID_PE;
Gavin Shan93289d82016-05-03 15:41:29 +10003890 }
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003891 if (phb->type == PNV_PHB_IODA1) {
Gavin Shanc35d2a82013-07-31 16:47:04 +08003892 phb->ioda.io_segmap = aux + iomap_off;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003893 for (segno = 0; segno < phb->ioda.total_pe_num; segno++)
3894 phb->ioda.io_segmap[segno] = IODA_INVALID_PE;
Gavin Shan2b923ed2016-05-05 12:04:16 +10003895
3896 phb->ioda.dma32_segmap = aux + dma32map_off;
3897 for (segno = 0; segno < phb->ioda.dma32_count; segno++)
3898 phb->ioda.dma32_segmap[segno] = IODA_INVALID_PE;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003899 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003900 phb->ioda.pe_array = aux + pemap_off;
Gavin Shan63803c32016-05-20 16:41:32 +10003901
3902 /*
3903 * Choose PE number for root bus, which shouldn't have
3904 * M64 resources consumed by its child devices. To pick
3905 * the PE number adjacent to the reserved one if possible.
3906 */
3907 pnv_ioda_reserve_pe(phb, phb->ioda.reserved_pe_idx);
3908 if (phb->ioda.reserved_pe_idx == 0) {
3909 phb->ioda.root_pe_idx = 1;
3910 pnv_ioda_reserve_pe(phb, phb->ioda.root_pe_idx);
3911 } else if (phb->ioda.reserved_pe_idx == (phb->ioda.total_pe_num - 1)) {
3912 phb->ioda.root_pe_idx = phb->ioda.reserved_pe_idx - 1;
3913 pnv_ioda_reserve_pe(phb, phb->ioda.root_pe_idx);
3914 } else {
3915 phb->ioda.root_pe_idx = IODA_INVALID_PE;
3916 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003917
3918 INIT_LIST_HEAD(&phb->ioda.pe_list);
Wei Yang781a8682015-03-25 16:23:57 +08003919 mutex_init(&phb->ioda.pe_list_mutex);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003920
3921 /* Calculate how many 32-bit TCE segments we have */
Gavin Shan2b923ed2016-05-05 12:04:16 +10003922 phb->ioda.dma32_count = phb->ioda.m32_pci_base /
Gavin Shanacce9712016-05-03 15:41:33 +10003923 PNV_IODA1_DMA32_SEGSIZE;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003924
Gavin Shanaa0c0332013-04-25 19:20:57 +00003925#if 0 /* We should really do that ... */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003926 rc = opal_pci_set_phb_mem_window(opal->phb_id,
3927 window_type,
3928 window_num,
3929 starting_real_address,
3930 starting_pci_address,
3931 segment_size);
3932#endif
3933
Guo Chao262af552014-07-21 14:42:30 +10003934 pr_info(" %03d (%03d) PE's M32: 0x%x [segment=0x%x]\n",
Gavin Shan92b8f132016-05-03 15:41:24 +10003935 phb->ioda.total_pe_num, phb->ioda.reserved_pe_idx,
Guo Chao262af552014-07-21 14:42:30 +10003936 phb->ioda.m32_size, phb->ioda.m32_segsize);
3937 if (phb->ioda.m64_size)
3938 pr_info(" M64: 0x%lx [segment=0x%lx]\n",
3939 phb->ioda.m64_size, phb->ioda.m64_segsize);
3940 if (phb->ioda.io_size)
3941 pr_info(" IO: 0x%x [segment=0x%x]\n",
3942 phb->ioda.io_size, phb->ioda.io_segsize);
3943
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003944
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003945 phb->hose->ops = &pnv_pci_ops;
Gavin Shan49dec922014-07-21 14:42:33 +10003946 phb->get_pe_state = pnv_ioda_get_pe_state;
3947 phb->freeze_pe = pnv_ioda_freeze_pe;
3948 phb->unfreeze_pe = pnv_ioda_unfreeze_pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003949
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003950 /* Setup MSI support */
3951 pnv_pci_init_ioda_msis(phb);
3952
Gavin Shanc40a4212012-08-20 03:49:20 +00003953 /*
3954 * We pass the PCI probe flag PCI_REASSIGN_ALL_RSRC here
3955 * to let the PCI core do resource assignment. It's supposed
3956 * that the PCI core will do correct I/O and MMIO alignment
3957 * for the P2P bridge bars so that each PCI bus (excluding
3958 * the child P2P bridges) can form individual PE.
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003959 */
Gavin Shanfb446ad2012-08-20 03:49:14 +00003960 ppc_md.pcibios_fixup = pnv_pci_ioda_fixup;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003961
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01003962 switch (phb->type) {
3963 case PNV_PHB_NPU_NVLINK:
Alistair Popple5d2aa712015-12-17 13:43:13 +11003964 hose->controller_ops = pnv_npu_ioda_controller_ops;
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01003965 break;
3966 case PNV_PHB_NPU_OCAPI:
3967 hose->controller_ops = pnv_npu_ocapi_ioda_controller_ops;
3968 break;
3969 default:
Alexey Kardashevskiyf9f83452016-04-29 18:55:20 +10003970 phb->dma_dev_setup = pnv_pci_ioda_dma_dev_setup;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003971 hose->controller_ops = pnv_pci_ioda_controller_ops;
Alexey Kardashevskiyf9f83452016-04-29 18:55:20 +10003972 }
Michael Ellermanad30cb92015-04-14 09:29:23 +10003973
Yongji Xie38274632017-04-10 19:58:13 +08003974 ppc_md.pcibios_default_alignment = pnv_pci_default_alignment;
3975
Wei Yang6e628c72015-03-25 16:23:55 +08003976#ifdef CONFIG_PCI_IOV
3977 ppc_md.pcibios_fixup_sriov = pnv_pci_ioda_fixup_iov_resources;
Wei Yang5350ab32015-03-25 16:23:56 +08003978 ppc_md.pcibios_iov_resource_alignment = pnv_pci_iov_resource_alignment;
Bryant G. Ly988fc3b2017-11-09 08:00:33 -06003979 ppc_md.pcibios_sriov_enable = pnv_pcibios_sriov_enable;
3980 ppc_md.pcibios_sriov_disable = pnv_pcibios_sriov_disable;
Michael Ellermanad30cb92015-04-14 09:29:23 +10003981#endif
3982
Gavin Shanc40a4212012-08-20 03:49:20 +00003983 pci_add_flags(PCI_REASSIGN_ALL_RSRC);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003984
3985 /* Reset IODA tables to a clean state */
Gavin Shand1a85ee2014-09-30 12:39:05 +10003986 rc = opal_pci_reset(phb_id, OPAL_RESET_PCI_IODA_TABLE, OPAL_ASSERT_RESET);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003987 if (rc)
Joe Perchesf2c2cbc2016-10-24 21:00:08 -07003988 pr_warn(" OPAL Error %ld performing IODA table reset !\n", rc);
Gavin Shan361f2a22014-04-24 18:00:25 +10003989
Andrew Donnellan6060e9e2016-09-16 20:39:44 +10003990 /*
3991 * If we're running in kdump kernel, the previous kernel never
Gavin Shan361f2a22014-04-24 18:00:25 +10003992 * shutdown PCI devices correctly. We already got IODA table
3993 * cleaned out. So we have to issue PHB reset to stop all PCI
Guilherme G. Piccoli45baee12017-11-17 16:58:59 -02003994 * transactions from previous kernel. The ppc_pci_reset_phbs
3995 * kernel parameter will force this reset too.
Gavin Shan361f2a22014-04-24 18:00:25 +10003996 */
Guilherme G. Piccoli45baee12017-11-17 16:58:59 -02003997 if (is_kdump_kernel() || pci_reset_phbs) {
Gavin Shan361f2a22014-04-24 18:00:25 +10003998 pr_info(" Issue PHB reset ...\n");
Gavin Shancadf3642015-02-16 14:45:47 +11003999 pnv_eeh_phb_reset(hose, EEH_RESET_FUNDAMENTAL);
4000 pnv_eeh_phb_reset(hose, EEH_RESET_DEACTIVATE);
Gavin Shan361f2a22014-04-24 18:00:25 +10004001 }
Guo Chao262af552014-07-21 14:42:30 +10004002
Gavin Shan9e9e8932014-11-12 13:36:05 +11004003 /* Remove M64 resource if we can't configure it successfully */
4004 if (!phb->init_m64 || phb->init_m64(phb))
Guo Chao262af552014-07-21 14:42:30 +10004005 hose->mem_resources[1].flags = 0;
Gavin Shanaa0c0332013-04-25 19:20:57 +00004006}
4007
Bjorn Helgaas67975002013-07-02 12:20:03 -06004008void __init pnv_pci_init_ioda2_phb(struct device_node *np)
Gavin Shanaa0c0332013-04-25 19:20:57 +00004009{
Gavin Shane9cc17d2013-06-20 13:21:14 +08004010 pnv_pci_init_ioda_phb(np, 0, PNV_PHB_IODA2);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00004011}
4012
Alistair Popple5d2aa712015-12-17 13:43:13 +11004013void __init pnv_pci_init_npu_phb(struct device_node *np)
4014{
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01004015 pnv_pci_init_ioda_phb(np, 0, PNV_PHB_NPU_NVLINK);
Alistair Popple5d2aa712015-12-17 13:43:13 +11004016}
4017
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01004018void __init pnv_pci_init_npu2_opencapi_phb(struct device_node *np)
4019{
4020 pnv_pci_init_ioda_phb(np, 0, PNV_PHB_NPU_OCAPI);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00004021}
4022
Andrew Donnellan228c2f42018-01-23 12:31:37 +01004023static void pnv_npu2_opencapi_cfg_size_fixup(struct pci_dev *dev)
4024{
4025 struct pci_controller *hose = pci_bus_to_host(dev->bus);
4026 struct pnv_phb *phb = hose->private_data;
4027
4028 if (!machine_is(powernv))
4029 return;
4030
4031 if (phb->type == PNV_PHB_NPU_OCAPI)
4032 dev->cfg_size = PCI_CFG_SPACE_EXP_SIZE;
4033}
4034DECLARE_PCI_FIXUP_EARLY(PCI_ANY_ID, PCI_ANY_ID, pnv_npu2_opencapi_cfg_size_fixup);
4035
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00004036void __init pnv_pci_init_ioda_hub(struct device_node *np)
4037{
4038 struct device_node *phbn;
4039 const __be64 *prop64;
4040 u64 hub_id;
4041
Rob Herringb7c670d2017-08-21 10:16:47 -05004042 pr_info("Probing IODA IO-Hub %pOF\n", np);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00004043
4044 prop64 = of_get_property(np, "ibm,opal-hubid", NULL);
4045 if (!prop64) {
4046 pr_err(" Missing \"ibm,opal-hubid\" property !\n");
4047 return;
4048 }
4049 hub_id = be64_to_cpup(prop64);
4050 pr_devel(" HUB-ID : 0x%016llx\n", hub_id);
4051
4052 /* Count child PHBs */
4053 for_each_child_of_node(np, phbn) {
4054 /* Look for IODA1 PHBs */
4055 if (of_device_is_compatible(phbn, "ibm,ioda-phb"))
4056 pnv_pci_init_ioda_phb(phbn, hub_id, PNV_PHB_IODA1);
4057 }
4058}