GNU Linux-libre 4.19.264-gnu1
[releases.git] / drivers / infiniband / hw / hfi1 / pcie.c
1 /*
2  * Copyright(c) 2015 - 2017 Intel Corporation.
3  *
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  *
9  * 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  *
20  * 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"
57 #include "aspm.h"
58
59 /*
60  * This file contains PCIe utility routines.
61  */
62
63 /*
64  * Code to adjust PCIe capabilities.
65  */
66 static void tune_pcie_caps(struct hfi1_devdata *);
67
68 /*
69  * Do all the common PCIe setup and initialization.
70  * devdata is not yet allocated, and is not allocated until after this
71  * routine returns success.  Therefore dd_dev_err() can't be used for error
72  * printing.
73  */
74 int hfi1_pcie_init(struct pci_dev *pdev, const struct pci_device_id *ent)
75 {
76         int ret;
77
78         ret = pci_enable_device(pdev);
79         if (ret) {
80                 /*
81                  * This can happen (in theory) iff:
82                  * We did a chip reset, and then failed to reprogram the
83                  * BAR, or the chip reset due to an internal error.  We then
84                  * unloaded the driver and reloaded it.
85                  *
86                  * Both reset cases set the BAR back to initial state.  For
87                  * the latter case, the AER sticky error bit at offset 0x718
88                  * should be set, but the Linux kernel doesn't yet know
89                  * about that, it appears.  If the original BAR was retained
90                  * in the kernel data structures, this may be OK.
91                  */
92                 hfi1_early_err(&pdev->dev, "pci enable failed: error %d\n",
93                                -ret);
94                 goto done;
95         }
96
97         ret = pci_request_regions(pdev, DRIVER_NAME);
98         if (ret) {
99                 hfi1_early_err(&pdev->dev,
100                                "pci_request_regions fails: err %d\n", -ret);
101                 goto bail;
102         }
103
104         ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
105         if (ret) {
106                 /*
107                  * If the 64 bit setup fails, try 32 bit.  Some systems
108                  * do not setup 64 bit maps on systems with 2GB or less
109                  * memory installed.
110                  */
111                 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
112                 if (ret) {
113                         hfi1_early_err(&pdev->dev,
114                                        "Unable to set DMA mask: %d\n", ret);
115                         goto bail;
116                 }
117                 ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
118         } else {
119                 ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
120         }
121         if (ret) {
122                 hfi1_early_err(&pdev->dev,
123                                "Unable to set DMA consistent mask: %d\n", ret);
124                 goto bail;
125         }
126
127         pci_set_master(pdev);
128         (void)pci_enable_pcie_error_reporting(pdev);
129         goto done;
130
131 bail:
132         hfi1_pcie_cleanup(pdev);
133 done:
134         return ret;
135 }
136
137 /*
138  * Clean what was done in hfi1_pcie_init()
139  */
140 void hfi1_pcie_cleanup(struct pci_dev *pdev)
141 {
142         pci_disable_device(pdev);
143         /*
144          * Release regions should be called after the disable. OK to
145          * call if request regions has not been called or failed.
146          */
147         pci_release_regions(pdev);
148 }
149
150 /*
151  * Do remaining PCIe setup, once dd is allocated, and save away
152  * fields required to re-initialize after a chip reset, or for
153  * various other purposes
154  */
155 int hfi1_pcie_ddinit(struct hfi1_devdata *dd, struct pci_dev *pdev)
156 {
157         unsigned long len;
158         resource_size_t addr;
159         int ret = 0;
160         u32 rcv_array_count;
161
162         addr = pci_resource_start(pdev, 0);
163         len = pci_resource_len(pdev, 0);
164
165         /*
166          * The TXE PIO buffers are at the tail end of the chip space.
167          * Cut them off and map them separately.
168          */
169
170         /* sanity check vs expectations */
171         if (len != TXE_PIO_SEND + TXE_PIO_SIZE) {
172                 dd_dev_err(dd, "chip PIO range does not match\n");
173                 return -EINVAL;
174         }
175
176         dd->kregbase1 = ioremap_nocache(addr, RCV_ARRAY);
177         if (!dd->kregbase1) {
178                 dd_dev_err(dd, "UC mapping of kregbase1 failed\n");
179                 return -ENOMEM;
180         }
181         dd_dev_info(dd, "UC base1: %p for %x\n", dd->kregbase1, RCV_ARRAY);
182
183         /* verify that reads actually work, save revision for reset check */
184         dd->revision = readq(dd->kregbase1 + CCE_REVISION);
185         if (dd->revision == ~(u64)0) {
186                 dd_dev_err(dd, "Cannot read chip CSRs\n");
187                 goto nomem;
188         }
189
190         rcv_array_count = readq(dd->kregbase1 + RCV_ARRAY_CNT);
191         dd_dev_info(dd, "RcvArray count: %u\n", rcv_array_count);
192         dd->base2_start  = RCV_ARRAY + rcv_array_count * 8;
193
194         dd->kregbase2 = ioremap_nocache(
195                 addr + dd->base2_start,
196                 TXE_PIO_SEND - dd->base2_start);
197         if (!dd->kregbase2) {
198                 dd_dev_err(dd, "UC mapping of kregbase2 failed\n");
199                 goto nomem;
200         }
201         dd_dev_info(dd, "UC base2: %p for %x\n", dd->kregbase2,
202                     TXE_PIO_SEND - dd->base2_start);
203
204         dd->piobase = ioremap_wc(addr + TXE_PIO_SEND, TXE_PIO_SIZE);
205         if (!dd->piobase) {
206                 dd_dev_err(dd, "WC mapping of send buffers failed\n");
207                 goto nomem;
208         }
209         dd_dev_info(dd, "WC piobase: %p\n for %x", dd->piobase, TXE_PIO_SIZE);
210
211         dd->physaddr = addr;        /* used for io_remap, etc. */
212
213         /*
214          * Map the chip's RcvArray as write-combining to allow us
215          * to write an entire cacheline worth of entries in one shot.
216          */
217         dd->rcvarray_wc = ioremap_wc(addr + RCV_ARRAY,
218                                      rcv_array_count * 8);
219         if (!dd->rcvarray_wc) {
220                 dd_dev_err(dd, "WC mapping of receive array failed\n");
221                 goto nomem;
222         }
223         dd_dev_info(dd, "WC RcvArray: %p for %x\n",
224                     dd->rcvarray_wc, rcv_array_count * 8);
225
226         dd->flags |= HFI1_PRESENT;      /* chip.c CSR routines now work */
227         return 0;
228 nomem:
229         ret = -ENOMEM;
230         hfi1_pcie_ddcleanup(dd);
231         return ret;
232 }
233
234 /*
235  * Do PCIe cleanup related to dd, after chip-specific cleanup, etc.  Just prior
236  * to releasing the dd memory.
237  * Void because all of the core pcie cleanup functions are void.
238  */
239 void hfi1_pcie_ddcleanup(struct hfi1_devdata *dd)
240 {
241         dd->flags &= ~HFI1_PRESENT;
242         if (dd->kregbase1)
243                 iounmap(dd->kregbase1);
244         dd->kregbase1 = NULL;
245         if (dd->kregbase2)
246                 iounmap(dd->kregbase2);
247         dd->kregbase2 = NULL;
248         if (dd->rcvarray_wc)
249                 iounmap(dd->rcvarray_wc);
250         dd->rcvarray_wc = NULL;
251         if (dd->piobase)
252                 iounmap(dd->piobase);
253         dd->piobase = NULL;
254 }
255
256 /* return the PCIe link speed from the given link status */
257 static u32 extract_speed(u16 linkstat)
258 {
259         u32 speed;
260
261         switch (linkstat & PCI_EXP_LNKSTA_CLS) {
262         default: /* not defined, assume Gen1 */
263         case PCI_EXP_LNKSTA_CLS_2_5GB:
264                 speed = 2500; /* Gen 1, 2.5GHz */
265                 break;
266         case PCI_EXP_LNKSTA_CLS_5_0GB:
267                 speed = 5000; /* Gen 2, 5GHz */
268                 break;
269         case PCI_EXP_LNKSTA_CLS_8_0GB:
270                 speed = 8000; /* Gen 3, 8GHz */
271                 break;
272         }
273         return speed;
274 }
275
276 /* return the PCIe link speed from the given link status */
277 static u32 extract_width(u16 linkstat)
278 {
279         return (linkstat & PCI_EXP_LNKSTA_NLW) >> PCI_EXP_LNKSTA_NLW_SHIFT;
280 }
281
282 /* read the link status and set dd->{lbus_width,lbus_speed,lbus_info} */
283 static void update_lbus_info(struct hfi1_devdata *dd)
284 {
285         u16 linkstat;
286         int ret;
287
288         ret = pcie_capability_read_word(dd->pcidev, PCI_EXP_LNKSTA, &linkstat);
289         if (ret) {
290                 dd_dev_err(dd, "Unable to read from PCI config\n");
291                 return;
292         }
293
294         dd->lbus_width = extract_width(linkstat);
295         dd->lbus_speed = extract_speed(linkstat);
296         snprintf(dd->lbus_info, sizeof(dd->lbus_info),
297                  "PCIe,%uMHz,x%u", dd->lbus_speed, dd->lbus_width);
298 }
299
300 /*
301  * Read in the current PCIe link width and speed.  Find if the link is
302  * Gen3 capable.
303  */
304 int pcie_speeds(struct hfi1_devdata *dd)
305 {
306         u32 linkcap;
307         struct pci_dev *parent = dd->pcidev->bus->self;
308         int ret;
309
310         if (!pci_is_pcie(dd->pcidev)) {
311                 dd_dev_err(dd, "Can't find PCI Express capability!\n");
312                 return -EINVAL;
313         }
314
315         /* find if our max speed is Gen3 and parent supports Gen3 speeds */
316         dd->link_gen3_capable = 1;
317
318         ret = pcie_capability_read_dword(dd->pcidev, PCI_EXP_LNKCAP, &linkcap);
319         if (ret) {
320                 dd_dev_err(dd, "Unable to read from PCI config\n");
321                 return ret;
322         }
323
324         if ((linkcap & PCI_EXP_LNKCAP_SLS) != PCI_EXP_LNKCAP_SLS_8_0GB) {
325                 dd_dev_info(dd,
326                             "This HFI is not Gen3 capable, max speed 0x%x, need 0x3\n",
327                             linkcap & PCI_EXP_LNKCAP_SLS);
328                 dd->link_gen3_capable = 0;
329         }
330
331         /*
332          * bus->max_bus_speed is set from the bridge's linkcap Max Link Speed
333          */
334         if (parent &&
335             (dd->pcidev->bus->max_bus_speed == PCIE_SPEED_2_5GT ||
336              dd->pcidev->bus->max_bus_speed == PCIE_SPEED_5_0GT)) {
337                 dd_dev_info(dd, "Parent PCIe bridge does not support Gen3\n");
338                 dd->link_gen3_capable = 0;
339         }
340
341         /* obtain the link width and current speed */
342         update_lbus_info(dd);
343
344         dd_dev_info(dd, "%s\n", dd->lbus_info);
345
346         return 0;
347 }
348
349 /*
350  * Returns:
351  *      - actual number of interrupts allocated or
352  *      - error
353  */
354 int request_msix(struct hfi1_devdata *dd, u32 msireq)
355 {
356         int nvec;
357
358         nvec = pci_alloc_irq_vectors(dd->pcidev, msireq, msireq, PCI_IRQ_MSIX);
359         if (nvec < 0) {
360                 dd_dev_err(dd, "pci_alloc_irq_vectors() failed: %d\n", nvec);
361                 return nvec;
362         }
363
364         tune_pcie_caps(dd);
365
366         return nvec;
367 }
368
369 /* restore command and BARs after a reset has wiped them out */
370 int restore_pci_variables(struct hfi1_devdata *dd)
371 {
372         int ret = 0;
373
374         ret = pci_write_config_word(dd->pcidev, PCI_COMMAND, dd->pci_command);
375         if (ret)
376                 goto error;
377
378         ret = pci_write_config_dword(dd->pcidev, PCI_BASE_ADDRESS_0,
379                                      dd->pcibar0);
380         if (ret)
381                 goto error;
382
383         ret = pci_write_config_dword(dd->pcidev, PCI_BASE_ADDRESS_1,
384                                      dd->pcibar1);
385         if (ret)
386                 goto error;
387
388         ret = pci_write_config_dword(dd->pcidev, PCI_ROM_ADDRESS, dd->pci_rom);
389         if (ret)
390                 goto error;
391
392         ret = pcie_capability_write_word(dd->pcidev, PCI_EXP_DEVCTL,
393                                          dd->pcie_devctl);
394         if (ret)
395                 goto error;
396
397         ret = pcie_capability_write_word(dd->pcidev, PCI_EXP_LNKCTL,
398                                          dd->pcie_lnkctl);
399         if (ret)
400                 goto error;
401
402         ret = pcie_capability_write_word(dd->pcidev, PCI_EXP_DEVCTL2,
403                                          dd->pcie_devctl2);
404         if (ret)
405                 goto error;
406
407         ret = pci_write_config_dword(dd->pcidev, PCI_CFG_MSIX0, dd->pci_msix0);
408         if (ret)
409                 goto error;
410
411         if (pci_find_ext_capability(dd->pcidev, PCI_EXT_CAP_ID_TPH)) {
412                 ret = pci_write_config_dword(dd->pcidev, PCIE_CFG_TPH2,
413                                              dd->pci_tph2);
414                 if (ret)
415                         goto error;
416         }
417         return 0;
418
419 error:
420         dd_dev_err(dd, "Unable to write to PCI config\n");
421         return ret;
422 }
423
424 /* Save BARs and command to rewrite after device reset */
425 int save_pci_variables(struct hfi1_devdata *dd)
426 {
427         int ret = 0;
428
429         ret = pci_read_config_dword(dd->pcidev, PCI_BASE_ADDRESS_0,
430                                     &dd->pcibar0);
431         if (ret)
432                 goto error;
433
434         ret = pci_read_config_dword(dd->pcidev, PCI_BASE_ADDRESS_1,
435                                     &dd->pcibar1);
436         if (ret)
437                 goto error;
438
439         ret = pci_read_config_dword(dd->pcidev, PCI_ROM_ADDRESS, &dd->pci_rom);
440         if (ret)
441                 goto error;
442
443         ret = pci_read_config_word(dd->pcidev, PCI_COMMAND, &dd->pci_command);
444         if (ret)
445                 goto error;
446
447         ret = pcie_capability_read_word(dd->pcidev, PCI_EXP_DEVCTL,
448                                         &dd->pcie_devctl);
449         if (ret)
450                 goto error;
451
452         ret = pcie_capability_read_word(dd->pcidev, PCI_EXP_LNKCTL,
453                                         &dd->pcie_lnkctl);
454         if (ret)
455                 goto error;
456
457         ret = pcie_capability_read_word(dd->pcidev, PCI_EXP_DEVCTL2,
458                                         &dd->pcie_devctl2);
459         if (ret)
460                 goto error;
461
462         ret = pci_read_config_dword(dd->pcidev, PCI_CFG_MSIX0, &dd->pci_msix0);
463         if (ret)
464                 goto error;
465
466         if (pci_find_ext_capability(dd->pcidev, PCI_EXT_CAP_ID_TPH)) {
467                 ret = pci_read_config_dword(dd->pcidev, PCIE_CFG_TPH2,
468                                             &dd->pci_tph2);
469                 if (ret)
470                         goto error;
471         }
472         return 0;
473
474 error:
475         dd_dev_err(dd, "Unable to read from PCI config\n");
476         return ret;
477 }
478
479 /*
480  * BIOS may not set PCIe bus-utilization parameters for best performance.
481  * Check and optionally adjust them to maximize our throughput.
482  */
483 static int hfi1_pcie_caps;
484 module_param_named(pcie_caps, hfi1_pcie_caps, int, S_IRUGO);
485 MODULE_PARM_DESC(pcie_caps, "Max PCIe tuning: Payload (0..3), ReadReq (4..7)");
486
487 uint aspm_mode = ASPM_MODE_DISABLED;
488 module_param_named(aspm, aspm_mode, uint, S_IRUGO);
489 MODULE_PARM_DESC(aspm, "PCIe ASPM: 0: disable, 1: enable, 2: dynamic");
490
491 static void tune_pcie_caps(struct hfi1_devdata *dd)
492 {
493         struct pci_dev *parent;
494         u16 rc_mpss, rc_mps, ep_mpss, ep_mps;
495         u16 rc_mrrs, ep_mrrs, max_mrrs, ectl;
496         int ret;
497
498         /*
499          * Turn on extended tags in DevCtl in case the BIOS has turned it off
500          * to improve WFR SDMA bandwidth
501          */
502         ret = pcie_capability_read_word(dd->pcidev, PCI_EXP_DEVCTL, &ectl);
503         if ((!ret) && !(ectl & PCI_EXP_DEVCTL_EXT_TAG)) {
504                 dd_dev_info(dd, "Enabling PCIe extended tags\n");
505                 ectl |= PCI_EXP_DEVCTL_EXT_TAG;
506                 ret = pcie_capability_write_word(dd->pcidev,
507                                                  PCI_EXP_DEVCTL, ectl);
508                 if (ret)
509                         dd_dev_info(dd, "Unable to write to PCI config\n");
510         }
511         /* Find out supported and configured values for parent (root) */
512         parent = dd->pcidev->bus->self;
513         /*
514          * The driver cannot perform the tuning if it does not have
515          * access to the upstream component.
516          */
517         if (!parent) {
518                 dd_dev_info(dd, "Parent not found\n");
519                 return;
520         }
521         if (!pci_is_root_bus(parent->bus)) {
522                 dd_dev_info(dd, "Parent not root\n");
523                 return;
524         }
525         if (!pci_is_pcie(parent)) {
526                 dd_dev_info(dd, "Parent is not PCI Express capable\n");
527                 return;
528         }
529         if (!pci_is_pcie(dd->pcidev)) {
530                 dd_dev_info(dd, "PCI device is not PCI Express capable\n");
531                 return;
532         }
533         rc_mpss = parent->pcie_mpss;
534         rc_mps = ffs(pcie_get_mps(parent)) - 8;
535         /* Find out supported and configured values for endpoint (us) */
536         ep_mpss = dd->pcidev->pcie_mpss;
537         ep_mps = ffs(pcie_get_mps(dd->pcidev)) - 8;
538
539         /* Find max payload supported by root, endpoint */
540         if (rc_mpss > ep_mpss)
541                 rc_mpss = ep_mpss;
542
543         /* If Supported greater than limit in module param, limit it */
544         if (rc_mpss > (hfi1_pcie_caps & 7))
545                 rc_mpss = hfi1_pcie_caps & 7;
546         /* If less than (allowed, supported), bump root payload */
547         if (rc_mpss > rc_mps) {
548                 rc_mps = rc_mpss;
549                 pcie_set_mps(parent, 128 << rc_mps);
550         }
551         /* If less than (allowed, supported), bump endpoint payload */
552         if (rc_mpss > ep_mps) {
553                 ep_mps = rc_mpss;
554                 pcie_set_mps(dd->pcidev, 128 << ep_mps);
555         }
556
557         /*
558          * Now the Read Request size.
559          * No field for max supported, but PCIe spec limits it to 4096,
560          * which is code '5' (log2(4096) - 7)
561          */
562         max_mrrs = 5;
563         if (max_mrrs > ((hfi1_pcie_caps >> 4) & 7))
564                 max_mrrs = (hfi1_pcie_caps >> 4) & 7;
565
566         max_mrrs = 128 << max_mrrs;
567         rc_mrrs = pcie_get_readrq(parent);
568         ep_mrrs = pcie_get_readrq(dd->pcidev);
569
570         if (max_mrrs > rc_mrrs) {
571                 rc_mrrs = max_mrrs;
572                 pcie_set_readrq(parent, rc_mrrs);
573         }
574         if (max_mrrs > ep_mrrs) {
575                 ep_mrrs = max_mrrs;
576                 pcie_set_readrq(dd->pcidev, ep_mrrs);
577         }
578 }
579
580 /* End of PCIe capability tuning */
581
582 /*
583  * From here through hfi1_pci_err_handler definition is invoked via
584  * PCI error infrastructure, registered via pci
585  */
586 static pci_ers_result_t
587 pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
588 {
589         struct hfi1_devdata *dd = pci_get_drvdata(pdev);
590         pci_ers_result_t ret = PCI_ERS_RESULT_RECOVERED;
591
592         switch (state) {
593         case pci_channel_io_normal:
594                 dd_dev_info(dd, "State Normal, ignoring\n");
595                 break;
596
597         case pci_channel_io_frozen:
598                 dd_dev_info(dd, "State Frozen, requesting reset\n");
599                 pci_disable_device(pdev);
600                 ret = PCI_ERS_RESULT_NEED_RESET;
601                 break;
602
603         case pci_channel_io_perm_failure:
604                 if (dd) {
605                         dd_dev_info(dd, "State Permanent Failure, disabling\n");
606                         /* no more register accesses! */
607                         dd->flags &= ~HFI1_PRESENT;
608                         hfi1_disable_after_error(dd);
609                 }
610                  /* else early, or other problem */
611                 ret =  PCI_ERS_RESULT_DISCONNECT;
612                 break;
613
614         default: /* shouldn't happen */
615                 dd_dev_info(dd, "HFI1 PCI errors detected (state %d)\n",
616                             state);
617                 break;
618         }
619         return ret;
620 }
621
622 static pci_ers_result_t
623 pci_mmio_enabled(struct pci_dev *pdev)
624 {
625         u64 words = 0U;
626         struct hfi1_devdata *dd = pci_get_drvdata(pdev);
627         pci_ers_result_t ret = PCI_ERS_RESULT_RECOVERED;
628
629         if (dd && dd->pport) {
630                 words = read_port_cntr(dd->pport, C_RX_WORDS, CNTR_INVALID_VL);
631                 if (words == ~0ULL)
632                         ret = PCI_ERS_RESULT_NEED_RESET;
633                 dd_dev_info(dd,
634                             "HFI1 mmio_enabled function called, read wordscntr %llx, returning %d\n",
635                             words, ret);
636         }
637         return  ret;
638 }
639
640 static pci_ers_result_t
641 pci_slot_reset(struct pci_dev *pdev)
642 {
643         struct hfi1_devdata *dd = pci_get_drvdata(pdev);
644
645         dd_dev_info(dd, "HFI1 slot_reset function called, ignored\n");
646         return PCI_ERS_RESULT_CAN_RECOVER;
647 }
648
649 static void
650 pci_resume(struct pci_dev *pdev)
651 {
652         struct hfi1_devdata *dd = pci_get_drvdata(pdev);
653
654         dd_dev_info(dd, "HFI1 resume function called\n");
655         pci_cleanup_aer_uncorrect_error_status(pdev);
656         /*
657          * Running jobs will fail, since it's asynchronous
658          * unlike sysfs-requested reset.   Better than
659          * doing nothing.
660          */
661         hfi1_init(dd, 1); /* same as re-init after reset */
662 }
663
664 const struct pci_error_handlers hfi1_pci_err_handler = {
665         .error_detected = pci_error_detected,
666         .mmio_enabled = pci_mmio_enabled,
667         .slot_reset = pci_slot_reset,
668         .resume = pci_resume,
669 };
670
671 /*============================================================================*/
672 /* PCIe Gen3 support */
673
674 /*
675  * This code is separated out because it is expected to be removed in the
676  * final shipping product.  If not, then it will be revisited and items
677  * will be moved to more standard locations.
678  */
679
680 /* ASIC_PCI_SD_HOST_STATUS.FW_DNLD_STS field values */
681 #define DL_STATUS_HFI0 0x1      /* hfi0 firmware download complete */
682 #define DL_STATUS_HFI1 0x2      /* hfi1 firmware download complete */
683 #define DL_STATUS_BOTH 0x3      /* hfi0 and hfi1 firmware download complete */
684
685 /* ASIC_PCI_SD_HOST_STATUS.FW_DNLD_ERR field values */
686 #define DL_ERR_NONE             0x0     /* no error */
687 #define DL_ERR_SWAP_PARITY      0x1     /* parity error in SerDes interrupt */
688                                         /*   or response data */
689 #define DL_ERR_DISABLED 0x2     /* hfi disabled */
690 #define DL_ERR_SECURITY 0x3     /* security check failed */
691 #define DL_ERR_SBUS             0x4     /* SBus status error */
692 #define DL_ERR_XFR_PARITY       0x5     /* parity error during ROM transfer*/
693
694 /* gasket block secondary bus reset delay */
695 #define SBR_DELAY_US 200000     /* 200ms */
696
697 static uint pcie_target = 3;
698 module_param(pcie_target, uint, S_IRUGO);
699 MODULE_PARM_DESC(pcie_target, "PCIe target speed (0 skip, 1-3 Gen1-3)");
700
701 static uint pcie_force;
702 module_param(pcie_force, uint, S_IRUGO);
703 MODULE_PARM_DESC(pcie_force, "Force driver to do a PCIe firmware download even if already at target speed");
704
705 static uint pcie_retry = 5;
706 module_param(pcie_retry, uint, S_IRUGO);
707 MODULE_PARM_DESC(pcie_retry, "Driver will try this many times to reach requested speed");
708
709 #define UNSET_PSET 255
710 #define DEFAULT_DISCRETE_PSET 2 /* discrete HFI */
711 #define DEFAULT_MCP_PSET 6      /* MCP HFI */
712 static uint pcie_pset = UNSET_PSET;
713 module_param(pcie_pset, uint, S_IRUGO);
714 MODULE_PARM_DESC(pcie_pset, "PCIe Eq Pset value to use, range is 0-10");
715
716 static uint pcie_ctle = 3; /* discrete on, integrated on */
717 module_param(pcie_ctle, uint, S_IRUGO);
718 MODULE_PARM_DESC(pcie_ctle, "PCIe static CTLE mode, bit 0 - discrete on/off, bit 1 - integrated on/off");
719
720 /* equalization columns */
721 #define PREC 0
722 #define ATTN 1
723 #define POST 2
724
725 /* discrete silicon preliminary equalization values */
726 static const u8 discrete_preliminary_eq[11][3] = {
727         /* prec   attn   post */
728         {  0x00,  0x00,  0x12 },        /* p0 */
729         {  0x00,  0x00,  0x0c },        /* p1 */
730         {  0x00,  0x00,  0x0f },        /* p2 */
731         {  0x00,  0x00,  0x09 },        /* p3 */
732         {  0x00,  0x00,  0x00 },        /* p4 */
733         {  0x06,  0x00,  0x00 },        /* p5 */
734         {  0x09,  0x00,  0x00 },        /* p6 */
735         {  0x06,  0x00,  0x0f },        /* p7 */
736         {  0x09,  0x00,  0x09 },        /* p8 */
737         {  0x0c,  0x00,  0x00 },        /* p9 */
738         {  0x00,  0x00,  0x18 },        /* p10 */
739 };
740
741 /* integrated silicon preliminary equalization values */
742 static const u8 integrated_preliminary_eq[11][3] = {
743         /* prec   attn   post */
744         {  0x00,  0x1e,  0x07 },        /* p0 */
745         {  0x00,  0x1e,  0x05 },        /* p1 */
746         {  0x00,  0x1e,  0x06 },        /* p2 */
747         {  0x00,  0x1e,  0x04 },        /* p3 */
748         {  0x00,  0x1e,  0x00 },        /* p4 */
749         {  0x03,  0x1e,  0x00 },        /* p5 */
750         {  0x04,  0x1e,  0x00 },        /* p6 */
751         {  0x03,  0x1e,  0x06 },        /* p7 */
752         {  0x03,  0x1e,  0x04 },        /* p8 */
753         {  0x05,  0x1e,  0x00 },        /* p9 */
754         {  0x00,  0x1e,  0x0a },        /* p10 */
755 };
756
757 static const u8 discrete_ctle_tunings[11][4] = {
758         /* DC     LF     HF     BW */
759         {  0x48,  0x0b,  0x04,  0x04 }, /* p0 */
760         {  0x60,  0x05,  0x0f,  0x0a }, /* p1 */
761         {  0x50,  0x09,  0x06,  0x06 }, /* p2 */
762         {  0x68,  0x05,  0x0f,  0x0a }, /* p3 */
763         {  0x80,  0x05,  0x0f,  0x0a }, /* p4 */
764         {  0x70,  0x05,  0x0f,  0x0a }, /* p5 */
765         {  0x68,  0x05,  0x0f,  0x0a }, /* p6 */
766         {  0x38,  0x0f,  0x00,  0x00 }, /* p7 */
767         {  0x48,  0x09,  0x06,  0x06 }, /* p8 */
768         {  0x60,  0x05,  0x0f,  0x0a }, /* p9 */
769         {  0x38,  0x0f,  0x00,  0x00 }, /* p10 */
770 };
771
772 static const u8 integrated_ctle_tunings[11][4] = {
773         /* DC     LF     HF     BW */
774         {  0x38,  0x0f,  0x00,  0x00 }, /* p0 */
775         {  0x38,  0x0f,  0x00,  0x00 }, /* p1 */
776         {  0x38,  0x0f,  0x00,  0x00 }, /* p2 */
777         {  0x38,  0x0f,  0x00,  0x00 }, /* p3 */
778         {  0x58,  0x0a,  0x05,  0x05 }, /* p4 */
779         {  0x48,  0x0a,  0x05,  0x05 }, /* p5 */
780         {  0x40,  0x0a,  0x05,  0x05 }, /* p6 */
781         {  0x38,  0x0f,  0x00,  0x00 }, /* p7 */
782         {  0x38,  0x0f,  0x00,  0x00 }, /* p8 */
783         {  0x38,  0x09,  0x06,  0x06 }, /* p9 */
784         {  0x38,  0x0e,  0x01,  0x01 }, /* p10 */
785 };
786
787 /* helper to format the value to write to hardware */
788 #define eq_value(pre, curr, post) \
789         ((((u32)(pre)) << \
790                         PCIE_CFG_REG_PL102_GEN3_EQ_PRE_CURSOR_PSET_SHIFT) \
791         | (((u32)(curr)) << PCIE_CFG_REG_PL102_GEN3_EQ_CURSOR_PSET_SHIFT) \
792         | (((u32)(post)) << \
793                 PCIE_CFG_REG_PL102_GEN3_EQ_POST_CURSOR_PSET_SHIFT))
794
795 /*
796  * Load the given EQ preset table into the PCIe hardware.
797  */
798 static int load_eq_table(struct hfi1_devdata *dd, const u8 eq[11][3], u8 fs,
799                          u8 div)
800 {
801         struct pci_dev *pdev = dd->pcidev;
802         u32 hit_error = 0;
803         u32 violation;
804         u32 i;
805         u8 c_minus1, c0, c_plus1;
806         int ret;
807
808         for (i = 0; i < 11; i++) {
809                 /* set index */
810                 pci_write_config_dword(pdev, PCIE_CFG_REG_PL103, i);
811                 /* write the value */
812                 c_minus1 = eq[i][PREC] / div;
813                 c0 = fs - (eq[i][PREC] / div) - (eq[i][POST] / div);
814                 c_plus1 = eq[i][POST] / div;
815                 pci_write_config_dword(pdev, PCIE_CFG_REG_PL102,
816                                        eq_value(c_minus1, c0, c_plus1));
817                 /* check if these coefficients violate EQ rules */
818                 ret = pci_read_config_dword(dd->pcidev,
819                                             PCIE_CFG_REG_PL105, &violation);
820                 if (ret) {
821                         dd_dev_err(dd, "Unable to read from PCI config\n");
822                         hit_error = 1;
823                         break;
824                 }
825
826                 if (violation
827                     & PCIE_CFG_REG_PL105_GEN3_EQ_VIOLATE_COEF_RULES_SMASK){
828                         if (hit_error == 0) {
829                                 dd_dev_err(dd,
830                                            "Gen3 EQ Table Coefficient rule violations\n");
831                                 dd_dev_err(dd, "         prec   attn   post\n");
832                         }
833                         dd_dev_err(dd, "   p%02d:   %02x     %02x     %02x\n",
834                                    i, (u32)eq[i][0], (u32)eq[i][1],
835                                    (u32)eq[i][2]);
836                         dd_dev_err(dd, "            %02x     %02x     %02x\n",
837                                    (u32)c_minus1, (u32)c0, (u32)c_plus1);
838                         hit_error = 1;
839                 }
840         }
841         if (hit_error)
842                 return -EINVAL;
843         return 0;
844 }
845
846 /*
847  * Steps to be done after the PCIe firmware is downloaded and
848  * before the SBR for the Pcie Gen3.
849  * The SBus resource is already being held.
850  */
851 static void pcie_post_steps(struct hfi1_devdata *dd)
852 {
853         int i;
854
855         set_sbus_fast_mode(dd);
856         /*
857          * Write to the PCIe PCSes to set the G3_LOCKED_NEXT bits to 1.
858          * This avoids a spurious framing error that can otherwise be
859          * generated by the MAC layer.
860          *
861          * Use individual addresses since no broadcast is set up.
862          */
863         for (i = 0; i < NUM_PCIE_SERDES; i++) {
864                 sbus_request(dd, pcie_pcs_addrs[dd->hfi1_id][i],
865                              0x03, WRITE_SBUS_RECEIVER, 0x00022132);
866         }
867
868         clear_sbus_fast_mode(dd);
869 }
870
871 /*
872  * Trigger a secondary bus reset (SBR) on ourselves using our parent.
873  *
874  * Based on pci_parent_bus_reset() which is not exported by the
875  * kernel core.
876  */
877 static int trigger_sbr(struct hfi1_devdata *dd)
878 {
879         struct pci_dev *dev = dd->pcidev;
880         struct pci_dev *pdev;
881
882         /* need a parent */
883         if (!dev->bus->self) {
884                 dd_dev_err(dd, "%s: no parent device\n", __func__);
885                 return -ENOTTY;
886         }
887
888         /* should not be anyone else on the bus */
889         list_for_each_entry(pdev, &dev->bus->devices, bus_list)
890                 if (pdev != dev) {
891                         dd_dev_err(dd,
892                                    "%s: another device is on the same bus\n",
893                                    __func__);
894                         return -ENOTTY;
895                 }
896
897         /*
898          * This is an end around to do an SBR during probe time. A new API needs
899          * to be implemented to have cleaner interface but this fixes the
900          * current brokenness
901          */
902         return pci_bridge_secondary_bus_reset(dev->bus->self);
903 }
904
905 /*
906  * Write the given gasket interrupt register.
907  */
908 static void write_gasket_interrupt(struct hfi1_devdata *dd, int index,
909                                    u16 code, u16 data)
910 {
911         write_csr(dd, ASIC_PCIE_SD_INTRPT_LIST + (index * 8),
912                   (((u64)code << ASIC_PCIE_SD_INTRPT_LIST_INTRPT_CODE_SHIFT) |
913                    ((u64)data << ASIC_PCIE_SD_INTRPT_LIST_INTRPT_DATA_SHIFT)));
914 }
915
916 /*
917  * Tell the gasket logic how to react to the reset.
918  */
919 static void arm_gasket_logic(struct hfi1_devdata *dd)
920 {
921         u64 reg;
922
923         reg = (((u64)1 << dd->hfi1_id) <<
924                ASIC_PCIE_SD_HOST_CMD_INTRPT_CMD_SHIFT) |
925               ((u64)pcie_serdes_broadcast[dd->hfi1_id] <<
926                ASIC_PCIE_SD_HOST_CMD_SBUS_RCVR_ADDR_SHIFT |
927                ASIC_PCIE_SD_HOST_CMD_SBR_MODE_SMASK |
928                ((u64)SBR_DELAY_US & ASIC_PCIE_SD_HOST_CMD_TIMER_MASK) <<
929                ASIC_PCIE_SD_HOST_CMD_TIMER_SHIFT);
930         write_csr(dd, ASIC_PCIE_SD_HOST_CMD, reg);
931         /* read back to push the write */
932         read_csr(dd, ASIC_PCIE_SD_HOST_CMD);
933 }
934
935 /*
936  * CCE_PCIE_CTRL long name helpers
937  * We redefine these shorter macros to use in the code while leaving
938  * chip_registers.h to be autogenerated from the hardware spec.
939  */
940 #define LANE_BUNDLE_MASK              CCE_PCIE_CTRL_PCIE_LANE_BUNDLE_MASK
941 #define LANE_BUNDLE_SHIFT             CCE_PCIE_CTRL_PCIE_LANE_BUNDLE_SHIFT
942 #define LANE_DELAY_MASK               CCE_PCIE_CTRL_PCIE_LANE_DELAY_MASK
943 #define LANE_DELAY_SHIFT              CCE_PCIE_CTRL_PCIE_LANE_DELAY_SHIFT
944 #define MARGIN_OVERWRITE_ENABLE_SHIFT CCE_PCIE_CTRL_XMT_MARGIN_OVERWRITE_ENABLE_SHIFT
945 #define MARGIN_SHIFT                  CCE_PCIE_CTRL_XMT_MARGIN_SHIFT
946 #define MARGIN_G1_G2_OVERWRITE_MASK   CCE_PCIE_CTRL_XMT_MARGIN_GEN1_GEN2_OVERWRITE_ENABLE_MASK
947 #define MARGIN_G1_G2_OVERWRITE_SHIFT  CCE_PCIE_CTRL_XMT_MARGIN_GEN1_GEN2_OVERWRITE_ENABLE_SHIFT
948 #define MARGIN_GEN1_GEN2_MASK         CCE_PCIE_CTRL_XMT_MARGIN_GEN1_GEN2_MASK
949 #define MARGIN_GEN1_GEN2_SHIFT        CCE_PCIE_CTRL_XMT_MARGIN_GEN1_GEN2_SHIFT
950
951  /*
952   * Write xmt_margin for full-swing (WFR-B) or half-swing (WFR-C).
953   */
954 static void write_xmt_margin(struct hfi1_devdata *dd, const char *fname)
955 {
956         u64 pcie_ctrl;
957         u64 xmt_margin;
958         u64 xmt_margin_oe;
959         u64 lane_delay;
960         u64 lane_bundle;
961
962         pcie_ctrl = read_csr(dd, CCE_PCIE_CTRL);
963
964         /*
965          * For Discrete, use full-swing.
966          *  - PCIe TX defaults to full-swing.
967          *    Leave this register as default.
968          * For Integrated, use half-swing
969          *  - Copy xmt_margin and xmt_margin_oe
970          *    from Gen1/Gen2 to Gen3.
971          */
972         if (dd->pcidev->device == PCI_DEVICE_ID_INTEL1) { /* integrated */
973                 /* extract initial fields */
974                 xmt_margin = (pcie_ctrl >> MARGIN_GEN1_GEN2_SHIFT)
975                               & MARGIN_GEN1_GEN2_MASK;
976                 xmt_margin_oe = (pcie_ctrl >> MARGIN_G1_G2_OVERWRITE_SHIFT)
977                                  & MARGIN_G1_G2_OVERWRITE_MASK;
978                 lane_delay = (pcie_ctrl >> LANE_DELAY_SHIFT) & LANE_DELAY_MASK;
979                 lane_bundle = (pcie_ctrl >> LANE_BUNDLE_SHIFT)
980                                & LANE_BUNDLE_MASK;
981
982                 /*
983                  * For A0, EFUSE values are not set.  Override with the
984                  * correct values.
985                  */
986                 if (is_ax(dd)) {
987                         /*
988                          * xmt_margin and OverwiteEnabel should be the
989                          * same for Gen1/Gen2 and Gen3
990                          */
991                         xmt_margin = 0x5;
992                         xmt_margin_oe = 0x1;
993                         lane_delay = 0xF; /* Delay 240ns. */
994                         lane_bundle = 0x0; /* Set to 1 lane. */
995                 }
996
997                 /* overwrite existing values */
998                 pcie_ctrl = (xmt_margin << MARGIN_GEN1_GEN2_SHIFT)
999                         | (xmt_margin_oe << MARGIN_G1_G2_OVERWRITE_SHIFT)
1000                         | (xmt_margin << MARGIN_SHIFT)
1001                         | (xmt_margin_oe << MARGIN_OVERWRITE_ENABLE_SHIFT)
1002                         | (lane_delay << LANE_DELAY_SHIFT)
1003                         | (lane_bundle << LANE_BUNDLE_SHIFT);
1004
1005                 write_csr(dd, CCE_PCIE_CTRL, pcie_ctrl);
1006         }
1007
1008         dd_dev_dbg(dd, "%s: program XMT margin, CcePcieCtrl 0x%llx\n",
1009                    fname, pcie_ctrl);
1010 }
1011
1012 /*
1013  * Do all the steps needed to transition the PCIe link to Gen3 speed.
1014  */
1015 int do_pcie_gen3_transition(struct hfi1_devdata *dd)
1016 {
1017         struct pci_dev *parent = dd->pcidev->bus->self;
1018         u64 fw_ctrl;
1019         u64 reg, therm;
1020         u32 reg32, fs, lf;
1021         u32 status, err;
1022         int ret;
1023         int do_retry, retry_count = 0;
1024         int intnum = 0;
1025         uint default_pset;
1026         uint pset = pcie_pset;
1027         u16 target_vector, target_speed;
1028         u16 lnkctl2, vendor;
1029         u8 div;
1030         const u8 (*eq)[3];
1031         const u8 (*ctle_tunings)[4];
1032         uint static_ctle_mode;
1033         int return_error = 0;
1034
1035         /* PCIe Gen3 is for the ASIC only */
1036         if (dd->icode != ICODE_RTL_SILICON)
1037                 return 0;
1038
1039         if (pcie_target == 1) {                 /* target Gen1 */
1040                 target_vector = PCI_EXP_LNKCTL2_TLS_2_5GT;
1041                 target_speed = 2500;
1042         } else if (pcie_target == 2) {          /* target Gen2 */
1043                 target_vector = PCI_EXP_LNKCTL2_TLS_5_0GT;
1044                 target_speed = 5000;
1045         } else if (pcie_target == 3) {          /* target Gen3 */
1046                 target_vector = PCI_EXP_LNKCTL2_TLS_8_0GT;
1047                 target_speed = 8000;
1048         } else {
1049                 /* off or invalid target - skip */
1050                 dd_dev_info(dd, "%s: Skipping PCIe transition\n", __func__);
1051                 return 0;
1052         }
1053
1054         /* if already at target speed, done (unless forced) */
1055         if (dd->lbus_speed == target_speed) {
1056                 dd_dev_info(dd, "%s: PCIe already at gen%d, %s\n", __func__,
1057                             pcie_target,
1058                             pcie_force ? "re-doing anyway" : "skipping");
1059                 if (!pcie_force)
1060                         return 0;
1061         }
1062
1063         /*
1064          * The driver cannot do the transition if it has no access to the
1065          * upstream component
1066          */
1067         if (!parent) {
1068                 dd_dev_info(dd, "%s: No upstream, Can't do gen3 transition\n",
1069                             __func__);
1070                 return 0;
1071         }
1072
1073         /*
1074          * Do the Gen3 transition.  Steps are those of the PCIe Gen3
1075          * recipe.
1076          */
1077
1078         /* step 1: pcie link working in gen1/gen2 */
1079
1080         /* step 2: if either side is not capable of Gen3, done */
1081         if (pcie_target == 3 && !dd->link_gen3_capable) {
1082                 dd_dev_err(dd, "The PCIe link is not Gen3 capable\n");
1083                 ret = -ENOSYS;
1084                 goto done_no_mutex;
1085         }
1086
1087         /* hold the SBus resource across the firmware download and SBR */
1088         ret = acquire_chip_resource(dd, CR_SBUS, SBUS_TIMEOUT);
1089         if (ret) {
1090                 dd_dev_err(dd, "%s: unable to acquire SBus resource\n",
1091                            __func__);
1092                 return ret;
1093         }
1094
1095         /* make sure thermal polling is not causing interrupts */
1096         therm = read_csr(dd, ASIC_CFG_THERM_POLL_EN);
1097         if (therm) {
1098                 write_csr(dd, ASIC_CFG_THERM_POLL_EN, 0x0);
1099                 msleep(100);
1100                 dd_dev_info(dd, "%s: Disabled therm polling\n",
1101                             __func__);
1102         }
1103
1104 retry:
1105         /* the SBus download will reset the spico for thermal */
1106
1107         /* step 3: download SBus Master firmware */
1108         /* step 4: download PCIe Gen3 SerDes firmware */
1109         dd_dev_info(dd, "%s: downloading firmware\n", __func__);
1110         ret = load_pcie_firmware(dd);
1111         if (ret) {
1112                 /* do not proceed if the firmware cannot be downloaded */
1113                 return_error = 1;
1114                 goto done;
1115         }
1116
1117         /* step 5: set up device parameter settings */
1118         dd_dev_info(dd, "%s: setting PCIe registers\n", __func__);
1119
1120         /*
1121          * PcieCfgSpcie1 - Link Control 3
1122          * Leave at reset value.  No need to set PerfEq - link equalization
1123          * will be performed automatically after the SBR when the target
1124          * speed is 8GT/s.
1125          */
1126
1127         /* clear all 16 per-lane error bits (PCIe: Lane Error Status) */
1128         pci_write_config_dword(dd->pcidev, PCIE_CFG_SPCIE2, 0xffff);
1129
1130         /* step 5a: Set Synopsys Port Logic registers */
1131
1132         /*
1133          * PcieCfgRegPl2 - Port Force Link
1134          *
1135          * Set the low power field to 0x10 to avoid unnecessary power
1136          * management messages.  All other fields are zero.
1137          */
1138         reg32 = 0x10ul << PCIE_CFG_REG_PL2_LOW_PWR_ENT_CNT_SHIFT;
1139         pci_write_config_dword(dd->pcidev, PCIE_CFG_REG_PL2, reg32);
1140
1141         /*
1142          * PcieCfgRegPl100 - Gen3 Control
1143          *
1144          * turn off PcieCfgRegPl100.Gen3ZRxDcNonCompl
1145          * turn on PcieCfgRegPl100.EqEieosCnt
1146          * Everything else zero.
1147          */
1148         reg32 = PCIE_CFG_REG_PL100_EQ_EIEOS_CNT_SMASK;
1149         pci_write_config_dword(dd->pcidev, PCIE_CFG_REG_PL100, reg32);
1150
1151         /*
1152          * PcieCfgRegPl101 - Gen3 EQ FS and LF
1153          * PcieCfgRegPl102 - Gen3 EQ Presets to Coefficients Mapping
1154          * PcieCfgRegPl103 - Gen3 EQ Preset Index
1155          * PcieCfgRegPl105 - Gen3 EQ Status
1156          *
1157          * Give initial EQ settings.
1158          */
1159         if (dd->pcidev->device == PCI_DEVICE_ID_INTEL0) { /* discrete */
1160                 /* 1000mV, FS=24, LF = 8 */
1161                 fs = 24;
1162                 lf = 8;
1163                 div = 3;
1164                 eq = discrete_preliminary_eq;
1165                 default_pset = DEFAULT_DISCRETE_PSET;
1166                 ctle_tunings = discrete_ctle_tunings;
1167                 /* bit 0 - discrete on/off */
1168                 static_ctle_mode = pcie_ctle & 0x1;
1169         } else {
1170                 /* 400mV, FS=29, LF = 9 */
1171                 fs = 29;
1172                 lf = 9;
1173                 div = 1;
1174                 eq = integrated_preliminary_eq;
1175                 default_pset = DEFAULT_MCP_PSET;
1176                 ctle_tunings = integrated_ctle_tunings;
1177                 /* bit 1 - integrated on/off */
1178                 static_ctle_mode = (pcie_ctle >> 1) & 0x1;
1179         }
1180         pci_write_config_dword(dd->pcidev, PCIE_CFG_REG_PL101,
1181                                (fs <<
1182                                 PCIE_CFG_REG_PL101_GEN3_EQ_LOCAL_FS_SHIFT) |
1183                                (lf <<
1184                                 PCIE_CFG_REG_PL101_GEN3_EQ_LOCAL_LF_SHIFT));
1185         ret = load_eq_table(dd, eq, fs, div);
1186         if (ret)
1187                 goto done;
1188
1189         /*
1190          * PcieCfgRegPl106 - Gen3 EQ Control
1191          *
1192          * Set Gen3EqPsetReqVec, leave other fields 0.
1193          */
1194         if (pset == UNSET_PSET)
1195                 pset = default_pset;
1196         if (pset > 10) {        /* valid range is 0-10, inclusive */
1197                 dd_dev_err(dd, "%s: Invalid Eq Pset %u, setting to %d\n",
1198                            __func__, pset, default_pset);
1199                 pset = default_pset;
1200         }
1201         dd_dev_info(dd, "%s: using EQ Pset %u\n", __func__, pset);
1202         pci_write_config_dword(dd->pcidev, PCIE_CFG_REG_PL106,
1203                                ((1 << pset) <<
1204                         PCIE_CFG_REG_PL106_GEN3_EQ_PSET_REQ_VEC_SHIFT) |
1205                         PCIE_CFG_REG_PL106_GEN3_EQ_EVAL2MS_DISABLE_SMASK |
1206                         PCIE_CFG_REG_PL106_GEN3_EQ_PHASE23_EXIT_MODE_SMASK);
1207
1208         /*
1209          * step 5b: Do post firmware download steps via SBus
1210          */
1211         dd_dev_info(dd, "%s: doing pcie post steps\n", __func__);
1212         pcie_post_steps(dd);
1213
1214         /*
1215          * step 5c: Program gasket interrupts
1216          */
1217         /* set the Rx Bit Rate to REFCLK ratio */
1218         write_gasket_interrupt(dd, intnum++, 0x0006, 0x0050);
1219         /* disable pCal for PCIe Gen3 RX equalization */
1220         /* select adaptive or static CTLE */
1221         write_gasket_interrupt(dd, intnum++, 0x0026,
1222                                0x5b01 | (static_ctle_mode << 3));
1223         /*
1224          * Enable iCal for PCIe Gen3 RX equalization, and set which
1225          * evaluation of RX_EQ_EVAL will launch the iCal procedure.
1226          */
1227         write_gasket_interrupt(dd, intnum++, 0x0026, 0x5202);
1228
1229         if (static_ctle_mode) {
1230                 /* apply static CTLE tunings */
1231                 u8 pcie_dc, pcie_lf, pcie_hf, pcie_bw;
1232
1233                 pcie_dc = ctle_tunings[pset][0];
1234                 pcie_lf = ctle_tunings[pset][1];
1235                 pcie_hf = ctle_tunings[pset][2];
1236                 pcie_bw = ctle_tunings[pset][3];
1237                 write_gasket_interrupt(dd, intnum++, 0x0026, 0x0200 | pcie_dc);
1238                 write_gasket_interrupt(dd, intnum++, 0x0026, 0x0100 | pcie_lf);
1239                 write_gasket_interrupt(dd, intnum++, 0x0026, 0x0000 | pcie_hf);
1240                 write_gasket_interrupt(dd, intnum++, 0x0026, 0x5500 | pcie_bw);
1241         }
1242
1243         /* terminate list */
1244         write_gasket_interrupt(dd, intnum++, 0x0000, 0x0000);
1245
1246         /*
1247          * step 5d: program XMT margin
1248          */
1249         write_xmt_margin(dd, __func__);
1250
1251         /*
1252          * step 5e: disable active state power management (ASPM). It
1253          * will be enabled if required later
1254          */
1255         dd_dev_info(dd, "%s: clearing ASPM\n", __func__);
1256         aspm_hw_disable_l1(dd);
1257
1258         /*
1259          * step 5f: clear DirectSpeedChange
1260          * PcieCfgRegPl67.DirectSpeedChange must be zero to prevent the
1261          * change in the speed target from starting before we are ready.
1262          * This field defaults to 0 and we are not changing it, so nothing
1263          * needs to be done.
1264          */
1265
1266         /* step 5g: Set target link speed */
1267         /*
1268          * Set target link speed to be target on both device and parent.
1269          * On setting the parent: Some system BIOSs "helpfully" set the
1270          * parent target speed to Gen2 to match the ASIC's initial speed.
1271          * We can set the target Gen3 because we have already checked
1272          * that it is Gen3 capable earlier.
1273          */
1274         dd_dev_info(dd, "%s: setting parent target link speed\n", __func__);
1275         ret = pcie_capability_read_word(parent, PCI_EXP_LNKCTL2, &lnkctl2);
1276         if (ret) {
1277                 dd_dev_err(dd, "Unable to read from PCI config\n");
1278                 return_error = 1;
1279                 goto done;
1280         }
1281
1282         dd_dev_info(dd, "%s: ..old link control2: 0x%x\n", __func__,
1283                     (u32)lnkctl2);
1284         /* only write to parent if target is not as high as ours */
1285         if ((lnkctl2 & PCI_EXP_LNKCTL2_TLS) < target_vector) {
1286                 lnkctl2 &= ~PCI_EXP_LNKCTL2_TLS;
1287                 lnkctl2 |= target_vector;
1288                 dd_dev_info(dd, "%s: ..new link control2: 0x%x\n", __func__,
1289                             (u32)lnkctl2);
1290                 ret = pcie_capability_write_word(parent,
1291                                                  PCI_EXP_LNKCTL2, lnkctl2);
1292                 if (ret) {
1293                         dd_dev_err(dd, "Unable to write to PCI config\n");
1294                         return_error = 1;
1295                         goto done;
1296                 }
1297         } else {
1298                 dd_dev_info(dd, "%s: ..target speed is OK\n", __func__);
1299         }
1300
1301         dd_dev_info(dd, "%s: setting target link speed\n", __func__);
1302         ret = pcie_capability_read_word(dd->pcidev, PCI_EXP_LNKCTL2, &lnkctl2);
1303         if (ret) {
1304                 dd_dev_err(dd, "Unable to read from PCI config\n");
1305                 return_error = 1;
1306                 goto done;
1307         }
1308
1309         dd_dev_info(dd, "%s: ..old link control2: 0x%x\n", __func__,
1310                     (u32)lnkctl2);
1311         lnkctl2 &= ~PCI_EXP_LNKCTL2_TLS;
1312         lnkctl2 |= target_vector;
1313         dd_dev_info(dd, "%s: ..new link control2: 0x%x\n", __func__,
1314                     (u32)lnkctl2);
1315         ret = pcie_capability_write_word(dd->pcidev, PCI_EXP_LNKCTL2, lnkctl2);
1316         if (ret) {
1317                 dd_dev_err(dd, "Unable to write to PCI config\n");
1318                 return_error = 1;
1319                 goto done;
1320         }
1321
1322         /* step 5h: arm gasket logic */
1323         /* hold DC in reset across the SBR */
1324         write_csr(dd, CCE_DC_CTRL, CCE_DC_CTRL_DC_RESET_SMASK);
1325         (void)read_csr(dd, CCE_DC_CTRL); /* DC reset hold */
1326         /* save firmware control across the SBR */
1327         fw_ctrl = read_csr(dd, MISC_CFG_FW_CTRL);
1328
1329         dd_dev_info(dd, "%s: arming gasket logic\n", __func__);
1330         arm_gasket_logic(dd);
1331
1332         /*
1333          * step 6: quiesce PCIe link
1334          * The chip has already been reset, so there will be no traffic
1335          * from the chip.  Linux has no easy way to enforce that it will
1336          * not try to access the device, so we just need to hope it doesn't
1337          * do it while we are doing the reset.
1338          */
1339
1340         /*
1341          * step 7: initiate the secondary bus reset (SBR)
1342          * step 8: hardware brings the links back up
1343          * step 9: wait for link speed transition to be complete
1344          */
1345         dd_dev_info(dd, "%s: calling trigger_sbr\n", __func__);
1346         ret = trigger_sbr(dd);
1347         if (ret)
1348                 goto done;
1349
1350         /* step 10: decide what to do next */
1351
1352         /* check if we can read PCI space */
1353         ret = pci_read_config_word(dd->pcidev, PCI_VENDOR_ID, &vendor);
1354         if (ret) {
1355                 dd_dev_info(dd,
1356                             "%s: read of VendorID failed after SBR, err %d\n",
1357                             __func__, ret);
1358                 return_error = 1;
1359                 goto done;
1360         }
1361         if (vendor == 0xffff) {
1362                 dd_dev_info(dd, "%s: VendorID is all 1s after SBR\n", __func__);
1363                 return_error = 1;
1364                 ret = -EIO;
1365                 goto done;
1366         }
1367
1368         /* restore PCI space registers we know were reset */
1369         dd_dev_info(dd, "%s: calling restore_pci_variables\n", __func__);
1370         ret = restore_pci_variables(dd);
1371         if (ret) {
1372                 dd_dev_err(dd, "%s: Could not restore PCI variables\n",
1373                            __func__);
1374                 return_error = 1;
1375                 goto done;
1376         }
1377
1378         /* restore firmware control */
1379         write_csr(dd, MISC_CFG_FW_CTRL, fw_ctrl);
1380
1381         /*
1382          * Check the gasket block status.
1383          *
1384          * This is the first CSR read after the SBR.  If the read returns
1385          * all 1s (fails), the link did not make it back.
1386          *
1387          * Once we're sure we can read and write, clear the DC reset after
1388          * the SBR.  Then check for any per-lane errors. Then look over
1389          * the status.
1390          */
1391         reg = read_csr(dd, ASIC_PCIE_SD_HOST_STATUS);
1392         dd_dev_info(dd, "%s: gasket block status: 0x%llx\n", __func__, reg);
1393         if (reg == ~0ull) {     /* PCIe read failed/timeout */
1394                 dd_dev_err(dd, "SBR failed - unable to read from device\n");
1395                 return_error = 1;
1396                 ret = -ENOSYS;
1397                 goto done;
1398         }
1399
1400         /* clear the DC reset */
1401         write_csr(dd, CCE_DC_CTRL, 0);
1402
1403         /* Set the LED off */
1404         setextled(dd, 0);
1405
1406         /* check for any per-lane errors */
1407         ret = pci_read_config_dword(dd->pcidev, PCIE_CFG_SPCIE2, &reg32);
1408         if (ret) {
1409                 dd_dev_err(dd, "Unable to read from PCI config\n");
1410                 return_error = 1;
1411                 goto done;
1412         }
1413
1414         dd_dev_info(dd, "%s: per-lane errors: 0x%x\n", __func__, reg32);
1415
1416         /* extract status, look for our HFI */
1417         status = (reg >> ASIC_PCIE_SD_HOST_STATUS_FW_DNLD_STS_SHIFT)
1418                         & ASIC_PCIE_SD_HOST_STATUS_FW_DNLD_STS_MASK;
1419         if ((status & (1 << dd->hfi1_id)) == 0) {
1420                 dd_dev_err(dd,
1421                            "%s: gasket status 0x%x, expecting 0x%x\n",
1422                            __func__, status, 1 << dd->hfi1_id);
1423                 ret = -EIO;
1424                 goto done;
1425         }
1426
1427         /* extract error */
1428         err = (reg >> ASIC_PCIE_SD_HOST_STATUS_FW_DNLD_ERR_SHIFT)
1429                 & ASIC_PCIE_SD_HOST_STATUS_FW_DNLD_ERR_MASK;
1430         if (err) {
1431                 dd_dev_err(dd, "%s: gasket error %d\n", __func__, err);
1432                 ret = -EIO;
1433                 goto done;
1434         }
1435
1436         /* update our link information cache */
1437         update_lbus_info(dd);
1438         dd_dev_info(dd, "%s: new speed and width: %s\n", __func__,
1439                     dd->lbus_info);
1440
1441         if (dd->lbus_speed != target_speed) { /* not target */
1442                 /* maybe retry */
1443                 do_retry = retry_count < pcie_retry;
1444                 dd_dev_err(dd, "PCIe link speed did not switch to Gen%d%s\n",
1445                            pcie_target, do_retry ? ", retrying" : "");
1446                 retry_count++;
1447                 if (do_retry) {
1448                         msleep(100); /* allow time to settle */
1449                         goto retry;
1450                 }
1451                 ret = -EIO;
1452         }
1453
1454 done:
1455         if (therm) {
1456                 write_csr(dd, ASIC_CFG_THERM_POLL_EN, 0x1);
1457                 msleep(100);
1458                 dd_dev_info(dd, "%s: Re-enable therm polling\n",
1459                             __func__);
1460         }
1461         release_chip_resource(dd, CR_SBUS);
1462 done_no_mutex:
1463         /* return no error if it is OK to be at current speed */
1464         if (ret && !return_error) {
1465                 dd_dev_err(dd, "Proceeding at current speed PCIe speed\n");
1466                 ret = 0;
1467         }
1468
1469         dd_dev_info(dd, "%s: done\n", __func__);
1470         return ret;
1471 }