blob: 0829fce06172fdbe99d0bdb0291531036367848a [file] [log] [blame]
Mike Marciniszyn77241052015-07-30 15:17:43 -04001/*
Jubin John05d6ac12016-02-14 20:22:17 -08002 * Copyright(c) 2015, 2016 Intel Corporation.
Mike Marciniszyn77241052015-07-30 15:17:43 -04003 *
4 * This file is provided under a dual BSD/GPLv2 license. When using or
5 * redistributing this file, you may do so under either license.
6 *
7 * GPL LICENSE SUMMARY
8 *
Mike Marciniszyn77241052015-07-30 15:17:43 -04009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * BSD LICENSE
19 *
Mike Marciniszyn77241052015-07-30 15:17:43 -040020 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 *
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
29 * distribution.
30 * - Neither the name of Intel Corporation nor the names of its
31 * contributors may be used to endorse or promote products derived
32 * from this software without specific prior written permission.
33 *
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45 *
46 */
47
48#include <linux/pci.h>
49#include <linux/io.h>
50#include <linux/delay.h>
51#include <linux/vmalloc.h>
52#include <linux/aer.h>
53#include <linux/module.h>
54
55#include "hfi.h"
56#include "chip_registers.h"
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -080057#include "aspm.h"
Mike Marciniszyn77241052015-07-30 15:17:43 -040058
59/* link speed vector for Gen3 speed - not in Linux headers */
60#define GEN1_SPEED_VECTOR 0x1
61#define GEN2_SPEED_VECTOR 0x2
62#define GEN3_SPEED_VECTOR 0x3
63
64/*
65 * This file contains PCIe utility routines.
66 */
67
68/*
69 * Code to adjust PCIe capabilities.
70 */
71static void tune_pcie_caps(struct hfi1_devdata *);
72
73/*
74 * Do all the common PCIe setup and initialization.
75 * devdata is not yet allocated, and is not allocated until after this
76 * routine returns success. Therefore dd_dev_err() can't be used for error
77 * printing.
78 */
79int hfi1_pcie_init(struct pci_dev *pdev, const struct pci_device_id *ent)
80{
81 int ret;
82
83 ret = pci_enable_device(pdev);
84 if (ret) {
85 /*
86 * This can happen (in theory) iff:
87 * We did a chip reset, and then failed to reprogram the
88 * BAR, or the chip reset due to an internal error. We then
89 * unloaded the driver and reloaded it.
90 *
91 * Both reset cases set the BAR back to initial state. For
92 * the latter case, the AER sticky error bit at offset 0x718
93 * should be set, but the Linux kernel doesn't yet know
94 * about that, it appears. If the original BAR was retained
95 * in the kernel data structures, this may be OK.
96 */
97 hfi1_early_err(&pdev->dev, "pci enable failed: error %d\n",
98 -ret);
99 goto done;
100 }
101
102 ret = pci_request_regions(pdev, DRIVER_NAME);
103 if (ret) {
104 hfi1_early_err(&pdev->dev,
105 "pci_request_regions fails: err %d\n", -ret);
106 goto bail;
107 }
108
109 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
110 if (ret) {
111 /*
112 * If the 64 bit setup fails, try 32 bit. Some systems
113 * do not setup 64 bit maps on systems with 2GB or less
114 * memory installed.
115 */
116 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
117 if (ret) {
118 hfi1_early_err(&pdev->dev,
119 "Unable to set DMA mask: %d\n", ret);
120 goto bail;
121 }
122 ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Jubin Johne4909742016-02-14 20:22:00 -0800123 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400124 ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Jubin Johne4909742016-02-14 20:22:00 -0800125 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400126 if (ret) {
127 hfi1_early_err(&pdev->dev,
128 "Unable to set DMA consistent mask: %d\n", ret);
129 goto bail;
130 }
131
132 pci_set_master(pdev);
Dean Luick00967652016-02-03 14:36:06 -0800133 (void)pci_enable_pcie_error_reporting(pdev);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400134 goto done;
135
136bail:
137 hfi1_pcie_cleanup(pdev);
138done:
139 return ret;
140}
141
142/*
143 * Clean what was done in hfi1_pcie_init()
144 */
145void hfi1_pcie_cleanup(struct pci_dev *pdev)
146{
147 pci_disable_device(pdev);
148 /*
149 * Release regions should be called after the disable. OK to
150 * call if request regions has not been called or failed.
151 */
152 pci_release_regions(pdev);
153}
154
155/*
156 * Do remaining PCIe setup, once dd is allocated, and save away
157 * fields required to re-initialize after a chip reset, or for
158 * various other purposes
159 */
Easwar Hariharan26ea2542016-10-17 04:19:58 -0700160int hfi1_pcie_ddinit(struct hfi1_devdata *dd, struct pci_dev *pdev)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400161{
162 unsigned long len;
163 resource_size_t addr;
164
165 dd->pcidev = pdev;
166 pci_set_drvdata(pdev, dd);
167
168 addr = pci_resource_start(pdev, 0);
169 len = pci_resource_len(pdev, 0);
170
171 /*
172 * The TXE PIO buffers are at the tail end of the chip space.
173 * Cut them off and map them separately.
174 */
175
176 /* sanity check vs expectations */
177 if (len != TXE_PIO_SEND + TXE_PIO_SIZE) {
178 dd_dev_err(dd, "chip PIO range does not match\n");
179 return -EINVAL;
180 }
181
182 dd->kregbase = ioremap_nocache(addr, TXE_PIO_SEND);
183 if (!dd->kregbase)
184 return -ENOMEM;
185
186 dd->piobase = ioremap_wc(addr + TXE_PIO_SEND, TXE_PIO_SIZE);
187 if (!dd->piobase) {
188 iounmap(dd->kregbase);
189 return -ENOMEM;
190 }
191
192 dd->flags |= HFI1_PRESENT; /* now register routines work */
193
194 dd->kregend = dd->kregbase + TXE_PIO_SEND;
195 dd->physaddr = addr; /* used for io_remap, etc. */
196
197 /*
198 * Re-map the chip's RcvArray as write-combining to allow us
199 * to write an entire cacheline worth of entries in one shot.
200 * If this re-map fails, just continue - the RcvArray programming
201 * function will handle both cases.
202 */
203 dd->chip_rcv_array_count = read_csr(dd, RCV_ARRAY_CNT);
204 dd->rcvarray_wc = ioremap_wc(addr + RCV_ARRAY,
205 dd->chip_rcv_array_count * 8);
206 dd_dev_info(dd, "WC Remapped RcvArray: %p\n", dd->rcvarray_wc);
207 /*
208 * Save BARs and command to rewrite after device reset.
209 */
210 dd->pcibar0 = addr;
211 dd->pcibar1 = addr >> 32;
212 pci_read_config_dword(dd->pcidev, PCI_ROM_ADDRESS, &dd->pci_rom);
213 pci_read_config_word(dd->pcidev, PCI_COMMAND, &dd->pci_command);
214 pcie_capability_read_word(dd->pcidev, PCI_EXP_DEVCTL, &dd->pcie_devctl);
215 pcie_capability_read_word(dd->pcidev, PCI_EXP_LNKCTL, &dd->pcie_lnkctl);
216 pcie_capability_read_word(dd->pcidev, PCI_EXP_DEVCTL2,
Jubin John17fb4f22016-02-14 20:21:52 -0800217 &dd->pcie_devctl2);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400218 pci_read_config_dword(dd->pcidev, PCI_CFG_MSIX0, &dd->pci_msix0);
Jubin John17fb4f22016-02-14 20:21:52 -0800219 pci_read_config_dword(dd->pcidev, PCIE_CFG_SPCIE1, &dd->pci_lnkctl3);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400220 pci_read_config_dword(dd->pcidev, PCIE_CFG_TPH2, &dd->pci_tph2);
221
222 return 0;
223}
224
225/*
226 * Do PCIe cleanup related to dd, after chip-specific cleanup, etc. Just prior
227 * to releasing the dd memory.
228 * Void because all of the core pcie cleanup functions are void.
229 */
230void hfi1_pcie_ddcleanup(struct hfi1_devdata *dd)
231{
Jubin John50e5dcb2016-02-14 20:19:41 -0800232 u64 __iomem *base = (void __iomem *)dd->kregbase;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400233
234 dd->flags &= ~HFI1_PRESENT;
235 dd->kregbase = NULL;
236 iounmap(base);
237 if (dd->rcvarray_wc)
238 iounmap(dd->rcvarray_wc);
239 if (dd->piobase)
240 iounmap(dd->piobase);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400241}
242
243/*
244 * Do a Function Level Reset (FLR) on the device.
245 * Based on static function drivers/pci/pci.c:pcie_flr().
246 */
247void hfi1_pcie_flr(struct hfi1_devdata *dd)
248{
249 int i;
250 u16 status;
251
252 /* no need to check for the capability - we know the device has it */
253
254 /* wait for Transaction Pending bit to clear, at most a few ms */
255 for (i = 0; i < 4; i++) {
256 if (i)
257 msleep((1 << (i - 1)) * 100);
258
259 pcie_capability_read_word(dd->pcidev, PCI_EXP_DEVSTA, &status);
260 if (!(status & PCI_EXP_DEVSTA_TRPND))
261 goto clear;
262 }
263
264 dd_dev_err(dd, "Transaction Pending bit is not clearing, proceeding with reset anyway\n");
265
266clear:
267 pcie_capability_set_word(dd->pcidev, PCI_EXP_DEVCTL,
Jubin John17fb4f22016-02-14 20:21:52 -0800268 PCI_EXP_DEVCTL_BCR_FLR);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400269 /* PCIe spec requires the function to be back within 100ms */
270 msleep(100);
271}
272
273static void msix_setup(struct hfi1_devdata *dd, int pos, u32 *msixcnt,
274 struct hfi1_msix_entry *hfi1_msix_entry)
275{
276 int ret;
277 int nvec = *msixcnt;
278 struct msix_entry *msix_entry;
279 int i;
280
Jubin John4d114fd2016-02-14 20:21:43 -0800281 /*
282 * We can't pass hfi1_msix_entry array to msix_setup
Mike Marciniszyn77241052015-07-30 15:17:43 -0400283 * so use a dummy msix_entry array and copy the allocated
Jubin John4d114fd2016-02-14 20:21:43 -0800284 * irq back to the hfi1_msix_entry array.
285 */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400286 msix_entry = kmalloc_array(nvec, sizeof(*msix_entry), GFP_KERNEL);
287 if (!msix_entry) {
288 ret = -ENOMEM;
289 goto do_intx;
290 }
291
292 for (i = 0; i < nvec; i++)
293 msix_entry[i] = hfi1_msix_entry[i].msix;
294
295 ret = pci_enable_msix_range(dd->pcidev, msix_entry, 1, nvec);
296 if (ret < 0)
297 goto free_msix_entry;
298 nvec = ret;
299
300 for (i = 0; i < nvec; i++)
301 hfi1_msix_entry[i].msix = msix_entry[i];
302
303 kfree(msix_entry);
304 *msixcnt = nvec;
305 return;
306
307free_msix_entry:
308 kfree(msix_entry);
309
310do_intx:
311 dd_dev_err(dd, "pci_enable_msix_range %d vectors failed: %d, falling back to INTx\n",
312 nvec, ret);
313 *msixcnt = 0;
314 hfi1_enable_intx(dd->pcidev);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400315}
316
317/* return the PCIe link speed from the given link status */
318static u32 extract_speed(u16 linkstat)
319{
320 u32 speed;
321
322 switch (linkstat & PCI_EXP_LNKSTA_CLS) {
323 default: /* not defined, assume Gen1 */
324 case PCI_EXP_LNKSTA_CLS_2_5GB:
325 speed = 2500; /* Gen 1, 2.5GHz */
326 break;
327 case PCI_EXP_LNKSTA_CLS_5_0GB:
328 speed = 5000; /* Gen 2, 5GHz */
329 break;
330 case GEN3_SPEED_VECTOR:
331 speed = 8000; /* Gen 3, 8GHz */
332 break;
333 }
334 return speed;
335}
336
337/* return the PCIe link speed from the given link status */
338static u32 extract_width(u16 linkstat)
339{
340 return (linkstat & PCI_EXP_LNKSTA_NLW) >> PCI_EXP_LNKSTA_NLW_SHIFT;
341}
342
343/* read the link status and set dd->{lbus_width,lbus_speed,lbus_info} */
344static void update_lbus_info(struct hfi1_devdata *dd)
345{
346 u16 linkstat;
347
348 pcie_capability_read_word(dd->pcidev, PCI_EXP_LNKSTA, &linkstat);
349 dd->lbus_width = extract_width(linkstat);
350 dd->lbus_speed = extract_speed(linkstat);
351 snprintf(dd->lbus_info, sizeof(dd->lbus_info),
352 "PCIe,%uMHz,x%u", dd->lbus_speed, dd->lbus_width);
353}
354
355/*
356 * Read in the current PCIe link width and speed. Find if the link is
357 * Gen3 capable.
358 */
359int pcie_speeds(struct hfi1_devdata *dd)
360{
361 u32 linkcap;
Kaike Wanbf400232016-02-26 13:33:18 -0800362 struct pci_dev *parent = dd->pcidev->bus->self;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400363
364 if (!pci_is_pcie(dd->pcidev)) {
365 dd_dev_err(dd, "Can't find PCI Express capability!\n");
366 return -EINVAL;
367 }
368
369 /* find if our max speed is Gen3 and parent supports Gen3 speeds */
370 dd->link_gen3_capable = 1;
371
372 pcie_capability_read_dword(dd->pcidev, PCI_EXP_LNKCAP, &linkcap);
373 if ((linkcap & PCI_EXP_LNKCAP_SLS) != GEN3_SPEED_VECTOR) {
374 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -0800375 "This HFI is not Gen3 capable, max speed 0x%x, need 0x3\n",
376 linkcap & PCI_EXP_LNKCAP_SLS);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400377 dd->link_gen3_capable = 0;
378 }
379
380 /*
381 * bus->max_bus_speed is set from the bridge's linkcap Max Link Speed
382 */
Kaike Wanbf400232016-02-26 13:33:18 -0800383 if (parent && dd->pcidev->bus->max_bus_speed != PCIE_SPEED_8_0GT) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400384 dd_dev_info(dd, "Parent PCIe bridge does not support Gen3\n");
385 dd->link_gen3_capable = 0;
386 }
387
388 /* obtain the link width and current speed */
389 update_lbus_info(dd);
390
Easwar Hariharan82ab09e2016-02-03 14:34:49 -0800391 dd_dev_info(dd, "%s\n", dd->lbus_info);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400392
393 return 0;
394}
395
396/*
397 * Returns in *nent:
398 * - actual number of interrupts allocated
399 * - 0 if fell back to INTx.
400 */
401void request_msix(struct hfi1_devdata *dd, u32 *nent,
402 struct hfi1_msix_entry *entry)
403{
404 int pos;
405
406 pos = dd->pcidev->msix_cap;
407 if (*nent && pos) {
408 msix_setup(dd, pos, nent, entry);
409 /* did it, either MSI-X or INTx */
410 } else {
411 *nent = 0;
412 hfi1_enable_intx(dd->pcidev);
413 }
414
415 tune_pcie_caps(dd);
416}
417
Mike Marciniszyn77241052015-07-30 15:17:43 -0400418void hfi1_enable_intx(struct pci_dev *pdev)
419{
420 /* first, turn on INTx */
421 pci_intx(pdev, 1);
422 /* then turn off MSI-X */
423 pci_disable_msix(pdev);
424}
425
426/* restore command and BARs after a reset has wiped them out */
427void restore_pci_variables(struct hfi1_devdata *dd)
428{
429 pci_write_config_word(dd->pcidev, PCI_COMMAND, dd->pci_command);
Jubin John17fb4f22016-02-14 20:21:52 -0800430 pci_write_config_dword(dd->pcidev, PCI_BASE_ADDRESS_0, dd->pcibar0);
431 pci_write_config_dword(dd->pcidev, PCI_BASE_ADDRESS_1, dd->pcibar1);
432 pci_write_config_dword(dd->pcidev, PCI_ROM_ADDRESS, dd->pci_rom);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400433 pcie_capability_write_word(dd->pcidev, PCI_EXP_DEVCTL, dd->pcie_devctl);
434 pcie_capability_write_word(dd->pcidev, PCI_EXP_LNKCTL, dd->pcie_lnkctl);
435 pcie_capability_write_word(dd->pcidev, PCI_EXP_DEVCTL2,
Jubin John17fb4f22016-02-14 20:21:52 -0800436 dd->pcie_devctl2);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400437 pci_write_config_dword(dd->pcidev, PCI_CFG_MSIX0, dd->pci_msix0);
Jubin John17fb4f22016-02-14 20:21:52 -0800438 pci_write_config_dword(dd->pcidev, PCIE_CFG_SPCIE1, dd->pci_lnkctl3);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400439 pci_write_config_dword(dd->pcidev, PCIE_CFG_TPH2, dd->pci_tph2);
440}
441
Mike Marciniszyn77241052015-07-30 15:17:43 -0400442/*
443 * BIOS may not set PCIe bus-utilization parameters for best performance.
444 * Check and optionally adjust them to maximize our throughput.
445 */
446static int hfi1_pcie_caps;
447module_param_named(pcie_caps, hfi1_pcie_caps, int, S_IRUGO);
448MODULE_PARM_DESC(pcie_caps, "Max PCIe tuning: Payload (0..3), ReadReq (4..7)");
449
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -0800450uint aspm_mode = ASPM_MODE_DISABLED;
451module_param_named(aspm, aspm_mode, uint, S_IRUGO);
452MODULE_PARM_DESC(aspm, "PCIe ASPM: 0: disable, 1: enable, 2: dynamic");
453
Mike Marciniszyn77241052015-07-30 15:17:43 -0400454static void tune_pcie_caps(struct hfi1_devdata *dd)
455{
456 struct pci_dev *parent;
457 u16 rc_mpss, rc_mps, ep_mpss, ep_mps;
Vennila Megavannanbf70a772015-11-06 20:06:58 -0500458 u16 rc_mrrs, ep_mrrs, max_mrrs, ectl;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400459
Vennila Megavannanbf70a772015-11-06 20:06:58 -0500460 /*
461 * Turn on extended tags in DevCtl in case the BIOS has turned it off
462 * to improve WFR SDMA bandwidth
463 */
464 pcie_capability_read_word(dd->pcidev, PCI_EXP_DEVCTL, &ectl);
465 if (!(ectl & PCI_EXP_DEVCTL_EXT_TAG)) {
466 dd_dev_info(dd, "Enabling PCIe extended tags\n");
467 ectl |= PCI_EXP_DEVCTL_EXT_TAG;
468 pcie_capability_write_word(dd->pcidev, PCI_EXP_DEVCTL, ectl);
469 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400470 /* Find out supported and configured values for parent (root) */
471 parent = dd->pcidev->bus->self;
Kaike Wanbf400232016-02-26 13:33:18 -0800472 /*
473 * The driver cannot perform the tuning if it does not have
474 * access to the upstream component.
475 */
476 if (!parent)
477 return;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400478 if (!pci_is_root_bus(parent->bus)) {
479 dd_dev_info(dd, "Parent not root\n");
480 return;
481 }
482
483 if (!pci_is_pcie(parent) || !pci_is_pcie(dd->pcidev))
484 return;
485 rc_mpss = parent->pcie_mpss;
486 rc_mps = ffs(pcie_get_mps(parent)) - 8;
487 /* Find out supported and configured values for endpoint (us) */
488 ep_mpss = dd->pcidev->pcie_mpss;
489 ep_mps = ffs(pcie_get_mps(dd->pcidev)) - 8;
490
491 /* Find max payload supported by root, endpoint */
492 if (rc_mpss > ep_mpss)
493 rc_mpss = ep_mpss;
494
495 /* If Supported greater than limit in module param, limit it */
496 if (rc_mpss > (hfi1_pcie_caps & 7))
497 rc_mpss = hfi1_pcie_caps & 7;
498 /* If less than (allowed, supported), bump root payload */
499 if (rc_mpss > rc_mps) {
500 rc_mps = rc_mpss;
501 pcie_set_mps(parent, 128 << rc_mps);
502 }
503 /* If less than (allowed, supported), bump endpoint payload */
504 if (rc_mpss > ep_mps) {
505 ep_mps = rc_mpss;
506 pcie_set_mps(dd->pcidev, 128 << ep_mps);
507 }
508
509 /*
510 * Now the Read Request size.
511 * No field for max supported, but PCIe spec limits it to 4096,
512 * which is code '5' (log2(4096) - 7)
513 */
514 max_mrrs = 5;
515 if (max_mrrs > ((hfi1_pcie_caps >> 4) & 7))
516 max_mrrs = (hfi1_pcie_caps >> 4) & 7;
517
518 max_mrrs = 128 << max_mrrs;
519 rc_mrrs = pcie_get_readrq(parent);
520 ep_mrrs = pcie_get_readrq(dd->pcidev);
521
522 if (max_mrrs > rc_mrrs) {
523 rc_mrrs = max_mrrs;
524 pcie_set_readrq(parent, rc_mrrs);
525 }
526 if (max_mrrs > ep_mrrs) {
527 ep_mrrs = max_mrrs;
528 pcie_set_readrq(dd->pcidev, ep_mrrs);
529 }
530}
Jubin Johnf4d507c2016-02-14 20:20:25 -0800531
Mike Marciniszyn77241052015-07-30 15:17:43 -0400532/* End of PCIe capability tuning */
533
534/*
535 * From here through hfi1_pci_err_handler definition is invoked via
536 * PCI error infrastructure, registered via pci
537 */
538static pci_ers_result_t
539pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
540{
541 struct hfi1_devdata *dd = pci_get_drvdata(pdev);
542 pci_ers_result_t ret = PCI_ERS_RESULT_RECOVERED;
543
544 switch (state) {
545 case pci_channel_io_normal:
546 dd_dev_info(dd, "State Normal, ignoring\n");
547 break;
548
549 case pci_channel_io_frozen:
550 dd_dev_info(dd, "State Frozen, requesting reset\n");
551 pci_disable_device(pdev);
552 ret = PCI_ERS_RESULT_NEED_RESET;
553 break;
554
555 case pci_channel_io_perm_failure:
556 if (dd) {
557 dd_dev_info(dd, "State Permanent Failure, disabling\n");
558 /* no more register accesses! */
559 dd->flags &= ~HFI1_PRESENT;
560 hfi1_disable_after_error(dd);
561 }
562 /* else early, or other problem */
563 ret = PCI_ERS_RESULT_DISCONNECT;
564 break;
565
566 default: /* shouldn't happen */
567 dd_dev_info(dd, "HFI1 PCI errors detected (state %d)\n",
568 state);
569 break;
570 }
571 return ret;
572}
573
574static pci_ers_result_t
575pci_mmio_enabled(struct pci_dev *pdev)
576{
577 u64 words = 0U;
578 struct hfi1_devdata *dd = pci_get_drvdata(pdev);
579 pci_ers_result_t ret = PCI_ERS_RESULT_RECOVERED;
580
581 if (dd && dd->pport) {
582 words = read_port_cntr(dd->pport, C_RX_WORDS, CNTR_INVALID_VL);
583 if (words == ~0ULL)
584 ret = PCI_ERS_RESULT_NEED_RESET;
585 dd_dev_info(dd,
586 "HFI1 mmio_enabled function called, read wordscntr %Lx, returning %d\n",
587 words, ret);
588 }
589 return ret;
590}
591
592static pci_ers_result_t
593pci_slot_reset(struct pci_dev *pdev)
594{
595 struct hfi1_devdata *dd = pci_get_drvdata(pdev);
596
597 dd_dev_info(dd, "HFI1 slot_reset function called, ignored\n");
598 return PCI_ERS_RESULT_CAN_RECOVER;
599}
600
Mike Marciniszyn77241052015-07-30 15:17:43 -0400601static void
602pci_resume(struct pci_dev *pdev)
603{
604 struct hfi1_devdata *dd = pci_get_drvdata(pdev);
605
606 dd_dev_info(dd, "HFI1 resume function called\n");
607 pci_cleanup_aer_uncorrect_error_status(pdev);
608 /*
609 * Running jobs will fail, since it's asynchronous
610 * unlike sysfs-requested reset. Better than
611 * doing nothing.
612 */
613 hfi1_init(dd, 1); /* same as re-init after reset */
614}
615
616const struct pci_error_handlers hfi1_pci_err_handler = {
617 .error_detected = pci_error_detected,
618 .mmio_enabled = pci_mmio_enabled,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400619 .slot_reset = pci_slot_reset,
620 .resume = pci_resume,
621};
622
623/*============================================================================*/
624/* PCIe Gen3 support */
625
626/*
627 * This code is separated out because it is expected to be removed in the
628 * final shipping product. If not, then it will be revisited and items
629 * will be moved to more standard locations.
630 */
631
632/* ASIC_PCI_SD_HOST_STATUS.FW_DNLD_STS field values */
633#define DL_STATUS_HFI0 0x1 /* hfi0 firmware download complete */
634#define DL_STATUS_HFI1 0x2 /* hfi1 firmware download complete */
635#define DL_STATUS_BOTH 0x3 /* hfi0 and hfi1 firmware download complete */
636
637/* ASIC_PCI_SD_HOST_STATUS.FW_DNLD_ERR field values */
638#define DL_ERR_NONE 0x0 /* no error */
639#define DL_ERR_SWAP_PARITY 0x1 /* parity error in SerDes interrupt */
640 /* or response data */
641#define DL_ERR_DISABLED 0x2 /* hfi disabled */
642#define DL_ERR_SECURITY 0x3 /* security check failed */
643#define DL_ERR_SBUS 0x4 /* SBus status error */
644#define DL_ERR_XFR_PARITY 0x5 /* parity error during ROM transfer*/
645
646/* gasket block secondary bus reset delay */
647#define SBR_DELAY_US 200000 /* 200ms */
648
649/* mask for PCIe capability register lnkctl2 target link speed */
650#define LNKCTL2_TARGET_LINK_SPEED_MASK 0xf
651
652static uint pcie_target = 3;
653module_param(pcie_target, uint, S_IRUGO);
654MODULE_PARM_DESC(pcie_target, "PCIe target speed (0 skip, 1-3 Gen1-3)");
655
656static uint pcie_force;
657module_param(pcie_force, uint, S_IRUGO);
658MODULE_PARM_DESC(pcie_force, "Force driver to do a PCIe firmware download even if already at target speed");
659
660static uint pcie_retry = 5;
661module_param(pcie_retry, uint, S_IRUGO);
662MODULE_PARM_DESC(pcie_retry, "Driver will try this many times to reach requested speed");
663
664#define UNSET_PSET 255
665#define DEFAULT_DISCRETE_PSET 2 /* discrete HFI */
Easwar Hariharan39e2afa2017-02-08 05:26:14 -0800666#define DEFAULT_MCP_PSET 6 /* MCP HFI */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400667static uint pcie_pset = UNSET_PSET;
668module_param(pcie_pset, uint, S_IRUGO);
669MODULE_PARM_DESC(pcie_pset, "PCIe Eq Pset value to use, range is 0-10");
670
Easwar Hariharan39e2afa2017-02-08 05:26:14 -0800671static uint pcie_ctle = 3; /* discrete on, integrated on */
Dean Luickc3f8de02016-07-25 13:39:21 -0700672module_param(pcie_ctle, uint, S_IRUGO);
673MODULE_PARM_DESC(pcie_ctle, "PCIe static CTLE mode, bit 0 - discrete on/off, bit 1 - integrated on/off");
674
Mike Marciniszyn77241052015-07-30 15:17:43 -0400675/* equalization columns */
676#define PREC 0
677#define ATTN 1
678#define POST 2
679
680/* discrete silicon preliminary equalization values */
681static const u8 discrete_preliminary_eq[11][3] = {
682 /* prec attn post */
683 { 0x00, 0x00, 0x12 }, /* p0 */
684 { 0x00, 0x00, 0x0c }, /* p1 */
685 { 0x00, 0x00, 0x0f }, /* p2 */
686 { 0x00, 0x00, 0x09 }, /* p3 */
687 { 0x00, 0x00, 0x00 }, /* p4 */
688 { 0x06, 0x00, 0x00 }, /* p5 */
689 { 0x09, 0x00, 0x00 }, /* p6 */
690 { 0x06, 0x00, 0x0f }, /* p7 */
691 { 0x09, 0x00, 0x09 }, /* p8 */
692 { 0x0c, 0x00, 0x00 }, /* p9 */
693 { 0x00, 0x00, 0x18 }, /* p10 */
694};
695
696/* integrated silicon preliminary equalization values */
697static const u8 integrated_preliminary_eq[11][3] = {
698 /* prec attn post */
699 { 0x00, 0x1e, 0x07 }, /* p0 */
700 { 0x00, 0x1e, 0x05 }, /* p1 */
701 { 0x00, 0x1e, 0x06 }, /* p2 */
702 { 0x00, 0x1e, 0x04 }, /* p3 */
703 { 0x00, 0x1e, 0x00 }, /* p4 */
704 { 0x03, 0x1e, 0x00 }, /* p5 */
705 { 0x04, 0x1e, 0x00 }, /* p6 */
706 { 0x03, 0x1e, 0x06 }, /* p7 */
707 { 0x03, 0x1e, 0x04 }, /* p8 */
708 { 0x05, 0x1e, 0x00 }, /* p9 */
709 { 0x00, 0x1e, 0x0a }, /* p10 */
710};
711
Dean Luickc3f8de02016-07-25 13:39:21 -0700712static const u8 discrete_ctle_tunings[11][4] = {
713 /* DC LF HF BW */
714 { 0x48, 0x0b, 0x04, 0x04 }, /* p0 */
715 { 0x60, 0x05, 0x0f, 0x0a }, /* p1 */
716 { 0x50, 0x09, 0x06, 0x06 }, /* p2 */
717 { 0x68, 0x05, 0x0f, 0x0a }, /* p3 */
718 { 0x80, 0x05, 0x0f, 0x0a }, /* p4 */
719 { 0x70, 0x05, 0x0f, 0x0a }, /* p5 */
720 { 0x68, 0x05, 0x0f, 0x0a }, /* p6 */
721 { 0x38, 0x0f, 0x00, 0x00 }, /* p7 */
722 { 0x48, 0x09, 0x06, 0x06 }, /* p8 */
723 { 0x60, 0x05, 0x0f, 0x0a }, /* p9 */
724 { 0x38, 0x0f, 0x00, 0x00 }, /* p10 */
725};
726
727static const u8 integrated_ctle_tunings[11][4] = {
728 /* DC LF HF BW */
729 { 0x38, 0x0f, 0x00, 0x00 }, /* p0 */
730 { 0x38, 0x0f, 0x00, 0x00 }, /* p1 */
731 { 0x38, 0x0f, 0x00, 0x00 }, /* p2 */
732 { 0x38, 0x0f, 0x00, 0x00 }, /* p3 */
733 { 0x58, 0x0a, 0x05, 0x05 }, /* p4 */
734 { 0x48, 0x0a, 0x05, 0x05 }, /* p5 */
735 { 0x40, 0x0a, 0x05, 0x05 }, /* p6 */
736 { 0x38, 0x0f, 0x00, 0x00 }, /* p7 */
737 { 0x38, 0x0f, 0x00, 0x00 }, /* p8 */
738 { 0x38, 0x09, 0x06, 0x06 }, /* p9 */
739 { 0x38, 0x0e, 0x01, 0x01 }, /* p10 */
740};
741
Mike Marciniszyn77241052015-07-30 15:17:43 -0400742/* helper to format the value to write to hardware */
743#define eq_value(pre, curr, post) \
744 ((((u32)(pre)) << \
745 PCIE_CFG_REG_PL102_GEN3_EQ_PRE_CURSOR_PSET_SHIFT) \
746 | (((u32)(curr)) << PCIE_CFG_REG_PL102_GEN3_EQ_CURSOR_PSET_SHIFT) \
747 | (((u32)(post)) << \
748 PCIE_CFG_REG_PL102_GEN3_EQ_POST_CURSOR_PSET_SHIFT))
749
750/*
751 * Load the given EQ preset table into the PCIe hardware.
752 */
753static int load_eq_table(struct hfi1_devdata *dd, const u8 eq[11][3], u8 fs,
754 u8 div)
755{
756 struct pci_dev *pdev = dd->pcidev;
757 u32 hit_error = 0;
758 u32 violation;
759 u32 i;
760 u8 c_minus1, c0, c_plus1;
761
762 for (i = 0; i < 11; i++) {
763 /* set index */
764 pci_write_config_dword(pdev, PCIE_CFG_REG_PL103, i);
765 /* write the value */
766 c_minus1 = eq[i][PREC] / div;
767 c0 = fs - (eq[i][PREC] / div) - (eq[i][POST] / div);
768 c_plus1 = eq[i][POST] / div;
769 pci_write_config_dword(pdev, PCIE_CFG_REG_PL102,
Jubin John17fb4f22016-02-14 20:21:52 -0800770 eq_value(c_minus1, c0, c_plus1));
Mike Marciniszyn77241052015-07-30 15:17:43 -0400771 /* check if these coefficients violate EQ rules */
772 pci_read_config_dword(dd->pcidev, PCIE_CFG_REG_PL105,
Jubin John17fb4f22016-02-14 20:21:52 -0800773 &violation);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400774 if (violation
775 & PCIE_CFG_REG_PL105_GEN3_EQ_VIOLATE_COEF_RULES_SMASK){
776 if (hit_error == 0) {
777 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -0800778 "Gen3 EQ Table Coefficient rule violations\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -0400779 dd_dev_err(dd, " prec attn post\n");
780 }
781 dd_dev_err(dd, " p%02d: %02x %02x %02x\n",
Jubin John17fb4f22016-02-14 20:21:52 -0800782 i, (u32)eq[i][0], (u32)eq[i][1],
783 (u32)eq[i][2]);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400784 dd_dev_err(dd, " %02x %02x %02x\n",
Jubin John17fb4f22016-02-14 20:21:52 -0800785 (u32)c_minus1, (u32)c0, (u32)c_plus1);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400786 hit_error = 1;
787 }
788 }
789 if (hit_error)
790 return -EINVAL;
791 return 0;
792}
793
794/*
795 * Steps to be done after the PCIe firmware is downloaded and
796 * before the SBR for the Pcie Gen3.
Dean Luick576531f2016-03-05 08:50:01 -0800797 * The SBus resource is already being held.
Mike Marciniszyn77241052015-07-30 15:17:43 -0400798 */
799static void pcie_post_steps(struct hfi1_devdata *dd)
800{
801 int i;
802
803 set_sbus_fast_mode(dd);
804 /*
805 * Write to the PCIe PCSes to set the G3_LOCKED_NEXT bits to 1.
806 * This avoids a spurious framing error that can otherwise be
807 * generated by the MAC layer.
808 *
809 * Use individual addresses since no broadcast is set up.
810 */
811 for (i = 0; i < NUM_PCIE_SERDES; i++) {
812 sbus_request(dd, pcie_pcs_addrs[dd->hfi1_id][i],
813 0x03, WRITE_SBUS_RECEIVER, 0x00022132);
814 }
815
816 clear_sbus_fast_mode(dd);
817}
818
819/*
820 * Trigger a secondary bus reset (SBR) on ourselves using our parent.
821 *
822 * Based on pci_parent_bus_reset() which is not exported by the
823 * kernel core.
824 */
825static int trigger_sbr(struct hfi1_devdata *dd)
826{
827 struct pci_dev *dev = dd->pcidev;
828 struct pci_dev *pdev;
829
830 /* need a parent */
831 if (!dev->bus->self) {
832 dd_dev_err(dd, "%s: no parent device\n", __func__);
833 return -ENOTTY;
834 }
835
836 /* should not be anyone else on the bus */
837 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
838 if (pdev != dev) {
839 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -0800840 "%s: another device is on the same bus\n",
841 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400842 return -ENOTTY;
843 }
844
845 /*
846 * A secondary bus reset (SBR) issues a hot reset to our device.
847 * The following routine does a 1s wait after the reset is dropped
848 * per PCI Trhfa (recovery time). PCIe 3.0 section 6.6.1 -
849 * Conventional Reset, paragraph 3, line 35 also says that a 1s
850 * delay after a reset is required. Per spec requirements,
851 * the link is either working or not after that point.
852 */
853 pci_reset_bridge_secondary_bus(dev->bus->self);
854
855 return 0;
856}
857
858/*
859 * Write the given gasket interrupt register.
860 */
861static void write_gasket_interrupt(struct hfi1_devdata *dd, int index,
862 u16 code, u16 data)
863{
864 write_csr(dd, ASIC_PCIE_SD_INTRPT_LIST + (index * 8),
Jubin John17fb4f22016-02-14 20:21:52 -0800865 (((u64)code << ASIC_PCIE_SD_INTRPT_LIST_INTRPT_CODE_SHIFT) |
866 ((u64)data << ASIC_PCIE_SD_INTRPT_LIST_INTRPT_DATA_SHIFT)));
Mike Marciniszyn77241052015-07-30 15:17:43 -0400867}
868
869/*
870 * Tell the gasket logic how to react to the reset.
871 */
872static void arm_gasket_logic(struct hfi1_devdata *dd)
873{
874 u64 reg;
875
Jubin John17fb4f22016-02-14 20:21:52 -0800876 reg = (((u64)1 << dd->hfi1_id) <<
877 ASIC_PCIE_SD_HOST_CMD_INTRPT_CMD_SHIFT) |
878 ((u64)pcie_serdes_broadcast[dd->hfi1_id] <<
879 ASIC_PCIE_SD_HOST_CMD_SBUS_RCVR_ADDR_SHIFT |
880 ASIC_PCIE_SD_HOST_CMD_SBR_MODE_SMASK |
881 ((u64)SBR_DELAY_US & ASIC_PCIE_SD_HOST_CMD_TIMER_MASK) <<
882 ASIC_PCIE_SD_HOST_CMD_TIMER_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400883 write_csr(dd, ASIC_PCIE_SD_HOST_CMD, reg);
884 /* read back to push the write */
885 read_csr(dd, ASIC_PCIE_SD_HOST_CMD);
886}
887
888/*
Dean Luick14d88ec2015-12-21 20:31:53 -0500889 * CCE_PCIE_CTRL long name helpers
890 * We redefine these shorter macros to use in the code while leaving
891 * chip_registers.h to be autogenerated from the hardware spec.
892 */
893#define LANE_BUNDLE_MASK CCE_PCIE_CTRL_PCIE_LANE_BUNDLE_MASK
894#define LANE_BUNDLE_SHIFT CCE_PCIE_CTRL_PCIE_LANE_BUNDLE_SHIFT
895#define LANE_DELAY_MASK CCE_PCIE_CTRL_PCIE_LANE_DELAY_MASK
896#define LANE_DELAY_SHIFT CCE_PCIE_CTRL_PCIE_LANE_DELAY_SHIFT
897#define MARGIN_OVERWRITE_ENABLE_SHIFT CCE_PCIE_CTRL_XMT_MARGIN_OVERWRITE_ENABLE_SHIFT
898#define MARGIN_SHIFT CCE_PCIE_CTRL_XMT_MARGIN_SHIFT
899#define MARGIN_G1_G2_OVERWRITE_MASK CCE_PCIE_CTRL_XMT_MARGIN_GEN1_GEN2_OVERWRITE_ENABLE_MASK
900#define MARGIN_G1_G2_OVERWRITE_SHIFT CCE_PCIE_CTRL_XMT_MARGIN_GEN1_GEN2_OVERWRITE_ENABLE_SHIFT
901#define MARGIN_GEN1_GEN2_MASK CCE_PCIE_CTRL_XMT_MARGIN_GEN1_GEN2_MASK
902#define MARGIN_GEN1_GEN2_SHIFT CCE_PCIE_CTRL_XMT_MARGIN_GEN1_GEN2_SHIFT
903
904 /*
905 * Write xmt_margin for full-swing (WFR-B) or half-swing (WFR-C).
906 */
907static void write_xmt_margin(struct hfi1_devdata *dd, const char *fname)
908{
909 u64 pcie_ctrl;
910 u64 xmt_margin;
911 u64 xmt_margin_oe;
912 u64 lane_delay;
913 u64 lane_bundle;
914
915 pcie_ctrl = read_csr(dd, CCE_PCIE_CTRL);
916
917 /*
918 * For Discrete, use full-swing.
919 * - PCIe TX defaults to full-swing.
920 * Leave this register as default.
921 * For Integrated, use half-swing
922 * - Copy xmt_margin and xmt_margin_oe
923 * from Gen1/Gen2 to Gen3.
924 */
925 if (dd->pcidev->device == PCI_DEVICE_ID_INTEL1) { /* integrated */
926 /* extract initial fields */
927 xmt_margin = (pcie_ctrl >> MARGIN_GEN1_GEN2_SHIFT)
928 & MARGIN_GEN1_GEN2_MASK;
929 xmt_margin_oe = (pcie_ctrl >> MARGIN_G1_G2_OVERWRITE_SHIFT)
930 & MARGIN_G1_G2_OVERWRITE_MASK;
931 lane_delay = (pcie_ctrl >> LANE_DELAY_SHIFT) & LANE_DELAY_MASK;
932 lane_bundle = (pcie_ctrl >> LANE_BUNDLE_SHIFT)
933 & LANE_BUNDLE_MASK;
934
935 /*
936 * For A0, EFUSE values are not set. Override with the
937 * correct values.
938 */
939 if (is_ax(dd)) {
940 /*
941 * xmt_margin and OverwiteEnabel should be the
942 * same for Gen1/Gen2 and Gen3
943 */
944 xmt_margin = 0x5;
945 xmt_margin_oe = 0x1;
946 lane_delay = 0xF; /* Delay 240ns. */
947 lane_bundle = 0x0; /* Set to 1 lane. */
948 }
949
950 /* overwrite existing values */
951 pcie_ctrl = (xmt_margin << MARGIN_GEN1_GEN2_SHIFT)
952 | (xmt_margin_oe << MARGIN_G1_G2_OVERWRITE_SHIFT)
953 | (xmt_margin << MARGIN_SHIFT)
954 | (xmt_margin_oe << MARGIN_OVERWRITE_ENABLE_SHIFT)
955 | (lane_delay << LANE_DELAY_SHIFT)
956 | (lane_bundle << LANE_BUNDLE_SHIFT);
957
958 write_csr(dd, CCE_PCIE_CTRL, pcie_ctrl);
959 }
960
961 dd_dev_dbg(dd, "%s: program XMT margin, CcePcieCtrl 0x%llx\n",
962 fname, pcie_ctrl);
963}
964
965/*
Mike Marciniszyn77241052015-07-30 15:17:43 -0400966 * Do all the steps needed to transition the PCIe link to Gen3 speed.
967 */
968int do_pcie_gen3_transition(struct hfi1_devdata *dd)
969{
Kaike Wanbf400232016-02-26 13:33:18 -0800970 struct pci_dev *parent = dd->pcidev->bus->self;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400971 u64 fw_ctrl;
972 u64 reg, therm;
973 u32 reg32, fs, lf;
974 u32 status, err;
975 int ret;
976 int do_retry, retry_count = 0;
Dean Luickc3f8de02016-07-25 13:39:21 -0700977 int intnum = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400978 uint default_pset;
979 u16 target_vector, target_speed;
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -0800980 u16 lnkctl2, vendor;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400981 u8 div;
982 const u8 (*eq)[3];
Dean Luickc3f8de02016-07-25 13:39:21 -0700983 const u8 (*ctle_tunings)[4];
984 uint static_ctle_mode;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400985 int return_error = 0;
986
987 /* PCIe Gen3 is for the ASIC only */
988 if (dd->icode != ICODE_RTL_SILICON)
989 return 0;
990
991 if (pcie_target == 1) { /* target Gen1 */
992 target_vector = GEN1_SPEED_VECTOR;
993 target_speed = 2500;
994 } else if (pcie_target == 2) { /* target Gen2 */
995 target_vector = GEN2_SPEED_VECTOR;
996 target_speed = 5000;
997 } else if (pcie_target == 3) { /* target Gen3 */
998 target_vector = GEN3_SPEED_VECTOR;
999 target_speed = 8000;
1000 } else {
1001 /* off or invalid target - skip */
1002 dd_dev_info(dd, "%s: Skipping PCIe transition\n", __func__);
1003 return 0;
1004 }
1005
1006 /* if already at target speed, done (unless forced) */
1007 if (dd->lbus_speed == target_speed) {
1008 dd_dev_info(dd, "%s: PCIe already at gen%d, %s\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -08001009 pcie_target,
1010 pcie_force ? "re-doing anyway" : "skipping");
Mike Marciniszyn77241052015-07-30 15:17:43 -04001011 if (!pcie_force)
1012 return 0;
1013 }
1014
1015 /*
Kaike Wanbf400232016-02-26 13:33:18 -08001016 * The driver cannot do the transition if it has no access to the
1017 * upstream component
Mike Marciniszyn77241052015-07-30 15:17:43 -04001018 */
Kaike Wanbf400232016-02-26 13:33:18 -08001019 if (!parent) {
1020 dd_dev_info(dd, "%s: No upstream, Can't do gen3 transition\n",
1021 __func__);
1022 return 0;
1023 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001024
1025 /*
1026 * Do the Gen3 transition. Steps are those of the PCIe Gen3
1027 * recipe.
1028 */
1029
1030 /* step 1: pcie link working in gen1/gen2 */
1031
1032 /* step 2: if either side is not capable of Gen3, done */
1033 if (pcie_target == 3 && !dd->link_gen3_capable) {
1034 dd_dev_err(dd, "The PCIe link is not Gen3 capable\n");
1035 ret = -ENOSYS;
1036 goto done_no_mutex;
1037 }
1038
Dean Luick576531f2016-03-05 08:50:01 -08001039 /* hold the SBus resource across the firmware download and SBR */
1040 ret = acquire_chip_resource(dd, CR_SBUS, SBUS_TIMEOUT);
1041 if (ret) {
1042 dd_dev_err(dd, "%s: unable to acquire SBus resource\n",
1043 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001044 return ret;
Dean Luick576531f2016-03-05 08:50:01 -08001045 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001046
1047 /* make sure thermal polling is not causing interrupts */
1048 therm = read_csr(dd, ASIC_CFG_THERM_POLL_EN);
1049 if (therm) {
1050 write_csr(dd, ASIC_CFG_THERM_POLL_EN, 0x0);
1051 msleep(100);
1052 dd_dev_info(dd, "%s: Disabled therm polling\n",
1053 __func__);
1054 }
1055
Caz Yokoyamac91b4a12015-10-26 10:28:34 -04001056retry:
Dean Luick65fcf552015-11-06 20:06:59 -05001057 /* the SBus download will reset the spico for thermal */
Caz Yokoyamac91b4a12015-10-26 10:28:34 -04001058
Mike Marciniszyn77241052015-07-30 15:17:43 -04001059 /* step 3: download SBus Master firmware */
1060 /* step 4: download PCIe Gen3 SerDes firmware */
Mike Marciniszyn77241052015-07-30 15:17:43 -04001061 dd_dev_info(dd, "%s: downloading firmware\n", __func__);
1062 ret = load_pcie_firmware(dd);
Dean Luick6b14e0e2016-02-03 14:31:40 -08001063 if (ret) {
1064 /* do not proceed if the firmware cannot be downloaded */
1065 return_error = 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001066 goto done;
Dean Luick6b14e0e2016-02-03 14:31:40 -08001067 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001068
1069 /* step 5: set up device parameter settings */
1070 dd_dev_info(dd, "%s: setting PCIe registers\n", __func__);
1071
1072 /*
1073 * PcieCfgSpcie1 - Link Control 3
1074 * Leave at reset value. No need to set PerfEq - link equalization
1075 * will be performed automatically after the SBR when the target
1076 * speed is 8GT/s.
1077 */
1078
1079 /* clear all 16 per-lane error bits (PCIe: Lane Error Status) */
1080 pci_write_config_dword(dd->pcidev, PCIE_CFG_SPCIE2, 0xffff);
1081
1082 /* step 5a: Set Synopsys Port Logic registers */
1083
1084 /*
1085 * PcieCfgRegPl2 - Port Force Link
1086 *
1087 * Set the low power field to 0x10 to avoid unnecessary power
1088 * management messages. All other fields are zero.
1089 */
1090 reg32 = 0x10ul << PCIE_CFG_REG_PL2_LOW_PWR_ENT_CNT_SHIFT;
1091 pci_write_config_dword(dd->pcidev, PCIE_CFG_REG_PL2, reg32);
1092
1093 /*
1094 * PcieCfgRegPl100 - Gen3 Control
1095 *
1096 * turn off PcieCfgRegPl100.Gen3ZRxDcNonCompl
Edward Mascarenhas80e48982015-12-21 21:57:44 -05001097 * turn on PcieCfgRegPl100.EqEieosCnt
Mike Marciniszyn77241052015-07-30 15:17:43 -04001098 * Everything else zero.
1099 */
1100 reg32 = PCIE_CFG_REG_PL100_EQ_EIEOS_CNT_SMASK;
1101 pci_write_config_dword(dd->pcidev, PCIE_CFG_REG_PL100, reg32);
1102
1103 /*
1104 * PcieCfgRegPl101 - Gen3 EQ FS and LF
1105 * PcieCfgRegPl102 - Gen3 EQ Presets to Coefficients Mapping
1106 * PcieCfgRegPl103 - Gen3 EQ Preset Index
1107 * PcieCfgRegPl105 - Gen3 EQ Status
1108 *
1109 * Give initial EQ settings.
1110 */
1111 if (dd->pcidev->device == PCI_DEVICE_ID_INTEL0) { /* discrete */
1112 /* 1000mV, FS=24, LF = 8 */
1113 fs = 24;
1114 lf = 8;
1115 div = 3;
1116 eq = discrete_preliminary_eq;
1117 default_pset = DEFAULT_DISCRETE_PSET;
Dean Luickc3f8de02016-07-25 13:39:21 -07001118 ctle_tunings = discrete_ctle_tunings;
1119 /* bit 0 - discrete on/off */
1120 static_ctle_mode = pcie_ctle & 0x1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001121 } else {
1122 /* 400mV, FS=29, LF = 9 */
1123 fs = 29;
1124 lf = 9;
1125 div = 1;
1126 eq = integrated_preliminary_eq;
1127 default_pset = DEFAULT_MCP_PSET;
Dean Luickc3f8de02016-07-25 13:39:21 -07001128 ctle_tunings = integrated_ctle_tunings;
1129 /* bit 1 - integrated on/off */
1130 static_ctle_mode = (pcie_ctle >> 1) & 0x1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001131 }
1132 pci_write_config_dword(dd->pcidev, PCIE_CFG_REG_PL101,
Jubin John17fb4f22016-02-14 20:21:52 -08001133 (fs <<
1134 PCIE_CFG_REG_PL101_GEN3_EQ_LOCAL_FS_SHIFT) |
1135 (lf <<
1136 PCIE_CFG_REG_PL101_GEN3_EQ_LOCAL_LF_SHIFT));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001137 ret = load_eq_table(dd, eq, fs, div);
1138 if (ret)
1139 goto done;
1140
1141 /*
1142 * PcieCfgRegPl106 - Gen3 EQ Control
1143 *
1144 * Set Gen3EqPsetReqVec, leave other fields 0.
1145 */
1146 if (pcie_pset == UNSET_PSET)
1147 pcie_pset = default_pset;
1148 if (pcie_pset > 10) { /* valid range is 0-10, inclusive */
1149 dd_dev_err(dd, "%s: Invalid Eq Pset %u, setting to %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08001150 __func__, pcie_pset, default_pset);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001151 pcie_pset = default_pset;
1152 }
1153 dd_dev_info(dd, "%s: using EQ Pset %u\n", __func__, pcie_pset);
1154 pci_write_config_dword(dd->pcidev, PCIE_CFG_REG_PL106,
Jubin John17fb4f22016-02-14 20:21:52 -08001155 ((1 << pcie_pset) <<
1156 PCIE_CFG_REG_PL106_GEN3_EQ_PSET_REQ_VEC_SHIFT) |
1157 PCIE_CFG_REG_PL106_GEN3_EQ_EVAL2MS_DISABLE_SMASK |
1158 PCIE_CFG_REG_PL106_GEN3_EQ_PHASE23_EXIT_MODE_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001159
1160 /*
1161 * step 5b: Do post firmware download steps via SBus
1162 */
1163 dd_dev_info(dd, "%s: doing pcie post steps\n", __func__);
1164 pcie_post_steps(dd);
1165
1166 /*
1167 * step 5c: Program gasket interrupts
1168 */
1169 /* set the Rx Bit Rate to REFCLK ratio */
Dean Luickc3f8de02016-07-25 13:39:21 -07001170 write_gasket_interrupt(dd, intnum++, 0x0006, 0x0050);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001171 /* disable pCal for PCIe Gen3 RX equalization */
Dean Luickc3f8de02016-07-25 13:39:21 -07001172 /* select adaptive or static CTLE */
1173 write_gasket_interrupt(dd, intnum++, 0x0026,
1174 0x5b01 | (static_ctle_mode << 3));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001175 /*
1176 * Enable iCal for PCIe Gen3 RX equalization, and set which
1177 * evaluation of RX_EQ_EVAL will launch the iCal procedure.
1178 */
Dean Luickc3f8de02016-07-25 13:39:21 -07001179 write_gasket_interrupt(dd, intnum++, 0x0026, 0x5202);
1180
1181 if (static_ctle_mode) {
1182 /* apply static CTLE tunings */
1183 u8 pcie_dc, pcie_lf, pcie_hf, pcie_bw;
1184
1185 pcie_dc = ctle_tunings[pcie_pset][0];
1186 pcie_lf = ctle_tunings[pcie_pset][1];
1187 pcie_hf = ctle_tunings[pcie_pset][2];
1188 pcie_bw = ctle_tunings[pcie_pset][3];
1189 write_gasket_interrupt(dd, intnum++, 0x0026, 0x0200 | pcie_dc);
1190 write_gasket_interrupt(dd, intnum++, 0x0026, 0x0100 | pcie_lf);
1191 write_gasket_interrupt(dd, intnum++, 0x0026, 0x0000 | pcie_hf);
1192 write_gasket_interrupt(dd, intnum++, 0x0026, 0x5500 | pcie_bw);
1193 }
1194
Mike Marciniszyn77241052015-07-30 15:17:43 -04001195 /* terminate list */
Dean Luickc3f8de02016-07-25 13:39:21 -07001196 write_gasket_interrupt(dd, intnum++, 0x0000, 0x0000);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001197
1198 /*
1199 * step 5d: program XMT margin
Mike Marciniszyn77241052015-07-30 15:17:43 -04001200 */
Dean Luick14d88ec2015-12-21 20:31:53 -05001201 write_xmt_margin(dd, __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001202
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -08001203 /*
1204 * step 5e: disable active state power management (ASPM). It
1205 * will be enabled if required later
1206 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04001207 dd_dev_info(dd, "%s: clearing ASPM\n", __func__);
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -08001208 aspm_hw_disable_l1(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001209
1210 /*
1211 * step 5f: clear DirectSpeedChange
1212 * PcieCfgRegPl67.DirectSpeedChange must be zero to prevent the
1213 * change in the speed target from starting before we are ready.
1214 * This field defaults to 0 and we are not changing it, so nothing
1215 * needs to be done.
1216 */
1217
1218 /* step 5g: Set target link speed */
1219 /*
1220 * Set target link speed to be target on both device and parent.
1221 * On setting the parent: Some system BIOSs "helpfully" set the
1222 * parent target speed to Gen2 to match the ASIC's initial speed.
1223 * We can set the target Gen3 because we have already checked
1224 * that it is Gen3 capable earlier.
1225 */
1226 dd_dev_info(dd, "%s: setting parent target link speed\n", __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001227 pcie_capability_read_word(parent, PCI_EXP_LNKCTL2, &lnkctl2);
1228 dd_dev_info(dd, "%s: ..old link control2: 0x%x\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -08001229 (u32)lnkctl2);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001230 /* only write to parent if target is not as high as ours */
1231 if ((lnkctl2 & LNKCTL2_TARGET_LINK_SPEED_MASK) < target_vector) {
1232 lnkctl2 &= ~LNKCTL2_TARGET_LINK_SPEED_MASK;
1233 lnkctl2 |= target_vector;
1234 dd_dev_info(dd, "%s: ..new link control2: 0x%x\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -08001235 (u32)lnkctl2);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001236 pcie_capability_write_word(parent, PCI_EXP_LNKCTL2, lnkctl2);
1237 } else {
1238 dd_dev_info(dd, "%s: ..target speed is OK\n", __func__);
1239 }
1240
1241 dd_dev_info(dd, "%s: setting target link speed\n", __func__);
1242 pcie_capability_read_word(dd->pcidev, PCI_EXP_LNKCTL2, &lnkctl2);
1243 dd_dev_info(dd, "%s: ..old link control2: 0x%x\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -08001244 (u32)lnkctl2);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001245 lnkctl2 &= ~LNKCTL2_TARGET_LINK_SPEED_MASK;
1246 lnkctl2 |= target_vector;
1247 dd_dev_info(dd, "%s: ..new link control2: 0x%x\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -08001248 (u32)lnkctl2);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001249 pcie_capability_write_word(dd->pcidev, PCI_EXP_LNKCTL2, lnkctl2);
1250
1251 /* step 5h: arm gasket logic */
1252 /* hold DC in reset across the SBR */
1253 write_csr(dd, CCE_DC_CTRL, CCE_DC_CTRL_DC_RESET_SMASK);
Jubin John50e5dcb2016-02-14 20:19:41 -08001254 (void)read_csr(dd, CCE_DC_CTRL); /* DC reset hold */
Mike Marciniszyn77241052015-07-30 15:17:43 -04001255 /* save firmware control across the SBR */
1256 fw_ctrl = read_csr(dd, MISC_CFG_FW_CTRL);
1257
1258 dd_dev_info(dd, "%s: arming gasket logic\n", __func__);
1259 arm_gasket_logic(dd);
1260
1261 /*
1262 * step 6: quiesce PCIe link
1263 * The chip has already been reset, so there will be no traffic
1264 * from the chip. Linux has no easy way to enforce that it will
1265 * not try to access the device, so we just need to hope it doesn't
1266 * do it while we are doing the reset.
1267 */
1268
1269 /*
1270 * step 7: initiate the secondary bus reset (SBR)
1271 * step 8: hardware brings the links back up
1272 * step 9: wait for link speed transition to be complete
1273 */
1274 dd_dev_info(dd, "%s: calling trigger_sbr\n", __func__);
1275 ret = trigger_sbr(dd);
1276 if (ret)
1277 goto done;
1278
1279 /* step 10: decide what to do next */
1280
1281 /* check if we can read PCI space */
1282 ret = pci_read_config_word(dd->pcidev, PCI_VENDOR_ID, &vendor);
1283 if (ret) {
1284 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08001285 "%s: read of VendorID failed after SBR, err %d\n",
1286 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001287 return_error = 1;
1288 goto done;
1289 }
1290 if (vendor == 0xffff) {
1291 dd_dev_info(dd, "%s: VendorID is all 1s after SBR\n", __func__);
1292 return_error = 1;
1293 ret = -EIO;
1294 goto done;
1295 }
1296
1297 /* restore PCI space registers we know were reset */
1298 dd_dev_info(dd, "%s: calling restore_pci_variables\n", __func__);
1299 restore_pci_variables(dd);
1300 /* restore firmware control */
1301 write_csr(dd, MISC_CFG_FW_CTRL, fw_ctrl);
1302
1303 /*
1304 * Check the gasket block status.
1305 *
1306 * This is the first CSR read after the SBR. If the read returns
1307 * all 1s (fails), the link did not make it back.
1308 *
1309 * Once we're sure we can read and write, clear the DC reset after
1310 * the SBR. Then check for any per-lane errors. Then look over
1311 * the status.
1312 */
1313 reg = read_csr(dd, ASIC_PCIE_SD_HOST_STATUS);
1314 dd_dev_info(dd, "%s: gasket block status: 0x%llx\n", __func__, reg);
1315 if (reg == ~0ull) { /* PCIe read failed/timeout */
1316 dd_dev_err(dd, "SBR failed - unable to read from device\n");
1317 return_error = 1;
1318 ret = -ENOSYS;
1319 goto done;
1320 }
1321
1322 /* clear the DC reset */
1323 write_csr(dd, CCE_DC_CTRL, 0);
Easwar Hariharanabfc4452015-10-26 10:28:46 -04001324
Mike Marciniszyn77241052015-07-30 15:17:43 -04001325 /* Set the LED off */
Sebastian Sanchez773d04512016-02-09 14:29:40 -08001326 setextled(dd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001327
1328 /* check for any per-lane errors */
1329 pci_read_config_dword(dd->pcidev, PCIE_CFG_SPCIE2, &reg32);
1330 dd_dev_info(dd, "%s: per-lane errors: 0x%x\n", __func__, reg32);
1331
1332 /* extract status, look for our HFI */
1333 status = (reg >> ASIC_PCIE_SD_HOST_STATUS_FW_DNLD_STS_SHIFT)
1334 & ASIC_PCIE_SD_HOST_STATUS_FW_DNLD_STS_MASK;
1335 if ((status & (1 << dd->hfi1_id)) == 0) {
1336 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08001337 "%s: gasket status 0x%x, expecting 0x%x\n",
1338 __func__, status, 1 << dd->hfi1_id);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001339 ret = -EIO;
1340 goto done;
1341 }
1342
1343 /* extract error */
1344 err = (reg >> ASIC_PCIE_SD_HOST_STATUS_FW_DNLD_ERR_SHIFT)
1345 & ASIC_PCIE_SD_HOST_STATUS_FW_DNLD_ERR_MASK;
1346 if (err) {
1347 dd_dev_err(dd, "%s: gasket error %d\n", __func__, err);
1348 ret = -EIO;
1349 goto done;
1350 }
1351
1352 /* update our link information cache */
1353 update_lbus_info(dd);
1354 dd_dev_info(dd, "%s: new speed and width: %s\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -08001355 dd->lbus_info);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001356
1357 if (dd->lbus_speed != target_speed) { /* not target */
1358 /* maybe retry */
1359 do_retry = retry_count < pcie_retry;
1360 dd_dev_err(dd, "PCIe link speed did not switch to Gen%d%s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08001361 pcie_target, do_retry ? ", retrying" : "");
Mike Marciniszyn77241052015-07-30 15:17:43 -04001362 retry_count++;
1363 if (do_retry) {
1364 msleep(100); /* allow time to settle */
1365 goto retry;
1366 }
1367 ret = -EIO;
1368 }
1369
1370done:
1371 if (therm) {
1372 write_csr(dd, ASIC_CFG_THERM_POLL_EN, 0x1);
1373 msleep(100);
1374 dd_dev_info(dd, "%s: Re-enable therm polling\n",
1375 __func__);
1376 }
Dean Luick576531f2016-03-05 08:50:01 -08001377 release_chip_resource(dd, CR_SBUS);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001378done_no_mutex:
1379 /* return no error if it is OK to be at current speed */
1380 if (ret && !return_error) {
1381 dd_dev_err(dd, "Proceeding at current speed PCIe speed\n");
1382 ret = 0;
1383 }
1384
1385 dd_dev_info(dd, "%s: done\n", __func__);
1386 return ret;
1387}