blob: 28adfe4dd04c57b191a401ee381e054bbdd29da6 [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;
Alexey Kardashevskiye440f9f2018-11-19 15:25:17 +1100608 u8 fstate = 0, state;
609 __be16 pcierr = 0;
Gavin Shan49dec922014-07-21 14:42:33 +1000610 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++) {
Oliver O'Halloran67f7f0c2019-10-28 19:54:22 +11001555 int vf_devfn = pci_iov_virtfn_devfn(pdev, vf_index);
1556 int vf_bus = pci_iov_virtfn_bus(pdev, vf_index);
1557 struct pci_dn *vf_pdn;
1558
Wei Yangbe283ee2015-10-22 09:22:19 +08001559 if (pdn->m64_single_mode)
1560 pe_num = pdn->pe_num_map[vf_index];
1561 else
1562 pe_num = *pdn->pe_num_map + vf_index;
Wei Yang781a8682015-03-25 16:23:57 +08001563
1564 pe = &phb->ioda.pe_array[pe_num];
1565 pe->pe_number = pe_num;
1566 pe->phb = phb;
1567 pe->flags = PNV_IODA_PE_VF;
1568 pe->pbus = NULL;
1569 pe->parent_dev = pdev;
Wei Yang781a8682015-03-25 16:23:57 +08001570 pe->mve_number = -1;
Oliver O'Halloran67f7f0c2019-10-28 19:54:22 +11001571 pe->rid = (vf_bus << 8) | vf_devfn;
Wei Yang781a8682015-03-25 16:23:57 +08001572
Russell Currey1f52f172016-11-16 14:02:15 +11001573 pe_info(pe, "VF %04d:%02d:%02d.%d associated with PE#%x\n",
Wei Yang781a8682015-03-25 16:23:57 +08001574 hose->global_number, pdev->bus->number,
Oliver O'Halloran67f7f0c2019-10-28 19:54:22 +11001575 PCI_SLOT(vf_devfn), PCI_FUNC(vf_devfn), pe_num);
Wei Yang781a8682015-03-25 16:23:57 +08001576
1577 if (pnv_ioda_configure_pe(phb, pe)) {
1578 /* XXX What do we do here ? */
Gavin Shan1e916772016-05-03 15:41:36 +10001579 pnv_ioda_free_pe(pe);
Wei Yang781a8682015-03-25 16:23:57 +08001580 pe->pdev = NULL;
1581 continue;
1582 }
1583
Wei Yang781a8682015-03-25 16:23:57 +08001584 /* Put PE to the list */
1585 mutex_lock(&phb->ioda.pe_list_mutex);
1586 list_add_tail(&pe->list, &phb->ioda.pe_list);
1587 mutex_unlock(&phb->ioda.pe_list_mutex);
1588
Oliver O'Halloran67f7f0c2019-10-28 19:54:22 +11001589 /* associate this pe to it's pdn */
1590 list_for_each_entry(vf_pdn, &pdn->parent->child_list, list) {
1591 if (vf_pdn->busno == vf_bus &&
1592 vf_pdn->devfn == vf_devfn) {
1593 vf_pdn->pe_number = pe_num;
1594 break;
1595 }
1596 }
1597
Wei Yang781a8682015-03-25 16:23:57 +08001598 pnv_pci_ioda2_setup_dma_pe(phb, pe);
1599 }
1600}
1601
1602int pnv_pci_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
1603{
1604 struct pci_bus *bus;
1605 struct pci_controller *hose;
1606 struct pnv_phb *phb;
Gavin Shan1e916772016-05-03 15:41:36 +10001607 struct pnv_ioda_pe *pe;
Wei Yang781a8682015-03-25 16:23:57 +08001608 struct pci_dn *pdn;
1609 int ret;
Wei Yangbe283ee2015-10-22 09:22:19 +08001610 u16 i;
Wei Yang781a8682015-03-25 16:23:57 +08001611
1612 bus = pdev->bus;
1613 hose = pci_bus_to_host(bus);
1614 phb = hose->private_data;
1615 pdn = pci_get_pdn(pdev);
1616
1617 if (phb->type == PNV_PHB_IODA2) {
Wei Yangb0331852015-10-22 09:22:14 +08001618 if (!pdn->vfs_expanded) {
1619 dev_info(&pdev->dev, "don't support this SRIOV device"
1620 " with non 64bit-prefetchable IOV BAR\n");
1621 return -ENOSPC;
1622 }
1623
Wei Yangee8222f2015-10-22 09:22:16 +08001624 /*
1625 * When M64 BARs functions in Single PE mode, the number of VFs
1626 * could be enabled must be less than the number of M64 BARs.
1627 */
1628 if (pdn->m64_single_mode && num_vfs > phb->ioda.m64_bar_idx) {
1629 dev_info(&pdev->dev, "Not enough M64 BAR for VFs\n");
1630 return -EBUSY;
1631 }
1632
Wei Yangbe283ee2015-10-22 09:22:19 +08001633 /* Allocating pe_num_map */
1634 if (pdn->m64_single_mode)
Markus Elfringfb37e122016-08-24 22:26:37 +02001635 pdn->pe_num_map = kmalloc_array(num_vfs,
1636 sizeof(*pdn->pe_num_map),
1637 GFP_KERNEL);
Wei Yangbe283ee2015-10-22 09:22:19 +08001638 else
1639 pdn->pe_num_map = kmalloc(sizeof(*pdn->pe_num_map), GFP_KERNEL);
1640
1641 if (!pdn->pe_num_map)
1642 return -ENOMEM;
1643
1644 if (pdn->m64_single_mode)
1645 for (i = 0; i < num_vfs; i++)
1646 pdn->pe_num_map[i] = IODA_INVALID_PE;
1647
Wei Yang781a8682015-03-25 16:23:57 +08001648 /* Calculate available PE for required VFs */
Wei Yangbe283ee2015-10-22 09:22:19 +08001649 if (pdn->m64_single_mode) {
1650 for (i = 0; i < num_vfs; i++) {
Gavin Shan1e916772016-05-03 15:41:36 +10001651 pe = pnv_ioda_alloc_pe(phb);
1652 if (!pe) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001653 ret = -EBUSY;
1654 goto m64_failed;
1655 }
Gavin Shan1e916772016-05-03 15:41:36 +10001656
1657 pdn->pe_num_map[i] = pe->pe_number;
Wei Yangbe283ee2015-10-22 09:22:19 +08001658 }
1659 } else {
1660 mutex_lock(&phb->ioda.pe_alloc_mutex);
1661 *pdn->pe_num_map = bitmap_find_next_zero_area(
Gavin Shan92b8f132016-05-03 15:41:24 +10001662 phb->ioda.pe_alloc, phb->ioda.total_pe_num,
Wei Yangbe283ee2015-10-22 09:22:19 +08001663 0, num_vfs, 0);
Gavin Shan92b8f132016-05-03 15:41:24 +10001664 if (*pdn->pe_num_map >= phb->ioda.total_pe_num) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001665 mutex_unlock(&phb->ioda.pe_alloc_mutex);
1666 dev_info(&pdev->dev, "Failed to enable VF%d\n", num_vfs);
1667 kfree(pdn->pe_num_map);
1668 return -EBUSY;
1669 }
1670 bitmap_set(phb->ioda.pe_alloc, *pdn->pe_num_map, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001671 mutex_unlock(&phb->ioda.pe_alloc_mutex);
Wei Yang781a8682015-03-25 16:23:57 +08001672 }
Wei Yang781a8682015-03-25 16:23:57 +08001673 pdn->num_vfs = num_vfs;
Wei Yang781a8682015-03-25 16:23:57 +08001674
1675 /* Assign M64 window accordingly */
Wei Yang02639b02015-03-25 16:23:59 +08001676 ret = pnv_pci_vf_assign_m64(pdev, num_vfs);
Wei Yang781a8682015-03-25 16:23:57 +08001677 if (ret) {
1678 dev_info(&pdev->dev, "Not enough M64 window resources\n");
1679 goto m64_failed;
1680 }
1681
1682 /*
1683 * When using one M64 BAR to map one IOV BAR, we need to shift
1684 * the IOV BAR according to the PE# allocated to the VFs.
1685 * Otherwise, the PE# for the VF will conflict with others.
1686 */
Wei Yangee8222f2015-10-22 09:22:16 +08001687 if (!pdn->m64_single_mode) {
Wei Yangbe283ee2015-10-22 09:22:19 +08001688 ret = pnv_pci_vf_resource_shift(pdev, *pdn->pe_num_map);
Wei Yang02639b02015-03-25 16:23:59 +08001689 if (ret)
1690 goto m64_failed;
1691 }
Wei Yang781a8682015-03-25 16:23:57 +08001692 }
1693
1694 /* Setup VF PEs */
1695 pnv_ioda_setup_vf_PE(pdev, num_vfs);
1696
1697 return 0;
1698
1699m64_failed:
Wei Yangbe283ee2015-10-22 09:22:19 +08001700 if (pdn->m64_single_mode) {
1701 for (i = 0; i < num_vfs; i++) {
Gavin Shan1e916772016-05-03 15:41:36 +10001702 if (pdn->pe_num_map[i] == IODA_INVALID_PE)
1703 continue;
1704
1705 pe = &phb->ioda.pe_array[pdn->pe_num_map[i]];
1706 pnv_ioda_free_pe(pe);
Wei Yangbe283ee2015-10-22 09:22:19 +08001707 }
1708 } else
1709 bitmap_clear(phb->ioda.pe_alloc, *pdn->pe_num_map, num_vfs);
1710
1711 /* Releasing pe_num_map */
1712 kfree(pdn->pe_num_map);
Wei Yang781a8682015-03-25 16:23:57 +08001713
1714 return ret;
1715}
1716
Bryant G. Ly988fc3b2017-11-09 08:00:33 -06001717int pnv_pcibios_sriov_disable(struct pci_dev *pdev)
Gavin Shana8b2f822015-03-25 16:23:52 +08001718{
Wei Yang781a8682015-03-25 16:23:57 +08001719 pnv_pci_sriov_disable(pdev);
1720
Gavin Shana8b2f822015-03-25 16:23:52 +08001721 /* Release PCI data */
1722 remove_dev_pci_data(pdev);
1723 return 0;
1724}
1725
Bryant G. Ly988fc3b2017-11-09 08:00:33 -06001726int pnv_pcibios_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
Gavin Shana8b2f822015-03-25 16:23:52 +08001727{
1728 /* Allocate PCI data */
1729 add_dev_pci_data(pdev);
Wei Yang781a8682015-03-25 16:23:57 +08001730
Wei Yangee8222f2015-10-22 09:22:16 +08001731 return pnv_pci_sriov_enable(pdev, num_vfs);
Gavin Shana8b2f822015-03-25 16:23:52 +08001732}
1733#endif /* CONFIG_PCI_IOV */
1734
Gavin Shan959c9bd2013-04-25 19:21:02 +00001735static void pnv_pci_ioda_dma_dev_setup(struct pnv_phb *phb, struct pci_dev *pdev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001736{
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00001737 struct pci_dn *pdn = pci_get_pdn(pdev);
Gavin Shan959c9bd2013-04-25 19:21:02 +00001738 struct pnv_ioda_pe *pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001739
Gavin Shan959c9bd2013-04-25 19:21:02 +00001740 /*
1741 * The function can be called while the PE#
1742 * hasn't been assigned. Do nothing for the
1743 * case.
1744 */
1745 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
1746 return;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001747
Gavin Shan959c9bd2013-04-25 19:21:02 +00001748 pe = &phb->ioda.pe_array[pdn->pe_number];
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001749 WARN_ON(get_dma_ops(&pdev->dev) != &dma_iommu_ops);
Alexey Kardashevskiy0e1ffef2015-08-27 16:01:16 +10001750 set_dma_offset(&pdev->dev, pe->tce_bypass_base);
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001751 set_iommu_table_base(&pdev->dev, pe->table_group.tables[0]);
Alexey Kardashevskiy46170822015-06-05 16:34:54 +10001752 /*
1753 * Note: iommu_add_device() will fail here as
1754 * for physical PE: the device is already added by now;
1755 * for virtual PE: sysfs entries are not ready yet and
1756 * tce_iommu_bus_notifier will add the device to a group later.
1757 */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00001758}
1759
Russell Curreya0f98622017-06-21 17:18:03 +10001760static bool pnv_pci_ioda_pe_single_vendor(struct pnv_ioda_pe *pe)
1761{
1762 unsigned short vendor = 0;
1763 struct pci_dev *pdev;
1764
1765 if (pe->device_count == 1)
1766 return true;
1767
1768 /* pe->pdev should be set if it's a single device, pe->pbus if not */
1769 if (!pe->pbus)
1770 return true;
1771
1772 list_for_each_entry(pdev, &pe->pbus->devices, bus_list) {
1773 if (!vendor) {
1774 vendor = pdev->vendor;
1775 continue;
1776 }
1777
1778 if (pdev->vendor != vendor)
1779 return false;
1780 }
1781
1782 return true;
1783}
1784
Russell Currey8e3f1b12017-06-21 17:18:04 +10001785/*
1786 * Reconfigure TVE#0 to be usable as 64-bit DMA space.
1787 *
1788 * The first 4GB of virtual memory for a PE is reserved for 32-bit accesses.
1789 * Devices can only access more than that if bit 59 of the PCI address is set
1790 * by hardware, which indicates TVE#1 should be used instead of TVE#0.
1791 * Many PCI devices are not capable of addressing that many bits, and as a
1792 * result are limited to the 4GB of virtual memory made available to 32-bit
1793 * devices in TVE#0.
1794 *
1795 * In order to work around this, reconfigure TVE#0 to be suitable for 64-bit
1796 * devices by configuring the virtual memory past the first 4GB inaccessible
1797 * by 64-bit DMAs. This should only be used by devices that want more than
1798 * 4GB, and only on PEs that have no 32-bit devices.
1799 *
1800 * Currently this will only work on PHB3 (POWER8).
1801 */
1802static int pnv_pci_ioda_dma_64bit_bypass(struct pnv_ioda_pe *pe)
1803{
1804 u64 window_size, table_size, tce_count, addr;
1805 struct page *table_pages;
1806 u64 tce_order = 28; /* 256MB TCEs */
1807 __be64 *tces;
1808 s64 rc;
1809
1810 /*
1811 * Window size needs to be a power of two, but needs to account for
1812 * shifting memory by the 4GB offset required to skip 32bit space.
1813 */
1814 window_size = roundup_pow_of_two(memory_hotplug_max() + (1ULL << 32));
1815 tce_count = window_size >> tce_order;
1816 table_size = tce_count << 3;
1817
1818 if (table_size < PAGE_SIZE)
1819 table_size = PAGE_SIZE;
1820
1821 table_pages = alloc_pages_node(pe->phb->hose->node, GFP_KERNEL,
1822 get_order(table_size));
1823 if (!table_pages)
1824 goto err;
1825
1826 tces = page_address(table_pages);
1827 if (!tces)
1828 goto err;
1829
1830 memset(tces, 0, table_size);
1831
1832 for (addr = 0; addr < memory_hotplug_max(); addr += (1 << tce_order)) {
1833 tces[(addr + (1ULL << 32)) >> tce_order] =
1834 cpu_to_be64(addr | TCE_PCI_READ | TCE_PCI_WRITE);
1835 }
1836
1837 rc = opal_pci_map_pe_dma_window(pe->phb->opal_id,
1838 pe->pe_number,
1839 /* reconfigure window 0 */
1840 (pe->pe_number << 1) + 0,
1841 1,
1842 __pa(tces),
1843 table_size,
1844 1 << tce_order);
1845 if (rc == OPAL_SUCCESS) {
1846 pe_info(pe, "Using 64-bit DMA iommu bypass (through TVE#0)\n");
1847 return 0;
1848 }
1849err:
1850 pe_err(pe, "Error configuring 64-bit DMA bypass\n");
1851 return -EIO;
1852}
1853
Daniel Axtens763d2d82015-04-28 15:12:07 +10001854static int pnv_pci_ioda_dma_set_mask(struct pci_dev *pdev, u64 dma_mask)
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001855{
Daniel Axtens763d2d82015-04-28 15:12:07 +10001856 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
1857 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001858 struct pci_dn *pdn = pci_get_pdn(pdev);
1859 struct pnv_ioda_pe *pe;
1860 uint64_t top;
1861 bool bypass = false;
Russell Currey8e3f1b12017-06-21 17:18:04 +10001862 s64 rc;
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001863
1864 if (WARN_ON(!pdn || pdn->pe_number == IODA_INVALID_PE))
Ingo Molnared7158b2018-02-22 10:54:55 +01001865 return -ENODEV;
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001866
1867 pe = &phb->ioda.pe_array[pdn->pe_number];
1868 if (pe->tce_bypass_enabled) {
1869 top = pe->tce_bypass_base + memblock_end_of_DRAM() - 1;
1870 bypass = (dma_mask >= top);
1871 }
1872
1873 if (bypass) {
1874 dev_info(&pdev->dev, "Using 64-bit DMA iommu bypass\n");
Christoph Hellwig2d9d6f62017-12-22 10:58:24 +01001875 set_dma_ops(&pdev->dev, &dma_nommu_ops);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001876 } else {
Russell Currey8e3f1b12017-06-21 17:18:04 +10001877 /*
1878 * If the device can't set the TCE bypass bit but still wants
1879 * to access 4GB or more, on PHB3 we can reconfigure TVE#0 to
1880 * bypass the 32-bit region and be usable for 64-bit DMAs.
1881 * The device needs to be able to address all of this space.
1882 */
1883 if (dma_mask >> 32 &&
1884 dma_mask > (memory_hotplug_max() + (1ULL << 32)) &&
1885 pnv_pci_ioda_pe_single_vendor(pe) &&
1886 phb->model == PNV_PHB_MODEL_PHB3) {
1887 /* Configure the bypass mode */
1888 rc = pnv_pci_ioda_dma_64bit_bypass(pe);
1889 if (rc)
1890 return rc;
1891 /* 4GB offset bypasses 32-bit space */
1892 set_dma_offset(&pdev->dev, (1ULL << 32));
Christoph Hellwig2d9d6f62017-12-22 10:58:24 +01001893 set_dma_ops(&pdev->dev, &dma_nommu_ops);
Alistair Popple253fd512017-07-26 15:26:40 +10001894 } else if (dma_mask >> 32 && dma_mask != DMA_BIT_MASK(64)) {
1895 /*
1896 * Fail the request if a DMA mask between 32 and 64 bits
1897 * was requested but couldn't be fulfilled. Ideally we
1898 * would do this for 64-bits but historically we have
1899 * always fallen back to 32-bits.
1900 */
1901 return -ENOMEM;
Russell Currey8e3f1b12017-06-21 17:18:04 +10001902 } else {
1903 dev_info(&pdev->dev, "Using 32-bit DMA via iommu\n");
1904 set_dma_ops(&pdev->dev, &dma_iommu_ops);
1905 }
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001906 }
Brian W Harta32305b2014-07-31 14:24:37 -05001907 *pdev->dev.dma_mask = dma_mask;
Alistair Popple5d2aa712015-12-17 13:43:13 +11001908
1909 /* Update peer npu devices */
Alexey Kardashevskiyf9f83452016-04-29 18:55:20 +10001910 pnv_npu_try_dma_set_bypass(pdev, bypass);
Alistair Popple5d2aa712015-12-17 13:43:13 +11001911
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001912 return 0;
1913}
1914
Andrew Donnellan535229822015-08-07 13:45:54 +10001915static u64 pnv_pci_ioda_dma_get_required_mask(struct pci_dev *pdev)
Gavin Shanfe7e85c2014-09-30 12:39:10 +10001916{
Andrew Donnellan535229822015-08-07 13:45:54 +10001917 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
1918 struct pnv_phb *phb = hose->private_data;
Gavin Shanfe7e85c2014-09-30 12:39:10 +10001919 struct pci_dn *pdn = pci_get_pdn(pdev);
1920 struct pnv_ioda_pe *pe;
1921 u64 end, mask;
1922
1923 if (WARN_ON(!pdn || pdn->pe_number == IODA_INVALID_PE))
1924 return 0;
1925
1926 pe = &phb->ioda.pe_array[pdn->pe_number];
1927 if (!pe->tce_bypass_enabled)
1928 return __dma_get_required_mask(&pdev->dev);
1929
1930
1931 end = pe->tce_bypass_base + memblock_end_of_DRAM();
1932 mask = 1ULL << (fls64(end) - 1);
1933 mask += mask - 1;
1934
1935 return mask;
1936}
1937
Gavin Shandff4a392014-07-15 17:00:55 +10001938static void pnv_ioda_setup_bus_dma(struct pnv_ioda_pe *pe,
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11001939 struct pci_bus *bus,
1940 bool add_to_group)
Benjamin Herrenschmidt74251fe2013-07-01 17:54:09 +10001941{
1942 struct pci_dev *dev;
1943
1944 list_for_each_entry(dev, &bus->devices, bus_list) {
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001945 set_iommu_table_base(&dev->dev, pe->table_group.tables[0]);
Benjamin Herrenschmidte91c25112015-06-24 15:25:27 +10001946 set_dma_offset(&dev->dev, pe->tce_bypass_base);
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11001947 if (add_to_group)
1948 iommu_add_device(&dev->dev);
Gavin Shandff4a392014-07-15 17:00:55 +10001949
Alexey Kardashevskiy5c89a872015-06-18 11:41:36 +10001950 if ((pe->flags & PNV_IODA_PE_BUS_ALL) && dev->subordinate)
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11001951 pnv_ioda_setup_bus_dma(pe, dev->subordinate,
1952 add_to_group);
Benjamin Herrenschmidt74251fe2013-07-01 17:54:09 +10001953 }
1954}
1955
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10001956static inline __be64 __iomem *pnv_ioda_get_inval_reg(struct pnv_phb *phb,
1957 bool real_mode)
1958{
1959 return real_mode ? (__be64 __iomem *)(phb->regs_phys + 0x210) :
1960 (phb->regs + 0x210);
1961}
1962
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10001963static void pnv_pci_p7ioc_tce_invalidate(struct iommu_table *tbl,
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001964 unsigned long index, unsigned long npages, bool rm)
Gavin Shan4cce9552013-04-25 19:21:00 +00001965{
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10001966 struct iommu_table_group_link *tgl = list_first_entry_or_null(
1967 &tbl->it_group_list, struct iommu_table_group_link,
1968 next);
1969 struct pnv_ioda_pe *pe = container_of(tgl->table_group,
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001970 struct pnv_ioda_pe, table_group);
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10001971 __be64 __iomem *invalidate = pnv_ioda_get_inval_reg(pe->phb, rm);
Gavin Shan4cce9552013-04-25 19:21:00 +00001972 unsigned long start, end, inc;
1973
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10001974 start = __pa(((__be64 *)tbl->it_base) + index - tbl->it_offset);
1975 end = __pa(((__be64 *)tbl->it_base) + index - tbl->it_offset +
1976 npages - 1);
Gavin Shan4cce9552013-04-25 19:21:00 +00001977
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10001978 /* p7ioc-style invalidation, 2 TCEs per write */
1979 start |= (1ull << 63);
1980 end |= (1ull << 63);
1981 inc = 16;
Gavin Shan4cce9552013-04-25 19:21:00 +00001982 end |= inc - 1; /* round up end to be different than start */
1983
1984 mb(); /* Ensure above stores are visible */
1985 while (start <= end) {
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10001986 if (rm)
Michael Ellerman001ff2e2018-05-14 22:50:32 +10001987 __raw_rm_writeq_be(start, invalidate);
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10001988 else
Michael Ellerman001ff2e2018-05-14 22:50:32 +10001989 __raw_writeq_be(start, invalidate);
1990
Gavin Shan4cce9552013-04-25 19:21:00 +00001991 start += inc;
1992 }
1993
1994 /*
1995 * The iommu layer will do another mb() for us on build()
1996 * and we don't care on free()
1997 */
1998}
1999
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002000static int pnv_ioda1_tce_build(struct iommu_table *tbl, long index,
2001 long npages, unsigned long uaddr,
2002 enum dma_data_direction direction,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07002003 unsigned long attrs)
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002004{
2005 int ret = pnv_tce_build(tbl, index, npages, uaddr, direction,
2006 attrs);
2007
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10002008 if (!ret)
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10002009 pnv_pci_p7ioc_tce_invalidate(tbl, index, npages, false);
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002010
2011 return ret;
2012}
2013
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002014#ifdef CONFIG_IOMMU_API
2015static int pnv_ioda1_tce_xchg(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, true);
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002019
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10002020 if (!ret)
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10002021 pnv_pci_p7ioc_tce_invalidate(tbl, index, 1, false);
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002022
2023 return ret;
2024}
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002025
2026static int pnv_ioda1_tce_xchg_rm(struct iommu_table *tbl, long index,
2027 unsigned long *hpa, enum dma_data_direction *direction)
2028{
Alexey Kardashevskiya68bd122018-07-04 16:13:49 +10002029 long ret = pnv_tce_xchg(tbl, index, hpa, direction, false);
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002030
2031 if (!ret)
2032 pnv_pci_p7ioc_tce_invalidate(tbl, index, 1, true);
2033
2034 return ret;
2035}
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002036#endif
2037
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002038static void pnv_ioda1_tce_free(struct iommu_table *tbl, long index,
2039 long npages)
2040{
2041 pnv_tce_free(tbl, index, npages);
2042
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10002043 pnv_pci_p7ioc_tce_invalidate(tbl, index, npages, false);
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002044}
2045
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002046static struct iommu_table_ops pnv_ioda1_iommu_ops = {
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002047 .set = pnv_ioda1_tce_build,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002048#ifdef CONFIG_IOMMU_API
2049 .exchange = pnv_ioda1_tce_xchg,
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002050 .exchange_rm = pnv_ioda1_tce_xchg_rm,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002051 .useraddrptr = pnv_tce_useraddrptr,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002052#endif
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002053 .clear = pnv_ioda1_tce_free,
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002054 .get = pnv_tce_get,
2055};
2056
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10002057#define PHB3_TCE_KILL_INVAL_ALL PPC_BIT(0)
2058#define PHB3_TCE_KILL_INVAL_PE PPC_BIT(1)
2059#define PHB3_TCE_KILL_INVAL_ONE PPC_BIT(2)
Alexey Kardashevskiybef92532016-04-29 18:55:17 +10002060
Alistair Popple6b3d12a2017-05-03 13:24:08 +10002061static void pnv_pci_phb3_tce_invalidate_entire(struct pnv_phb *phb, bool rm)
Alexey Kardashevskiy0bbcdb42016-04-29 18:55:18 +10002062{
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10002063 __be64 __iomem *invalidate = pnv_ioda_get_inval_reg(phb, rm);
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10002064 const unsigned long val = PHB3_TCE_KILL_INVAL_ALL;
Alexey Kardashevskiy0bbcdb42016-04-29 18:55:18 +10002065
2066 mb(); /* Ensure previous TCE table stores are visible */
2067 if (rm)
Michael Ellerman001ff2e2018-05-14 22:50:32 +10002068 __raw_rm_writeq_be(val, invalidate);
Alexey Kardashevskiy0bbcdb42016-04-29 18:55:18 +10002069 else
Michael Ellerman001ff2e2018-05-14 22:50:32 +10002070 __raw_writeq_be(val, invalidate);
Alexey Kardashevskiy0bbcdb42016-04-29 18:55:18 +10002071}
2072
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10002073static inline void pnv_pci_phb3_tce_invalidate_pe(struct pnv_ioda_pe *pe)
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002074{
2075 /* 01xb - invalidate TCEs that match the specified PE# */
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10002076 __be64 __iomem *invalidate = pnv_ioda_get_inval_reg(pe->phb, false);
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10002077 unsigned long val = PHB3_TCE_KILL_INVAL_PE | (pe->pe_number & 0xFF);
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002078
2079 mb(); /* Ensure above stores are visible */
Michael Ellerman001ff2e2018-05-14 22:50:32 +10002080 __raw_writeq_be(val, invalidate);
Alexey Kardashevskiy5780fb02015-06-05 16:35:12 +10002081}
2082
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10002083static void pnv_pci_phb3_tce_invalidate(struct pnv_ioda_pe *pe, bool rm,
2084 unsigned shift, unsigned long index,
2085 unsigned long npages)
Gavin Shan4cce9552013-04-25 19:21:00 +00002086{
Alexey Kardashevskiy4d902192016-08-03 18:40:45 +10002087 __be64 __iomem *invalidate = pnv_ioda_get_inval_reg(pe->phb, rm);
Gavin Shan4cce9552013-04-25 19:21:00 +00002088 unsigned long start, end, inc;
Gavin Shan4cce9552013-04-25 19:21:00 +00002089
2090 /* We'll invalidate DMA address in PE scope */
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10002091 start = PHB3_TCE_KILL_INVAL_ONE;
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10002092 start |= (pe->pe_number & 0xFF);
Gavin Shan4cce9552013-04-25 19:21:00 +00002093 end = start;
2094
2095 /* Figure out the start, end and step */
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002096 start |= (index << shift);
2097 end |= ((index + npages - 1) << shift);
Alexey Kardashevskiyb0376c92014-06-06 18:44:01 +10002098 inc = (0x1ull << shift);
Gavin Shan4cce9552013-04-25 19:21:00 +00002099 mb();
2100
2101 while (start <= end) {
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10002102 if (rm)
Michael Ellerman001ff2e2018-05-14 22:50:32 +10002103 __raw_rm_writeq_be(start, invalidate);
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +10002104 else
Michael Ellerman001ff2e2018-05-14 22:50:32 +10002105 __raw_writeq_be(start, invalidate);
Gavin Shan4cce9552013-04-25 19:21:00 +00002106 start += inc;
2107 }
2108}
2109
Benjamin Herrenschmidtf0228c42016-07-08 16:37:15 +10002110static inline void pnv_pci_ioda2_tce_invalidate_pe(struct pnv_ioda_pe *pe)
2111{
2112 struct pnv_phb *phb = pe->phb;
2113
2114 if (phb->model == PNV_PHB_MODEL_PHB3 && phb->regs)
2115 pnv_pci_phb3_tce_invalidate_pe(pe);
2116 else
2117 opal_pci_tce_kill(phb->opal_id, OPAL_PCI_TCE_KILL_PE,
2118 pe->pe_number, 0, 0, 0);
2119}
2120
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10002121static void pnv_pci_ioda2_tce_invalidate(struct iommu_table *tbl,
2122 unsigned long index, unsigned long npages, bool rm)
2123{
2124 struct iommu_table_group_link *tgl;
2125
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002126 list_for_each_entry_lockless(tgl, &tbl->it_group_list, next) {
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10002127 struct pnv_ioda_pe *pe = container_of(tgl->table_group,
2128 struct pnv_ioda_pe, table_group);
Benjamin Herrenschmidtf0228c42016-07-08 16:37:15 +10002129 struct pnv_phb *phb = pe->phb;
2130 unsigned int shift = tbl->it_page_shift;
2131
Alistair Popple616badd2017-01-10 15:41:44 +11002132 /*
2133 * NVLink1 can use the TCE kill register directly as
2134 * it's the same as PHB3. NVLink2 is different and
2135 * should go via the OPAL call.
2136 */
2137 if (phb->model == PNV_PHB_MODEL_NPU) {
Alexey Kardashevskiy0bbcdb42016-04-29 18:55:18 +10002138 /*
2139 * The NVLink hardware does not support TCE kill
2140 * per TCE entry so we have to invalidate
2141 * the entire cache for it.
2142 */
Benjamin Herrenschmidtf0228c42016-07-08 16:37:15 +10002143 pnv_pci_phb3_tce_invalidate_entire(phb, rm);
Alexey Kardashevskiy85674862016-04-29 18:55:23 +10002144 continue;
2145 }
Benjamin Herrenschmidtf0228c42016-07-08 16:37:15 +10002146 if (phb->model == PNV_PHB_MODEL_PHB3 && phb->regs)
2147 pnv_pci_phb3_tce_invalidate(pe, rm, shift,
2148 index, npages);
Benjamin Herrenschmidtf0228c42016-07-08 16:37:15 +10002149 else
2150 opal_pci_tce_kill(phb->opal_id,
2151 OPAL_PCI_TCE_KILL_PAGES,
2152 pe->pe_number, 1u << shift,
2153 index << shift, npages);
Alexey Kardashevskiye57080f2015-06-05 16:35:13 +10002154 }
2155}
2156
Alistair Popple6b3d12a2017-05-03 13:24:08 +10002157void pnv_pci_ioda2_tce_invalidate_entire(struct pnv_phb *phb, bool rm)
2158{
2159 if (phb->model == PNV_PHB_MODEL_NPU || phb->model == PNV_PHB_MODEL_PHB3)
2160 pnv_pci_phb3_tce_invalidate_entire(phb, rm);
2161 else
2162 opal_pci_tce_kill(phb->opal_id, OPAL_PCI_TCE_KILL, 0, 0, 0, 0);
2163}
2164
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002165static int pnv_ioda2_tce_build(struct iommu_table *tbl, long index,
2166 long npages, unsigned long uaddr,
2167 enum dma_data_direction direction,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07002168 unsigned long attrs)
Gavin Shan4cce9552013-04-25 19:21:00 +00002169{
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002170 int ret = pnv_tce_build(tbl, index, npages, uaddr, direction,
2171 attrs);
Gavin Shan4cce9552013-04-25 19:21:00 +00002172
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10002173 if (!ret)
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002174 pnv_pci_ioda2_tce_invalidate(tbl, index, npages, false);
2175
2176 return ret;
2177}
2178
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002179#ifdef CONFIG_IOMMU_API
2180static int pnv_ioda2_tce_xchg(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, true);
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002184
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10002185 if (!ret)
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002186 pnv_pci_ioda2_tce_invalidate(tbl, index, 1, false);
2187
2188 return ret;
2189}
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002190
2191static int pnv_ioda2_tce_xchg_rm(struct iommu_table *tbl, long index,
2192 unsigned long *hpa, enum dma_data_direction *direction)
2193{
Alexey Kardashevskiya68bd122018-07-04 16:13:49 +10002194 long ret = pnv_tce_xchg(tbl, index, hpa, direction, false);
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002195
2196 if (!ret)
2197 pnv_pci_ioda2_tce_invalidate(tbl, index, 1, true);
2198
2199 return ret;
2200}
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002201#endif
2202
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002203static void pnv_ioda2_tce_free(struct iommu_table *tbl, long index,
2204 long npages)
2205{
2206 pnv_tce_free(tbl, index, npages);
2207
Benjamin Herrenschmidt08acce12016-07-08 16:37:13 +10002208 pnv_pci_ioda2_tce_invalidate(tbl, index, npages, false);
Gavin Shan4cce9552013-04-25 19:21:00 +00002209}
2210
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002211static struct iommu_table_ops pnv_ioda2_iommu_ops = {
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002212 .set = pnv_ioda2_tce_build,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002213#ifdef CONFIG_IOMMU_API
2214 .exchange = pnv_ioda2_tce_xchg,
Alexey Kardashevskiya540aa52017-03-22 15:21:48 +11002215 .exchange_rm = pnv_ioda2_tce_xchg_rm,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002216 .useraddrptr = pnv_tce_useraddrptr,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +10002217#endif
Alexey Kardashevskiydecbda22015-06-05 16:35:07 +10002218 .clear = pnv_ioda2_tce_free,
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002219 .get = pnv_tce_get,
Alexey Kardashevskiyda2bb0d2018-07-04 16:13:44 +10002220 .free = pnv_pci_ioda2_table_free_pages,
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002221};
2222
Gavin Shan801846d2016-05-03 15:41:34 +10002223static int pnv_pci_ioda_dev_dma_weight(struct pci_dev *dev, void *data)
2224{
2225 unsigned int *weight = (unsigned int *)data;
2226
2227 /* This is quite simplistic. The "base" weight of a device
2228 * is 10. 0 means no DMA is to be accounted for it.
2229 */
2230 if (dev->hdr_type != PCI_HEADER_TYPE_NORMAL)
2231 return 0;
2232
2233 if (dev->class == PCI_CLASS_SERIAL_USB_UHCI ||
2234 dev->class == PCI_CLASS_SERIAL_USB_OHCI ||
2235 dev->class == PCI_CLASS_SERIAL_USB_EHCI)
2236 *weight += 3;
2237 else if ((dev->class >> 8) == PCI_CLASS_STORAGE_RAID)
2238 *weight += 15;
2239 else
2240 *weight += 10;
2241
2242 return 0;
2243}
2244
2245static unsigned int pnv_pci_ioda_pe_dma_weight(struct pnv_ioda_pe *pe)
2246{
2247 unsigned int weight = 0;
2248
2249 /* SRIOV VF has same DMA32 weight as its PF */
2250#ifdef CONFIG_PCI_IOV
2251 if ((pe->flags & PNV_IODA_PE_VF) && pe->parent_dev) {
2252 pnv_pci_ioda_dev_dma_weight(pe->parent_dev, &weight);
2253 return weight;
2254 }
2255#endif
2256
2257 if ((pe->flags & PNV_IODA_PE_DEV) && pe->pdev) {
2258 pnv_pci_ioda_dev_dma_weight(pe->pdev, &weight);
2259 } else if ((pe->flags & PNV_IODA_PE_BUS) && pe->pbus) {
2260 struct pci_dev *pdev;
2261
2262 list_for_each_entry(pdev, &pe->pbus->devices, bus_list)
2263 pnv_pci_ioda_dev_dma_weight(pdev, &weight);
2264 } else if ((pe->flags & PNV_IODA_PE_BUS_ALL) && pe->pbus) {
2265 pci_walk_bus(pe->pbus, pnv_pci_ioda_dev_dma_weight, &weight);
2266 }
2267
2268 return weight;
2269}
2270
Gavin Shanb30d9362016-05-03 15:41:32 +10002271static void pnv_pci_ioda1_setup_dma_pe(struct pnv_phb *phb,
Gavin Shan2b923ed2016-05-05 12:04:16 +10002272 struct pnv_ioda_pe *pe)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002273{
2274
2275 struct page *tce_mem = NULL;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002276 struct iommu_table *tbl;
Gavin Shan2b923ed2016-05-05 12:04:16 +10002277 unsigned int weight, total_weight = 0;
2278 unsigned int tce32_segsz, base, segs, avail, i;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002279 int64_t rc;
2280 void *addr;
2281
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002282 /* XXX FIXME: Handle 64-bit only DMA devices */
2283 /* XXX FIXME: Provide 64-bit DMA facilities & non-4K TCE tables etc.. */
2284 /* XXX FIXME: Allocate multi-level tables on PHB3 */
Gavin Shan2b923ed2016-05-05 12:04:16 +10002285 weight = pnv_pci_ioda_pe_dma_weight(pe);
2286 if (!weight)
2287 return;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002288
Gavin Shan2b923ed2016-05-05 12:04:16 +10002289 pci_walk_bus(phb->hose->bus, pnv_pci_ioda_dev_dma_weight,
2290 &total_weight);
2291 segs = (weight * phb->ioda.dma32_count) / total_weight;
2292 if (!segs)
2293 segs = 1;
2294
2295 /*
2296 * Allocate contiguous DMA32 segments. We begin with the expected
2297 * number of segments. With one more attempt, the number of DMA32
2298 * segments to be allocated is decreased by one until one segment
2299 * is allocated successfully.
2300 */
2301 do {
2302 for (base = 0; base <= phb->ioda.dma32_count - segs; base++) {
2303 for (avail = 0, i = base; i < base + segs; i++) {
2304 if (phb->ioda.dma32_segmap[i] ==
2305 IODA_INVALID_PE)
2306 avail++;
2307 }
2308
2309 if (avail == segs)
2310 goto found;
2311 }
2312 } while (--segs);
2313
2314 if (!segs) {
2315 pe_warn(pe, "No available DMA32 segments\n");
2316 return;
2317 }
2318
2319found:
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002320 tbl = pnv_pci_table_alloc(phb->hose->node);
Alexey Kardashevskiy82eae1a2017-03-27 19:27:37 +11002321 if (WARN_ON(!tbl))
2322 return;
2323
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10002324 iommu_register_group(&pe->table_group, phb->hose->global_number,
2325 pe->pe_number);
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002326 pnv_pci_link_table_and_group(phb->hose->node, 0, tbl, &pe->table_group);
Alexey Kardashevskiyc5773822015-06-05 16:34:55 +10002327
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002328 /* Grab a 32-bit TCE table */
Gavin Shan2b923ed2016-05-05 12:04:16 +10002329 pe_info(pe, "DMA weight %d (%d), assigned (%d) %d DMA32 segments\n",
2330 weight, total_weight, base, segs);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002331 pe_info(pe, " Setting up 32-bit TCE table at %08x..%08x\n",
Gavin Shanacce9712016-05-03 15:41:33 +10002332 base * PNV_IODA1_DMA32_SEGSIZE,
2333 (base + segs) * PNV_IODA1_DMA32_SEGSIZE - 1);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002334
2335 /* XXX Currently, we allocate one big contiguous table for the
2336 * TCEs. We only really need one chunk per 256M of TCE space
2337 * (ie per segment) but that's an optimization for later, it
2338 * requires some added smarts with our get/put_tce implementation
Gavin Shanacce9712016-05-03 15:41:33 +10002339 *
2340 * Each TCE page is 4KB in size and each TCE entry occupies 8
2341 * bytes
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002342 */
Gavin Shanacce9712016-05-03 15:41:33 +10002343 tce32_segsz = PNV_IODA1_DMA32_SEGSIZE >> (IOMMU_PAGE_SHIFT_4K - 3);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002344 tce_mem = alloc_pages_node(phb->hose->node, GFP_KERNEL,
Gavin Shanacce9712016-05-03 15:41:33 +10002345 get_order(tce32_segsz * segs));
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002346 if (!tce_mem) {
2347 pe_err(pe, " Failed to allocate a 32-bit TCE memory\n");
2348 goto fail;
2349 }
2350 addr = page_address(tce_mem);
Gavin Shanacce9712016-05-03 15:41:33 +10002351 memset(addr, 0, tce32_segsz * segs);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002352
2353 /* Configure HW */
2354 for (i = 0; i < segs; i++) {
2355 rc = opal_pci_map_pe_dma_window(phb->opal_id,
2356 pe->pe_number,
2357 base + i, 1,
Gavin Shanacce9712016-05-03 15:41:33 +10002358 __pa(addr) + tce32_segsz * i,
2359 tce32_segsz, IOMMU_PAGE_SIZE_4K);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002360 if (rc) {
2361 pe_err(pe, " Failed to configure 32-bit TCE table,"
2362 " err %ld\n", rc);
2363 goto fail;
2364 }
2365 }
2366
Gavin Shan2b923ed2016-05-05 12:04:16 +10002367 /* Setup DMA32 segment mapping */
2368 for (i = base; i < base + segs; i++)
2369 phb->ioda.dma32_segmap[i] = pe->pe_number;
2370
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002371 /* Setup linux iommu table */
Gavin Shanacce9712016-05-03 15:41:33 +10002372 pnv_pci_setup_iommu_table(tbl, addr, tce32_segsz * segs,
2373 base * PNV_IODA1_DMA32_SEGSIZE,
2374 IOMMU_PAGE_SHIFT_4K);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002375
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10002376 tbl->it_ops = &pnv_ioda1_iommu_ops;
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002377 pe->table_group.tce32_start = tbl->it_offset << tbl->it_page_shift;
2378 pe->table_group.tce32_size = tbl->it_size << tbl->it_page_shift;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002379 iommu_init_table(tbl, phb->hose->node);
2380
Wei Yang781a8682015-03-25 16:23:57 +08002381 if (pe->flags & PNV_IODA_PE_DEV) {
Alexey Kardashevskiy46170822015-06-05 16:34:54 +10002382 /*
2383 * Setting table base here only for carrying iommu_group
2384 * further down to let iommu_add_device() do the job.
2385 * pnv_pci_ioda_dma_dev_setup will override it later anyway.
2386 */
2387 set_iommu_table_base(&pe->pdev->dev, tbl);
2388 iommu_add_device(&pe->pdev->dev);
Alexey Kardashevskiyc5773822015-06-05 16:34:55 +10002389 } else if (pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL))
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11002390 pnv_ioda_setup_bus_dma(pe, pe->pbus, true);
Benjamin Herrenschmidt74251fe2013-07-01 17:54:09 +10002391
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002392 return;
2393 fail:
2394 /* XXX Failure: Try to fallback to 64-bit only ? */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002395 if (tce_mem)
Gavin Shanacce9712016-05-03 15:41:33 +10002396 __free_pages(tce_mem, get_order(tce32_segsz * segs));
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002397 if (tbl) {
2398 pnv_pci_unlink_table_and_group(tbl, &pe->table_group);
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +11002399 iommu_tce_table_put(tbl);
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10002400 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002401}
2402
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002403static long pnv_pci_ioda2_set_window(struct iommu_table_group *table_group,
2404 int num, struct iommu_table *tbl)
2405{
2406 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2407 table_group);
2408 struct pnv_phb *phb = pe->phb;
2409 int64_t rc;
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002410 const unsigned long size = tbl->it_indirect_levels ?
2411 tbl->it_level_size : tbl->it_size;
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002412 const __u64 start_addr = tbl->it_offset << tbl->it_page_shift;
2413 const __u64 win_size = tbl->it_size << tbl->it_page_shift;
2414
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002415 pe_info(pe, "Setting up window#%d %llx..%llx pg=%x\n", num,
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002416 start_addr, start_addr + win_size - 1,
2417 IOMMU_PAGE_SIZE(tbl));
2418
2419 /*
2420 * Map TCE table through TVT. The TVE index is the PE number
2421 * shifted by 1 bit for 32-bits DMA space.
2422 */
2423 rc = opal_pci_map_pe_dma_window(phb->opal_id,
2424 pe->pe_number,
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002425 (pe->pe_number << 1) + num,
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002426 tbl->it_indirect_levels + 1,
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002427 __pa(tbl->it_base),
Alexey Kardashevskiybbb845c2015-06-05 16:35:19 +10002428 size << 3,
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002429 IOMMU_PAGE_SIZE(tbl));
2430 if (rc) {
2431 pe_err(pe, "Failed to configure TCE table, err %ld\n", rc);
2432 return rc;
2433 }
2434
2435 pnv_pci_link_table_and_group(phb->hose->node, num,
2436 tbl, &pe->table_group);
Michael Ellermaned7d9a12016-09-15 17:03:06 +10002437 pnv_pci_ioda2_tce_invalidate_pe(pe);
Alexey Kardashevskiy43cb60a2015-06-05 16:35:18 +10002438
2439 return 0;
2440}
2441
Frederic Barrat25529102017-08-04 11:55:14 +02002442void pnv_pci_ioda2_set_bypass(struct pnv_ioda_pe *pe, bool enable)
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002443{
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002444 uint16_t window_id = (pe->pe_number << 1 ) + 1;
2445 int64_t rc;
2446
2447 pe_info(pe, "%sabling 64-bit DMA bypass\n", enable ? "En" : "Dis");
2448 if (enable) {
2449 phys_addr_t top = memblock_end_of_DRAM();
2450
2451 top = roundup_pow_of_two(top);
2452 rc = opal_pci_map_pe_dma_window_real(pe->phb->opal_id,
2453 pe->pe_number,
2454 window_id,
2455 pe->tce_bypass_base,
2456 top);
2457 } else {
2458 rc = opal_pci_map_pe_dma_window_real(pe->phb->opal_id,
2459 pe->pe_number,
2460 window_id,
2461 pe->tce_bypass_base,
2462 0);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002463 }
2464 if (rc)
2465 pe_err(pe, "OPAL error %lld configuring bypass window\n", rc);
2466 else
2467 pe->tce_bypass_enabled = enable;
2468}
2469
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002470static long pnv_pci_ioda2_create_table(struct iommu_table_group *table_group,
2471 int num, __u32 page_shift, __u64 window_size, __u32 levels,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002472 bool alloc_userspace_copy, struct iommu_table **ptbl)
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002473{
2474 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2475 table_group);
2476 int nid = pe->phb->hose->node;
2477 __u64 bus_offset = num ? pe->tce_bypass_base : table_group->tce32_start;
2478 long ret;
2479 struct iommu_table *tbl;
2480
2481 tbl = pnv_pci_table_alloc(nid);
2482 if (!tbl)
2483 return -ENOMEM;
2484
Alexey Kardashevskiy11edf112017-03-22 15:21:49 +11002485 tbl->it_ops = &pnv_ioda2_iommu_ops;
2486
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002487 ret = pnv_pci_ioda2_table_alloc_pages(nid,
2488 bus_offset, page_shift, window_size,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002489 levels, alloc_userspace_copy, tbl);
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002490 if (ret) {
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +11002491 iommu_tce_table_put(tbl);
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002492 return ret;
2493 }
2494
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002495 *ptbl = tbl;
2496
2497 return 0;
2498}
2499
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002500static long pnv_pci_ioda2_setup_default_config(struct pnv_ioda_pe *pe)
2501{
2502 struct iommu_table *tbl = NULL;
2503 long rc;
2504
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002505 /*
Nishanth Aravamudanfa144862015-09-04 11:22:52 -07002506 * crashkernel= specifies the kdump kernel's maximum memory at
2507 * some offset and there is no guaranteed the result is a power
2508 * of 2, which will cause errors later.
2509 */
2510 const u64 max_memory = __rounddown_pow_of_two(memory_hotplug_max());
2511
2512 /*
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002513 * In memory constrained environments, e.g. kdump kernel, the
2514 * DMA window can be larger than available memory, which will
2515 * cause errors later.
2516 */
Nishanth Aravamudanfa144862015-09-04 11:22:52 -07002517 const u64 window_size = min((u64)pe->table_group.tce32_size, max_memory);
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002518
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002519 rc = pnv_pci_ioda2_create_table(&pe->table_group, 0,
2520 IOMMU_PAGE_SHIFT_4K,
Nishanth Aravamudanbb005452015-09-02 08:39:28 -07002521 window_size,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002522 POWERNV_IOMMU_DEFAULT_LEVELS, false, &tbl);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002523 if (rc) {
2524 pe_err(pe, "Failed to create 32-bit TCE table, err %ld",
2525 rc);
2526 return rc;
2527 }
2528
2529 iommu_init_table(tbl, pe->phb->hose->node);
2530
2531 rc = pnv_pci_ioda2_set_window(&pe->table_group, 0, tbl);
2532 if (rc) {
2533 pe_err(pe, "Failed to configure 32-bit TCE table, err %ld\n",
2534 rc);
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +11002535 iommu_tce_table_put(tbl);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002536 return rc;
2537 }
2538
2539 if (!pnv_iommu_bypass_disabled)
2540 pnv_pci_ioda2_set_bypass(pe, true);
2541
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002542 /*
2543 * Setting table base here only for carrying iommu_group
2544 * further down to let iommu_add_device() do the job.
2545 * pnv_pci_ioda_dma_dev_setup will override it later anyway.
2546 */
2547 if (pe->flags & PNV_IODA_PE_DEV)
2548 set_iommu_table_base(&pe->pdev->dev, tbl);
2549
2550 return 0;
2551}
2552
Alexey Kardashevskiyb5926432015-06-15 17:49:59 +10002553#if defined(CONFIG_IOMMU_API) || defined(CONFIG_PCI_IOV)
2554static long pnv_pci_ioda2_unset_window(struct iommu_table_group *table_group,
2555 int num)
2556{
2557 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2558 table_group);
2559 struct pnv_phb *phb = pe->phb;
2560 long ret;
2561
2562 pe_info(pe, "Removing DMA window #%d\n", num);
2563
2564 ret = opal_pci_map_pe_dma_window(phb->opal_id, pe->pe_number,
2565 (pe->pe_number << 1) + num,
2566 0/* levels */, 0/* table address */,
2567 0/* table size */, 0/* page size */);
2568 if (ret)
2569 pe_warn(pe, "Unmapping failed, ret = %ld\n", ret);
2570 else
Michael Ellermaned7d9a12016-09-15 17:03:06 +10002571 pnv_pci_ioda2_tce_invalidate_pe(pe);
Alexey Kardashevskiyb5926432015-06-15 17:49:59 +10002572
2573 pnv_pci_unlink_table_and_group(table_group->tables[num], table_group);
2574
2575 return ret;
2576}
2577#endif
2578
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002579#ifdef CONFIG_IOMMU_API
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002580static unsigned long pnv_pci_ioda2_get_table_size(__u32 page_shift,
2581 __u64 window_size, __u32 levels)
2582{
2583 unsigned long bytes = 0;
2584 const unsigned window_shift = ilog2(window_size);
2585 unsigned entries_shift = window_shift - page_shift;
2586 unsigned table_shift = entries_shift + 3;
2587 unsigned long tce_table_size = max(0x1000UL, 1UL << table_shift);
2588 unsigned long direct_table_size;
2589
2590 if (!levels || (levels > POWERNV_IOMMU_MAX_LEVELS) ||
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002591 !is_power_of_2(window_size))
2592 return 0;
2593
2594 /* Calculate a direct table size from window_size and levels */
2595 entries_shift = (entries_shift + levels - 1) / levels;
2596 table_shift = entries_shift + 3;
2597 table_shift = max_t(unsigned, table_shift, PAGE_SHIFT);
2598 direct_table_size = 1UL << table_shift;
2599
2600 for ( ; levels; --levels) {
2601 bytes += _ALIGN_UP(tce_table_size, direct_table_size);
2602
2603 tce_table_size /= direct_table_size;
2604 tce_table_size <<= 3;
Alexey Kardashevskiye49a6a22017-04-13 17:05:27 +10002605 tce_table_size = max_t(unsigned long,
2606 tce_table_size, direct_table_size);
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002607 }
2608
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002609 return bytes + bytes; /* one for HW table, one for userspace copy */
2610}
2611
2612static long pnv_pci_ioda2_create_table_userspace(
2613 struct iommu_table_group *table_group,
2614 int num, __u32 page_shift, __u64 window_size, __u32 levels,
2615 struct iommu_table **ptbl)
2616{
Alexey Kardashevskiy4acf7972019-02-13 14:38:18 +11002617 long ret = pnv_pci_ioda2_create_table(table_group,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002618 num, page_shift, window_size, levels, true, ptbl);
Alexey Kardashevskiy4acf7972019-02-13 14:38:18 +11002619
2620 if (!ret)
2621 (*ptbl)->it_allocated_size = pnv_pci_ioda2_get_table_size(
2622 page_shift, window_size, levels);
2623 return ret;
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002624}
2625
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002626static void pnv_ioda2_take_ownership(struct iommu_table_group *table_group)
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002627{
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002628 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2629 table_group);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002630 /* Store @tbl as pnv_pci_ioda2_unset_window() resets it */
2631 struct iommu_table *tbl = pe->table_group.tables[0];
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002632
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002633 pnv_pci_ioda2_set_bypass(pe, false);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002634 pnv_pci_ioda2_unset_window(&pe->table_group, 0);
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11002635 if (pe->pbus)
2636 pnv_ioda_setup_bus_dma(pe, pe->pbus, false);
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +11002637 iommu_tce_table_put(tbl);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11002638}
2639
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002640static void pnv_ioda2_release_ownership(struct iommu_table_group *table_group)
2641{
2642 struct pnv_ioda_pe *pe = container_of(table_group, struct pnv_ioda_pe,
2643 table_group);
2644
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002645 pnv_pci_ioda2_setup_default_config(pe);
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11002646 if (pe->pbus)
2647 pnv_ioda_setup_bus_dma(pe, pe->pbus, false);
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002648}
2649
2650static struct iommu_table_group_ops pnv_pci_ioda2_ops = {
Alexey Kardashevskiy00547192015-06-05 16:35:22 +10002651 .get_table_size = pnv_pci_ioda2_get_table_size,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002652 .create_table = pnv_pci_ioda2_create_table_userspace,
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002653 .set_window = pnv_pci_ioda2_set_window,
2654 .unset_window = pnv_pci_ioda2_unset_window,
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002655 .take_ownership = pnv_ioda2_take_ownership,
2656 .release_ownership = pnv_ioda2_release_ownership,
2657};
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002658
2659static int gpe_table_group_to_npe_cb(struct device *dev, void *opaque)
2660{
2661 struct pci_controller *hose;
2662 struct pnv_phb *phb;
2663 struct pnv_ioda_pe **ptmppe = opaque;
2664 struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
2665 struct pci_dn *pdn = pci_get_pdn(pdev);
2666
2667 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
2668 return 0;
2669
2670 hose = pci_bus_to_host(pdev->bus);
2671 phb = hose->private_data;
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01002672 if (phb->type != PNV_PHB_NPU_NVLINK)
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002673 return 0;
2674
2675 *ptmppe = &phb->ioda.pe_array[pdn->pe_number];
2676
2677 return 1;
2678}
2679
2680/*
2681 * This returns PE of associated NPU.
2682 * This assumes that NPU is in the same IOMMU group with GPU and there is
2683 * no other PEs.
2684 */
2685static struct pnv_ioda_pe *gpe_table_group_to_npe(
2686 struct iommu_table_group *table_group)
2687{
2688 struct pnv_ioda_pe *npe = NULL;
2689 int ret = iommu_group_for_each_dev(table_group->group, &npe,
2690 gpe_table_group_to_npe_cb);
2691
2692 BUG_ON(!ret || !npe);
2693
2694 return npe;
2695}
2696
2697static long pnv_pci_ioda2_npu_set_window(struct iommu_table_group *table_group,
2698 int num, struct iommu_table *tbl)
2699{
Alexey Kardashevskiyd41ce7b2018-02-13 16:51:35 +11002700 struct pnv_ioda_pe *npe = gpe_table_group_to_npe(table_group);
2701 int num2 = (num == 0) ? 1 : 0;
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002702 long ret = pnv_pci_ioda2_set_window(table_group, num, tbl);
2703
2704 if (ret)
2705 return ret;
2706
Alexey Kardashevskiyd41ce7b2018-02-13 16:51:35 +11002707 if (table_group->tables[num2])
2708 pnv_npu_unset_window(npe, num2);
2709
2710 ret = pnv_npu_set_window(npe, num, tbl);
2711 if (ret) {
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002712 pnv_pci_ioda2_unset_window(table_group, num);
Alexey Kardashevskiyd41ce7b2018-02-13 16:51:35 +11002713 if (table_group->tables[num2])
2714 pnv_npu_set_window(npe, num2,
2715 table_group->tables[num2]);
2716 }
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002717
2718 return ret;
2719}
2720
2721static long pnv_pci_ioda2_npu_unset_window(
2722 struct iommu_table_group *table_group,
2723 int num)
2724{
Alexey Kardashevskiyd41ce7b2018-02-13 16:51:35 +11002725 struct pnv_ioda_pe *npe = gpe_table_group_to_npe(table_group);
2726 int num2 = (num == 0) ? 1 : 0;
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002727 long ret = pnv_pci_ioda2_unset_window(table_group, num);
2728
2729 if (ret)
2730 return ret;
2731
Alexey Kardashevskiyd41ce7b2018-02-13 16:51:35 +11002732 if (!npe->table_group.tables[num])
2733 return 0;
2734
2735 ret = pnv_npu_unset_window(npe, num);
2736 if (ret)
2737 return ret;
2738
2739 if (table_group->tables[num2])
2740 ret = pnv_npu_set_window(npe, num2, table_group->tables[num2]);
2741
2742 return ret;
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002743}
2744
2745static void pnv_ioda2_npu_take_ownership(struct iommu_table_group *table_group)
2746{
2747 /*
2748 * Detach NPU first as pnv_ioda2_take_ownership() will destroy
2749 * the iommu_table if 32bit DMA is enabled.
2750 */
2751 pnv_npu_take_ownership(gpe_table_group_to_npe(table_group));
2752 pnv_ioda2_take_ownership(table_group);
2753}
2754
2755static struct iommu_table_group_ops pnv_pci_ioda2_npu_ops = {
2756 .get_table_size = pnv_pci_ioda2_get_table_size,
Alexey Kardashevskiy090bad32018-07-04 16:13:47 +10002757 .create_table = pnv_pci_ioda2_create_table_userspace,
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002758 .set_window = pnv_pci_ioda2_npu_set_window,
2759 .unset_window = pnv_pci_ioda2_npu_unset_window,
2760 .take_ownership = pnv_ioda2_npu_take_ownership,
2761 .release_ownership = pnv_ioda2_release_ownership,
2762};
2763
2764static void pnv_pci_ioda_setup_iommu_api(void)
2765{
2766 struct pci_controller *hose, *tmp;
2767 struct pnv_phb *phb;
2768 struct pnv_ioda_pe *pe, *gpe;
2769
2770 /*
2771 * Now we have all PHBs discovered, time to add NPU devices to
2772 * the corresponding IOMMU groups.
2773 */
2774 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
2775 phb = hose->private_data;
2776
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01002777 if (phb->type != PNV_PHB_NPU_NVLINK)
Alexey Kardashevskiyb5cb9ab2016-04-29 18:55:24 +10002778 continue;
2779
2780 list_for_each_entry(pe, &phb->ioda.pe_list, list) {
2781 gpe = pnv_pci_npu_setup_iommu(pe);
2782 if (gpe)
2783 gpe->table_group.ops = &pnv_pci_ioda2_npu_ops;
2784 }
2785 }
2786}
2787#else /* !CONFIG_IOMMU_API */
2788static void pnv_pci_ioda_setup_iommu_api(void) { };
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002789#endif
2790
Alexey Kardashevskiy7ef73cd2018-05-14 19:39:22 +10002791static unsigned long pnv_ioda_parse_tce_sizes(struct pnv_phb *phb)
2792{
2793 struct pci_controller *hose = phb->hose;
2794 struct device_node *dn = hose->dn;
2795 unsigned long mask = 0;
2796 int i, rc, count;
2797 u32 val;
2798
2799 count = of_property_count_u32_elems(dn, "ibm,supported-tce-sizes");
2800 if (count <= 0) {
2801 mask = SZ_4K | SZ_64K;
2802 /* Add 16M for POWER8 by default */
2803 if (cpu_has_feature(CPU_FTR_ARCH_207S) &&
2804 !cpu_has_feature(CPU_FTR_ARCH_300))
Alexey Kardashevskiy00c376f2018-07-02 17:42:05 +10002805 mask |= SZ_16M | SZ_256M;
Alexey Kardashevskiy7ef73cd2018-05-14 19:39:22 +10002806 return mask;
2807 }
2808
2809 for (i = 0; i < count; i++) {
2810 rc = of_property_read_u32_index(dn, "ibm,supported-tce-sizes",
2811 i, &val);
2812 if (rc == 0)
2813 mask |= 1ULL << val;
2814 }
2815
2816 return mask;
2817}
2818
Gavin Shan373f5652013-04-25 19:21:01 +00002819static void pnv_pci_ioda2_setup_dma_pe(struct pnv_phb *phb,
2820 struct pnv_ioda_pe *pe)
2821{
Gavin Shan373f5652013-04-25 19:21:01 +00002822 int64_t rc;
2823
Gavin Shanccd1c192016-05-20 16:41:31 +10002824 if (!pnv_pci_ioda_pe_dma_weight(pe))
2825 return;
2826
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10002827 /* TVE #1 is selected by PCI address bit 59 */
2828 pe->tce_bypass_base = 1ull << 59;
2829
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10002830 iommu_register_group(&pe->table_group, phb->hose->global_number,
2831 pe->pe_number);
Alexey Kardashevskiyc5773822015-06-05 16:34:55 +10002832
Gavin Shan373f5652013-04-25 19:21:01 +00002833 /* The PE will reserve all possible 32-bits space */
Gavin Shan373f5652013-04-25 19:21:01 +00002834 pe_info(pe, "Setting up 32-bit TCE table at 0..%08x\n",
Alexey Kardashevskiyaca69132015-06-05 16:35:17 +10002835 phb->ioda.m32_pci_base);
Gavin Shan373f5652013-04-25 19:21:01 +00002836
Alexey Kardashevskiye5aad1e2015-06-05 16:35:16 +10002837 /* Setup linux iommu table */
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +10002838 pe->table_group.tce32_start = 0;
2839 pe->table_group.tce32_size = phb->ioda.m32_pci_base;
2840 pe->table_group.max_dynamic_windows_supported =
2841 IOMMU_TABLE_GROUP_MAX_TABLES;
2842 pe->table_group.max_levels = POWERNV_IOMMU_MAX_LEVELS;
Alexey Kardashevskiy7ef73cd2018-05-14 19:39:22 +10002843 pe->table_group.pgsizes = pnv_ioda_parse_tce_sizes(phb);
Alexey Kardashevskiye5aad1e2015-06-05 16:35:16 +10002844#ifdef CONFIG_IOMMU_API
2845 pe->table_group.ops = &pnv_pci_ioda2_ops;
2846#endif
2847
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002848 rc = pnv_pci_ioda2_setup_default_config(pe);
Gavin Shan801846d2016-05-03 15:41:34 +10002849 if (rc)
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10002850 return;
Gavin Shan373f5652013-04-25 19:21:01 +00002851
Alexey Kardashevskiy20f13b92017-02-21 13:40:20 +11002852 if (pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL))
Alexey Kardashevskiydb08e1d2017-02-21 13:41:31 +11002853 pnv_ioda_setup_bus_dma(pe, pe->pbus, true);
Gavin Shan373f5652013-04-25 19:21:01 +00002854}
2855
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002856#ifdef CONFIG_PCI_MSI
Suresh Warrier4ee11c12016-08-19 15:35:49 +10002857int64_t pnv_opal_pci_msi_eoi(struct irq_chip *chip, unsigned int hw_irq)
Gavin Shan137436c2013-04-25 19:20:59 +00002858{
Gavin Shan137436c2013-04-25 19:20:59 +00002859 struct pnv_phb *phb = container_of(chip, struct pnv_phb,
2860 ioda.irq_chip);
Gavin Shan137436c2013-04-25 19:20:59 +00002861
Suresh Warrier4ee11c12016-08-19 15:35:49 +10002862 return opal_pci_msi_eoi(phb->opal_id, hw_irq);
2863}
2864
2865static void pnv_ioda2_msi_eoi(struct irq_data *d)
2866{
2867 int64_t rc;
2868 unsigned int hw_irq = (unsigned int)irqd_to_hwirq(d);
2869 struct irq_chip *chip = irq_data_get_irq_chip(d);
2870
2871 rc = pnv_opal_pci_msi_eoi(chip, hw_irq);
Gavin Shan137436c2013-04-25 19:20:59 +00002872 WARN_ON_ONCE(rc);
2873
2874 icp_native_eoi(d);
2875}
2876
Ian Munsiefd9a1c22014-10-08 19:54:55 +11002877
Ian Munsief4568342016-07-14 07:17:00 +10002878void pnv_set_msi_irq_chip(struct pnv_phb *phb, unsigned int virq)
Ian Munsiefd9a1c22014-10-08 19:54:55 +11002879{
2880 struct irq_data *idata;
2881 struct irq_chip *ichip;
2882
Benjamin Herrenschmidtfb111332016-07-08 16:37:09 +10002883 /* The MSI EOI OPAL call is only needed on PHB3 */
2884 if (phb->model != PNV_PHB_MODEL_PHB3)
Ian Munsiefd9a1c22014-10-08 19:54:55 +11002885 return;
2886
2887 if (!phb->ioda.irq_chip_init) {
2888 /*
2889 * First time we setup an MSI IRQ, we need to setup the
2890 * corresponding IRQ chip to route correctly.
2891 */
2892 idata = irq_get_irq_data(virq);
2893 ichip = irq_data_get_irq_chip(idata);
2894 phb->ioda.irq_chip_init = 1;
2895 phb->ioda.irq_chip = *ichip;
2896 phb->ioda.irq_chip.irq_eoi = pnv_ioda2_msi_eoi;
2897 }
2898 irq_set_chip(virq, &phb->ioda.irq_chip);
2899}
2900
Suresh Warrier4ee11c12016-08-19 15:35:49 +10002901/*
2902 * Returns true iff chip is something that we could call
2903 * pnv_opal_pci_msi_eoi for.
2904 */
2905bool is_pnv_opal_msi(struct irq_chip *chip)
2906{
2907 return chip->irq_eoi == pnv_ioda2_msi_eoi;
2908}
2909EXPORT_SYMBOL_GPL(is_pnv_opal_msi);
2910
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002911static int pnv_pci_ioda_msi_setup(struct pnv_phb *phb, struct pci_dev *dev,
Gavin Shan137436c2013-04-25 19:20:59 +00002912 unsigned int hwirq, unsigned int virq,
2913 unsigned int is_64, struct msi_msg *msg)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002914{
2915 struct pnv_ioda_pe *pe = pnv_ioda_get_pe(dev);
2916 unsigned int xive_num = hwirq - phb->msi_base;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002917 __be32 data;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002918 int rc;
2919
2920 /* No PE assigned ? bail out ... no MSI for you ! */
2921 if (pe == NULL)
2922 return -ENXIO;
2923
2924 /* Check if we have an MVE */
2925 if (pe->mve_number < 0)
2926 return -ENXIO;
2927
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00002928 /* Force 32-bit MSI on some broken devices */
Benjamin Herrenschmidt36074382014-10-07 16:12:36 +11002929 if (dev->no_64bit_msi)
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00002930 is_64 = 0;
2931
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002932 /* Assign XIVE to PE */
2933 rc = opal_pci_set_xive_pe(phb->opal_id, pe->pe_number, xive_num);
2934 if (rc) {
2935 pr_warn("%s: OPAL error %d setting XIVE %d PE\n",
2936 pci_name(dev), rc, xive_num);
2937 return -EIO;
2938 }
2939
2940 if (is_64) {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002941 __be64 addr64;
2942
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002943 rc = opal_get_msi_64(phb->opal_id, pe->mve_number, xive_num, 1,
2944 &addr64, &data);
2945 if (rc) {
2946 pr_warn("%s: OPAL error %d getting 64-bit MSI data\n",
2947 pci_name(dev), rc);
2948 return -EIO;
2949 }
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002950 msg->address_hi = be64_to_cpu(addr64) >> 32;
2951 msg->address_lo = be64_to_cpu(addr64) & 0xfffffffful;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002952 } else {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002953 __be32 addr32;
2954
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002955 rc = opal_get_msi_32(phb->opal_id, pe->mve_number, xive_num, 1,
2956 &addr32, &data);
2957 if (rc) {
2958 pr_warn("%s: OPAL error %d getting 32-bit MSI data\n",
2959 pci_name(dev), rc);
2960 return -EIO;
2961 }
2962 msg->address_hi = 0;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002963 msg->address_lo = be32_to_cpu(addr32);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002964 }
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10002965 msg->data = be32_to_cpu(data);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002966
Ian Munsief4568342016-07-14 07:17:00 +10002967 pnv_set_msi_irq_chip(phb, virq);
Gavin Shan137436c2013-04-25 19:20:59 +00002968
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002969 pr_devel("%s: %s-bit MSI on hwirq %x (xive #%d),"
Russell Currey1f52f172016-11-16 14:02:15 +11002970 " address=%x_%08x data=%x PE# %x\n",
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002971 pci_name(dev), is_64 ? "64" : "32", hwirq, xive_num,
2972 msg->address_hi, msg->address_lo, data, pe->pe_number);
2973
2974 return 0;
2975}
2976
2977static void pnv_pci_init_ioda_msis(struct pnv_phb *phb)
2978{
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002979 unsigned int count;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002980 const __be32 *prop = of_get_property(phb->hose->dn,
2981 "ibm,opal-msi-ranges", NULL);
2982 if (!prop) {
2983 /* BML Fallback */
2984 prop = of_get_property(phb->hose->dn, "msi-ranges", NULL);
2985 }
2986 if (!prop)
2987 return;
2988
2989 phb->msi_base = be32_to_cpup(prop);
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002990 count = be32_to_cpup(prop + 1);
2991 if (msi_bitmap_alloc(&phb->msi_bmp, count, phb->hose->dn)) {
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002992 pr_err("PCI %d: Failed to allocate MSI bitmap !\n",
2993 phb->hose->global_number);
2994 return;
2995 }
Gavin Shanfb1b55d2013-03-05 21:12:37 +00002996
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00002997 phb->msi_setup = pnv_pci_ioda_msi_setup;
2998 phb->msi32_support = 1;
2999 pr_info(" Allocated bitmap for %d MSIs (base IRQ 0x%x)\n",
Gavin Shanfb1b55d2013-03-05 21:12:37 +00003000 count, phb->msi_base);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003001}
3002#else
3003static void pnv_pci_init_ioda_msis(struct pnv_phb *phb) { }
3004#endif /* CONFIG_PCI_MSI */
3005
Wei Yang6e628c72015-03-25 16:23:55 +08003006#ifdef CONFIG_PCI_IOV
3007static void pnv_pci_ioda_fixup_iov_resources(struct pci_dev *pdev)
3008{
Wei Yangf2dd0af2015-10-22 09:22:17 +08003009 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
3010 struct pnv_phb *phb = hose->private_data;
3011 const resource_size_t gate = phb->ioda.m64_segsize >> 2;
Wei Yang6e628c72015-03-25 16:23:55 +08003012 struct resource *res;
3013 int i;
Wei Yangdfcc8d42015-10-22 09:22:18 +08003014 resource_size_t size, total_vf_bar_sz;
Wei Yang6e628c72015-03-25 16:23:55 +08003015 struct pci_dn *pdn;
Wei Yang5b88ec22015-03-25 16:23:58 +08003016 int mul, total_vfs;
Wei Yang6e628c72015-03-25 16:23:55 +08003017
Hari Vyas44bda4b2018-07-03 14:35:41 +05303018 if (!pdev->is_physfn || pci_dev_is_added(pdev))
Wei Yang6e628c72015-03-25 16:23:55 +08003019 return;
3020
Wei Yang6e628c72015-03-25 16:23:55 +08003021 pdn = pci_get_pdn(pdev);
3022 pdn->vfs_expanded = 0;
Wei Yangee8222f2015-10-22 09:22:16 +08003023 pdn->m64_single_mode = false;
Wei Yang6e628c72015-03-25 16:23:55 +08003024
Wei Yang5b88ec22015-03-25 16:23:58 +08003025 total_vfs = pci_sriov_get_totalvfs(pdev);
Gavin Shan92b8f132016-05-03 15:41:24 +10003026 mul = phb->ioda.total_pe_num;
Wei Yangdfcc8d42015-10-22 09:22:18 +08003027 total_vf_bar_sz = 0;
Wei Yang5b88ec22015-03-25 16:23:58 +08003028
3029 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
3030 res = &pdev->resource[i + PCI_IOV_RESOURCES];
3031 if (!res->flags || res->parent)
3032 continue;
Russell Curreyb79331a2016-09-14 16:37:17 +10003033 if (!pnv_pci_is_m64_flags(res->flags)) {
Wei Yangb0331852015-10-22 09:22:14 +08003034 dev_warn(&pdev->dev, "Don't support SR-IOV with"
3035 " non M64 VF BAR%d: %pR. \n",
Wei Yang5b88ec22015-03-25 16:23:58 +08003036 i, res);
Wei Yangb0331852015-10-22 09:22:14 +08003037 goto truncate_iov;
Wei Yang5b88ec22015-03-25 16:23:58 +08003038 }
3039
Wei Yangdfcc8d42015-10-22 09:22:18 +08003040 total_vf_bar_sz += pci_iov_resource_size(pdev,
3041 i + PCI_IOV_RESOURCES);
Wei Yang5b88ec22015-03-25 16:23:58 +08003042
Wei Yangf2dd0af2015-10-22 09:22:17 +08003043 /*
3044 * If bigger than quarter of M64 segment size, just round up
3045 * power of two.
3046 *
3047 * Generally, one M64 BAR maps one IOV BAR. To avoid conflict
3048 * with other devices, IOV BAR size is expanded to be
3049 * (total_pe * VF_BAR_size). When VF_BAR_size is half of M64
3050 * segment size , the expanded size would equal to half of the
3051 * whole M64 space size, which will exhaust the M64 Space and
3052 * limit the system flexibility. This is a design decision to
3053 * set the boundary to quarter of the M64 segment size.
3054 */
Wei Yangdfcc8d42015-10-22 09:22:18 +08003055 if (total_vf_bar_sz > gate) {
Wei Yang5b88ec22015-03-25 16:23:58 +08003056 mul = roundup_pow_of_two(total_vfs);
Wei Yangdfcc8d42015-10-22 09:22:18 +08003057 dev_info(&pdev->dev,
3058 "VF BAR Total IOV size %llx > %llx, roundup to %d VFs\n",
3059 total_vf_bar_sz, gate, mul);
Wei Yangee8222f2015-10-22 09:22:16 +08003060 pdn->m64_single_mode = true;
Wei Yang5b88ec22015-03-25 16:23:58 +08003061 break;
3062 }
3063 }
3064
Wei Yang6e628c72015-03-25 16:23:55 +08003065 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
3066 res = &pdev->resource[i + PCI_IOV_RESOURCES];
3067 if (!res->flags || res->parent)
3068 continue;
Wei Yang6e628c72015-03-25 16:23:55 +08003069
Wei Yang6e628c72015-03-25 16:23:55 +08003070 size = pci_iov_resource_size(pdev, i + PCI_IOV_RESOURCES);
Wei Yangee8222f2015-10-22 09:22:16 +08003071 /*
3072 * On PHB3, the minimum size alignment of M64 BAR in single
3073 * mode is 32MB.
3074 */
3075 if (pdn->m64_single_mode && (size < SZ_32M))
3076 goto truncate_iov;
3077 dev_dbg(&pdev->dev, " Fixing VF BAR%d: %pR to\n", i, res);
Wei Yang5b88ec22015-03-25 16:23:58 +08003078 res->end = res->start + size * mul - 1;
Wei Yang6e628c72015-03-25 16:23:55 +08003079 dev_dbg(&pdev->dev, " %pR\n", res);
3080 dev_info(&pdev->dev, "VF BAR%d: %pR (expanded to %d VFs for PE alignment)",
Wei Yang5b88ec22015-03-25 16:23:58 +08003081 i, res, mul);
Wei Yang6e628c72015-03-25 16:23:55 +08003082 }
Wei Yang5b88ec22015-03-25 16:23:58 +08003083 pdn->vfs_expanded = mul;
Wei Yangb0331852015-10-22 09:22:14 +08003084
3085 return;
3086
3087truncate_iov:
3088 /* To save MMIO space, IOV BAR is truncated. */
3089 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
3090 res = &pdev->resource[i + PCI_IOV_RESOURCES];
3091 res->flags = 0;
3092 res->end = res->start - 1;
3093 }
Wei Yang6e628c72015-03-25 16:23:55 +08003094}
3095#endif /* CONFIG_PCI_IOV */
3096
Gavin Shan23e79422016-05-03 15:41:27 +10003097static void pnv_ioda_setup_pe_res(struct pnv_ioda_pe *pe,
3098 struct resource *res)
3099{
3100 struct pnv_phb *phb = pe->phb;
3101 struct pci_bus_region region;
3102 int index;
3103 int64_t rc;
3104
3105 if (!res || !res->flags || res->start > res->end)
3106 return;
3107
3108 if (res->flags & IORESOURCE_IO) {
3109 region.start = res->start - phb->ioda.io_pci_base;
3110 region.end = res->end - phb->ioda.io_pci_base;
3111 index = region.start / phb->ioda.io_segsize;
3112
3113 while (index < phb->ioda.total_pe_num &&
3114 region.start <= region.end) {
3115 phb->ioda.io_segmap[index] = pe->pe_number;
3116 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
3117 pe->pe_number, OPAL_IO_WINDOW_TYPE, 0, index);
3118 if (rc != OPAL_SUCCESS) {
Russell Currey1f52f172016-11-16 14:02:15 +11003119 pr_err("%s: Error %lld mapping IO segment#%d to PE#%x\n",
Gavin Shan23e79422016-05-03 15:41:27 +10003120 __func__, rc, index, pe->pe_number);
3121 break;
3122 }
3123
3124 region.start += phb->ioda.io_segsize;
3125 index++;
3126 }
3127 } else if ((res->flags & IORESOURCE_MEM) &&
Benjamin Herrenschmidt5958d192016-07-08 15:55:43 +10003128 !pnv_pci_is_m64(phb, res)) {
Gavin Shan23e79422016-05-03 15:41:27 +10003129 region.start = res->start -
3130 phb->hose->mem_offset[0] -
3131 phb->ioda.m32_pci_base;
3132 region.end = res->end -
3133 phb->hose->mem_offset[0] -
3134 phb->ioda.m32_pci_base;
3135 index = region.start / phb->ioda.m32_segsize;
3136
3137 while (index < phb->ioda.total_pe_num &&
3138 region.start <= region.end) {
3139 phb->ioda.m32_segmap[index] = pe->pe_number;
3140 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
3141 pe->pe_number, OPAL_M32_WINDOW_TYPE, 0, index);
3142 if (rc != OPAL_SUCCESS) {
Russell Currey1f52f172016-11-16 14:02:15 +11003143 pr_err("%s: Error %lld mapping M32 segment#%d to PE#%x",
Gavin Shan23e79422016-05-03 15:41:27 +10003144 __func__, rc, index, pe->pe_number);
3145 break;
3146 }
3147
3148 region.start += phb->ioda.m32_segsize;
3149 index++;
3150 }
3151 }
3152}
3153
Gavin Shan11685be2012-08-20 03:49:16 +00003154/*
3155 * This function is supposed to be called on basis of PE from top
3156 * to bottom style. So the the I/O or MMIO segment assigned to
Masahiro Yamada03671052017-02-27 14:29:28 -08003157 * parent PE could be overridden by its child PEs if necessary.
Gavin Shan11685be2012-08-20 03:49:16 +00003158 */
Gavin Shan23e79422016-05-03 15:41:27 +10003159static void pnv_ioda_setup_pe_seg(struct pnv_ioda_pe *pe)
Gavin Shan11685be2012-08-20 03:49:16 +00003160{
Gavin Shan69d733e2016-05-03 15:41:28 +10003161 struct pci_dev *pdev;
Gavin Shan23e79422016-05-03 15:41:27 +10003162 int i;
Gavin Shan11685be2012-08-20 03:49:16 +00003163
3164 /*
3165 * NOTE: We only care PCI bus based PE for now. For PCI
3166 * device based PE, for example SRIOV sensitive VF should
3167 * be figured out later.
3168 */
3169 BUG_ON(!(pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL)));
3170
Gavin Shan69d733e2016-05-03 15:41:28 +10003171 list_for_each_entry(pdev, &pe->pbus->devices, bus_list) {
3172 for (i = 0; i <= PCI_ROM_RESOURCE; i++)
3173 pnv_ioda_setup_pe_res(pe, &pdev->resource[i]);
3174
3175 /*
3176 * If the PE contains all subordinate PCI buses, the
3177 * windows of the child bridges should be mapped to
3178 * the PE as well.
3179 */
3180 if (!(pe->flags & PNV_IODA_PE_BUS_ALL) || !pci_is_bridge(pdev))
3181 continue;
3182 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++)
3183 pnv_ioda_setup_pe_res(pe,
3184 &pdev->resource[PCI_BRIDGE_RESOURCES + i]);
3185 }
Gavin Shan11685be2012-08-20 03:49:16 +00003186}
3187
Russell Currey98b665d2016-07-28 15:05:03 +10003188#ifdef CONFIG_DEBUG_FS
3189static int pnv_pci_diag_data_set(void *data, u64 val)
3190{
3191 struct pci_controller *hose;
3192 struct pnv_phb *phb;
3193 s64 ret;
3194
3195 if (val != 1ULL)
3196 return -EINVAL;
3197
3198 hose = (struct pci_controller *)data;
3199 if (!hose || !hose->private_data)
3200 return -ENODEV;
3201
3202 phb = hose->private_data;
3203
3204 /* Retrieve the diag data from firmware */
Russell Currey5cb1f8f2017-06-14 14:19:59 +10003205 ret = opal_pci_get_phb_diag_data2(phb->opal_id, phb->diag_data,
3206 phb->diag_data_size);
Russell Currey98b665d2016-07-28 15:05:03 +10003207 if (ret != OPAL_SUCCESS)
3208 return -EIO;
3209
3210 /* Print the diag data to the kernel log */
Russell Currey5cb1f8f2017-06-14 14:19:59 +10003211 pnv_pci_dump_phb_diag_data(phb->hose, phb->diag_data);
Russell Currey98b665d2016-07-28 15:05:03 +10003212 return 0;
3213}
3214
3215DEFINE_SIMPLE_ATTRIBUTE(pnv_pci_diag_data_fops, NULL,
3216 pnv_pci_diag_data_set, "%llu\n");
3217
3218#endif /* CONFIG_DEBUG_FS */
3219
Gavin Shan37c367f2013-06-20 18:13:25 +08003220static void pnv_pci_ioda_create_dbgfs(void)
3221{
3222#ifdef CONFIG_DEBUG_FS
3223 struct pci_controller *hose, *tmp;
3224 struct pnv_phb *phb;
3225 char name[16];
3226
3227 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
3228 phb = hose->private_data;
3229
Gavin Shanccd1c192016-05-20 16:41:31 +10003230 /* Notify initialization of PHB done */
3231 phb->initialized = 1;
3232
Gavin Shan37c367f2013-06-20 18:13:25 +08003233 sprintf(name, "PCI%04x", hose->global_number);
3234 phb->dbgfs = debugfs_create_dir(name, powerpc_debugfs_root);
Russell Currey98b665d2016-07-28 15:05:03 +10003235 if (!phb->dbgfs) {
Joe Perchesf2c2cbc2016-10-24 21:00:08 -07003236 pr_warn("%s: Error on creating debugfs on PHB#%x\n",
Gavin Shan37c367f2013-06-20 18:13:25 +08003237 __func__, hose->global_number);
Russell Currey98b665d2016-07-28 15:05:03 +10003238 continue;
3239 }
3240
3241 debugfs_create_file("dump_diag_regs", 0200, phb->dbgfs, hose,
3242 &pnv_pci_diag_data_fops);
Gavin Shan37c367f2013-06-20 18:13:25 +08003243 }
3244#endif /* CONFIG_DEBUG_FS */
3245}
3246
Benjamin Herrenschmidtdb217312018-08-17 17:30:39 +10003247static void pnv_pci_enable_bridge(struct pci_bus *bus)
3248{
3249 struct pci_dev *dev = bus->self;
3250 struct pci_bus *child;
3251
3252 /* Empty bus ? bail */
3253 if (list_empty(&bus->devices))
3254 return;
3255
3256 /*
3257 * If there's a bridge associated with that bus enable it. This works
3258 * around races in the generic code if the enabling is done during
3259 * parallel probing. This can be removed once those races have been
3260 * fixed.
3261 */
3262 if (dev) {
3263 int rc = pci_enable_device(dev);
3264 if (rc)
3265 pci_err(dev, "Error enabling bridge (%d)\n", rc);
3266 pci_set_master(dev);
3267 }
3268
3269 /* Perform the same to child busses */
3270 list_for_each_entry(child, &bus->children, node)
3271 pnv_pci_enable_bridge(child);
3272}
3273
3274static void pnv_pci_enable_bridges(void)
3275{
3276 struct pci_controller *hose;
3277
3278 list_for_each_entry(hose, &hose_list, list_node)
3279 pnv_pci_enable_bridge(hose->bus);
3280}
3281
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -08003282static void pnv_pci_ioda_fixup(void)
Gavin Shanfb446ad2012-08-20 03:49:14 +00003283{
3284 pnv_pci_ioda_setup_PEs();
Gavin Shanccd1c192016-05-20 16:41:31 +10003285 pnv_pci_ioda_setup_iommu_api();
Gavin Shan37c367f2013-06-20 18:13:25 +08003286 pnv_pci_ioda_create_dbgfs();
3287
Benjamin Herrenschmidtdb217312018-08-17 17:30:39 +10003288 pnv_pci_enable_bridges();
3289
Gavin Shane9cc17d2013-06-20 13:21:14 +08003290#ifdef CONFIG_EEH
Benjamin Herrenschmidtb9fde582017-09-07 16:35:44 +10003291 pnv_eeh_post_init();
Gavin Shane9cc17d2013-06-20 13:21:14 +08003292#endif
Gavin Shanfb446ad2012-08-20 03:49:14 +00003293}
3294
Gavin Shan271fd032012-09-11 16:59:47 -06003295/*
3296 * Returns the alignment for I/O or memory windows for P2P
3297 * bridges. That actually depends on how PEs are segmented.
3298 * For now, we return I/O or M32 segment size for PE sensitive
3299 * P2P bridges. Otherwise, the default values (4KiB for I/O,
3300 * 1MiB for memory) will be returned.
3301 *
3302 * The current PCI bus might be put into one PE, which was
3303 * create against the parent PCI bridge. For that case, we
3304 * needn't enlarge the alignment so that we can save some
3305 * resources.
3306 */
3307static resource_size_t pnv_pci_window_alignment(struct pci_bus *bus,
3308 unsigned long type)
3309{
3310 struct pci_dev *bridge;
3311 struct pci_controller *hose = pci_bus_to_host(bus);
3312 struct pnv_phb *phb = hose->private_data;
3313 int num_pci_bridges = 0;
3314
3315 bridge = bus->self;
3316 while (bridge) {
3317 if (pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE) {
3318 num_pci_bridges++;
3319 if (num_pci_bridges >= 2)
3320 return 1;
3321 }
3322
3323 bridge = bridge->bus->self;
3324 }
3325
Benjamin Herrenschmidt5958d192016-07-08 15:55:43 +10003326 /*
3327 * We fall back to M32 if M64 isn't supported. We enforce the M64
3328 * alignment for any 64-bit resource, PCIe doesn't care and
3329 * bridges only do 64-bit prefetchable anyway.
3330 */
Russell Curreyb79331a2016-09-14 16:37:17 +10003331 if (phb->ioda.m64_segsize && pnv_pci_is_m64_flags(type))
Guo Chao262af552014-07-21 14:42:30 +10003332 return phb->ioda.m64_segsize;
Gavin Shan271fd032012-09-11 16:59:47 -06003333 if (type & IORESOURCE_MEM)
3334 return phb->ioda.m32_segsize;
3335
3336 return phb->ioda.io_segsize;
3337}
3338
Gavin Shan40e2a472016-05-20 16:41:33 +10003339/*
3340 * We are updating root port or the upstream port of the
3341 * bridge behind the root port with PHB's windows in order
3342 * to accommodate the changes on required resources during
3343 * PCI (slot) hotplug, which is connected to either root
3344 * port or the downstream ports of PCIe switch behind the
3345 * root port.
3346 */
3347static void pnv_pci_fixup_bridge_resources(struct pci_bus *bus,
3348 unsigned long type)
3349{
3350 struct pci_controller *hose = pci_bus_to_host(bus);
3351 struct pnv_phb *phb = hose->private_data;
3352 struct pci_dev *bridge = bus->self;
3353 struct resource *r, *w;
3354 bool msi_region = false;
3355 int i;
3356
3357 /* Check if we need apply fixup to the bridge's windows */
3358 if (!pci_is_root_bus(bridge->bus) &&
3359 !pci_is_root_bus(bridge->bus->self->bus))
3360 return;
3361
3362 /* Fixup the resources */
3363 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++) {
3364 r = &bridge->resource[PCI_BRIDGE_RESOURCES + i];
3365 if (!r->flags || !r->parent)
3366 continue;
3367
3368 w = NULL;
3369 if (r->flags & type & IORESOURCE_IO)
3370 w = &hose->io_resource;
Benjamin Herrenschmidt5958d192016-07-08 15:55:43 +10003371 else if (pnv_pci_is_m64(phb, r) &&
Gavin Shan40e2a472016-05-20 16:41:33 +10003372 (type & IORESOURCE_PREFETCH) &&
3373 phb->ioda.m64_segsize)
3374 w = &hose->mem_resources[1];
3375 else if (r->flags & type & IORESOURCE_MEM) {
3376 w = &hose->mem_resources[0];
3377 msi_region = true;
3378 }
3379
3380 r->start = w->start;
3381 r->end = w->end;
3382
3383 /* The 64KB 32-bits MSI region shouldn't be included in
3384 * the 32-bits bridge window. Otherwise, we can see strange
3385 * issues. One of them is EEH error observed on Garrison.
3386 *
3387 * Exclude top 1MB region which is the minimal alignment of
3388 * 32-bits bridge window.
3389 */
3390 if (msi_region) {
3391 r->end += 0x10000;
3392 r->end -= 0x100000;
3393 }
3394 }
3395}
3396
Gavin Shanccd1c192016-05-20 16:41:31 +10003397static void pnv_pci_setup_bridge(struct pci_bus *bus, unsigned long type)
3398{
3399 struct pci_controller *hose = pci_bus_to_host(bus);
3400 struct pnv_phb *phb = hose->private_data;
3401 struct pci_dev *bridge = bus->self;
3402 struct pnv_ioda_pe *pe;
3403 bool all = (pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE);
3404
Gavin Shan40e2a472016-05-20 16:41:33 +10003405 /* Extend bridge's windows if necessary */
3406 pnv_pci_fixup_bridge_resources(bus, type);
3407
Gavin Shan63803c32016-05-20 16:41:32 +10003408 /* The PE for root bus should be realized before any one else */
3409 if (!phb->ioda.root_pe_populated) {
3410 pe = pnv_ioda_setup_bus_PE(phb->hose->bus, false);
3411 if (pe) {
3412 phb->ioda.root_pe_idx = pe->pe_number;
3413 phb->ioda.root_pe_populated = true;
3414 }
3415 }
3416
Gavin Shanccd1c192016-05-20 16:41:31 +10003417 /* Don't assign PE to PCI bus, which doesn't have subordinate devices */
3418 if (list_empty(&bus->devices))
3419 return;
3420
3421 /* Reserve PEs according to used M64 resources */
3422 if (phb->reserve_m64_pe)
3423 phb->reserve_m64_pe(bus, NULL, all);
3424
3425 /*
3426 * Assign PE. We might run here because of partial hotplug.
3427 * For the case, we just pick up the existing PE and should
3428 * not allocate resources again.
3429 */
3430 pe = pnv_ioda_setup_bus_PE(bus, all);
3431 if (!pe)
3432 return;
3433
3434 pnv_ioda_setup_pe_seg(pe);
3435 switch (phb->type) {
3436 case PNV_PHB_IODA1:
3437 pnv_pci_ioda1_setup_dma_pe(phb, pe);
3438 break;
3439 case PNV_PHB_IODA2:
3440 pnv_pci_ioda2_setup_dma_pe(phb, pe);
3441 break;
3442 default:
Russell Currey1f52f172016-11-16 14:02:15 +11003443 pr_warn("%s: No DMA for PHB#%x (type %d)\n",
Gavin Shanccd1c192016-05-20 16:41:31 +10003444 __func__, phb->hose->global_number, phb->type);
3445 }
3446}
3447
Yongji Xie38274632017-04-10 19:58:13 +08003448static resource_size_t pnv_pci_default_alignment(void)
3449{
3450 return PAGE_SIZE;
3451}
3452
Wei Yang5350ab32015-03-25 16:23:56 +08003453#ifdef CONFIG_PCI_IOV
3454static resource_size_t pnv_pci_iov_resource_alignment(struct pci_dev *pdev,
3455 int resno)
3456{
Wei Yangee8222f2015-10-22 09:22:16 +08003457 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
3458 struct pnv_phb *phb = hose->private_data;
Wei Yang5350ab32015-03-25 16:23:56 +08003459 struct pci_dn *pdn = pci_get_pdn(pdev);
Wei Yang7fbe7a92015-10-22 09:22:15 +08003460 resource_size_t align;
Wei Yang5350ab32015-03-25 16:23:56 +08003461
Wei Yang7fbe7a92015-10-22 09:22:15 +08003462 /*
3463 * On PowerNV platform, IOV BAR is mapped by M64 BAR to enable the
3464 * SR-IOV. While from hardware perspective, the range mapped by M64
3465 * BAR should be size aligned.
3466 *
Wei Yangee8222f2015-10-22 09:22:16 +08003467 * When IOV BAR is mapped with M64 BAR in Single PE mode, the extra
3468 * powernv-specific hardware restriction is gone. But if just use the
3469 * VF BAR size as the alignment, PF BAR / VF BAR may be allocated with
3470 * in one segment of M64 #15, which introduces the PE conflict between
3471 * PF and VF. Based on this, the minimum alignment of an IOV BAR is
3472 * m64_segsize.
3473 *
Wei Yang7fbe7a92015-10-22 09:22:15 +08003474 * This function returns the total IOV BAR size if M64 BAR is in
3475 * Shared PE mode or just VF BAR size if not.
Wei Yangee8222f2015-10-22 09:22:16 +08003476 * If the M64 BAR is in Single PE mode, return the VF BAR size or
3477 * M64 segment size if IOV BAR size is less.
Wei Yang7fbe7a92015-10-22 09:22:15 +08003478 */
Wei Yang5350ab32015-03-25 16:23:56 +08003479 align = pci_iov_resource_size(pdev, resno);
Wei Yang7fbe7a92015-10-22 09:22:15 +08003480 if (!pdn->vfs_expanded)
3481 return align;
Wei Yangee8222f2015-10-22 09:22:16 +08003482 if (pdn->m64_single_mode)
3483 return max(align, (resource_size_t)phb->ioda.m64_segsize);
Wei Yang5350ab32015-03-25 16:23:56 +08003484
Wei Yang7fbe7a92015-10-22 09:22:15 +08003485 return pdn->vfs_expanded * align;
Wei Yang5350ab32015-03-25 16:23:56 +08003486}
3487#endif /* CONFIG_PCI_IOV */
3488
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003489/* Prevent enabling devices for which we couldn't properly
3490 * assign a PE
3491 */
Alastair D'Silva8bf6b912018-06-28 12:05:06 +02003492static bool pnv_pci_enable_device_hook(struct pci_dev *dev)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003493{
Gavin Shandb1266c2012-08-20 03:49:18 +00003494 struct pci_controller *hose = pci_bus_to_host(dev->bus);
3495 struct pnv_phb *phb = hose->private_data;
3496 struct pci_dn *pdn;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003497
Gavin Shandb1266c2012-08-20 03:49:18 +00003498 /* The function is probably called while the PEs have
3499 * not be created yet. For example, resource reassignment
3500 * during PCI probe period. We just skip the check if
3501 * PEs isn't ready.
3502 */
3503 if (!phb->initialized)
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003504 return true;
Gavin Shandb1266c2012-08-20 03:49:18 +00003505
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +00003506 pdn = pci_get_pdn(dev);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003507 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003508 return false;
Gavin Shandb1266c2012-08-20 03:49:18 +00003509
Daniel Axtensc88c2a12015-03-31 16:00:41 +11003510 return true;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003511}
3512
Gavin Shanc5f77002016-05-20 16:41:35 +10003513static long pnv_pci_ioda1_unset_window(struct iommu_table_group *table_group,
3514 int num)
3515{
3516 struct pnv_ioda_pe *pe = container_of(table_group,
3517 struct pnv_ioda_pe, table_group);
3518 struct pnv_phb *phb = pe->phb;
3519 unsigned int idx;
3520 long rc;
3521
3522 pe_info(pe, "Removing DMA window #%d\n", num);
3523 for (idx = 0; idx < phb->ioda.dma32_count; idx++) {
3524 if (phb->ioda.dma32_segmap[idx] != pe->pe_number)
3525 continue;
3526
3527 rc = opal_pci_map_pe_dma_window(phb->opal_id, pe->pe_number,
3528 idx, 0, 0ul, 0ul, 0ul);
3529 if (rc != OPAL_SUCCESS) {
3530 pe_warn(pe, "Failure %ld unmapping DMA32 segment#%d\n",
3531 rc, idx);
3532 return rc;
3533 }
3534
3535 phb->ioda.dma32_segmap[idx] = IODA_INVALID_PE;
3536 }
3537
3538 pnv_pci_unlink_table_and_group(table_group->tables[num], table_group);
3539 return OPAL_SUCCESS;
3540}
3541
3542static void pnv_pci_ioda1_release_pe_dma(struct pnv_ioda_pe *pe)
3543{
3544 unsigned int weight = pnv_pci_ioda_pe_dma_weight(pe);
3545 struct iommu_table *tbl = pe->table_group.tables[0];
3546 int64_t rc;
3547
3548 if (!weight)
3549 return;
3550
3551 rc = pnv_pci_ioda1_unset_window(&pe->table_group, 0);
3552 if (rc != OPAL_SUCCESS)
3553 return;
3554
Benjamin Herrenschmidta34ab7c2016-07-08 16:37:12 +10003555 pnv_pci_p7ioc_tce_invalidate(tbl, tbl->it_offset, tbl->it_size, false);
Gavin Shanc5f77002016-05-20 16:41:35 +10003556 if (pe->table_group.group) {
3557 iommu_group_put(pe->table_group.group);
3558 WARN_ON(pe->table_group.group);
3559 }
3560
3561 free_pages(tbl->it_base, get_order(tbl->it_size << 3));
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +11003562 iommu_tce_table_put(tbl);
Gavin Shanc5f77002016-05-20 16:41:35 +10003563}
3564
3565static void pnv_pci_ioda2_release_pe_dma(struct pnv_ioda_pe *pe)
3566{
3567 struct iommu_table *tbl = pe->table_group.tables[0];
3568 unsigned int weight = pnv_pci_ioda_pe_dma_weight(pe);
3569#ifdef CONFIG_IOMMU_API
3570 int64_t rc;
3571#endif
3572
3573 if (!weight)
3574 return;
3575
3576#ifdef CONFIG_IOMMU_API
3577 rc = pnv_pci_ioda2_unset_window(&pe->table_group, 0);
3578 if (rc)
3579 pe_warn(pe, "OPAL error %ld release DMA window\n", rc);
3580#endif
3581
3582 pnv_pci_ioda2_set_bypass(pe, false);
3583 if (pe->table_group.group) {
3584 iommu_group_put(pe->table_group.group);
3585 WARN_ON(pe->table_group.group);
3586 }
3587
Alexey Kardashevskiye5afdf92017-03-22 15:21:50 +11003588 iommu_tce_table_put(tbl);
Gavin Shanc5f77002016-05-20 16:41:35 +10003589}
3590
3591static void pnv_ioda_free_pe_seg(struct pnv_ioda_pe *pe,
3592 unsigned short win,
3593 unsigned int *map)
3594{
3595 struct pnv_phb *phb = pe->phb;
3596 int idx;
3597 int64_t rc;
3598
3599 for (idx = 0; idx < phb->ioda.total_pe_num; idx++) {
3600 if (map[idx] != pe->pe_number)
3601 continue;
3602
3603 if (win == OPAL_M64_WINDOW_TYPE)
3604 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
3605 phb->ioda.reserved_pe_idx, win,
3606 idx / PNV_IODA1_M64_SEGS,
3607 idx % PNV_IODA1_M64_SEGS);
3608 else
3609 rc = opal_pci_map_pe_mmio_window(phb->opal_id,
3610 phb->ioda.reserved_pe_idx, win, 0, idx);
3611
3612 if (rc != OPAL_SUCCESS)
3613 pe_warn(pe, "Error %ld unmapping (%d) segment#%d\n",
3614 rc, win, idx);
3615
3616 map[idx] = IODA_INVALID_PE;
3617 }
3618}
3619
3620static void pnv_ioda_release_pe_seg(struct pnv_ioda_pe *pe)
3621{
3622 struct pnv_phb *phb = pe->phb;
3623
3624 if (phb->type == PNV_PHB_IODA1) {
3625 pnv_ioda_free_pe_seg(pe, OPAL_IO_WINDOW_TYPE,
3626 phb->ioda.io_segmap);
3627 pnv_ioda_free_pe_seg(pe, OPAL_M32_WINDOW_TYPE,
3628 phb->ioda.m32_segmap);
3629 pnv_ioda_free_pe_seg(pe, OPAL_M64_WINDOW_TYPE,
3630 phb->ioda.m64_segmap);
3631 } else if (phb->type == PNV_PHB_IODA2) {
3632 pnv_ioda_free_pe_seg(pe, OPAL_M32_WINDOW_TYPE,
3633 phb->ioda.m32_segmap);
3634 }
3635}
3636
3637static void pnv_ioda_release_pe(struct pnv_ioda_pe *pe)
3638{
3639 struct pnv_phb *phb = pe->phb;
3640 struct pnv_ioda_pe *slave, *tmp;
3641
Gavin Shanc5f77002016-05-20 16:41:35 +10003642 list_del(&pe->list);
3643 switch (phb->type) {
3644 case PNV_PHB_IODA1:
3645 pnv_pci_ioda1_release_pe_dma(pe);
3646 break;
3647 case PNV_PHB_IODA2:
3648 pnv_pci_ioda2_release_pe_dma(pe);
3649 break;
3650 default:
3651 WARN_ON(1);
3652 }
3653
3654 pnv_ioda_release_pe_seg(pe);
3655 pnv_ioda_deconfigure_pe(pe->phb, pe);
Gavin Shanb3144272016-09-06 14:16:44 +10003656
3657 /* Release slave PEs in the compound PE */
3658 if (pe->flags & PNV_IODA_PE_MASTER) {
3659 list_for_each_entry_safe(slave, tmp, &pe->slaves, list) {
3660 list_del(&slave->list);
3661 pnv_ioda_free_pe(slave);
3662 }
3663 }
3664
Gavin Shan6eaed162016-09-13 16:40:24 +10003665 /*
3666 * The PE for root bus can be removed because of hotplug in EEH
3667 * recovery for fenced PHB error. We need to mark the PE dead so
3668 * that it can be populated again in PCI hot add path. The PE
3669 * shouldn't be destroyed as it's the global reserved resource.
3670 */
3671 if (phb->ioda.root_pe_populated &&
3672 phb->ioda.root_pe_idx == pe->pe_number)
3673 phb->ioda.root_pe_populated = false;
3674 else
3675 pnv_ioda_free_pe(pe);
Gavin Shanc5f77002016-05-20 16:41:35 +10003676}
3677
3678static void pnv_pci_release_device(struct pci_dev *pdev)
3679{
3680 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
3681 struct pnv_phb *phb = hose->private_data;
3682 struct pci_dn *pdn = pci_get_pdn(pdev);
3683 struct pnv_ioda_pe *pe;
3684
3685 if (pdev->is_virtfn)
3686 return;
3687
3688 if (!pdn || pdn->pe_number == IODA_INVALID_PE)
3689 return;
3690
Gavin Shan29bf2822016-09-06 16:34:01 +10003691 /*
3692 * PCI hotplug can happen as part of EEH error recovery. The @pdn
3693 * isn't removed and added afterwards in this scenario. We should
3694 * set the PE number in @pdn to an invalid one. Otherwise, the PE's
3695 * device count is decreased on removing devices while failing to
3696 * be increased on adding devices. It leads to unbalanced PE's device
3697 * count and eventually make normal PCI hotplug path broken.
3698 */
Gavin Shanc5f77002016-05-20 16:41:35 +10003699 pe = &phb->ioda.pe_array[pdn->pe_number];
Gavin Shan29bf2822016-09-06 16:34:01 +10003700 pdn->pe_number = IODA_INVALID_PE;
3701
Gavin Shanc5f77002016-05-20 16:41:35 +10003702 WARN_ON(--pe->device_count < 0);
3703 if (pe->device_count == 0)
3704 pnv_ioda_release_pe(pe);
3705}
3706
Michael Neuling7a8e6bb2015-05-27 16:06:59 +10003707static void pnv_pci_ioda_shutdown(struct pci_controller *hose)
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +10003708{
Michael Neuling7a8e6bb2015-05-27 16:06:59 +10003709 struct pnv_phb *phb = hose->private_data;
3710
Gavin Shand1a85ee2014-09-30 12:39:05 +10003711 opal_pci_reset(phb->opal_id, OPAL_RESET_PCI_IODA_TABLE,
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +10003712 OPAL_ASSERT_RESET);
3713}
3714
Daniel Axtens92ae0352015-04-28 15:12:05 +10003715static const struct pci_controller_ops pnv_pci_ioda_controller_ops = {
Gavin Shancb4224c2016-05-03 15:41:21 +10003716 .dma_dev_setup = pnv_pci_dma_dev_setup,
3717 .dma_bus_setup = pnv_pci_dma_bus_setup,
Daniel Axtens92ae0352015-04-28 15:12:05 +10003718#ifdef CONFIG_PCI_MSI
Gavin Shancb4224c2016-05-03 15:41:21 +10003719 .setup_msi_irqs = pnv_setup_msi_irqs,
3720 .teardown_msi_irqs = pnv_teardown_msi_irqs,
Daniel Axtens92ae0352015-04-28 15:12:05 +10003721#endif
Gavin Shancb4224c2016-05-03 15:41:21 +10003722 .enable_device_hook = pnv_pci_enable_device_hook,
Gavin Shanc5f77002016-05-20 16:41:35 +10003723 .release_device = pnv_pci_release_device,
Gavin Shancb4224c2016-05-03 15:41:21 +10003724 .window_alignment = pnv_pci_window_alignment,
Gavin Shanccd1c192016-05-20 16:41:31 +10003725 .setup_bridge = pnv_pci_setup_bridge,
Gavin Shancb4224c2016-05-03 15:41:21 +10003726 .reset_secondary_bus = pnv_pci_reset_secondary_bus,
3727 .dma_set_mask = pnv_pci_ioda_dma_set_mask,
3728 .dma_get_required_mask = pnv_pci_ioda_dma_get_required_mask,
3729 .shutdown = pnv_pci_ioda_shutdown,
Daniel Axtens92ae0352015-04-28 15:12:05 +10003730};
3731
Alexey Kardashevskiyf9f83452016-04-29 18:55:20 +10003732static int pnv_npu_dma_set_mask(struct pci_dev *npdev, u64 dma_mask)
3733{
3734 dev_err_once(&npdev->dev,
3735 "%s operation unsupported for NVLink devices\n",
3736 __func__);
3737 return -EPERM;
3738}
3739
Alistair Popple5d2aa712015-12-17 13:43:13 +11003740static const struct pci_controller_ops pnv_npu_ioda_controller_ops = {
Gavin Shancb4224c2016-05-03 15:41:21 +10003741 .dma_dev_setup = pnv_pci_dma_dev_setup,
Alistair Popple5d2aa712015-12-17 13:43:13 +11003742#ifdef CONFIG_PCI_MSI
Gavin Shancb4224c2016-05-03 15:41:21 +10003743 .setup_msi_irqs = pnv_setup_msi_irqs,
3744 .teardown_msi_irqs = pnv_teardown_msi_irqs,
Alistair Popple5d2aa712015-12-17 13:43:13 +11003745#endif
Gavin Shancb4224c2016-05-03 15:41:21 +10003746 .enable_device_hook = pnv_pci_enable_device_hook,
3747 .window_alignment = pnv_pci_window_alignment,
3748 .reset_secondary_bus = pnv_pci_reset_secondary_bus,
3749 .dma_set_mask = pnv_npu_dma_set_mask,
3750 .shutdown = pnv_pci_ioda_shutdown,
Alistair Popple5d2aa712015-12-17 13:43:13 +11003751};
3752
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01003753static const struct pci_controller_ops pnv_npu_ocapi_ioda_controller_ops = {
3754 .enable_device_hook = pnv_pci_enable_device_hook,
3755 .window_alignment = pnv_pci_window_alignment,
3756 .reset_secondary_bus = pnv_pci_reset_secondary_bus,
3757 .shutdown = pnv_pci_ioda_shutdown,
3758};
3759
Anton Blancharde51df2c2014-08-20 08:55:18 +10003760static void __init pnv_pci_init_ioda_phb(struct device_node *np,
3761 u64 hub_id, int ioda_type)
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003762{
3763 struct pci_controller *hose;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003764 struct pnv_phb *phb;
Gavin Shan2b923ed2016-05-05 12:04:16 +10003765 unsigned long size, m64map_off, m32map_off, pemap_off;
3766 unsigned long iomap_off = 0, dma32map_off = 0;
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10003767 struct resource r;
Alistair Popplec681b932013-09-23 12:04:57 +10003768 const __be64 *prop64;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10003769 const __be32 *prop32;
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003770 int len;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003771 unsigned int segno;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003772 u64 phb_id;
3773 void *aux;
3774 long rc;
3775
Benjamin Herrenschmidt08a45b32016-07-08 16:37:17 +10003776 if (!of_device_is_available(np))
3777 return;
3778
Rob Herringb7c670d2017-08-21 10:16:47 -05003779 pr_info("Initializing %s PHB (%pOF)\n", pnv_phb_names[ioda_type], np);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003780
3781 prop64 = of_get_property(np, "ibm,opal-phbid", NULL);
3782 if (!prop64) {
3783 pr_err(" Missing \"ibm,opal-phbid\" property !\n");
3784 return;
3785 }
3786 phb_id = be64_to_cpup(prop64);
3787 pr_debug(" PHB-ID : 0x%016llx\n", phb_id);
3788
Markus Elfringa0828cf2017-01-19 17:15:30 +01003789 phb = memblock_virt_alloc(sizeof(*phb), 0);
Gavin Shan58d714e2013-07-31 16:47:00 +08003790
3791 /* Allocate PCI controller */
Gavin Shan58d714e2013-07-31 16:47:00 +08003792 phb->hose = hose = pcibios_alloc_controller(np);
3793 if (!phb->hose) {
Rob Herringb7c670d2017-08-21 10:16:47 -05003794 pr_err(" Can't allocate PCI controller for %pOF\n",
3795 np);
Michael Ellermane39f223f2014-11-18 16:47:35 +11003796 memblock_free(__pa(phb), sizeof(struct pnv_phb));
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003797 return;
3798 }
3799
3800 spin_lock_init(&phb->lock);
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003801 prop32 = of_get_property(np, "bus-range", &len);
3802 if (prop32 && len == 8) {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +10003803 hose->first_busno = be32_to_cpu(prop32[0]);
3804 hose->last_busno = be32_to_cpu(prop32[1]);
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003805 } else {
Rob Herringb7c670d2017-08-21 10:16:47 -05003806 pr_warn(" Broken <bus-range> on %pOF\n", np);
Gavin Shanf1b7cc32013-07-31 16:47:01 +08003807 hose->first_busno = 0;
3808 hose->last_busno = 0xff;
3809 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003810 hose->private_data = phb;
Gavin Shane9cc17d2013-06-20 13:21:14 +08003811 phb->hub_id = hub_id;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003812 phb->opal_id = phb_id;
Gavin Shanaa0c0332013-04-25 19:20:57 +00003813 phb->type = ioda_type;
Wei Yang781a8682015-03-25 16:23:57 +08003814 mutex_init(&phb->ioda.pe_alloc_mutex);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003815
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +00003816 /* Detect specific models for error handling */
3817 if (of_device_is_compatible(np, "ibm,p7ioc-pciex"))
3818 phb->model = PNV_PHB_MODEL_P7IOC;
Benjamin Herrenschmidtf3d40c22013-05-04 14:24:32 +00003819 else if (of_device_is_compatible(np, "ibm,power8-pciex"))
Gavin Shanaa0c0332013-04-25 19:20:57 +00003820 phb->model = PNV_PHB_MODEL_PHB3;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003821 else if (of_device_is_compatible(np, "ibm,power8-npu-pciex"))
3822 phb->model = PNV_PHB_MODEL_NPU;
Alistair Popple616badd2017-01-10 15:41:44 +11003823 else if (of_device_is_compatible(np, "ibm,power9-npu-pciex"))
3824 phb->model = PNV_PHB_MODEL_NPU2;
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +00003825 else
3826 phb->model = PNV_PHB_MODEL_UNKNOWN;
3827
Russell Currey5cb1f8f2017-06-14 14:19:59 +10003828 /* Initialize diagnostic data buffer */
3829 prop32 = of_get_property(np, "ibm,phb-diag-data-size", NULL);
3830 if (prop32)
3831 phb->diag_data_size = be32_to_cpup(prop32);
3832 else
3833 phb->diag_data_size = PNV_PCI_DIAG_BUF_SIZE;
3834
3835 phb->diag_data = memblock_virt_alloc(phb->diag_data_size, 0);
3836
Gavin Shanaa0c0332013-04-25 19:20:57 +00003837 /* Parse 32-bit and IO ranges (if any) */
Gavin Shan2f1ec022013-07-31 16:47:02 +08003838 pci_process_bridge_OF_ranges(hose, np, !hose->global_number);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003839
Gavin Shanaa0c0332013-04-25 19:20:57 +00003840 /* Get registers */
Benjamin Herrenschmidtfd141d1a2016-07-08 16:37:14 +10003841 if (!of_address_to_resource(np, 0, &r)) {
3842 phb->regs_phys = r.start;
3843 phb->regs = ioremap(r.start, resource_size(&r));
3844 if (phb->regs == NULL)
3845 pr_err(" Failed to map registers !\n");
3846 }
Gavin Shan577c8c82016-05-20 16:41:28 +10003847
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003848 /* Initialize more IODA stuff */
Gavin Shan92b8f132016-05-03 15:41:24 +10003849 phb->ioda.total_pe_num = 1;
Gavin Shanaa0c0332013-04-25 19:20:57 +00003850 prop32 = of_get_property(np, "ibm,opal-num-pes", NULL);
Gavin Shan36954dc2013-11-04 16:32:47 +08003851 if (prop32)
Gavin Shan92b8f132016-05-03 15:41:24 +10003852 phb->ioda.total_pe_num = be32_to_cpup(prop32);
Gavin Shan36954dc2013-11-04 16:32:47 +08003853 prop32 = of_get_property(np, "ibm,opal-reserved-pe", NULL);
3854 if (prop32)
Gavin Shan92b8f132016-05-03 15:41:24 +10003855 phb->ioda.reserved_pe_idx = be32_to_cpup(prop32);
Guo Chao262af552014-07-21 14:42:30 +10003856
Gavin Shanc1275622016-05-20 16:41:29 +10003857 /* Invalidate RID to PE# mapping */
3858 for (segno = 0; segno < ARRAY_SIZE(phb->ioda.pe_rmap); segno++)
3859 phb->ioda.pe_rmap[segno] = IODA_INVALID_PE;
3860
Guo Chao262af552014-07-21 14:42:30 +10003861 /* Parse 64-bit MMIO range */
3862 pnv_ioda_parse_m64_window(phb);
3863
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003864 phb->ioda.m32_size = resource_size(&hose->mem_resources[0]);
Gavin Shanaa0c0332013-04-25 19:20:57 +00003865 /* FW Has already off top 64k of M32 space (MSI space) */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003866 phb->ioda.m32_size += 0x10000;
3867
Gavin Shan92b8f132016-05-03 15:41:24 +10003868 phb->ioda.m32_segsize = phb->ioda.m32_size / phb->ioda.total_pe_num;
Benjamin Herrenschmidt3fd47f02013-05-06 13:40:40 +10003869 phb->ioda.m32_pci_base = hose->mem_resources[0].start - hose->mem_offset[0];
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003870 phb->ioda.io_size = hose->pci_io_size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003871 phb->ioda.io_segsize = phb->ioda.io_size / phb->ioda.total_pe_num;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003872 phb->ioda.io_pci_base = 0; /* XXX calculate this ? */
3873
Gavin Shan2b923ed2016-05-05 12:04:16 +10003874 /* Calculate how many 32-bit TCE segments we have */
3875 phb->ioda.dma32_count = phb->ioda.m32_pci_base /
3876 PNV_IODA1_DMA32_SEGSIZE;
3877
Gavin Shanc35d2a82013-07-31 16:47:04 +08003878 /* Allocate aux data & arrays. We don't have IO ports on PHB3 */
Alexey Kardashevskiy92a86752016-05-12 15:47:09 +10003879 size = _ALIGN_UP(max_t(unsigned, phb->ioda.total_pe_num, 8) / 8,
3880 sizeof(unsigned long));
Gavin Shan93289d82016-05-03 15:41:29 +10003881 m64map_off = size;
3882 size += phb->ioda.total_pe_num * sizeof(phb->ioda.m64_segmap[0]);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003883 m32map_off = size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003884 size += phb->ioda.total_pe_num * sizeof(phb->ioda.m32_segmap[0]);
Gavin Shanc35d2a82013-07-31 16:47:04 +08003885 if (phb->type == PNV_PHB_IODA1) {
3886 iomap_off = size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003887 size += phb->ioda.total_pe_num * sizeof(phb->ioda.io_segmap[0]);
Gavin Shan2b923ed2016-05-05 12:04:16 +10003888 dma32map_off = size;
3889 size += phb->ioda.dma32_count *
3890 sizeof(phb->ioda.dma32_segmap[0]);
Gavin Shanc35d2a82013-07-31 16:47:04 +08003891 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003892 pemap_off = size;
Gavin Shan92b8f132016-05-03 15:41:24 +10003893 size += phb->ioda.total_pe_num * sizeof(struct pnv_ioda_pe);
Michael Ellermane39f223f2014-11-18 16:47:35 +11003894 aux = memblock_virt_alloc(size, 0);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003895 phb->ioda.pe_alloc = aux;
Gavin Shan93289d82016-05-03 15:41:29 +10003896 phb->ioda.m64_segmap = aux + m64map_off;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003897 phb->ioda.m32_segmap = aux + m32map_off;
Gavin Shan93289d82016-05-03 15:41:29 +10003898 for (segno = 0; segno < phb->ioda.total_pe_num; segno++) {
3899 phb->ioda.m64_segmap[segno] = IODA_INVALID_PE;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003900 phb->ioda.m32_segmap[segno] = IODA_INVALID_PE;
Gavin Shan93289d82016-05-03 15:41:29 +10003901 }
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003902 if (phb->type == PNV_PHB_IODA1) {
Gavin Shanc35d2a82013-07-31 16:47:04 +08003903 phb->ioda.io_segmap = aux + iomap_off;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003904 for (segno = 0; segno < phb->ioda.total_pe_num; segno++)
3905 phb->ioda.io_segmap[segno] = IODA_INVALID_PE;
Gavin Shan2b923ed2016-05-05 12:04:16 +10003906
3907 phb->ioda.dma32_segmap = aux + dma32map_off;
3908 for (segno = 0; segno < phb->ioda.dma32_count; segno++)
3909 phb->ioda.dma32_segmap[segno] = IODA_INVALID_PE;
Gavin Shan3fa23ff2016-05-03 15:41:26 +10003910 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003911 phb->ioda.pe_array = aux + pemap_off;
Gavin Shan63803c32016-05-20 16:41:32 +10003912
3913 /*
3914 * Choose PE number for root bus, which shouldn't have
3915 * M64 resources consumed by its child devices. To pick
3916 * the PE number adjacent to the reserved one if possible.
3917 */
3918 pnv_ioda_reserve_pe(phb, phb->ioda.reserved_pe_idx);
3919 if (phb->ioda.reserved_pe_idx == 0) {
3920 phb->ioda.root_pe_idx = 1;
3921 pnv_ioda_reserve_pe(phb, phb->ioda.root_pe_idx);
3922 } else if (phb->ioda.reserved_pe_idx == (phb->ioda.total_pe_num - 1)) {
3923 phb->ioda.root_pe_idx = phb->ioda.reserved_pe_idx - 1;
3924 pnv_ioda_reserve_pe(phb, phb->ioda.root_pe_idx);
3925 } else {
3926 phb->ioda.root_pe_idx = IODA_INVALID_PE;
3927 }
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003928
3929 INIT_LIST_HEAD(&phb->ioda.pe_list);
Wei Yang781a8682015-03-25 16:23:57 +08003930 mutex_init(&phb->ioda.pe_list_mutex);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003931
3932 /* Calculate how many 32-bit TCE segments we have */
Gavin Shan2b923ed2016-05-05 12:04:16 +10003933 phb->ioda.dma32_count = phb->ioda.m32_pci_base /
Gavin Shanacce9712016-05-03 15:41:33 +10003934 PNV_IODA1_DMA32_SEGSIZE;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003935
Gavin Shanaa0c0332013-04-25 19:20:57 +00003936#if 0 /* We should really do that ... */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003937 rc = opal_pci_set_phb_mem_window(opal->phb_id,
3938 window_type,
3939 window_num,
3940 starting_real_address,
3941 starting_pci_address,
3942 segment_size);
3943#endif
3944
Guo Chao262af552014-07-21 14:42:30 +10003945 pr_info(" %03d (%03d) PE's M32: 0x%x [segment=0x%x]\n",
Gavin Shan92b8f132016-05-03 15:41:24 +10003946 phb->ioda.total_pe_num, phb->ioda.reserved_pe_idx,
Guo Chao262af552014-07-21 14:42:30 +10003947 phb->ioda.m32_size, phb->ioda.m32_segsize);
3948 if (phb->ioda.m64_size)
3949 pr_info(" M64: 0x%lx [segment=0x%lx]\n",
3950 phb->ioda.m64_size, phb->ioda.m64_segsize);
3951 if (phb->ioda.io_size)
3952 pr_info(" IO: 0x%x [segment=0x%x]\n",
3953 phb->ioda.io_size, phb->ioda.io_segsize);
3954
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003955
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003956 phb->hose->ops = &pnv_pci_ops;
Gavin Shan49dec922014-07-21 14:42:33 +10003957 phb->get_pe_state = pnv_ioda_get_pe_state;
3958 phb->freeze_pe = pnv_ioda_freeze_pe;
3959 phb->unfreeze_pe = pnv_ioda_unfreeze_pe;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003960
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003961 /* Setup MSI support */
3962 pnv_pci_init_ioda_msis(phb);
3963
Gavin Shanc40a4212012-08-20 03:49:20 +00003964 /*
3965 * We pass the PCI probe flag PCI_REASSIGN_ALL_RSRC here
3966 * to let the PCI core do resource assignment. It's supposed
3967 * that the PCI core will do correct I/O and MMIO alignment
3968 * for the P2P bridge bars so that each PCI bus (excluding
3969 * the child P2P bridges) can form individual PE.
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003970 */
Gavin Shanfb446ad2012-08-20 03:49:14 +00003971 ppc_md.pcibios_fixup = pnv_pci_ioda_fixup;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003972
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01003973 switch (phb->type) {
3974 case PNV_PHB_NPU_NVLINK:
Alistair Popple5d2aa712015-12-17 13:43:13 +11003975 hose->controller_ops = pnv_npu_ioda_controller_ops;
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01003976 break;
3977 case PNV_PHB_NPU_OCAPI:
3978 hose->controller_ops = pnv_npu_ocapi_ioda_controller_ops;
3979 break;
3980 default:
Alexey Kardashevskiyf9f83452016-04-29 18:55:20 +10003981 phb->dma_dev_setup = pnv_pci_ioda_dma_dev_setup;
Alistair Popple5d2aa712015-12-17 13:43:13 +11003982 hose->controller_ops = pnv_pci_ioda_controller_ops;
Alexey Kardashevskiyf9f83452016-04-29 18:55:20 +10003983 }
Michael Ellermanad30cb92015-04-14 09:29:23 +10003984
Yongji Xie38274632017-04-10 19:58:13 +08003985 ppc_md.pcibios_default_alignment = pnv_pci_default_alignment;
3986
Wei Yang6e628c72015-03-25 16:23:55 +08003987#ifdef CONFIG_PCI_IOV
3988 ppc_md.pcibios_fixup_sriov = pnv_pci_ioda_fixup_iov_resources;
Wei Yang5350ab32015-03-25 16:23:56 +08003989 ppc_md.pcibios_iov_resource_alignment = pnv_pci_iov_resource_alignment;
Bryant G. Ly988fc3b2017-11-09 08:00:33 -06003990 ppc_md.pcibios_sriov_enable = pnv_pcibios_sriov_enable;
3991 ppc_md.pcibios_sriov_disable = pnv_pcibios_sriov_disable;
Michael Ellermanad30cb92015-04-14 09:29:23 +10003992#endif
3993
Gavin Shanc40a4212012-08-20 03:49:20 +00003994 pci_add_flags(PCI_REASSIGN_ALL_RSRC);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003995
3996 /* Reset IODA tables to a clean state */
Gavin Shand1a85ee2014-09-30 12:39:05 +10003997 rc = opal_pci_reset(phb_id, OPAL_RESET_PCI_IODA_TABLE, OPAL_ASSERT_RESET);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00003998 if (rc)
Joe Perchesf2c2cbc2016-10-24 21:00:08 -07003999 pr_warn(" OPAL Error %ld performing IODA table reset !\n", rc);
Gavin Shan361f2a22014-04-24 18:00:25 +10004000
Andrew Donnellan6060e9e2016-09-16 20:39:44 +10004001 /*
4002 * If we're running in kdump kernel, the previous kernel never
Gavin Shan361f2a22014-04-24 18:00:25 +10004003 * shutdown PCI devices correctly. We already got IODA table
4004 * cleaned out. So we have to issue PHB reset to stop all PCI
Guilherme G. Piccoli45baee12017-11-17 16:58:59 -02004005 * transactions from previous kernel. The ppc_pci_reset_phbs
4006 * kernel parameter will force this reset too.
Gavin Shan361f2a22014-04-24 18:00:25 +10004007 */
Guilherme G. Piccoli45baee12017-11-17 16:58:59 -02004008 if (is_kdump_kernel() || pci_reset_phbs) {
Gavin Shan361f2a22014-04-24 18:00:25 +10004009 pr_info(" Issue PHB reset ...\n");
Gavin Shancadf3642015-02-16 14:45:47 +11004010 pnv_eeh_phb_reset(hose, EEH_RESET_FUNDAMENTAL);
4011 pnv_eeh_phb_reset(hose, EEH_RESET_DEACTIVATE);
Gavin Shan361f2a22014-04-24 18:00:25 +10004012 }
Guo Chao262af552014-07-21 14:42:30 +10004013
Gavin Shan9e9e8932014-11-12 13:36:05 +11004014 /* Remove M64 resource if we can't configure it successfully */
4015 if (!phb->init_m64 || phb->init_m64(phb))
Guo Chao262af552014-07-21 14:42:30 +10004016 hose->mem_resources[1].flags = 0;
Gavin Shanaa0c0332013-04-25 19:20:57 +00004017}
4018
Bjorn Helgaas67975002013-07-02 12:20:03 -06004019void __init pnv_pci_init_ioda2_phb(struct device_node *np)
Gavin Shanaa0c0332013-04-25 19:20:57 +00004020{
Gavin Shane9cc17d2013-06-20 13:21:14 +08004021 pnv_pci_init_ioda_phb(np, 0, PNV_PHB_IODA2);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00004022}
4023
Alistair Popple5d2aa712015-12-17 13:43:13 +11004024void __init pnv_pci_init_npu_phb(struct device_node *np)
4025{
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01004026 pnv_pci_init_ioda_phb(np, 0, PNV_PHB_NPU_NVLINK);
Alistair Popple5d2aa712015-12-17 13:43:13 +11004027}
4028
Frederic Barrat7f2c39e2018-01-23 12:31:36 +01004029void __init pnv_pci_init_npu2_opencapi_phb(struct device_node *np)
4030{
4031 pnv_pci_init_ioda_phb(np, 0, PNV_PHB_NPU_OCAPI);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00004032}
4033
Andrew Donnellan228c2f42018-01-23 12:31:37 +01004034static void pnv_npu2_opencapi_cfg_size_fixup(struct pci_dev *dev)
4035{
4036 struct pci_controller *hose = pci_bus_to_host(dev->bus);
4037 struct pnv_phb *phb = hose->private_data;
4038
4039 if (!machine_is(powernv))
4040 return;
4041
4042 if (phb->type == PNV_PHB_NPU_OCAPI)
4043 dev->cfg_size = PCI_CFG_SPACE_EXP_SIZE;
4044}
4045DECLARE_PCI_FIXUP_EARLY(PCI_ANY_ID, PCI_ANY_ID, pnv_npu2_opencapi_cfg_size_fixup);
4046
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00004047void __init pnv_pci_init_ioda_hub(struct device_node *np)
4048{
4049 struct device_node *phbn;
4050 const __be64 *prop64;
4051 u64 hub_id;
4052
Rob Herringb7c670d2017-08-21 10:16:47 -05004053 pr_info("Probing IODA IO-Hub %pOF\n", np);
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +00004054
4055 prop64 = of_get_property(np, "ibm,opal-hubid", NULL);
4056 if (!prop64) {
4057 pr_err(" Missing \"ibm,opal-hubid\" property !\n");
4058 return;
4059 }
4060 hub_id = be64_to_cpup(prop64);
4061 pr_devel(" HUB-ID : 0x%016llx\n", hub_id);
4062
4063 /* Count child PHBs */
4064 for_each_child_of_node(np, phbn) {
4065 /* Look for IODA1 PHBs */
4066 if (of_device_is_compatible(phbn, "ibm,ioda-phb"))
4067 pnv_pci_init_ioda_phb(phbn, hub_id, PNV_PHB_IODA1);
4068 }
4069}