blob: 4eb33a9ed5325a3e84b2a7f1d4d58d5dc7fa7b22 [file] [log] [blame]
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +00001/*
2 * Support PCI/PCIe on PowerNV platforms
3 *
4 * Currently supports only P5IOC2
5 *
6 * Copyright 2011 Benjamin Herrenschmidt, IBM Corp.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14#include <linux/kernel.h>
15#include <linux/pci.h>
16#include <linux/delay.h>
17#include <linux/string.h>
18#include <linux/init.h>
19#include <linux/bootmem.h>
20#include <linux/irq.h>
21#include <linux/io.h>
Benjamin Herrenschmidtc1a25622011-09-19 17:45:06 +000022#include <linux/msi.h>
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +100023#include <linux/iommu.h>
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +000024
25#include <asm/sections.h>
26#include <asm/io.h>
27#include <asm/prom.h>
28#include <asm/pci-bridge.h>
29#include <asm/machdep.h>
Gavin Shanfb1b55d2013-03-05 21:12:37 +000030#include <asm/msi_bitmap.h>
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +000031#include <asm/ppc-pci.h>
32#include <asm/opal.h>
33#include <asm/iommu.h>
34#include <asm/tce.h>
Stephen Rothwellf5339272012-03-15 18:18:00 +000035#include <asm/firmware.h>
Gavin Shanbe7e7442013-06-20 13:21:15 +080036#include <asm/eeh_event.h>
37#include <asm/eeh.h>
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +000038
39#include "powernv.h"
40#include "pci.h"
41
Benjamin Herrenschmidt82ba1292011-09-19 17:45:07 +000042/* Delay in usec */
43#define PCI_RESET_DELAY_US 3000000
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +000044
45#define cfg_dbg(fmt...) do { } while(0)
46//#define cfg_dbg(fmt...) printk(fmt)
47
Benjamin Herrenschmidtc1a25622011-09-19 17:45:06 +000048#ifdef CONFIG_PCI_MSI
49static int pnv_msi_check_device(struct pci_dev* pdev, int nvec, int type)
50{
51 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
52 struct pnv_phb *phb = hose->private_data;
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +000053 struct pci_dn *pdn = pci_get_pdn(pdev);
54
55 if (pdn && pdn->force_32bit_msi && !phb->msi32_support)
56 return -ENODEV;
Benjamin Herrenschmidtc1a25622011-09-19 17:45:06 +000057
Gavin Shanfb1b55d2013-03-05 21:12:37 +000058 return (phb && phb->msi_bmp.bitmap) ? 0 : -ENODEV;
Benjamin Herrenschmidtc1a25622011-09-19 17:45:06 +000059}
60
61static int pnv_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
62{
63 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
64 struct pnv_phb *phb = hose->private_data;
65 struct msi_desc *entry;
66 struct msi_msg msg;
Gavin Shanfb1b55d2013-03-05 21:12:37 +000067 int hwirq;
68 unsigned int virq;
Benjamin Herrenschmidtc1a25622011-09-19 17:45:06 +000069 int rc;
70
71 if (WARN_ON(!phb))
72 return -ENODEV;
73
74 list_for_each_entry(entry, &pdev->msi_list, list) {
75 if (!entry->msi_attrib.is_64 && !phb->msi32_support) {
76 pr_warn("%s: Supports only 64-bit MSIs\n",
77 pci_name(pdev));
78 return -ENXIO;
79 }
Gavin Shanfb1b55d2013-03-05 21:12:37 +000080 hwirq = msi_bitmap_alloc_hwirqs(&phb->msi_bmp, 1);
81 if (hwirq < 0) {
Benjamin Herrenschmidtc1a25622011-09-19 17:45:06 +000082 pr_warn("%s: Failed to find a free MSI\n",
83 pci_name(pdev));
84 return -ENOSPC;
85 }
Gavin Shanfb1b55d2013-03-05 21:12:37 +000086 virq = irq_create_mapping(NULL, phb->msi_base + hwirq);
Benjamin Herrenschmidtc1a25622011-09-19 17:45:06 +000087 if (virq == NO_IRQ) {
88 pr_warn("%s: Failed to map MSI to linux irq\n",
89 pci_name(pdev));
Gavin Shanfb1b55d2013-03-05 21:12:37 +000090 msi_bitmap_free_hwirqs(&phb->msi_bmp, hwirq, 1);
Benjamin Herrenschmidtc1a25622011-09-19 17:45:06 +000091 return -ENOMEM;
92 }
Gavin Shanfb1b55d2013-03-05 21:12:37 +000093 rc = phb->msi_setup(phb, pdev, phb->msi_base + hwirq,
Gavin Shan137436c2013-04-25 19:20:59 +000094 virq, entry->msi_attrib.is_64, &msg);
Benjamin Herrenschmidtc1a25622011-09-19 17:45:06 +000095 if (rc) {
96 pr_warn("%s: Failed to setup MSI\n", pci_name(pdev));
97 irq_dispose_mapping(virq);
Gavin Shanfb1b55d2013-03-05 21:12:37 +000098 msi_bitmap_free_hwirqs(&phb->msi_bmp, hwirq, 1);
Benjamin Herrenschmidtc1a25622011-09-19 17:45:06 +000099 return rc;
100 }
101 irq_set_msi_desc(virq, entry);
102 write_msi_msg(virq, &msg);
103 }
104 return 0;
105}
106
107static void pnv_teardown_msi_irqs(struct pci_dev *pdev)
108{
109 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
110 struct pnv_phb *phb = hose->private_data;
111 struct msi_desc *entry;
112
113 if (WARN_ON(!phb))
114 return;
115
116 list_for_each_entry(entry, &pdev->msi_list, list) {
117 if (entry->irq == NO_IRQ)
118 continue;
119 irq_set_msi_desc(entry->irq, NULL);
Gavin Shanfb1b55d2013-03-05 21:12:37 +0000120 msi_bitmap_free_hwirqs(&phb->msi_bmp,
121 virq_to_hw(entry->irq) - phb->msi_base, 1);
Benjamin Herrenschmidtc1a25622011-09-19 17:45:06 +0000122 irq_dispose_mapping(entry->irq);
123 }
124}
125#endif /* CONFIG_PCI_MSI */
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000126
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +0000127static void pnv_pci_dump_p7ioc_diag_data(struct pnv_phb *phb)
128{
129 struct OpalIoP7IOCPhbErrorData *data = &phb->diag.p7ioc;
130 int i;
131
132 pr_info("PHB %d diagnostic data:\n", phb->hose->global_number);
133
134 pr_info(" brdgCtl = 0x%08x\n", data->brdgCtl);
135
136 pr_info(" portStatusReg = 0x%08x\n", data->portStatusReg);
137 pr_info(" rootCmplxStatus = 0x%08x\n", data->rootCmplxStatus);
138 pr_info(" busAgentStatus = 0x%08x\n", data->busAgentStatus);
139
140 pr_info(" deviceStatus = 0x%08x\n", data->deviceStatus);
141 pr_info(" slotStatus = 0x%08x\n", data->slotStatus);
142 pr_info(" linkStatus = 0x%08x\n", data->linkStatus);
143 pr_info(" devCmdStatus = 0x%08x\n", data->devCmdStatus);
144 pr_info(" devSecStatus = 0x%08x\n", data->devSecStatus);
145
146 pr_info(" rootErrorStatus = 0x%08x\n", data->rootErrorStatus);
147 pr_info(" uncorrErrorStatus = 0x%08x\n", data->uncorrErrorStatus);
148 pr_info(" corrErrorStatus = 0x%08x\n", data->corrErrorStatus);
149 pr_info(" tlpHdr1 = 0x%08x\n", data->tlpHdr1);
150 pr_info(" tlpHdr2 = 0x%08x\n", data->tlpHdr2);
151 pr_info(" tlpHdr3 = 0x%08x\n", data->tlpHdr3);
152 pr_info(" tlpHdr4 = 0x%08x\n", data->tlpHdr4);
153 pr_info(" sourceId = 0x%08x\n", data->sourceId);
154
155 pr_info(" errorClass = 0x%016llx\n", data->errorClass);
156 pr_info(" correlator = 0x%016llx\n", data->correlator);
157
158 pr_info(" p7iocPlssr = 0x%016llx\n", data->p7iocPlssr);
159 pr_info(" p7iocCsr = 0x%016llx\n", data->p7iocCsr);
160 pr_info(" lemFir = 0x%016llx\n", data->lemFir);
161 pr_info(" lemErrorMask = 0x%016llx\n", data->lemErrorMask);
162 pr_info(" lemWOF = 0x%016llx\n", data->lemWOF);
163 pr_info(" phbErrorStatus = 0x%016llx\n", data->phbErrorStatus);
164 pr_info(" phbFirstErrorStatus = 0x%016llx\n", data->phbFirstErrorStatus);
165 pr_info(" phbErrorLog0 = 0x%016llx\n", data->phbErrorLog0);
166 pr_info(" phbErrorLog1 = 0x%016llx\n", data->phbErrorLog1);
167 pr_info(" mmioErrorStatus = 0x%016llx\n", data->mmioErrorStatus);
168 pr_info(" mmioFirstErrorStatus = 0x%016llx\n", data->mmioFirstErrorStatus);
169 pr_info(" mmioErrorLog0 = 0x%016llx\n", data->mmioErrorLog0);
170 pr_info(" mmioErrorLog1 = 0x%016llx\n", data->mmioErrorLog1);
171 pr_info(" dma0ErrorStatus = 0x%016llx\n", data->dma0ErrorStatus);
172 pr_info(" dma0FirstErrorStatus = 0x%016llx\n", data->dma0FirstErrorStatus);
173 pr_info(" dma0ErrorLog0 = 0x%016llx\n", data->dma0ErrorLog0);
174 pr_info(" dma0ErrorLog1 = 0x%016llx\n", data->dma0ErrorLog1);
175 pr_info(" dma1ErrorStatus = 0x%016llx\n", data->dma1ErrorStatus);
176 pr_info(" dma1FirstErrorStatus = 0x%016llx\n", data->dma1FirstErrorStatus);
177 pr_info(" dma1ErrorLog0 = 0x%016llx\n", data->dma1ErrorLog0);
178 pr_info(" dma1ErrorLog1 = 0x%016llx\n", data->dma1ErrorLog1);
179
180 for (i = 0; i < OPAL_P7IOC_NUM_PEST_REGS; i++) {
181 if ((data->pestA[i] >> 63) == 0 &&
182 (data->pestB[i] >> 63) == 0)
183 continue;
184 pr_info(" PE[%3d] PESTA = 0x%016llx\n", i, data->pestA[i]);
185 pr_info(" PESTB = 0x%016llx\n", data->pestB[i]);
186 }
187}
188
189static void pnv_pci_dump_phb_diag_data(struct pnv_phb *phb)
190{
191 switch(phb->model) {
192 case PNV_PHB_MODEL_P7IOC:
193 pnv_pci_dump_p7ioc_diag_data(phb);
194 break;
195 default:
196 pr_warning("PCI %d: Can't decode this PHB diag data\n",
197 phb->hose->global_number);
198 }
199}
200
201static void pnv_pci_handle_eeh_config(struct pnv_phb *phb, u32 pe_no)
202{
203 unsigned long flags, rc;
204 int has_diag;
205
206 spin_lock_irqsave(&phb->lock, flags);
207
Gavin Shan23773232013-06-20 13:21:05 +0800208 rc = opal_pci_get_phb_diag_data2(phb->opal_id, phb->diag.blob,
209 PNV_PCI_DIAG_BUF_SIZE);
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +0000210 has_diag = (rc == OPAL_SUCCESS);
211
212 rc = opal_pci_eeh_freeze_clear(phb->opal_id, pe_no,
213 OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
214 if (rc) {
215 pr_warning("PCI %d: Failed to clear EEH freeze state"
216 " for PE#%d, err %ld\n",
217 phb->hose->global_number, pe_no, rc);
218
219 /* For now, let's only display the diag buffer when we fail to clear
220 * the EEH status. We'll do more sensible things later when we have
221 * proper EEH support. We need to make sure we don't pollute ourselves
222 * with the normal errors generated when probing empty slots
223 */
224 if (has_diag)
225 pnv_pci_dump_phb_diag_data(phb);
226 else
227 pr_warning("PCI %d: No diag data available\n",
228 phb->hose->global_number);
229 }
230
231 spin_unlock_irqrestore(&phb->lock, flags);
232}
233
Gavin Shan9bf41be2013-06-27 13:46:48 +0800234static void pnv_pci_config_check_eeh(struct pnv_phb *phb,
235 struct device_node *dn)
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000236{
237 s64 rc;
238 u8 fstate;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +1000239 __be16 pcierr;
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000240 u32 pe_no;
241
Gavin Shan9bf41be2013-06-27 13:46:48 +0800242 /*
243 * Get the PE#. During the PCI probe stage, we might not
244 * setup that yet. So all ER errors should be mapped to
Gavin Shan36954dc2013-11-04 16:32:47 +0800245 * reserved PE.
Gavin Shan9bf41be2013-06-27 13:46:48 +0800246 */
247 pe_no = PCI_DN(dn)->pe_number;
Gavin Shan36954dc2013-11-04 16:32:47 +0800248 if (pe_no == IODA_INVALID_PE) {
249 if (phb->type == PNV_PHB_P5IOC2)
250 pe_no = 0;
251 else
252 pe_no = phb->ioda.reserved_pe;
253 }
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000254
255 /* Read freeze status */
256 rc = opal_pci_eeh_freeze_status(phb->opal_id, pe_no, &fstate, &pcierr,
257 NULL);
258 if (rc) {
Gavin Shan9bf41be2013-06-27 13:46:48 +0800259 pr_warning("%s: Can't read EEH status (PE#%d) for "
260 "%s, err %lld\n",
261 __func__, pe_no, dn->full_name, rc);
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000262 return;
263 }
Gavin Shan9bf41be2013-06-27 13:46:48 +0800264 cfg_dbg(" -> EEH check, bdfn=%04x PE#%d fstate=%x\n",
265 (PCI_DN(dn)->busno << 8) | (PCI_DN(dn)->devfn),
266 pe_no, fstate);
Benjamin Herrenschmidtcee72d52011-11-29 18:22:53 +0000267 if (fstate != 0)
268 pnv_pci_handle_eeh_config(phb, pe_no);
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000269}
270
Gavin Shan9bf41be2013-06-27 13:46:48 +0800271int pnv_pci_cfg_read(struct device_node *dn,
272 int where, int size, u32 *val)
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000273{
Gavin Shan9bf41be2013-06-27 13:46:48 +0800274 struct pci_dn *pdn = PCI_DN(dn);
275 struct pnv_phb *phb = pdn->phb->private_data;
276 u32 bdfn = (pdn->busno << 8) | pdn->devfn;
Gavin Shanbe7e7442013-06-20 13:21:15 +0800277#ifdef CONFIG_EEH
Gavin Shanbe7e7442013-06-20 13:21:15 +0800278 struct eeh_pe *phb_pe = NULL;
279#endif
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000280 s64 rc;
281
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000282 switch (size) {
283 case 1: {
284 u8 v8;
285 rc = opal_pci_config_read_byte(phb->opal_id, bdfn, where, &v8);
286 *val = (rc == OPAL_SUCCESS) ? v8 : 0xff;
287 break;
288 }
289 case 2: {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +1000290 __be16 v16;
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000291 rc = opal_pci_config_read_half_word(phb->opal_id, bdfn, where,
292 &v16);
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +1000293 *val = (rc == OPAL_SUCCESS) ? be16_to_cpu(v16) : 0xffff;
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000294 break;
295 }
296 case 4: {
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +1000297 __be32 v32;
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000298 rc = opal_pci_config_read_word(phb->opal_id, bdfn, where, &v32);
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +1000299 *val = (rc == OPAL_SUCCESS) ? be32_to_cpu(v32) : 0xffffffff;
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000300 break;
301 }
302 default:
303 return PCIBIOS_FUNC_NOT_SUPPORTED;
304 }
Gavin Shan9bf41be2013-06-27 13:46:48 +0800305 cfg_dbg("%s: bus: %x devfn: %x +%x/%x -> %08x\n",
306 __func__, pdn->busno, pdn->devfn, where, size, *val);
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000307
Gavin Shanbe7e7442013-06-20 13:21:15 +0800308 /*
309 * Check if the specified PE has been put into frozen
310 * state. On the other hand, we needn't do that while
311 * the PHB has been put into frozen state because of
312 * PHB-fatal errors.
313 */
314#ifdef CONFIG_EEH
Gavin Shan9bf41be2013-06-27 13:46:48 +0800315 phb_pe = eeh_phb_pe_get(pdn->phb);
Gavin Shanbe7e7442013-06-20 13:21:15 +0800316 if (phb_pe && (phb_pe->state & EEH_PE_ISOLATED))
317 return PCIBIOS_SUCCESSFUL;
318
Gavin Shan0b9e2672013-06-27 13:46:44 +0800319 if (phb->eeh_state & PNV_EEH_STATE_ENABLED) {
Gavin Shan9bf41be2013-06-27 13:46:48 +0800320 if (*val == EEH_IO_ERROR_VALUE(size) &&
321 eeh_dev_check_failure(of_node_to_eeh_dev(dn)))
322 return PCIBIOS_DEVICE_NOT_FOUND;
Gavin Shanbe7e7442013-06-20 13:21:15 +0800323 } else {
Gavin Shan9bf41be2013-06-27 13:46:48 +0800324 pnv_pci_config_check_eeh(phb, dn);
Gavin Shanbe7e7442013-06-20 13:21:15 +0800325 }
326#else
Gavin Shan9bf41be2013-06-27 13:46:48 +0800327 pnv_pci_config_check_eeh(phb, dn);
Gavin Shanbe7e7442013-06-20 13:21:15 +0800328#endif
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000329
330 return PCIBIOS_SUCCESSFUL;
331}
332
Gavin Shan9bf41be2013-06-27 13:46:48 +0800333int pnv_pci_cfg_write(struct device_node *dn,
334 int where, int size, u32 val)
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000335{
Gavin Shan9bf41be2013-06-27 13:46:48 +0800336 struct pci_dn *pdn = PCI_DN(dn);
337 struct pnv_phb *phb = pdn->phb->private_data;
338 u32 bdfn = (pdn->busno << 8) | pdn->devfn;
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000339
Gavin Shan9bf41be2013-06-27 13:46:48 +0800340 cfg_dbg("%s: bus: %x devfn: %x +%x/%x -> %08x\n",
341 pdn->busno, pdn->devfn, where, size, val);
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000342 switch (size) {
343 case 1:
344 opal_pci_config_write_byte(phb->opal_id, bdfn, where, val);
345 break;
346 case 2:
347 opal_pci_config_write_half_word(phb->opal_id, bdfn, where, val);
348 break;
349 case 4:
350 opal_pci_config_write_word(phb->opal_id, bdfn, where, val);
351 break;
352 default:
353 return PCIBIOS_FUNC_NOT_SUPPORTED;
354 }
Gavin Shanbe7e7442013-06-20 13:21:15 +0800355
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000356 /* Check if the PHB got frozen due to an error (no response) */
Gavin Shanbe7e7442013-06-20 13:21:15 +0800357#ifdef CONFIG_EEH
Gavin Shan0b9e2672013-06-27 13:46:44 +0800358 if (!(phb->eeh_state & PNV_EEH_STATE_ENABLED))
Gavin Shan9bf41be2013-06-27 13:46:48 +0800359 pnv_pci_config_check_eeh(phb, dn);
Gavin Shanbe7e7442013-06-20 13:21:15 +0800360#else
Gavin Shan9bf41be2013-06-27 13:46:48 +0800361 pnv_pci_config_check_eeh(phb, dn);
Gavin Shanbe7e7442013-06-20 13:21:15 +0800362#endif
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000363
364 return PCIBIOS_SUCCESSFUL;
365}
366
Gavin Shan9bf41be2013-06-27 13:46:48 +0800367static int pnv_pci_read_config(struct pci_bus *bus,
368 unsigned int devfn,
369 int where, int size, u32 *val)
370{
371 struct device_node *dn, *busdn = pci_bus_to_OF_node(bus);
372 struct pci_dn *pdn;
373
374 for (dn = busdn->child; dn; dn = dn->sibling) {
375 pdn = PCI_DN(dn);
376 if (pdn && pdn->devfn == devfn)
377 return pnv_pci_cfg_read(dn, where, size, val);
378 }
379
380 *val = 0xFFFFFFFF;
381 return PCIBIOS_DEVICE_NOT_FOUND;
382
383}
384
385static int pnv_pci_write_config(struct pci_bus *bus,
386 unsigned int devfn,
387 int where, int size, u32 val)
388{
389 struct device_node *dn, *busdn = pci_bus_to_OF_node(bus);
390 struct pci_dn *pdn;
391
392 for (dn = busdn->child; dn; dn = dn->sibling) {
393 pdn = PCI_DN(dn);
394 if (pdn && pdn->devfn == devfn)
395 return pnv_pci_cfg_write(dn, where, size, val);
396 }
397
398 return PCIBIOS_DEVICE_NOT_FOUND;
399}
400
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000401struct pci_ops pnv_pci_ops = {
Gavin Shan9bf41be2013-06-27 13:46:48 +0800402 .read = pnv_pci_read_config,
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000403 .write = pnv_pci_write_config,
404};
405
406static int pnv_tce_build(struct iommu_table *tbl, long index, long npages,
407 unsigned long uaddr, enum dma_data_direction direction,
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +1000408 struct dma_attrs *attrs, bool rm)
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000409{
410 u64 proto_tce;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +1000411 __be64 *tcep, *tces;
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000412 u64 rpn;
413
414 proto_tce = TCE_PCI_READ; // Read allowed
415
416 if (direction != DMA_TO_DEVICE)
417 proto_tce |= TCE_PCI_WRITE;
418
Anton Blanchard5e4da532013-09-23 12:05:06 +1000419 tces = tcep = ((__be64 *)tbl->it_base) + index - tbl->it_offset;
Benjamin Herrenschmidt1f1616e2011-11-06 18:55:59 +0000420 rpn = __pa(uaddr) >> TCE_SHIFT;
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000421
Benjamin Herrenschmidt1f1616e2011-11-06 18:55:59 +0000422 while (npages--)
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +1000423 *(tcep++) = cpu_to_be64(proto_tce | (rpn++ << TCE_RPN_SHIFT));
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000424
Benjamin Herrenschmidt1f1616e2011-11-06 18:55:59 +0000425 /* Some implementations won't cache invalid TCEs and thus may not
426 * need that flush. We'll probably turn it_type into a bit mask
427 * of flags if that becomes the case
428 */
429 if (tbl->it_type & TCE_PCI_SWINV_CREATE)
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +1000430 pnv_pci_ioda_tce_invalidate(tbl, tces, tcep - 1, rm);
Benjamin Herrenschmidt1f1616e2011-11-06 18:55:59 +0000431
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000432 return 0;
433}
434
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +1000435static int pnv_tce_build_vm(struct iommu_table *tbl, long index, long npages,
436 unsigned long uaddr,
437 enum dma_data_direction direction,
438 struct dma_attrs *attrs)
439{
440 return pnv_tce_build(tbl, index, npages, uaddr, direction, attrs,
441 false);
442}
443
444static void pnv_tce_free(struct iommu_table *tbl, long index, long npages,
445 bool rm)
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000446{
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +1000447 __be64 *tcep, *tces;
Benjamin Herrenschmidt1f1616e2011-11-06 18:55:59 +0000448
Anton Blanchard5e4da532013-09-23 12:05:06 +1000449 tces = tcep = ((__be64 *)tbl->it_base) + index - tbl->it_offset;
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000450
451 while (npages--)
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +1000452 *(tcep++) = cpu_to_be64(0);
Benjamin Herrenschmidt1f1616e2011-11-06 18:55:59 +0000453
Benjamin Herrenschmidt605e44d2013-05-20 17:25:15 +0000454 if (tbl->it_type & TCE_PCI_SWINV_FREE)
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +1000455 pnv_pci_ioda_tce_invalidate(tbl, tces, tcep - 1, rm);
456}
457
458static void pnv_tce_free_vm(struct iommu_table *tbl, long index, long npages)
459{
460 pnv_tce_free(tbl, index, npages, false);
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000461}
462
Alexey Kardashevskiy11f63d32012-09-04 15:19:35 +0000463static unsigned long pnv_tce_get(struct iommu_table *tbl, long index)
464{
465 return ((u64 *)tbl->it_base)[index - tbl->it_offset];
466}
467
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +1000468static int pnv_tce_build_rm(struct iommu_table *tbl, long index, long npages,
469 unsigned long uaddr,
470 enum dma_data_direction direction,
471 struct dma_attrs *attrs)
472{
473 return pnv_tce_build(tbl, index, npages, uaddr, direction, attrs, true);
474}
475
476static void pnv_tce_free_rm(struct iommu_table *tbl, long index, long npages)
477{
478 pnv_tce_free(tbl, index, npages, true);
479}
480
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000481void pnv_pci_setup_iommu_table(struct iommu_table *tbl,
482 void *tce_mem, u64 tce_size,
483 u64 dma_offset)
484{
485 tbl->it_blocksize = 16;
486 tbl->it_base = (unsigned long)tce_mem;
487 tbl->it_offset = dma_offset >> IOMMU_PAGE_SHIFT;
488 tbl->it_index = 0;
489 tbl->it_size = tce_size >> 3;
490 tbl->it_busno = 0;
491 tbl->it_type = TCE_PCI;
492}
493
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800494static struct iommu_table *pnv_pci_setup_bml_iommu(struct pci_controller *hose)
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000495{
496 struct iommu_table *tbl;
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +1000497 const __be64 *basep, *swinvp;
498 const __be32 *sizep;
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000499
500 basep = of_get_property(hose->dn, "linux,tce-base", NULL);
501 sizep = of_get_property(hose->dn, "linux,tce-size", NULL);
502 if (basep == NULL || sizep == NULL) {
Benjamin Herrenschmidt1f1616e2011-11-06 18:55:59 +0000503 pr_err("PCI: %s has missing tce entries !\n",
504 hose->dn->full_name);
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000505 return NULL;
506 }
507 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL, hose->node);
508 if (WARN_ON(!tbl))
509 return NULL;
510 pnv_pci_setup_iommu_table(tbl, __va(be64_to_cpup(basep)),
511 be32_to_cpup(sizep), 0);
512 iommu_init_table(tbl, hose->node);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000513 iommu_register_group(tbl, pci_domain_nr(hose->bus), 0);
Benjamin Herrenschmidt1f1616e2011-11-06 18:55:59 +0000514
515 /* Deal with SW invalidated TCEs when needed (BML way) */
516 swinvp = of_get_property(hose->dn, "linux,tce-sw-invalidate-info",
517 NULL);
518 if (swinvp) {
Anton Blanchard5e4da532013-09-23 12:05:06 +1000519 tbl->it_busno = be64_to_cpu(swinvp[1]);
Benjamin Herrenschmidt3a1a4662013-09-23 12:05:01 +1000520 tbl->it_index = (unsigned long)ioremap(be64_to_cpup(swinvp), 8);
Benjamin Herrenschmidt1f1616e2011-11-06 18:55:59 +0000521 tbl->it_type = TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE;
522 }
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000523 return tbl;
524}
525
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800526static void pnv_pci_dma_fallback_setup(struct pci_controller *hose,
527 struct pci_dev *pdev)
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000528{
529 struct device_node *np = pci_bus_to_OF_node(hose->bus);
530 struct pci_dn *pdn;
531
532 if (np == NULL)
533 return;
534 pdn = PCI_DN(np);
535 if (!pdn->iommu_table)
536 pdn->iommu_table = pnv_pci_setup_bml_iommu(hose);
537 if (!pdn->iommu_table)
538 return;
539 set_iommu_table_base(&pdev->dev, pdn->iommu_table);
540}
541
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800542static void pnv_pci_dma_dev_setup(struct pci_dev *pdev)
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000543{
544 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
545 struct pnv_phb *phb = hose->private_data;
546
547 /* If we have no phb structure, try to setup a fallback based on
548 * the device-tree (RTAS PCI for example)
549 */
550 if (phb && phb->dma_dev_setup)
551 phb->dma_dev_setup(phb, pdev);
552 else
553 pnv_pci_dma_fallback_setup(hose, pdev);
554}
555
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000556void pnv_pci_shutdown(void)
557{
558 struct pci_controller *hose;
559
560 list_for_each_entry(hose, &hose_list, list_node) {
561 struct pnv_phb *phb = hose->private_data;
562
563 if (phb && phb->shutdown)
564 phb->shutdown(phb);
565 }
566}
567
Gavin Shanaa0c0332013-04-25 19:20:57 +0000568/* Fixup wrong class code in p7ioc and p8 root complex */
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800569static void pnv_p7ioc_rc_quirk(struct pci_dev *dev)
Benjamin Herrenschmidtca45cfe2011-11-06 18:56:00 +0000570{
571 dev->class = PCI_CLASS_BRIDGE_PCI << 8;
572}
573DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_IBM, 0x3b9, pnv_p7ioc_rc_quirk);
574
Benjamin Herrenschmidt82ba1292011-09-19 17:45:07 +0000575static int pnv_pci_probe_mode(struct pci_bus *bus)
576{
577 struct pci_controller *hose = pci_bus_to_host(bus);
578 const __be64 *tstamp;
579 u64 now, target;
580
581
582 /* We hijack this as a way to ensure we have waited long
583 * enough since the reset was lifted on the PCI bus
584 */
585 if (bus != hose->bus)
586 return PCI_PROBE_NORMAL;
587 tstamp = of_get_property(hose->dn, "reset-clear-timestamp", NULL);
588 if (!tstamp || !*tstamp)
589 return PCI_PROBE_NORMAL;
590
591 now = mftb() / tb_ticks_per_usec;
592 target = (be64_to_cpup(tstamp) / tb_ticks_per_usec)
593 + PCI_RESET_DELAY_US;
594
595 pr_devel("pci %04d: Reset target: 0x%llx now: 0x%llx\n",
596 hose->global_number, target, now);
597
598 if (now < target)
599 msleep((target - now + 999) / 1000);
600
601 return PCI_PROBE_NORMAL;
602}
603
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000604void __init pnv_pci_init(void)
605{
606 struct device_node *np;
607
Bjorn Helgaas673c9752012-02-23 20:18:58 -0700608 pci_add_flags(PCI_CAN_SKIP_ISA_ALIGN);
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000609
610 /* OPAL absent, try POPAL first then RTAS detection of PHBs */
611 if (!firmware_has_feature(FW_FEATURE_OPAL)) {
612#ifdef CONFIG_PPC_POWERNV_RTAS
613 init_pci_config_tokens();
614 find_and_init_phbs();
615#endif /* CONFIG_PPC_POWERNV_RTAS */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000616 }
617 /* OPAL is here, do our normal stuff */
618 else {
619 int found_ioda = 0;
620
621 /* Look for IODA IO-Hubs. We don't support mixing IODA
622 * and p5ioc2 due to the need to change some global
623 * probing flags
624 */
625 for_each_compatible_node(np, NULL, "ibm,ioda-hub") {
626 pnv_pci_init_ioda_hub(np);
627 found_ioda = 1;
628 }
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000629
630 /* Look for p5ioc2 IO-Hubs */
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +0000631 if (!found_ioda)
632 for_each_compatible_node(np, NULL, "ibm,p5ioc2")
633 pnv_pci_init_p5ioc2_hub(np);
Gavin Shanaa0c0332013-04-25 19:20:57 +0000634
635 /* Look for ioda2 built-in PHB3's */
636 for_each_compatible_node(np, NULL, "ibm,ioda2-phb")
637 pnv_pci_init_ioda2_phb(np);
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000638 }
639
640 /* Setup the linkage between OF nodes and PHBs */
641 pci_devs_phb_init();
642
643 /* Configure IOMMU DMA hooks */
644 ppc_md.pci_dma_dev_setup = pnv_pci_dma_dev_setup;
Alexey Kardashevskiy8e0a1612013-08-28 18:37:43 +1000645 ppc_md.tce_build = pnv_tce_build_vm;
646 ppc_md.tce_free = pnv_tce_free_vm;
647 ppc_md.tce_build_rm = pnv_tce_build_rm;
648 ppc_md.tce_free_rm = pnv_tce_free_rm;
Alexey Kardashevskiy11f63d32012-09-04 15:19:35 +0000649 ppc_md.tce_get = pnv_tce_get;
Benjamin Herrenschmidt82ba1292011-09-19 17:45:07 +0000650 ppc_md.pci_probe_mode = pnv_pci_probe_mode;
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000651 set_pci_dma_ops(&dma_iommu_ops);
652
Benjamin Herrenschmidtc1a25622011-09-19 17:45:06 +0000653 /* Configure MSIs */
654#ifdef CONFIG_PCI_MSI
655 ppc_md.msi_check_device = pnv_msi_check_device;
656 ppc_md.setup_msi_irqs = pnv_setup_msi_irqs;
657 ppc_md.teardown_msi_irqs = pnv_teardown_msi_irqs;
658#endif
Benjamin Herrenschmidt61305a92011-09-19 17:45:05 +0000659}