blob: 4cd422ff92f83e7bb764fa99964fca00990e1e64 [file] [log] [blame]
Mike Marciniszyn77241052015-07-30 15:17:43 -04001/*
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07002 * Copyright(c) 2015 - 2017 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/*
49 * This file contains all of the code that is specific to the HFI chip
50 */
51
52#include <linux/pci.h>
53#include <linux/delay.h>
54#include <linux/interrupt.h>
55#include <linux/module.h>
56
57#include "hfi.h"
58#include "trace.h"
59#include "mad.h"
60#include "pio.h"
61#include "sdma.h"
62#include "eprom.h"
Dean Luick5d9157a2015-11-16 21:59:34 -050063#include "efivar.h"
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080064#include "platform.h"
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -080065#include "aspm.h"
Dennis Dalessandro41973442016-07-25 07:52:36 -070066#include "affinity.h"
Don Hiatt243d9f42017-03-20 17:26:20 -070067#include "debugfs.h"
Mike Marciniszyn77241052015-07-30 15:17:43 -040068
69#define NUM_IB_PORTS 1
70
71uint kdeth_qp;
72module_param_named(kdeth_qp, kdeth_qp, uint, S_IRUGO);
73MODULE_PARM_DESC(kdeth_qp, "Set the KDETH queue pair prefix");
74
75uint num_vls = HFI1_MAX_VLS_SUPPORTED;
76module_param(num_vls, uint, S_IRUGO);
77MODULE_PARM_DESC(num_vls, "Set number of Virtual Lanes to use (1-8)");
78
79/*
80 * Default time to aggregate two 10K packets from the idle state
81 * (timer not running). The timer starts at the end of the first packet,
82 * so only the time for one 10K packet and header plus a bit extra is needed.
83 * 10 * 1024 + 64 header byte = 10304 byte
84 * 10304 byte / 12.5 GB/s = 824.32ns
85 */
86uint rcv_intr_timeout = (824 + 16); /* 16 is for coalescing interrupt */
87module_param(rcv_intr_timeout, uint, S_IRUGO);
88MODULE_PARM_DESC(rcv_intr_timeout, "Receive interrupt mitigation timeout in ns");
89
90uint rcv_intr_count = 16; /* same as qib */
91module_param(rcv_intr_count, uint, S_IRUGO);
92MODULE_PARM_DESC(rcv_intr_count, "Receive interrupt mitigation count");
93
94ushort link_crc_mask = SUPPORTED_CRCS;
95module_param(link_crc_mask, ushort, S_IRUGO);
96MODULE_PARM_DESC(link_crc_mask, "CRCs to use on the link");
97
98uint loopback;
99module_param_named(loopback, loopback, uint, S_IRUGO);
100MODULE_PARM_DESC(loopback, "Put into loopback mode (1 = serdes, 3 = external cable");
101
102/* Other driver tunables */
103uint rcv_intr_dynamic = 1; /* enable dynamic mode for rcv int mitigation*/
104static ushort crc_14b_sideband = 1;
105static uint use_flr = 1;
106uint quick_linkup; /* skip LNI */
107
108struct flag_table {
109 u64 flag; /* the flag */
110 char *str; /* description string */
111 u16 extra; /* extra information */
112 u16 unused0;
113 u32 unused1;
114};
115
116/* str must be a string constant */
117#define FLAG_ENTRY(str, extra, flag) {flag, str, extra}
118#define FLAG_ENTRY0(str, flag) {flag, str, 0}
119
120/* Send Error Consequences */
121#define SEC_WRITE_DROPPED 0x1
122#define SEC_PACKET_DROPPED 0x2
123#define SEC_SC_HALTED 0x4 /* per-context only */
124#define SEC_SPC_FREEZE 0x8 /* per-HFI only */
125
Harish Chegondi8784ac02016-07-25 13:38:50 -0700126#define DEFAULT_KRCVQS 2
Mike Marciniszyn77241052015-07-30 15:17:43 -0400127#define MIN_KERNEL_KCTXTS 2
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500128#define FIRST_KERNEL_KCTXT 1
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -0700129
130/*
131 * RSM instance allocation
132 * 0 - Verbs
133 * 1 - User Fecn Handling
134 * 2 - Vnic
135 */
136#define RSM_INS_VERBS 0
137#define RSM_INS_FECN 1
138#define RSM_INS_VNIC 2
Mike Marciniszyn77241052015-07-30 15:17:43 -0400139
140/* Bit offset into the GUID which carries HFI id information */
141#define GUID_HFI_INDEX_SHIFT 39
142
143/* extract the emulation revision */
144#define emulator_rev(dd) ((dd)->irev >> 8)
145/* parallel and serial emulation versions are 3 and 4 respectively */
146#define is_emulator_p(dd) ((((dd)->irev) & 0xf) == 3)
147#define is_emulator_s(dd) ((((dd)->irev) & 0xf) == 4)
148
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -0700149/* RSM fields for Verbs */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400150/* packet type */
151#define IB_PACKET_TYPE 2ull
152#define QW_SHIFT 6ull
153/* QPN[7..1] */
154#define QPN_WIDTH 7ull
155
156/* LRH.BTH: QW 0, OFFSET 48 - for match */
157#define LRH_BTH_QW 0ull
158#define LRH_BTH_BIT_OFFSET 48ull
159#define LRH_BTH_OFFSET(off) ((LRH_BTH_QW << QW_SHIFT) | (off))
160#define LRH_BTH_MATCH_OFFSET LRH_BTH_OFFSET(LRH_BTH_BIT_OFFSET)
161#define LRH_BTH_SELECT
162#define LRH_BTH_MASK 3ull
163#define LRH_BTH_VALUE 2ull
164
165/* LRH.SC[3..0] QW 0, OFFSET 56 - for match */
166#define LRH_SC_QW 0ull
167#define LRH_SC_BIT_OFFSET 56ull
168#define LRH_SC_OFFSET(off) ((LRH_SC_QW << QW_SHIFT) | (off))
169#define LRH_SC_MATCH_OFFSET LRH_SC_OFFSET(LRH_SC_BIT_OFFSET)
170#define LRH_SC_MASK 128ull
171#define LRH_SC_VALUE 0ull
172
173/* SC[n..0] QW 0, OFFSET 60 - for select */
174#define LRH_SC_SELECT_OFFSET ((LRH_SC_QW << QW_SHIFT) | (60ull))
175
176/* QPN[m+n:1] QW 1, OFFSET 1 */
177#define QPN_SELECT_OFFSET ((1ull << QW_SHIFT) | (1ull))
178
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -0700179/* RSM fields for Vnic */
180/* L2_TYPE: QW 0, OFFSET 61 - for match */
181#define L2_TYPE_QW 0ull
182#define L2_TYPE_BIT_OFFSET 61ull
183#define L2_TYPE_OFFSET(off) ((L2_TYPE_QW << QW_SHIFT) | (off))
184#define L2_TYPE_MATCH_OFFSET L2_TYPE_OFFSET(L2_TYPE_BIT_OFFSET)
185#define L2_TYPE_MASK 3ull
186#define L2_16B_VALUE 2ull
187
188/* L4_TYPE QW 1, OFFSET 0 - for match */
189#define L4_TYPE_QW 1ull
190#define L4_TYPE_BIT_OFFSET 0ull
191#define L4_TYPE_OFFSET(off) ((L4_TYPE_QW << QW_SHIFT) | (off))
192#define L4_TYPE_MATCH_OFFSET L4_TYPE_OFFSET(L4_TYPE_BIT_OFFSET)
193#define L4_16B_TYPE_MASK 0xFFull
194#define L4_16B_ETH_VALUE 0x78ull
195
196/* 16B VESWID - for select */
197#define L4_16B_HDR_VESWID_OFFSET ((2 << QW_SHIFT) | (16ull))
198/* 16B ENTROPY - for select */
199#define L2_16B_ENTROPY_OFFSET ((1 << QW_SHIFT) | (32ull))
200
Mike Marciniszyn77241052015-07-30 15:17:43 -0400201/* defines to build power on SC2VL table */
202#define SC2VL_VAL( \
203 num, \
204 sc0, sc0val, \
205 sc1, sc1val, \
206 sc2, sc2val, \
207 sc3, sc3val, \
208 sc4, sc4val, \
209 sc5, sc5val, \
210 sc6, sc6val, \
211 sc7, sc7val) \
212( \
213 ((u64)(sc0val) << SEND_SC2VLT##num##_SC##sc0##_SHIFT) | \
214 ((u64)(sc1val) << SEND_SC2VLT##num##_SC##sc1##_SHIFT) | \
215 ((u64)(sc2val) << SEND_SC2VLT##num##_SC##sc2##_SHIFT) | \
216 ((u64)(sc3val) << SEND_SC2VLT##num##_SC##sc3##_SHIFT) | \
217 ((u64)(sc4val) << SEND_SC2VLT##num##_SC##sc4##_SHIFT) | \
218 ((u64)(sc5val) << SEND_SC2VLT##num##_SC##sc5##_SHIFT) | \
219 ((u64)(sc6val) << SEND_SC2VLT##num##_SC##sc6##_SHIFT) | \
220 ((u64)(sc7val) << SEND_SC2VLT##num##_SC##sc7##_SHIFT) \
221)
222
223#define DC_SC_VL_VAL( \
224 range, \
225 e0, e0val, \
226 e1, e1val, \
227 e2, e2val, \
228 e3, e3val, \
229 e4, e4val, \
230 e5, e5val, \
231 e6, e6val, \
232 e7, e7val, \
233 e8, e8val, \
234 e9, e9val, \
235 e10, e10val, \
236 e11, e11val, \
237 e12, e12val, \
238 e13, e13val, \
239 e14, e14val, \
240 e15, e15val) \
241( \
242 ((u64)(e0val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e0##_SHIFT) | \
243 ((u64)(e1val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e1##_SHIFT) | \
244 ((u64)(e2val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e2##_SHIFT) | \
245 ((u64)(e3val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e3##_SHIFT) | \
246 ((u64)(e4val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e4##_SHIFT) | \
247 ((u64)(e5val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e5##_SHIFT) | \
248 ((u64)(e6val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e6##_SHIFT) | \
249 ((u64)(e7val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e7##_SHIFT) | \
250 ((u64)(e8val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e8##_SHIFT) | \
251 ((u64)(e9val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e9##_SHIFT) | \
252 ((u64)(e10val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e10##_SHIFT) | \
253 ((u64)(e11val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e11##_SHIFT) | \
254 ((u64)(e12val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e12##_SHIFT) | \
255 ((u64)(e13val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e13##_SHIFT) | \
256 ((u64)(e14val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e14##_SHIFT) | \
257 ((u64)(e15val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e15##_SHIFT) \
258)
259
260/* all CceStatus sub-block freeze bits */
261#define ALL_FROZE (CCE_STATUS_SDMA_FROZE_SMASK \
262 | CCE_STATUS_RXE_FROZE_SMASK \
263 | CCE_STATUS_TXE_FROZE_SMASK \
264 | CCE_STATUS_TXE_PIO_FROZE_SMASK)
265/* all CceStatus sub-block TXE pause bits */
266#define ALL_TXE_PAUSE (CCE_STATUS_TXE_PIO_PAUSED_SMASK \
267 | CCE_STATUS_TXE_PAUSED_SMASK \
268 | CCE_STATUS_SDMA_PAUSED_SMASK)
269/* all CceStatus sub-block RXE pause bits */
270#define ALL_RXE_PAUSE CCE_STATUS_RXE_PAUSED_SMASK
271
Jakub Pawlak2b719042016-07-01 16:01:22 -0700272#define CNTR_MAX 0xFFFFFFFFFFFFFFFFULL
273#define CNTR_32BIT_MAX 0x00000000FFFFFFFF
274
Mike Marciniszyn77241052015-07-30 15:17:43 -0400275/*
276 * CCE Error flags.
277 */
278static struct flag_table cce_err_status_flags[] = {
279/* 0*/ FLAG_ENTRY0("CceCsrParityErr",
280 CCE_ERR_STATUS_CCE_CSR_PARITY_ERR_SMASK),
281/* 1*/ FLAG_ENTRY0("CceCsrReadBadAddrErr",
282 CCE_ERR_STATUS_CCE_CSR_READ_BAD_ADDR_ERR_SMASK),
283/* 2*/ FLAG_ENTRY0("CceCsrWriteBadAddrErr",
284 CCE_ERR_STATUS_CCE_CSR_WRITE_BAD_ADDR_ERR_SMASK),
285/* 3*/ FLAG_ENTRY0("CceTrgtAsyncFifoParityErr",
286 CCE_ERR_STATUS_CCE_TRGT_ASYNC_FIFO_PARITY_ERR_SMASK),
287/* 4*/ FLAG_ENTRY0("CceTrgtAccessErr",
288 CCE_ERR_STATUS_CCE_TRGT_ACCESS_ERR_SMASK),
289/* 5*/ FLAG_ENTRY0("CceRspdDataParityErr",
290 CCE_ERR_STATUS_CCE_RSPD_DATA_PARITY_ERR_SMASK),
291/* 6*/ FLAG_ENTRY0("CceCli0AsyncFifoParityErr",
292 CCE_ERR_STATUS_CCE_CLI0_ASYNC_FIFO_PARITY_ERR_SMASK),
293/* 7*/ FLAG_ENTRY0("CceCsrCfgBusParityErr",
294 CCE_ERR_STATUS_CCE_CSR_CFG_BUS_PARITY_ERR_SMASK),
295/* 8*/ FLAG_ENTRY0("CceCli2AsyncFifoParityErr",
296 CCE_ERR_STATUS_CCE_CLI2_ASYNC_FIFO_PARITY_ERR_SMASK),
297/* 9*/ FLAG_ENTRY0("CceCli1AsyncFifoPioCrdtParityErr",
298 CCE_ERR_STATUS_CCE_CLI1_ASYNC_FIFO_PIO_CRDT_PARITY_ERR_SMASK),
299/*10*/ FLAG_ENTRY0("CceCli1AsyncFifoPioCrdtParityErr",
300 CCE_ERR_STATUS_CCE_CLI1_ASYNC_FIFO_SDMA_HD_PARITY_ERR_SMASK),
301/*11*/ FLAG_ENTRY0("CceCli1AsyncFifoRxdmaParityError",
302 CCE_ERR_STATUS_CCE_CLI1_ASYNC_FIFO_RXDMA_PARITY_ERROR_SMASK),
303/*12*/ FLAG_ENTRY0("CceCli1AsyncFifoDbgParityError",
304 CCE_ERR_STATUS_CCE_CLI1_ASYNC_FIFO_DBG_PARITY_ERROR_SMASK),
305/*13*/ FLAG_ENTRY0("PcicRetryMemCorErr",
306 CCE_ERR_STATUS_PCIC_RETRY_MEM_COR_ERR_SMASK),
307/*14*/ FLAG_ENTRY0("PcicRetryMemCorErr",
308 CCE_ERR_STATUS_PCIC_RETRY_SOT_MEM_COR_ERR_SMASK),
309/*15*/ FLAG_ENTRY0("PcicPostHdQCorErr",
310 CCE_ERR_STATUS_PCIC_POST_HD_QCOR_ERR_SMASK),
311/*16*/ FLAG_ENTRY0("PcicPostHdQCorErr",
312 CCE_ERR_STATUS_PCIC_POST_DAT_QCOR_ERR_SMASK),
313/*17*/ FLAG_ENTRY0("PcicPostHdQCorErr",
314 CCE_ERR_STATUS_PCIC_CPL_HD_QCOR_ERR_SMASK),
315/*18*/ FLAG_ENTRY0("PcicCplDatQCorErr",
316 CCE_ERR_STATUS_PCIC_CPL_DAT_QCOR_ERR_SMASK),
317/*19*/ FLAG_ENTRY0("PcicNPostHQParityErr",
318 CCE_ERR_STATUS_PCIC_NPOST_HQ_PARITY_ERR_SMASK),
319/*20*/ FLAG_ENTRY0("PcicNPostDatQParityErr",
320 CCE_ERR_STATUS_PCIC_NPOST_DAT_QPARITY_ERR_SMASK),
321/*21*/ FLAG_ENTRY0("PcicRetryMemUncErr",
322 CCE_ERR_STATUS_PCIC_RETRY_MEM_UNC_ERR_SMASK),
323/*22*/ FLAG_ENTRY0("PcicRetrySotMemUncErr",
324 CCE_ERR_STATUS_PCIC_RETRY_SOT_MEM_UNC_ERR_SMASK),
325/*23*/ FLAG_ENTRY0("PcicPostHdQUncErr",
326 CCE_ERR_STATUS_PCIC_POST_HD_QUNC_ERR_SMASK),
327/*24*/ FLAG_ENTRY0("PcicPostDatQUncErr",
328 CCE_ERR_STATUS_PCIC_POST_DAT_QUNC_ERR_SMASK),
329/*25*/ FLAG_ENTRY0("PcicCplHdQUncErr",
330 CCE_ERR_STATUS_PCIC_CPL_HD_QUNC_ERR_SMASK),
331/*26*/ FLAG_ENTRY0("PcicCplDatQUncErr",
332 CCE_ERR_STATUS_PCIC_CPL_DAT_QUNC_ERR_SMASK),
333/*27*/ FLAG_ENTRY0("PcicTransmitFrontParityErr",
334 CCE_ERR_STATUS_PCIC_TRANSMIT_FRONT_PARITY_ERR_SMASK),
335/*28*/ FLAG_ENTRY0("PcicTransmitBackParityErr",
336 CCE_ERR_STATUS_PCIC_TRANSMIT_BACK_PARITY_ERR_SMASK),
337/*29*/ FLAG_ENTRY0("PcicReceiveParityErr",
338 CCE_ERR_STATUS_PCIC_RECEIVE_PARITY_ERR_SMASK),
339/*30*/ FLAG_ENTRY0("CceTrgtCplTimeoutErr",
340 CCE_ERR_STATUS_CCE_TRGT_CPL_TIMEOUT_ERR_SMASK),
341/*31*/ FLAG_ENTRY0("LATriggered",
342 CCE_ERR_STATUS_LA_TRIGGERED_SMASK),
343/*32*/ FLAG_ENTRY0("CceSegReadBadAddrErr",
344 CCE_ERR_STATUS_CCE_SEG_READ_BAD_ADDR_ERR_SMASK),
345/*33*/ FLAG_ENTRY0("CceSegWriteBadAddrErr",
346 CCE_ERR_STATUS_CCE_SEG_WRITE_BAD_ADDR_ERR_SMASK),
347/*34*/ FLAG_ENTRY0("CceRcplAsyncFifoParityErr",
348 CCE_ERR_STATUS_CCE_RCPL_ASYNC_FIFO_PARITY_ERR_SMASK),
349/*35*/ FLAG_ENTRY0("CceRxdmaConvFifoParityErr",
350 CCE_ERR_STATUS_CCE_RXDMA_CONV_FIFO_PARITY_ERR_SMASK),
351/*36*/ FLAG_ENTRY0("CceMsixTableCorErr",
352 CCE_ERR_STATUS_CCE_MSIX_TABLE_COR_ERR_SMASK),
353/*37*/ FLAG_ENTRY0("CceMsixTableUncErr",
354 CCE_ERR_STATUS_CCE_MSIX_TABLE_UNC_ERR_SMASK),
355/*38*/ FLAG_ENTRY0("CceIntMapCorErr",
356 CCE_ERR_STATUS_CCE_INT_MAP_COR_ERR_SMASK),
357/*39*/ FLAG_ENTRY0("CceIntMapUncErr",
358 CCE_ERR_STATUS_CCE_INT_MAP_UNC_ERR_SMASK),
359/*40*/ FLAG_ENTRY0("CceMsixCsrParityErr",
360 CCE_ERR_STATUS_CCE_MSIX_CSR_PARITY_ERR_SMASK),
361/*41-63 reserved*/
362};
363
364/*
365 * Misc Error flags
366 */
367#define MES(text) MISC_ERR_STATUS_MISC_##text##_ERR_SMASK
368static struct flag_table misc_err_status_flags[] = {
369/* 0*/ FLAG_ENTRY0("CSR_PARITY", MES(CSR_PARITY)),
370/* 1*/ FLAG_ENTRY0("CSR_READ_BAD_ADDR", MES(CSR_READ_BAD_ADDR)),
371/* 2*/ FLAG_ENTRY0("CSR_WRITE_BAD_ADDR", MES(CSR_WRITE_BAD_ADDR)),
372/* 3*/ FLAG_ENTRY0("SBUS_WRITE_FAILED", MES(SBUS_WRITE_FAILED)),
373/* 4*/ FLAG_ENTRY0("KEY_MISMATCH", MES(KEY_MISMATCH)),
374/* 5*/ FLAG_ENTRY0("FW_AUTH_FAILED", MES(FW_AUTH_FAILED)),
375/* 6*/ FLAG_ENTRY0("EFUSE_CSR_PARITY", MES(EFUSE_CSR_PARITY)),
376/* 7*/ FLAG_ENTRY0("EFUSE_READ_BAD_ADDR", MES(EFUSE_READ_BAD_ADDR)),
377/* 8*/ FLAG_ENTRY0("EFUSE_WRITE", MES(EFUSE_WRITE)),
378/* 9*/ FLAG_ENTRY0("EFUSE_DONE_PARITY", MES(EFUSE_DONE_PARITY)),
379/*10*/ FLAG_ENTRY0("INVALID_EEP_CMD", MES(INVALID_EEP_CMD)),
380/*11*/ FLAG_ENTRY0("MBIST_FAIL", MES(MBIST_FAIL)),
381/*12*/ FLAG_ENTRY0("PLL_LOCK_FAIL", MES(PLL_LOCK_FAIL))
382};
383
384/*
385 * TXE PIO Error flags and consequences
386 */
387static struct flag_table pio_err_status_flags[] = {
388/* 0*/ FLAG_ENTRY("PioWriteBadCtxt",
389 SEC_WRITE_DROPPED,
390 SEND_PIO_ERR_STATUS_PIO_WRITE_BAD_CTXT_ERR_SMASK),
391/* 1*/ FLAG_ENTRY("PioWriteAddrParity",
392 SEC_SPC_FREEZE,
393 SEND_PIO_ERR_STATUS_PIO_WRITE_ADDR_PARITY_ERR_SMASK),
394/* 2*/ FLAG_ENTRY("PioCsrParity",
395 SEC_SPC_FREEZE,
396 SEND_PIO_ERR_STATUS_PIO_CSR_PARITY_ERR_SMASK),
397/* 3*/ FLAG_ENTRY("PioSbMemFifo0",
398 SEC_SPC_FREEZE,
399 SEND_PIO_ERR_STATUS_PIO_SB_MEM_FIFO0_ERR_SMASK),
400/* 4*/ FLAG_ENTRY("PioSbMemFifo1",
401 SEC_SPC_FREEZE,
402 SEND_PIO_ERR_STATUS_PIO_SB_MEM_FIFO1_ERR_SMASK),
403/* 5*/ FLAG_ENTRY("PioPccFifoParity",
404 SEC_SPC_FREEZE,
405 SEND_PIO_ERR_STATUS_PIO_PCC_FIFO_PARITY_ERR_SMASK),
406/* 6*/ FLAG_ENTRY("PioPecFifoParity",
407 SEC_SPC_FREEZE,
408 SEND_PIO_ERR_STATUS_PIO_PEC_FIFO_PARITY_ERR_SMASK),
409/* 7*/ FLAG_ENTRY("PioSbrdctlCrrelParity",
410 SEC_SPC_FREEZE,
411 SEND_PIO_ERR_STATUS_PIO_SBRDCTL_CRREL_PARITY_ERR_SMASK),
412/* 8*/ FLAG_ENTRY("PioSbrdctrlCrrelFifoParity",
413 SEC_SPC_FREEZE,
414 SEND_PIO_ERR_STATUS_PIO_SBRDCTRL_CRREL_FIFO_PARITY_ERR_SMASK),
415/* 9*/ FLAG_ENTRY("PioPktEvictFifoParityErr",
416 SEC_SPC_FREEZE,
417 SEND_PIO_ERR_STATUS_PIO_PKT_EVICT_FIFO_PARITY_ERR_SMASK),
418/*10*/ FLAG_ENTRY("PioSmPktResetParity",
419 SEC_SPC_FREEZE,
420 SEND_PIO_ERR_STATUS_PIO_SM_PKT_RESET_PARITY_ERR_SMASK),
421/*11*/ FLAG_ENTRY("PioVlLenMemBank0Unc",
422 SEC_SPC_FREEZE,
423 SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK0_UNC_ERR_SMASK),
424/*12*/ FLAG_ENTRY("PioVlLenMemBank1Unc",
425 SEC_SPC_FREEZE,
426 SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK1_UNC_ERR_SMASK),
427/*13*/ FLAG_ENTRY("PioVlLenMemBank0Cor",
428 0,
429 SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK0_COR_ERR_SMASK),
430/*14*/ FLAG_ENTRY("PioVlLenMemBank1Cor",
431 0,
432 SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK1_COR_ERR_SMASK),
433/*15*/ FLAG_ENTRY("PioCreditRetFifoParity",
434 SEC_SPC_FREEZE,
435 SEND_PIO_ERR_STATUS_PIO_CREDIT_RET_FIFO_PARITY_ERR_SMASK),
436/*16*/ FLAG_ENTRY("PioPpmcPblFifo",
437 SEC_SPC_FREEZE,
438 SEND_PIO_ERR_STATUS_PIO_PPMC_PBL_FIFO_ERR_SMASK),
439/*17*/ FLAG_ENTRY("PioInitSmIn",
440 0,
441 SEND_PIO_ERR_STATUS_PIO_INIT_SM_IN_ERR_SMASK),
442/*18*/ FLAG_ENTRY("PioPktEvictSmOrArbSm",
443 SEC_SPC_FREEZE,
444 SEND_PIO_ERR_STATUS_PIO_PKT_EVICT_SM_OR_ARB_SM_ERR_SMASK),
445/*19*/ FLAG_ENTRY("PioHostAddrMemUnc",
446 SEC_SPC_FREEZE,
447 SEND_PIO_ERR_STATUS_PIO_HOST_ADDR_MEM_UNC_ERR_SMASK),
448/*20*/ FLAG_ENTRY("PioHostAddrMemCor",
449 0,
450 SEND_PIO_ERR_STATUS_PIO_HOST_ADDR_MEM_COR_ERR_SMASK),
451/*21*/ FLAG_ENTRY("PioWriteDataParity",
452 SEC_SPC_FREEZE,
453 SEND_PIO_ERR_STATUS_PIO_WRITE_DATA_PARITY_ERR_SMASK),
454/*22*/ FLAG_ENTRY("PioStateMachine",
455 SEC_SPC_FREEZE,
456 SEND_PIO_ERR_STATUS_PIO_STATE_MACHINE_ERR_SMASK),
457/*23*/ FLAG_ENTRY("PioWriteQwValidParity",
Jubin John8638b772016-02-14 20:19:24 -0800458 SEC_WRITE_DROPPED | SEC_SPC_FREEZE,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400459 SEND_PIO_ERR_STATUS_PIO_WRITE_QW_VALID_PARITY_ERR_SMASK),
460/*24*/ FLAG_ENTRY("PioBlockQwCountParity",
Jubin John8638b772016-02-14 20:19:24 -0800461 SEC_WRITE_DROPPED | SEC_SPC_FREEZE,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400462 SEND_PIO_ERR_STATUS_PIO_BLOCK_QW_COUNT_PARITY_ERR_SMASK),
463/*25*/ FLAG_ENTRY("PioVlfVlLenParity",
464 SEC_SPC_FREEZE,
465 SEND_PIO_ERR_STATUS_PIO_VLF_VL_LEN_PARITY_ERR_SMASK),
466/*26*/ FLAG_ENTRY("PioVlfSopParity",
467 SEC_SPC_FREEZE,
468 SEND_PIO_ERR_STATUS_PIO_VLF_SOP_PARITY_ERR_SMASK),
469/*27*/ FLAG_ENTRY("PioVlFifoParity",
470 SEC_SPC_FREEZE,
471 SEND_PIO_ERR_STATUS_PIO_VL_FIFO_PARITY_ERR_SMASK),
472/*28*/ FLAG_ENTRY("PioPpmcBqcMemParity",
473 SEC_SPC_FREEZE,
474 SEND_PIO_ERR_STATUS_PIO_PPMC_BQC_MEM_PARITY_ERR_SMASK),
475/*29*/ FLAG_ENTRY("PioPpmcSopLen",
476 SEC_SPC_FREEZE,
477 SEND_PIO_ERR_STATUS_PIO_PPMC_SOP_LEN_ERR_SMASK),
478/*30-31 reserved*/
479/*32*/ FLAG_ENTRY("PioCurrentFreeCntParity",
480 SEC_SPC_FREEZE,
481 SEND_PIO_ERR_STATUS_PIO_CURRENT_FREE_CNT_PARITY_ERR_SMASK),
482/*33*/ FLAG_ENTRY("PioLastReturnedCntParity",
483 SEC_SPC_FREEZE,
484 SEND_PIO_ERR_STATUS_PIO_LAST_RETURNED_CNT_PARITY_ERR_SMASK),
485/*34*/ FLAG_ENTRY("PioPccSopHeadParity",
486 SEC_SPC_FREEZE,
487 SEND_PIO_ERR_STATUS_PIO_PCC_SOP_HEAD_PARITY_ERR_SMASK),
488/*35*/ FLAG_ENTRY("PioPecSopHeadParityErr",
489 SEC_SPC_FREEZE,
490 SEND_PIO_ERR_STATUS_PIO_PEC_SOP_HEAD_PARITY_ERR_SMASK),
491/*36-63 reserved*/
492};
493
494/* TXE PIO errors that cause an SPC freeze */
495#define ALL_PIO_FREEZE_ERR \
496 (SEND_PIO_ERR_STATUS_PIO_WRITE_ADDR_PARITY_ERR_SMASK \
497 | SEND_PIO_ERR_STATUS_PIO_CSR_PARITY_ERR_SMASK \
498 | SEND_PIO_ERR_STATUS_PIO_SB_MEM_FIFO0_ERR_SMASK \
499 | SEND_PIO_ERR_STATUS_PIO_SB_MEM_FIFO1_ERR_SMASK \
500 | SEND_PIO_ERR_STATUS_PIO_PCC_FIFO_PARITY_ERR_SMASK \
501 | SEND_PIO_ERR_STATUS_PIO_PEC_FIFO_PARITY_ERR_SMASK \
502 | SEND_PIO_ERR_STATUS_PIO_SBRDCTL_CRREL_PARITY_ERR_SMASK \
503 | SEND_PIO_ERR_STATUS_PIO_SBRDCTRL_CRREL_FIFO_PARITY_ERR_SMASK \
504 | SEND_PIO_ERR_STATUS_PIO_PKT_EVICT_FIFO_PARITY_ERR_SMASK \
505 | SEND_PIO_ERR_STATUS_PIO_SM_PKT_RESET_PARITY_ERR_SMASK \
506 | SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK0_UNC_ERR_SMASK \
507 | SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK1_UNC_ERR_SMASK \
508 | SEND_PIO_ERR_STATUS_PIO_CREDIT_RET_FIFO_PARITY_ERR_SMASK \
509 | SEND_PIO_ERR_STATUS_PIO_PPMC_PBL_FIFO_ERR_SMASK \
510 | SEND_PIO_ERR_STATUS_PIO_PKT_EVICT_SM_OR_ARB_SM_ERR_SMASK \
511 | SEND_PIO_ERR_STATUS_PIO_HOST_ADDR_MEM_UNC_ERR_SMASK \
512 | SEND_PIO_ERR_STATUS_PIO_WRITE_DATA_PARITY_ERR_SMASK \
513 | SEND_PIO_ERR_STATUS_PIO_STATE_MACHINE_ERR_SMASK \
514 | SEND_PIO_ERR_STATUS_PIO_WRITE_QW_VALID_PARITY_ERR_SMASK \
515 | SEND_PIO_ERR_STATUS_PIO_BLOCK_QW_COUNT_PARITY_ERR_SMASK \
516 | SEND_PIO_ERR_STATUS_PIO_VLF_VL_LEN_PARITY_ERR_SMASK \
517 | SEND_PIO_ERR_STATUS_PIO_VLF_SOP_PARITY_ERR_SMASK \
518 | SEND_PIO_ERR_STATUS_PIO_VL_FIFO_PARITY_ERR_SMASK \
519 | SEND_PIO_ERR_STATUS_PIO_PPMC_BQC_MEM_PARITY_ERR_SMASK \
520 | SEND_PIO_ERR_STATUS_PIO_PPMC_SOP_LEN_ERR_SMASK \
521 | SEND_PIO_ERR_STATUS_PIO_CURRENT_FREE_CNT_PARITY_ERR_SMASK \
522 | SEND_PIO_ERR_STATUS_PIO_LAST_RETURNED_CNT_PARITY_ERR_SMASK \
523 | SEND_PIO_ERR_STATUS_PIO_PCC_SOP_HEAD_PARITY_ERR_SMASK \
524 | SEND_PIO_ERR_STATUS_PIO_PEC_SOP_HEAD_PARITY_ERR_SMASK)
525
526/*
527 * TXE SDMA Error flags
528 */
529static struct flag_table sdma_err_status_flags[] = {
530/* 0*/ FLAG_ENTRY0("SDmaRpyTagErr",
531 SEND_DMA_ERR_STATUS_SDMA_RPY_TAG_ERR_SMASK),
532/* 1*/ FLAG_ENTRY0("SDmaCsrParityErr",
533 SEND_DMA_ERR_STATUS_SDMA_CSR_PARITY_ERR_SMASK),
534/* 2*/ FLAG_ENTRY0("SDmaPcieReqTrackingUncErr",
535 SEND_DMA_ERR_STATUS_SDMA_PCIE_REQ_TRACKING_UNC_ERR_SMASK),
536/* 3*/ FLAG_ENTRY0("SDmaPcieReqTrackingCorErr",
537 SEND_DMA_ERR_STATUS_SDMA_PCIE_REQ_TRACKING_COR_ERR_SMASK),
538/*04-63 reserved*/
539};
540
541/* TXE SDMA errors that cause an SPC freeze */
542#define ALL_SDMA_FREEZE_ERR \
543 (SEND_DMA_ERR_STATUS_SDMA_RPY_TAG_ERR_SMASK \
544 | SEND_DMA_ERR_STATUS_SDMA_CSR_PARITY_ERR_SMASK \
545 | SEND_DMA_ERR_STATUS_SDMA_PCIE_REQ_TRACKING_UNC_ERR_SMASK)
546
Mike Marciniszyn69a00b82016-02-03 14:31:49 -0800547/* SendEgressErrInfo bits that correspond to a PortXmitDiscard counter */
548#define PORT_DISCARD_EGRESS_ERRS \
549 (SEND_EGRESS_ERR_INFO_TOO_LONG_IB_PACKET_ERR_SMASK \
550 | SEND_EGRESS_ERR_INFO_VL_MAPPING_ERR_SMASK \
551 | SEND_EGRESS_ERR_INFO_VL_ERR_SMASK)
552
Mike Marciniszyn77241052015-07-30 15:17:43 -0400553/*
554 * TXE Egress Error flags
555 */
556#define SEES(text) SEND_EGRESS_ERR_STATUS_##text##_ERR_SMASK
557static struct flag_table egress_err_status_flags[] = {
558/* 0*/ FLAG_ENTRY0("TxPktIntegrityMemCorErr", SEES(TX_PKT_INTEGRITY_MEM_COR)),
559/* 1*/ FLAG_ENTRY0("TxPktIntegrityMemUncErr", SEES(TX_PKT_INTEGRITY_MEM_UNC)),
560/* 2 reserved */
561/* 3*/ FLAG_ENTRY0("TxEgressFifoUnderrunOrParityErr",
562 SEES(TX_EGRESS_FIFO_UNDERRUN_OR_PARITY)),
563/* 4*/ FLAG_ENTRY0("TxLinkdownErr", SEES(TX_LINKDOWN)),
564/* 5*/ FLAG_ENTRY0("TxIncorrectLinkStateErr", SEES(TX_INCORRECT_LINK_STATE)),
565/* 6 reserved */
566/* 7*/ FLAG_ENTRY0("TxPioLaunchIntfParityErr",
567 SEES(TX_PIO_LAUNCH_INTF_PARITY)),
568/* 8*/ FLAG_ENTRY0("TxSdmaLaunchIntfParityErr",
569 SEES(TX_SDMA_LAUNCH_INTF_PARITY)),
570/* 9-10 reserved */
571/*11*/ FLAG_ENTRY0("TxSbrdCtlStateMachineParityErr",
572 SEES(TX_SBRD_CTL_STATE_MACHINE_PARITY)),
573/*12*/ FLAG_ENTRY0("TxIllegalVLErr", SEES(TX_ILLEGAL_VL)),
574/*13*/ FLAG_ENTRY0("TxLaunchCsrParityErr", SEES(TX_LAUNCH_CSR_PARITY)),
575/*14*/ FLAG_ENTRY0("TxSbrdCtlCsrParityErr", SEES(TX_SBRD_CTL_CSR_PARITY)),
576/*15*/ FLAG_ENTRY0("TxConfigParityErr", SEES(TX_CONFIG_PARITY)),
577/*16*/ FLAG_ENTRY0("TxSdma0DisallowedPacketErr",
578 SEES(TX_SDMA0_DISALLOWED_PACKET)),
579/*17*/ FLAG_ENTRY0("TxSdma1DisallowedPacketErr",
580 SEES(TX_SDMA1_DISALLOWED_PACKET)),
581/*18*/ FLAG_ENTRY0("TxSdma2DisallowedPacketErr",
582 SEES(TX_SDMA2_DISALLOWED_PACKET)),
583/*19*/ FLAG_ENTRY0("TxSdma3DisallowedPacketErr",
584 SEES(TX_SDMA3_DISALLOWED_PACKET)),
585/*20*/ FLAG_ENTRY0("TxSdma4DisallowedPacketErr",
586 SEES(TX_SDMA4_DISALLOWED_PACKET)),
587/*21*/ FLAG_ENTRY0("TxSdma5DisallowedPacketErr",
588 SEES(TX_SDMA5_DISALLOWED_PACKET)),
589/*22*/ FLAG_ENTRY0("TxSdma6DisallowedPacketErr",
590 SEES(TX_SDMA6_DISALLOWED_PACKET)),
591/*23*/ FLAG_ENTRY0("TxSdma7DisallowedPacketErr",
592 SEES(TX_SDMA7_DISALLOWED_PACKET)),
593/*24*/ FLAG_ENTRY0("TxSdma8DisallowedPacketErr",
594 SEES(TX_SDMA8_DISALLOWED_PACKET)),
595/*25*/ FLAG_ENTRY0("TxSdma9DisallowedPacketErr",
596 SEES(TX_SDMA9_DISALLOWED_PACKET)),
597/*26*/ FLAG_ENTRY0("TxSdma10DisallowedPacketErr",
598 SEES(TX_SDMA10_DISALLOWED_PACKET)),
599/*27*/ FLAG_ENTRY0("TxSdma11DisallowedPacketErr",
600 SEES(TX_SDMA11_DISALLOWED_PACKET)),
601/*28*/ FLAG_ENTRY0("TxSdma12DisallowedPacketErr",
602 SEES(TX_SDMA12_DISALLOWED_PACKET)),
603/*29*/ FLAG_ENTRY0("TxSdma13DisallowedPacketErr",
604 SEES(TX_SDMA13_DISALLOWED_PACKET)),
605/*30*/ FLAG_ENTRY0("TxSdma14DisallowedPacketErr",
606 SEES(TX_SDMA14_DISALLOWED_PACKET)),
607/*31*/ FLAG_ENTRY0("TxSdma15DisallowedPacketErr",
608 SEES(TX_SDMA15_DISALLOWED_PACKET)),
609/*32*/ FLAG_ENTRY0("TxLaunchFifo0UncOrParityErr",
610 SEES(TX_LAUNCH_FIFO0_UNC_OR_PARITY)),
611/*33*/ FLAG_ENTRY0("TxLaunchFifo1UncOrParityErr",
612 SEES(TX_LAUNCH_FIFO1_UNC_OR_PARITY)),
613/*34*/ FLAG_ENTRY0("TxLaunchFifo2UncOrParityErr",
614 SEES(TX_LAUNCH_FIFO2_UNC_OR_PARITY)),
615/*35*/ FLAG_ENTRY0("TxLaunchFifo3UncOrParityErr",
616 SEES(TX_LAUNCH_FIFO3_UNC_OR_PARITY)),
617/*36*/ FLAG_ENTRY0("TxLaunchFifo4UncOrParityErr",
618 SEES(TX_LAUNCH_FIFO4_UNC_OR_PARITY)),
619/*37*/ FLAG_ENTRY0("TxLaunchFifo5UncOrParityErr",
620 SEES(TX_LAUNCH_FIFO5_UNC_OR_PARITY)),
621/*38*/ FLAG_ENTRY0("TxLaunchFifo6UncOrParityErr",
622 SEES(TX_LAUNCH_FIFO6_UNC_OR_PARITY)),
623/*39*/ FLAG_ENTRY0("TxLaunchFifo7UncOrParityErr",
624 SEES(TX_LAUNCH_FIFO7_UNC_OR_PARITY)),
625/*40*/ FLAG_ENTRY0("TxLaunchFifo8UncOrParityErr",
626 SEES(TX_LAUNCH_FIFO8_UNC_OR_PARITY)),
627/*41*/ FLAG_ENTRY0("TxCreditReturnParityErr", SEES(TX_CREDIT_RETURN_PARITY)),
628/*42*/ FLAG_ENTRY0("TxSbHdrUncErr", SEES(TX_SB_HDR_UNC)),
629/*43*/ FLAG_ENTRY0("TxReadSdmaMemoryUncErr", SEES(TX_READ_SDMA_MEMORY_UNC)),
630/*44*/ FLAG_ENTRY0("TxReadPioMemoryUncErr", SEES(TX_READ_PIO_MEMORY_UNC)),
631/*45*/ FLAG_ENTRY0("TxEgressFifoUncErr", SEES(TX_EGRESS_FIFO_UNC)),
632/*46*/ FLAG_ENTRY0("TxHcrcInsertionErr", SEES(TX_HCRC_INSERTION)),
633/*47*/ FLAG_ENTRY0("TxCreditReturnVLErr", SEES(TX_CREDIT_RETURN_VL)),
634/*48*/ FLAG_ENTRY0("TxLaunchFifo0CorErr", SEES(TX_LAUNCH_FIFO0_COR)),
635/*49*/ FLAG_ENTRY0("TxLaunchFifo1CorErr", SEES(TX_LAUNCH_FIFO1_COR)),
636/*50*/ FLAG_ENTRY0("TxLaunchFifo2CorErr", SEES(TX_LAUNCH_FIFO2_COR)),
637/*51*/ FLAG_ENTRY0("TxLaunchFifo3CorErr", SEES(TX_LAUNCH_FIFO3_COR)),
638/*52*/ FLAG_ENTRY0("TxLaunchFifo4CorErr", SEES(TX_LAUNCH_FIFO4_COR)),
639/*53*/ FLAG_ENTRY0("TxLaunchFifo5CorErr", SEES(TX_LAUNCH_FIFO5_COR)),
640/*54*/ FLAG_ENTRY0("TxLaunchFifo6CorErr", SEES(TX_LAUNCH_FIFO6_COR)),
641/*55*/ FLAG_ENTRY0("TxLaunchFifo7CorErr", SEES(TX_LAUNCH_FIFO7_COR)),
642/*56*/ FLAG_ENTRY0("TxLaunchFifo8CorErr", SEES(TX_LAUNCH_FIFO8_COR)),
643/*57*/ FLAG_ENTRY0("TxCreditOverrunErr", SEES(TX_CREDIT_OVERRUN)),
644/*58*/ FLAG_ENTRY0("TxSbHdrCorErr", SEES(TX_SB_HDR_COR)),
645/*59*/ FLAG_ENTRY0("TxReadSdmaMemoryCorErr", SEES(TX_READ_SDMA_MEMORY_COR)),
646/*60*/ FLAG_ENTRY0("TxReadPioMemoryCorErr", SEES(TX_READ_PIO_MEMORY_COR)),
647/*61*/ FLAG_ENTRY0("TxEgressFifoCorErr", SEES(TX_EGRESS_FIFO_COR)),
648/*62*/ FLAG_ENTRY0("TxReadSdmaMemoryCsrUncErr",
649 SEES(TX_READ_SDMA_MEMORY_CSR_UNC)),
650/*63*/ FLAG_ENTRY0("TxReadPioMemoryCsrUncErr",
651 SEES(TX_READ_PIO_MEMORY_CSR_UNC)),
652};
653
654/*
655 * TXE Egress Error Info flags
656 */
657#define SEEI(text) SEND_EGRESS_ERR_INFO_##text##_ERR_SMASK
658static struct flag_table egress_err_info_flags[] = {
659/* 0*/ FLAG_ENTRY0("Reserved", 0ull),
660/* 1*/ FLAG_ENTRY0("VLErr", SEEI(VL)),
661/* 2*/ FLAG_ENTRY0("JobKeyErr", SEEI(JOB_KEY)),
662/* 3*/ FLAG_ENTRY0("JobKeyErr", SEEI(JOB_KEY)),
663/* 4*/ FLAG_ENTRY0("PartitionKeyErr", SEEI(PARTITION_KEY)),
664/* 5*/ FLAG_ENTRY0("SLIDErr", SEEI(SLID)),
665/* 6*/ FLAG_ENTRY0("OpcodeErr", SEEI(OPCODE)),
666/* 7*/ FLAG_ENTRY0("VLMappingErr", SEEI(VL_MAPPING)),
667/* 8*/ FLAG_ENTRY0("RawErr", SEEI(RAW)),
668/* 9*/ FLAG_ENTRY0("RawIPv6Err", SEEI(RAW_IPV6)),
669/*10*/ FLAG_ENTRY0("GRHErr", SEEI(GRH)),
670/*11*/ FLAG_ENTRY0("BypassErr", SEEI(BYPASS)),
671/*12*/ FLAG_ENTRY0("KDETHPacketsErr", SEEI(KDETH_PACKETS)),
672/*13*/ FLAG_ENTRY0("NonKDETHPacketsErr", SEEI(NON_KDETH_PACKETS)),
673/*14*/ FLAG_ENTRY0("TooSmallIBPacketsErr", SEEI(TOO_SMALL_IB_PACKETS)),
674/*15*/ FLAG_ENTRY0("TooSmallBypassPacketsErr", SEEI(TOO_SMALL_BYPASS_PACKETS)),
675/*16*/ FLAG_ENTRY0("PbcTestErr", SEEI(PBC_TEST)),
676/*17*/ FLAG_ENTRY0("BadPktLenErr", SEEI(BAD_PKT_LEN)),
677/*18*/ FLAG_ENTRY0("TooLongIBPacketErr", SEEI(TOO_LONG_IB_PACKET)),
678/*19*/ FLAG_ENTRY0("TooLongBypassPacketsErr", SEEI(TOO_LONG_BYPASS_PACKETS)),
679/*20*/ FLAG_ENTRY0("PbcStaticRateControlErr", SEEI(PBC_STATIC_RATE_CONTROL)),
680/*21*/ FLAG_ENTRY0("BypassBadPktLenErr", SEEI(BAD_PKT_LEN)),
681};
682
683/* TXE Egress errors that cause an SPC freeze */
684#define ALL_TXE_EGRESS_FREEZE_ERR \
685 (SEES(TX_EGRESS_FIFO_UNDERRUN_OR_PARITY) \
686 | SEES(TX_PIO_LAUNCH_INTF_PARITY) \
687 | SEES(TX_SDMA_LAUNCH_INTF_PARITY) \
688 | SEES(TX_SBRD_CTL_STATE_MACHINE_PARITY) \
689 | SEES(TX_LAUNCH_CSR_PARITY) \
690 | SEES(TX_SBRD_CTL_CSR_PARITY) \
691 | SEES(TX_CONFIG_PARITY) \
692 | SEES(TX_LAUNCH_FIFO0_UNC_OR_PARITY) \
693 | SEES(TX_LAUNCH_FIFO1_UNC_OR_PARITY) \
694 | SEES(TX_LAUNCH_FIFO2_UNC_OR_PARITY) \
695 | SEES(TX_LAUNCH_FIFO3_UNC_OR_PARITY) \
696 | SEES(TX_LAUNCH_FIFO4_UNC_OR_PARITY) \
697 | SEES(TX_LAUNCH_FIFO5_UNC_OR_PARITY) \
698 | SEES(TX_LAUNCH_FIFO6_UNC_OR_PARITY) \
699 | SEES(TX_LAUNCH_FIFO7_UNC_OR_PARITY) \
700 | SEES(TX_LAUNCH_FIFO8_UNC_OR_PARITY) \
701 | SEES(TX_CREDIT_RETURN_PARITY))
702
703/*
704 * TXE Send error flags
705 */
706#define SES(name) SEND_ERR_STATUS_SEND_##name##_ERR_SMASK
707static struct flag_table send_err_status_flags[] = {
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -0500708/* 0*/ FLAG_ENTRY0("SendCsrParityErr", SES(CSR_PARITY)),
Mike Marciniszyn77241052015-07-30 15:17:43 -0400709/* 1*/ FLAG_ENTRY0("SendCsrReadBadAddrErr", SES(CSR_READ_BAD_ADDR)),
710/* 2*/ FLAG_ENTRY0("SendCsrWriteBadAddrErr", SES(CSR_WRITE_BAD_ADDR))
711};
712
713/*
714 * TXE Send Context Error flags and consequences
715 */
716static struct flag_table sc_err_status_flags[] = {
717/* 0*/ FLAG_ENTRY("InconsistentSop",
718 SEC_PACKET_DROPPED | SEC_SC_HALTED,
719 SEND_CTXT_ERR_STATUS_PIO_INCONSISTENT_SOP_ERR_SMASK),
720/* 1*/ FLAG_ENTRY("DisallowedPacket",
721 SEC_PACKET_DROPPED | SEC_SC_HALTED,
722 SEND_CTXT_ERR_STATUS_PIO_DISALLOWED_PACKET_ERR_SMASK),
723/* 2*/ FLAG_ENTRY("WriteCrossesBoundary",
724 SEC_WRITE_DROPPED | SEC_SC_HALTED,
725 SEND_CTXT_ERR_STATUS_PIO_WRITE_CROSSES_BOUNDARY_ERR_SMASK),
726/* 3*/ FLAG_ENTRY("WriteOverflow",
727 SEC_WRITE_DROPPED | SEC_SC_HALTED,
728 SEND_CTXT_ERR_STATUS_PIO_WRITE_OVERFLOW_ERR_SMASK),
729/* 4*/ FLAG_ENTRY("WriteOutOfBounds",
730 SEC_WRITE_DROPPED | SEC_SC_HALTED,
731 SEND_CTXT_ERR_STATUS_PIO_WRITE_OUT_OF_BOUNDS_ERR_SMASK),
732/* 5-63 reserved*/
733};
734
735/*
736 * RXE Receive Error flags
737 */
738#define RXES(name) RCV_ERR_STATUS_RX_##name##_ERR_SMASK
739static struct flag_table rxe_err_status_flags[] = {
740/* 0*/ FLAG_ENTRY0("RxDmaCsrCorErr", RXES(DMA_CSR_COR)),
741/* 1*/ FLAG_ENTRY0("RxDcIntfParityErr", RXES(DC_INTF_PARITY)),
742/* 2*/ FLAG_ENTRY0("RxRcvHdrUncErr", RXES(RCV_HDR_UNC)),
743/* 3*/ FLAG_ENTRY0("RxRcvHdrCorErr", RXES(RCV_HDR_COR)),
744/* 4*/ FLAG_ENTRY0("RxRcvDataUncErr", RXES(RCV_DATA_UNC)),
745/* 5*/ FLAG_ENTRY0("RxRcvDataCorErr", RXES(RCV_DATA_COR)),
746/* 6*/ FLAG_ENTRY0("RxRcvQpMapTableUncErr", RXES(RCV_QP_MAP_TABLE_UNC)),
747/* 7*/ FLAG_ENTRY0("RxRcvQpMapTableCorErr", RXES(RCV_QP_MAP_TABLE_COR)),
748/* 8*/ FLAG_ENTRY0("RxRcvCsrParityErr", RXES(RCV_CSR_PARITY)),
749/* 9*/ FLAG_ENTRY0("RxDcSopEopParityErr", RXES(DC_SOP_EOP_PARITY)),
750/*10*/ FLAG_ENTRY0("RxDmaFlagUncErr", RXES(DMA_FLAG_UNC)),
751/*11*/ FLAG_ENTRY0("RxDmaFlagCorErr", RXES(DMA_FLAG_COR)),
752/*12*/ FLAG_ENTRY0("RxRcvFsmEncodingErr", RXES(RCV_FSM_ENCODING)),
753/*13*/ FLAG_ENTRY0("RxRbufFreeListUncErr", RXES(RBUF_FREE_LIST_UNC)),
754/*14*/ FLAG_ENTRY0("RxRbufFreeListCorErr", RXES(RBUF_FREE_LIST_COR)),
755/*15*/ FLAG_ENTRY0("RxRbufLookupDesRegUncErr", RXES(RBUF_LOOKUP_DES_REG_UNC)),
756/*16*/ FLAG_ENTRY0("RxRbufLookupDesRegUncCorErr",
757 RXES(RBUF_LOOKUP_DES_REG_UNC_COR)),
758/*17*/ FLAG_ENTRY0("RxRbufLookupDesUncErr", RXES(RBUF_LOOKUP_DES_UNC)),
759/*18*/ FLAG_ENTRY0("RxRbufLookupDesCorErr", RXES(RBUF_LOOKUP_DES_COR)),
760/*19*/ FLAG_ENTRY0("RxRbufBlockListReadUncErr",
761 RXES(RBUF_BLOCK_LIST_READ_UNC)),
762/*20*/ FLAG_ENTRY0("RxRbufBlockListReadCorErr",
763 RXES(RBUF_BLOCK_LIST_READ_COR)),
764/*21*/ FLAG_ENTRY0("RxRbufCsrQHeadBufNumParityErr",
765 RXES(RBUF_CSR_QHEAD_BUF_NUM_PARITY)),
766/*22*/ FLAG_ENTRY0("RxRbufCsrQEntCntParityErr",
767 RXES(RBUF_CSR_QENT_CNT_PARITY)),
768/*23*/ FLAG_ENTRY0("RxRbufCsrQNextBufParityErr",
769 RXES(RBUF_CSR_QNEXT_BUF_PARITY)),
770/*24*/ FLAG_ENTRY0("RxRbufCsrQVldBitParityErr",
771 RXES(RBUF_CSR_QVLD_BIT_PARITY)),
772/*25*/ FLAG_ENTRY0("RxRbufCsrQHdPtrParityErr", RXES(RBUF_CSR_QHD_PTR_PARITY)),
773/*26*/ FLAG_ENTRY0("RxRbufCsrQTlPtrParityErr", RXES(RBUF_CSR_QTL_PTR_PARITY)),
774/*27*/ FLAG_ENTRY0("RxRbufCsrQNumOfPktParityErr",
775 RXES(RBUF_CSR_QNUM_OF_PKT_PARITY)),
776/*28*/ FLAG_ENTRY0("RxRbufCsrQEOPDWParityErr", RXES(RBUF_CSR_QEOPDW_PARITY)),
777/*29*/ FLAG_ENTRY0("RxRbufCtxIdParityErr", RXES(RBUF_CTX_ID_PARITY)),
778/*30*/ FLAG_ENTRY0("RxRBufBadLookupErr", RXES(RBUF_BAD_LOOKUP)),
779/*31*/ FLAG_ENTRY0("RxRbufFullErr", RXES(RBUF_FULL)),
780/*32*/ FLAG_ENTRY0("RxRbufEmptyErr", RXES(RBUF_EMPTY)),
781/*33*/ FLAG_ENTRY0("RxRbufFlRdAddrParityErr", RXES(RBUF_FL_RD_ADDR_PARITY)),
782/*34*/ FLAG_ENTRY0("RxRbufFlWrAddrParityErr", RXES(RBUF_FL_WR_ADDR_PARITY)),
783/*35*/ FLAG_ENTRY0("RxRbufFlInitdoneParityErr",
784 RXES(RBUF_FL_INITDONE_PARITY)),
785/*36*/ FLAG_ENTRY0("RxRbufFlInitWrAddrParityErr",
786 RXES(RBUF_FL_INIT_WR_ADDR_PARITY)),
787/*37*/ FLAG_ENTRY0("RxRbufNextFreeBufUncErr", RXES(RBUF_NEXT_FREE_BUF_UNC)),
788/*38*/ FLAG_ENTRY0("RxRbufNextFreeBufCorErr", RXES(RBUF_NEXT_FREE_BUF_COR)),
789/*39*/ FLAG_ENTRY0("RxLookupDesPart1UncErr", RXES(LOOKUP_DES_PART1_UNC)),
790/*40*/ FLAG_ENTRY0("RxLookupDesPart1UncCorErr",
791 RXES(LOOKUP_DES_PART1_UNC_COR)),
792/*41*/ FLAG_ENTRY0("RxLookupDesPart2ParityErr",
793 RXES(LOOKUP_DES_PART2_PARITY)),
794/*42*/ FLAG_ENTRY0("RxLookupRcvArrayUncErr", RXES(LOOKUP_RCV_ARRAY_UNC)),
795/*43*/ FLAG_ENTRY0("RxLookupRcvArrayCorErr", RXES(LOOKUP_RCV_ARRAY_COR)),
796/*44*/ FLAG_ENTRY0("RxLookupCsrParityErr", RXES(LOOKUP_CSR_PARITY)),
797/*45*/ FLAG_ENTRY0("RxHqIntrCsrParityErr", RXES(HQ_INTR_CSR_PARITY)),
798/*46*/ FLAG_ENTRY0("RxHqIntrFsmErr", RXES(HQ_INTR_FSM)),
799/*47*/ FLAG_ENTRY0("RxRbufDescPart1UncErr", RXES(RBUF_DESC_PART1_UNC)),
800/*48*/ FLAG_ENTRY0("RxRbufDescPart1CorErr", RXES(RBUF_DESC_PART1_COR)),
801/*49*/ FLAG_ENTRY0("RxRbufDescPart2UncErr", RXES(RBUF_DESC_PART2_UNC)),
802/*50*/ FLAG_ENTRY0("RxRbufDescPart2CorErr", RXES(RBUF_DESC_PART2_COR)),
803/*51*/ FLAG_ENTRY0("RxDmaHdrFifoRdUncErr", RXES(DMA_HDR_FIFO_RD_UNC)),
804/*52*/ FLAG_ENTRY0("RxDmaHdrFifoRdCorErr", RXES(DMA_HDR_FIFO_RD_COR)),
805/*53*/ FLAG_ENTRY0("RxDmaDataFifoRdUncErr", RXES(DMA_DATA_FIFO_RD_UNC)),
806/*54*/ FLAG_ENTRY0("RxDmaDataFifoRdCorErr", RXES(DMA_DATA_FIFO_RD_COR)),
807/*55*/ FLAG_ENTRY0("RxRbufDataUncErr", RXES(RBUF_DATA_UNC)),
808/*56*/ FLAG_ENTRY0("RxRbufDataCorErr", RXES(RBUF_DATA_COR)),
809/*57*/ FLAG_ENTRY0("RxDmaCsrParityErr", RXES(DMA_CSR_PARITY)),
810/*58*/ FLAG_ENTRY0("RxDmaEqFsmEncodingErr", RXES(DMA_EQ_FSM_ENCODING)),
811/*59*/ FLAG_ENTRY0("RxDmaDqFsmEncodingErr", RXES(DMA_DQ_FSM_ENCODING)),
812/*60*/ FLAG_ENTRY0("RxDmaCsrUncErr", RXES(DMA_CSR_UNC)),
813/*61*/ FLAG_ENTRY0("RxCsrReadBadAddrErr", RXES(CSR_READ_BAD_ADDR)),
814/*62*/ FLAG_ENTRY0("RxCsrWriteBadAddrErr", RXES(CSR_WRITE_BAD_ADDR)),
815/*63*/ FLAG_ENTRY0("RxCsrParityErr", RXES(CSR_PARITY))
816};
817
818/* RXE errors that will trigger an SPC freeze */
819#define ALL_RXE_FREEZE_ERR \
820 (RCV_ERR_STATUS_RX_RCV_QP_MAP_TABLE_UNC_ERR_SMASK \
821 | RCV_ERR_STATUS_RX_RCV_CSR_PARITY_ERR_SMASK \
822 | RCV_ERR_STATUS_RX_DMA_FLAG_UNC_ERR_SMASK \
823 | RCV_ERR_STATUS_RX_RCV_FSM_ENCODING_ERR_SMASK \
824 | RCV_ERR_STATUS_RX_RBUF_FREE_LIST_UNC_ERR_SMASK \
825 | RCV_ERR_STATUS_RX_RBUF_LOOKUP_DES_REG_UNC_ERR_SMASK \
826 | RCV_ERR_STATUS_RX_RBUF_LOOKUP_DES_REG_UNC_COR_ERR_SMASK \
827 | RCV_ERR_STATUS_RX_RBUF_LOOKUP_DES_UNC_ERR_SMASK \
828 | RCV_ERR_STATUS_RX_RBUF_BLOCK_LIST_READ_UNC_ERR_SMASK \
829 | RCV_ERR_STATUS_RX_RBUF_CSR_QHEAD_BUF_NUM_PARITY_ERR_SMASK \
830 | RCV_ERR_STATUS_RX_RBUF_CSR_QENT_CNT_PARITY_ERR_SMASK \
831 | RCV_ERR_STATUS_RX_RBUF_CSR_QNEXT_BUF_PARITY_ERR_SMASK \
832 | RCV_ERR_STATUS_RX_RBUF_CSR_QVLD_BIT_PARITY_ERR_SMASK \
833 | RCV_ERR_STATUS_RX_RBUF_CSR_QHD_PTR_PARITY_ERR_SMASK \
834 | RCV_ERR_STATUS_RX_RBUF_CSR_QTL_PTR_PARITY_ERR_SMASK \
835 | RCV_ERR_STATUS_RX_RBUF_CSR_QNUM_OF_PKT_PARITY_ERR_SMASK \
836 | RCV_ERR_STATUS_RX_RBUF_CSR_QEOPDW_PARITY_ERR_SMASK \
837 | RCV_ERR_STATUS_RX_RBUF_CTX_ID_PARITY_ERR_SMASK \
838 | RCV_ERR_STATUS_RX_RBUF_BAD_LOOKUP_ERR_SMASK \
839 | RCV_ERR_STATUS_RX_RBUF_FULL_ERR_SMASK \
840 | RCV_ERR_STATUS_RX_RBUF_EMPTY_ERR_SMASK \
841 | RCV_ERR_STATUS_RX_RBUF_FL_RD_ADDR_PARITY_ERR_SMASK \
842 | RCV_ERR_STATUS_RX_RBUF_FL_WR_ADDR_PARITY_ERR_SMASK \
843 | RCV_ERR_STATUS_RX_RBUF_FL_INITDONE_PARITY_ERR_SMASK \
844 | RCV_ERR_STATUS_RX_RBUF_FL_INIT_WR_ADDR_PARITY_ERR_SMASK \
845 | RCV_ERR_STATUS_RX_RBUF_NEXT_FREE_BUF_UNC_ERR_SMASK \
846 | RCV_ERR_STATUS_RX_LOOKUP_DES_PART1_UNC_ERR_SMASK \
847 | RCV_ERR_STATUS_RX_LOOKUP_DES_PART1_UNC_COR_ERR_SMASK \
848 | RCV_ERR_STATUS_RX_LOOKUP_DES_PART2_PARITY_ERR_SMASK \
849 | RCV_ERR_STATUS_RX_LOOKUP_RCV_ARRAY_UNC_ERR_SMASK \
850 | RCV_ERR_STATUS_RX_LOOKUP_CSR_PARITY_ERR_SMASK \
851 | RCV_ERR_STATUS_RX_HQ_INTR_CSR_PARITY_ERR_SMASK \
852 | RCV_ERR_STATUS_RX_HQ_INTR_FSM_ERR_SMASK \
853 | RCV_ERR_STATUS_RX_RBUF_DESC_PART1_UNC_ERR_SMASK \
854 | RCV_ERR_STATUS_RX_RBUF_DESC_PART1_COR_ERR_SMASK \
855 | RCV_ERR_STATUS_RX_RBUF_DESC_PART2_UNC_ERR_SMASK \
856 | RCV_ERR_STATUS_RX_DMA_HDR_FIFO_RD_UNC_ERR_SMASK \
857 | RCV_ERR_STATUS_RX_DMA_DATA_FIFO_RD_UNC_ERR_SMASK \
858 | RCV_ERR_STATUS_RX_RBUF_DATA_UNC_ERR_SMASK \
859 | RCV_ERR_STATUS_RX_DMA_CSR_PARITY_ERR_SMASK \
860 | RCV_ERR_STATUS_RX_DMA_EQ_FSM_ENCODING_ERR_SMASK \
861 | RCV_ERR_STATUS_RX_DMA_DQ_FSM_ENCODING_ERR_SMASK \
862 | RCV_ERR_STATUS_RX_DMA_CSR_UNC_ERR_SMASK \
863 | RCV_ERR_STATUS_RX_CSR_PARITY_ERR_SMASK)
864
865#define RXE_FREEZE_ABORT_MASK \
866 (RCV_ERR_STATUS_RX_DMA_CSR_UNC_ERR_SMASK | \
867 RCV_ERR_STATUS_RX_DMA_HDR_FIFO_RD_UNC_ERR_SMASK | \
868 RCV_ERR_STATUS_RX_DMA_DATA_FIFO_RD_UNC_ERR_SMASK)
869
870/*
871 * DCC Error Flags
872 */
873#define DCCE(name) DCC_ERR_FLG_##name##_SMASK
874static struct flag_table dcc_err_flags[] = {
875 FLAG_ENTRY0("bad_l2_err", DCCE(BAD_L2_ERR)),
876 FLAG_ENTRY0("bad_sc_err", DCCE(BAD_SC_ERR)),
877 FLAG_ENTRY0("bad_mid_tail_err", DCCE(BAD_MID_TAIL_ERR)),
878 FLAG_ENTRY0("bad_preemption_err", DCCE(BAD_PREEMPTION_ERR)),
879 FLAG_ENTRY0("preemption_err", DCCE(PREEMPTION_ERR)),
880 FLAG_ENTRY0("preemptionvl15_err", DCCE(PREEMPTIONVL15_ERR)),
881 FLAG_ENTRY0("bad_vl_marker_err", DCCE(BAD_VL_MARKER_ERR)),
882 FLAG_ENTRY0("bad_dlid_target_err", DCCE(BAD_DLID_TARGET_ERR)),
883 FLAG_ENTRY0("bad_lver_err", DCCE(BAD_LVER_ERR)),
884 FLAG_ENTRY0("uncorrectable_err", DCCE(UNCORRECTABLE_ERR)),
885 FLAG_ENTRY0("bad_crdt_ack_err", DCCE(BAD_CRDT_ACK_ERR)),
886 FLAG_ENTRY0("unsup_pkt_type", DCCE(UNSUP_PKT_TYPE)),
887 FLAG_ENTRY0("bad_ctrl_flit_err", DCCE(BAD_CTRL_FLIT_ERR)),
888 FLAG_ENTRY0("event_cntr_parity_err", DCCE(EVENT_CNTR_PARITY_ERR)),
889 FLAG_ENTRY0("event_cntr_rollover_err", DCCE(EVENT_CNTR_ROLLOVER_ERR)),
890 FLAG_ENTRY0("link_err", DCCE(LINK_ERR)),
891 FLAG_ENTRY0("misc_cntr_rollover_err", DCCE(MISC_CNTR_ROLLOVER_ERR)),
892 FLAG_ENTRY0("bad_ctrl_dist_err", DCCE(BAD_CTRL_DIST_ERR)),
893 FLAG_ENTRY0("bad_tail_dist_err", DCCE(BAD_TAIL_DIST_ERR)),
894 FLAG_ENTRY0("bad_head_dist_err", DCCE(BAD_HEAD_DIST_ERR)),
895 FLAG_ENTRY0("nonvl15_state_err", DCCE(NONVL15_STATE_ERR)),
896 FLAG_ENTRY0("vl15_multi_err", DCCE(VL15_MULTI_ERR)),
897 FLAG_ENTRY0("bad_pkt_length_err", DCCE(BAD_PKT_LENGTH_ERR)),
898 FLAG_ENTRY0("unsup_vl_err", DCCE(UNSUP_VL_ERR)),
899 FLAG_ENTRY0("perm_nvl15_err", DCCE(PERM_NVL15_ERR)),
900 FLAG_ENTRY0("slid_zero_err", DCCE(SLID_ZERO_ERR)),
901 FLAG_ENTRY0("dlid_zero_err", DCCE(DLID_ZERO_ERR)),
902 FLAG_ENTRY0("length_mtu_err", DCCE(LENGTH_MTU_ERR)),
903 FLAG_ENTRY0("rx_early_drop_err", DCCE(RX_EARLY_DROP_ERR)),
904 FLAG_ENTRY0("late_short_err", DCCE(LATE_SHORT_ERR)),
905 FLAG_ENTRY0("late_long_err", DCCE(LATE_LONG_ERR)),
906 FLAG_ENTRY0("late_ebp_err", DCCE(LATE_EBP_ERR)),
907 FLAG_ENTRY0("fpe_tx_fifo_ovflw_err", DCCE(FPE_TX_FIFO_OVFLW_ERR)),
908 FLAG_ENTRY0("fpe_tx_fifo_unflw_err", DCCE(FPE_TX_FIFO_UNFLW_ERR)),
909 FLAG_ENTRY0("csr_access_blocked_host", DCCE(CSR_ACCESS_BLOCKED_HOST)),
910 FLAG_ENTRY0("csr_access_blocked_uc", DCCE(CSR_ACCESS_BLOCKED_UC)),
911 FLAG_ENTRY0("tx_ctrl_parity_err", DCCE(TX_CTRL_PARITY_ERR)),
912 FLAG_ENTRY0("tx_ctrl_parity_mbe_err", DCCE(TX_CTRL_PARITY_MBE_ERR)),
913 FLAG_ENTRY0("tx_sc_parity_err", DCCE(TX_SC_PARITY_ERR)),
914 FLAG_ENTRY0("rx_ctrl_parity_mbe_err", DCCE(RX_CTRL_PARITY_MBE_ERR)),
915 FLAG_ENTRY0("csr_parity_err", DCCE(CSR_PARITY_ERR)),
916 FLAG_ENTRY0("csr_inval_addr", DCCE(CSR_INVAL_ADDR)),
917 FLAG_ENTRY0("tx_byte_shft_parity_err", DCCE(TX_BYTE_SHFT_PARITY_ERR)),
918 FLAG_ENTRY0("rx_byte_shft_parity_err", DCCE(RX_BYTE_SHFT_PARITY_ERR)),
919 FLAG_ENTRY0("fmconfig_err", DCCE(FMCONFIG_ERR)),
920 FLAG_ENTRY0("rcvport_err", DCCE(RCVPORT_ERR)),
921};
922
923/*
924 * LCB error flags
925 */
926#define LCBE(name) DC_LCB_ERR_FLG_##name##_SMASK
927static struct flag_table lcb_err_flags[] = {
928/* 0*/ FLAG_ENTRY0("CSR_PARITY_ERR", LCBE(CSR_PARITY_ERR)),
929/* 1*/ FLAG_ENTRY0("INVALID_CSR_ADDR", LCBE(INVALID_CSR_ADDR)),
930/* 2*/ FLAG_ENTRY0("RST_FOR_FAILED_DESKEW", LCBE(RST_FOR_FAILED_DESKEW)),
931/* 3*/ FLAG_ENTRY0("ALL_LNS_FAILED_REINIT_TEST",
932 LCBE(ALL_LNS_FAILED_REINIT_TEST)),
933/* 4*/ FLAG_ENTRY0("LOST_REINIT_STALL_OR_TOS", LCBE(LOST_REINIT_STALL_OR_TOS)),
934/* 5*/ FLAG_ENTRY0("TX_LESS_THAN_FOUR_LNS", LCBE(TX_LESS_THAN_FOUR_LNS)),
935/* 6*/ FLAG_ENTRY0("RX_LESS_THAN_FOUR_LNS", LCBE(RX_LESS_THAN_FOUR_LNS)),
936/* 7*/ FLAG_ENTRY0("SEQ_CRC_ERR", LCBE(SEQ_CRC_ERR)),
937/* 8*/ FLAG_ENTRY0("REINIT_FROM_PEER", LCBE(REINIT_FROM_PEER)),
938/* 9*/ FLAG_ENTRY0("REINIT_FOR_LN_DEGRADE", LCBE(REINIT_FOR_LN_DEGRADE)),
939/*10*/ FLAG_ENTRY0("CRC_ERR_CNT_HIT_LIMIT", LCBE(CRC_ERR_CNT_HIT_LIMIT)),
940/*11*/ FLAG_ENTRY0("RCLK_STOPPED", LCBE(RCLK_STOPPED)),
941/*12*/ FLAG_ENTRY0("UNEXPECTED_REPLAY_MARKER", LCBE(UNEXPECTED_REPLAY_MARKER)),
942/*13*/ FLAG_ENTRY0("UNEXPECTED_ROUND_TRIP_MARKER",
943 LCBE(UNEXPECTED_ROUND_TRIP_MARKER)),
944/*14*/ FLAG_ENTRY0("ILLEGAL_NULL_LTP", LCBE(ILLEGAL_NULL_LTP)),
945/*15*/ FLAG_ENTRY0("ILLEGAL_FLIT_ENCODING", LCBE(ILLEGAL_FLIT_ENCODING)),
946/*16*/ FLAG_ENTRY0("FLIT_INPUT_BUF_OFLW", LCBE(FLIT_INPUT_BUF_OFLW)),
947/*17*/ FLAG_ENTRY0("VL_ACK_INPUT_BUF_OFLW", LCBE(VL_ACK_INPUT_BUF_OFLW)),
948/*18*/ FLAG_ENTRY0("VL_ACK_INPUT_PARITY_ERR", LCBE(VL_ACK_INPUT_PARITY_ERR)),
949/*19*/ FLAG_ENTRY0("VL_ACK_INPUT_WRONG_CRC_MODE",
950 LCBE(VL_ACK_INPUT_WRONG_CRC_MODE)),
951/*20*/ FLAG_ENTRY0("FLIT_INPUT_BUF_MBE", LCBE(FLIT_INPUT_BUF_MBE)),
952/*21*/ FLAG_ENTRY0("FLIT_INPUT_BUF_SBE", LCBE(FLIT_INPUT_BUF_SBE)),
953/*22*/ FLAG_ENTRY0("REPLAY_BUF_MBE", LCBE(REPLAY_BUF_MBE)),
954/*23*/ FLAG_ENTRY0("REPLAY_BUF_SBE", LCBE(REPLAY_BUF_SBE)),
955/*24*/ FLAG_ENTRY0("CREDIT_RETURN_FLIT_MBE", LCBE(CREDIT_RETURN_FLIT_MBE)),
956/*25*/ FLAG_ENTRY0("RST_FOR_LINK_TIMEOUT", LCBE(RST_FOR_LINK_TIMEOUT)),
957/*26*/ FLAG_ENTRY0("RST_FOR_INCOMPLT_RND_TRIP",
958 LCBE(RST_FOR_INCOMPLT_RND_TRIP)),
959/*27*/ FLAG_ENTRY0("HOLD_REINIT", LCBE(HOLD_REINIT)),
960/*28*/ FLAG_ENTRY0("NEG_EDGE_LINK_TRANSFER_ACTIVE",
961 LCBE(NEG_EDGE_LINK_TRANSFER_ACTIVE)),
962/*29*/ FLAG_ENTRY0("REDUNDANT_FLIT_PARITY_ERR",
963 LCBE(REDUNDANT_FLIT_PARITY_ERR))
964};
965
966/*
967 * DC8051 Error Flags
968 */
969#define D8E(name) DC_DC8051_ERR_FLG_##name##_SMASK
970static struct flag_table dc8051_err_flags[] = {
971 FLAG_ENTRY0("SET_BY_8051", D8E(SET_BY_8051)),
972 FLAG_ENTRY0("LOST_8051_HEART_BEAT", D8E(LOST_8051_HEART_BEAT)),
973 FLAG_ENTRY0("CRAM_MBE", D8E(CRAM_MBE)),
974 FLAG_ENTRY0("CRAM_SBE", D8E(CRAM_SBE)),
975 FLAG_ENTRY0("DRAM_MBE", D8E(DRAM_MBE)),
976 FLAG_ENTRY0("DRAM_SBE", D8E(DRAM_SBE)),
977 FLAG_ENTRY0("IRAM_MBE", D8E(IRAM_MBE)),
978 FLAG_ENTRY0("IRAM_SBE", D8E(IRAM_SBE)),
979 FLAG_ENTRY0("UNMATCHED_SECURE_MSG_ACROSS_BCC_LANES",
Jubin John17fb4f22016-02-14 20:21:52 -0800980 D8E(UNMATCHED_SECURE_MSG_ACROSS_BCC_LANES)),
Mike Marciniszyn77241052015-07-30 15:17:43 -0400981 FLAG_ENTRY0("INVALID_CSR_ADDR", D8E(INVALID_CSR_ADDR)),
982};
983
984/*
985 * DC8051 Information Error flags
986 *
987 * Flags in DC8051_DBG_ERR_INFO_SET_BY_8051.ERROR field.
988 */
989static struct flag_table dc8051_info_err_flags[] = {
990 FLAG_ENTRY0("Spico ROM check failed", SPICO_ROM_FAILED),
991 FLAG_ENTRY0("Unknown frame received", UNKNOWN_FRAME),
992 FLAG_ENTRY0("Target BER not met", TARGET_BER_NOT_MET),
993 FLAG_ENTRY0("Serdes internal loopback failure",
Jubin John17fb4f22016-02-14 20:21:52 -0800994 FAILED_SERDES_INTERNAL_LOOPBACK),
Mike Marciniszyn77241052015-07-30 15:17:43 -0400995 FLAG_ENTRY0("Failed SerDes init", FAILED_SERDES_INIT),
996 FLAG_ENTRY0("Failed LNI(Polling)", FAILED_LNI_POLLING),
997 FLAG_ENTRY0("Failed LNI(Debounce)", FAILED_LNI_DEBOUNCE),
998 FLAG_ENTRY0("Failed LNI(EstbComm)", FAILED_LNI_ESTBCOMM),
999 FLAG_ENTRY0("Failed LNI(OptEq)", FAILED_LNI_OPTEQ),
1000 FLAG_ENTRY0("Failed LNI(VerifyCap_1)", FAILED_LNI_VERIFY_CAP1),
1001 FLAG_ENTRY0("Failed LNI(VerifyCap_2)", FAILED_LNI_VERIFY_CAP2),
Jubin John8fefef12016-03-05 08:50:38 -08001002 FLAG_ENTRY0("Failed LNI(ConfigLT)", FAILED_LNI_CONFIGLT),
Dean Luick50921be2016-09-25 07:41:53 -07001003 FLAG_ENTRY0("Host Handshake Timeout", HOST_HANDSHAKE_TIMEOUT),
1004 FLAG_ENTRY0("External Device Request Timeout",
1005 EXTERNAL_DEVICE_REQ_TIMEOUT),
Mike Marciniszyn77241052015-07-30 15:17:43 -04001006};
1007
1008/*
1009 * DC8051 Information Host Information flags
1010 *
1011 * Flags in DC8051_DBG_ERR_INFO_SET_BY_8051.HOST_MSG field.
1012 */
1013static struct flag_table dc8051_info_host_msg_flags[] = {
1014 FLAG_ENTRY0("Host request done", 0x0001),
Bartlomiej Dudekddbf2ef2017-06-09 15:59:26 -07001015 FLAG_ENTRY0("BC PWR_MGM message", 0x0002),
1016 FLAG_ENTRY0("BC SMA message", 0x0004),
Mike Marciniszyn77241052015-07-30 15:17:43 -04001017 FLAG_ENTRY0("BC Unknown message (BCC)", 0x0008),
1018 FLAG_ENTRY0("BC Unknown message (LCB)", 0x0010),
1019 FLAG_ENTRY0("External device config request", 0x0020),
1020 FLAG_ENTRY0("VerifyCap all frames received", 0x0040),
1021 FLAG_ENTRY0("LinkUp achieved", 0x0080),
1022 FLAG_ENTRY0("Link going down", 0x0100),
Bartlomiej Dudekddbf2ef2017-06-09 15:59:26 -07001023 FLAG_ENTRY0("Link width downgraded", 0x0200),
Mike Marciniszyn77241052015-07-30 15:17:43 -04001024};
1025
Mike Marciniszyn77241052015-07-30 15:17:43 -04001026static u32 encoded_size(u32 size);
1027static u32 chip_to_opa_lstate(struct hfi1_devdata *dd, u32 chip_lstate);
1028static int set_physical_link_state(struct hfi1_devdata *dd, u64 state);
1029static void read_vc_remote_phy(struct hfi1_devdata *dd, u8 *power_management,
1030 u8 *continuous);
1031static void read_vc_remote_fabric(struct hfi1_devdata *dd, u8 *vau, u8 *z,
1032 u8 *vcu, u16 *vl15buf, u8 *crc_sizes);
1033static void read_vc_remote_link_width(struct hfi1_devdata *dd,
1034 u8 *remote_tx_rate, u16 *link_widths);
Sebastian Sanchez254361c2018-05-02 06:42:21 -07001035static void read_vc_local_link_mode(struct hfi1_devdata *dd, u8 *misc_bits,
1036 u8 *flag_bits, u16 *link_widths);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001037static void read_remote_device_id(struct hfi1_devdata *dd, u16 *device_id,
1038 u8 *device_rev);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001039static void read_local_lni(struct hfi1_devdata *dd, u8 *enable_lane_rx);
1040static int read_tx_settings(struct hfi1_devdata *dd, u8 *enable_lane_tx,
1041 u8 *tx_polarity_inversion,
1042 u8 *rx_polarity_inversion, u8 *max_rate);
1043static void handle_sdma_eng_err(struct hfi1_devdata *dd,
1044 unsigned int context, u64 err_status);
1045static void handle_qsfp_int(struct hfi1_devdata *dd, u32 source, u64 reg);
1046static void handle_dcc_err(struct hfi1_devdata *dd,
1047 unsigned int context, u64 err_status);
1048static void handle_lcb_err(struct hfi1_devdata *dd,
1049 unsigned int context, u64 err_status);
1050static void handle_8051_interrupt(struct hfi1_devdata *dd, u32 unused, u64 reg);
1051static void handle_cce_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1052static void handle_rxe_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1053static void handle_misc_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1054static void handle_pio_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1055static void handle_sdma_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1056static void handle_egress_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1057static void handle_txe_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
Michael J. Ruhlf4cd8762017-05-04 05:14:39 -07001058static void set_partition_keys(struct hfi1_pportdata *ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001059static const char *link_state_name(u32 state);
1060static const char *link_state_reason_name(struct hfi1_pportdata *ppd,
1061 u32 state);
1062static int do_8051_command(struct hfi1_devdata *dd, u32 type, u64 in_data,
1063 u64 *out_data);
1064static int read_idle_sma(struct hfi1_devdata *dd, u64 *data);
1065static int thermal_init(struct hfi1_devdata *dd);
1066
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -07001067static void update_statusp(struct hfi1_pportdata *ppd, u32 state);
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -07001068static int wait_phys_link_offline_substates(struct hfi1_pportdata *ppd,
1069 int msecs);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001070static int wait_logical_linkstate(struct hfi1_pportdata *ppd, u32 state,
1071 int msecs);
Jakub Byczkowskid392a672017-08-13 08:08:52 -07001072static void log_state_transition(struct hfi1_pportdata *ppd, u32 state);
1073static void log_physical_state(struct hfi1_pportdata *ppd, u32 state);
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -07001074static int wait_physical_linkstate(struct hfi1_pportdata *ppd, u32 state,
1075 int msecs);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001076static void read_planned_down_reason_code(struct hfi1_devdata *dd, u8 *pdrrc);
Dean Luickfeb831d2016-04-14 08:31:36 -07001077static void read_link_down_reason(struct hfi1_devdata *dd, u8 *ldr);
Michael J. Ruhlf4cd8762017-05-04 05:14:39 -07001078static void handle_temp_err(struct hfi1_devdata *dd);
1079static void dc_shutdown(struct hfi1_devdata *dd);
1080static void dc_start(struct hfi1_devdata *dd);
Dean Luick8f000f72016-04-12 11:32:06 -07001081static int qos_rmt_entries(struct hfi1_devdata *dd, unsigned int *mp,
1082 unsigned int *np);
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07001083static void clear_full_mgmt_pkey(struct hfi1_pportdata *ppd);
Dean Luickec8a1422017-03-20 17:24:39 -07001084static int wait_link_transfer_active(struct hfi1_devdata *dd, int wait_ms);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07001085static void clear_rsm_rule(struct hfi1_devdata *dd, u8 rule_index);
Kamenee Arumugam07190072018-02-01 10:52:28 -08001086static void update_xmit_counters(struct hfi1_pportdata *ppd, u16 link_width);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001087
1088/*
1089 * Error interrupt table entry. This is used as input to the interrupt
1090 * "clear down" routine used for all second tier error interrupt register.
1091 * Second tier interrupt registers have a single bit representing them
1092 * in the top-level CceIntStatus.
1093 */
1094struct err_reg_info {
1095 u32 status; /* status CSR offset */
1096 u32 clear; /* clear CSR offset */
1097 u32 mask; /* mask CSR offset */
1098 void (*handler)(struct hfi1_devdata *dd, u32 source, u64 reg);
1099 const char *desc;
1100};
1101
1102#define NUM_MISC_ERRS (IS_GENERAL_ERR_END - IS_GENERAL_ERR_START)
1103#define NUM_DC_ERRS (IS_DC_END - IS_DC_START)
1104#define NUM_VARIOUS (IS_VARIOUS_END - IS_VARIOUS_START)
1105
1106/*
1107 * Helpers for building HFI and DC error interrupt table entries. Different
1108 * helpers are needed because of inconsistent register names.
1109 */
1110#define EE(reg, handler, desc) \
1111 { reg##_STATUS, reg##_CLEAR, reg##_MASK, \
1112 handler, desc }
1113#define DC_EE1(reg, handler, desc) \
1114 { reg##_FLG, reg##_FLG_CLR, reg##_FLG_EN, handler, desc }
1115#define DC_EE2(reg, handler, desc) \
1116 { reg##_FLG, reg##_CLR, reg##_EN, handler, desc }
1117
1118/*
1119 * Table of the "misc" grouping of error interrupts. Each entry refers to
1120 * another register containing more information.
1121 */
1122static const struct err_reg_info misc_errs[NUM_MISC_ERRS] = {
1123/* 0*/ EE(CCE_ERR, handle_cce_err, "CceErr"),
1124/* 1*/ EE(RCV_ERR, handle_rxe_err, "RxeErr"),
1125/* 2*/ EE(MISC_ERR, handle_misc_err, "MiscErr"),
1126/* 3*/ { 0, 0, 0, NULL }, /* reserved */
1127/* 4*/ EE(SEND_PIO_ERR, handle_pio_err, "PioErr"),
1128/* 5*/ EE(SEND_DMA_ERR, handle_sdma_err, "SDmaErr"),
1129/* 6*/ EE(SEND_EGRESS_ERR, handle_egress_err, "EgressErr"),
1130/* 7*/ EE(SEND_ERR, handle_txe_err, "TxeErr")
1131 /* the rest are reserved */
1132};
1133
1134/*
1135 * Index into the Various section of the interrupt sources
1136 * corresponding to the Critical Temperature interrupt.
1137 */
1138#define TCRIT_INT_SOURCE 4
1139
1140/*
1141 * SDMA error interrupt entry - refers to another register containing more
1142 * information.
1143 */
1144static const struct err_reg_info sdma_eng_err =
1145 EE(SEND_DMA_ENG_ERR, handle_sdma_eng_err, "SDmaEngErr");
1146
1147static const struct err_reg_info various_err[NUM_VARIOUS] = {
1148/* 0*/ { 0, 0, 0, NULL }, /* PbcInt */
1149/* 1*/ { 0, 0, 0, NULL }, /* GpioAssertInt */
1150/* 2*/ EE(ASIC_QSFP1, handle_qsfp_int, "QSFP1"),
1151/* 3*/ EE(ASIC_QSFP2, handle_qsfp_int, "QSFP2"),
1152/* 4*/ { 0, 0, 0, NULL }, /* TCritInt */
1153 /* rest are reserved */
1154};
1155
1156/*
1157 * The DC encoding of mtu_cap for 10K MTU in the DCC_CFG_PORT_CONFIG
1158 * register can not be derived from the MTU value because 10K is not
1159 * a power of 2. Therefore, we need a constant. Everything else can
1160 * be calculated.
1161 */
1162#define DCC_CFG_PORT_MTU_CAP_10240 7
1163
1164/*
1165 * Table of the DC grouping of error interrupts. Each entry refers to
1166 * another register containing more information.
1167 */
1168static const struct err_reg_info dc_errs[NUM_DC_ERRS] = {
1169/* 0*/ DC_EE1(DCC_ERR, handle_dcc_err, "DCC Err"),
1170/* 1*/ DC_EE2(DC_LCB_ERR, handle_lcb_err, "LCB Err"),
1171/* 2*/ DC_EE2(DC_DC8051_ERR, handle_8051_interrupt, "DC8051 Interrupt"),
1172/* 3*/ /* dc_lbm_int - special, see is_dc_int() */
1173 /* the rest are reserved */
1174};
1175
1176struct cntr_entry {
1177 /*
1178 * counter name
1179 */
1180 char *name;
1181
1182 /*
1183 * csr to read for name (if applicable)
1184 */
1185 u64 csr;
1186
1187 /*
1188 * offset into dd or ppd to store the counter's value
1189 */
1190 int offset;
1191
1192 /*
1193 * flags
1194 */
1195 u8 flags;
1196
1197 /*
1198 * accessor for stat element, context either dd or ppd
1199 */
Jubin John17fb4f22016-02-14 20:21:52 -08001200 u64 (*rw_cntr)(const struct cntr_entry *, void *context, int vl,
1201 int mode, u64 data);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001202};
1203
1204#define C_RCV_HDR_OVF_FIRST C_RCV_HDR_OVF_0
1205#define C_RCV_HDR_OVF_LAST C_RCV_HDR_OVF_159
1206
1207#define CNTR_ELEM(name, csr, offset, flags, accessor) \
1208{ \
1209 name, \
1210 csr, \
1211 offset, \
1212 flags, \
1213 accessor \
1214}
1215
1216/* 32bit RXE */
1217#define RXE32_PORT_CNTR_ELEM(name, counter, flags) \
1218CNTR_ELEM(#name, \
1219 (counter * 8 + RCV_COUNTER_ARRAY32), \
1220 0, flags | CNTR_32BIT, \
1221 port_access_u32_csr)
1222
1223#define RXE32_DEV_CNTR_ELEM(name, counter, flags) \
1224CNTR_ELEM(#name, \
1225 (counter * 8 + RCV_COUNTER_ARRAY32), \
1226 0, flags | CNTR_32BIT, \
1227 dev_access_u32_csr)
1228
1229/* 64bit RXE */
1230#define RXE64_PORT_CNTR_ELEM(name, counter, flags) \
1231CNTR_ELEM(#name, \
1232 (counter * 8 + RCV_COUNTER_ARRAY64), \
1233 0, flags, \
1234 port_access_u64_csr)
1235
1236#define RXE64_DEV_CNTR_ELEM(name, counter, flags) \
1237CNTR_ELEM(#name, \
1238 (counter * 8 + RCV_COUNTER_ARRAY64), \
1239 0, flags, \
1240 dev_access_u64_csr)
1241
1242#define OVR_LBL(ctx) C_RCV_HDR_OVF_ ## ctx
1243#define OVR_ELM(ctx) \
1244CNTR_ELEM("RcvHdrOvr" #ctx, \
Jubin John8638b772016-02-14 20:19:24 -08001245 (RCV_HDR_OVFL_CNT + ctx * 0x100), \
Mike Marciniszyn77241052015-07-30 15:17:43 -04001246 0, CNTR_NORMAL, port_access_u64_csr)
1247
1248/* 32bit TXE */
1249#define TXE32_PORT_CNTR_ELEM(name, counter, flags) \
1250CNTR_ELEM(#name, \
1251 (counter * 8 + SEND_COUNTER_ARRAY32), \
1252 0, flags | CNTR_32BIT, \
1253 port_access_u32_csr)
1254
1255/* 64bit TXE */
1256#define TXE64_PORT_CNTR_ELEM(name, counter, flags) \
1257CNTR_ELEM(#name, \
1258 (counter * 8 + SEND_COUNTER_ARRAY64), \
1259 0, flags, \
1260 port_access_u64_csr)
1261
1262# define TX64_DEV_CNTR_ELEM(name, counter, flags) \
1263CNTR_ELEM(#name,\
1264 counter * 8 + SEND_COUNTER_ARRAY64, \
1265 0, \
1266 flags, \
1267 dev_access_u64_csr)
1268
1269/* CCE */
1270#define CCE_PERF_DEV_CNTR_ELEM(name, counter, flags) \
1271CNTR_ELEM(#name, \
1272 (counter * 8 + CCE_COUNTER_ARRAY32), \
1273 0, flags | CNTR_32BIT, \
1274 dev_access_u32_csr)
1275
1276#define CCE_INT_DEV_CNTR_ELEM(name, counter, flags) \
1277CNTR_ELEM(#name, \
1278 (counter * 8 + CCE_INT_COUNTER_ARRAY32), \
1279 0, flags | CNTR_32BIT, \
1280 dev_access_u32_csr)
1281
1282/* DC */
1283#define DC_PERF_CNTR(name, counter, flags) \
1284CNTR_ELEM(#name, \
1285 counter, \
1286 0, \
1287 flags, \
1288 dev_access_u64_csr)
1289
1290#define DC_PERF_CNTR_LCB(name, counter, flags) \
1291CNTR_ELEM(#name, \
1292 counter, \
1293 0, \
1294 flags, \
1295 dc_access_lcb_cntr)
1296
1297/* ibp counters */
1298#define SW_IBP_CNTR(name, cntr) \
1299CNTR_ELEM(#name, \
1300 0, \
1301 0, \
1302 CNTR_SYNTH, \
1303 access_ibp_##cntr)
1304
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001305/**
1306 * hfi_addr_from_offset - return addr for readq/writeq
1307 * @dd - the dd device
1308 * @offset - the offset of the CSR within bar0
1309 *
1310 * This routine selects the appropriate base address
1311 * based on the indicated offset.
1312 */
1313static inline void __iomem *hfi1_addr_from_offset(
1314 const struct hfi1_devdata *dd,
1315 u32 offset)
1316{
1317 if (offset >= dd->base2_start)
1318 return dd->kregbase2 + (offset - dd->base2_start);
1319 return dd->kregbase1 + offset;
1320}
1321
1322/**
1323 * read_csr - read CSR at the indicated offset
1324 * @dd - the dd device
1325 * @offset - the offset of the CSR within bar0
1326 *
1327 * Return: the value read or all FF's if there
1328 * is no mapping
1329 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04001330u64 read_csr(const struct hfi1_devdata *dd, u32 offset)
1331{
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001332 if (dd->flags & HFI1_PRESENT)
1333 return readq(hfi1_addr_from_offset(dd, offset));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001334 return -1;
1335}
1336
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001337/**
1338 * write_csr - write CSR at the indicated offset
1339 * @dd - the dd device
1340 * @offset - the offset of the CSR within bar0
1341 * @value - value to write
1342 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04001343void write_csr(const struct hfi1_devdata *dd, u32 offset, u64 value)
1344{
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001345 if (dd->flags & HFI1_PRESENT) {
1346 void __iomem *base = hfi1_addr_from_offset(dd, offset);
1347
1348 /* avoid write to RcvArray */
1349 if (WARN_ON(offset >= RCV_ARRAY && offset < dd->base2_start))
1350 return;
1351 writeq(value, base);
1352 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001353}
1354
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001355/**
1356 * get_csr_addr - return te iomem address for offset
1357 * @dd - the dd device
1358 * @offset - the offset of the CSR within bar0
1359 *
1360 * Return: The iomem address to use in subsequent
1361 * writeq/readq operations.
1362 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04001363void __iomem *get_csr_addr(
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001364 const struct hfi1_devdata *dd,
Mike Marciniszyn77241052015-07-30 15:17:43 -04001365 u32 offset)
1366{
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001367 if (dd->flags & HFI1_PRESENT)
1368 return hfi1_addr_from_offset(dd, offset);
1369 return NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001370}
1371
1372static inline u64 read_write_csr(const struct hfi1_devdata *dd, u32 csr,
1373 int mode, u64 value)
1374{
1375 u64 ret;
1376
Mike Marciniszyn77241052015-07-30 15:17:43 -04001377 if (mode == CNTR_MODE_R) {
1378 ret = read_csr(dd, csr);
1379 } else if (mode == CNTR_MODE_W) {
1380 write_csr(dd, csr, value);
1381 ret = value;
1382 } else {
1383 dd_dev_err(dd, "Invalid cntr register access mode");
1384 return 0;
1385 }
1386
1387 hfi1_cdbg(CNTR, "csr 0x%x val 0x%llx mode %d", csr, ret, mode);
1388 return ret;
1389}
1390
1391/* Dev Access */
1392static u64 dev_access_u32_csr(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001393 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001394{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301395 struct hfi1_devdata *dd = context;
Vennila Megavannana699c6c2016-01-11 18:30:56 -05001396 u64 csr = entry->csr;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001397
Vennila Megavannana699c6c2016-01-11 18:30:56 -05001398 if (entry->flags & CNTR_SDMA) {
1399 if (vl == CNTR_INVALID_VL)
1400 return 0;
1401 csr += 0x100 * vl;
1402 } else {
1403 if (vl != CNTR_INVALID_VL)
1404 return 0;
1405 }
1406 return read_write_csr(dd, csr, mode, data);
1407}
1408
1409static u64 access_sde_err_cnt(const struct cntr_entry *entry,
1410 void *context, int idx, int mode, u64 data)
1411{
1412 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1413
1414 if (dd->per_sdma && idx < dd->num_sdma)
1415 return dd->per_sdma[idx].err_cnt;
1416 return 0;
1417}
1418
1419static u64 access_sde_int_cnt(const struct cntr_entry *entry,
1420 void *context, int idx, int mode, u64 data)
1421{
1422 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1423
1424 if (dd->per_sdma && idx < dd->num_sdma)
1425 return dd->per_sdma[idx].sdma_int_cnt;
1426 return 0;
1427}
1428
1429static u64 access_sde_idle_int_cnt(const struct cntr_entry *entry,
1430 void *context, int idx, int mode, u64 data)
1431{
1432 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1433
1434 if (dd->per_sdma && idx < dd->num_sdma)
1435 return dd->per_sdma[idx].idle_int_cnt;
1436 return 0;
1437}
1438
1439static u64 access_sde_progress_int_cnt(const struct cntr_entry *entry,
1440 void *context, int idx, int mode,
1441 u64 data)
1442{
1443 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1444
1445 if (dd->per_sdma && idx < dd->num_sdma)
1446 return dd->per_sdma[idx].progress_int_cnt;
1447 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001448}
1449
1450static u64 dev_access_u64_csr(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001451 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001452{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301453 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001454
1455 u64 val = 0;
1456 u64 csr = entry->csr;
1457
1458 if (entry->flags & CNTR_VL) {
1459 if (vl == CNTR_INVALID_VL)
1460 return 0;
1461 csr += 8 * vl;
1462 } else {
1463 if (vl != CNTR_INVALID_VL)
1464 return 0;
1465 }
1466
1467 val = read_write_csr(dd, csr, mode, data);
1468 return val;
1469}
1470
1471static u64 dc_access_lcb_cntr(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001472 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001473{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301474 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001475 u32 csr = entry->csr;
1476 int ret = 0;
1477
1478 if (vl != CNTR_INVALID_VL)
1479 return 0;
1480 if (mode == CNTR_MODE_R)
1481 ret = read_lcb_csr(dd, csr, &data);
1482 else if (mode == CNTR_MODE_W)
1483 ret = write_lcb_csr(dd, csr, data);
1484
1485 if (ret) {
1486 dd_dev_err(dd, "Could not acquire LCB for counter 0x%x", csr);
1487 return 0;
1488 }
1489
1490 hfi1_cdbg(CNTR, "csr 0x%x val 0x%llx mode %d", csr, data, mode);
1491 return data;
1492}
1493
1494/* Port Access */
1495static u64 port_access_u32_csr(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001496 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001497{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301498 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001499
1500 if (vl != CNTR_INVALID_VL)
1501 return 0;
1502 return read_write_csr(ppd->dd, entry->csr, mode, data);
1503}
1504
1505static u64 port_access_u64_csr(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001506 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001507{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301508 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001509 u64 val;
1510 u64 csr = entry->csr;
1511
1512 if (entry->flags & CNTR_VL) {
1513 if (vl == CNTR_INVALID_VL)
1514 return 0;
1515 csr += 8 * vl;
1516 } else {
1517 if (vl != CNTR_INVALID_VL)
1518 return 0;
1519 }
1520 val = read_write_csr(ppd->dd, csr, mode, data);
1521 return val;
1522}
1523
1524/* Software defined */
1525static inline u64 read_write_sw(struct hfi1_devdata *dd, u64 *cntr, int mode,
1526 u64 data)
1527{
1528 u64 ret;
1529
1530 if (mode == CNTR_MODE_R) {
1531 ret = *cntr;
1532 } else if (mode == CNTR_MODE_W) {
1533 *cntr = data;
1534 ret = data;
1535 } else {
1536 dd_dev_err(dd, "Invalid cntr sw access mode");
1537 return 0;
1538 }
1539
1540 hfi1_cdbg(CNTR, "val 0x%llx mode %d", ret, mode);
1541
1542 return ret;
1543}
1544
1545static u64 access_sw_link_dn_cnt(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001546 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001547{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301548 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001549
1550 if (vl != CNTR_INVALID_VL)
1551 return 0;
1552 return read_write_sw(ppd->dd, &ppd->link_downed, mode, data);
1553}
1554
1555static u64 access_sw_link_up_cnt(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001556 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001557{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301558 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001559
1560 if (vl != CNTR_INVALID_VL)
1561 return 0;
1562 return read_write_sw(ppd->dd, &ppd->link_up, mode, data);
1563}
1564
Dean Luick6d014532015-12-01 15:38:23 -05001565static u64 access_sw_unknown_frame_cnt(const struct cntr_entry *entry,
1566 void *context, int vl, int mode,
1567 u64 data)
1568{
1569 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context;
1570
1571 if (vl != CNTR_INVALID_VL)
1572 return 0;
1573 return read_write_sw(ppd->dd, &ppd->unknown_frame_count, mode, data);
1574}
1575
Mike Marciniszyn77241052015-07-30 15:17:43 -04001576static u64 access_sw_xmit_discards(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001577 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001578{
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08001579 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context;
1580 u64 zero = 0;
1581 u64 *counter;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001582
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08001583 if (vl == CNTR_INVALID_VL)
1584 counter = &ppd->port_xmit_discards;
1585 else if (vl >= 0 && vl < C_VL_COUNT)
1586 counter = &ppd->port_xmit_discards_vl[vl];
1587 else
1588 counter = &zero;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001589
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08001590 return read_write_sw(ppd->dd, counter, mode, data);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001591}
1592
1593static u64 access_xmit_constraint_errs(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001594 void *context, int vl, int mode,
1595 u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001596{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301597 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001598
1599 if (vl != CNTR_INVALID_VL)
1600 return 0;
1601
1602 return read_write_sw(ppd->dd, &ppd->port_xmit_constraint_errors,
1603 mode, data);
1604}
1605
1606static u64 access_rcv_constraint_errs(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001607 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001608{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301609 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001610
1611 if (vl != CNTR_INVALID_VL)
1612 return 0;
1613
1614 return read_write_sw(ppd->dd, &ppd->port_rcv_constraint_errors,
1615 mode, data);
1616}
1617
1618u64 get_all_cpu_total(u64 __percpu *cntr)
1619{
1620 int cpu;
1621 u64 counter = 0;
1622
1623 for_each_possible_cpu(cpu)
1624 counter += *per_cpu_ptr(cntr, cpu);
1625 return counter;
1626}
1627
1628static u64 read_write_cpu(struct hfi1_devdata *dd, u64 *z_val,
1629 u64 __percpu *cntr,
1630 int vl, int mode, u64 data)
1631{
Mike Marciniszyn77241052015-07-30 15:17:43 -04001632 u64 ret = 0;
1633
1634 if (vl != CNTR_INVALID_VL)
1635 return 0;
1636
1637 if (mode == CNTR_MODE_R) {
1638 ret = get_all_cpu_total(cntr) - *z_val;
1639 } else if (mode == CNTR_MODE_W) {
1640 /* A write can only zero the counter */
1641 if (data == 0)
1642 *z_val = get_all_cpu_total(cntr);
1643 else
1644 dd_dev_err(dd, "Per CPU cntrs can only be zeroed");
1645 } else {
1646 dd_dev_err(dd, "Invalid cntr sw cpu access mode");
1647 return 0;
1648 }
1649
1650 return ret;
1651}
1652
1653static u64 access_sw_cpu_intr(const struct cntr_entry *entry,
1654 void *context, int vl, int mode, u64 data)
1655{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301656 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001657
1658 return read_write_cpu(dd, &dd->z_int_counter, dd->int_counter, vl,
1659 mode, data);
1660}
1661
1662static u64 access_sw_cpu_rcv_limit(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001663 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001664{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301665 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001666
1667 return read_write_cpu(dd, &dd->z_rcv_limit, dd->rcv_limit, vl,
1668 mode, data);
1669}
1670
1671static u64 access_sw_pio_wait(const struct cntr_entry *entry,
1672 void *context, int vl, int mode, u64 data)
1673{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301674 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001675
1676 return dd->verbs_dev.n_piowait;
1677}
1678
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001679static u64 access_sw_pio_drain(const struct cntr_entry *entry,
1680 void *context, int vl, int mode, u64 data)
1681{
1682 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1683
1684 return dd->verbs_dev.n_piodrain;
1685}
1686
Mike Marciniszyn77241052015-07-30 15:17:43 -04001687static u64 access_sw_vtx_wait(const struct cntr_entry *entry,
1688 void *context, int vl, int mode, u64 data)
1689{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301690 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001691
1692 return dd->verbs_dev.n_txwait;
1693}
1694
1695static u64 access_sw_kmem_wait(const struct cntr_entry *entry,
1696 void *context, int vl, int mode, u64 data)
1697{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301698 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001699
1700 return dd->verbs_dev.n_kmem_wait;
1701}
1702
Dean Luickb4219222015-10-26 10:28:35 -04001703static u64 access_sw_send_schedule(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001704 void *context, int vl, int mode, u64 data)
Dean Luickb4219222015-10-26 10:28:35 -04001705{
1706 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1707
Vennila Megavannan89abfc82016-02-03 14:34:07 -08001708 return read_write_cpu(dd, &dd->z_send_schedule, dd->send_schedule, vl,
1709 mode, data);
Dean Luickb4219222015-10-26 10:28:35 -04001710}
1711
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05001712/* Software counters for the error status bits within MISC_ERR_STATUS */
1713static u64 access_misc_pll_lock_fail_err_cnt(const struct cntr_entry *entry,
1714 void *context, int vl, int mode,
1715 u64 data)
1716{
1717 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1718
1719 return dd->misc_err_status_cnt[12];
1720}
1721
1722static u64 access_misc_mbist_fail_err_cnt(const struct cntr_entry *entry,
1723 void *context, int vl, int mode,
1724 u64 data)
1725{
1726 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1727
1728 return dd->misc_err_status_cnt[11];
1729}
1730
1731static u64 access_misc_invalid_eep_cmd_err_cnt(const struct cntr_entry *entry,
1732 void *context, int vl, int mode,
1733 u64 data)
1734{
1735 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1736
1737 return dd->misc_err_status_cnt[10];
1738}
1739
1740static u64 access_misc_efuse_done_parity_err_cnt(const struct cntr_entry *entry,
1741 void *context, int vl,
1742 int mode, u64 data)
1743{
1744 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1745
1746 return dd->misc_err_status_cnt[9];
1747}
1748
1749static u64 access_misc_efuse_write_err_cnt(const struct cntr_entry *entry,
1750 void *context, int vl, int mode,
1751 u64 data)
1752{
1753 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1754
1755 return dd->misc_err_status_cnt[8];
1756}
1757
1758static u64 access_misc_efuse_read_bad_addr_err_cnt(
1759 const struct cntr_entry *entry,
1760 void *context, int vl, int mode, u64 data)
1761{
1762 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1763
1764 return dd->misc_err_status_cnt[7];
1765}
1766
1767static u64 access_misc_efuse_csr_parity_err_cnt(const struct cntr_entry *entry,
1768 void *context, int vl,
1769 int mode, u64 data)
1770{
1771 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1772
1773 return dd->misc_err_status_cnt[6];
1774}
1775
1776static u64 access_misc_fw_auth_failed_err_cnt(const struct cntr_entry *entry,
1777 void *context, int vl, int mode,
1778 u64 data)
1779{
1780 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1781
1782 return dd->misc_err_status_cnt[5];
1783}
1784
1785static u64 access_misc_key_mismatch_err_cnt(const struct cntr_entry *entry,
1786 void *context, int vl, int mode,
1787 u64 data)
1788{
1789 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1790
1791 return dd->misc_err_status_cnt[4];
1792}
1793
1794static u64 access_misc_sbus_write_failed_err_cnt(const struct cntr_entry *entry,
1795 void *context, int vl,
1796 int mode, u64 data)
1797{
1798 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1799
1800 return dd->misc_err_status_cnt[3];
1801}
1802
1803static u64 access_misc_csr_write_bad_addr_err_cnt(
1804 const struct cntr_entry *entry,
1805 void *context, int vl, int mode, u64 data)
1806{
1807 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1808
1809 return dd->misc_err_status_cnt[2];
1810}
1811
1812static u64 access_misc_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
1813 void *context, int vl,
1814 int mode, u64 data)
1815{
1816 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1817
1818 return dd->misc_err_status_cnt[1];
1819}
1820
1821static u64 access_misc_csr_parity_err_cnt(const struct cntr_entry *entry,
1822 void *context, int vl, int mode,
1823 u64 data)
1824{
1825 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1826
1827 return dd->misc_err_status_cnt[0];
1828}
1829
1830/*
1831 * Software counter for the aggregate of
1832 * individual CceErrStatus counters
1833 */
1834static u64 access_sw_cce_err_status_aggregated_cnt(
1835 const struct cntr_entry *entry,
1836 void *context, int vl, int mode, u64 data)
1837{
1838 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1839
1840 return dd->sw_cce_err_status_aggregate;
1841}
1842
1843/*
1844 * Software counters corresponding to each of the
1845 * error status bits within CceErrStatus
1846 */
1847static u64 access_cce_msix_csr_parity_err_cnt(const struct cntr_entry *entry,
1848 void *context, int vl, int mode,
1849 u64 data)
1850{
1851 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1852
1853 return dd->cce_err_status_cnt[40];
1854}
1855
1856static u64 access_cce_int_map_unc_err_cnt(const struct cntr_entry *entry,
1857 void *context, int vl, int mode,
1858 u64 data)
1859{
1860 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1861
1862 return dd->cce_err_status_cnt[39];
1863}
1864
1865static u64 access_cce_int_map_cor_err_cnt(const struct cntr_entry *entry,
1866 void *context, int vl, int mode,
1867 u64 data)
1868{
1869 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1870
1871 return dd->cce_err_status_cnt[38];
1872}
1873
1874static u64 access_cce_msix_table_unc_err_cnt(const struct cntr_entry *entry,
1875 void *context, int vl, int mode,
1876 u64 data)
1877{
1878 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1879
1880 return dd->cce_err_status_cnt[37];
1881}
1882
1883static u64 access_cce_msix_table_cor_err_cnt(const struct cntr_entry *entry,
1884 void *context, int vl, int mode,
1885 u64 data)
1886{
1887 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1888
1889 return dd->cce_err_status_cnt[36];
1890}
1891
1892static u64 access_cce_rxdma_conv_fifo_parity_err_cnt(
1893 const struct cntr_entry *entry,
1894 void *context, int vl, int mode, u64 data)
1895{
1896 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1897
1898 return dd->cce_err_status_cnt[35];
1899}
1900
1901static u64 access_cce_rcpl_async_fifo_parity_err_cnt(
1902 const struct cntr_entry *entry,
1903 void *context, int vl, int mode, u64 data)
1904{
1905 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1906
1907 return dd->cce_err_status_cnt[34];
1908}
1909
1910static u64 access_cce_seg_write_bad_addr_err_cnt(const struct cntr_entry *entry,
1911 void *context, int vl,
1912 int mode, u64 data)
1913{
1914 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1915
1916 return dd->cce_err_status_cnt[33];
1917}
1918
1919static u64 access_cce_seg_read_bad_addr_err_cnt(const struct cntr_entry *entry,
1920 void *context, int vl, int mode,
1921 u64 data)
1922{
1923 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1924
1925 return dd->cce_err_status_cnt[32];
1926}
1927
1928static u64 access_la_triggered_cnt(const struct cntr_entry *entry,
1929 void *context, int vl, int mode, u64 data)
1930{
1931 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1932
1933 return dd->cce_err_status_cnt[31];
1934}
1935
1936static u64 access_cce_trgt_cpl_timeout_err_cnt(const struct cntr_entry *entry,
1937 void *context, int vl, int mode,
1938 u64 data)
1939{
1940 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1941
1942 return dd->cce_err_status_cnt[30];
1943}
1944
1945static u64 access_pcic_receive_parity_err_cnt(const struct cntr_entry *entry,
1946 void *context, int vl, int mode,
1947 u64 data)
1948{
1949 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1950
1951 return dd->cce_err_status_cnt[29];
1952}
1953
1954static u64 access_pcic_transmit_back_parity_err_cnt(
1955 const struct cntr_entry *entry,
1956 void *context, int vl, int mode, u64 data)
1957{
1958 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1959
1960 return dd->cce_err_status_cnt[28];
1961}
1962
1963static u64 access_pcic_transmit_front_parity_err_cnt(
1964 const struct cntr_entry *entry,
1965 void *context, int vl, int mode, u64 data)
1966{
1967 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1968
1969 return dd->cce_err_status_cnt[27];
1970}
1971
1972static u64 access_pcic_cpl_dat_q_unc_err_cnt(const struct cntr_entry *entry,
1973 void *context, int vl, int mode,
1974 u64 data)
1975{
1976 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1977
1978 return dd->cce_err_status_cnt[26];
1979}
1980
1981static u64 access_pcic_cpl_hd_q_unc_err_cnt(const struct cntr_entry *entry,
1982 void *context, int vl, int mode,
1983 u64 data)
1984{
1985 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1986
1987 return dd->cce_err_status_cnt[25];
1988}
1989
1990static u64 access_pcic_post_dat_q_unc_err_cnt(const struct cntr_entry *entry,
1991 void *context, int vl, int mode,
1992 u64 data)
1993{
1994 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1995
1996 return dd->cce_err_status_cnt[24];
1997}
1998
1999static u64 access_pcic_post_hd_q_unc_err_cnt(const struct cntr_entry *entry,
2000 void *context, int vl, int mode,
2001 u64 data)
2002{
2003 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2004
2005 return dd->cce_err_status_cnt[23];
2006}
2007
2008static u64 access_pcic_retry_sot_mem_unc_err_cnt(const struct cntr_entry *entry,
2009 void *context, int vl,
2010 int mode, u64 data)
2011{
2012 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2013
2014 return dd->cce_err_status_cnt[22];
2015}
2016
2017static u64 access_pcic_retry_mem_unc_err(const struct cntr_entry *entry,
2018 void *context, int vl, int mode,
2019 u64 data)
2020{
2021 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2022
2023 return dd->cce_err_status_cnt[21];
2024}
2025
2026static u64 access_pcic_n_post_dat_q_parity_err_cnt(
2027 const struct cntr_entry *entry,
2028 void *context, int vl, int mode, u64 data)
2029{
2030 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2031
2032 return dd->cce_err_status_cnt[20];
2033}
2034
2035static u64 access_pcic_n_post_h_q_parity_err_cnt(const struct cntr_entry *entry,
2036 void *context, int vl,
2037 int mode, u64 data)
2038{
2039 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2040
2041 return dd->cce_err_status_cnt[19];
2042}
2043
2044static u64 access_pcic_cpl_dat_q_cor_err_cnt(const struct cntr_entry *entry,
2045 void *context, int vl, int mode,
2046 u64 data)
2047{
2048 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2049
2050 return dd->cce_err_status_cnt[18];
2051}
2052
2053static u64 access_pcic_cpl_hd_q_cor_err_cnt(const struct cntr_entry *entry,
2054 void *context, int vl, int mode,
2055 u64 data)
2056{
2057 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2058
2059 return dd->cce_err_status_cnt[17];
2060}
2061
2062static u64 access_pcic_post_dat_q_cor_err_cnt(const struct cntr_entry *entry,
2063 void *context, int vl, int mode,
2064 u64 data)
2065{
2066 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2067
2068 return dd->cce_err_status_cnt[16];
2069}
2070
2071static u64 access_pcic_post_hd_q_cor_err_cnt(const struct cntr_entry *entry,
2072 void *context, int vl, int mode,
2073 u64 data)
2074{
2075 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2076
2077 return dd->cce_err_status_cnt[15];
2078}
2079
2080static u64 access_pcic_retry_sot_mem_cor_err_cnt(const struct cntr_entry *entry,
2081 void *context, int vl,
2082 int mode, u64 data)
2083{
2084 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2085
2086 return dd->cce_err_status_cnt[14];
2087}
2088
2089static u64 access_pcic_retry_mem_cor_err_cnt(const struct cntr_entry *entry,
2090 void *context, int vl, int mode,
2091 u64 data)
2092{
2093 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2094
2095 return dd->cce_err_status_cnt[13];
2096}
2097
2098static u64 access_cce_cli1_async_fifo_dbg_parity_err_cnt(
2099 const struct cntr_entry *entry,
2100 void *context, int vl, int mode, u64 data)
2101{
2102 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2103
2104 return dd->cce_err_status_cnt[12];
2105}
2106
2107static u64 access_cce_cli1_async_fifo_rxdma_parity_err_cnt(
2108 const struct cntr_entry *entry,
2109 void *context, int vl, int mode, u64 data)
2110{
2111 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2112
2113 return dd->cce_err_status_cnt[11];
2114}
2115
2116static u64 access_cce_cli1_async_fifo_sdma_hd_parity_err_cnt(
2117 const struct cntr_entry *entry,
2118 void *context, int vl, int mode, u64 data)
2119{
2120 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2121
2122 return dd->cce_err_status_cnt[10];
2123}
2124
2125static u64 access_cce_cl1_async_fifo_pio_crdt_parity_err_cnt(
2126 const struct cntr_entry *entry,
2127 void *context, int vl, int mode, u64 data)
2128{
2129 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2130
2131 return dd->cce_err_status_cnt[9];
2132}
2133
2134static u64 access_cce_cli2_async_fifo_parity_err_cnt(
2135 const struct cntr_entry *entry,
2136 void *context, int vl, int mode, u64 data)
2137{
2138 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2139
2140 return dd->cce_err_status_cnt[8];
2141}
2142
2143static u64 access_cce_csr_cfg_bus_parity_err_cnt(const struct cntr_entry *entry,
2144 void *context, int vl,
2145 int mode, u64 data)
2146{
2147 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2148
2149 return dd->cce_err_status_cnt[7];
2150}
2151
2152static u64 access_cce_cli0_async_fifo_parity_err_cnt(
2153 const struct cntr_entry *entry,
2154 void *context, int vl, int mode, u64 data)
2155{
2156 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2157
2158 return dd->cce_err_status_cnt[6];
2159}
2160
2161static u64 access_cce_rspd_data_parity_err_cnt(const struct cntr_entry *entry,
2162 void *context, int vl, int mode,
2163 u64 data)
2164{
2165 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2166
2167 return dd->cce_err_status_cnt[5];
2168}
2169
2170static u64 access_cce_trgt_access_err_cnt(const struct cntr_entry *entry,
2171 void *context, int vl, int mode,
2172 u64 data)
2173{
2174 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2175
2176 return dd->cce_err_status_cnt[4];
2177}
2178
2179static u64 access_cce_trgt_async_fifo_parity_err_cnt(
2180 const struct cntr_entry *entry,
2181 void *context, int vl, int mode, u64 data)
2182{
2183 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2184
2185 return dd->cce_err_status_cnt[3];
2186}
2187
2188static u64 access_cce_csr_write_bad_addr_err_cnt(const struct cntr_entry *entry,
2189 void *context, int vl,
2190 int mode, u64 data)
2191{
2192 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2193
2194 return dd->cce_err_status_cnt[2];
2195}
2196
2197static u64 access_cce_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
2198 void *context, int vl,
2199 int mode, u64 data)
2200{
2201 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2202
2203 return dd->cce_err_status_cnt[1];
2204}
2205
2206static u64 access_ccs_csr_parity_err_cnt(const struct cntr_entry *entry,
2207 void *context, int vl, int mode,
2208 u64 data)
2209{
2210 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2211
2212 return dd->cce_err_status_cnt[0];
2213}
2214
2215/*
2216 * Software counters corresponding to each of the
2217 * error status bits within RcvErrStatus
2218 */
2219static u64 access_rx_csr_parity_err_cnt(const struct cntr_entry *entry,
2220 void *context, int vl, int mode,
2221 u64 data)
2222{
2223 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2224
2225 return dd->rcv_err_status_cnt[63];
2226}
2227
2228static u64 access_rx_csr_write_bad_addr_err_cnt(const struct cntr_entry *entry,
2229 void *context, int vl,
2230 int mode, u64 data)
2231{
2232 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2233
2234 return dd->rcv_err_status_cnt[62];
2235}
2236
2237static u64 access_rx_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
2238 void *context, int vl, int mode,
2239 u64 data)
2240{
2241 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2242
2243 return dd->rcv_err_status_cnt[61];
2244}
2245
2246static u64 access_rx_dma_csr_unc_err_cnt(const struct cntr_entry *entry,
2247 void *context, int vl, int mode,
2248 u64 data)
2249{
2250 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2251
2252 return dd->rcv_err_status_cnt[60];
2253}
2254
2255static u64 access_rx_dma_dq_fsm_encoding_err_cnt(const struct cntr_entry *entry,
2256 void *context, int vl,
2257 int mode, u64 data)
2258{
2259 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2260
2261 return dd->rcv_err_status_cnt[59];
2262}
2263
2264static u64 access_rx_dma_eq_fsm_encoding_err_cnt(const struct cntr_entry *entry,
2265 void *context, int vl,
2266 int mode, u64 data)
2267{
2268 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2269
2270 return dd->rcv_err_status_cnt[58];
2271}
2272
2273static u64 access_rx_dma_csr_parity_err_cnt(const struct cntr_entry *entry,
2274 void *context, int vl, int mode,
2275 u64 data)
2276{
2277 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2278
2279 return dd->rcv_err_status_cnt[57];
2280}
2281
2282static u64 access_rx_rbuf_data_cor_err_cnt(const struct cntr_entry *entry,
2283 void *context, int vl, int mode,
2284 u64 data)
2285{
2286 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2287
2288 return dd->rcv_err_status_cnt[56];
2289}
2290
2291static u64 access_rx_rbuf_data_unc_err_cnt(const struct cntr_entry *entry,
2292 void *context, int vl, int mode,
2293 u64 data)
2294{
2295 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2296
2297 return dd->rcv_err_status_cnt[55];
2298}
2299
2300static u64 access_rx_dma_data_fifo_rd_cor_err_cnt(
2301 const struct cntr_entry *entry,
2302 void *context, int vl, int mode, u64 data)
2303{
2304 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2305
2306 return dd->rcv_err_status_cnt[54];
2307}
2308
2309static u64 access_rx_dma_data_fifo_rd_unc_err_cnt(
2310 const struct cntr_entry *entry,
2311 void *context, int vl, int mode, u64 data)
2312{
2313 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2314
2315 return dd->rcv_err_status_cnt[53];
2316}
2317
2318static u64 access_rx_dma_hdr_fifo_rd_cor_err_cnt(const struct cntr_entry *entry,
2319 void *context, int vl,
2320 int mode, u64 data)
2321{
2322 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2323
2324 return dd->rcv_err_status_cnt[52];
2325}
2326
2327static u64 access_rx_dma_hdr_fifo_rd_unc_err_cnt(const struct cntr_entry *entry,
2328 void *context, int vl,
2329 int mode, u64 data)
2330{
2331 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2332
2333 return dd->rcv_err_status_cnt[51];
2334}
2335
2336static u64 access_rx_rbuf_desc_part2_cor_err_cnt(const struct cntr_entry *entry,
2337 void *context, int vl,
2338 int mode, u64 data)
2339{
2340 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2341
2342 return dd->rcv_err_status_cnt[50];
2343}
2344
2345static u64 access_rx_rbuf_desc_part2_unc_err_cnt(const struct cntr_entry *entry,
2346 void *context, int vl,
2347 int mode, u64 data)
2348{
2349 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2350
2351 return dd->rcv_err_status_cnt[49];
2352}
2353
2354static u64 access_rx_rbuf_desc_part1_cor_err_cnt(const struct cntr_entry *entry,
2355 void *context, int vl,
2356 int mode, u64 data)
2357{
2358 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2359
2360 return dd->rcv_err_status_cnt[48];
2361}
2362
2363static u64 access_rx_rbuf_desc_part1_unc_err_cnt(const struct cntr_entry *entry,
2364 void *context, int vl,
2365 int mode, u64 data)
2366{
2367 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2368
2369 return dd->rcv_err_status_cnt[47];
2370}
2371
2372static u64 access_rx_hq_intr_fsm_err_cnt(const struct cntr_entry *entry,
2373 void *context, int vl, int mode,
2374 u64 data)
2375{
2376 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2377
2378 return dd->rcv_err_status_cnt[46];
2379}
2380
2381static u64 access_rx_hq_intr_csr_parity_err_cnt(
2382 const struct cntr_entry *entry,
2383 void *context, int vl, int mode, u64 data)
2384{
2385 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2386
2387 return dd->rcv_err_status_cnt[45];
2388}
2389
2390static u64 access_rx_lookup_csr_parity_err_cnt(
2391 const struct cntr_entry *entry,
2392 void *context, int vl, int mode, u64 data)
2393{
2394 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2395
2396 return dd->rcv_err_status_cnt[44];
2397}
2398
2399static u64 access_rx_lookup_rcv_array_cor_err_cnt(
2400 const struct cntr_entry *entry,
2401 void *context, int vl, int mode, u64 data)
2402{
2403 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2404
2405 return dd->rcv_err_status_cnt[43];
2406}
2407
2408static u64 access_rx_lookup_rcv_array_unc_err_cnt(
2409 const struct cntr_entry *entry,
2410 void *context, int vl, int mode, u64 data)
2411{
2412 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2413
2414 return dd->rcv_err_status_cnt[42];
2415}
2416
2417static u64 access_rx_lookup_des_part2_parity_err_cnt(
2418 const struct cntr_entry *entry,
2419 void *context, int vl, int mode, u64 data)
2420{
2421 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2422
2423 return dd->rcv_err_status_cnt[41];
2424}
2425
2426static u64 access_rx_lookup_des_part1_unc_cor_err_cnt(
2427 const struct cntr_entry *entry,
2428 void *context, int vl, int mode, u64 data)
2429{
2430 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2431
2432 return dd->rcv_err_status_cnt[40];
2433}
2434
2435static u64 access_rx_lookup_des_part1_unc_err_cnt(
2436 const struct cntr_entry *entry,
2437 void *context, int vl, int mode, u64 data)
2438{
2439 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2440
2441 return dd->rcv_err_status_cnt[39];
2442}
2443
2444static u64 access_rx_rbuf_next_free_buf_cor_err_cnt(
2445 const struct cntr_entry *entry,
2446 void *context, int vl, int mode, u64 data)
2447{
2448 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2449
2450 return dd->rcv_err_status_cnt[38];
2451}
2452
2453static u64 access_rx_rbuf_next_free_buf_unc_err_cnt(
2454 const struct cntr_entry *entry,
2455 void *context, int vl, int mode, u64 data)
2456{
2457 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2458
2459 return dd->rcv_err_status_cnt[37];
2460}
2461
2462static u64 access_rbuf_fl_init_wr_addr_parity_err_cnt(
2463 const struct cntr_entry *entry,
2464 void *context, int vl, int mode, u64 data)
2465{
2466 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2467
2468 return dd->rcv_err_status_cnt[36];
2469}
2470
2471static u64 access_rx_rbuf_fl_initdone_parity_err_cnt(
2472 const struct cntr_entry *entry,
2473 void *context, int vl, int mode, u64 data)
2474{
2475 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2476
2477 return dd->rcv_err_status_cnt[35];
2478}
2479
2480static u64 access_rx_rbuf_fl_write_addr_parity_err_cnt(
2481 const struct cntr_entry *entry,
2482 void *context, int vl, int mode, u64 data)
2483{
2484 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2485
2486 return dd->rcv_err_status_cnt[34];
2487}
2488
2489static u64 access_rx_rbuf_fl_rd_addr_parity_err_cnt(
2490 const struct cntr_entry *entry,
2491 void *context, int vl, int mode, u64 data)
2492{
2493 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2494
2495 return dd->rcv_err_status_cnt[33];
2496}
2497
2498static u64 access_rx_rbuf_empty_err_cnt(const struct cntr_entry *entry,
2499 void *context, int vl, int mode,
2500 u64 data)
2501{
2502 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2503
2504 return dd->rcv_err_status_cnt[32];
2505}
2506
2507static u64 access_rx_rbuf_full_err_cnt(const struct cntr_entry *entry,
2508 void *context, int vl, int mode,
2509 u64 data)
2510{
2511 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2512
2513 return dd->rcv_err_status_cnt[31];
2514}
2515
2516static u64 access_rbuf_bad_lookup_err_cnt(const struct cntr_entry *entry,
2517 void *context, int vl, int mode,
2518 u64 data)
2519{
2520 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2521
2522 return dd->rcv_err_status_cnt[30];
2523}
2524
2525static u64 access_rbuf_ctx_id_parity_err_cnt(const struct cntr_entry *entry,
2526 void *context, int vl, int mode,
2527 u64 data)
2528{
2529 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2530
2531 return dd->rcv_err_status_cnt[29];
2532}
2533
2534static u64 access_rbuf_csr_qeopdw_parity_err_cnt(const struct cntr_entry *entry,
2535 void *context, int vl,
2536 int mode, u64 data)
2537{
2538 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2539
2540 return dd->rcv_err_status_cnt[28];
2541}
2542
2543static u64 access_rx_rbuf_csr_q_num_of_pkt_parity_err_cnt(
2544 const struct cntr_entry *entry,
2545 void *context, int vl, int mode, u64 data)
2546{
2547 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2548
2549 return dd->rcv_err_status_cnt[27];
2550}
2551
2552static u64 access_rx_rbuf_csr_q_t1_ptr_parity_err_cnt(
2553 const struct cntr_entry *entry,
2554 void *context, int vl, int mode, u64 data)
2555{
2556 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2557
2558 return dd->rcv_err_status_cnt[26];
2559}
2560
2561static u64 access_rx_rbuf_csr_q_hd_ptr_parity_err_cnt(
2562 const struct cntr_entry *entry,
2563 void *context, int vl, int mode, u64 data)
2564{
2565 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2566
2567 return dd->rcv_err_status_cnt[25];
2568}
2569
2570static u64 access_rx_rbuf_csr_q_vld_bit_parity_err_cnt(
2571 const struct cntr_entry *entry,
2572 void *context, int vl, int mode, u64 data)
2573{
2574 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2575
2576 return dd->rcv_err_status_cnt[24];
2577}
2578
2579static u64 access_rx_rbuf_csr_q_next_buf_parity_err_cnt(
2580 const struct cntr_entry *entry,
2581 void *context, int vl, int mode, u64 data)
2582{
2583 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2584
2585 return dd->rcv_err_status_cnt[23];
2586}
2587
2588static u64 access_rx_rbuf_csr_q_ent_cnt_parity_err_cnt(
2589 const struct cntr_entry *entry,
2590 void *context, int vl, int mode, u64 data)
2591{
2592 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2593
2594 return dd->rcv_err_status_cnt[22];
2595}
2596
2597static u64 access_rx_rbuf_csr_q_head_buf_num_parity_err_cnt(
2598 const struct cntr_entry *entry,
2599 void *context, int vl, int mode, u64 data)
2600{
2601 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2602
2603 return dd->rcv_err_status_cnt[21];
2604}
2605
2606static u64 access_rx_rbuf_block_list_read_cor_err_cnt(
2607 const struct cntr_entry *entry,
2608 void *context, int vl, int mode, u64 data)
2609{
2610 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2611
2612 return dd->rcv_err_status_cnt[20];
2613}
2614
2615static u64 access_rx_rbuf_block_list_read_unc_err_cnt(
2616 const struct cntr_entry *entry,
2617 void *context, int vl, int mode, u64 data)
2618{
2619 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2620
2621 return dd->rcv_err_status_cnt[19];
2622}
2623
2624static u64 access_rx_rbuf_lookup_des_cor_err_cnt(const struct cntr_entry *entry,
2625 void *context, int vl,
2626 int mode, u64 data)
2627{
2628 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2629
2630 return dd->rcv_err_status_cnt[18];
2631}
2632
2633static u64 access_rx_rbuf_lookup_des_unc_err_cnt(const struct cntr_entry *entry,
2634 void *context, int vl,
2635 int mode, u64 data)
2636{
2637 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2638
2639 return dd->rcv_err_status_cnt[17];
2640}
2641
2642static u64 access_rx_rbuf_lookup_des_reg_unc_cor_err_cnt(
2643 const struct cntr_entry *entry,
2644 void *context, int vl, int mode, u64 data)
2645{
2646 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2647
2648 return dd->rcv_err_status_cnt[16];
2649}
2650
2651static u64 access_rx_rbuf_lookup_des_reg_unc_err_cnt(
2652 const struct cntr_entry *entry,
2653 void *context, int vl, int mode, u64 data)
2654{
2655 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2656
2657 return dd->rcv_err_status_cnt[15];
2658}
2659
2660static u64 access_rx_rbuf_free_list_cor_err_cnt(const struct cntr_entry *entry,
2661 void *context, int vl,
2662 int mode, u64 data)
2663{
2664 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2665
2666 return dd->rcv_err_status_cnt[14];
2667}
2668
2669static u64 access_rx_rbuf_free_list_unc_err_cnt(const struct cntr_entry *entry,
2670 void *context, int vl,
2671 int mode, u64 data)
2672{
2673 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2674
2675 return dd->rcv_err_status_cnt[13];
2676}
2677
2678static u64 access_rx_rcv_fsm_encoding_err_cnt(const struct cntr_entry *entry,
2679 void *context, int vl, int mode,
2680 u64 data)
2681{
2682 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2683
2684 return dd->rcv_err_status_cnt[12];
2685}
2686
2687static u64 access_rx_dma_flag_cor_err_cnt(const struct cntr_entry *entry,
2688 void *context, int vl, int mode,
2689 u64 data)
2690{
2691 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2692
2693 return dd->rcv_err_status_cnt[11];
2694}
2695
2696static u64 access_rx_dma_flag_unc_err_cnt(const struct cntr_entry *entry,
2697 void *context, int vl, int mode,
2698 u64 data)
2699{
2700 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2701
2702 return dd->rcv_err_status_cnt[10];
2703}
2704
2705static u64 access_rx_dc_sop_eop_parity_err_cnt(const struct cntr_entry *entry,
2706 void *context, int vl, int mode,
2707 u64 data)
2708{
2709 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2710
2711 return dd->rcv_err_status_cnt[9];
2712}
2713
2714static u64 access_rx_rcv_csr_parity_err_cnt(const struct cntr_entry *entry,
2715 void *context, int vl, int mode,
2716 u64 data)
2717{
2718 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2719
2720 return dd->rcv_err_status_cnt[8];
2721}
2722
2723static u64 access_rx_rcv_qp_map_table_cor_err_cnt(
2724 const struct cntr_entry *entry,
2725 void *context, int vl, int mode, u64 data)
2726{
2727 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2728
2729 return dd->rcv_err_status_cnt[7];
2730}
2731
2732static u64 access_rx_rcv_qp_map_table_unc_err_cnt(
2733 const struct cntr_entry *entry,
2734 void *context, int vl, int mode, u64 data)
2735{
2736 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2737
2738 return dd->rcv_err_status_cnt[6];
2739}
2740
2741static u64 access_rx_rcv_data_cor_err_cnt(const struct cntr_entry *entry,
2742 void *context, int vl, int mode,
2743 u64 data)
2744{
2745 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2746
2747 return dd->rcv_err_status_cnt[5];
2748}
2749
2750static u64 access_rx_rcv_data_unc_err_cnt(const struct cntr_entry *entry,
2751 void *context, int vl, int mode,
2752 u64 data)
2753{
2754 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2755
2756 return dd->rcv_err_status_cnt[4];
2757}
2758
2759static u64 access_rx_rcv_hdr_cor_err_cnt(const struct cntr_entry *entry,
2760 void *context, int vl, int mode,
2761 u64 data)
2762{
2763 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2764
2765 return dd->rcv_err_status_cnt[3];
2766}
2767
2768static u64 access_rx_rcv_hdr_unc_err_cnt(const struct cntr_entry *entry,
2769 void *context, int vl, int mode,
2770 u64 data)
2771{
2772 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2773
2774 return dd->rcv_err_status_cnt[2];
2775}
2776
2777static u64 access_rx_dc_intf_parity_err_cnt(const struct cntr_entry *entry,
2778 void *context, int vl, int mode,
2779 u64 data)
2780{
2781 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2782
2783 return dd->rcv_err_status_cnt[1];
2784}
2785
2786static u64 access_rx_dma_csr_cor_err_cnt(const struct cntr_entry *entry,
2787 void *context, int vl, int mode,
2788 u64 data)
2789{
2790 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2791
2792 return dd->rcv_err_status_cnt[0];
2793}
2794
2795/*
2796 * Software counters corresponding to each of the
2797 * error status bits within SendPioErrStatus
2798 */
2799static u64 access_pio_pec_sop_head_parity_err_cnt(
2800 const struct cntr_entry *entry,
2801 void *context, int vl, int mode, u64 data)
2802{
2803 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2804
2805 return dd->send_pio_err_status_cnt[35];
2806}
2807
2808static u64 access_pio_pcc_sop_head_parity_err_cnt(
2809 const struct cntr_entry *entry,
2810 void *context, int vl, int mode, u64 data)
2811{
2812 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2813
2814 return dd->send_pio_err_status_cnt[34];
2815}
2816
2817static u64 access_pio_last_returned_cnt_parity_err_cnt(
2818 const struct cntr_entry *entry,
2819 void *context, int vl, int mode, u64 data)
2820{
2821 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2822
2823 return dd->send_pio_err_status_cnt[33];
2824}
2825
2826static u64 access_pio_current_free_cnt_parity_err_cnt(
2827 const struct cntr_entry *entry,
2828 void *context, int vl, int mode, u64 data)
2829{
2830 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2831
2832 return dd->send_pio_err_status_cnt[32];
2833}
2834
2835static u64 access_pio_reserved_31_err_cnt(const struct cntr_entry *entry,
2836 void *context, int vl, int mode,
2837 u64 data)
2838{
2839 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2840
2841 return dd->send_pio_err_status_cnt[31];
2842}
2843
2844static u64 access_pio_reserved_30_err_cnt(const struct cntr_entry *entry,
2845 void *context, int vl, int mode,
2846 u64 data)
2847{
2848 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2849
2850 return dd->send_pio_err_status_cnt[30];
2851}
2852
2853static u64 access_pio_ppmc_sop_len_err_cnt(const struct cntr_entry *entry,
2854 void *context, int vl, int mode,
2855 u64 data)
2856{
2857 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2858
2859 return dd->send_pio_err_status_cnt[29];
2860}
2861
2862static u64 access_pio_ppmc_bqc_mem_parity_err_cnt(
2863 const struct cntr_entry *entry,
2864 void *context, int vl, int mode, u64 data)
2865{
2866 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2867
2868 return dd->send_pio_err_status_cnt[28];
2869}
2870
2871static u64 access_pio_vl_fifo_parity_err_cnt(const struct cntr_entry *entry,
2872 void *context, int vl, int mode,
2873 u64 data)
2874{
2875 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2876
2877 return dd->send_pio_err_status_cnt[27];
2878}
2879
2880static u64 access_pio_vlf_sop_parity_err_cnt(const struct cntr_entry *entry,
2881 void *context, int vl, int mode,
2882 u64 data)
2883{
2884 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2885
2886 return dd->send_pio_err_status_cnt[26];
2887}
2888
2889static u64 access_pio_vlf_v1_len_parity_err_cnt(const struct cntr_entry *entry,
2890 void *context, int vl,
2891 int mode, u64 data)
2892{
2893 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2894
2895 return dd->send_pio_err_status_cnt[25];
2896}
2897
2898static u64 access_pio_block_qw_count_parity_err_cnt(
2899 const struct cntr_entry *entry,
2900 void *context, int vl, int mode, u64 data)
2901{
2902 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2903
2904 return dd->send_pio_err_status_cnt[24];
2905}
2906
2907static u64 access_pio_write_qw_valid_parity_err_cnt(
2908 const struct cntr_entry *entry,
2909 void *context, int vl, int mode, u64 data)
2910{
2911 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2912
2913 return dd->send_pio_err_status_cnt[23];
2914}
2915
2916static u64 access_pio_state_machine_err_cnt(const struct cntr_entry *entry,
2917 void *context, int vl, int mode,
2918 u64 data)
2919{
2920 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2921
2922 return dd->send_pio_err_status_cnt[22];
2923}
2924
2925static u64 access_pio_write_data_parity_err_cnt(const struct cntr_entry *entry,
2926 void *context, int vl,
2927 int mode, u64 data)
2928{
2929 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2930
2931 return dd->send_pio_err_status_cnt[21];
2932}
2933
2934static u64 access_pio_host_addr_mem_cor_err_cnt(const struct cntr_entry *entry,
2935 void *context, int vl,
2936 int mode, u64 data)
2937{
2938 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2939
2940 return dd->send_pio_err_status_cnt[20];
2941}
2942
2943static u64 access_pio_host_addr_mem_unc_err_cnt(const struct cntr_entry *entry,
2944 void *context, int vl,
2945 int mode, u64 data)
2946{
2947 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2948
2949 return dd->send_pio_err_status_cnt[19];
2950}
2951
2952static u64 access_pio_pkt_evict_sm_or_arb_sm_err_cnt(
2953 const struct cntr_entry *entry,
2954 void *context, int vl, int mode, u64 data)
2955{
2956 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2957
2958 return dd->send_pio_err_status_cnt[18];
2959}
2960
2961static u64 access_pio_init_sm_in_err_cnt(const struct cntr_entry *entry,
2962 void *context, int vl, int mode,
2963 u64 data)
2964{
2965 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2966
2967 return dd->send_pio_err_status_cnt[17];
2968}
2969
2970static u64 access_pio_ppmc_pbl_fifo_err_cnt(const struct cntr_entry *entry,
2971 void *context, int vl, int mode,
2972 u64 data)
2973{
2974 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2975
2976 return dd->send_pio_err_status_cnt[16];
2977}
2978
2979static u64 access_pio_credit_ret_fifo_parity_err_cnt(
2980 const struct cntr_entry *entry,
2981 void *context, int vl, int mode, u64 data)
2982{
2983 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2984
2985 return dd->send_pio_err_status_cnt[15];
2986}
2987
2988static u64 access_pio_v1_len_mem_bank1_cor_err_cnt(
2989 const struct cntr_entry *entry,
2990 void *context, int vl, int mode, u64 data)
2991{
2992 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2993
2994 return dd->send_pio_err_status_cnt[14];
2995}
2996
2997static u64 access_pio_v1_len_mem_bank0_cor_err_cnt(
2998 const struct cntr_entry *entry,
2999 void *context, int vl, int mode, u64 data)
3000{
3001 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3002
3003 return dd->send_pio_err_status_cnt[13];
3004}
3005
3006static u64 access_pio_v1_len_mem_bank1_unc_err_cnt(
3007 const struct cntr_entry *entry,
3008 void *context, int vl, int mode, u64 data)
3009{
3010 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3011
3012 return dd->send_pio_err_status_cnt[12];
3013}
3014
3015static u64 access_pio_v1_len_mem_bank0_unc_err_cnt(
3016 const struct cntr_entry *entry,
3017 void *context, int vl, int mode, u64 data)
3018{
3019 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3020
3021 return dd->send_pio_err_status_cnt[11];
3022}
3023
3024static u64 access_pio_sm_pkt_reset_parity_err_cnt(
3025 const struct cntr_entry *entry,
3026 void *context, int vl, int mode, u64 data)
3027{
3028 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3029
3030 return dd->send_pio_err_status_cnt[10];
3031}
3032
3033static u64 access_pio_pkt_evict_fifo_parity_err_cnt(
3034 const struct cntr_entry *entry,
3035 void *context, int vl, int mode, u64 data)
3036{
3037 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3038
3039 return dd->send_pio_err_status_cnt[9];
3040}
3041
3042static u64 access_pio_sbrdctrl_crrel_fifo_parity_err_cnt(
3043 const struct cntr_entry *entry,
3044 void *context, int vl, int mode, u64 data)
3045{
3046 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3047
3048 return dd->send_pio_err_status_cnt[8];
3049}
3050
3051static u64 access_pio_sbrdctl_crrel_parity_err_cnt(
3052 const struct cntr_entry *entry,
3053 void *context, int vl, int mode, u64 data)
3054{
3055 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3056
3057 return dd->send_pio_err_status_cnt[7];
3058}
3059
3060static u64 access_pio_pec_fifo_parity_err_cnt(const struct cntr_entry *entry,
3061 void *context, int vl, int mode,
3062 u64 data)
3063{
3064 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3065
3066 return dd->send_pio_err_status_cnt[6];
3067}
3068
3069static u64 access_pio_pcc_fifo_parity_err_cnt(const struct cntr_entry *entry,
3070 void *context, int vl, int mode,
3071 u64 data)
3072{
3073 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3074
3075 return dd->send_pio_err_status_cnt[5];
3076}
3077
3078static u64 access_pio_sb_mem_fifo1_err_cnt(const struct cntr_entry *entry,
3079 void *context, int vl, int mode,
3080 u64 data)
3081{
3082 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3083
3084 return dd->send_pio_err_status_cnt[4];
3085}
3086
3087static u64 access_pio_sb_mem_fifo0_err_cnt(const struct cntr_entry *entry,
3088 void *context, int vl, int mode,
3089 u64 data)
3090{
3091 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3092
3093 return dd->send_pio_err_status_cnt[3];
3094}
3095
3096static u64 access_pio_csr_parity_err_cnt(const struct cntr_entry *entry,
3097 void *context, int vl, int mode,
3098 u64 data)
3099{
3100 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3101
3102 return dd->send_pio_err_status_cnt[2];
3103}
3104
3105static u64 access_pio_write_addr_parity_err_cnt(const struct cntr_entry *entry,
3106 void *context, int vl,
3107 int mode, u64 data)
3108{
3109 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3110
3111 return dd->send_pio_err_status_cnt[1];
3112}
3113
3114static u64 access_pio_write_bad_ctxt_err_cnt(const struct cntr_entry *entry,
3115 void *context, int vl, int mode,
3116 u64 data)
3117{
3118 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3119
3120 return dd->send_pio_err_status_cnt[0];
3121}
3122
3123/*
3124 * Software counters corresponding to each of the
3125 * error status bits within SendDmaErrStatus
3126 */
3127static u64 access_sdma_pcie_req_tracking_cor_err_cnt(
3128 const struct cntr_entry *entry,
3129 void *context, int vl, int mode, u64 data)
3130{
3131 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3132
3133 return dd->send_dma_err_status_cnt[3];
3134}
3135
3136static u64 access_sdma_pcie_req_tracking_unc_err_cnt(
3137 const struct cntr_entry *entry,
3138 void *context, int vl, int mode, u64 data)
3139{
3140 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3141
3142 return dd->send_dma_err_status_cnt[2];
3143}
3144
3145static u64 access_sdma_csr_parity_err_cnt(const struct cntr_entry *entry,
3146 void *context, int vl, int mode,
3147 u64 data)
3148{
3149 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3150
3151 return dd->send_dma_err_status_cnt[1];
3152}
3153
3154static u64 access_sdma_rpy_tag_err_cnt(const struct cntr_entry *entry,
3155 void *context, int vl, int mode,
3156 u64 data)
3157{
3158 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3159
3160 return dd->send_dma_err_status_cnt[0];
3161}
3162
3163/*
3164 * Software counters corresponding to each of the
3165 * error status bits within SendEgressErrStatus
3166 */
3167static u64 access_tx_read_pio_memory_csr_unc_err_cnt(
3168 const struct cntr_entry *entry,
3169 void *context, int vl, int mode, u64 data)
3170{
3171 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3172
3173 return dd->send_egress_err_status_cnt[63];
3174}
3175
3176static u64 access_tx_read_sdma_memory_csr_err_cnt(
3177 const struct cntr_entry *entry,
3178 void *context, int vl, int mode, u64 data)
3179{
3180 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3181
3182 return dd->send_egress_err_status_cnt[62];
3183}
3184
3185static u64 access_tx_egress_fifo_cor_err_cnt(const struct cntr_entry *entry,
3186 void *context, int vl, int mode,
3187 u64 data)
3188{
3189 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3190
3191 return dd->send_egress_err_status_cnt[61];
3192}
3193
3194static u64 access_tx_read_pio_memory_cor_err_cnt(const struct cntr_entry *entry,
3195 void *context, int vl,
3196 int mode, u64 data)
3197{
3198 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3199
3200 return dd->send_egress_err_status_cnt[60];
3201}
3202
3203static u64 access_tx_read_sdma_memory_cor_err_cnt(
3204 const struct cntr_entry *entry,
3205 void *context, int vl, int mode, u64 data)
3206{
3207 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3208
3209 return dd->send_egress_err_status_cnt[59];
3210}
3211
3212static u64 access_tx_sb_hdr_cor_err_cnt(const struct cntr_entry *entry,
3213 void *context, int vl, int mode,
3214 u64 data)
3215{
3216 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3217
3218 return dd->send_egress_err_status_cnt[58];
3219}
3220
3221static u64 access_tx_credit_overrun_err_cnt(const struct cntr_entry *entry,
3222 void *context, int vl, int mode,
3223 u64 data)
3224{
3225 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3226
3227 return dd->send_egress_err_status_cnt[57];
3228}
3229
3230static u64 access_tx_launch_fifo8_cor_err_cnt(const struct cntr_entry *entry,
3231 void *context, int vl, int mode,
3232 u64 data)
3233{
3234 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3235
3236 return dd->send_egress_err_status_cnt[56];
3237}
3238
3239static u64 access_tx_launch_fifo7_cor_err_cnt(const struct cntr_entry *entry,
3240 void *context, int vl, int mode,
3241 u64 data)
3242{
3243 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3244
3245 return dd->send_egress_err_status_cnt[55];
3246}
3247
3248static u64 access_tx_launch_fifo6_cor_err_cnt(const struct cntr_entry *entry,
3249 void *context, int vl, int mode,
3250 u64 data)
3251{
3252 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3253
3254 return dd->send_egress_err_status_cnt[54];
3255}
3256
3257static u64 access_tx_launch_fifo5_cor_err_cnt(const struct cntr_entry *entry,
3258 void *context, int vl, int mode,
3259 u64 data)
3260{
3261 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3262
3263 return dd->send_egress_err_status_cnt[53];
3264}
3265
3266static u64 access_tx_launch_fifo4_cor_err_cnt(const struct cntr_entry *entry,
3267 void *context, int vl, int mode,
3268 u64 data)
3269{
3270 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3271
3272 return dd->send_egress_err_status_cnt[52];
3273}
3274
3275static u64 access_tx_launch_fifo3_cor_err_cnt(const struct cntr_entry *entry,
3276 void *context, int vl, int mode,
3277 u64 data)
3278{
3279 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3280
3281 return dd->send_egress_err_status_cnt[51];
3282}
3283
3284static u64 access_tx_launch_fifo2_cor_err_cnt(const struct cntr_entry *entry,
3285 void *context, int vl, int mode,
3286 u64 data)
3287{
3288 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3289
3290 return dd->send_egress_err_status_cnt[50];
3291}
3292
3293static u64 access_tx_launch_fifo1_cor_err_cnt(const struct cntr_entry *entry,
3294 void *context, int vl, int mode,
3295 u64 data)
3296{
3297 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3298
3299 return dd->send_egress_err_status_cnt[49];
3300}
3301
3302static u64 access_tx_launch_fifo0_cor_err_cnt(const struct cntr_entry *entry,
3303 void *context, int vl, int mode,
3304 u64 data)
3305{
3306 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3307
3308 return dd->send_egress_err_status_cnt[48];
3309}
3310
3311static u64 access_tx_credit_return_vl_err_cnt(const struct cntr_entry *entry,
3312 void *context, int vl, int mode,
3313 u64 data)
3314{
3315 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3316
3317 return dd->send_egress_err_status_cnt[47];
3318}
3319
3320static u64 access_tx_hcrc_insertion_err_cnt(const struct cntr_entry *entry,
3321 void *context, int vl, int mode,
3322 u64 data)
3323{
3324 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3325
3326 return dd->send_egress_err_status_cnt[46];
3327}
3328
3329static u64 access_tx_egress_fifo_unc_err_cnt(const struct cntr_entry *entry,
3330 void *context, int vl, int mode,
3331 u64 data)
3332{
3333 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3334
3335 return dd->send_egress_err_status_cnt[45];
3336}
3337
3338static u64 access_tx_read_pio_memory_unc_err_cnt(const struct cntr_entry *entry,
3339 void *context, int vl,
3340 int mode, u64 data)
3341{
3342 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3343
3344 return dd->send_egress_err_status_cnt[44];
3345}
3346
3347static u64 access_tx_read_sdma_memory_unc_err_cnt(
3348 const struct cntr_entry *entry,
3349 void *context, int vl, int mode, u64 data)
3350{
3351 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3352
3353 return dd->send_egress_err_status_cnt[43];
3354}
3355
3356static u64 access_tx_sb_hdr_unc_err_cnt(const struct cntr_entry *entry,
3357 void *context, int vl, int mode,
3358 u64 data)
3359{
3360 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3361
3362 return dd->send_egress_err_status_cnt[42];
3363}
3364
3365static u64 access_tx_credit_return_partiy_err_cnt(
3366 const struct cntr_entry *entry,
3367 void *context, int vl, int mode, u64 data)
3368{
3369 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3370
3371 return dd->send_egress_err_status_cnt[41];
3372}
3373
3374static u64 access_tx_launch_fifo8_unc_or_parity_err_cnt(
3375 const struct cntr_entry *entry,
3376 void *context, int vl, int mode, u64 data)
3377{
3378 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3379
3380 return dd->send_egress_err_status_cnt[40];
3381}
3382
3383static u64 access_tx_launch_fifo7_unc_or_parity_err_cnt(
3384 const struct cntr_entry *entry,
3385 void *context, int vl, int mode, u64 data)
3386{
3387 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3388
3389 return dd->send_egress_err_status_cnt[39];
3390}
3391
3392static u64 access_tx_launch_fifo6_unc_or_parity_err_cnt(
3393 const struct cntr_entry *entry,
3394 void *context, int vl, int mode, u64 data)
3395{
3396 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3397
3398 return dd->send_egress_err_status_cnt[38];
3399}
3400
3401static u64 access_tx_launch_fifo5_unc_or_parity_err_cnt(
3402 const struct cntr_entry *entry,
3403 void *context, int vl, int mode, u64 data)
3404{
3405 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3406
3407 return dd->send_egress_err_status_cnt[37];
3408}
3409
3410static u64 access_tx_launch_fifo4_unc_or_parity_err_cnt(
3411 const struct cntr_entry *entry,
3412 void *context, int vl, int mode, u64 data)
3413{
3414 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3415
3416 return dd->send_egress_err_status_cnt[36];
3417}
3418
3419static u64 access_tx_launch_fifo3_unc_or_parity_err_cnt(
3420 const struct cntr_entry *entry,
3421 void *context, int vl, int mode, u64 data)
3422{
3423 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3424
3425 return dd->send_egress_err_status_cnt[35];
3426}
3427
3428static u64 access_tx_launch_fifo2_unc_or_parity_err_cnt(
3429 const struct cntr_entry *entry,
3430 void *context, int vl, int mode, u64 data)
3431{
3432 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3433
3434 return dd->send_egress_err_status_cnt[34];
3435}
3436
3437static u64 access_tx_launch_fifo1_unc_or_parity_err_cnt(
3438 const struct cntr_entry *entry,
3439 void *context, int vl, int mode, u64 data)
3440{
3441 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3442
3443 return dd->send_egress_err_status_cnt[33];
3444}
3445
3446static u64 access_tx_launch_fifo0_unc_or_parity_err_cnt(
3447 const struct cntr_entry *entry,
3448 void *context, int vl, int mode, u64 data)
3449{
3450 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3451
3452 return dd->send_egress_err_status_cnt[32];
3453}
3454
3455static u64 access_tx_sdma15_disallowed_packet_err_cnt(
3456 const struct cntr_entry *entry,
3457 void *context, int vl, int mode, u64 data)
3458{
3459 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3460
3461 return dd->send_egress_err_status_cnt[31];
3462}
3463
3464static u64 access_tx_sdma14_disallowed_packet_err_cnt(
3465 const struct cntr_entry *entry,
3466 void *context, int vl, int mode, u64 data)
3467{
3468 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3469
3470 return dd->send_egress_err_status_cnt[30];
3471}
3472
3473static u64 access_tx_sdma13_disallowed_packet_err_cnt(
3474 const struct cntr_entry *entry,
3475 void *context, int vl, int mode, u64 data)
3476{
3477 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3478
3479 return dd->send_egress_err_status_cnt[29];
3480}
3481
3482static u64 access_tx_sdma12_disallowed_packet_err_cnt(
3483 const struct cntr_entry *entry,
3484 void *context, int vl, int mode, u64 data)
3485{
3486 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3487
3488 return dd->send_egress_err_status_cnt[28];
3489}
3490
3491static u64 access_tx_sdma11_disallowed_packet_err_cnt(
3492 const struct cntr_entry *entry,
3493 void *context, int vl, int mode, u64 data)
3494{
3495 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3496
3497 return dd->send_egress_err_status_cnt[27];
3498}
3499
3500static u64 access_tx_sdma10_disallowed_packet_err_cnt(
3501 const struct cntr_entry *entry,
3502 void *context, int vl, int mode, u64 data)
3503{
3504 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3505
3506 return dd->send_egress_err_status_cnt[26];
3507}
3508
3509static u64 access_tx_sdma9_disallowed_packet_err_cnt(
3510 const struct cntr_entry *entry,
3511 void *context, int vl, int mode, u64 data)
3512{
3513 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3514
3515 return dd->send_egress_err_status_cnt[25];
3516}
3517
3518static u64 access_tx_sdma8_disallowed_packet_err_cnt(
3519 const struct cntr_entry *entry,
3520 void *context, int vl, int mode, u64 data)
3521{
3522 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3523
3524 return dd->send_egress_err_status_cnt[24];
3525}
3526
3527static u64 access_tx_sdma7_disallowed_packet_err_cnt(
3528 const struct cntr_entry *entry,
3529 void *context, int vl, int mode, u64 data)
3530{
3531 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3532
3533 return dd->send_egress_err_status_cnt[23];
3534}
3535
3536static u64 access_tx_sdma6_disallowed_packet_err_cnt(
3537 const struct cntr_entry *entry,
3538 void *context, int vl, int mode, u64 data)
3539{
3540 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3541
3542 return dd->send_egress_err_status_cnt[22];
3543}
3544
3545static u64 access_tx_sdma5_disallowed_packet_err_cnt(
3546 const struct cntr_entry *entry,
3547 void *context, int vl, int mode, u64 data)
3548{
3549 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3550
3551 return dd->send_egress_err_status_cnt[21];
3552}
3553
3554static u64 access_tx_sdma4_disallowed_packet_err_cnt(
3555 const struct cntr_entry *entry,
3556 void *context, int vl, int mode, u64 data)
3557{
3558 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3559
3560 return dd->send_egress_err_status_cnt[20];
3561}
3562
3563static u64 access_tx_sdma3_disallowed_packet_err_cnt(
3564 const struct cntr_entry *entry,
3565 void *context, int vl, int mode, u64 data)
3566{
3567 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3568
3569 return dd->send_egress_err_status_cnt[19];
3570}
3571
3572static u64 access_tx_sdma2_disallowed_packet_err_cnt(
3573 const struct cntr_entry *entry,
3574 void *context, int vl, int mode, u64 data)
3575{
3576 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3577
3578 return dd->send_egress_err_status_cnt[18];
3579}
3580
3581static u64 access_tx_sdma1_disallowed_packet_err_cnt(
3582 const struct cntr_entry *entry,
3583 void *context, int vl, int mode, u64 data)
3584{
3585 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3586
3587 return dd->send_egress_err_status_cnt[17];
3588}
3589
3590static u64 access_tx_sdma0_disallowed_packet_err_cnt(
3591 const struct cntr_entry *entry,
3592 void *context, int vl, int mode, u64 data)
3593{
3594 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3595
3596 return dd->send_egress_err_status_cnt[16];
3597}
3598
3599static u64 access_tx_config_parity_err_cnt(const struct cntr_entry *entry,
3600 void *context, int vl, int mode,
3601 u64 data)
3602{
3603 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3604
3605 return dd->send_egress_err_status_cnt[15];
3606}
3607
3608static u64 access_tx_sbrd_ctl_csr_parity_err_cnt(const struct cntr_entry *entry,
3609 void *context, int vl,
3610 int mode, u64 data)
3611{
3612 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3613
3614 return dd->send_egress_err_status_cnt[14];
3615}
3616
3617static u64 access_tx_launch_csr_parity_err_cnt(const struct cntr_entry *entry,
3618 void *context, int vl, int mode,
3619 u64 data)
3620{
3621 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3622
3623 return dd->send_egress_err_status_cnt[13];
3624}
3625
3626static u64 access_tx_illegal_vl_err_cnt(const struct cntr_entry *entry,
3627 void *context, int vl, int mode,
3628 u64 data)
3629{
3630 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3631
3632 return dd->send_egress_err_status_cnt[12];
3633}
3634
3635static u64 access_tx_sbrd_ctl_state_machine_parity_err_cnt(
3636 const struct cntr_entry *entry,
3637 void *context, int vl, int mode, u64 data)
3638{
3639 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3640
3641 return dd->send_egress_err_status_cnt[11];
3642}
3643
3644static u64 access_egress_reserved_10_err_cnt(const struct cntr_entry *entry,
3645 void *context, int vl, int mode,
3646 u64 data)
3647{
3648 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3649
3650 return dd->send_egress_err_status_cnt[10];
3651}
3652
3653static u64 access_egress_reserved_9_err_cnt(const struct cntr_entry *entry,
3654 void *context, int vl, int mode,
3655 u64 data)
3656{
3657 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3658
3659 return dd->send_egress_err_status_cnt[9];
3660}
3661
3662static u64 access_tx_sdma_launch_intf_parity_err_cnt(
3663 const struct cntr_entry *entry,
3664 void *context, int vl, int mode, u64 data)
3665{
3666 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3667
3668 return dd->send_egress_err_status_cnt[8];
3669}
3670
3671static u64 access_tx_pio_launch_intf_parity_err_cnt(
3672 const struct cntr_entry *entry,
3673 void *context, int vl, int mode, u64 data)
3674{
3675 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3676
3677 return dd->send_egress_err_status_cnt[7];
3678}
3679
3680static u64 access_egress_reserved_6_err_cnt(const struct cntr_entry *entry,
3681 void *context, int vl, int mode,
3682 u64 data)
3683{
3684 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3685
3686 return dd->send_egress_err_status_cnt[6];
3687}
3688
3689static u64 access_tx_incorrect_link_state_err_cnt(
3690 const struct cntr_entry *entry,
3691 void *context, int vl, int mode, u64 data)
3692{
3693 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3694
3695 return dd->send_egress_err_status_cnt[5];
3696}
3697
3698static u64 access_tx_linkdown_err_cnt(const struct cntr_entry *entry,
3699 void *context, int vl, int mode,
3700 u64 data)
3701{
3702 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3703
3704 return dd->send_egress_err_status_cnt[4];
3705}
3706
3707static u64 access_tx_egress_fifi_underrun_or_parity_err_cnt(
3708 const struct cntr_entry *entry,
3709 void *context, int vl, int mode, u64 data)
3710{
3711 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3712
3713 return dd->send_egress_err_status_cnt[3];
3714}
3715
3716static u64 access_egress_reserved_2_err_cnt(const struct cntr_entry *entry,
3717 void *context, int vl, int mode,
3718 u64 data)
3719{
3720 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3721
3722 return dd->send_egress_err_status_cnt[2];
3723}
3724
3725static u64 access_tx_pkt_integrity_mem_unc_err_cnt(
3726 const struct cntr_entry *entry,
3727 void *context, int vl, int mode, u64 data)
3728{
3729 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3730
3731 return dd->send_egress_err_status_cnt[1];
3732}
3733
3734static u64 access_tx_pkt_integrity_mem_cor_err_cnt(
3735 const struct cntr_entry *entry,
3736 void *context, int vl, int mode, u64 data)
3737{
3738 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3739
3740 return dd->send_egress_err_status_cnt[0];
3741}
3742
3743/*
3744 * Software counters corresponding to each of the
3745 * error status bits within SendErrStatus
3746 */
3747static u64 access_send_csr_write_bad_addr_err_cnt(
3748 const struct cntr_entry *entry,
3749 void *context, int vl, int mode, u64 data)
3750{
3751 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3752
3753 return dd->send_err_status_cnt[2];
3754}
3755
3756static u64 access_send_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
3757 void *context, int vl,
3758 int mode, u64 data)
3759{
3760 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3761
3762 return dd->send_err_status_cnt[1];
3763}
3764
3765static u64 access_send_csr_parity_cnt(const struct cntr_entry *entry,
3766 void *context, int vl, int mode,
3767 u64 data)
3768{
3769 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3770
3771 return dd->send_err_status_cnt[0];
3772}
3773
3774/*
3775 * Software counters corresponding to each of the
3776 * error status bits within SendCtxtErrStatus
3777 */
3778static u64 access_pio_write_out_of_bounds_err_cnt(
3779 const struct cntr_entry *entry,
3780 void *context, int vl, int mode, u64 data)
3781{
3782 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3783
3784 return dd->sw_ctxt_err_status_cnt[4];
3785}
3786
3787static u64 access_pio_write_overflow_err_cnt(const struct cntr_entry *entry,
3788 void *context, int vl, int mode,
3789 u64 data)
3790{
3791 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3792
3793 return dd->sw_ctxt_err_status_cnt[3];
3794}
3795
3796static u64 access_pio_write_crosses_boundary_err_cnt(
3797 const struct cntr_entry *entry,
3798 void *context, int vl, int mode, u64 data)
3799{
3800 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3801
3802 return dd->sw_ctxt_err_status_cnt[2];
3803}
3804
3805static u64 access_pio_disallowed_packet_err_cnt(const struct cntr_entry *entry,
3806 void *context, int vl,
3807 int mode, u64 data)
3808{
3809 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3810
3811 return dd->sw_ctxt_err_status_cnt[1];
3812}
3813
3814static u64 access_pio_inconsistent_sop_err_cnt(const struct cntr_entry *entry,
3815 void *context, int vl, int mode,
3816 u64 data)
3817{
3818 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3819
3820 return dd->sw_ctxt_err_status_cnt[0];
3821}
3822
3823/*
3824 * Software counters corresponding to each of the
3825 * error status bits within SendDmaEngErrStatus
3826 */
3827static u64 access_sdma_header_request_fifo_cor_err_cnt(
3828 const struct cntr_entry *entry,
3829 void *context, int vl, int mode, u64 data)
3830{
3831 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3832
3833 return dd->sw_send_dma_eng_err_status_cnt[23];
3834}
3835
3836static u64 access_sdma_header_storage_cor_err_cnt(
3837 const struct cntr_entry *entry,
3838 void *context, int vl, int mode, u64 data)
3839{
3840 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3841
3842 return dd->sw_send_dma_eng_err_status_cnt[22];
3843}
3844
3845static u64 access_sdma_packet_tracking_cor_err_cnt(
3846 const struct cntr_entry *entry,
3847 void *context, int vl, int mode, u64 data)
3848{
3849 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3850
3851 return dd->sw_send_dma_eng_err_status_cnt[21];
3852}
3853
3854static u64 access_sdma_assembly_cor_err_cnt(const struct cntr_entry *entry,
3855 void *context, int vl, int mode,
3856 u64 data)
3857{
3858 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3859
3860 return dd->sw_send_dma_eng_err_status_cnt[20];
3861}
3862
3863static u64 access_sdma_desc_table_cor_err_cnt(const struct cntr_entry *entry,
3864 void *context, int vl, int mode,
3865 u64 data)
3866{
3867 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3868
3869 return dd->sw_send_dma_eng_err_status_cnt[19];
3870}
3871
3872static u64 access_sdma_header_request_fifo_unc_err_cnt(
3873 const struct cntr_entry *entry,
3874 void *context, int vl, int mode, u64 data)
3875{
3876 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3877
3878 return dd->sw_send_dma_eng_err_status_cnt[18];
3879}
3880
3881static u64 access_sdma_header_storage_unc_err_cnt(
3882 const struct cntr_entry *entry,
3883 void *context, int vl, int mode, u64 data)
3884{
3885 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3886
3887 return dd->sw_send_dma_eng_err_status_cnt[17];
3888}
3889
3890static u64 access_sdma_packet_tracking_unc_err_cnt(
3891 const struct cntr_entry *entry,
3892 void *context, int vl, int mode, u64 data)
3893{
3894 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3895
3896 return dd->sw_send_dma_eng_err_status_cnt[16];
3897}
3898
3899static u64 access_sdma_assembly_unc_err_cnt(const struct cntr_entry *entry,
3900 void *context, int vl, int mode,
3901 u64 data)
3902{
3903 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3904
3905 return dd->sw_send_dma_eng_err_status_cnt[15];
3906}
3907
3908static u64 access_sdma_desc_table_unc_err_cnt(const struct cntr_entry *entry,
3909 void *context, int vl, int mode,
3910 u64 data)
3911{
3912 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3913
3914 return dd->sw_send_dma_eng_err_status_cnt[14];
3915}
3916
3917static u64 access_sdma_timeout_err_cnt(const struct cntr_entry *entry,
3918 void *context, int vl, int mode,
3919 u64 data)
3920{
3921 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3922
3923 return dd->sw_send_dma_eng_err_status_cnt[13];
3924}
3925
3926static u64 access_sdma_header_length_err_cnt(const struct cntr_entry *entry,
3927 void *context, int vl, int mode,
3928 u64 data)
3929{
3930 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3931
3932 return dd->sw_send_dma_eng_err_status_cnt[12];
3933}
3934
3935static u64 access_sdma_header_address_err_cnt(const struct cntr_entry *entry,
3936 void *context, int vl, int mode,
3937 u64 data)
3938{
3939 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3940
3941 return dd->sw_send_dma_eng_err_status_cnt[11];
3942}
3943
3944static u64 access_sdma_header_select_err_cnt(const struct cntr_entry *entry,
3945 void *context, int vl, int mode,
3946 u64 data)
3947{
3948 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3949
3950 return dd->sw_send_dma_eng_err_status_cnt[10];
3951}
3952
3953static u64 access_sdma_reserved_9_err_cnt(const struct cntr_entry *entry,
3954 void *context, int vl, int mode,
3955 u64 data)
3956{
3957 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3958
3959 return dd->sw_send_dma_eng_err_status_cnt[9];
3960}
3961
3962static u64 access_sdma_packet_desc_overflow_err_cnt(
3963 const struct cntr_entry *entry,
3964 void *context, int vl, int mode, u64 data)
3965{
3966 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3967
3968 return dd->sw_send_dma_eng_err_status_cnt[8];
3969}
3970
3971static u64 access_sdma_length_mismatch_err_cnt(const struct cntr_entry *entry,
3972 void *context, int vl,
3973 int mode, u64 data)
3974{
3975 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3976
3977 return dd->sw_send_dma_eng_err_status_cnt[7];
3978}
3979
3980static u64 access_sdma_halt_err_cnt(const struct cntr_entry *entry,
3981 void *context, int vl, int mode, u64 data)
3982{
3983 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3984
3985 return dd->sw_send_dma_eng_err_status_cnt[6];
3986}
3987
3988static u64 access_sdma_mem_read_err_cnt(const struct cntr_entry *entry,
3989 void *context, int vl, int mode,
3990 u64 data)
3991{
3992 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3993
3994 return dd->sw_send_dma_eng_err_status_cnt[5];
3995}
3996
3997static u64 access_sdma_first_desc_err_cnt(const struct cntr_entry *entry,
3998 void *context, int vl, int mode,
3999 u64 data)
4000{
4001 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
4002
4003 return dd->sw_send_dma_eng_err_status_cnt[4];
4004}
4005
4006static u64 access_sdma_tail_out_of_bounds_err_cnt(
4007 const struct cntr_entry *entry,
4008 void *context, int vl, int mode, u64 data)
4009{
4010 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
4011
4012 return dd->sw_send_dma_eng_err_status_cnt[3];
4013}
4014
4015static u64 access_sdma_too_long_err_cnt(const struct cntr_entry *entry,
4016 void *context, int vl, int mode,
4017 u64 data)
4018{
4019 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
4020
4021 return dd->sw_send_dma_eng_err_status_cnt[2];
4022}
4023
4024static u64 access_sdma_gen_mismatch_err_cnt(const struct cntr_entry *entry,
4025 void *context, int vl, int mode,
4026 u64 data)
4027{
4028 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
4029
4030 return dd->sw_send_dma_eng_err_status_cnt[1];
4031}
4032
4033static u64 access_sdma_wrong_dw_err_cnt(const struct cntr_entry *entry,
4034 void *context, int vl, int mode,
4035 u64 data)
4036{
4037 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
4038
4039 return dd->sw_send_dma_eng_err_status_cnt[0];
4040}
4041
Jakub Pawlak2b719042016-07-01 16:01:22 -07004042static u64 access_dc_rcv_err_cnt(const struct cntr_entry *entry,
4043 void *context, int vl, int mode,
4044 u64 data)
4045{
4046 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
4047
4048 u64 val = 0;
4049 u64 csr = entry->csr;
4050
4051 val = read_write_csr(dd, csr, mode, data);
4052 if (mode == CNTR_MODE_R) {
4053 val = val > CNTR_MAX - dd->sw_rcv_bypass_packet_errors ?
4054 CNTR_MAX : val + dd->sw_rcv_bypass_packet_errors;
4055 } else if (mode == CNTR_MODE_W) {
4056 dd->sw_rcv_bypass_packet_errors = 0;
4057 } else {
4058 dd_dev_err(dd, "Invalid cntr register access mode");
4059 return 0;
4060 }
4061 return val;
4062}
4063
Mike Marciniszyn77241052015-07-30 15:17:43 -04004064#define def_access_sw_cpu(cntr) \
4065static u64 access_sw_cpu_##cntr(const struct cntr_entry *entry, \
4066 void *context, int vl, int mode, u64 data) \
4067{ \
4068 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context; \
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08004069 return read_write_cpu(ppd->dd, &ppd->ibport_data.rvp.z_ ##cntr, \
4070 ppd->ibport_data.rvp.cntr, vl, \
Mike Marciniszyn77241052015-07-30 15:17:43 -04004071 mode, data); \
4072}
4073
4074def_access_sw_cpu(rc_acks);
4075def_access_sw_cpu(rc_qacks);
4076def_access_sw_cpu(rc_delayed_comp);
4077
4078#define def_access_ibp_counter(cntr) \
4079static u64 access_ibp_##cntr(const struct cntr_entry *entry, \
4080 void *context, int vl, int mode, u64 data) \
4081{ \
4082 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context; \
4083 \
4084 if (vl != CNTR_INVALID_VL) \
4085 return 0; \
4086 \
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08004087 return read_write_sw(ppd->dd, &ppd->ibport_data.rvp.n_ ##cntr, \
Mike Marciniszyn77241052015-07-30 15:17:43 -04004088 mode, data); \
4089}
4090
4091def_access_ibp_counter(loop_pkts);
4092def_access_ibp_counter(rc_resends);
4093def_access_ibp_counter(rnr_naks);
4094def_access_ibp_counter(other_naks);
4095def_access_ibp_counter(rc_timeouts);
4096def_access_ibp_counter(pkt_drops);
4097def_access_ibp_counter(dmawait);
4098def_access_ibp_counter(rc_seqnak);
4099def_access_ibp_counter(rc_dupreq);
4100def_access_ibp_counter(rdma_seq);
4101def_access_ibp_counter(unaligned);
4102def_access_ibp_counter(seq_naks);
4103
4104static struct cntr_entry dev_cntrs[DEV_CNTR_LAST] = {
4105[C_RCV_OVF] = RXE32_DEV_CNTR_ELEM(RcvOverflow, RCV_BUF_OVFL_CNT, CNTR_SYNTH),
4106[C_RX_TID_FULL] = RXE32_DEV_CNTR_ELEM(RxTIDFullEr, RCV_TID_FULL_ERR_CNT,
4107 CNTR_NORMAL),
4108[C_RX_TID_INVALID] = RXE32_DEV_CNTR_ELEM(RxTIDInvalid, RCV_TID_VALID_ERR_CNT,
4109 CNTR_NORMAL),
4110[C_RX_TID_FLGMS] = RXE32_DEV_CNTR_ELEM(RxTidFLGMs,
4111 RCV_TID_FLOW_GEN_MISMATCH_CNT,
4112 CNTR_NORMAL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004113[C_RX_CTX_EGRS] = RXE32_DEV_CNTR_ELEM(RxCtxEgrS, RCV_CONTEXT_EGR_STALL,
4114 CNTR_NORMAL),
4115[C_RCV_TID_FLSMS] = RXE32_DEV_CNTR_ELEM(RxTidFLSMs,
4116 RCV_TID_FLOW_SEQ_MISMATCH_CNT, CNTR_NORMAL),
4117[C_CCE_PCI_CR_ST] = CCE_PERF_DEV_CNTR_ELEM(CcePciCrSt,
4118 CCE_PCIE_POSTED_CRDT_STALL_CNT, CNTR_NORMAL),
4119[C_CCE_PCI_TR_ST] = CCE_PERF_DEV_CNTR_ELEM(CcePciTrSt, CCE_PCIE_TRGT_STALL_CNT,
4120 CNTR_NORMAL),
4121[C_CCE_PIO_WR_ST] = CCE_PERF_DEV_CNTR_ELEM(CcePioWrSt, CCE_PIO_WR_STALL_CNT,
4122 CNTR_NORMAL),
4123[C_CCE_ERR_INT] = CCE_INT_DEV_CNTR_ELEM(CceErrInt, CCE_ERR_INT_CNT,
4124 CNTR_NORMAL),
4125[C_CCE_SDMA_INT] = CCE_INT_DEV_CNTR_ELEM(CceSdmaInt, CCE_SDMA_INT_CNT,
4126 CNTR_NORMAL),
4127[C_CCE_MISC_INT] = CCE_INT_DEV_CNTR_ELEM(CceMiscInt, CCE_MISC_INT_CNT,
4128 CNTR_NORMAL),
4129[C_CCE_RCV_AV_INT] = CCE_INT_DEV_CNTR_ELEM(CceRcvAvInt, CCE_RCV_AVAIL_INT_CNT,
4130 CNTR_NORMAL),
4131[C_CCE_RCV_URG_INT] = CCE_INT_DEV_CNTR_ELEM(CceRcvUrgInt,
4132 CCE_RCV_URGENT_INT_CNT, CNTR_NORMAL),
4133[C_CCE_SEND_CR_INT] = CCE_INT_DEV_CNTR_ELEM(CceSndCrInt,
4134 CCE_SEND_CREDIT_INT_CNT, CNTR_NORMAL),
4135[C_DC_UNC_ERR] = DC_PERF_CNTR(DcUnctblErr, DCC_ERR_UNCORRECTABLE_CNT,
4136 CNTR_SYNTH),
Jakub Pawlak2b719042016-07-01 16:01:22 -07004137[C_DC_RCV_ERR] = CNTR_ELEM("DcRecvErr", DCC_ERR_PORTRCV_ERR_CNT, 0, CNTR_SYNTH,
4138 access_dc_rcv_err_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004139[C_DC_FM_CFG_ERR] = DC_PERF_CNTR(DcFmCfgErr, DCC_ERR_FMCONFIG_ERR_CNT,
4140 CNTR_SYNTH),
4141[C_DC_RMT_PHY_ERR] = DC_PERF_CNTR(DcRmtPhyErr, DCC_ERR_RCVREMOTE_PHY_ERR_CNT,
4142 CNTR_SYNTH),
4143[C_DC_DROPPED_PKT] = DC_PERF_CNTR(DcDroppedPkt, DCC_ERR_DROPPED_PKT_CNT,
4144 CNTR_SYNTH),
4145[C_DC_MC_XMIT_PKTS] = DC_PERF_CNTR(DcMcXmitPkts,
4146 DCC_PRF_PORT_XMIT_MULTICAST_CNT, CNTR_SYNTH),
4147[C_DC_MC_RCV_PKTS] = DC_PERF_CNTR(DcMcRcvPkts,
4148 DCC_PRF_PORT_RCV_MULTICAST_PKT_CNT,
4149 CNTR_SYNTH),
4150[C_DC_XMIT_CERR] = DC_PERF_CNTR(DcXmitCorr,
4151 DCC_PRF_PORT_XMIT_CORRECTABLE_CNT, CNTR_SYNTH),
4152[C_DC_RCV_CERR] = DC_PERF_CNTR(DcRcvCorrCnt, DCC_PRF_PORT_RCV_CORRECTABLE_CNT,
4153 CNTR_SYNTH),
4154[C_DC_RCV_FCC] = DC_PERF_CNTR(DcRxFCntl, DCC_PRF_RX_FLOW_CRTL_CNT,
4155 CNTR_SYNTH),
4156[C_DC_XMIT_FCC] = DC_PERF_CNTR(DcXmitFCntl, DCC_PRF_TX_FLOW_CRTL_CNT,
4157 CNTR_SYNTH),
4158[C_DC_XMIT_FLITS] = DC_PERF_CNTR(DcXmitFlits, DCC_PRF_PORT_XMIT_DATA_CNT,
4159 CNTR_SYNTH),
4160[C_DC_RCV_FLITS] = DC_PERF_CNTR(DcRcvFlits, DCC_PRF_PORT_RCV_DATA_CNT,
4161 CNTR_SYNTH),
4162[C_DC_XMIT_PKTS] = DC_PERF_CNTR(DcXmitPkts, DCC_PRF_PORT_XMIT_PKTS_CNT,
4163 CNTR_SYNTH),
4164[C_DC_RCV_PKTS] = DC_PERF_CNTR(DcRcvPkts, DCC_PRF_PORT_RCV_PKTS_CNT,
4165 CNTR_SYNTH),
4166[C_DC_RX_FLIT_VL] = DC_PERF_CNTR(DcRxFlitVl, DCC_PRF_PORT_VL_RCV_DATA_CNT,
4167 CNTR_SYNTH | CNTR_VL),
4168[C_DC_RX_PKT_VL] = DC_PERF_CNTR(DcRxPktVl, DCC_PRF_PORT_VL_RCV_PKTS_CNT,
4169 CNTR_SYNTH | CNTR_VL),
4170[C_DC_RCV_FCN] = DC_PERF_CNTR(DcRcvFcn, DCC_PRF_PORT_RCV_FECN_CNT, CNTR_SYNTH),
4171[C_DC_RCV_FCN_VL] = DC_PERF_CNTR(DcRcvFcnVl, DCC_PRF_PORT_VL_RCV_FECN_CNT,
4172 CNTR_SYNTH | CNTR_VL),
4173[C_DC_RCV_BCN] = DC_PERF_CNTR(DcRcvBcn, DCC_PRF_PORT_RCV_BECN_CNT, CNTR_SYNTH),
4174[C_DC_RCV_BCN_VL] = DC_PERF_CNTR(DcRcvBcnVl, DCC_PRF_PORT_VL_RCV_BECN_CNT,
4175 CNTR_SYNTH | CNTR_VL),
4176[C_DC_RCV_BBL] = DC_PERF_CNTR(DcRcvBbl, DCC_PRF_PORT_RCV_BUBBLE_CNT,
4177 CNTR_SYNTH),
4178[C_DC_RCV_BBL_VL] = DC_PERF_CNTR(DcRcvBblVl, DCC_PRF_PORT_VL_RCV_BUBBLE_CNT,
4179 CNTR_SYNTH | CNTR_VL),
4180[C_DC_MARK_FECN] = DC_PERF_CNTR(DcMarkFcn, DCC_PRF_PORT_MARK_FECN_CNT,
4181 CNTR_SYNTH),
4182[C_DC_MARK_FECN_VL] = DC_PERF_CNTR(DcMarkFcnVl, DCC_PRF_PORT_VL_MARK_FECN_CNT,
4183 CNTR_SYNTH | CNTR_VL),
4184[C_DC_TOTAL_CRC] =
4185 DC_PERF_CNTR_LCB(DcTotCrc, DC_LCB_ERR_INFO_TOTAL_CRC_ERR,
4186 CNTR_SYNTH),
4187[C_DC_CRC_LN0] = DC_PERF_CNTR_LCB(DcCrcLn0, DC_LCB_ERR_INFO_CRC_ERR_LN0,
4188 CNTR_SYNTH),
4189[C_DC_CRC_LN1] = DC_PERF_CNTR_LCB(DcCrcLn1, DC_LCB_ERR_INFO_CRC_ERR_LN1,
4190 CNTR_SYNTH),
4191[C_DC_CRC_LN2] = DC_PERF_CNTR_LCB(DcCrcLn2, DC_LCB_ERR_INFO_CRC_ERR_LN2,
4192 CNTR_SYNTH),
4193[C_DC_CRC_LN3] = DC_PERF_CNTR_LCB(DcCrcLn3, DC_LCB_ERR_INFO_CRC_ERR_LN3,
4194 CNTR_SYNTH),
4195[C_DC_CRC_MULT_LN] =
4196 DC_PERF_CNTR_LCB(DcMultLn, DC_LCB_ERR_INFO_CRC_ERR_MULTI_LN,
4197 CNTR_SYNTH),
4198[C_DC_TX_REPLAY] = DC_PERF_CNTR_LCB(DcTxReplay, DC_LCB_ERR_INFO_TX_REPLAY_CNT,
4199 CNTR_SYNTH),
4200[C_DC_RX_REPLAY] = DC_PERF_CNTR_LCB(DcRxReplay, DC_LCB_ERR_INFO_RX_REPLAY_CNT,
4201 CNTR_SYNTH),
4202[C_DC_SEQ_CRC_CNT] =
4203 DC_PERF_CNTR_LCB(DcLinkSeqCrc, DC_LCB_ERR_INFO_SEQ_CRC_CNT,
4204 CNTR_SYNTH),
4205[C_DC_ESC0_ONLY_CNT] =
4206 DC_PERF_CNTR_LCB(DcEsc0, DC_LCB_ERR_INFO_ESCAPE_0_ONLY_CNT,
4207 CNTR_SYNTH),
4208[C_DC_ESC0_PLUS1_CNT] =
4209 DC_PERF_CNTR_LCB(DcEsc1, DC_LCB_ERR_INFO_ESCAPE_0_PLUS1_CNT,
4210 CNTR_SYNTH),
4211[C_DC_ESC0_PLUS2_CNT] =
4212 DC_PERF_CNTR_LCB(DcEsc0Plus2, DC_LCB_ERR_INFO_ESCAPE_0_PLUS2_CNT,
4213 CNTR_SYNTH),
4214[C_DC_REINIT_FROM_PEER_CNT] =
4215 DC_PERF_CNTR_LCB(DcReinitPeer, DC_LCB_ERR_INFO_REINIT_FROM_PEER_CNT,
4216 CNTR_SYNTH),
4217[C_DC_SBE_CNT] = DC_PERF_CNTR_LCB(DcSbe, DC_LCB_ERR_INFO_SBE_CNT,
4218 CNTR_SYNTH),
4219[C_DC_MISC_FLG_CNT] =
4220 DC_PERF_CNTR_LCB(DcMiscFlg, DC_LCB_ERR_INFO_MISC_FLG_CNT,
4221 CNTR_SYNTH),
4222[C_DC_PRF_GOOD_LTP_CNT] =
4223 DC_PERF_CNTR_LCB(DcGoodLTP, DC_LCB_PRF_GOOD_LTP_CNT, CNTR_SYNTH),
4224[C_DC_PRF_ACCEPTED_LTP_CNT] =
4225 DC_PERF_CNTR_LCB(DcAccLTP, DC_LCB_PRF_ACCEPTED_LTP_CNT,
4226 CNTR_SYNTH),
4227[C_DC_PRF_RX_FLIT_CNT] =
4228 DC_PERF_CNTR_LCB(DcPrfRxFlit, DC_LCB_PRF_RX_FLIT_CNT, CNTR_SYNTH),
4229[C_DC_PRF_TX_FLIT_CNT] =
4230 DC_PERF_CNTR_LCB(DcPrfTxFlit, DC_LCB_PRF_TX_FLIT_CNT, CNTR_SYNTH),
4231[C_DC_PRF_CLK_CNTR] =
4232 DC_PERF_CNTR_LCB(DcPrfClk, DC_LCB_PRF_CLK_CNTR, CNTR_SYNTH),
4233[C_DC_PG_DBG_FLIT_CRDTS_CNT] =
4234 DC_PERF_CNTR_LCB(DcFltCrdts, DC_LCB_PG_DBG_FLIT_CRDTS_CNT, CNTR_SYNTH),
4235[C_DC_PG_STS_PAUSE_COMPLETE_CNT] =
4236 DC_PERF_CNTR_LCB(DcPauseComp, DC_LCB_PG_STS_PAUSE_COMPLETE_CNT,
4237 CNTR_SYNTH),
4238[C_DC_PG_STS_TX_SBE_CNT] =
4239 DC_PERF_CNTR_LCB(DcStsTxSbe, DC_LCB_PG_STS_TX_SBE_CNT, CNTR_SYNTH),
4240[C_DC_PG_STS_TX_MBE_CNT] =
4241 DC_PERF_CNTR_LCB(DcStsTxMbe, DC_LCB_PG_STS_TX_MBE_CNT,
4242 CNTR_SYNTH),
4243[C_SW_CPU_INTR] = CNTR_ELEM("Intr", 0, 0, CNTR_NORMAL,
4244 access_sw_cpu_intr),
4245[C_SW_CPU_RCV_LIM] = CNTR_ELEM("RcvLimit", 0, 0, CNTR_NORMAL,
4246 access_sw_cpu_rcv_limit),
4247[C_SW_VTX_WAIT] = CNTR_ELEM("vTxWait", 0, 0, CNTR_NORMAL,
4248 access_sw_vtx_wait),
4249[C_SW_PIO_WAIT] = CNTR_ELEM("PioWait", 0, 0, CNTR_NORMAL,
4250 access_sw_pio_wait),
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08004251[C_SW_PIO_DRAIN] = CNTR_ELEM("PioDrain", 0, 0, CNTR_NORMAL,
4252 access_sw_pio_drain),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004253[C_SW_KMEM_WAIT] = CNTR_ELEM("KmemWait", 0, 0, CNTR_NORMAL,
4254 access_sw_kmem_wait),
Dean Luickb4219222015-10-26 10:28:35 -04004255[C_SW_SEND_SCHED] = CNTR_ELEM("SendSched", 0, 0, CNTR_NORMAL,
4256 access_sw_send_schedule),
Vennila Megavannana699c6c2016-01-11 18:30:56 -05004257[C_SDMA_DESC_FETCHED_CNT] = CNTR_ELEM("SDEDscFdCn",
4258 SEND_DMA_DESC_FETCHED_CNT, 0,
4259 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4260 dev_access_u32_csr),
4261[C_SDMA_INT_CNT] = CNTR_ELEM("SDMAInt", 0, 0,
4262 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4263 access_sde_int_cnt),
4264[C_SDMA_ERR_CNT] = CNTR_ELEM("SDMAErrCt", 0, 0,
4265 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4266 access_sde_err_cnt),
4267[C_SDMA_IDLE_INT_CNT] = CNTR_ELEM("SDMAIdInt", 0, 0,
4268 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4269 access_sde_idle_int_cnt),
4270[C_SDMA_PROGRESS_INT_CNT] = CNTR_ELEM("SDMAPrIntCn", 0, 0,
4271 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4272 access_sde_progress_int_cnt),
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05004273/* MISC_ERR_STATUS */
4274[C_MISC_PLL_LOCK_FAIL_ERR] = CNTR_ELEM("MISC_PLL_LOCK_FAIL_ERR", 0, 0,
4275 CNTR_NORMAL,
4276 access_misc_pll_lock_fail_err_cnt),
4277[C_MISC_MBIST_FAIL_ERR] = CNTR_ELEM("MISC_MBIST_FAIL_ERR", 0, 0,
4278 CNTR_NORMAL,
4279 access_misc_mbist_fail_err_cnt),
4280[C_MISC_INVALID_EEP_CMD_ERR] = CNTR_ELEM("MISC_INVALID_EEP_CMD_ERR", 0, 0,
4281 CNTR_NORMAL,
4282 access_misc_invalid_eep_cmd_err_cnt),
4283[C_MISC_EFUSE_DONE_PARITY_ERR] = CNTR_ELEM("MISC_EFUSE_DONE_PARITY_ERR", 0, 0,
4284 CNTR_NORMAL,
4285 access_misc_efuse_done_parity_err_cnt),
4286[C_MISC_EFUSE_WRITE_ERR] = CNTR_ELEM("MISC_EFUSE_WRITE_ERR", 0, 0,
4287 CNTR_NORMAL,
4288 access_misc_efuse_write_err_cnt),
4289[C_MISC_EFUSE_READ_BAD_ADDR_ERR] = CNTR_ELEM("MISC_EFUSE_READ_BAD_ADDR_ERR", 0,
4290 0, CNTR_NORMAL,
4291 access_misc_efuse_read_bad_addr_err_cnt),
4292[C_MISC_EFUSE_CSR_PARITY_ERR] = CNTR_ELEM("MISC_EFUSE_CSR_PARITY_ERR", 0, 0,
4293 CNTR_NORMAL,
4294 access_misc_efuse_csr_parity_err_cnt),
4295[C_MISC_FW_AUTH_FAILED_ERR] = CNTR_ELEM("MISC_FW_AUTH_FAILED_ERR", 0, 0,
4296 CNTR_NORMAL,
4297 access_misc_fw_auth_failed_err_cnt),
4298[C_MISC_KEY_MISMATCH_ERR] = CNTR_ELEM("MISC_KEY_MISMATCH_ERR", 0, 0,
4299 CNTR_NORMAL,
4300 access_misc_key_mismatch_err_cnt),
4301[C_MISC_SBUS_WRITE_FAILED_ERR] = CNTR_ELEM("MISC_SBUS_WRITE_FAILED_ERR", 0, 0,
4302 CNTR_NORMAL,
4303 access_misc_sbus_write_failed_err_cnt),
4304[C_MISC_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("MISC_CSR_WRITE_BAD_ADDR_ERR", 0, 0,
4305 CNTR_NORMAL,
4306 access_misc_csr_write_bad_addr_err_cnt),
4307[C_MISC_CSR_READ_BAD_ADDR_ERR] = CNTR_ELEM("MISC_CSR_READ_BAD_ADDR_ERR", 0, 0,
4308 CNTR_NORMAL,
4309 access_misc_csr_read_bad_addr_err_cnt),
4310[C_MISC_CSR_PARITY_ERR] = CNTR_ELEM("MISC_CSR_PARITY_ERR", 0, 0,
4311 CNTR_NORMAL,
4312 access_misc_csr_parity_err_cnt),
4313/* CceErrStatus */
4314[C_CCE_ERR_STATUS_AGGREGATED_CNT] = CNTR_ELEM("CceErrStatusAggregatedCnt", 0, 0,
4315 CNTR_NORMAL,
4316 access_sw_cce_err_status_aggregated_cnt),
4317[C_CCE_MSIX_CSR_PARITY_ERR] = CNTR_ELEM("CceMsixCsrParityErr", 0, 0,
4318 CNTR_NORMAL,
4319 access_cce_msix_csr_parity_err_cnt),
4320[C_CCE_INT_MAP_UNC_ERR] = CNTR_ELEM("CceIntMapUncErr", 0, 0,
4321 CNTR_NORMAL,
4322 access_cce_int_map_unc_err_cnt),
4323[C_CCE_INT_MAP_COR_ERR] = CNTR_ELEM("CceIntMapCorErr", 0, 0,
4324 CNTR_NORMAL,
4325 access_cce_int_map_cor_err_cnt),
4326[C_CCE_MSIX_TABLE_UNC_ERR] = CNTR_ELEM("CceMsixTableUncErr", 0, 0,
4327 CNTR_NORMAL,
4328 access_cce_msix_table_unc_err_cnt),
4329[C_CCE_MSIX_TABLE_COR_ERR] = CNTR_ELEM("CceMsixTableCorErr", 0, 0,
4330 CNTR_NORMAL,
4331 access_cce_msix_table_cor_err_cnt),
4332[C_CCE_RXDMA_CONV_FIFO_PARITY_ERR] = CNTR_ELEM("CceRxdmaConvFifoParityErr", 0,
4333 0, CNTR_NORMAL,
4334 access_cce_rxdma_conv_fifo_parity_err_cnt),
4335[C_CCE_RCPL_ASYNC_FIFO_PARITY_ERR] = CNTR_ELEM("CceRcplAsyncFifoParityErr", 0,
4336 0, CNTR_NORMAL,
4337 access_cce_rcpl_async_fifo_parity_err_cnt),
4338[C_CCE_SEG_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("CceSegWriteBadAddrErr", 0, 0,
4339 CNTR_NORMAL,
4340 access_cce_seg_write_bad_addr_err_cnt),
4341[C_CCE_SEG_READ_BAD_ADDR_ERR] = CNTR_ELEM("CceSegReadBadAddrErr", 0, 0,
4342 CNTR_NORMAL,
4343 access_cce_seg_read_bad_addr_err_cnt),
4344[C_LA_TRIGGERED] = CNTR_ELEM("Cce LATriggered", 0, 0,
4345 CNTR_NORMAL,
4346 access_la_triggered_cnt),
4347[C_CCE_TRGT_CPL_TIMEOUT_ERR] = CNTR_ELEM("CceTrgtCplTimeoutErr", 0, 0,
4348 CNTR_NORMAL,
4349 access_cce_trgt_cpl_timeout_err_cnt),
4350[C_PCIC_RECEIVE_PARITY_ERR] = CNTR_ELEM("PcicReceiveParityErr", 0, 0,
4351 CNTR_NORMAL,
4352 access_pcic_receive_parity_err_cnt),
4353[C_PCIC_TRANSMIT_BACK_PARITY_ERR] = CNTR_ELEM("PcicTransmitBackParityErr", 0, 0,
4354 CNTR_NORMAL,
4355 access_pcic_transmit_back_parity_err_cnt),
4356[C_PCIC_TRANSMIT_FRONT_PARITY_ERR] = CNTR_ELEM("PcicTransmitFrontParityErr", 0,
4357 0, CNTR_NORMAL,
4358 access_pcic_transmit_front_parity_err_cnt),
4359[C_PCIC_CPL_DAT_Q_UNC_ERR] = CNTR_ELEM("PcicCplDatQUncErr", 0, 0,
4360 CNTR_NORMAL,
4361 access_pcic_cpl_dat_q_unc_err_cnt),
4362[C_PCIC_CPL_HD_Q_UNC_ERR] = CNTR_ELEM("PcicCplHdQUncErr", 0, 0,
4363 CNTR_NORMAL,
4364 access_pcic_cpl_hd_q_unc_err_cnt),
4365[C_PCIC_POST_DAT_Q_UNC_ERR] = CNTR_ELEM("PcicPostDatQUncErr", 0, 0,
4366 CNTR_NORMAL,
4367 access_pcic_post_dat_q_unc_err_cnt),
4368[C_PCIC_POST_HD_Q_UNC_ERR] = CNTR_ELEM("PcicPostHdQUncErr", 0, 0,
4369 CNTR_NORMAL,
4370 access_pcic_post_hd_q_unc_err_cnt),
4371[C_PCIC_RETRY_SOT_MEM_UNC_ERR] = CNTR_ELEM("PcicRetrySotMemUncErr", 0, 0,
4372 CNTR_NORMAL,
4373 access_pcic_retry_sot_mem_unc_err_cnt),
4374[C_PCIC_RETRY_MEM_UNC_ERR] = CNTR_ELEM("PcicRetryMemUncErr", 0, 0,
4375 CNTR_NORMAL,
4376 access_pcic_retry_mem_unc_err),
4377[C_PCIC_N_POST_DAT_Q_PARITY_ERR] = CNTR_ELEM("PcicNPostDatQParityErr", 0, 0,
4378 CNTR_NORMAL,
4379 access_pcic_n_post_dat_q_parity_err_cnt),
4380[C_PCIC_N_POST_H_Q_PARITY_ERR] = CNTR_ELEM("PcicNPostHQParityErr", 0, 0,
4381 CNTR_NORMAL,
4382 access_pcic_n_post_h_q_parity_err_cnt),
4383[C_PCIC_CPL_DAT_Q_COR_ERR] = CNTR_ELEM("PcicCplDatQCorErr", 0, 0,
4384 CNTR_NORMAL,
4385 access_pcic_cpl_dat_q_cor_err_cnt),
4386[C_PCIC_CPL_HD_Q_COR_ERR] = CNTR_ELEM("PcicCplHdQCorErr", 0, 0,
4387 CNTR_NORMAL,
4388 access_pcic_cpl_hd_q_cor_err_cnt),
4389[C_PCIC_POST_DAT_Q_COR_ERR] = CNTR_ELEM("PcicPostDatQCorErr", 0, 0,
4390 CNTR_NORMAL,
4391 access_pcic_post_dat_q_cor_err_cnt),
4392[C_PCIC_POST_HD_Q_COR_ERR] = CNTR_ELEM("PcicPostHdQCorErr", 0, 0,
4393 CNTR_NORMAL,
4394 access_pcic_post_hd_q_cor_err_cnt),
4395[C_PCIC_RETRY_SOT_MEM_COR_ERR] = CNTR_ELEM("PcicRetrySotMemCorErr", 0, 0,
4396 CNTR_NORMAL,
4397 access_pcic_retry_sot_mem_cor_err_cnt),
4398[C_PCIC_RETRY_MEM_COR_ERR] = CNTR_ELEM("PcicRetryMemCorErr", 0, 0,
4399 CNTR_NORMAL,
4400 access_pcic_retry_mem_cor_err_cnt),
4401[C_CCE_CLI1_ASYNC_FIFO_DBG_PARITY_ERR] = CNTR_ELEM(
4402 "CceCli1AsyncFifoDbgParityError", 0, 0,
4403 CNTR_NORMAL,
4404 access_cce_cli1_async_fifo_dbg_parity_err_cnt),
4405[C_CCE_CLI1_ASYNC_FIFO_RXDMA_PARITY_ERR] = CNTR_ELEM(
4406 "CceCli1AsyncFifoRxdmaParityError", 0, 0,
4407 CNTR_NORMAL,
4408 access_cce_cli1_async_fifo_rxdma_parity_err_cnt
4409 ),
4410[C_CCE_CLI1_ASYNC_FIFO_SDMA_HD_PARITY_ERR] = CNTR_ELEM(
4411 "CceCli1AsyncFifoSdmaHdParityErr", 0, 0,
4412 CNTR_NORMAL,
4413 access_cce_cli1_async_fifo_sdma_hd_parity_err_cnt),
4414[C_CCE_CLI1_ASYNC_FIFO_PIO_CRDT_PARITY_ERR] = CNTR_ELEM(
4415 "CceCli1AsyncFifoPioCrdtParityErr", 0, 0,
4416 CNTR_NORMAL,
4417 access_cce_cl1_async_fifo_pio_crdt_parity_err_cnt),
4418[C_CCE_CLI2_ASYNC_FIFO_PARITY_ERR] = CNTR_ELEM("CceCli2AsyncFifoParityErr", 0,
4419 0, CNTR_NORMAL,
4420 access_cce_cli2_async_fifo_parity_err_cnt),
4421[C_CCE_CSR_CFG_BUS_PARITY_ERR] = CNTR_ELEM("CceCsrCfgBusParityErr", 0, 0,
4422 CNTR_NORMAL,
4423 access_cce_csr_cfg_bus_parity_err_cnt),
4424[C_CCE_CLI0_ASYNC_FIFO_PARTIY_ERR] = CNTR_ELEM("CceCli0AsyncFifoParityErr", 0,
4425 0, CNTR_NORMAL,
4426 access_cce_cli0_async_fifo_parity_err_cnt),
4427[C_CCE_RSPD_DATA_PARITY_ERR] = CNTR_ELEM("CceRspdDataParityErr", 0, 0,
4428 CNTR_NORMAL,
4429 access_cce_rspd_data_parity_err_cnt),
4430[C_CCE_TRGT_ACCESS_ERR] = CNTR_ELEM("CceTrgtAccessErr", 0, 0,
4431 CNTR_NORMAL,
4432 access_cce_trgt_access_err_cnt),
4433[C_CCE_TRGT_ASYNC_FIFO_PARITY_ERR] = CNTR_ELEM("CceTrgtAsyncFifoParityErr", 0,
4434 0, CNTR_NORMAL,
4435 access_cce_trgt_async_fifo_parity_err_cnt),
4436[C_CCE_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("CceCsrWriteBadAddrErr", 0, 0,
4437 CNTR_NORMAL,
4438 access_cce_csr_write_bad_addr_err_cnt),
4439[C_CCE_CSR_READ_BAD_ADDR_ERR] = CNTR_ELEM("CceCsrReadBadAddrErr", 0, 0,
4440 CNTR_NORMAL,
4441 access_cce_csr_read_bad_addr_err_cnt),
4442[C_CCE_CSR_PARITY_ERR] = CNTR_ELEM("CceCsrParityErr", 0, 0,
4443 CNTR_NORMAL,
4444 access_ccs_csr_parity_err_cnt),
4445
4446/* RcvErrStatus */
4447[C_RX_CSR_PARITY_ERR] = CNTR_ELEM("RxCsrParityErr", 0, 0,
4448 CNTR_NORMAL,
4449 access_rx_csr_parity_err_cnt),
4450[C_RX_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("RxCsrWriteBadAddrErr", 0, 0,
4451 CNTR_NORMAL,
4452 access_rx_csr_write_bad_addr_err_cnt),
4453[C_RX_CSR_READ_BAD_ADDR_ERR] = CNTR_ELEM("RxCsrReadBadAddrErr", 0, 0,
4454 CNTR_NORMAL,
4455 access_rx_csr_read_bad_addr_err_cnt),
4456[C_RX_DMA_CSR_UNC_ERR] = CNTR_ELEM("RxDmaCsrUncErr", 0, 0,
4457 CNTR_NORMAL,
4458 access_rx_dma_csr_unc_err_cnt),
4459[C_RX_DMA_DQ_FSM_ENCODING_ERR] = CNTR_ELEM("RxDmaDqFsmEncodingErr", 0, 0,
4460 CNTR_NORMAL,
4461 access_rx_dma_dq_fsm_encoding_err_cnt),
4462[C_RX_DMA_EQ_FSM_ENCODING_ERR] = CNTR_ELEM("RxDmaEqFsmEncodingErr", 0, 0,
4463 CNTR_NORMAL,
4464 access_rx_dma_eq_fsm_encoding_err_cnt),
4465[C_RX_DMA_CSR_PARITY_ERR] = CNTR_ELEM("RxDmaCsrParityErr", 0, 0,
4466 CNTR_NORMAL,
4467 access_rx_dma_csr_parity_err_cnt),
4468[C_RX_RBUF_DATA_COR_ERR] = CNTR_ELEM("RxRbufDataCorErr", 0, 0,
4469 CNTR_NORMAL,
4470 access_rx_rbuf_data_cor_err_cnt),
4471[C_RX_RBUF_DATA_UNC_ERR] = CNTR_ELEM("RxRbufDataUncErr", 0, 0,
4472 CNTR_NORMAL,
4473 access_rx_rbuf_data_unc_err_cnt),
4474[C_RX_DMA_DATA_FIFO_RD_COR_ERR] = CNTR_ELEM("RxDmaDataFifoRdCorErr", 0, 0,
4475 CNTR_NORMAL,
4476 access_rx_dma_data_fifo_rd_cor_err_cnt),
4477[C_RX_DMA_DATA_FIFO_RD_UNC_ERR] = CNTR_ELEM("RxDmaDataFifoRdUncErr", 0, 0,
4478 CNTR_NORMAL,
4479 access_rx_dma_data_fifo_rd_unc_err_cnt),
4480[C_RX_DMA_HDR_FIFO_RD_COR_ERR] = CNTR_ELEM("RxDmaHdrFifoRdCorErr", 0, 0,
4481 CNTR_NORMAL,
4482 access_rx_dma_hdr_fifo_rd_cor_err_cnt),
4483[C_RX_DMA_HDR_FIFO_RD_UNC_ERR] = CNTR_ELEM("RxDmaHdrFifoRdUncErr", 0, 0,
4484 CNTR_NORMAL,
4485 access_rx_dma_hdr_fifo_rd_unc_err_cnt),
4486[C_RX_RBUF_DESC_PART2_COR_ERR] = CNTR_ELEM("RxRbufDescPart2CorErr", 0, 0,
4487 CNTR_NORMAL,
4488 access_rx_rbuf_desc_part2_cor_err_cnt),
4489[C_RX_RBUF_DESC_PART2_UNC_ERR] = CNTR_ELEM("RxRbufDescPart2UncErr", 0, 0,
4490 CNTR_NORMAL,
4491 access_rx_rbuf_desc_part2_unc_err_cnt),
4492[C_RX_RBUF_DESC_PART1_COR_ERR] = CNTR_ELEM("RxRbufDescPart1CorErr", 0, 0,
4493 CNTR_NORMAL,
4494 access_rx_rbuf_desc_part1_cor_err_cnt),
4495[C_RX_RBUF_DESC_PART1_UNC_ERR] = CNTR_ELEM("RxRbufDescPart1UncErr", 0, 0,
4496 CNTR_NORMAL,
4497 access_rx_rbuf_desc_part1_unc_err_cnt),
4498[C_RX_HQ_INTR_FSM_ERR] = CNTR_ELEM("RxHqIntrFsmErr", 0, 0,
4499 CNTR_NORMAL,
4500 access_rx_hq_intr_fsm_err_cnt),
4501[C_RX_HQ_INTR_CSR_PARITY_ERR] = CNTR_ELEM("RxHqIntrCsrParityErr", 0, 0,
4502 CNTR_NORMAL,
4503 access_rx_hq_intr_csr_parity_err_cnt),
4504[C_RX_LOOKUP_CSR_PARITY_ERR] = CNTR_ELEM("RxLookupCsrParityErr", 0, 0,
4505 CNTR_NORMAL,
4506 access_rx_lookup_csr_parity_err_cnt),
4507[C_RX_LOOKUP_RCV_ARRAY_COR_ERR] = CNTR_ELEM("RxLookupRcvArrayCorErr", 0, 0,
4508 CNTR_NORMAL,
4509 access_rx_lookup_rcv_array_cor_err_cnt),
4510[C_RX_LOOKUP_RCV_ARRAY_UNC_ERR] = CNTR_ELEM("RxLookupRcvArrayUncErr", 0, 0,
4511 CNTR_NORMAL,
4512 access_rx_lookup_rcv_array_unc_err_cnt),
4513[C_RX_LOOKUP_DES_PART2_PARITY_ERR] = CNTR_ELEM("RxLookupDesPart2ParityErr", 0,
4514 0, CNTR_NORMAL,
4515 access_rx_lookup_des_part2_parity_err_cnt),
4516[C_RX_LOOKUP_DES_PART1_UNC_COR_ERR] = CNTR_ELEM("RxLookupDesPart1UncCorErr", 0,
4517 0, CNTR_NORMAL,
4518 access_rx_lookup_des_part1_unc_cor_err_cnt),
4519[C_RX_LOOKUP_DES_PART1_UNC_ERR] = CNTR_ELEM("RxLookupDesPart1UncErr", 0, 0,
4520 CNTR_NORMAL,
4521 access_rx_lookup_des_part1_unc_err_cnt),
4522[C_RX_RBUF_NEXT_FREE_BUF_COR_ERR] = CNTR_ELEM("RxRbufNextFreeBufCorErr", 0, 0,
4523 CNTR_NORMAL,
4524 access_rx_rbuf_next_free_buf_cor_err_cnt),
4525[C_RX_RBUF_NEXT_FREE_BUF_UNC_ERR] = CNTR_ELEM("RxRbufNextFreeBufUncErr", 0, 0,
4526 CNTR_NORMAL,
4527 access_rx_rbuf_next_free_buf_unc_err_cnt),
4528[C_RX_RBUF_FL_INIT_WR_ADDR_PARITY_ERR] = CNTR_ELEM(
4529 "RxRbufFlInitWrAddrParityErr", 0, 0,
4530 CNTR_NORMAL,
4531 access_rbuf_fl_init_wr_addr_parity_err_cnt),
4532[C_RX_RBUF_FL_INITDONE_PARITY_ERR] = CNTR_ELEM("RxRbufFlInitdoneParityErr", 0,
4533 0, CNTR_NORMAL,
4534 access_rx_rbuf_fl_initdone_parity_err_cnt),
4535[C_RX_RBUF_FL_WRITE_ADDR_PARITY_ERR] = CNTR_ELEM("RxRbufFlWrAddrParityErr", 0,
4536 0, CNTR_NORMAL,
4537 access_rx_rbuf_fl_write_addr_parity_err_cnt),
4538[C_RX_RBUF_FL_RD_ADDR_PARITY_ERR] = CNTR_ELEM("RxRbufFlRdAddrParityErr", 0, 0,
4539 CNTR_NORMAL,
4540 access_rx_rbuf_fl_rd_addr_parity_err_cnt),
4541[C_RX_RBUF_EMPTY_ERR] = CNTR_ELEM("RxRbufEmptyErr", 0, 0,
4542 CNTR_NORMAL,
4543 access_rx_rbuf_empty_err_cnt),
4544[C_RX_RBUF_FULL_ERR] = CNTR_ELEM("RxRbufFullErr", 0, 0,
4545 CNTR_NORMAL,
4546 access_rx_rbuf_full_err_cnt),
4547[C_RX_RBUF_BAD_LOOKUP_ERR] = CNTR_ELEM("RxRBufBadLookupErr", 0, 0,
4548 CNTR_NORMAL,
4549 access_rbuf_bad_lookup_err_cnt),
4550[C_RX_RBUF_CTX_ID_PARITY_ERR] = CNTR_ELEM("RxRbufCtxIdParityErr", 0, 0,
4551 CNTR_NORMAL,
4552 access_rbuf_ctx_id_parity_err_cnt),
4553[C_RX_RBUF_CSR_QEOPDW_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQEOPDWParityErr", 0, 0,
4554 CNTR_NORMAL,
4555 access_rbuf_csr_qeopdw_parity_err_cnt),
4556[C_RX_RBUF_CSR_Q_NUM_OF_PKT_PARITY_ERR] = CNTR_ELEM(
4557 "RxRbufCsrQNumOfPktParityErr", 0, 0,
4558 CNTR_NORMAL,
4559 access_rx_rbuf_csr_q_num_of_pkt_parity_err_cnt),
4560[C_RX_RBUF_CSR_Q_T1_PTR_PARITY_ERR] = CNTR_ELEM(
4561 "RxRbufCsrQTlPtrParityErr", 0, 0,
4562 CNTR_NORMAL,
4563 access_rx_rbuf_csr_q_t1_ptr_parity_err_cnt),
4564[C_RX_RBUF_CSR_Q_HD_PTR_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQHdPtrParityErr", 0,
4565 0, CNTR_NORMAL,
4566 access_rx_rbuf_csr_q_hd_ptr_parity_err_cnt),
4567[C_RX_RBUF_CSR_Q_VLD_BIT_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQVldBitParityErr", 0,
4568 0, CNTR_NORMAL,
4569 access_rx_rbuf_csr_q_vld_bit_parity_err_cnt),
4570[C_RX_RBUF_CSR_Q_NEXT_BUF_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQNextBufParityErr",
4571 0, 0, CNTR_NORMAL,
4572 access_rx_rbuf_csr_q_next_buf_parity_err_cnt),
4573[C_RX_RBUF_CSR_Q_ENT_CNT_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQEntCntParityErr", 0,
4574 0, CNTR_NORMAL,
4575 access_rx_rbuf_csr_q_ent_cnt_parity_err_cnt),
4576[C_RX_RBUF_CSR_Q_HEAD_BUF_NUM_PARITY_ERR] = CNTR_ELEM(
4577 "RxRbufCsrQHeadBufNumParityErr", 0, 0,
4578 CNTR_NORMAL,
4579 access_rx_rbuf_csr_q_head_buf_num_parity_err_cnt),
4580[C_RX_RBUF_BLOCK_LIST_READ_COR_ERR] = CNTR_ELEM("RxRbufBlockListReadCorErr", 0,
4581 0, CNTR_NORMAL,
4582 access_rx_rbuf_block_list_read_cor_err_cnt),
4583[C_RX_RBUF_BLOCK_LIST_READ_UNC_ERR] = CNTR_ELEM("RxRbufBlockListReadUncErr", 0,
4584 0, CNTR_NORMAL,
4585 access_rx_rbuf_block_list_read_unc_err_cnt),
4586[C_RX_RBUF_LOOKUP_DES_COR_ERR] = CNTR_ELEM("RxRbufLookupDesCorErr", 0, 0,
4587 CNTR_NORMAL,
4588 access_rx_rbuf_lookup_des_cor_err_cnt),
4589[C_RX_RBUF_LOOKUP_DES_UNC_ERR] = CNTR_ELEM("RxRbufLookupDesUncErr", 0, 0,
4590 CNTR_NORMAL,
4591 access_rx_rbuf_lookup_des_unc_err_cnt),
4592[C_RX_RBUF_LOOKUP_DES_REG_UNC_COR_ERR] = CNTR_ELEM(
4593 "RxRbufLookupDesRegUncCorErr", 0, 0,
4594 CNTR_NORMAL,
4595 access_rx_rbuf_lookup_des_reg_unc_cor_err_cnt),
4596[C_RX_RBUF_LOOKUP_DES_REG_UNC_ERR] = CNTR_ELEM("RxRbufLookupDesRegUncErr", 0, 0,
4597 CNTR_NORMAL,
4598 access_rx_rbuf_lookup_des_reg_unc_err_cnt),
4599[C_RX_RBUF_FREE_LIST_COR_ERR] = CNTR_ELEM("RxRbufFreeListCorErr", 0, 0,
4600 CNTR_NORMAL,
4601 access_rx_rbuf_free_list_cor_err_cnt),
4602[C_RX_RBUF_FREE_LIST_UNC_ERR] = CNTR_ELEM("RxRbufFreeListUncErr", 0, 0,
4603 CNTR_NORMAL,
4604 access_rx_rbuf_free_list_unc_err_cnt),
4605[C_RX_RCV_FSM_ENCODING_ERR] = CNTR_ELEM("RxRcvFsmEncodingErr", 0, 0,
4606 CNTR_NORMAL,
4607 access_rx_rcv_fsm_encoding_err_cnt),
4608[C_RX_DMA_FLAG_COR_ERR] = CNTR_ELEM("RxDmaFlagCorErr", 0, 0,
4609 CNTR_NORMAL,
4610 access_rx_dma_flag_cor_err_cnt),
4611[C_RX_DMA_FLAG_UNC_ERR] = CNTR_ELEM("RxDmaFlagUncErr", 0, 0,
4612 CNTR_NORMAL,
4613 access_rx_dma_flag_unc_err_cnt),
4614[C_RX_DC_SOP_EOP_PARITY_ERR] = CNTR_ELEM("RxDcSopEopParityErr", 0, 0,
4615 CNTR_NORMAL,
4616 access_rx_dc_sop_eop_parity_err_cnt),
4617[C_RX_RCV_CSR_PARITY_ERR] = CNTR_ELEM("RxRcvCsrParityErr", 0, 0,
4618 CNTR_NORMAL,
4619 access_rx_rcv_csr_parity_err_cnt),
4620[C_RX_RCV_QP_MAP_TABLE_COR_ERR] = CNTR_ELEM("RxRcvQpMapTableCorErr", 0, 0,
4621 CNTR_NORMAL,
4622 access_rx_rcv_qp_map_table_cor_err_cnt),
4623[C_RX_RCV_QP_MAP_TABLE_UNC_ERR] = CNTR_ELEM("RxRcvQpMapTableUncErr", 0, 0,
4624 CNTR_NORMAL,
4625 access_rx_rcv_qp_map_table_unc_err_cnt),
4626[C_RX_RCV_DATA_COR_ERR] = CNTR_ELEM("RxRcvDataCorErr", 0, 0,
4627 CNTR_NORMAL,
4628 access_rx_rcv_data_cor_err_cnt),
4629[C_RX_RCV_DATA_UNC_ERR] = CNTR_ELEM("RxRcvDataUncErr", 0, 0,
4630 CNTR_NORMAL,
4631 access_rx_rcv_data_unc_err_cnt),
4632[C_RX_RCV_HDR_COR_ERR] = CNTR_ELEM("RxRcvHdrCorErr", 0, 0,
4633 CNTR_NORMAL,
4634 access_rx_rcv_hdr_cor_err_cnt),
4635[C_RX_RCV_HDR_UNC_ERR] = CNTR_ELEM("RxRcvHdrUncErr", 0, 0,
4636 CNTR_NORMAL,
4637 access_rx_rcv_hdr_unc_err_cnt),
4638[C_RX_DC_INTF_PARITY_ERR] = CNTR_ELEM("RxDcIntfParityErr", 0, 0,
4639 CNTR_NORMAL,
4640 access_rx_dc_intf_parity_err_cnt),
4641[C_RX_DMA_CSR_COR_ERR] = CNTR_ELEM("RxDmaCsrCorErr", 0, 0,
4642 CNTR_NORMAL,
4643 access_rx_dma_csr_cor_err_cnt),
4644/* SendPioErrStatus */
4645[C_PIO_PEC_SOP_HEAD_PARITY_ERR] = CNTR_ELEM("PioPecSopHeadParityErr", 0, 0,
4646 CNTR_NORMAL,
4647 access_pio_pec_sop_head_parity_err_cnt),
4648[C_PIO_PCC_SOP_HEAD_PARITY_ERR] = CNTR_ELEM("PioPccSopHeadParityErr", 0, 0,
4649 CNTR_NORMAL,
4650 access_pio_pcc_sop_head_parity_err_cnt),
4651[C_PIO_LAST_RETURNED_CNT_PARITY_ERR] = CNTR_ELEM("PioLastReturnedCntParityErr",
4652 0, 0, CNTR_NORMAL,
4653 access_pio_last_returned_cnt_parity_err_cnt),
4654[C_PIO_CURRENT_FREE_CNT_PARITY_ERR] = CNTR_ELEM("PioCurrentFreeCntParityErr", 0,
4655 0, CNTR_NORMAL,
4656 access_pio_current_free_cnt_parity_err_cnt),
4657[C_PIO_RSVD_31_ERR] = CNTR_ELEM("Pio Reserved 31", 0, 0,
4658 CNTR_NORMAL,
4659 access_pio_reserved_31_err_cnt),
4660[C_PIO_RSVD_30_ERR] = CNTR_ELEM("Pio Reserved 30", 0, 0,
4661 CNTR_NORMAL,
4662 access_pio_reserved_30_err_cnt),
4663[C_PIO_PPMC_SOP_LEN_ERR] = CNTR_ELEM("PioPpmcSopLenErr", 0, 0,
4664 CNTR_NORMAL,
4665 access_pio_ppmc_sop_len_err_cnt),
4666[C_PIO_PPMC_BQC_MEM_PARITY_ERR] = CNTR_ELEM("PioPpmcBqcMemParityErr", 0, 0,
4667 CNTR_NORMAL,
4668 access_pio_ppmc_bqc_mem_parity_err_cnt),
4669[C_PIO_VL_FIFO_PARITY_ERR] = CNTR_ELEM("PioVlFifoParityErr", 0, 0,
4670 CNTR_NORMAL,
4671 access_pio_vl_fifo_parity_err_cnt),
4672[C_PIO_VLF_SOP_PARITY_ERR] = CNTR_ELEM("PioVlfSopParityErr", 0, 0,
4673 CNTR_NORMAL,
4674 access_pio_vlf_sop_parity_err_cnt),
4675[C_PIO_VLF_V1_LEN_PARITY_ERR] = CNTR_ELEM("PioVlfVlLenParityErr", 0, 0,
4676 CNTR_NORMAL,
4677 access_pio_vlf_v1_len_parity_err_cnt),
4678[C_PIO_BLOCK_QW_COUNT_PARITY_ERR] = CNTR_ELEM("PioBlockQwCountParityErr", 0, 0,
4679 CNTR_NORMAL,
4680 access_pio_block_qw_count_parity_err_cnt),
4681[C_PIO_WRITE_QW_VALID_PARITY_ERR] = CNTR_ELEM("PioWriteQwValidParityErr", 0, 0,
4682 CNTR_NORMAL,
4683 access_pio_write_qw_valid_parity_err_cnt),
4684[C_PIO_STATE_MACHINE_ERR] = CNTR_ELEM("PioStateMachineErr", 0, 0,
4685 CNTR_NORMAL,
4686 access_pio_state_machine_err_cnt),
4687[C_PIO_WRITE_DATA_PARITY_ERR] = CNTR_ELEM("PioWriteDataParityErr", 0, 0,
4688 CNTR_NORMAL,
4689 access_pio_write_data_parity_err_cnt),
4690[C_PIO_HOST_ADDR_MEM_COR_ERR] = CNTR_ELEM("PioHostAddrMemCorErr", 0, 0,
4691 CNTR_NORMAL,
4692 access_pio_host_addr_mem_cor_err_cnt),
4693[C_PIO_HOST_ADDR_MEM_UNC_ERR] = CNTR_ELEM("PioHostAddrMemUncErr", 0, 0,
4694 CNTR_NORMAL,
4695 access_pio_host_addr_mem_unc_err_cnt),
4696[C_PIO_PKT_EVICT_SM_OR_ARM_SM_ERR] = CNTR_ELEM("PioPktEvictSmOrArbSmErr", 0, 0,
4697 CNTR_NORMAL,
4698 access_pio_pkt_evict_sm_or_arb_sm_err_cnt),
4699[C_PIO_INIT_SM_IN_ERR] = CNTR_ELEM("PioInitSmInErr", 0, 0,
4700 CNTR_NORMAL,
4701 access_pio_init_sm_in_err_cnt),
4702[C_PIO_PPMC_PBL_FIFO_ERR] = CNTR_ELEM("PioPpmcPblFifoErr", 0, 0,
4703 CNTR_NORMAL,
4704 access_pio_ppmc_pbl_fifo_err_cnt),
4705[C_PIO_CREDIT_RET_FIFO_PARITY_ERR] = CNTR_ELEM("PioCreditRetFifoParityErr", 0,
4706 0, CNTR_NORMAL,
4707 access_pio_credit_ret_fifo_parity_err_cnt),
4708[C_PIO_V1_LEN_MEM_BANK1_COR_ERR] = CNTR_ELEM("PioVlLenMemBank1CorErr", 0, 0,
4709 CNTR_NORMAL,
4710 access_pio_v1_len_mem_bank1_cor_err_cnt),
4711[C_PIO_V1_LEN_MEM_BANK0_COR_ERR] = CNTR_ELEM("PioVlLenMemBank0CorErr", 0, 0,
4712 CNTR_NORMAL,
4713 access_pio_v1_len_mem_bank0_cor_err_cnt),
4714[C_PIO_V1_LEN_MEM_BANK1_UNC_ERR] = CNTR_ELEM("PioVlLenMemBank1UncErr", 0, 0,
4715 CNTR_NORMAL,
4716 access_pio_v1_len_mem_bank1_unc_err_cnt),
4717[C_PIO_V1_LEN_MEM_BANK0_UNC_ERR] = CNTR_ELEM("PioVlLenMemBank0UncErr", 0, 0,
4718 CNTR_NORMAL,
4719 access_pio_v1_len_mem_bank0_unc_err_cnt),
4720[C_PIO_SM_PKT_RESET_PARITY_ERR] = CNTR_ELEM("PioSmPktResetParityErr", 0, 0,
4721 CNTR_NORMAL,
4722 access_pio_sm_pkt_reset_parity_err_cnt),
4723[C_PIO_PKT_EVICT_FIFO_PARITY_ERR] = CNTR_ELEM("PioPktEvictFifoParityErr", 0, 0,
4724 CNTR_NORMAL,
4725 access_pio_pkt_evict_fifo_parity_err_cnt),
4726[C_PIO_SBRDCTRL_CRREL_FIFO_PARITY_ERR] = CNTR_ELEM(
4727 "PioSbrdctrlCrrelFifoParityErr", 0, 0,
4728 CNTR_NORMAL,
4729 access_pio_sbrdctrl_crrel_fifo_parity_err_cnt),
4730[C_PIO_SBRDCTL_CRREL_PARITY_ERR] = CNTR_ELEM("PioSbrdctlCrrelParityErr", 0, 0,
4731 CNTR_NORMAL,
4732 access_pio_sbrdctl_crrel_parity_err_cnt),
4733[C_PIO_PEC_FIFO_PARITY_ERR] = CNTR_ELEM("PioPecFifoParityErr", 0, 0,
4734 CNTR_NORMAL,
4735 access_pio_pec_fifo_parity_err_cnt),
4736[C_PIO_PCC_FIFO_PARITY_ERR] = CNTR_ELEM("PioPccFifoParityErr", 0, 0,
4737 CNTR_NORMAL,
4738 access_pio_pcc_fifo_parity_err_cnt),
4739[C_PIO_SB_MEM_FIFO1_ERR] = CNTR_ELEM("PioSbMemFifo1Err", 0, 0,
4740 CNTR_NORMAL,
4741 access_pio_sb_mem_fifo1_err_cnt),
4742[C_PIO_SB_MEM_FIFO0_ERR] = CNTR_ELEM("PioSbMemFifo0Err", 0, 0,
4743 CNTR_NORMAL,
4744 access_pio_sb_mem_fifo0_err_cnt),
4745[C_PIO_CSR_PARITY_ERR] = CNTR_ELEM("PioCsrParityErr", 0, 0,
4746 CNTR_NORMAL,
4747 access_pio_csr_parity_err_cnt),
4748[C_PIO_WRITE_ADDR_PARITY_ERR] = CNTR_ELEM("PioWriteAddrParityErr", 0, 0,
4749 CNTR_NORMAL,
4750 access_pio_write_addr_parity_err_cnt),
4751[C_PIO_WRITE_BAD_CTXT_ERR] = CNTR_ELEM("PioWriteBadCtxtErr", 0, 0,
4752 CNTR_NORMAL,
4753 access_pio_write_bad_ctxt_err_cnt),
4754/* SendDmaErrStatus */
4755[C_SDMA_PCIE_REQ_TRACKING_COR_ERR] = CNTR_ELEM("SDmaPcieReqTrackingCorErr", 0,
4756 0, CNTR_NORMAL,
4757 access_sdma_pcie_req_tracking_cor_err_cnt),
4758[C_SDMA_PCIE_REQ_TRACKING_UNC_ERR] = CNTR_ELEM("SDmaPcieReqTrackingUncErr", 0,
4759 0, CNTR_NORMAL,
4760 access_sdma_pcie_req_tracking_unc_err_cnt),
4761[C_SDMA_CSR_PARITY_ERR] = CNTR_ELEM("SDmaCsrParityErr", 0, 0,
4762 CNTR_NORMAL,
4763 access_sdma_csr_parity_err_cnt),
4764[C_SDMA_RPY_TAG_ERR] = CNTR_ELEM("SDmaRpyTagErr", 0, 0,
4765 CNTR_NORMAL,
4766 access_sdma_rpy_tag_err_cnt),
4767/* SendEgressErrStatus */
4768[C_TX_READ_PIO_MEMORY_CSR_UNC_ERR] = CNTR_ELEM("TxReadPioMemoryCsrUncErr", 0, 0,
4769 CNTR_NORMAL,
4770 access_tx_read_pio_memory_csr_unc_err_cnt),
4771[C_TX_READ_SDMA_MEMORY_CSR_UNC_ERR] = CNTR_ELEM("TxReadSdmaMemoryCsrUncErr", 0,
4772 0, CNTR_NORMAL,
4773 access_tx_read_sdma_memory_csr_err_cnt),
4774[C_TX_EGRESS_FIFO_COR_ERR] = CNTR_ELEM("TxEgressFifoCorErr", 0, 0,
4775 CNTR_NORMAL,
4776 access_tx_egress_fifo_cor_err_cnt),
4777[C_TX_READ_PIO_MEMORY_COR_ERR] = CNTR_ELEM("TxReadPioMemoryCorErr", 0, 0,
4778 CNTR_NORMAL,
4779 access_tx_read_pio_memory_cor_err_cnt),
4780[C_TX_READ_SDMA_MEMORY_COR_ERR] = CNTR_ELEM("TxReadSdmaMemoryCorErr", 0, 0,
4781 CNTR_NORMAL,
4782 access_tx_read_sdma_memory_cor_err_cnt),
4783[C_TX_SB_HDR_COR_ERR] = CNTR_ELEM("TxSbHdrCorErr", 0, 0,
4784 CNTR_NORMAL,
4785 access_tx_sb_hdr_cor_err_cnt),
4786[C_TX_CREDIT_OVERRUN_ERR] = CNTR_ELEM("TxCreditOverrunErr", 0, 0,
4787 CNTR_NORMAL,
4788 access_tx_credit_overrun_err_cnt),
4789[C_TX_LAUNCH_FIFO8_COR_ERR] = CNTR_ELEM("TxLaunchFifo8CorErr", 0, 0,
4790 CNTR_NORMAL,
4791 access_tx_launch_fifo8_cor_err_cnt),
4792[C_TX_LAUNCH_FIFO7_COR_ERR] = CNTR_ELEM("TxLaunchFifo7CorErr", 0, 0,
4793 CNTR_NORMAL,
4794 access_tx_launch_fifo7_cor_err_cnt),
4795[C_TX_LAUNCH_FIFO6_COR_ERR] = CNTR_ELEM("TxLaunchFifo6CorErr", 0, 0,
4796 CNTR_NORMAL,
4797 access_tx_launch_fifo6_cor_err_cnt),
4798[C_TX_LAUNCH_FIFO5_COR_ERR] = CNTR_ELEM("TxLaunchFifo5CorErr", 0, 0,
4799 CNTR_NORMAL,
4800 access_tx_launch_fifo5_cor_err_cnt),
4801[C_TX_LAUNCH_FIFO4_COR_ERR] = CNTR_ELEM("TxLaunchFifo4CorErr", 0, 0,
4802 CNTR_NORMAL,
4803 access_tx_launch_fifo4_cor_err_cnt),
4804[C_TX_LAUNCH_FIFO3_COR_ERR] = CNTR_ELEM("TxLaunchFifo3CorErr", 0, 0,
4805 CNTR_NORMAL,
4806 access_tx_launch_fifo3_cor_err_cnt),
4807[C_TX_LAUNCH_FIFO2_COR_ERR] = CNTR_ELEM("TxLaunchFifo2CorErr", 0, 0,
4808 CNTR_NORMAL,
4809 access_tx_launch_fifo2_cor_err_cnt),
4810[C_TX_LAUNCH_FIFO1_COR_ERR] = CNTR_ELEM("TxLaunchFifo1CorErr", 0, 0,
4811 CNTR_NORMAL,
4812 access_tx_launch_fifo1_cor_err_cnt),
4813[C_TX_LAUNCH_FIFO0_COR_ERR] = CNTR_ELEM("TxLaunchFifo0CorErr", 0, 0,
4814 CNTR_NORMAL,
4815 access_tx_launch_fifo0_cor_err_cnt),
4816[C_TX_CREDIT_RETURN_VL_ERR] = CNTR_ELEM("TxCreditReturnVLErr", 0, 0,
4817 CNTR_NORMAL,
4818 access_tx_credit_return_vl_err_cnt),
4819[C_TX_HCRC_INSERTION_ERR] = CNTR_ELEM("TxHcrcInsertionErr", 0, 0,
4820 CNTR_NORMAL,
4821 access_tx_hcrc_insertion_err_cnt),
4822[C_TX_EGRESS_FIFI_UNC_ERR] = CNTR_ELEM("TxEgressFifoUncErr", 0, 0,
4823 CNTR_NORMAL,
4824 access_tx_egress_fifo_unc_err_cnt),
4825[C_TX_READ_PIO_MEMORY_UNC_ERR] = CNTR_ELEM("TxReadPioMemoryUncErr", 0, 0,
4826 CNTR_NORMAL,
4827 access_tx_read_pio_memory_unc_err_cnt),
4828[C_TX_READ_SDMA_MEMORY_UNC_ERR] = CNTR_ELEM("TxReadSdmaMemoryUncErr", 0, 0,
4829 CNTR_NORMAL,
4830 access_tx_read_sdma_memory_unc_err_cnt),
4831[C_TX_SB_HDR_UNC_ERR] = CNTR_ELEM("TxSbHdrUncErr", 0, 0,
4832 CNTR_NORMAL,
4833 access_tx_sb_hdr_unc_err_cnt),
4834[C_TX_CREDIT_RETURN_PARITY_ERR] = CNTR_ELEM("TxCreditReturnParityErr", 0, 0,
4835 CNTR_NORMAL,
4836 access_tx_credit_return_partiy_err_cnt),
4837[C_TX_LAUNCH_FIFO8_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo8UncOrParityErr",
4838 0, 0, CNTR_NORMAL,
4839 access_tx_launch_fifo8_unc_or_parity_err_cnt),
4840[C_TX_LAUNCH_FIFO7_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo7UncOrParityErr",
4841 0, 0, CNTR_NORMAL,
4842 access_tx_launch_fifo7_unc_or_parity_err_cnt),
4843[C_TX_LAUNCH_FIFO6_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo6UncOrParityErr",
4844 0, 0, CNTR_NORMAL,
4845 access_tx_launch_fifo6_unc_or_parity_err_cnt),
4846[C_TX_LAUNCH_FIFO5_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo5UncOrParityErr",
4847 0, 0, CNTR_NORMAL,
4848 access_tx_launch_fifo5_unc_or_parity_err_cnt),
4849[C_TX_LAUNCH_FIFO4_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo4UncOrParityErr",
4850 0, 0, CNTR_NORMAL,
4851 access_tx_launch_fifo4_unc_or_parity_err_cnt),
4852[C_TX_LAUNCH_FIFO3_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo3UncOrParityErr",
4853 0, 0, CNTR_NORMAL,
4854 access_tx_launch_fifo3_unc_or_parity_err_cnt),
4855[C_TX_LAUNCH_FIFO2_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo2UncOrParityErr",
4856 0, 0, CNTR_NORMAL,
4857 access_tx_launch_fifo2_unc_or_parity_err_cnt),
4858[C_TX_LAUNCH_FIFO1_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo1UncOrParityErr",
4859 0, 0, CNTR_NORMAL,
4860 access_tx_launch_fifo1_unc_or_parity_err_cnt),
4861[C_TX_LAUNCH_FIFO0_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo0UncOrParityErr",
4862 0, 0, CNTR_NORMAL,
4863 access_tx_launch_fifo0_unc_or_parity_err_cnt),
4864[C_TX_SDMA15_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma15DisallowedPacketErr",
4865 0, 0, CNTR_NORMAL,
4866 access_tx_sdma15_disallowed_packet_err_cnt),
4867[C_TX_SDMA14_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma14DisallowedPacketErr",
4868 0, 0, CNTR_NORMAL,
4869 access_tx_sdma14_disallowed_packet_err_cnt),
4870[C_TX_SDMA13_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma13DisallowedPacketErr",
4871 0, 0, CNTR_NORMAL,
4872 access_tx_sdma13_disallowed_packet_err_cnt),
4873[C_TX_SDMA12_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma12DisallowedPacketErr",
4874 0, 0, CNTR_NORMAL,
4875 access_tx_sdma12_disallowed_packet_err_cnt),
4876[C_TX_SDMA11_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma11DisallowedPacketErr",
4877 0, 0, CNTR_NORMAL,
4878 access_tx_sdma11_disallowed_packet_err_cnt),
4879[C_TX_SDMA10_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma10DisallowedPacketErr",
4880 0, 0, CNTR_NORMAL,
4881 access_tx_sdma10_disallowed_packet_err_cnt),
4882[C_TX_SDMA9_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma9DisallowedPacketErr",
4883 0, 0, CNTR_NORMAL,
4884 access_tx_sdma9_disallowed_packet_err_cnt),
4885[C_TX_SDMA8_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma8DisallowedPacketErr",
4886 0, 0, CNTR_NORMAL,
4887 access_tx_sdma8_disallowed_packet_err_cnt),
4888[C_TX_SDMA7_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma7DisallowedPacketErr",
4889 0, 0, CNTR_NORMAL,
4890 access_tx_sdma7_disallowed_packet_err_cnt),
4891[C_TX_SDMA6_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma6DisallowedPacketErr",
4892 0, 0, CNTR_NORMAL,
4893 access_tx_sdma6_disallowed_packet_err_cnt),
4894[C_TX_SDMA5_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma5DisallowedPacketErr",
4895 0, 0, CNTR_NORMAL,
4896 access_tx_sdma5_disallowed_packet_err_cnt),
4897[C_TX_SDMA4_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma4DisallowedPacketErr",
4898 0, 0, CNTR_NORMAL,
4899 access_tx_sdma4_disallowed_packet_err_cnt),
4900[C_TX_SDMA3_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma3DisallowedPacketErr",
4901 0, 0, CNTR_NORMAL,
4902 access_tx_sdma3_disallowed_packet_err_cnt),
4903[C_TX_SDMA2_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma2DisallowedPacketErr",
4904 0, 0, CNTR_NORMAL,
4905 access_tx_sdma2_disallowed_packet_err_cnt),
4906[C_TX_SDMA1_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma1DisallowedPacketErr",
4907 0, 0, CNTR_NORMAL,
4908 access_tx_sdma1_disallowed_packet_err_cnt),
4909[C_TX_SDMA0_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma0DisallowedPacketErr",
4910 0, 0, CNTR_NORMAL,
4911 access_tx_sdma0_disallowed_packet_err_cnt),
4912[C_TX_CONFIG_PARITY_ERR] = CNTR_ELEM("TxConfigParityErr", 0, 0,
4913 CNTR_NORMAL,
4914 access_tx_config_parity_err_cnt),
4915[C_TX_SBRD_CTL_CSR_PARITY_ERR] = CNTR_ELEM("TxSbrdCtlCsrParityErr", 0, 0,
4916 CNTR_NORMAL,
4917 access_tx_sbrd_ctl_csr_parity_err_cnt),
4918[C_TX_LAUNCH_CSR_PARITY_ERR] = CNTR_ELEM("TxLaunchCsrParityErr", 0, 0,
4919 CNTR_NORMAL,
4920 access_tx_launch_csr_parity_err_cnt),
4921[C_TX_ILLEGAL_CL_ERR] = CNTR_ELEM("TxIllegalVLErr", 0, 0,
4922 CNTR_NORMAL,
4923 access_tx_illegal_vl_err_cnt),
4924[C_TX_SBRD_CTL_STATE_MACHINE_PARITY_ERR] = CNTR_ELEM(
4925 "TxSbrdCtlStateMachineParityErr", 0, 0,
4926 CNTR_NORMAL,
4927 access_tx_sbrd_ctl_state_machine_parity_err_cnt),
4928[C_TX_RESERVED_10] = CNTR_ELEM("Tx Egress Reserved 10", 0, 0,
4929 CNTR_NORMAL,
4930 access_egress_reserved_10_err_cnt),
4931[C_TX_RESERVED_9] = CNTR_ELEM("Tx Egress Reserved 9", 0, 0,
4932 CNTR_NORMAL,
4933 access_egress_reserved_9_err_cnt),
4934[C_TX_SDMA_LAUNCH_INTF_PARITY_ERR] = CNTR_ELEM("TxSdmaLaunchIntfParityErr",
4935 0, 0, CNTR_NORMAL,
4936 access_tx_sdma_launch_intf_parity_err_cnt),
4937[C_TX_PIO_LAUNCH_INTF_PARITY_ERR] = CNTR_ELEM("TxPioLaunchIntfParityErr", 0, 0,
4938 CNTR_NORMAL,
4939 access_tx_pio_launch_intf_parity_err_cnt),
4940[C_TX_RESERVED_6] = CNTR_ELEM("Tx Egress Reserved 6", 0, 0,
4941 CNTR_NORMAL,
4942 access_egress_reserved_6_err_cnt),
4943[C_TX_INCORRECT_LINK_STATE_ERR] = CNTR_ELEM("TxIncorrectLinkStateErr", 0, 0,
4944 CNTR_NORMAL,
4945 access_tx_incorrect_link_state_err_cnt),
4946[C_TX_LINK_DOWN_ERR] = CNTR_ELEM("TxLinkdownErr", 0, 0,
4947 CNTR_NORMAL,
4948 access_tx_linkdown_err_cnt),
4949[C_TX_EGRESS_FIFO_UNDERRUN_OR_PARITY_ERR] = CNTR_ELEM(
4950 "EgressFifoUnderrunOrParityErr", 0, 0,
4951 CNTR_NORMAL,
4952 access_tx_egress_fifi_underrun_or_parity_err_cnt),
4953[C_TX_RESERVED_2] = CNTR_ELEM("Tx Egress Reserved 2", 0, 0,
4954 CNTR_NORMAL,
4955 access_egress_reserved_2_err_cnt),
4956[C_TX_PKT_INTEGRITY_MEM_UNC_ERR] = CNTR_ELEM("TxPktIntegrityMemUncErr", 0, 0,
4957 CNTR_NORMAL,
4958 access_tx_pkt_integrity_mem_unc_err_cnt),
4959[C_TX_PKT_INTEGRITY_MEM_COR_ERR] = CNTR_ELEM("TxPktIntegrityMemCorErr", 0, 0,
4960 CNTR_NORMAL,
4961 access_tx_pkt_integrity_mem_cor_err_cnt),
4962/* SendErrStatus */
4963[C_SEND_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("SendCsrWriteBadAddrErr", 0, 0,
4964 CNTR_NORMAL,
4965 access_send_csr_write_bad_addr_err_cnt),
4966[C_SEND_CSR_READ_BAD_ADD_ERR] = CNTR_ELEM("SendCsrReadBadAddrErr", 0, 0,
4967 CNTR_NORMAL,
4968 access_send_csr_read_bad_addr_err_cnt),
4969[C_SEND_CSR_PARITY_ERR] = CNTR_ELEM("SendCsrParityErr", 0, 0,
4970 CNTR_NORMAL,
4971 access_send_csr_parity_cnt),
4972/* SendCtxtErrStatus */
4973[C_PIO_WRITE_OUT_OF_BOUNDS_ERR] = CNTR_ELEM("PioWriteOutOfBoundsErr", 0, 0,
4974 CNTR_NORMAL,
4975 access_pio_write_out_of_bounds_err_cnt),
4976[C_PIO_WRITE_OVERFLOW_ERR] = CNTR_ELEM("PioWriteOverflowErr", 0, 0,
4977 CNTR_NORMAL,
4978 access_pio_write_overflow_err_cnt),
4979[C_PIO_WRITE_CROSSES_BOUNDARY_ERR] = CNTR_ELEM("PioWriteCrossesBoundaryErr",
4980 0, 0, CNTR_NORMAL,
4981 access_pio_write_crosses_boundary_err_cnt),
4982[C_PIO_DISALLOWED_PACKET_ERR] = CNTR_ELEM("PioDisallowedPacketErr", 0, 0,
4983 CNTR_NORMAL,
4984 access_pio_disallowed_packet_err_cnt),
4985[C_PIO_INCONSISTENT_SOP_ERR] = CNTR_ELEM("PioInconsistentSopErr", 0, 0,
4986 CNTR_NORMAL,
4987 access_pio_inconsistent_sop_err_cnt),
4988/* SendDmaEngErrStatus */
4989[C_SDMA_HEADER_REQUEST_FIFO_COR_ERR] = CNTR_ELEM("SDmaHeaderRequestFifoCorErr",
4990 0, 0, CNTR_NORMAL,
4991 access_sdma_header_request_fifo_cor_err_cnt),
4992[C_SDMA_HEADER_STORAGE_COR_ERR] = CNTR_ELEM("SDmaHeaderStorageCorErr", 0, 0,
4993 CNTR_NORMAL,
4994 access_sdma_header_storage_cor_err_cnt),
4995[C_SDMA_PACKET_TRACKING_COR_ERR] = CNTR_ELEM("SDmaPacketTrackingCorErr", 0, 0,
4996 CNTR_NORMAL,
4997 access_sdma_packet_tracking_cor_err_cnt),
4998[C_SDMA_ASSEMBLY_COR_ERR] = CNTR_ELEM("SDmaAssemblyCorErr", 0, 0,
4999 CNTR_NORMAL,
5000 access_sdma_assembly_cor_err_cnt),
5001[C_SDMA_DESC_TABLE_COR_ERR] = CNTR_ELEM("SDmaDescTableCorErr", 0, 0,
5002 CNTR_NORMAL,
5003 access_sdma_desc_table_cor_err_cnt),
5004[C_SDMA_HEADER_REQUEST_FIFO_UNC_ERR] = CNTR_ELEM("SDmaHeaderRequestFifoUncErr",
5005 0, 0, CNTR_NORMAL,
5006 access_sdma_header_request_fifo_unc_err_cnt),
5007[C_SDMA_HEADER_STORAGE_UNC_ERR] = CNTR_ELEM("SDmaHeaderStorageUncErr", 0, 0,
5008 CNTR_NORMAL,
5009 access_sdma_header_storage_unc_err_cnt),
5010[C_SDMA_PACKET_TRACKING_UNC_ERR] = CNTR_ELEM("SDmaPacketTrackingUncErr", 0, 0,
5011 CNTR_NORMAL,
5012 access_sdma_packet_tracking_unc_err_cnt),
5013[C_SDMA_ASSEMBLY_UNC_ERR] = CNTR_ELEM("SDmaAssemblyUncErr", 0, 0,
5014 CNTR_NORMAL,
5015 access_sdma_assembly_unc_err_cnt),
5016[C_SDMA_DESC_TABLE_UNC_ERR] = CNTR_ELEM("SDmaDescTableUncErr", 0, 0,
5017 CNTR_NORMAL,
5018 access_sdma_desc_table_unc_err_cnt),
5019[C_SDMA_TIMEOUT_ERR] = CNTR_ELEM("SDmaTimeoutErr", 0, 0,
5020 CNTR_NORMAL,
5021 access_sdma_timeout_err_cnt),
5022[C_SDMA_HEADER_LENGTH_ERR] = CNTR_ELEM("SDmaHeaderLengthErr", 0, 0,
5023 CNTR_NORMAL,
5024 access_sdma_header_length_err_cnt),
5025[C_SDMA_HEADER_ADDRESS_ERR] = CNTR_ELEM("SDmaHeaderAddressErr", 0, 0,
5026 CNTR_NORMAL,
5027 access_sdma_header_address_err_cnt),
5028[C_SDMA_HEADER_SELECT_ERR] = CNTR_ELEM("SDmaHeaderSelectErr", 0, 0,
5029 CNTR_NORMAL,
5030 access_sdma_header_select_err_cnt),
5031[C_SMDA_RESERVED_9] = CNTR_ELEM("SDma Reserved 9", 0, 0,
5032 CNTR_NORMAL,
5033 access_sdma_reserved_9_err_cnt),
5034[C_SDMA_PACKET_DESC_OVERFLOW_ERR] = CNTR_ELEM("SDmaPacketDescOverflowErr", 0, 0,
5035 CNTR_NORMAL,
5036 access_sdma_packet_desc_overflow_err_cnt),
5037[C_SDMA_LENGTH_MISMATCH_ERR] = CNTR_ELEM("SDmaLengthMismatchErr", 0, 0,
5038 CNTR_NORMAL,
5039 access_sdma_length_mismatch_err_cnt),
5040[C_SDMA_HALT_ERR] = CNTR_ELEM("SDmaHaltErr", 0, 0,
5041 CNTR_NORMAL,
5042 access_sdma_halt_err_cnt),
5043[C_SDMA_MEM_READ_ERR] = CNTR_ELEM("SDmaMemReadErr", 0, 0,
5044 CNTR_NORMAL,
5045 access_sdma_mem_read_err_cnt),
5046[C_SDMA_FIRST_DESC_ERR] = CNTR_ELEM("SDmaFirstDescErr", 0, 0,
5047 CNTR_NORMAL,
5048 access_sdma_first_desc_err_cnt),
5049[C_SDMA_TAIL_OUT_OF_BOUNDS_ERR] = CNTR_ELEM("SDmaTailOutOfBoundsErr", 0, 0,
5050 CNTR_NORMAL,
5051 access_sdma_tail_out_of_bounds_err_cnt),
5052[C_SDMA_TOO_LONG_ERR] = CNTR_ELEM("SDmaTooLongErr", 0, 0,
5053 CNTR_NORMAL,
5054 access_sdma_too_long_err_cnt),
5055[C_SDMA_GEN_MISMATCH_ERR] = CNTR_ELEM("SDmaGenMismatchErr", 0, 0,
5056 CNTR_NORMAL,
5057 access_sdma_gen_mismatch_err_cnt),
5058[C_SDMA_WRONG_DW_ERR] = CNTR_ELEM("SDmaWrongDwErr", 0, 0,
5059 CNTR_NORMAL,
5060 access_sdma_wrong_dw_err_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005061};
5062
5063static struct cntr_entry port_cntrs[PORT_CNTR_LAST] = {
5064[C_TX_UNSUP_VL] = TXE32_PORT_CNTR_ELEM(TxUnVLErr, SEND_UNSUP_VL_ERR_CNT,
5065 CNTR_NORMAL),
5066[C_TX_INVAL_LEN] = TXE32_PORT_CNTR_ELEM(TxInvalLen, SEND_LEN_ERR_CNT,
5067 CNTR_NORMAL),
5068[C_TX_MM_LEN_ERR] = TXE32_PORT_CNTR_ELEM(TxMMLenErr, SEND_MAX_MIN_LEN_ERR_CNT,
5069 CNTR_NORMAL),
5070[C_TX_UNDERRUN] = TXE32_PORT_CNTR_ELEM(TxUnderrun, SEND_UNDERRUN_CNT,
5071 CNTR_NORMAL),
5072[C_TX_FLOW_STALL] = TXE32_PORT_CNTR_ELEM(TxFlowStall, SEND_FLOW_STALL_CNT,
5073 CNTR_NORMAL),
5074[C_TX_DROPPED] = TXE32_PORT_CNTR_ELEM(TxDropped, SEND_DROPPED_PKT_CNT,
5075 CNTR_NORMAL),
5076[C_TX_HDR_ERR] = TXE32_PORT_CNTR_ELEM(TxHdrErr, SEND_HEADERS_ERR_CNT,
5077 CNTR_NORMAL),
5078[C_TX_PKT] = TXE64_PORT_CNTR_ELEM(TxPkt, SEND_DATA_PKT_CNT, CNTR_NORMAL),
5079[C_TX_WORDS] = TXE64_PORT_CNTR_ELEM(TxWords, SEND_DWORD_CNT, CNTR_NORMAL),
5080[C_TX_WAIT] = TXE64_PORT_CNTR_ELEM(TxWait, SEND_WAIT_CNT, CNTR_SYNTH),
5081[C_TX_FLIT_VL] = TXE64_PORT_CNTR_ELEM(TxFlitVL, SEND_DATA_VL0_CNT,
Jubin John17fb4f22016-02-14 20:21:52 -08005082 CNTR_SYNTH | CNTR_VL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005083[C_TX_PKT_VL] = TXE64_PORT_CNTR_ELEM(TxPktVL, SEND_DATA_PKT_VL0_CNT,
Jubin John17fb4f22016-02-14 20:21:52 -08005084 CNTR_SYNTH | CNTR_VL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005085[C_TX_WAIT_VL] = TXE64_PORT_CNTR_ELEM(TxWaitVL, SEND_WAIT_VL0_CNT,
Jubin John17fb4f22016-02-14 20:21:52 -08005086 CNTR_SYNTH | CNTR_VL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005087[C_RX_PKT] = RXE64_PORT_CNTR_ELEM(RxPkt, RCV_DATA_PKT_CNT, CNTR_NORMAL),
5088[C_RX_WORDS] = RXE64_PORT_CNTR_ELEM(RxWords, RCV_DWORD_CNT, CNTR_NORMAL),
5089[C_SW_LINK_DOWN] = CNTR_ELEM("SwLinkDown", 0, 0, CNTR_SYNTH | CNTR_32BIT,
Jubin John17fb4f22016-02-14 20:21:52 -08005090 access_sw_link_dn_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005091[C_SW_LINK_UP] = CNTR_ELEM("SwLinkUp", 0, 0, CNTR_SYNTH | CNTR_32BIT,
Jubin John17fb4f22016-02-14 20:21:52 -08005092 access_sw_link_up_cnt),
Dean Luick6d014532015-12-01 15:38:23 -05005093[C_SW_UNKNOWN_FRAME] = CNTR_ELEM("UnknownFrame", 0, 0, CNTR_NORMAL,
5094 access_sw_unknown_frame_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005095[C_SW_XMIT_DSCD] = CNTR_ELEM("XmitDscd", 0, 0, CNTR_SYNTH | CNTR_32BIT,
Jubin John17fb4f22016-02-14 20:21:52 -08005096 access_sw_xmit_discards),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005097[C_SW_XMIT_DSCD_VL] = CNTR_ELEM("XmitDscdVl", 0, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08005098 CNTR_SYNTH | CNTR_32BIT | CNTR_VL,
5099 access_sw_xmit_discards),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005100[C_SW_XMIT_CSTR_ERR] = CNTR_ELEM("XmitCstrErr", 0, 0, CNTR_SYNTH,
Jubin John17fb4f22016-02-14 20:21:52 -08005101 access_xmit_constraint_errs),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005102[C_SW_RCV_CSTR_ERR] = CNTR_ELEM("RcvCstrErr", 0, 0, CNTR_SYNTH,
Jubin John17fb4f22016-02-14 20:21:52 -08005103 access_rcv_constraint_errs),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005104[C_SW_IBP_LOOP_PKTS] = SW_IBP_CNTR(LoopPkts, loop_pkts),
5105[C_SW_IBP_RC_RESENDS] = SW_IBP_CNTR(RcResend, rc_resends),
5106[C_SW_IBP_RNR_NAKS] = SW_IBP_CNTR(RnrNak, rnr_naks),
5107[C_SW_IBP_OTHER_NAKS] = SW_IBP_CNTR(OtherNak, other_naks),
5108[C_SW_IBP_RC_TIMEOUTS] = SW_IBP_CNTR(RcTimeOut, rc_timeouts),
5109[C_SW_IBP_PKT_DROPS] = SW_IBP_CNTR(PktDrop, pkt_drops),
5110[C_SW_IBP_DMA_WAIT] = SW_IBP_CNTR(DmaWait, dmawait),
5111[C_SW_IBP_RC_SEQNAK] = SW_IBP_CNTR(RcSeqNak, rc_seqnak),
5112[C_SW_IBP_RC_DUPREQ] = SW_IBP_CNTR(RcDupRew, rc_dupreq),
5113[C_SW_IBP_RDMA_SEQ] = SW_IBP_CNTR(RdmaSeq, rdma_seq),
5114[C_SW_IBP_UNALIGNED] = SW_IBP_CNTR(Unaligned, unaligned),
5115[C_SW_IBP_SEQ_NAK] = SW_IBP_CNTR(SeqNak, seq_naks),
5116[C_SW_CPU_RC_ACKS] = CNTR_ELEM("RcAcks", 0, 0, CNTR_NORMAL,
5117 access_sw_cpu_rc_acks),
5118[C_SW_CPU_RC_QACKS] = CNTR_ELEM("RcQacks", 0, 0, CNTR_NORMAL,
Jubin John17fb4f22016-02-14 20:21:52 -08005119 access_sw_cpu_rc_qacks),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005120[C_SW_CPU_RC_DELAYED_COMP] = CNTR_ELEM("RcDelayComp", 0, 0, CNTR_NORMAL,
Jubin John17fb4f22016-02-14 20:21:52 -08005121 access_sw_cpu_rc_delayed_comp),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005122[OVR_LBL(0)] = OVR_ELM(0), [OVR_LBL(1)] = OVR_ELM(1),
5123[OVR_LBL(2)] = OVR_ELM(2), [OVR_LBL(3)] = OVR_ELM(3),
5124[OVR_LBL(4)] = OVR_ELM(4), [OVR_LBL(5)] = OVR_ELM(5),
5125[OVR_LBL(6)] = OVR_ELM(6), [OVR_LBL(7)] = OVR_ELM(7),
5126[OVR_LBL(8)] = OVR_ELM(8), [OVR_LBL(9)] = OVR_ELM(9),
5127[OVR_LBL(10)] = OVR_ELM(10), [OVR_LBL(11)] = OVR_ELM(11),
5128[OVR_LBL(12)] = OVR_ELM(12), [OVR_LBL(13)] = OVR_ELM(13),
5129[OVR_LBL(14)] = OVR_ELM(14), [OVR_LBL(15)] = OVR_ELM(15),
5130[OVR_LBL(16)] = OVR_ELM(16), [OVR_LBL(17)] = OVR_ELM(17),
5131[OVR_LBL(18)] = OVR_ELM(18), [OVR_LBL(19)] = OVR_ELM(19),
5132[OVR_LBL(20)] = OVR_ELM(20), [OVR_LBL(21)] = OVR_ELM(21),
5133[OVR_LBL(22)] = OVR_ELM(22), [OVR_LBL(23)] = OVR_ELM(23),
5134[OVR_LBL(24)] = OVR_ELM(24), [OVR_LBL(25)] = OVR_ELM(25),
5135[OVR_LBL(26)] = OVR_ELM(26), [OVR_LBL(27)] = OVR_ELM(27),
5136[OVR_LBL(28)] = OVR_ELM(28), [OVR_LBL(29)] = OVR_ELM(29),
5137[OVR_LBL(30)] = OVR_ELM(30), [OVR_LBL(31)] = OVR_ELM(31),
5138[OVR_LBL(32)] = OVR_ELM(32), [OVR_LBL(33)] = OVR_ELM(33),
5139[OVR_LBL(34)] = OVR_ELM(34), [OVR_LBL(35)] = OVR_ELM(35),
5140[OVR_LBL(36)] = OVR_ELM(36), [OVR_LBL(37)] = OVR_ELM(37),
5141[OVR_LBL(38)] = OVR_ELM(38), [OVR_LBL(39)] = OVR_ELM(39),
5142[OVR_LBL(40)] = OVR_ELM(40), [OVR_LBL(41)] = OVR_ELM(41),
5143[OVR_LBL(42)] = OVR_ELM(42), [OVR_LBL(43)] = OVR_ELM(43),
5144[OVR_LBL(44)] = OVR_ELM(44), [OVR_LBL(45)] = OVR_ELM(45),
5145[OVR_LBL(46)] = OVR_ELM(46), [OVR_LBL(47)] = OVR_ELM(47),
5146[OVR_LBL(48)] = OVR_ELM(48), [OVR_LBL(49)] = OVR_ELM(49),
5147[OVR_LBL(50)] = OVR_ELM(50), [OVR_LBL(51)] = OVR_ELM(51),
5148[OVR_LBL(52)] = OVR_ELM(52), [OVR_LBL(53)] = OVR_ELM(53),
5149[OVR_LBL(54)] = OVR_ELM(54), [OVR_LBL(55)] = OVR_ELM(55),
5150[OVR_LBL(56)] = OVR_ELM(56), [OVR_LBL(57)] = OVR_ELM(57),
5151[OVR_LBL(58)] = OVR_ELM(58), [OVR_LBL(59)] = OVR_ELM(59),
5152[OVR_LBL(60)] = OVR_ELM(60), [OVR_LBL(61)] = OVR_ELM(61),
5153[OVR_LBL(62)] = OVR_ELM(62), [OVR_LBL(63)] = OVR_ELM(63),
5154[OVR_LBL(64)] = OVR_ELM(64), [OVR_LBL(65)] = OVR_ELM(65),
5155[OVR_LBL(66)] = OVR_ELM(66), [OVR_LBL(67)] = OVR_ELM(67),
5156[OVR_LBL(68)] = OVR_ELM(68), [OVR_LBL(69)] = OVR_ELM(69),
5157[OVR_LBL(70)] = OVR_ELM(70), [OVR_LBL(71)] = OVR_ELM(71),
5158[OVR_LBL(72)] = OVR_ELM(72), [OVR_LBL(73)] = OVR_ELM(73),
5159[OVR_LBL(74)] = OVR_ELM(74), [OVR_LBL(75)] = OVR_ELM(75),
5160[OVR_LBL(76)] = OVR_ELM(76), [OVR_LBL(77)] = OVR_ELM(77),
5161[OVR_LBL(78)] = OVR_ELM(78), [OVR_LBL(79)] = OVR_ELM(79),
5162[OVR_LBL(80)] = OVR_ELM(80), [OVR_LBL(81)] = OVR_ELM(81),
5163[OVR_LBL(82)] = OVR_ELM(82), [OVR_LBL(83)] = OVR_ELM(83),
5164[OVR_LBL(84)] = OVR_ELM(84), [OVR_LBL(85)] = OVR_ELM(85),
5165[OVR_LBL(86)] = OVR_ELM(86), [OVR_LBL(87)] = OVR_ELM(87),
5166[OVR_LBL(88)] = OVR_ELM(88), [OVR_LBL(89)] = OVR_ELM(89),
5167[OVR_LBL(90)] = OVR_ELM(90), [OVR_LBL(91)] = OVR_ELM(91),
5168[OVR_LBL(92)] = OVR_ELM(92), [OVR_LBL(93)] = OVR_ELM(93),
5169[OVR_LBL(94)] = OVR_ELM(94), [OVR_LBL(95)] = OVR_ELM(95),
5170[OVR_LBL(96)] = OVR_ELM(96), [OVR_LBL(97)] = OVR_ELM(97),
5171[OVR_LBL(98)] = OVR_ELM(98), [OVR_LBL(99)] = OVR_ELM(99),
5172[OVR_LBL(100)] = OVR_ELM(100), [OVR_LBL(101)] = OVR_ELM(101),
5173[OVR_LBL(102)] = OVR_ELM(102), [OVR_LBL(103)] = OVR_ELM(103),
5174[OVR_LBL(104)] = OVR_ELM(104), [OVR_LBL(105)] = OVR_ELM(105),
5175[OVR_LBL(106)] = OVR_ELM(106), [OVR_LBL(107)] = OVR_ELM(107),
5176[OVR_LBL(108)] = OVR_ELM(108), [OVR_LBL(109)] = OVR_ELM(109),
5177[OVR_LBL(110)] = OVR_ELM(110), [OVR_LBL(111)] = OVR_ELM(111),
5178[OVR_LBL(112)] = OVR_ELM(112), [OVR_LBL(113)] = OVR_ELM(113),
5179[OVR_LBL(114)] = OVR_ELM(114), [OVR_LBL(115)] = OVR_ELM(115),
5180[OVR_LBL(116)] = OVR_ELM(116), [OVR_LBL(117)] = OVR_ELM(117),
5181[OVR_LBL(118)] = OVR_ELM(118), [OVR_LBL(119)] = OVR_ELM(119),
5182[OVR_LBL(120)] = OVR_ELM(120), [OVR_LBL(121)] = OVR_ELM(121),
5183[OVR_LBL(122)] = OVR_ELM(122), [OVR_LBL(123)] = OVR_ELM(123),
5184[OVR_LBL(124)] = OVR_ELM(124), [OVR_LBL(125)] = OVR_ELM(125),
5185[OVR_LBL(126)] = OVR_ELM(126), [OVR_LBL(127)] = OVR_ELM(127),
5186[OVR_LBL(128)] = OVR_ELM(128), [OVR_LBL(129)] = OVR_ELM(129),
5187[OVR_LBL(130)] = OVR_ELM(130), [OVR_LBL(131)] = OVR_ELM(131),
5188[OVR_LBL(132)] = OVR_ELM(132), [OVR_LBL(133)] = OVR_ELM(133),
5189[OVR_LBL(134)] = OVR_ELM(134), [OVR_LBL(135)] = OVR_ELM(135),
5190[OVR_LBL(136)] = OVR_ELM(136), [OVR_LBL(137)] = OVR_ELM(137),
5191[OVR_LBL(138)] = OVR_ELM(138), [OVR_LBL(139)] = OVR_ELM(139),
5192[OVR_LBL(140)] = OVR_ELM(140), [OVR_LBL(141)] = OVR_ELM(141),
5193[OVR_LBL(142)] = OVR_ELM(142), [OVR_LBL(143)] = OVR_ELM(143),
5194[OVR_LBL(144)] = OVR_ELM(144), [OVR_LBL(145)] = OVR_ELM(145),
5195[OVR_LBL(146)] = OVR_ELM(146), [OVR_LBL(147)] = OVR_ELM(147),
5196[OVR_LBL(148)] = OVR_ELM(148), [OVR_LBL(149)] = OVR_ELM(149),
5197[OVR_LBL(150)] = OVR_ELM(150), [OVR_LBL(151)] = OVR_ELM(151),
5198[OVR_LBL(152)] = OVR_ELM(152), [OVR_LBL(153)] = OVR_ELM(153),
5199[OVR_LBL(154)] = OVR_ELM(154), [OVR_LBL(155)] = OVR_ELM(155),
5200[OVR_LBL(156)] = OVR_ELM(156), [OVR_LBL(157)] = OVR_ELM(157),
5201[OVR_LBL(158)] = OVR_ELM(158), [OVR_LBL(159)] = OVR_ELM(159),
5202};
5203
5204/* ======================================================================== */
5205
Mike Marciniszyn77241052015-07-30 15:17:43 -04005206/* return true if this is chip revision revision a */
5207int is_ax(struct hfi1_devdata *dd)
5208{
5209 u8 chip_rev_minor =
5210 dd->revision >> CCE_REVISION_CHIP_REV_MINOR_SHIFT
5211 & CCE_REVISION_CHIP_REV_MINOR_MASK;
5212 return (chip_rev_minor & 0xf0) == 0;
5213}
5214
5215/* return true if this is chip revision revision b */
5216int is_bx(struct hfi1_devdata *dd)
5217{
5218 u8 chip_rev_minor =
5219 dd->revision >> CCE_REVISION_CHIP_REV_MINOR_SHIFT
5220 & CCE_REVISION_CHIP_REV_MINOR_MASK;
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05005221 return (chip_rev_minor & 0xF0) == 0x10;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005222}
5223
5224/*
5225 * Append string s to buffer buf. Arguments curp and len are the current
5226 * position and remaining length, respectively.
5227 *
5228 * return 0 on success, 1 on out of room
5229 */
5230static int append_str(char *buf, char **curp, int *lenp, const char *s)
5231{
5232 char *p = *curp;
5233 int len = *lenp;
5234 int result = 0; /* success */
5235 char c;
5236
5237 /* add a comma, if first in the buffer */
5238 if (p != buf) {
5239 if (len == 0) {
5240 result = 1; /* out of room */
5241 goto done;
5242 }
5243 *p++ = ',';
5244 len--;
5245 }
5246
5247 /* copy the string */
5248 while ((c = *s++) != 0) {
5249 if (len == 0) {
5250 result = 1; /* out of room */
5251 goto done;
5252 }
5253 *p++ = c;
5254 len--;
5255 }
5256
5257done:
5258 /* write return values */
5259 *curp = p;
5260 *lenp = len;
5261
5262 return result;
5263}
5264
5265/*
5266 * Using the given flag table, print a comma separated string into
5267 * the buffer. End in '*' if the buffer is too short.
5268 */
5269static char *flag_string(char *buf, int buf_len, u64 flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005270 struct flag_table *table, int table_size)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005271{
5272 char extra[32];
5273 char *p = buf;
5274 int len = buf_len;
5275 int no_room = 0;
5276 int i;
5277
5278 /* make sure there is at least 2 so we can form "*" */
5279 if (len < 2)
5280 return "";
5281
5282 len--; /* leave room for a nul */
5283 for (i = 0; i < table_size; i++) {
5284 if (flags & table[i].flag) {
5285 no_room = append_str(buf, &p, &len, table[i].str);
5286 if (no_room)
5287 break;
5288 flags &= ~table[i].flag;
5289 }
5290 }
5291
5292 /* any undocumented bits left? */
5293 if (!no_room && flags) {
5294 snprintf(extra, sizeof(extra), "bits 0x%llx", flags);
5295 no_room = append_str(buf, &p, &len, extra);
5296 }
5297
5298 /* add * if ran out of room */
5299 if (no_room) {
5300 /* may need to back up to add space for a '*' */
5301 if (len == 0)
5302 --p;
5303 *p++ = '*';
5304 }
5305
5306 /* add final nul - space already allocated above */
5307 *p = 0;
5308 return buf;
5309}
5310
5311/* first 8 CCE error interrupt source names */
5312static const char * const cce_misc_names[] = {
5313 "CceErrInt", /* 0 */
5314 "RxeErrInt", /* 1 */
5315 "MiscErrInt", /* 2 */
5316 "Reserved3", /* 3 */
5317 "PioErrInt", /* 4 */
5318 "SDmaErrInt", /* 5 */
5319 "EgressErrInt", /* 6 */
5320 "TxeErrInt" /* 7 */
5321};
5322
5323/*
5324 * Return the miscellaneous error interrupt name.
5325 */
5326static char *is_misc_err_name(char *buf, size_t bsize, unsigned int source)
5327{
5328 if (source < ARRAY_SIZE(cce_misc_names))
5329 strncpy(buf, cce_misc_names[source], bsize);
5330 else
Jubin John17fb4f22016-02-14 20:21:52 -08005331 snprintf(buf, bsize, "Reserved%u",
5332 source + IS_GENERAL_ERR_START);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005333
5334 return buf;
5335}
5336
5337/*
5338 * Return the SDMA engine error interrupt name.
5339 */
5340static char *is_sdma_eng_err_name(char *buf, size_t bsize, unsigned int source)
5341{
5342 snprintf(buf, bsize, "SDmaEngErrInt%u", source);
5343 return buf;
5344}
5345
5346/*
5347 * Return the send context error interrupt name.
5348 */
5349static char *is_sendctxt_err_name(char *buf, size_t bsize, unsigned int source)
5350{
5351 snprintf(buf, bsize, "SendCtxtErrInt%u", source);
5352 return buf;
5353}
5354
5355static const char * const various_names[] = {
5356 "PbcInt",
5357 "GpioAssertInt",
5358 "Qsfp1Int",
5359 "Qsfp2Int",
5360 "TCritInt"
5361};
5362
5363/*
5364 * Return the various interrupt name.
5365 */
5366static char *is_various_name(char *buf, size_t bsize, unsigned int source)
5367{
5368 if (source < ARRAY_SIZE(various_names))
5369 strncpy(buf, various_names[source], bsize);
5370 else
Jubin John8638b772016-02-14 20:19:24 -08005371 snprintf(buf, bsize, "Reserved%u", source + IS_VARIOUS_START);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005372 return buf;
5373}
5374
5375/*
5376 * Return the DC interrupt name.
5377 */
5378static char *is_dc_name(char *buf, size_t bsize, unsigned int source)
5379{
5380 static const char * const dc_int_names[] = {
5381 "common",
5382 "lcb",
5383 "8051",
5384 "lbm" /* local block merge */
5385 };
5386
5387 if (source < ARRAY_SIZE(dc_int_names))
5388 snprintf(buf, bsize, "dc_%s_int", dc_int_names[source]);
5389 else
5390 snprintf(buf, bsize, "DCInt%u", source);
5391 return buf;
5392}
5393
5394static const char * const sdma_int_names[] = {
5395 "SDmaInt",
5396 "SdmaIdleInt",
5397 "SdmaProgressInt",
5398};
5399
5400/*
5401 * Return the SDMA engine interrupt name.
5402 */
5403static char *is_sdma_eng_name(char *buf, size_t bsize, unsigned int source)
5404{
5405 /* what interrupt */
5406 unsigned int what = source / TXE_NUM_SDMA_ENGINES;
5407 /* which engine */
5408 unsigned int which = source % TXE_NUM_SDMA_ENGINES;
5409
5410 if (likely(what < 3))
5411 snprintf(buf, bsize, "%s%u", sdma_int_names[what], which);
5412 else
5413 snprintf(buf, bsize, "Invalid SDMA interrupt %u", source);
5414 return buf;
5415}
5416
5417/*
5418 * Return the receive available interrupt name.
5419 */
5420static char *is_rcv_avail_name(char *buf, size_t bsize, unsigned int source)
5421{
5422 snprintf(buf, bsize, "RcvAvailInt%u", source);
5423 return buf;
5424}
5425
5426/*
5427 * Return the receive urgent interrupt name.
5428 */
5429static char *is_rcv_urgent_name(char *buf, size_t bsize, unsigned int source)
5430{
5431 snprintf(buf, bsize, "RcvUrgentInt%u", source);
5432 return buf;
5433}
5434
5435/*
5436 * Return the send credit interrupt name.
5437 */
5438static char *is_send_credit_name(char *buf, size_t bsize, unsigned int source)
5439{
5440 snprintf(buf, bsize, "SendCreditInt%u", source);
5441 return buf;
5442}
5443
5444/*
5445 * Return the reserved interrupt name.
5446 */
5447static char *is_reserved_name(char *buf, size_t bsize, unsigned int source)
5448{
5449 snprintf(buf, bsize, "Reserved%u", source + IS_RESERVED_START);
5450 return buf;
5451}
5452
5453static char *cce_err_status_string(char *buf, int buf_len, u64 flags)
5454{
5455 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005456 cce_err_status_flags,
5457 ARRAY_SIZE(cce_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005458}
5459
5460static char *rxe_err_status_string(char *buf, int buf_len, u64 flags)
5461{
5462 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005463 rxe_err_status_flags,
5464 ARRAY_SIZE(rxe_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005465}
5466
5467static char *misc_err_status_string(char *buf, int buf_len, u64 flags)
5468{
5469 return flag_string(buf, buf_len, flags, misc_err_status_flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005470 ARRAY_SIZE(misc_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005471}
5472
5473static char *pio_err_status_string(char *buf, int buf_len, u64 flags)
5474{
5475 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005476 pio_err_status_flags,
5477 ARRAY_SIZE(pio_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005478}
5479
5480static char *sdma_err_status_string(char *buf, int buf_len, u64 flags)
5481{
5482 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005483 sdma_err_status_flags,
5484 ARRAY_SIZE(sdma_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005485}
5486
5487static char *egress_err_status_string(char *buf, int buf_len, u64 flags)
5488{
5489 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005490 egress_err_status_flags,
5491 ARRAY_SIZE(egress_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005492}
5493
5494static char *egress_err_info_string(char *buf, int buf_len, u64 flags)
5495{
5496 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005497 egress_err_info_flags,
5498 ARRAY_SIZE(egress_err_info_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005499}
5500
5501static char *send_err_status_string(char *buf, int buf_len, u64 flags)
5502{
5503 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005504 send_err_status_flags,
5505 ARRAY_SIZE(send_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005506}
5507
5508static void handle_cce_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5509{
5510 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005511 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005512
5513 /*
5514 * For most these errors, there is nothing that can be done except
5515 * report or record it.
5516 */
5517 dd_dev_info(dd, "CCE Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005518 cce_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005519
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05005520 if ((reg & CCE_ERR_STATUS_CCE_CLI2_ASYNC_FIFO_PARITY_ERR_SMASK) &&
5521 is_ax(dd) && (dd->icode != ICODE_FUNCTIONAL_SIMULATOR)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04005522 /* this error requires a manual drop into SPC freeze mode */
5523 /* then a fix up */
5524 start_freeze_handling(dd->pport, FREEZE_SELF);
5525 }
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005526
5527 for (i = 0; i < NUM_CCE_ERR_STATUS_COUNTERS; i++) {
5528 if (reg & (1ull << i)) {
5529 incr_cntr64(&dd->cce_err_status_cnt[i]);
5530 /* maintain a counter over all cce_err_status errors */
5531 incr_cntr64(&dd->sw_cce_err_status_aggregate);
5532 }
5533 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005534}
5535
5536/*
5537 * Check counters for receive errors that do not have an interrupt
5538 * associated with them.
5539 */
5540#define RCVERR_CHECK_TIME 10
Kees Cook80641352017-10-16 15:51:54 -07005541static void update_rcverr_timer(struct timer_list *t)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005542{
Kees Cook80641352017-10-16 15:51:54 -07005543 struct hfi1_devdata *dd = from_timer(dd, t, rcverr_timer);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005544 struct hfi1_pportdata *ppd = dd->pport;
5545 u32 cur_ovfl_cnt = read_dev_cntr(dd, C_RCV_OVF, CNTR_INVALID_VL);
5546
5547 if (dd->rcv_ovfl_cnt < cur_ovfl_cnt &&
Jubin John17fb4f22016-02-14 20:21:52 -08005548 ppd->port_error_action & OPA_PI_MASK_EX_BUFFER_OVERRUN) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04005549 dd_dev_info(dd, "%s: PortErrorAction bounce\n", __func__);
Jubin John17fb4f22016-02-14 20:21:52 -08005550 set_link_down_reason(
5551 ppd, OPA_LINKDOWN_REASON_EXCESSIVE_BUFFER_OVERRUN, 0,
5552 OPA_LINKDOWN_REASON_EXCESSIVE_BUFFER_OVERRUN);
Sebastian Sanchez71d47002017-07-29 08:43:49 -07005553 queue_work(ppd->link_wq, &ppd->link_bounce_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005554 }
Jubin John50e5dcb2016-02-14 20:19:41 -08005555 dd->rcv_ovfl_cnt = (u32)cur_ovfl_cnt;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005556
5557 mod_timer(&dd->rcverr_timer, jiffies + HZ * RCVERR_CHECK_TIME);
5558}
5559
5560static int init_rcverr(struct hfi1_devdata *dd)
5561{
Kees Cook80641352017-10-16 15:51:54 -07005562 timer_setup(&dd->rcverr_timer, update_rcverr_timer, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005563 /* Assume the hardware counter has been reset */
5564 dd->rcv_ovfl_cnt = 0;
5565 return mod_timer(&dd->rcverr_timer, jiffies + HZ * RCVERR_CHECK_TIME);
5566}
5567
5568static void free_rcverr(struct hfi1_devdata *dd)
5569{
Kees Cook80641352017-10-16 15:51:54 -07005570 if (dd->rcverr_timer.function)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005571 del_timer_sync(&dd->rcverr_timer);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005572}
5573
5574static void handle_rxe_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5575{
5576 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005577 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005578
5579 dd_dev_info(dd, "Receive Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005580 rxe_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005581
5582 if (reg & ALL_RXE_FREEZE_ERR) {
5583 int flags = 0;
5584
5585 /*
5586 * Freeze mode recovery is disabled for the errors
5587 * in RXE_FREEZE_ABORT_MASK
5588 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05005589 if (is_ax(dd) && (reg & RXE_FREEZE_ABORT_MASK))
Mike Marciniszyn77241052015-07-30 15:17:43 -04005590 flags = FREEZE_ABORT;
5591
5592 start_freeze_handling(dd->pport, flags);
5593 }
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005594
5595 for (i = 0; i < NUM_RCV_ERR_STATUS_COUNTERS; i++) {
5596 if (reg & (1ull << i))
5597 incr_cntr64(&dd->rcv_err_status_cnt[i]);
5598 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005599}
5600
5601static void handle_misc_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5602{
5603 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005604 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005605
5606 dd_dev_info(dd, "Misc Error: %s",
Jubin John17fb4f22016-02-14 20:21:52 -08005607 misc_err_status_string(buf, sizeof(buf), reg));
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005608 for (i = 0; i < NUM_MISC_ERR_STATUS_COUNTERS; i++) {
5609 if (reg & (1ull << i))
5610 incr_cntr64(&dd->misc_err_status_cnt[i]);
5611 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005612}
5613
5614static void handle_pio_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5615{
5616 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005617 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005618
5619 dd_dev_info(dd, "PIO Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005620 pio_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005621
5622 if (reg & ALL_PIO_FREEZE_ERR)
5623 start_freeze_handling(dd->pport, 0);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005624
5625 for (i = 0; i < NUM_SEND_PIO_ERR_STATUS_COUNTERS; i++) {
5626 if (reg & (1ull << i))
5627 incr_cntr64(&dd->send_pio_err_status_cnt[i]);
5628 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005629}
5630
5631static void handle_sdma_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5632{
5633 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005634 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005635
5636 dd_dev_info(dd, "SDMA Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005637 sdma_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005638
5639 if (reg & ALL_SDMA_FREEZE_ERR)
5640 start_freeze_handling(dd->pport, 0);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005641
5642 for (i = 0; i < NUM_SEND_DMA_ERR_STATUS_COUNTERS; i++) {
5643 if (reg & (1ull << i))
5644 incr_cntr64(&dd->send_dma_err_status_cnt[i]);
5645 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005646}
5647
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005648static inline void __count_port_discards(struct hfi1_pportdata *ppd)
5649{
5650 incr_cntr64(&ppd->port_xmit_discards);
5651}
5652
Mike Marciniszyn77241052015-07-30 15:17:43 -04005653static void count_port_inactive(struct hfi1_devdata *dd)
5654{
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005655 __count_port_discards(dd->pport);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005656}
5657
5658/*
5659 * We have had a "disallowed packet" error during egress. Determine the
5660 * integrity check which failed, and update relevant error counter, etc.
5661 *
5662 * Note that the SEND_EGRESS_ERR_INFO register has only a single
5663 * bit of state per integrity check, and so we can miss the reason for an
5664 * egress error if more than one packet fails the same integrity check
5665 * since we cleared the corresponding bit in SEND_EGRESS_ERR_INFO.
5666 */
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005667static void handle_send_egress_err_info(struct hfi1_devdata *dd,
5668 int vl)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005669{
5670 struct hfi1_pportdata *ppd = dd->pport;
5671 u64 src = read_csr(dd, SEND_EGRESS_ERR_SOURCE); /* read first */
5672 u64 info = read_csr(dd, SEND_EGRESS_ERR_INFO);
5673 char buf[96];
5674
5675 /* clear down all observed info as quickly as possible after read */
5676 write_csr(dd, SEND_EGRESS_ERR_INFO, info);
5677
5678 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08005679 "Egress Error Info: 0x%llx, %s Egress Error Src 0x%llx\n",
5680 info, egress_err_info_string(buf, sizeof(buf), info), src);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005681
5682 /* Eventually add other counters for each bit */
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005683 if (info & PORT_DISCARD_EGRESS_ERRS) {
5684 int weight, i;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005685
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005686 /*
Dean Luick4c9e7aa2016-02-18 11:12:08 -08005687 * Count all applicable bits as individual errors and
5688 * attribute them to the packet that triggered this handler.
5689 * This may not be completely accurate due to limitations
5690 * on the available hardware error information. There is
5691 * a single information register and any number of error
5692 * packets may have occurred and contributed to it before
5693 * this routine is called. This means that:
5694 * a) If multiple packets with the same error occur before
5695 * this routine is called, earlier packets are missed.
5696 * There is only a single bit for each error type.
5697 * b) Errors may not be attributed to the correct VL.
5698 * The driver is attributing all bits in the info register
5699 * to the packet that triggered this call, but bits
5700 * could be an accumulation of different packets with
5701 * different VLs.
5702 * c) A single error packet may have multiple counts attached
5703 * to it. There is no way for the driver to know if
5704 * multiple bits set in the info register are due to a
5705 * single packet or multiple packets. The driver assumes
5706 * multiple packets.
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005707 */
Dean Luick4c9e7aa2016-02-18 11:12:08 -08005708 weight = hweight64(info & PORT_DISCARD_EGRESS_ERRS);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005709 for (i = 0; i < weight; i++) {
5710 __count_port_discards(ppd);
5711 if (vl >= 0 && vl < TXE_NUM_DATA_VL)
5712 incr_cntr64(&ppd->port_xmit_discards_vl[vl]);
5713 else if (vl == 15)
5714 incr_cntr64(&ppd->port_xmit_discards_vl
5715 [C_VL_15]);
5716 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005717 }
5718}
5719
5720/*
5721 * Input value is a bit position within the SEND_EGRESS_ERR_STATUS
5722 * register. Does it represent a 'port inactive' error?
5723 */
5724static inline int port_inactive_err(u64 posn)
5725{
5726 return (posn >= SEES(TX_LINKDOWN) &&
5727 posn <= SEES(TX_INCORRECT_LINK_STATE));
5728}
5729
5730/*
5731 * Input value is a bit position within the SEND_EGRESS_ERR_STATUS
5732 * register. Does it represent a 'disallowed packet' error?
5733 */
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005734static inline int disallowed_pkt_err(int posn)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005735{
5736 return (posn >= SEES(TX_SDMA0_DISALLOWED_PACKET) &&
5737 posn <= SEES(TX_SDMA15_DISALLOWED_PACKET));
5738}
5739
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005740/*
5741 * Input value is a bit position of one of the SDMA engine disallowed
5742 * packet errors. Return which engine. Use of this must be guarded by
5743 * disallowed_pkt_err().
5744 */
5745static inline int disallowed_pkt_engine(int posn)
5746{
5747 return posn - SEES(TX_SDMA0_DISALLOWED_PACKET);
5748}
5749
5750/*
5751 * Translate an SDMA engine to a VL. Return -1 if the tranlation cannot
5752 * be done.
5753 */
5754static int engine_to_vl(struct hfi1_devdata *dd, int engine)
5755{
5756 struct sdma_vl_map *m;
5757 int vl;
5758
5759 /* range check */
5760 if (engine < 0 || engine >= TXE_NUM_SDMA_ENGINES)
5761 return -1;
5762
5763 rcu_read_lock();
5764 m = rcu_dereference(dd->sdma_map);
5765 vl = m->engine_to_vl[engine];
5766 rcu_read_unlock();
5767
5768 return vl;
5769}
5770
5771/*
5772 * Translate the send context (sofware index) into a VL. Return -1 if the
5773 * translation cannot be done.
5774 */
5775static int sc_to_vl(struct hfi1_devdata *dd, int sw_index)
5776{
5777 struct send_context_info *sci;
5778 struct send_context *sc;
5779 int i;
5780
5781 sci = &dd->send_contexts[sw_index];
5782
5783 /* there is no information for user (PSM) and ack contexts */
Jianxin Xiong44306f12016-04-12 11:30:28 -07005784 if ((sci->type != SC_KERNEL) && (sci->type != SC_VL15))
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005785 return -1;
5786
5787 sc = sci->sc;
5788 if (!sc)
5789 return -1;
5790 if (dd->vld[15].sc == sc)
5791 return 15;
5792 for (i = 0; i < num_vls; i++)
5793 if (dd->vld[i].sc == sc)
5794 return i;
5795
5796 return -1;
5797}
5798
Mike Marciniszyn77241052015-07-30 15:17:43 -04005799static void handle_egress_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5800{
5801 u64 reg_copy = reg, handled = 0;
5802 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005803 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005804
5805 if (reg & ALL_TXE_EGRESS_FREEZE_ERR)
5806 start_freeze_handling(dd->pport, 0);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005807 else if (is_ax(dd) &&
5808 (reg & SEND_EGRESS_ERR_STATUS_TX_CREDIT_RETURN_VL_ERR_SMASK) &&
5809 (dd->icode != ICODE_FUNCTIONAL_SIMULATOR))
Mike Marciniszyn77241052015-07-30 15:17:43 -04005810 start_freeze_handling(dd->pport, 0);
5811
5812 while (reg_copy) {
5813 int posn = fls64(reg_copy);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005814 /* fls64() returns a 1-based offset, we want it zero based */
Mike Marciniszyn77241052015-07-30 15:17:43 -04005815 int shift = posn - 1;
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005816 u64 mask = 1ULL << shift;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005817
5818 if (port_inactive_err(shift)) {
5819 count_port_inactive(dd);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005820 handled |= mask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005821 } else if (disallowed_pkt_err(shift)) {
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005822 int vl = engine_to_vl(dd, disallowed_pkt_engine(shift));
5823
5824 handle_send_egress_err_info(dd, vl);
5825 handled |= mask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005826 }
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005827 reg_copy &= ~mask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005828 }
5829
5830 reg &= ~handled;
5831
5832 if (reg)
5833 dd_dev_info(dd, "Egress Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005834 egress_err_status_string(buf, sizeof(buf), reg));
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005835
5836 for (i = 0; i < NUM_SEND_EGRESS_ERR_STATUS_COUNTERS; i++) {
5837 if (reg & (1ull << i))
5838 incr_cntr64(&dd->send_egress_err_status_cnt[i]);
5839 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005840}
5841
5842static void handle_txe_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5843{
5844 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005845 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005846
5847 dd_dev_info(dd, "Send Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005848 send_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005849
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005850 for (i = 0; i < NUM_SEND_ERR_STATUS_COUNTERS; i++) {
5851 if (reg & (1ull << i))
5852 incr_cntr64(&dd->send_err_status_cnt[i]);
5853 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005854}
5855
5856/*
5857 * The maximum number of times the error clear down will loop before
5858 * blocking a repeating error. This value is arbitrary.
5859 */
5860#define MAX_CLEAR_COUNT 20
5861
5862/*
5863 * Clear and handle an error register. All error interrupts are funneled
5864 * through here to have a central location to correctly handle single-
5865 * or multi-shot errors.
5866 *
5867 * For non per-context registers, call this routine with a context value
5868 * of 0 so the per-context offset is zero.
5869 *
5870 * If the handler loops too many times, assume that something is wrong
5871 * and can't be fixed, so mask the error bits.
5872 */
5873static void interrupt_clear_down(struct hfi1_devdata *dd,
5874 u32 context,
5875 const struct err_reg_info *eri)
5876{
5877 u64 reg;
5878 u32 count;
5879
5880 /* read in a loop until no more errors are seen */
5881 count = 0;
5882 while (1) {
5883 reg = read_kctxt_csr(dd, context, eri->status);
5884 if (reg == 0)
5885 break;
5886 write_kctxt_csr(dd, context, eri->clear, reg);
5887 if (likely(eri->handler))
5888 eri->handler(dd, context, reg);
5889 count++;
5890 if (count > MAX_CLEAR_COUNT) {
5891 u64 mask;
5892
5893 dd_dev_err(dd, "Repeating %s bits 0x%llx - masking\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005894 eri->desc, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005895 /*
5896 * Read-modify-write so any other masked bits
5897 * remain masked.
5898 */
5899 mask = read_kctxt_csr(dd, context, eri->mask);
5900 mask &= ~reg;
5901 write_kctxt_csr(dd, context, eri->mask, mask);
5902 break;
5903 }
5904 }
5905}
5906
5907/*
5908 * CCE block "misc" interrupt. Source is < 16.
5909 */
5910static void is_misc_err_int(struct hfi1_devdata *dd, unsigned int source)
5911{
5912 const struct err_reg_info *eri = &misc_errs[source];
5913
5914 if (eri->handler) {
5915 interrupt_clear_down(dd, 0, eri);
5916 } else {
5917 dd_dev_err(dd, "Unexpected misc interrupt (%u) - reserved\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005918 source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005919 }
5920}
5921
5922static char *send_context_err_status_string(char *buf, int buf_len, u64 flags)
5923{
5924 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005925 sc_err_status_flags,
5926 ARRAY_SIZE(sc_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005927}
5928
5929/*
5930 * Send context error interrupt. Source (hw_context) is < 160.
5931 *
5932 * All send context errors cause the send context to halt. The normal
5933 * clear-down mechanism cannot be used because we cannot clear the
5934 * error bits until several other long-running items are done first.
5935 * This is OK because with the context halted, nothing else is going
5936 * to happen on it anyway.
5937 */
5938static void is_sendctxt_err_int(struct hfi1_devdata *dd,
5939 unsigned int hw_context)
5940{
5941 struct send_context_info *sci;
5942 struct send_context *sc;
5943 char flags[96];
5944 u64 status;
5945 u32 sw_index;
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005946 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005947
5948 sw_index = dd->hw_to_sw[hw_context];
5949 if (sw_index >= dd->num_send_contexts) {
5950 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08005951 "out of range sw index %u for send context %u\n",
5952 sw_index, hw_context);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005953 return;
5954 }
5955 sci = &dd->send_contexts[sw_index];
5956 sc = sci->sc;
5957 if (!sc) {
5958 dd_dev_err(dd, "%s: context %u(%u): no sc?\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -08005959 sw_index, hw_context);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005960 return;
5961 }
5962
5963 /* tell the software that a halt has begun */
5964 sc_stop(sc, SCF_HALTED);
5965
5966 status = read_kctxt_csr(dd, hw_context, SEND_CTXT_ERR_STATUS);
5967
5968 dd_dev_info(dd, "Send Context %u(%u) Error: %s\n", sw_index, hw_context,
Jubin John17fb4f22016-02-14 20:21:52 -08005969 send_context_err_status_string(flags, sizeof(flags),
5970 status));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005971
5972 if (status & SEND_CTXT_ERR_STATUS_PIO_DISALLOWED_PACKET_ERR_SMASK)
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005973 handle_send_egress_err_info(dd, sc_to_vl(dd, sw_index));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005974
5975 /*
5976 * Automatically restart halted kernel contexts out of interrupt
5977 * context. User contexts must ask the driver to restart the context.
5978 */
5979 if (sc->type != SC_USER)
5980 queue_work(dd->pport->hfi1_wq, &sc->halt_work);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005981
5982 /*
5983 * Update the counters for the corresponding status bits.
5984 * Note that these particular counters are aggregated over all
5985 * 160 contexts.
5986 */
5987 for (i = 0; i < NUM_SEND_CTXT_ERR_STATUS_COUNTERS; i++) {
5988 if (status & (1ull << i))
5989 incr_cntr64(&dd->sw_ctxt_err_status_cnt[i]);
5990 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005991}
5992
5993static void handle_sdma_eng_err(struct hfi1_devdata *dd,
5994 unsigned int source, u64 status)
5995{
5996 struct sdma_engine *sde;
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005997 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005998
5999 sde = &dd->per_sdma[source];
6000#ifdef CONFIG_SDMA_VERBOSITY
6001 dd_dev_err(sde->dd, "CONFIG SDMA(%u) %s:%d %s()\n", sde->this_idx,
6002 slashstrip(__FILE__), __LINE__, __func__);
6003 dd_dev_err(sde->dd, "CONFIG SDMA(%u) source: %u status 0x%llx\n",
6004 sde->this_idx, source, (unsigned long long)status);
6005#endif
Vennila Megavannana699c6c2016-01-11 18:30:56 -05006006 sde->err_cnt++;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006007 sdma_engine_error(sde, status);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05006008
6009 /*
6010 * Update the counters for the corresponding status bits.
6011 * Note that these particular counters are aggregated over
6012 * all 16 DMA engines.
6013 */
6014 for (i = 0; i < NUM_SEND_DMA_ENG_ERR_STATUS_COUNTERS; i++) {
6015 if (status & (1ull << i))
6016 incr_cntr64(&dd->sw_send_dma_eng_err_status_cnt[i]);
6017 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04006018}
6019
6020/*
6021 * CCE block SDMA error interrupt. Source is < 16.
6022 */
6023static void is_sdma_eng_err_int(struct hfi1_devdata *dd, unsigned int source)
6024{
6025#ifdef CONFIG_SDMA_VERBOSITY
6026 struct sdma_engine *sde = &dd->per_sdma[source];
6027
6028 dd_dev_err(dd, "CONFIG SDMA(%u) %s:%d %s()\n", sde->this_idx,
6029 slashstrip(__FILE__), __LINE__, __func__);
6030 dd_dev_err(dd, "CONFIG SDMA(%u) source: %u\n", sde->this_idx,
6031 source);
6032 sdma_dumpstate(sde);
6033#endif
6034 interrupt_clear_down(dd, source, &sdma_eng_err);
6035}
6036
6037/*
6038 * CCE block "various" interrupt. Source is < 8.
6039 */
6040static void is_various_int(struct hfi1_devdata *dd, unsigned int source)
6041{
6042 const struct err_reg_info *eri = &various_err[source];
6043
6044 /*
6045 * TCritInt cannot go through interrupt_clear_down()
6046 * because it is not a second tier interrupt. The handler
6047 * should be called directly.
6048 */
6049 if (source == TCRIT_INT_SOURCE)
6050 handle_temp_err(dd);
6051 else if (eri->handler)
6052 interrupt_clear_down(dd, 0, eri);
6053 else
6054 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006055 "%s: Unimplemented/reserved interrupt %d\n",
6056 __func__, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006057}
6058
6059static void handle_qsfp_int(struct hfi1_devdata *dd, u32 src_ctx, u64 reg)
6060{
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006061 /* src_ctx is always zero */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006062 struct hfi1_pportdata *ppd = dd->pport;
6063 unsigned long flags;
6064 u64 qsfp_int_mgmt = (u64)(QSFP_HFI0_INT_N | QSFP_HFI0_MODPRST_N);
6065
6066 if (reg & QSFP_HFI0_MODPRST_N) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006067 if (!qsfp_mod_present(ppd)) {
Easwar Hariharane8aa2842016-02-18 11:12:16 -08006068 dd_dev_info(dd, "%s: QSFP module removed\n",
6069 __func__);
6070
Mike Marciniszyn77241052015-07-30 15:17:43 -04006071 ppd->driver_link_ready = 0;
6072 /*
6073 * Cable removed, reset all our information about the
6074 * cache and cable capabilities
6075 */
6076
6077 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
6078 /*
6079 * We don't set cache_refresh_required here as we expect
6080 * an interrupt when a cable is inserted
6081 */
6082 ppd->qsfp_info.cache_valid = 0;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006083 ppd->qsfp_info.reset_needed = 0;
6084 ppd->qsfp_info.limiting_active = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006085 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock,
Jubin John17fb4f22016-02-14 20:21:52 -08006086 flags);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006087 /* Invert the ModPresent pin now to detect plug-in */
6088 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_INVERT :
6089 ASIC_QSFP1_INVERT, qsfp_int_mgmt);
Bryan Morgana9c05e32016-02-03 14:30:49 -08006090
6091 if ((ppd->offline_disabled_reason >
6092 HFI1_ODR_MASK(
Easwar Hariharane1bf0d52016-02-03 14:36:58 -08006093 OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED)) ||
Bryan Morgana9c05e32016-02-03 14:30:49 -08006094 (ppd->offline_disabled_reason ==
6095 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE)))
6096 ppd->offline_disabled_reason =
6097 HFI1_ODR_MASK(
Easwar Hariharane1bf0d52016-02-03 14:36:58 -08006098 OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED);
Bryan Morgana9c05e32016-02-03 14:30:49 -08006099
Mike Marciniszyn77241052015-07-30 15:17:43 -04006100 if (ppd->host_link_state == HLS_DN_POLL) {
6101 /*
6102 * The link is still in POLL. This means
6103 * that the normal link down processing
6104 * will not happen. We have to do it here
6105 * before turning the DC off.
6106 */
Sebastian Sanchez71d47002017-07-29 08:43:49 -07006107 queue_work(ppd->link_wq, &ppd->link_down_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006108 }
6109 } else {
Easwar Hariharane8aa2842016-02-18 11:12:16 -08006110 dd_dev_info(dd, "%s: QSFP module inserted\n",
6111 __func__);
6112
Mike Marciniszyn77241052015-07-30 15:17:43 -04006113 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
6114 ppd->qsfp_info.cache_valid = 0;
6115 ppd->qsfp_info.cache_refresh_required = 1;
6116 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock,
Jubin John17fb4f22016-02-14 20:21:52 -08006117 flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006118
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006119 /*
6120 * Stop inversion of ModPresent pin to detect
6121 * removal of the cable
6122 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006123 qsfp_int_mgmt &= ~(u64)QSFP_HFI0_MODPRST_N;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006124 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_INVERT :
6125 ASIC_QSFP1_INVERT, qsfp_int_mgmt);
6126
6127 ppd->offline_disabled_reason =
6128 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_TRANSIENT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006129 }
6130 }
6131
6132 if (reg & QSFP_HFI0_INT_N) {
Easwar Hariharane8aa2842016-02-18 11:12:16 -08006133 dd_dev_info(dd, "%s: Interrupt received from QSFP module\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006134 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006135 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
6136 ppd->qsfp_info.check_interrupt_flags = 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006137 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock, flags);
6138 }
6139
6140 /* Schedule the QSFP work only if there is a cable attached. */
6141 if (qsfp_mod_present(ppd))
Sebastian Sanchez71d47002017-07-29 08:43:49 -07006142 queue_work(ppd->link_wq, &ppd->qsfp_info.qsfp_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006143}
6144
6145static int request_host_lcb_access(struct hfi1_devdata *dd)
6146{
6147 int ret;
6148
6149 ret = do_8051_command(dd, HCMD_MISC,
Jubin John17fb4f22016-02-14 20:21:52 -08006150 (u64)HCMD_MISC_REQUEST_LCB_ACCESS <<
6151 LOAD_DATA_FIELD_ID_SHIFT, NULL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006152 if (ret != HCMD_SUCCESS) {
6153 dd_dev_err(dd, "%s: command failed with error %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006154 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006155 }
6156 return ret == HCMD_SUCCESS ? 0 : -EBUSY;
6157}
6158
6159static int request_8051_lcb_access(struct hfi1_devdata *dd)
6160{
6161 int ret;
6162
6163 ret = do_8051_command(dd, HCMD_MISC,
Jubin John17fb4f22016-02-14 20:21:52 -08006164 (u64)HCMD_MISC_GRANT_LCB_ACCESS <<
6165 LOAD_DATA_FIELD_ID_SHIFT, NULL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006166 if (ret != HCMD_SUCCESS) {
6167 dd_dev_err(dd, "%s: command failed with error %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006168 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006169 }
6170 return ret == HCMD_SUCCESS ? 0 : -EBUSY;
6171}
6172
6173/*
6174 * Set the LCB selector - allow host access. The DCC selector always
6175 * points to the host.
6176 */
6177static inline void set_host_lcb_access(struct hfi1_devdata *dd)
6178{
6179 write_csr(dd, DC_DC8051_CFG_CSR_ACCESS_SEL,
Jubin John17fb4f22016-02-14 20:21:52 -08006180 DC_DC8051_CFG_CSR_ACCESS_SEL_DCC_SMASK |
6181 DC_DC8051_CFG_CSR_ACCESS_SEL_LCB_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006182}
6183
6184/*
6185 * Clear the LCB selector - allow 8051 access. The DCC selector always
6186 * points to the host.
6187 */
6188static inline void set_8051_lcb_access(struct hfi1_devdata *dd)
6189{
6190 write_csr(dd, DC_DC8051_CFG_CSR_ACCESS_SEL,
Jubin John17fb4f22016-02-14 20:21:52 -08006191 DC_DC8051_CFG_CSR_ACCESS_SEL_DCC_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006192}
6193
6194/*
6195 * Acquire LCB access from the 8051. If the host already has access,
6196 * just increment a counter. Otherwise, inform the 8051 that the
6197 * host is taking access.
6198 *
6199 * Returns:
6200 * 0 on success
6201 * -EBUSY if the 8051 has control and cannot be disturbed
6202 * -errno if unable to acquire access from the 8051
6203 */
6204int acquire_lcb_access(struct hfi1_devdata *dd, int sleep_ok)
6205{
6206 struct hfi1_pportdata *ppd = dd->pport;
6207 int ret = 0;
6208
6209 /*
6210 * Use the host link state lock so the operation of this routine
6211 * { link state check, selector change, count increment } can occur
6212 * as a unit against a link state change. Otherwise there is a
6213 * race between the state change and the count increment.
6214 */
6215 if (sleep_ok) {
6216 mutex_lock(&ppd->hls_lock);
6217 } else {
Dan Carpenter951842b2015-09-16 09:22:51 +03006218 while (!mutex_trylock(&ppd->hls_lock))
Mike Marciniszyn77241052015-07-30 15:17:43 -04006219 udelay(1);
6220 }
6221
6222 /* this access is valid only when the link is up */
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07006223 if (ppd->host_link_state & HLS_DOWN) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006224 dd_dev_info(dd, "%s: link state %s not up\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006225 __func__, link_state_name(ppd->host_link_state));
Mike Marciniszyn77241052015-07-30 15:17:43 -04006226 ret = -EBUSY;
6227 goto done;
6228 }
6229
6230 if (dd->lcb_access_count == 0) {
6231 ret = request_host_lcb_access(dd);
6232 if (ret) {
6233 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006234 "%s: unable to acquire LCB access, err %d\n",
6235 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006236 goto done;
6237 }
6238 set_host_lcb_access(dd);
6239 }
6240 dd->lcb_access_count++;
6241done:
6242 mutex_unlock(&ppd->hls_lock);
6243 return ret;
6244}
6245
6246/*
6247 * Release LCB access by decrementing the use count. If the count is moving
6248 * from 1 to 0, inform 8051 that it has control back.
6249 *
6250 * Returns:
6251 * 0 on success
6252 * -errno if unable to release access to the 8051
6253 */
6254int release_lcb_access(struct hfi1_devdata *dd, int sleep_ok)
6255{
6256 int ret = 0;
6257
6258 /*
6259 * Use the host link state lock because the acquire needed it.
6260 * Here, we only need to keep { selector change, count decrement }
6261 * as a unit.
6262 */
6263 if (sleep_ok) {
6264 mutex_lock(&dd->pport->hls_lock);
6265 } else {
Dan Carpenter951842b2015-09-16 09:22:51 +03006266 while (!mutex_trylock(&dd->pport->hls_lock))
Mike Marciniszyn77241052015-07-30 15:17:43 -04006267 udelay(1);
6268 }
6269
6270 if (dd->lcb_access_count == 0) {
6271 dd_dev_err(dd, "%s: LCB access count is zero. Skipping.\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006272 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006273 goto done;
6274 }
6275
6276 if (dd->lcb_access_count == 1) {
6277 set_8051_lcb_access(dd);
6278 ret = request_8051_lcb_access(dd);
6279 if (ret) {
6280 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006281 "%s: unable to release LCB access, err %d\n",
6282 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006283 /* restore host access if the grant didn't work */
6284 set_host_lcb_access(dd);
6285 goto done;
6286 }
6287 }
6288 dd->lcb_access_count--;
6289done:
6290 mutex_unlock(&dd->pport->hls_lock);
6291 return ret;
6292}
6293
6294/*
6295 * Initialize LCB access variables and state. Called during driver load,
6296 * after most of the initialization is finished.
6297 *
6298 * The DC default is LCB access on for the host. The driver defaults to
6299 * leaving access to the 8051. Assign access now - this constrains the call
6300 * to this routine to be after all LCB set-up is done. In particular, after
6301 * hf1_init_dd() -> set_up_interrupts() -> clear_all_interrupts()
6302 */
6303static void init_lcb_access(struct hfi1_devdata *dd)
6304{
6305 dd->lcb_access_count = 0;
6306}
6307
6308/*
6309 * Write a response back to a 8051 request.
6310 */
6311static void hreq_response(struct hfi1_devdata *dd, u8 return_code, u16 rsp_data)
6312{
6313 write_csr(dd, DC_DC8051_CFG_EXT_DEV_0,
Jubin John17fb4f22016-02-14 20:21:52 -08006314 DC_DC8051_CFG_EXT_DEV_0_COMPLETED_SMASK |
6315 (u64)return_code <<
6316 DC_DC8051_CFG_EXT_DEV_0_RETURN_CODE_SHIFT |
6317 (u64)rsp_data << DC_DC8051_CFG_EXT_DEV_0_RSP_DATA_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006318}
6319
6320/*
Easwar Hariharancbac3862016-02-03 14:31:31 -08006321 * Handle host requests from the 8051.
Mike Marciniszyn77241052015-07-30 15:17:43 -04006322 */
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07006323static void handle_8051_request(struct hfi1_pportdata *ppd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006324{
Easwar Hariharancbac3862016-02-03 14:31:31 -08006325 struct hfi1_devdata *dd = ppd->dd;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006326 u64 reg;
Easwar Hariharancbac3862016-02-03 14:31:31 -08006327 u16 data = 0;
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07006328 u8 type;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006329
6330 reg = read_csr(dd, DC_DC8051_CFG_EXT_DEV_1);
6331 if ((reg & DC_DC8051_CFG_EXT_DEV_1_REQ_NEW_SMASK) == 0)
6332 return; /* no request */
6333
6334 /* zero out COMPLETED so the response is seen */
6335 write_csr(dd, DC_DC8051_CFG_EXT_DEV_0, 0);
6336
6337 /* extract request details */
6338 type = (reg >> DC_DC8051_CFG_EXT_DEV_1_REQ_TYPE_SHIFT)
6339 & DC_DC8051_CFG_EXT_DEV_1_REQ_TYPE_MASK;
6340 data = (reg >> DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_SHIFT)
6341 & DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_MASK;
6342
6343 switch (type) {
6344 case HREQ_LOAD_CONFIG:
6345 case HREQ_SAVE_CONFIG:
6346 case HREQ_READ_CONFIG:
6347 case HREQ_SET_TX_EQ_ABS:
6348 case HREQ_SET_TX_EQ_REL:
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07006349 case HREQ_ENABLE:
Mike Marciniszyn77241052015-07-30 15:17:43 -04006350 dd_dev_info(dd, "8051 request: request 0x%x not supported\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006351 type);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006352 hreq_response(dd, HREQ_NOT_SUPPORTED, 0);
6353 break;
Sebastian Sanchez254361c2018-05-02 06:42:21 -07006354 case HREQ_LCB_RESET:
6355 /* Put the LCB, RX FPE and TX FPE into reset */
6356 write_csr(dd, DCC_CFG_RESET, LCB_RX_FPE_TX_FPE_INTO_RESET);
6357 /* Make sure the write completed */
6358 (void)read_csr(dd, DCC_CFG_RESET);
6359 /* Hold the reset long enough to take effect */
6360 udelay(1);
6361 /* Take the LCB, RX FPE and TX FPE out of reset */
6362 write_csr(dd, DCC_CFG_RESET, LCB_RX_FPE_TX_FPE_OUT_OF_RESET);
6363 hreq_response(dd, HREQ_SUCCESS, 0);
6364
6365 break;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006366 case HREQ_CONFIG_DONE:
6367 hreq_response(dd, HREQ_SUCCESS, 0);
6368 break;
6369
6370 case HREQ_INTERFACE_TEST:
6371 hreq_response(dd, HREQ_SUCCESS, data);
6372 break;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006373 default:
6374 dd_dev_err(dd, "8051 request: unknown request 0x%x\n", type);
6375 hreq_response(dd, HREQ_NOT_SUPPORTED, 0);
6376 break;
6377 }
6378}
6379
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006380/*
6381 * Set up allocation unit vaulue.
6382 */
6383void set_up_vau(struct hfi1_devdata *dd, u8 vau)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006384{
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006385 u64 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
6386
6387 /* do not modify other values in the register */
6388 reg &= ~SEND_CM_GLOBAL_CREDIT_AU_SMASK;
6389 reg |= (u64)vau << SEND_CM_GLOBAL_CREDIT_AU_SHIFT;
6390 write_csr(dd, SEND_CM_GLOBAL_CREDIT, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006391}
6392
6393/*
6394 * Set up initial VL15 credits of the remote. Assumes the rest of
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006395 * the CM credit registers are zero from a previous global or credit reset.
6396 * Shared limit for VL15 will always be 0.
Mike Marciniszyn77241052015-07-30 15:17:43 -04006397 */
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006398void set_up_vl15(struct hfi1_devdata *dd, u16 vl15buf)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006399{
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006400 u64 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
6401
6402 /* set initial values for total and shared credit limit */
6403 reg &= ~(SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SMASK |
6404 SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SMASK);
6405
6406 /*
6407 * Set total limit to be equal to VL15 credits.
6408 * Leave shared limit at 0.
6409 */
6410 reg |= (u64)vl15buf << SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SHIFT;
6411 write_csr(dd, SEND_CM_GLOBAL_CREDIT, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006412
Dennis Dalessandroeacc8302016-10-17 04:19:52 -07006413 write_csr(dd, SEND_CM_CREDIT_VL15, (u64)vl15buf
6414 << SEND_CM_CREDIT_VL15_DEDICATED_LIMIT_VL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006415}
6416
6417/*
6418 * Zero all credit details from the previous connection and
6419 * reset the CM manager's internal counters.
6420 */
6421void reset_link_credits(struct hfi1_devdata *dd)
6422{
6423 int i;
6424
6425 /* remove all previous VL credit limits */
6426 for (i = 0; i < TXE_NUM_DATA_VL; i++)
Jubin John8638b772016-02-14 20:19:24 -08006427 write_csr(dd, SEND_CM_CREDIT_VL + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006428 write_csr(dd, SEND_CM_CREDIT_VL15, 0);
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006429 write_csr(dd, SEND_CM_GLOBAL_CREDIT, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006430 /* reset the CM block */
6431 pio_send_control(dd, PSC_CM_RESET);
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006432 /* reset cached value */
6433 dd->vl15buf_cached = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006434}
6435
6436/* convert a vCU to a CU */
6437static u32 vcu_to_cu(u8 vcu)
6438{
6439 return 1 << vcu;
6440}
6441
6442/* convert a CU to a vCU */
6443static u8 cu_to_vcu(u32 cu)
6444{
6445 return ilog2(cu);
6446}
6447
6448/* convert a vAU to an AU */
6449static u32 vau_to_au(u8 vau)
6450{
6451 return 8 * (1 << vau);
6452}
6453
6454static void set_linkup_defaults(struct hfi1_pportdata *ppd)
6455{
6456 ppd->sm_trap_qp = 0x0;
6457 ppd->sa_qp = 0x1;
6458}
6459
6460/*
6461 * Graceful LCB shutdown. This leaves the LCB FIFOs in reset.
6462 */
6463static void lcb_shutdown(struct hfi1_devdata *dd, int abort)
6464{
6465 u64 reg;
6466
6467 /* clear lcb run: LCB_CFG_RUN.EN = 0 */
6468 write_csr(dd, DC_LCB_CFG_RUN, 0);
6469 /* set tx fifo reset: LCB_CFG_TX_FIFOS_RESET.VAL = 1 */
6470 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET,
Jubin John17fb4f22016-02-14 20:21:52 -08006471 1ull << DC_LCB_CFG_TX_FIFOS_RESET_VAL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006472 /* set dcc reset csr: DCC_CFG_RESET.{reset_lcb,reset_rx_fpe} = 1 */
6473 dd->lcb_err_en = read_csr(dd, DC_LCB_ERR_EN);
6474 reg = read_csr(dd, DCC_CFG_RESET);
Jubin John17fb4f22016-02-14 20:21:52 -08006475 write_csr(dd, DCC_CFG_RESET, reg |
Sebastian Sanchez254361c2018-05-02 06:42:21 -07006476 DCC_CFG_RESET_RESET_LCB | DCC_CFG_RESET_RESET_RX_FPE);
Jubin John50e5dcb2016-02-14 20:19:41 -08006477 (void)read_csr(dd, DCC_CFG_RESET); /* make sure the write completed */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006478 if (!abort) {
6479 udelay(1); /* must hold for the longer of 16cclks or 20ns */
6480 write_csr(dd, DCC_CFG_RESET, reg);
6481 write_csr(dd, DC_LCB_ERR_EN, dd->lcb_err_en);
6482 }
6483}
6484
6485/*
6486 * This routine should be called after the link has been transitioned to
6487 * OFFLINE (OFFLINE state has the side effect of putting the SerDes into
6488 * reset).
6489 *
6490 * The expectation is that the caller of this routine would have taken
6491 * care of properly transitioning the link into the correct state.
Tadeusz Struk22546b72017-04-28 10:40:02 -07006492 * NOTE: the caller needs to acquire the dd->dc8051_lock lock
6493 * before calling this function.
Mike Marciniszyn77241052015-07-30 15:17:43 -04006494 */
Tadeusz Struk22546b72017-04-28 10:40:02 -07006495static void _dc_shutdown(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006496{
Tadeusz Struk22546b72017-04-28 10:40:02 -07006497 lockdep_assert_held(&dd->dc8051_lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006498
Tadeusz Struk22546b72017-04-28 10:40:02 -07006499 if (dd->dc_shutdown)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006500 return;
Tadeusz Struk22546b72017-04-28 10:40:02 -07006501
Mike Marciniszyn77241052015-07-30 15:17:43 -04006502 dd->dc_shutdown = 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006503 /* Shutdown the LCB */
6504 lcb_shutdown(dd, 1);
Jubin John4d114fd2016-02-14 20:21:43 -08006505 /*
6506 * Going to OFFLINE would have causes the 8051 to put the
Mike Marciniszyn77241052015-07-30 15:17:43 -04006507 * SerDes into reset already. Just need to shut down the 8051,
Jubin John4d114fd2016-02-14 20:21:43 -08006508 * itself.
6509 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006510 write_csr(dd, DC_DC8051_CFG_RST, 0x1);
6511}
6512
Tadeusz Struk22546b72017-04-28 10:40:02 -07006513static void dc_shutdown(struct hfi1_devdata *dd)
6514{
6515 mutex_lock(&dd->dc8051_lock);
6516 _dc_shutdown(dd);
6517 mutex_unlock(&dd->dc8051_lock);
6518}
6519
Jubin John4d114fd2016-02-14 20:21:43 -08006520/*
6521 * Calling this after the DC has been brought out of reset should not
6522 * do any damage.
Tadeusz Struk22546b72017-04-28 10:40:02 -07006523 * NOTE: the caller needs to acquire the dd->dc8051_lock lock
6524 * before calling this function.
Jubin John4d114fd2016-02-14 20:21:43 -08006525 */
Tadeusz Struk22546b72017-04-28 10:40:02 -07006526static void _dc_start(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006527{
Tadeusz Struk22546b72017-04-28 10:40:02 -07006528 lockdep_assert_held(&dd->dc8051_lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006529
Mike Marciniszyn77241052015-07-30 15:17:43 -04006530 if (!dd->dc_shutdown)
Tadeusz Struk22546b72017-04-28 10:40:02 -07006531 return;
6532
Sebastian Sanchez9996b042017-12-18 19:56:59 -08006533 /* Take the 8051 out of reset */
6534 write_csr(dd, DC_DC8051_CFG_RST, 0ull);
6535 /* Wait until 8051 is ready */
6536 if (wait_fm_ready(dd, TIMEOUT_8051_START))
6537 dd_dev_err(dd, "%s: timeout starting 8051 firmware\n",
6538 __func__);
Tadeusz Struk22546b72017-04-28 10:40:02 -07006539
Mike Marciniszyn77241052015-07-30 15:17:43 -04006540 /* Take away reset for LCB and RX FPE (set in lcb_shutdown). */
Sebastian Sanchez254361c2018-05-02 06:42:21 -07006541 write_csr(dd, DCC_CFG_RESET, LCB_RX_FPE_TX_FPE_OUT_OF_RESET);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006542 /* lcb_shutdown() with abort=1 does not restore these */
6543 write_csr(dd, DC_LCB_ERR_EN, dd->lcb_err_en);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006544 dd->dc_shutdown = 0;
Tadeusz Struk22546b72017-04-28 10:40:02 -07006545}
6546
6547static void dc_start(struct hfi1_devdata *dd)
6548{
6549 mutex_lock(&dd->dc8051_lock);
6550 _dc_start(dd);
6551 mutex_unlock(&dd->dc8051_lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006552}
6553
6554/*
6555 * These LCB adjustments are for the Aurora SerDes core in the FPGA.
6556 */
6557static void adjust_lcb_for_fpga_serdes(struct hfi1_devdata *dd)
6558{
6559 u64 rx_radr, tx_radr;
6560 u32 version;
6561
6562 if (dd->icode != ICODE_FPGA_EMULATION)
6563 return;
6564
6565 /*
6566 * These LCB defaults on emulator _s are good, nothing to do here:
6567 * LCB_CFG_TX_FIFOS_RADR
6568 * LCB_CFG_RX_FIFOS_RADR
6569 * LCB_CFG_LN_DCLK
6570 * LCB_CFG_IGNORE_LOST_RCLK
6571 */
6572 if (is_emulator_s(dd))
6573 return;
6574 /* else this is _p */
6575
6576 version = emulator_rev(dd);
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05006577 if (!is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -04006578 version = 0x2d; /* all B0 use 0x2d or higher settings */
6579
6580 if (version <= 0x12) {
6581 /* release 0x12 and below */
6582
6583 /*
6584 * LCB_CFG_RX_FIFOS_RADR.RST_VAL = 0x9
6585 * LCB_CFG_RX_FIFOS_RADR.OK_TO_JUMP_VAL = 0x9
6586 * LCB_CFG_RX_FIFOS_RADR.DO_NOT_JUMP_VAL = 0xa
6587 */
6588 rx_radr =
6589 0xaull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6590 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6591 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6592 /*
6593 * LCB_CFG_TX_FIFOS_RADR.ON_REINIT = 0 (default)
6594 * LCB_CFG_TX_FIFOS_RADR.RST_VAL = 6
6595 */
6596 tx_radr = 6ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6597 } else if (version <= 0x18) {
6598 /* release 0x13 up to 0x18 */
6599 /* LCB_CFG_RX_FIFOS_RADR = 0x988 */
6600 rx_radr =
6601 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6602 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6603 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6604 tx_radr = 7ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6605 } else if (version == 0x19) {
6606 /* release 0x19 */
6607 /* LCB_CFG_RX_FIFOS_RADR = 0xa99 */
6608 rx_radr =
6609 0xAull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6610 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6611 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6612 tx_radr = 3ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6613 } else if (version == 0x1a) {
6614 /* release 0x1a */
6615 /* LCB_CFG_RX_FIFOS_RADR = 0x988 */
6616 rx_radr =
6617 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6618 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6619 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6620 tx_radr = 7ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6621 write_csr(dd, DC_LCB_CFG_LN_DCLK, 1ull);
6622 } else {
6623 /* release 0x1b and higher */
6624 /* LCB_CFG_RX_FIFOS_RADR = 0x877 */
6625 rx_radr =
6626 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6627 | 0x7ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6628 | 0x7ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6629 tx_radr = 3ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6630 }
6631
6632 write_csr(dd, DC_LCB_CFG_RX_FIFOS_RADR, rx_radr);
6633 /* LCB_CFG_IGNORE_LOST_RCLK.EN = 1 */
6634 write_csr(dd, DC_LCB_CFG_IGNORE_LOST_RCLK,
Jubin John17fb4f22016-02-14 20:21:52 -08006635 DC_LCB_CFG_IGNORE_LOST_RCLK_EN_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006636 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RADR, tx_radr);
6637}
6638
6639/*
6640 * Handle a SMA idle message
6641 *
6642 * This is a work-queue function outside of the interrupt.
6643 */
6644void handle_sma_message(struct work_struct *work)
6645{
6646 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
6647 sma_message_work);
6648 struct hfi1_devdata *dd = ppd->dd;
6649 u64 msg;
6650 int ret;
6651
Jubin John4d114fd2016-02-14 20:21:43 -08006652 /*
6653 * msg is bytes 1-4 of the 40-bit idle message - the command code
6654 * is stripped off
6655 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006656 ret = read_idle_sma(dd, &msg);
6657 if (ret)
6658 return;
6659 dd_dev_info(dd, "%s: SMA message 0x%llx\n", __func__, msg);
6660 /*
6661 * React to the SMA message. Byte[1] (0 for us) is the command.
6662 */
6663 switch (msg & 0xff) {
6664 case SMA_IDLE_ARM:
6665 /*
6666 * See OPAv1 table 9-14 - HFI and External Switch Ports Key
6667 * State Transitions
6668 *
6669 * Only expected in INIT or ARMED, discard otherwise.
6670 */
6671 if (ppd->host_link_state & (HLS_UP_INIT | HLS_UP_ARMED))
6672 ppd->neighbor_normal = 1;
6673 break;
6674 case SMA_IDLE_ACTIVE:
6675 /*
6676 * See OPAv1 table 9-14 - HFI and External Switch Ports Key
6677 * State Transitions
6678 *
6679 * Can activate the node. Discard otherwise.
6680 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08006681 if (ppd->host_link_state == HLS_UP_ARMED &&
6682 ppd->is_active_optimize_enabled) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006683 ppd->neighbor_normal = 1;
6684 ret = set_link_state(ppd, HLS_UP_ACTIVE);
6685 if (ret)
6686 dd_dev_err(
6687 dd,
6688 "%s: received Active SMA idle message, couldn't set link to Active\n",
6689 __func__);
6690 }
6691 break;
6692 default:
6693 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006694 "%s: received unexpected SMA idle message 0x%llx\n",
6695 __func__, msg);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006696 break;
6697 }
6698}
6699
6700static void adjust_rcvctrl(struct hfi1_devdata *dd, u64 add, u64 clear)
6701{
6702 u64 rcvctrl;
6703 unsigned long flags;
6704
6705 spin_lock_irqsave(&dd->rcvctrl_lock, flags);
6706 rcvctrl = read_csr(dd, RCV_CTRL);
6707 rcvctrl |= add;
6708 rcvctrl &= ~clear;
6709 write_csr(dd, RCV_CTRL, rcvctrl);
6710 spin_unlock_irqrestore(&dd->rcvctrl_lock, flags);
6711}
6712
6713static inline void add_rcvctrl(struct hfi1_devdata *dd, u64 add)
6714{
6715 adjust_rcvctrl(dd, add, 0);
6716}
6717
6718static inline void clear_rcvctrl(struct hfi1_devdata *dd, u64 clear)
6719{
6720 adjust_rcvctrl(dd, 0, clear);
6721}
6722
6723/*
6724 * Called from all interrupt handlers to start handling an SPC freeze.
6725 */
6726void start_freeze_handling(struct hfi1_pportdata *ppd, int flags)
6727{
6728 struct hfi1_devdata *dd = ppd->dd;
6729 struct send_context *sc;
6730 int i;
6731
6732 if (flags & FREEZE_SELF)
6733 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_FREEZE_SMASK);
6734
6735 /* enter frozen mode */
6736 dd->flags |= HFI1_FROZEN;
6737
6738 /* notify all SDMA engines that they are going into a freeze */
6739 sdma_freeze_notify(dd, !!(flags & FREEZE_LINK_DOWN));
6740
6741 /* do halt pre-handling on all enabled send contexts */
6742 for (i = 0; i < dd->num_send_contexts; i++) {
6743 sc = dd->send_contexts[i].sc;
6744 if (sc && (sc->flags & SCF_ENABLED))
6745 sc_stop(sc, SCF_FROZEN | SCF_HALTED);
6746 }
6747
6748 /* Send context are frozen. Notify user space */
6749 hfi1_set_uevent_bits(ppd, _HFI1_EVENT_FROZEN_BIT);
6750
6751 if (flags & FREEZE_ABORT) {
6752 dd_dev_err(dd,
6753 "Aborted freeze recovery. Please REBOOT system\n");
6754 return;
6755 }
6756 /* queue non-interrupt handler */
6757 queue_work(ppd->hfi1_wq, &ppd->freeze_work);
6758}
6759
6760/*
6761 * Wait until all 4 sub-blocks indicate that they have frozen or unfrozen,
6762 * depending on the "freeze" parameter.
6763 *
6764 * No need to return an error if it times out, our only option
6765 * is to proceed anyway.
6766 */
6767static void wait_for_freeze_status(struct hfi1_devdata *dd, int freeze)
6768{
6769 unsigned long timeout;
6770 u64 reg;
6771
6772 timeout = jiffies + msecs_to_jiffies(FREEZE_STATUS_TIMEOUT);
6773 while (1) {
6774 reg = read_csr(dd, CCE_STATUS);
6775 if (freeze) {
6776 /* waiting until all indicators are set */
6777 if ((reg & ALL_FROZE) == ALL_FROZE)
6778 return; /* all done */
6779 } else {
6780 /* waiting until all indicators are clear */
6781 if ((reg & ALL_FROZE) == 0)
6782 return; /* all done */
6783 }
6784
6785 if (time_after(jiffies, timeout)) {
6786 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006787 "Time out waiting for SPC %sfreeze, bits 0x%llx, expecting 0x%llx, continuing",
6788 freeze ? "" : "un", reg & ALL_FROZE,
6789 freeze ? ALL_FROZE : 0ull);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006790 return;
6791 }
6792 usleep_range(80, 120);
6793 }
6794}
6795
6796/*
6797 * Do all freeze handling for the RXE block.
6798 */
6799static void rxe_freeze(struct hfi1_devdata *dd)
6800{
6801 int i;
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006802 struct hfi1_ctxtdata *rcd;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006803
6804 /* disable port */
6805 clear_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
6806
6807 /* disable all receive contexts */
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006808 for (i = 0; i < dd->num_rcv_contexts; i++) {
6809 rcd = hfi1_rcd_get_by_index(dd, i);
6810 hfi1_rcvctrl(dd, HFI1_RCVCTRL_CTXT_DIS, rcd);
6811 hfi1_rcd_put(rcd);
6812 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04006813}
6814
6815/*
6816 * Unfreeze handling for the RXE block - kernel contexts only.
6817 * This will also enable the port. User contexts will do unfreeze
6818 * handling on a per-context basis as they call into the driver.
6819 *
6820 */
6821static void rxe_kernel_unfreeze(struct hfi1_devdata *dd)
6822{
Mitko Haralanov566c1572016-02-03 14:32:49 -08006823 u32 rcvmask;
Michael J. Ruhle6f76222017-07-24 07:45:55 -07006824 u16 i;
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006825 struct hfi1_ctxtdata *rcd;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006826
6827 /* enable all kernel contexts */
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07006828 for (i = 0; i < dd->num_rcv_contexts; i++) {
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006829 rcd = hfi1_rcd_get_by_index(dd, i);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07006830
6831 /* Ensure all non-user contexts(including vnic) are enabled */
Niranjana Vishwanathapuracc9a97e2017-11-06 06:38:52 -08006832 if (!rcd ||
6833 (i >= dd->first_dyn_alloc_ctxt && !rcd->is_vnic)) {
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006834 hfi1_rcd_put(rcd);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07006835 continue;
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006836 }
Mitko Haralanov566c1572016-02-03 14:32:49 -08006837 rcvmask = HFI1_RCVCTRL_CTXT_ENB;
6838 /* HFI1_RCVCTRL_TAILUPD_[ENB|DIS] needs to be set explicitly */
Michael J. Ruhl22505632017-07-24 07:46:06 -07006839 rcvmask |= HFI1_CAP_KGET_MASK(rcd->flags, DMA_RTAIL) ?
Mitko Haralanov566c1572016-02-03 14:32:49 -08006840 HFI1_RCVCTRL_TAILUPD_ENB : HFI1_RCVCTRL_TAILUPD_DIS;
Michael J. Ruhl22505632017-07-24 07:46:06 -07006841 hfi1_rcvctrl(dd, rcvmask, rcd);
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006842 hfi1_rcd_put(rcd);
Mitko Haralanov566c1572016-02-03 14:32:49 -08006843 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04006844
6845 /* enable port */
6846 add_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
6847}
6848
6849/*
6850 * Non-interrupt SPC freeze handling.
6851 *
6852 * This is a work-queue function outside of the triggering interrupt.
6853 */
6854void handle_freeze(struct work_struct *work)
6855{
6856 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
6857 freeze_work);
6858 struct hfi1_devdata *dd = ppd->dd;
6859
6860 /* wait for freeze indicators on all affected blocks */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006861 wait_for_freeze_status(dd, 1);
6862
6863 /* SPC is now frozen */
6864
6865 /* do send PIO freeze steps */
6866 pio_freeze(dd);
6867
6868 /* do send DMA freeze steps */
6869 sdma_freeze(dd);
6870
6871 /* do send egress freeze steps - nothing to do */
6872
6873 /* do receive freeze steps */
6874 rxe_freeze(dd);
6875
6876 /*
6877 * Unfreeze the hardware - clear the freeze, wait for each
6878 * block's frozen bit to clear, then clear the frozen flag.
6879 */
6880 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_UNFREEZE_SMASK);
6881 wait_for_freeze_status(dd, 0);
6882
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05006883 if (is_ax(dd)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006884 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_FREEZE_SMASK);
6885 wait_for_freeze_status(dd, 1);
6886 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_UNFREEZE_SMASK);
6887 wait_for_freeze_status(dd, 0);
6888 }
6889
6890 /* do send PIO unfreeze steps for kernel contexts */
6891 pio_kernel_unfreeze(dd);
6892
6893 /* do send DMA unfreeze steps */
6894 sdma_unfreeze(dd);
6895
6896 /* do send egress unfreeze steps - nothing to do */
6897
6898 /* do receive unfreeze steps for kernel contexts */
6899 rxe_kernel_unfreeze(dd);
6900
6901 /*
6902 * The unfreeze procedure touches global device registers when
6903 * it disables and re-enables RXE. Mark the device unfrozen
6904 * after all that is done so other parts of the driver waiting
6905 * for the device to unfreeze don't do things out of order.
6906 *
6907 * The above implies that the meaning of HFI1_FROZEN flag is
6908 * "Device has gone into freeze mode and freeze mode handling
6909 * is still in progress."
6910 *
6911 * The flag will be removed when freeze mode processing has
6912 * completed.
6913 */
6914 dd->flags &= ~HFI1_FROZEN;
6915 wake_up(&dd->event_queue);
6916
6917 /* no longer frozen */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006918}
6919
Kamenee Arumugam07190072018-02-01 10:52:28 -08006920/**
6921 * update_xmit_counters - update PortXmitWait/PortVlXmitWait
6922 * counters.
6923 * @ppd: info of physical Hfi port
6924 * @link_width: new link width after link up or downgrade
6925 *
6926 * Update the PortXmitWait and PortVlXmitWait counters after
6927 * a link up or downgrade event to reflect a link width change.
6928 */
6929static void update_xmit_counters(struct hfi1_pportdata *ppd, u16 link_width)
6930{
6931 int i;
6932 u16 tx_width;
6933 u16 link_speed;
6934
6935 tx_width = tx_link_width(link_width);
6936 link_speed = get_link_speed(ppd->link_speed_active);
6937
6938 /*
6939 * There are C_VL_COUNT number of PortVLXmitWait counters.
6940 * Adding 1 to C_VL_COUNT to include the PortXmitWait counter.
6941 */
6942 for (i = 0; i < C_VL_COUNT + 1; i++)
6943 get_xmit_wait_counters(ppd, tx_width, link_speed, i);
6944}
6945
Mike Marciniszyn77241052015-07-30 15:17:43 -04006946/*
6947 * Handle a link up interrupt from the 8051.
6948 *
6949 * This is a work-queue function outside of the interrupt.
6950 */
6951void handle_link_up(struct work_struct *work)
6952{
6953 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
Jubin John17fb4f22016-02-14 20:21:52 -08006954 link_up_work);
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006955 struct hfi1_devdata *dd = ppd->dd;
6956
Mike Marciniszyn77241052015-07-30 15:17:43 -04006957 set_link_state(ppd, HLS_UP_INIT);
6958
6959 /* cache the read of DC_LCB_STS_ROUND_TRIP_LTP_CNT */
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006960 read_ltp_rtt(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006961 /*
6962 * OPA specifies that certain counters are cleared on a transition
6963 * to link up, so do that.
6964 */
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006965 clear_linkup_counters(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006966 /*
6967 * And (re)set link up default values.
6968 */
6969 set_linkup_defaults(ppd);
6970
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006971 /*
6972 * Set VL15 credits. Use cached value from verify cap interrupt.
6973 * In case of quick linkup or simulator, vl15 value will be set by
6974 * handle_linkup_change. VerifyCap interrupt handler will not be
6975 * called in those scenarios.
6976 */
6977 if (!(quick_linkup || dd->icode == ICODE_FUNCTIONAL_SIMULATOR))
6978 set_up_vl15(dd, dd->vl15buf_cached);
6979
Mike Marciniszyn77241052015-07-30 15:17:43 -04006980 /* enforce link speed enabled */
6981 if ((ppd->link_speed_active & ppd->link_speed_enabled) == 0) {
6982 /* oops - current speed is not enabled, bounce */
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006983 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006984 "Link speed active 0x%x is outside enabled 0x%x, downing link\n",
6985 ppd->link_speed_active, ppd->link_speed_enabled);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006986 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_SPEED_POLICY, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08006987 OPA_LINKDOWN_REASON_SPEED_POLICY);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006988 set_link_state(ppd, HLS_DN_OFFLINE);
6989 start_link(ppd);
6990 }
6991}
6992
Jubin John4d114fd2016-02-14 20:21:43 -08006993/*
6994 * Several pieces of LNI information were cached for SMA in ppd.
6995 * Reset these on link down
6996 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006997static void reset_neighbor_info(struct hfi1_pportdata *ppd)
6998{
6999 ppd->neighbor_guid = 0;
7000 ppd->neighbor_port_number = 0;
7001 ppd->neighbor_type = 0;
7002 ppd->neighbor_fm_security = 0;
7003}
7004
Dean Luickfeb831d2016-04-14 08:31:36 -07007005static const char * const link_down_reason_strs[] = {
7006 [OPA_LINKDOWN_REASON_NONE] = "None",
Dennis Dalessandro67838e62017-05-29 17:18:46 -07007007 [OPA_LINKDOWN_REASON_RCV_ERROR_0] = "Receive error 0",
Dean Luickfeb831d2016-04-14 08:31:36 -07007008 [OPA_LINKDOWN_REASON_BAD_PKT_LEN] = "Bad packet length",
7009 [OPA_LINKDOWN_REASON_PKT_TOO_LONG] = "Packet too long",
7010 [OPA_LINKDOWN_REASON_PKT_TOO_SHORT] = "Packet too short",
7011 [OPA_LINKDOWN_REASON_BAD_SLID] = "Bad SLID",
7012 [OPA_LINKDOWN_REASON_BAD_DLID] = "Bad DLID",
7013 [OPA_LINKDOWN_REASON_BAD_L2] = "Bad L2",
7014 [OPA_LINKDOWN_REASON_BAD_SC] = "Bad SC",
7015 [OPA_LINKDOWN_REASON_RCV_ERROR_8] = "Receive error 8",
7016 [OPA_LINKDOWN_REASON_BAD_MID_TAIL] = "Bad mid tail",
7017 [OPA_LINKDOWN_REASON_RCV_ERROR_10] = "Receive error 10",
7018 [OPA_LINKDOWN_REASON_PREEMPT_ERROR] = "Preempt error",
7019 [OPA_LINKDOWN_REASON_PREEMPT_VL15] = "Preempt vl15",
7020 [OPA_LINKDOWN_REASON_BAD_VL_MARKER] = "Bad VL marker",
7021 [OPA_LINKDOWN_REASON_RCV_ERROR_14] = "Receive error 14",
7022 [OPA_LINKDOWN_REASON_RCV_ERROR_15] = "Receive error 15",
7023 [OPA_LINKDOWN_REASON_BAD_HEAD_DIST] = "Bad head distance",
7024 [OPA_LINKDOWN_REASON_BAD_TAIL_DIST] = "Bad tail distance",
7025 [OPA_LINKDOWN_REASON_BAD_CTRL_DIST] = "Bad control distance",
7026 [OPA_LINKDOWN_REASON_BAD_CREDIT_ACK] = "Bad credit ack",
7027 [OPA_LINKDOWN_REASON_UNSUPPORTED_VL_MARKER] = "Unsupported VL marker",
7028 [OPA_LINKDOWN_REASON_BAD_PREEMPT] = "Bad preempt",
7029 [OPA_LINKDOWN_REASON_BAD_CONTROL_FLIT] = "Bad control flit",
7030 [OPA_LINKDOWN_REASON_EXCEED_MULTICAST_LIMIT] = "Exceed multicast limit",
7031 [OPA_LINKDOWN_REASON_RCV_ERROR_24] = "Receive error 24",
7032 [OPA_LINKDOWN_REASON_RCV_ERROR_25] = "Receive error 25",
7033 [OPA_LINKDOWN_REASON_RCV_ERROR_26] = "Receive error 26",
7034 [OPA_LINKDOWN_REASON_RCV_ERROR_27] = "Receive error 27",
7035 [OPA_LINKDOWN_REASON_RCV_ERROR_28] = "Receive error 28",
7036 [OPA_LINKDOWN_REASON_RCV_ERROR_29] = "Receive error 29",
7037 [OPA_LINKDOWN_REASON_RCV_ERROR_30] = "Receive error 30",
7038 [OPA_LINKDOWN_REASON_EXCESSIVE_BUFFER_OVERRUN] =
7039 "Excessive buffer overrun",
7040 [OPA_LINKDOWN_REASON_UNKNOWN] = "Unknown",
7041 [OPA_LINKDOWN_REASON_REBOOT] = "Reboot",
7042 [OPA_LINKDOWN_REASON_NEIGHBOR_UNKNOWN] = "Neighbor unknown",
7043 [OPA_LINKDOWN_REASON_FM_BOUNCE] = "FM bounce",
7044 [OPA_LINKDOWN_REASON_SPEED_POLICY] = "Speed policy",
7045 [OPA_LINKDOWN_REASON_WIDTH_POLICY] = "Width policy",
7046 [OPA_LINKDOWN_REASON_DISCONNECTED] = "Disconnected",
7047 [OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED] =
7048 "Local media not installed",
7049 [OPA_LINKDOWN_REASON_NOT_INSTALLED] = "Not installed",
7050 [OPA_LINKDOWN_REASON_CHASSIS_CONFIG] = "Chassis config",
7051 [OPA_LINKDOWN_REASON_END_TO_END_NOT_INSTALLED] =
7052 "End to end not installed",
7053 [OPA_LINKDOWN_REASON_POWER_POLICY] = "Power policy",
7054 [OPA_LINKDOWN_REASON_LINKSPEED_POLICY] = "Link speed policy",
7055 [OPA_LINKDOWN_REASON_LINKWIDTH_POLICY] = "Link width policy",
7056 [OPA_LINKDOWN_REASON_SWITCH_MGMT] = "Switch management",
7057 [OPA_LINKDOWN_REASON_SMA_DISABLED] = "SMA disabled",
7058 [OPA_LINKDOWN_REASON_TRANSIENT] = "Transient"
7059};
7060
7061/* return the neighbor link down reason string */
7062static const char *link_down_reason_str(u8 reason)
7063{
7064 const char *str = NULL;
7065
7066 if (reason < ARRAY_SIZE(link_down_reason_strs))
7067 str = link_down_reason_strs[reason];
7068 if (!str)
7069 str = "(invalid)";
7070
7071 return str;
7072}
7073
Mike Marciniszyn77241052015-07-30 15:17:43 -04007074/*
7075 * Handle a link down interrupt from the 8051.
7076 *
7077 * This is a work-queue function outside of the interrupt.
7078 */
7079void handle_link_down(struct work_struct *work)
7080{
7081 u8 lcl_reason, neigh_reason = 0;
Dean Luickfeb831d2016-04-14 08:31:36 -07007082 u8 link_down_reason;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007083 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
Dean Luickfeb831d2016-04-14 08:31:36 -07007084 link_down_work);
7085 int was_up;
7086 static const char ldr_str[] = "Link down reason: ";
Mike Marciniszyn77241052015-07-30 15:17:43 -04007087
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08007088 if ((ppd->host_link_state &
7089 (HLS_DN_POLL | HLS_VERIFY_CAP | HLS_GOING_UP)) &&
7090 ppd->port_type == PORT_TYPE_FIXED)
7091 ppd->offline_disabled_reason =
7092 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NOT_INSTALLED);
7093
7094 /* Go offline first, then deal with reading/writing through 8051 */
Dean Luickfeb831d2016-04-14 08:31:36 -07007095 was_up = !!(ppd->host_link_state & HLS_UP);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007096 set_link_state(ppd, HLS_DN_OFFLINE);
Sebastian Sanchez626c0772017-07-29 08:43:55 -07007097 xchg(&ppd->is_link_down_queued, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007098
Dean Luickfeb831d2016-04-14 08:31:36 -07007099 if (was_up) {
7100 lcl_reason = 0;
7101 /* link down reason is only valid if the link was up */
7102 read_link_down_reason(ppd->dd, &link_down_reason);
7103 switch (link_down_reason) {
7104 case LDR_LINK_TRANSFER_ACTIVE_LOW:
7105 /* the link went down, no idle message reason */
7106 dd_dev_info(ppd->dd, "%sUnexpected link down\n",
7107 ldr_str);
7108 break;
7109 case LDR_RECEIVED_LINKDOWN_IDLE_MSG:
7110 /*
7111 * The neighbor reason is only valid if an idle message
7112 * was received for it.
7113 */
7114 read_planned_down_reason_code(ppd->dd, &neigh_reason);
7115 dd_dev_info(ppd->dd,
7116 "%sNeighbor link down message %d, %s\n",
7117 ldr_str, neigh_reason,
7118 link_down_reason_str(neigh_reason));
7119 break;
7120 case LDR_RECEIVED_HOST_OFFLINE_REQ:
7121 dd_dev_info(ppd->dd,
7122 "%sHost requested link to go offline\n",
7123 ldr_str);
7124 break;
7125 default:
7126 dd_dev_info(ppd->dd, "%sUnknown reason 0x%x\n",
7127 ldr_str, link_down_reason);
7128 break;
7129 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04007130
Dean Luickfeb831d2016-04-14 08:31:36 -07007131 /*
7132 * If no reason, assume peer-initiated but missed
7133 * LinkGoingDown idle flits.
7134 */
7135 if (neigh_reason == 0)
7136 lcl_reason = OPA_LINKDOWN_REASON_NEIGHBOR_UNKNOWN;
7137 } else {
7138 /* went down while polling or going up */
7139 lcl_reason = OPA_LINKDOWN_REASON_TRANSIENT;
7140 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04007141
7142 set_link_down_reason(ppd, lcl_reason, neigh_reason, 0);
7143
Dean Luick015e91f2016-04-14 08:31:42 -07007144 /* inform the SMA when the link transitions from up to down */
7145 if (was_up && ppd->local_link_down_reason.sma == 0 &&
7146 ppd->neigh_link_down_reason.sma == 0) {
7147 ppd->local_link_down_reason.sma =
7148 ppd->local_link_down_reason.latest;
7149 ppd->neigh_link_down_reason.sma =
7150 ppd->neigh_link_down_reason.latest;
7151 }
7152
Mike Marciniszyn77241052015-07-30 15:17:43 -04007153 reset_neighbor_info(ppd);
7154
7155 /* disable the port */
7156 clear_rcvctrl(ppd->dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
7157
Jubin John4d114fd2016-02-14 20:21:43 -08007158 /*
7159 * If there is no cable attached, turn the DC off. Otherwise,
7160 * start the link bring up.
7161 */
Dean Luick0db9dec2016-09-06 04:35:20 -07007162 if (ppd->port_type == PORT_TYPE_QSFP && !qsfp_mod_present(ppd))
Mike Marciniszyn77241052015-07-30 15:17:43 -04007163 dc_shutdown(ppd->dd);
Dean Luick0db9dec2016-09-06 04:35:20 -07007164 else
Mike Marciniszyn77241052015-07-30 15:17:43 -04007165 start_link(ppd);
7166}
7167
7168void handle_link_bounce(struct work_struct *work)
7169{
7170 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
7171 link_bounce_work);
7172
7173 /*
7174 * Only do something if the link is currently up.
7175 */
7176 if (ppd->host_link_state & HLS_UP) {
7177 set_link_state(ppd, HLS_DN_OFFLINE);
7178 start_link(ppd);
7179 } else {
7180 dd_dev_info(ppd->dd, "%s: link not up (%s), nothing to do\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007181 __func__, link_state_name(ppd->host_link_state));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007182 }
7183}
7184
7185/*
7186 * Mask conversion: Capability exchange to Port LTP. The capability
7187 * exchange has an implicit 16b CRC that is mandatory.
7188 */
7189static int cap_to_port_ltp(int cap)
7190{
7191 int port_ltp = PORT_LTP_CRC_MODE_16; /* this mode is mandatory */
7192
7193 if (cap & CAP_CRC_14B)
7194 port_ltp |= PORT_LTP_CRC_MODE_14;
7195 if (cap & CAP_CRC_48B)
7196 port_ltp |= PORT_LTP_CRC_MODE_48;
7197 if (cap & CAP_CRC_12B_16B_PER_LANE)
7198 port_ltp |= PORT_LTP_CRC_MODE_PER_LANE;
7199
7200 return port_ltp;
7201}
7202
7203/*
7204 * Convert an OPA Port LTP mask to capability mask
7205 */
7206int port_ltp_to_cap(int port_ltp)
7207{
7208 int cap_mask = 0;
7209
7210 if (port_ltp & PORT_LTP_CRC_MODE_14)
7211 cap_mask |= CAP_CRC_14B;
7212 if (port_ltp & PORT_LTP_CRC_MODE_48)
7213 cap_mask |= CAP_CRC_48B;
7214 if (port_ltp & PORT_LTP_CRC_MODE_PER_LANE)
7215 cap_mask |= CAP_CRC_12B_16B_PER_LANE;
7216
7217 return cap_mask;
7218}
7219
7220/*
7221 * Convert a single DC LCB CRC mode to an OPA Port LTP mask.
7222 */
7223static int lcb_to_port_ltp(int lcb_crc)
7224{
7225 int port_ltp = 0;
7226
7227 if (lcb_crc == LCB_CRC_12B_16B_PER_LANE)
7228 port_ltp = PORT_LTP_CRC_MODE_PER_LANE;
7229 else if (lcb_crc == LCB_CRC_48B)
7230 port_ltp = PORT_LTP_CRC_MODE_48;
7231 else if (lcb_crc == LCB_CRC_14B)
7232 port_ltp = PORT_LTP_CRC_MODE_14;
7233 else
7234 port_ltp = PORT_LTP_CRC_MODE_16;
7235
7236 return port_ltp;
7237}
7238
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07007239static void clear_full_mgmt_pkey(struct hfi1_pportdata *ppd)
Sebastian Sanchezce8b2fd2016-05-24 12:50:47 -07007240{
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07007241 if (ppd->pkeys[2] != 0) {
7242 ppd->pkeys[2] = 0;
7243 (void)hfi1_set_ib_cfg(ppd, HFI1_IB_CFG_PKEYS, 0);
Sebastian Sanchez34d351f2016-06-09 07:52:03 -07007244 hfi1_event_pkey_change(ppd->dd, ppd->port);
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07007245 }
Sebastian Sanchezce8b2fd2016-05-24 12:50:47 -07007246}
7247
Mike Marciniszyn77241052015-07-30 15:17:43 -04007248/*
7249 * Convert the given link width to the OPA link width bitmask.
7250 */
7251static u16 link_width_to_bits(struct hfi1_devdata *dd, u16 width)
7252{
7253 switch (width) {
7254 case 0:
7255 /*
7256 * Simulator and quick linkup do not set the width.
7257 * Just set it to 4x without complaint.
7258 */
7259 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR || quick_linkup)
7260 return OPA_LINK_WIDTH_4X;
7261 return 0; /* no lanes up */
7262 case 1: return OPA_LINK_WIDTH_1X;
7263 case 2: return OPA_LINK_WIDTH_2X;
7264 case 3: return OPA_LINK_WIDTH_3X;
7265 default:
7266 dd_dev_info(dd, "%s: invalid width %d, using 4\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007267 __func__, width);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007268 /* fall through */
7269 case 4: return OPA_LINK_WIDTH_4X;
7270 }
7271}
7272
7273/*
7274 * Do a population count on the bottom nibble.
7275 */
7276static const u8 bit_counts[16] = {
7277 0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4
7278};
Jubin Johnf4d507c2016-02-14 20:20:25 -08007279
Mike Marciniszyn77241052015-07-30 15:17:43 -04007280static inline u8 nibble_to_count(u8 nibble)
7281{
7282 return bit_counts[nibble & 0xf];
7283}
7284
7285/*
7286 * Read the active lane information from the 8051 registers and return
7287 * their widths.
7288 *
7289 * Active lane information is found in these 8051 registers:
7290 * enable_lane_tx
7291 * enable_lane_rx
7292 */
7293static void get_link_widths(struct hfi1_devdata *dd, u16 *tx_width,
7294 u16 *rx_width)
7295{
7296 u16 tx, rx;
7297 u8 enable_lane_rx;
7298 u8 enable_lane_tx;
7299 u8 tx_polarity_inversion;
7300 u8 rx_polarity_inversion;
7301 u8 max_rate;
7302
7303 /* read the active lanes */
7304 read_tx_settings(dd, &enable_lane_tx, &tx_polarity_inversion,
Jubin John17fb4f22016-02-14 20:21:52 -08007305 &rx_polarity_inversion, &max_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007306 read_local_lni(dd, &enable_lane_rx);
7307
7308 /* convert to counts */
7309 tx = nibble_to_count(enable_lane_tx);
7310 rx = nibble_to_count(enable_lane_rx);
7311
7312 /*
7313 * Set link_speed_active here, overriding what was set in
7314 * handle_verify_cap(). The ASIC 8051 firmware does not correctly
7315 * set the max_rate field in handle_verify_cap until v0.19.
7316 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08007317 if ((dd->icode == ICODE_RTL_SILICON) &&
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07007318 (dd->dc8051_ver < dc8051_ver(0, 19, 0))) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007319 /* max_rate: 0 = 12.5G, 1 = 25G */
7320 switch (max_rate) {
7321 case 0:
7322 dd->pport[0].link_speed_active = OPA_LINK_SPEED_12_5G;
7323 break;
7324 default:
7325 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007326 "%s: unexpected max rate %d, using 25Gb\n",
7327 __func__, (int)max_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007328 /* fall through */
7329 case 1:
7330 dd->pport[0].link_speed_active = OPA_LINK_SPEED_25G;
7331 break;
7332 }
7333 }
7334
7335 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007336 "Fabric active lanes (width): tx 0x%x (%d), rx 0x%x (%d)\n",
7337 enable_lane_tx, tx, enable_lane_rx, rx);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007338 *tx_width = link_width_to_bits(dd, tx);
7339 *rx_width = link_width_to_bits(dd, rx);
7340}
7341
7342/*
7343 * Read verify_cap_local_fm_link_width[1] to obtain the link widths.
7344 * Valid after the end of VerifyCap and during LinkUp. Does not change
7345 * after link up. I.e. look elsewhere for downgrade information.
7346 *
7347 * Bits are:
7348 * + bits [7:4] contain the number of active transmitters
7349 * + bits [3:0] contain the number of active receivers
7350 * These are numbers 1 through 4 and can be different values if the
7351 * link is asymmetric.
7352 *
7353 * verify_cap_local_fm_link_width[0] retains its original value.
7354 */
7355static void get_linkup_widths(struct hfi1_devdata *dd, u16 *tx_width,
7356 u16 *rx_width)
7357{
7358 u16 widths, tx, rx;
7359 u8 misc_bits, local_flags;
7360 u16 active_tx, active_rx;
7361
Sebastian Sanchez254361c2018-05-02 06:42:21 -07007362 read_vc_local_link_mode(dd, &misc_bits, &local_flags, &widths);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007363 tx = widths >> 12;
7364 rx = (widths >> 8) & 0xf;
7365
7366 *tx_width = link_width_to_bits(dd, tx);
7367 *rx_width = link_width_to_bits(dd, rx);
7368
7369 /* print the active widths */
7370 get_link_widths(dd, &active_tx, &active_rx);
7371}
7372
7373/*
7374 * Set ppd->link_width_active and ppd->link_width_downgrade_active using
7375 * hardware information when the link first comes up.
7376 *
7377 * The link width is not available until after VerifyCap.AllFramesReceived
7378 * (the trigger for handle_verify_cap), so this is outside that routine
7379 * and should be called when the 8051 signals linkup.
7380 */
7381void get_linkup_link_widths(struct hfi1_pportdata *ppd)
7382{
7383 u16 tx_width, rx_width;
7384
7385 /* get end-of-LNI link widths */
7386 get_linkup_widths(ppd->dd, &tx_width, &rx_width);
7387
7388 /* use tx_width as the link is supposed to be symmetric on link up */
7389 ppd->link_width_active = tx_width;
7390 /* link width downgrade active (LWD.A) starts out matching LW.A */
7391 ppd->link_width_downgrade_tx_active = ppd->link_width_active;
7392 ppd->link_width_downgrade_rx_active = ppd->link_width_active;
7393 /* per OPA spec, on link up LWD.E resets to LWD.S */
7394 ppd->link_width_downgrade_enabled = ppd->link_width_downgrade_supported;
7395 /* cache the active egress rate (units {10^6 bits/sec]) */
7396 ppd->current_egress_rate = active_egress_rate(ppd);
7397}
7398
7399/*
7400 * Handle a verify capabilities interrupt from the 8051.
7401 *
7402 * This is a work-queue function outside of the interrupt.
7403 */
7404void handle_verify_cap(struct work_struct *work)
7405{
7406 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
7407 link_vc_work);
7408 struct hfi1_devdata *dd = ppd->dd;
7409 u64 reg;
7410 u8 power_management;
Colin Ian Kinga63aa5d2017-07-13 23:13:38 +01007411 u8 continuous;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007412 u8 vcu;
7413 u8 vau;
7414 u8 z;
7415 u16 vl15buf;
7416 u16 link_widths;
7417 u16 crc_mask;
7418 u16 crc_val;
7419 u16 device_id;
7420 u16 active_tx, active_rx;
7421 u8 partner_supported_crc;
7422 u8 remote_tx_rate;
7423 u8 device_rev;
7424
7425 set_link_state(ppd, HLS_VERIFY_CAP);
7426
7427 lcb_shutdown(dd, 0);
7428 adjust_lcb_for_fpga_serdes(dd);
7429
Colin Ian Kinga63aa5d2017-07-13 23:13:38 +01007430 read_vc_remote_phy(dd, &power_management, &continuous);
Jubin John17fb4f22016-02-14 20:21:52 -08007431 read_vc_remote_fabric(dd, &vau, &z, &vcu, &vl15buf,
7432 &partner_supported_crc);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007433 read_vc_remote_link_width(dd, &remote_tx_rate, &link_widths);
7434 read_remote_device_id(dd, &device_id, &device_rev);
Jan Sokolowski641f3482017-11-06 06:38:16 -08007435
Mike Marciniszyn77241052015-07-30 15:17:43 -04007436 /* print the active widths */
7437 get_link_widths(dd, &active_tx, &active_rx);
7438 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007439 "Peer PHY: power management 0x%x, continuous updates 0x%x\n",
Colin Ian Kinga63aa5d2017-07-13 23:13:38 +01007440 (int)power_management, (int)continuous);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007441 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007442 "Peer Fabric: vAU %d, Z %d, vCU %d, vl15 credits 0x%x, CRC sizes 0x%x\n",
7443 (int)vau, (int)z, (int)vcu, (int)vl15buf,
7444 (int)partner_supported_crc);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007445 dd_dev_info(dd, "Peer Link Width: tx rate 0x%x, widths 0x%x\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007446 (u32)remote_tx_rate, (u32)link_widths);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007447 dd_dev_info(dd, "Peer Device ID: 0x%04x, Revision 0x%02x\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007448 (u32)device_id, (u32)device_rev);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007449 /*
7450 * The peer vAU value just read is the peer receiver value. HFI does
7451 * not support a transmit vAU of 0 (AU == 8). We advertised that
7452 * with Z=1 in the fabric capabilities sent to the peer. The peer
7453 * will see our Z=1, and, if it advertised a vAU of 0, will move its
7454 * receive to vAU of 1 (AU == 16). Do the same here. We do not care
7455 * about the peer Z value - our sent vAU is 3 (hardwired) and is not
7456 * subject to the Z value exception.
7457 */
7458 if (vau == 0)
7459 vau = 1;
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07007460 set_up_vau(dd, vau);
7461
7462 /*
7463 * Set VL15 credits to 0 in global credit register. Cache remote VL15
7464 * credits value and wait for link-up interrupt ot set it.
7465 */
7466 set_up_vl15(dd, 0);
7467 dd->vl15buf_cached = vl15buf;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007468
7469 /* set up the LCB CRC mode */
7470 crc_mask = ppd->port_crc_mode_enabled & partner_supported_crc;
7471
7472 /* order is important: use the lowest bit in common */
7473 if (crc_mask & CAP_CRC_14B)
7474 crc_val = LCB_CRC_14B;
7475 else if (crc_mask & CAP_CRC_48B)
7476 crc_val = LCB_CRC_48B;
7477 else if (crc_mask & CAP_CRC_12B_16B_PER_LANE)
7478 crc_val = LCB_CRC_12B_16B_PER_LANE;
7479 else
7480 crc_val = LCB_CRC_16B;
7481
7482 dd_dev_info(dd, "Final LCB CRC mode: %d\n", (int)crc_val);
7483 write_csr(dd, DC_LCB_CFG_CRC_MODE,
7484 (u64)crc_val << DC_LCB_CFG_CRC_MODE_TX_VAL_SHIFT);
7485
7486 /* set (14b only) or clear sideband credit */
7487 reg = read_csr(dd, SEND_CM_CTRL);
7488 if (crc_val == LCB_CRC_14B && crc_14b_sideband) {
7489 write_csr(dd, SEND_CM_CTRL,
Jubin John17fb4f22016-02-14 20:21:52 -08007490 reg | SEND_CM_CTRL_FORCE_CREDIT_MODE_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007491 } else {
7492 write_csr(dd, SEND_CM_CTRL,
Jubin John17fb4f22016-02-14 20:21:52 -08007493 reg & ~SEND_CM_CTRL_FORCE_CREDIT_MODE_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007494 }
7495
7496 ppd->link_speed_active = 0; /* invalid value */
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07007497 if (dd->dc8051_ver < dc8051_ver(0, 20, 0)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007498 /* remote_tx_rate: 0 = 12.5G, 1 = 25G */
7499 switch (remote_tx_rate) {
7500 case 0:
7501 ppd->link_speed_active = OPA_LINK_SPEED_12_5G;
7502 break;
7503 case 1:
7504 ppd->link_speed_active = OPA_LINK_SPEED_25G;
7505 break;
7506 }
7507 } else {
7508 /* actual rate is highest bit of the ANDed rates */
7509 u8 rate = remote_tx_rate & ppd->local_tx_rate;
7510
7511 if (rate & 2)
7512 ppd->link_speed_active = OPA_LINK_SPEED_25G;
7513 else if (rate & 1)
7514 ppd->link_speed_active = OPA_LINK_SPEED_12_5G;
7515 }
7516 if (ppd->link_speed_active == 0) {
7517 dd_dev_err(dd, "%s: unexpected remote tx rate %d, using 25Gb\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007518 __func__, (int)remote_tx_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007519 ppd->link_speed_active = OPA_LINK_SPEED_25G;
7520 }
7521
7522 /*
7523 * Cache the values of the supported, enabled, and active
7524 * LTP CRC modes to return in 'portinfo' queries. But the bit
7525 * flags that are returned in the portinfo query differ from
7526 * what's in the link_crc_mask, crc_sizes, and crc_val
7527 * variables. Convert these here.
7528 */
7529 ppd->port_ltp_crc_mode = cap_to_port_ltp(link_crc_mask) << 8;
7530 /* supported crc modes */
7531 ppd->port_ltp_crc_mode |=
7532 cap_to_port_ltp(ppd->port_crc_mode_enabled) << 4;
7533 /* enabled crc modes */
7534 ppd->port_ltp_crc_mode |= lcb_to_port_ltp(crc_val);
7535 /* active crc mode */
7536
7537 /* set up the remote credit return table */
7538 assign_remote_cm_au_table(dd, vcu);
7539
7540 /*
7541 * The LCB is reset on entry to handle_verify_cap(), so this must
7542 * be applied on every link up.
7543 *
7544 * Adjust LCB error kill enable to kill the link if
7545 * these RBUF errors are seen:
7546 * REPLAY_BUF_MBE_SMASK
7547 * FLIT_INPUT_BUF_MBE_SMASK
7548 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05007549 if (is_ax(dd)) { /* fixed in B0 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04007550 reg = read_csr(dd, DC_LCB_CFG_LINK_KILL_EN);
7551 reg |= DC_LCB_CFG_LINK_KILL_EN_REPLAY_BUF_MBE_SMASK
7552 | DC_LCB_CFG_LINK_KILL_EN_FLIT_INPUT_BUF_MBE_SMASK;
7553 write_csr(dd, DC_LCB_CFG_LINK_KILL_EN, reg);
7554 }
7555
7556 /* pull LCB fifos out of reset - all fifo clocks must be stable */
7557 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0);
7558
7559 /* give 8051 access to the LCB CSRs */
7560 write_csr(dd, DC_LCB_ERR_EN, 0); /* mask LCB errors */
7561 set_8051_lcb_access(dd);
7562
Mike Marciniszyn77241052015-07-30 15:17:43 -04007563 /* tell the 8051 to go to LinkUp */
7564 set_link_state(ppd, HLS_GOING_UP);
7565}
7566
Kamenee Arumugam07190072018-02-01 10:52:28 -08007567/**
7568 * apply_link_downgrade_policy - Apply the link width downgrade enabled
7569 * policy against the current active link widths.
7570 * @ppd: info of physical Hfi port
7571 * @refresh_widths: True indicates link downgrade event
7572 * @return: True indicates a successful link downgrade. False indicates
7573 * link downgrade event failed and the link will bounce back to
7574 * default link width.
Mike Marciniszyn77241052015-07-30 15:17:43 -04007575 *
Kamenee Arumugam07190072018-02-01 10:52:28 -08007576 * Called when the enabled policy changes or the active link widths
7577 * change.
7578 * Refresh_widths indicates that a link downgrade occurred. The
7579 * link_downgraded variable is set by refresh_widths and
7580 * determines the success/failure of the policy application.
Mike Marciniszyn77241052015-07-30 15:17:43 -04007581 */
Kamenee Arumugam07190072018-02-01 10:52:28 -08007582bool apply_link_downgrade_policy(struct hfi1_pportdata *ppd,
7583 bool refresh_widths)
Mike Marciniszyn77241052015-07-30 15:17:43 -04007584{
Mike Marciniszyn77241052015-07-30 15:17:43 -04007585 int do_bounce = 0;
Dean Luick323fd782015-11-16 21:59:24 -05007586 int tries;
7587 u16 lwde;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007588 u16 tx, rx;
Kamenee Arumugam07190072018-02-01 10:52:28 -08007589 bool link_downgraded = refresh_widths;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007590
Dean Luick323fd782015-11-16 21:59:24 -05007591 /* use the hls lock to avoid a race with actual link up */
7592 tries = 0;
7593retry:
Mike Marciniszyn77241052015-07-30 15:17:43 -04007594 mutex_lock(&ppd->hls_lock);
7595 /* only apply if the link is up */
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07007596 if (ppd->host_link_state & HLS_DOWN) {
Dean Luick323fd782015-11-16 21:59:24 -05007597 /* still going up..wait and retry */
7598 if (ppd->host_link_state & HLS_GOING_UP) {
7599 if (++tries < 1000) {
7600 mutex_unlock(&ppd->hls_lock);
7601 usleep_range(100, 120); /* arbitrary */
7602 goto retry;
7603 }
7604 dd_dev_err(ppd->dd,
7605 "%s: giving up waiting for link state change\n",
7606 __func__);
7607 }
7608 goto done;
7609 }
7610
7611 lwde = ppd->link_width_downgrade_enabled;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007612
7613 if (refresh_widths) {
7614 get_link_widths(ppd->dd, &tx, &rx);
7615 ppd->link_width_downgrade_tx_active = tx;
7616 ppd->link_width_downgrade_rx_active = rx;
7617 }
7618
Dean Luickf9b56352016-04-14 08:31:30 -07007619 if (ppd->link_width_downgrade_tx_active == 0 ||
7620 ppd->link_width_downgrade_rx_active == 0) {
7621 /* the 8051 reported a dead link as a downgrade */
7622 dd_dev_err(ppd->dd, "Link downgrade is really a link down, ignoring\n");
Kamenee Arumugam07190072018-02-01 10:52:28 -08007623 link_downgraded = false;
Dean Luickf9b56352016-04-14 08:31:30 -07007624 } else if (lwde == 0) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007625 /* downgrade is disabled */
7626
7627 /* bounce if not at starting active width */
7628 if ((ppd->link_width_active !=
Jubin John17fb4f22016-02-14 20:21:52 -08007629 ppd->link_width_downgrade_tx_active) ||
7630 (ppd->link_width_active !=
7631 ppd->link_width_downgrade_rx_active)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007632 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007633 "Link downgrade is disabled and link has downgraded, downing link\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04007634 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007635 " original 0x%x, tx active 0x%x, rx active 0x%x\n",
7636 ppd->link_width_active,
7637 ppd->link_width_downgrade_tx_active,
7638 ppd->link_width_downgrade_rx_active);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007639 do_bounce = 1;
Kamenee Arumugam07190072018-02-01 10:52:28 -08007640 link_downgraded = false;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007641 }
Jubin Johnd0d236e2016-02-14 20:20:15 -08007642 } else if ((lwde & ppd->link_width_downgrade_tx_active) == 0 ||
7643 (lwde & ppd->link_width_downgrade_rx_active) == 0) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007644 /* Tx or Rx is outside the enabled policy */
7645 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007646 "Link is outside of downgrade allowed, downing link\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04007647 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007648 " enabled 0x%x, tx active 0x%x, rx active 0x%x\n",
7649 lwde, ppd->link_width_downgrade_tx_active,
7650 ppd->link_width_downgrade_rx_active);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007651 do_bounce = 1;
Kamenee Arumugam07190072018-02-01 10:52:28 -08007652 link_downgraded = false;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007653 }
7654
Dean Luick323fd782015-11-16 21:59:24 -05007655done:
7656 mutex_unlock(&ppd->hls_lock);
7657
Mike Marciniszyn77241052015-07-30 15:17:43 -04007658 if (do_bounce) {
7659 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_WIDTH_POLICY, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08007660 OPA_LINKDOWN_REASON_WIDTH_POLICY);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007661 set_link_state(ppd, HLS_DN_OFFLINE);
7662 start_link(ppd);
7663 }
Kamenee Arumugam07190072018-02-01 10:52:28 -08007664
7665 return link_downgraded;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007666}
7667
7668/*
7669 * Handle a link downgrade interrupt from the 8051.
7670 *
7671 * This is a work-queue function outside of the interrupt.
7672 */
7673void handle_link_downgrade(struct work_struct *work)
7674{
7675 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
7676 link_downgrade_work);
7677
7678 dd_dev_info(ppd->dd, "8051: Link width downgrade\n");
Kamenee Arumugam07190072018-02-01 10:52:28 -08007679 if (apply_link_downgrade_policy(ppd, true))
7680 update_xmit_counters(ppd, ppd->link_width_downgrade_tx_active);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007681}
7682
7683static char *dcc_err_string(char *buf, int buf_len, u64 flags)
7684{
7685 return flag_string(buf, buf_len, flags, dcc_err_flags,
7686 ARRAY_SIZE(dcc_err_flags));
7687}
7688
7689static char *lcb_err_string(char *buf, int buf_len, u64 flags)
7690{
7691 return flag_string(buf, buf_len, flags, lcb_err_flags,
7692 ARRAY_SIZE(lcb_err_flags));
7693}
7694
7695static char *dc8051_err_string(char *buf, int buf_len, u64 flags)
7696{
7697 return flag_string(buf, buf_len, flags, dc8051_err_flags,
7698 ARRAY_SIZE(dc8051_err_flags));
7699}
7700
7701static char *dc8051_info_err_string(char *buf, int buf_len, u64 flags)
7702{
7703 return flag_string(buf, buf_len, flags, dc8051_info_err_flags,
7704 ARRAY_SIZE(dc8051_info_err_flags));
7705}
7706
7707static char *dc8051_info_host_msg_string(char *buf, int buf_len, u64 flags)
7708{
7709 return flag_string(buf, buf_len, flags, dc8051_info_host_msg_flags,
7710 ARRAY_SIZE(dc8051_info_host_msg_flags));
7711}
7712
7713static void handle_8051_interrupt(struct hfi1_devdata *dd, u32 unused, u64 reg)
7714{
7715 struct hfi1_pportdata *ppd = dd->pport;
7716 u64 info, err, host_msg;
7717 int queue_link_down = 0;
7718 char buf[96];
7719
7720 /* look at the flags */
7721 if (reg & DC_DC8051_ERR_FLG_SET_BY_8051_SMASK) {
7722 /* 8051 information set by firmware */
7723 /* read DC8051_DBG_ERR_INFO_SET_BY_8051 for details */
7724 info = read_csr(dd, DC_DC8051_DBG_ERR_INFO_SET_BY_8051);
7725 err = (info >> DC_DC8051_DBG_ERR_INFO_SET_BY_8051_ERROR_SHIFT)
7726 & DC_DC8051_DBG_ERR_INFO_SET_BY_8051_ERROR_MASK;
7727 host_msg = (info >>
7728 DC_DC8051_DBG_ERR_INFO_SET_BY_8051_HOST_MSG_SHIFT)
7729 & DC_DC8051_DBG_ERR_INFO_SET_BY_8051_HOST_MSG_MASK;
7730
7731 /*
7732 * Handle error flags.
7733 */
7734 if (err & FAILED_LNI) {
7735 /*
7736 * LNI error indications are cleared by the 8051
7737 * only when starting polling. Only pay attention
7738 * to them when in the states that occur during
7739 * LNI.
7740 */
7741 if (ppd->host_link_state
7742 & (HLS_DN_POLL | HLS_VERIFY_CAP | HLS_GOING_UP)) {
7743 queue_link_down = 1;
7744 dd_dev_info(dd, "Link error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007745 dc8051_info_err_string(buf,
7746 sizeof(buf),
7747 err &
7748 FAILED_LNI));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007749 }
7750 err &= ~(u64)FAILED_LNI;
7751 }
Dean Luick6d014532015-12-01 15:38:23 -05007752 /* unknown frames can happen durning LNI, just count */
7753 if (err & UNKNOWN_FRAME) {
7754 ppd->unknown_frame_count++;
7755 err &= ~(u64)UNKNOWN_FRAME;
7756 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04007757 if (err) {
7758 /* report remaining errors, but do not do anything */
7759 dd_dev_err(dd, "8051 info error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007760 dc8051_info_err_string(buf, sizeof(buf),
7761 err));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007762 }
7763
7764 /*
7765 * Handle host message flags.
7766 */
7767 if (host_msg & HOST_REQ_DONE) {
7768 /*
7769 * Presently, the driver does a busy wait for
7770 * host requests to complete. This is only an
7771 * informational message.
7772 * NOTE: The 8051 clears the host message
7773 * information *on the next 8051 command*.
7774 * Therefore, when linkup is achieved,
7775 * this flag will still be set.
7776 */
7777 host_msg &= ~(u64)HOST_REQ_DONE;
7778 }
7779 if (host_msg & BC_SMA_MSG) {
Sebastian Sanchez71d47002017-07-29 08:43:49 -07007780 queue_work(ppd->link_wq, &ppd->sma_message_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007781 host_msg &= ~(u64)BC_SMA_MSG;
7782 }
7783 if (host_msg & LINKUP_ACHIEVED) {
7784 dd_dev_info(dd, "8051: Link up\n");
Sebastian Sanchez71d47002017-07-29 08:43:49 -07007785 queue_work(ppd->link_wq, &ppd->link_up_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007786 host_msg &= ~(u64)LINKUP_ACHIEVED;
7787 }
7788 if (host_msg & EXT_DEVICE_CFG_REQ) {
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07007789 handle_8051_request(ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007790 host_msg &= ~(u64)EXT_DEVICE_CFG_REQ;
7791 }
7792 if (host_msg & VERIFY_CAP_FRAME) {
Sebastian Sanchez71d47002017-07-29 08:43:49 -07007793 queue_work(ppd->link_wq, &ppd->link_vc_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007794 host_msg &= ~(u64)VERIFY_CAP_FRAME;
7795 }
7796 if (host_msg & LINK_GOING_DOWN) {
7797 const char *extra = "";
7798 /* no downgrade action needed if going down */
7799 if (host_msg & LINK_WIDTH_DOWNGRADED) {
7800 host_msg &= ~(u64)LINK_WIDTH_DOWNGRADED;
7801 extra = " (ignoring downgrade)";
7802 }
7803 dd_dev_info(dd, "8051: Link down%s\n", extra);
7804 queue_link_down = 1;
7805 host_msg &= ~(u64)LINK_GOING_DOWN;
7806 }
7807 if (host_msg & LINK_WIDTH_DOWNGRADED) {
Sebastian Sanchez71d47002017-07-29 08:43:49 -07007808 queue_work(ppd->link_wq, &ppd->link_downgrade_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007809 host_msg &= ~(u64)LINK_WIDTH_DOWNGRADED;
7810 }
7811 if (host_msg) {
7812 /* report remaining messages, but do not do anything */
7813 dd_dev_info(dd, "8051 info host message: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007814 dc8051_info_host_msg_string(buf,
7815 sizeof(buf),
7816 host_msg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007817 }
7818
7819 reg &= ~DC_DC8051_ERR_FLG_SET_BY_8051_SMASK;
7820 }
7821 if (reg & DC_DC8051_ERR_FLG_LOST_8051_HEART_BEAT_SMASK) {
7822 /*
7823 * Lost the 8051 heartbeat. If this happens, we
7824 * receive constant interrupts about it. Disable
7825 * the interrupt after the first.
7826 */
7827 dd_dev_err(dd, "Lost 8051 heartbeat\n");
7828 write_csr(dd, DC_DC8051_ERR_EN,
Jubin John17fb4f22016-02-14 20:21:52 -08007829 read_csr(dd, DC_DC8051_ERR_EN) &
7830 ~DC_DC8051_ERR_EN_LOST_8051_HEART_BEAT_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007831
7832 reg &= ~DC_DC8051_ERR_FLG_LOST_8051_HEART_BEAT_SMASK;
7833 }
7834 if (reg) {
7835 /* report the error, but do not do anything */
7836 dd_dev_err(dd, "8051 error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007837 dc8051_err_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007838 }
7839
7840 if (queue_link_down) {
Jubin John4d114fd2016-02-14 20:21:43 -08007841 /*
7842 * if the link is already going down or disabled, do not
Sebastian Sanchezb6422bc2017-08-13 08:08:22 -07007843 * queue another. If there's a link down entry already
7844 * queued, don't queue another one.
Jubin John4d114fd2016-02-14 20:21:43 -08007845 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08007846 if ((ppd->host_link_state &
7847 (HLS_GOING_OFFLINE | HLS_LINK_COOLDOWN)) ||
Sebastian Sanchezb6422bc2017-08-13 08:08:22 -07007848 ppd->link_enabled == 0) {
7849 dd_dev_info(dd, "%s: not queuing link down. host_link_state %x, link_enabled %x\n",
7850 __func__, ppd->host_link_state,
7851 ppd->link_enabled);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007852 } else {
Sebastian Sanchezb6422bc2017-08-13 08:08:22 -07007853 if (xchg(&ppd->is_link_down_queued, 1) == 1)
7854 dd_dev_info(dd,
7855 "%s: link down request already queued\n",
7856 __func__);
7857 else
7858 queue_work(ppd->link_wq, &ppd->link_down_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007859 }
7860 }
7861}
7862
7863static const char * const fm_config_txt[] = {
7864[0] =
7865 "BadHeadDist: Distance violation between two head flits",
7866[1] =
7867 "BadTailDist: Distance violation between two tail flits",
7868[2] =
7869 "BadCtrlDist: Distance violation between two credit control flits",
7870[3] =
7871 "BadCrdAck: Credits return for unsupported VL",
7872[4] =
7873 "UnsupportedVLMarker: Received VL Marker",
7874[5] =
7875 "BadPreempt: Exceeded the preemption nesting level",
7876[6] =
7877 "BadControlFlit: Received unsupported control flit",
7878/* no 7 */
7879[8] =
7880 "UnsupportedVLMarker: Received VL Marker for unconfigured or disabled VL",
7881};
7882
7883static const char * const port_rcv_txt[] = {
7884[1] =
7885 "BadPktLen: Illegal PktLen",
7886[2] =
7887 "PktLenTooLong: Packet longer than PktLen",
7888[3] =
7889 "PktLenTooShort: Packet shorter than PktLen",
7890[4] =
7891 "BadSLID: Illegal SLID (0, using multicast as SLID, does not include security validation of SLID)",
7892[5] =
7893 "BadDLID: Illegal DLID (0, doesn't match HFI)",
7894[6] =
7895 "BadL2: Illegal L2 opcode",
7896[7] =
7897 "BadSC: Unsupported SC",
7898[9] =
7899 "BadRC: Illegal RC",
7900[11] =
7901 "PreemptError: Preempting with same VL",
7902[12] =
7903 "PreemptVL15: Preempting a VL15 packet",
7904};
7905
7906#define OPA_LDR_FMCONFIG_OFFSET 16
7907#define OPA_LDR_PORTRCV_OFFSET 0
7908static void handle_dcc_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
7909{
7910 u64 info, hdr0, hdr1;
7911 const char *extra;
7912 char buf[96];
7913 struct hfi1_pportdata *ppd = dd->pport;
7914 u8 lcl_reason = 0;
7915 int do_bounce = 0;
7916
7917 if (reg & DCC_ERR_FLG_UNCORRECTABLE_ERR_SMASK) {
7918 if (!(dd->err_info_uncorrectable & OPA_EI_STATUS_SMASK)) {
7919 info = read_csr(dd, DCC_ERR_INFO_UNCORRECTABLE);
7920 dd->err_info_uncorrectable = info & OPA_EI_CODE_SMASK;
7921 /* set status bit */
7922 dd->err_info_uncorrectable |= OPA_EI_STATUS_SMASK;
7923 }
7924 reg &= ~DCC_ERR_FLG_UNCORRECTABLE_ERR_SMASK;
7925 }
7926
7927 if (reg & DCC_ERR_FLG_LINK_ERR_SMASK) {
7928 struct hfi1_pportdata *ppd = dd->pport;
7929 /* this counter saturates at (2^32) - 1 */
7930 if (ppd->link_downed < (u32)UINT_MAX)
7931 ppd->link_downed++;
7932 reg &= ~DCC_ERR_FLG_LINK_ERR_SMASK;
7933 }
7934
7935 if (reg & DCC_ERR_FLG_FMCONFIG_ERR_SMASK) {
7936 u8 reason_valid = 1;
7937
7938 info = read_csr(dd, DCC_ERR_INFO_FMCONFIG);
7939 if (!(dd->err_info_fmconfig & OPA_EI_STATUS_SMASK)) {
7940 dd->err_info_fmconfig = info & OPA_EI_CODE_SMASK;
7941 /* set status bit */
7942 dd->err_info_fmconfig |= OPA_EI_STATUS_SMASK;
7943 }
7944 switch (info) {
7945 case 0:
7946 case 1:
7947 case 2:
7948 case 3:
7949 case 4:
7950 case 5:
7951 case 6:
7952 extra = fm_config_txt[info];
7953 break;
7954 case 8:
7955 extra = fm_config_txt[info];
7956 if (ppd->port_error_action &
7957 OPA_PI_MASK_FM_CFG_UNSUPPORTED_VL_MARKER) {
7958 do_bounce = 1;
7959 /*
7960 * lcl_reason cannot be derived from info
7961 * for this error
7962 */
7963 lcl_reason =
7964 OPA_LINKDOWN_REASON_UNSUPPORTED_VL_MARKER;
7965 }
7966 break;
7967 default:
7968 reason_valid = 0;
7969 snprintf(buf, sizeof(buf), "reserved%lld", info);
7970 extra = buf;
7971 break;
7972 }
7973
7974 if (reason_valid && !do_bounce) {
7975 do_bounce = ppd->port_error_action &
7976 (1 << (OPA_LDR_FMCONFIG_OFFSET + info));
7977 lcl_reason = info + OPA_LINKDOWN_REASON_BAD_HEAD_DIST;
7978 }
7979
7980 /* just report this */
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08007981 dd_dev_info_ratelimited(dd, "DCC Error: fmconfig error: %s\n",
7982 extra);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007983 reg &= ~DCC_ERR_FLG_FMCONFIG_ERR_SMASK;
7984 }
7985
7986 if (reg & DCC_ERR_FLG_RCVPORT_ERR_SMASK) {
7987 u8 reason_valid = 1;
7988
7989 info = read_csr(dd, DCC_ERR_INFO_PORTRCV);
7990 hdr0 = read_csr(dd, DCC_ERR_INFO_PORTRCV_HDR0);
7991 hdr1 = read_csr(dd, DCC_ERR_INFO_PORTRCV_HDR1);
7992 if (!(dd->err_info_rcvport.status_and_code &
7993 OPA_EI_STATUS_SMASK)) {
7994 dd->err_info_rcvport.status_and_code =
7995 info & OPA_EI_CODE_SMASK;
7996 /* set status bit */
7997 dd->err_info_rcvport.status_and_code |=
7998 OPA_EI_STATUS_SMASK;
Jubin John4d114fd2016-02-14 20:21:43 -08007999 /*
8000 * save first 2 flits in the packet that caused
8001 * the error
8002 */
Bart Van Assche48a0cc132016-06-03 12:09:56 -07008003 dd->err_info_rcvport.packet_flit1 = hdr0;
8004 dd->err_info_rcvport.packet_flit2 = hdr1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008005 }
8006 switch (info) {
8007 case 1:
8008 case 2:
8009 case 3:
8010 case 4:
8011 case 5:
8012 case 6:
8013 case 7:
8014 case 9:
8015 case 11:
8016 case 12:
8017 extra = port_rcv_txt[info];
8018 break;
8019 default:
8020 reason_valid = 0;
8021 snprintf(buf, sizeof(buf), "reserved%lld", info);
8022 extra = buf;
8023 break;
8024 }
8025
8026 if (reason_valid && !do_bounce) {
8027 do_bounce = ppd->port_error_action &
8028 (1 << (OPA_LDR_PORTRCV_OFFSET + info));
8029 lcl_reason = info + OPA_LINKDOWN_REASON_RCV_ERROR_0;
8030 }
8031
8032 /* just report this */
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08008033 dd_dev_info_ratelimited(dd, "DCC Error: PortRcv error: %s\n"
8034 " hdr0 0x%llx, hdr1 0x%llx\n",
8035 extra, hdr0, hdr1);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008036
8037 reg &= ~DCC_ERR_FLG_RCVPORT_ERR_SMASK;
8038 }
8039
8040 if (reg & DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_UC_SMASK) {
8041 /* informative only */
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08008042 dd_dev_info_ratelimited(dd, "8051 access to LCB blocked\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04008043 reg &= ~DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_UC_SMASK;
8044 }
8045 if (reg & DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_HOST_SMASK) {
8046 /* informative only */
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08008047 dd_dev_info_ratelimited(dd, "host access to LCB blocked\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04008048 reg &= ~DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_HOST_SMASK;
8049 }
8050
Don Hiatt243d9f42017-03-20 17:26:20 -07008051 if (unlikely(hfi1_dbg_fault_suppress_err(&dd->verbs_dev)))
8052 reg &= ~DCC_ERR_FLG_LATE_EBP_ERR_SMASK;
8053
Mike Marciniszyn77241052015-07-30 15:17:43 -04008054 /* report any remaining errors */
8055 if (reg)
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08008056 dd_dev_info_ratelimited(dd, "DCC Error: %s\n",
8057 dcc_err_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04008058
8059 if (lcl_reason == 0)
8060 lcl_reason = OPA_LINKDOWN_REASON_UNKNOWN;
8061
8062 if (do_bounce) {
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08008063 dd_dev_info_ratelimited(dd, "%s: PortErrorAction bounce\n",
8064 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008065 set_link_down_reason(ppd, lcl_reason, 0, lcl_reason);
Sebastian Sanchez71d47002017-07-29 08:43:49 -07008066 queue_work(ppd->link_wq, &ppd->link_bounce_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008067 }
8068}
8069
8070static void handle_lcb_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
8071{
8072 char buf[96];
8073
8074 dd_dev_info(dd, "LCB Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008075 lcb_err_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04008076}
8077
8078/*
8079 * CCE block DC interrupt. Source is < 8.
8080 */
8081static void is_dc_int(struct hfi1_devdata *dd, unsigned int source)
8082{
8083 const struct err_reg_info *eri = &dc_errs[source];
8084
8085 if (eri->handler) {
8086 interrupt_clear_down(dd, 0, eri);
8087 } else if (source == 3 /* dc_lbm_int */) {
8088 /*
8089 * This indicates that a parity error has occurred on the
8090 * address/control lines presented to the LBM. The error
8091 * is a single pulse, there is no associated error flag,
8092 * and it is non-maskable. This is because if a parity
8093 * error occurs on the request the request is dropped.
8094 * This should never occur, but it is nice to know if it
8095 * ever does.
8096 */
8097 dd_dev_err(dd, "Parity error in DC LBM block\n");
8098 } else {
8099 dd_dev_err(dd, "Invalid DC interrupt %u\n", source);
8100 }
8101}
8102
8103/*
8104 * TX block send credit interrupt. Source is < 160.
8105 */
8106static void is_send_credit_int(struct hfi1_devdata *dd, unsigned int source)
8107{
8108 sc_group_release_update(dd, source);
8109}
8110
8111/*
8112 * TX block SDMA interrupt. Source is < 48.
8113 *
8114 * SDMA interrupts are grouped by type:
8115 *
8116 * 0 - N-1 = SDma
8117 * N - 2N-1 = SDmaProgress
8118 * 2N - 3N-1 = SDmaIdle
8119 */
8120static void is_sdma_eng_int(struct hfi1_devdata *dd, unsigned int source)
8121{
8122 /* what interrupt */
8123 unsigned int what = source / TXE_NUM_SDMA_ENGINES;
8124 /* which engine */
8125 unsigned int which = source % TXE_NUM_SDMA_ENGINES;
8126
8127#ifdef CONFIG_SDMA_VERBOSITY
8128 dd_dev_err(dd, "CONFIG SDMA(%u) %s:%d %s()\n", which,
8129 slashstrip(__FILE__), __LINE__, __func__);
8130 sdma_dumpstate(&dd->per_sdma[which]);
8131#endif
8132
8133 if (likely(what < 3 && which < dd->num_sdma)) {
8134 sdma_engine_interrupt(&dd->per_sdma[which], 1ull << source);
8135 } else {
8136 /* should not happen */
8137 dd_dev_err(dd, "Invalid SDMA interrupt 0x%x\n", source);
8138 }
8139}
8140
8141/*
8142 * RX block receive available interrupt. Source is < 160.
8143 */
8144static void is_rcv_avail_int(struct hfi1_devdata *dd, unsigned int source)
8145{
8146 struct hfi1_ctxtdata *rcd;
8147 char *err_detail;
8148
8149 if (likely(source < dd->num_rcv_contexts)) {
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07008150 rcd = hfi1_rcd_get_by_index(dd, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008151 if (rcd) {
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07008152 /* Check for non-user contexts, including vnic */
Niranjana Vishwanathapuracc9a97e2017-11-06 06:38:52 -08008153 if (source < dd->first_dyn_alloc_ctxt || rcd->is_vnic)
Dean Luickf4f30031c2015-10-26 10:28:44 -04008154 rcd->do_interrupt(rcd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008155 else
8156 handle_user_interrupt(rcd);
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07008157
8158 hfi1_rcd_put(rcd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008159 return; /* OK */
8160 }
8161 /* received an interrupt, but no rcd */
8162 err_detail = "dataless";
8163 } else {
8164 /* received an interrupt, but are not using that context */
8165 err_detail = "out of range";
8166 }
8167 dd_dev_err(dd, "unexpected %s receive available context interrupt %u\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008168 err_detail, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008169}
8170
8171/*
8172 * RX block receive urgent interrupt. Source is < 160.
8173 */
8174static void is_rcv_urgent_int(struct hfi1_devdata *dd, unsigned int source)
8175{
8176 struct hfi1_ctxtdata *rcd;
8177 char *err_detail;
8178
8179 if (likely(source < dd->num_rcv_contexts)) {
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07008180 rcd = hfi1_rcd_get_by_index(dd, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008181 if (rcd) {
8182 /* only pay attention to user urgent interrupts */
Niranjana Vishwanathapuracc9a97e2017-11-06 06:38:52 -08008183 if (source >= dd->first_dyn_alloc_ctxt &&
8184 !rcd->is_vnic)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008185 handle_user_interrupt(rcd);
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07008186
8187 hfi1_rcd_put(rcd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008188 return; /* OK */
8189 }
8190 /* received an interrupt, but no rcd */
8191 err_detail = "dataless";
8192 } else {
8193 /* received an interrupt, but are not using that context */
8194 err_detail = "out of range";
8195 }
8196 dd_dev_err(dd, "unexpected %s receive urgent context interrupt %u\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008197 err_detail, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008198}
8199
8200/*
8201 * Reserved range interrupt. Should not be called in normal operation.
8202 */
8203static void is_reserved_int(struct hfi1_devdata *dd, unsigned int source)
8204{
8205 char name[64];
8206
8207 dd_dev_err(dd, "unexpected %s interrupt\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008208 is_reserved_name(name, sizeof(name), source));
Mike Marciniszyn77241052015-07-30 15:17:43 -04008209}
8210
8211static const struct is_table is_table[] = {
Jubin John4d114fd2016-02-14 20:21:43 -08008212/*
8213 * start end
8214 * name func interrupt func
8215 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04008216{ IS_GENERAL_ERR_START, IS_GENERAL_ERR_END,
8217 is_misc_err_name, is_misc_err_int },
8218{ IS_SDMAENG_ERR_START, IS_SDMAENG_ERR_END,
8219 is_sdma_eng_err_name, is_sdma_eng_err_int },
8220{ IS_SENDCTXT_ERR_START, IS_SENDCTXT_ERR_END,
8221 is_sendctxt_err_name, is_sendctxt_err_int },
8222{ IS_SDMA_START, IS_SDMA_END,
8223 is_sdma_eng_name, is_sdma_eng_int },
8224{ IS_VARIOUS_START, IS_VARIOUS_END,
8225 is_various_name, is_various_int },
8226{ IS_DC_START, IS_DC_END,
8227 is_dc_name, is_dc_int },
8228{ IS_RCVAVAIL_START, IS_RCVAVAIL_END,
8229 is_rcv_avail_name, is_rcv_avail_int },
8230{ IS_RCVURGENT_START, IS_RCVURGENT_END,
8231 is_rcv_urgent_name, is_rcv_urgent_int },
8232{ IS_SENDCREDIT_START, IS_SENDCREDIT_END,
8233 is_send_credit_name, is_send_credit_int},
8234{ IS_RESERVED_START, IS_RESERVED_END,
8235 is_reserved_name, is_reserved_int},
8236};
8237
8238/*
8239 * Interrupt source interrupt - called when the given source has an interrupt.
8240 * Source is a bit index into an array of 64-bit integers.
8241 */
8242static void is_interrupt(struct hfi1_devdata *dd, unsigned int source)
8243{
8244 const struct is_table *entry;
8245
8246 /* avoids a double compare by walking the table in-order */
8247 for (entry = &is_table[0]; entry->is_name; entry++) {
8248 if (source < entry->end) {
8249 trace_hfi1_interrupt(dd, entry, source);
8250 entry->is_int(dd, source - entry->start);
8251 return;
8252 }
8253 }
8254 /* fell off the end */
8255 dd_dev_err(dd, "invalid interrupt source %u\n", source);
8256}
8257
8258/*
8259 * General interrupt handler. This is able to correctly handle
8260 * all interrupts in case INTx is used.
8261 */
8262static irqreturn_t general_interrupt(int irq, void *data)
8263{
8264 struct hfi1_devdata *dd = data;
8265 u64 regs[CCE_NUM_INT_CSRS];
8266 u32 bit;
8267 int i;
Kamenee Arumugam09592af2017-09-26 06:06:15 -07008268 irqreturn_t handled = IRQ_NONE;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008269
8270 this_cpu_inc(*dd->int_counter);
8271
8272 /* phase 1: scan and clear all handled interrupts */
8273 for (i = 0; i < CCE_NUM_INT_CSRS; i++) {
8274 if (dd->gi_mask[i] == 0) {
8275 regs[i] = 0; /* used later */
8276 continue;
8277 }
8278 regs[i] = read_csr(dd, CCE_INT_STATUS + (8 * i)) &
8279 dd->gi_mask[i];
8280 /* only clear if anything is set */
8281 if (regs[i])
8282 write_csr(dd, CCE_INT_CLEAR + (8 * i), regs[i]);
8283 }
8284
8285 /* phase 2: call the appropriate handler */
8286 for_each_set_bit(bit, (unsigned long *)&regs[0],
Jubin John17fb4f22016-02-14 20:21:52 -08008287 CCE_NUM_INT_CSRS * 64) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04008288 is_interrupt(dd, bit);
Kamenee Arumugam09592af2017-09-26 06:06:15 -07008289 handled = IRQ_HANDLED;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008290 }
8291
Kamenee Arumugam09592af2017-09-26 06:06:15 -07008292 return handled;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008293}
8294
8295static irqreturn_t sdma_interrupt(int irq, void *data)
8296{
8297 struct sdma_engine *sde = data;
8298 struct hfi1_devdata *dd = sde->dd;
8299 u64 status;
8300
8301#ifdef CONFIG_SDMA_VERBOSITY
8302 dd_dev_err(dd, "CONFIG SDMA(%u) %s:%d %s()\n", sde->this_idx,
8303 slashstrip(__FILE__), __LINE__, __func__);
8304 sdma_dumpstate(sde);
8305#endif
8306
8307 this_cpu_inc(*dd->int_counter);
8308
8309 /* This read_csr is really bad in the hot path */
8310 status = read_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008311 CCE_INT_STATUS + (8 * (IS_SDMA_START / 64)))
8312 & sde->imask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008313 if (likely(status)) {
8314 /* clear the interrupt(s) */
8315 write_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008316 CCE_INT_CLEAR + (8 * (IS_SDMA_START / 64)),
8317 status);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008318
8319 /* handle the interrupt(s) */
8320 sdma_engine_interrupt(sde, status);
Dennis Dalessandroee495ad2017-04-09 10:17:18 -07008321 } else {
Michael J. Ruhl82a97922018-02-01 10:43:42 -08008322 dd_dev_info_ratelimited(dd, "SDMA engine %u interrupt, but no status bits set\n",
8323 sde->this_idx);
Dennis Dalessandroee495ad2017-04-09 10:17:18 -07008324 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04008325 return IRQ_HANDLED;
8326}
8327
8328/*
Dean Luickecd42f82016-02-03 14:35:14 -08008329 * Clear the receive interrupt. Use a read of the interrupt clear CSR
8330 * to insure that the write completed. This does NOT guarantee that
8331 * queued DMA writes to memory from the chip are pushed.
Dean Luickf4f30031c2015-10-26 10:28:44 -04008332 */
8333static inline void clear_recv_intr(struct hfi1_ctxtdata *rcd)
8334{
8335 struct hfi1_devdata *dd = rcd->dd;
8336 u32 addr = CCE_INT_CLEAR + (8 * rcd->ireg);
8337
8338 mmiowb(); /* make sure everything before is written */
8339 write_csr(dd, addr, rcd->imask);
8340 /* force the above write on the chip and get a value back */
8341 (void)read_csr(dd, addr);
8342}
8343
8344/* force the receive interrupt */
Jim Snowfb9036d2016-01-11 18:32:21 -05008345void force_recv_intr(struct hfi1_ctxtdata *rcd)
Dean Luickf4f30031c2015-10-26 10:28:44 -04008346{
8347 write_csr(rcd->dd, CCE_INT_FORCE + (8 * rcd->ireg), rcd->imask);
8348}
8349
Dean Luickecd42f82016-02-03 14:35:14 -08008350/*
8351 * Return non-zero if a packet is present.
8352 *
8353 * This routine is called when rechecking for packets after the RcvAvail
8354 * interrupt has been cleared down. First, do a quick check of memory for
8355 * a packet present. If not found, use an expensive CSR read of the context
8356 * tail to determine the actual tail. The CSR read is necessary because there
8357 * is no method to push pending DMAs to memory other than an interrupt and we
8358 * are trying to determine if we need to force an interrupt.
8359 */
Dean Luickf4f30031c2015-10-26 10:28:44 -04008360static inline int check_packet_present(struct hfi1_ctxtdata *rcd)
8361{
Dean Luickecd42f82016-02-03 14:35:14 -08008362 u32 tail;
8363 int present;
Dean Luickf4f30031c2015-10-26 10:28:44 -04008364
Dean Luickecd42f82016-02-03 14:35:14 -08008365 if (!HFI1_CAP_IS_KSET(DMA_RTAIL))
8366 present = (rcd->seq_cnt ==
8367 rhf_rcv_seq(rhf_to_cpu(get_rhf_addr(rcd))));
8368 else /* is RDMA rtail */
8369 present = (rcd->head != get_rcvhdrtail(rcd));
8370
8371 if (present)
8372 return 1;
8373
8374 /* fall back to a CSR read, correct indpendent of DMA_RTAIL */
8375 tail = (u32)read_uctxt_csr(rcd->dd, rcd->ctxt, RCV_HDR_TAIL);
8376 return rcd->head != tail;
Dean Luickf4f30031c2015-10-26 10:28:44 -04008377}
8378
8379/*
8380 * Receive packet IRQ handler. This routine expects to be on its own IRQ.
8381 * This routine will try to handle packets immediately (latency), but if
8382 * it finds too many, it will invoke the thread handler (bandwitdh). The
Jubin John16733b82016-02-14 20:20:58 -08008383 * chip receive interrupt is *not* cleared down until this or the thread (if
Dean Luickf4f30031c2015-10-26 10:28:44 -04008384 * invoked) is finished. The intent is to avoid extra interrupts while we
8385 * are processing packets anyway.
Mike Marciniszyn77241052015-07-30 15:17:43 -04008386 */
8387static irqreturn_t receive_context_interrupt(int irq, void *data)
8388{
8389 struct hfi1_ctxtdata *rcd = data;
8390 struct hfi1_devdata *dd = rcd->dd;
Dean Luickf4f30031c2015-10-26 10:28:44 -04008391 int disposition;
8392 int present;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008393
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07008394 trace_hfi1_receive_interrupt(dd, rcd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008395 this_cpu_inc(*dd->int_counter);
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -08008396 aspm_ctx_disable(rcd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008397
Dean Luickf4f30031c2015-10-26 10:28:44 -04008398 /* receive interrupt remains blocked while processing packets */
8399 disposition = rcd->do_interrupt(rcd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008400
Dean Luickf4f30031c2015-10-26 10:28:44 -04008401 /*
8402 * Too many packets were seen while processing packets in this
8403 * IRQ handler. Invoke the handler thread. The receive interrupt
8404 * remains blocked.
8405 */
8406 if (disposition == RCV_PKT_LIMIT)
8407 return IRQ_WAKE_THREAD;
8408
8409 /*
8410 * The packet processor detected no more packets. Clear the receive
8411 * interrupt and recheck for a packet packet that may have arrived
8412 * after the previous check and interrupt clear. If a packet arrived,
8413 * force another interrupt.
8414 */
8415 clear_recv_intr(rcd);
8416 present = check_packet_present(rcd);
8417 if (present)
8418 force_recv_intr(rcd);
8419
8420 return IRQ_HANDLED;
8421}
8422
8423/*
8424 * Receive packet thread handler. This expects to be invoked with the
8425 * receive interrupt still blocked.
8426 */
8427static irqreturn_t receive_context_thread(int irq, void *data)
8428{
8429 struct hfi1_ctxtdata *rcd = data;
8430 int present;
8431
8432 /* receive interrupt is still blocked from the IRQ handler */
8433 (void)rcd->do_interrupt(rcd, 1);
8434
8435 /*
8436 * The packet processor will only return if it detected no more
8437 * packets. Hold IRQs here so we can safely clear the interrupt and
8438 * recheck for a packet that may have arrived after the previous
8439 * check and the interrupt clear. If a packet arrived, force another
8440 * interrupt.
8441 */
8442 local_irq_disable();
8443 clear_recv_intr(rcd);
8444 present = check_packet_present(rcd);
8445 if (present)
8446 force_recv_intr(rcd);
8447 local_irq_enable();
Mike Marciniszyn77241052015-07-30 15:17:43 -04008448
8449 return IRQ_HANDLED;
8450}
8451
8452/* ========================================================================= */
8453
8454u32 read_physical_state(struct hfi1_devdata *dd)
8455{
8456 u64 reg;
8457
8458 reg = read_csr(dd, DC_DC8051_STS_CUR_STATE);
8459 return (reg >> DC_DC8051_STS_CUR_STATE_PORT_SHIFT)
8460 & DC_DC8051_STS_CUR_STATE_PORT_MASK;
8461}
8462
Jim Snowfb9036d2016-01-11 18:32:21 -05008463u32 read_logical_state(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008464{
8465 u64 reg;
8466
8467 reg = read_csr(dd, DCC_CFG_PORT_CONFIG);
8468 return (reg >> DCC_CFG_PORT_CONFIG_LINK_STATE_SHIFT)
8469 & DCC_CFG_PORT_CONFIG_LINK_STATE_MASK;
8470}
8471
8472static void set_logical_state(struct hfi1_devdata *dd, u32 chip_lstate)
8473{
8474 u64 reg;
8475
8476 reg = read_csr(dd, DCC_CFG_PORT_CONFIG);
8477 /* clear current state, set new state */
8478 reg &= ~DCC_CFG_PORT_CONFIG_LINK_STATE_SMASK;
8479 reg |= (u64)chip_lstate << DCC_CFG_PORT_CONFIG_LINK_STATE_SHIFT;
8480 write_csr(dd, DCC_CFG_PORT_CONFIG, reg);
8481}
8482
8483/*
8484 * Use the 8051 to read a LCB CSR.
8485 */
8486static int read_lcb_via_8051(struct hfi1_devdata *dd, u32 addr, u64 *data)
8487{
8488 u32 regno;
8489 int ret;
8490
8491 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR) {
8492 if (acquire_lcb_access(dd, 0) == 0) {
8493 *data = read_csr(dd, addr);
8494 release_lcb_access(dd, 0);
8495 return 0;
8496 }
8497 return -EBUSY;
8498 }
8499
8500 /* register is an index of LCB registers: (offset - base) / 8 */
8501 regno = (addr - DC_LCB_CFG_RUN) >> 3;
8502 ret = do_8051_command(dd, HCMD_READ_LCB_CSR, regno, data);
8503 if (ret != HCMD_SUCCESS)
8504 return -EBUSY;
8505 return 0;
8506}
8507
8508/*
Michael J. Ruhl86884262017-03-20 17:24:51 -07008509 * Provide a cache for some of the LCB registers in case the LCB is
8510 * unavailable.
8511 * (The LCB is unavailable in certain link states, for example.)
8512 */
8513struct lcb_datum {
8514 u32 off;
8515 u64 val;
8516};
8517
8518static struct lcb_datum lcb_cache[] = {
8519 { DC_LCB_ERR_INFO_RX_REPLAY_CNT, 0},
8520 { DC_LCB_ERR_INFO_SEQ_CRC_CNT, 0 },
8521 { DC_LCB_ERR_INFO_REINIT_FROM_PEER_CNT, 0 },
8522};
8523
8524static void update_lcb_cache(struct hfi1_devdata *dd)
8525{
8526 int i;
8527 int ret;
8528 u64 val;
8529
8530 for (i = 0; i < ARRAY_SIZE(lcb_cache); i++) {
8531 ret = read_lcb_csr(dd, lcb_cache[i].off, &val);
8532
8533 /* Update if we get good data */
8534 if (likely(ret != -EBUSY))
8535 lcb_cache[i].val = val;
8536 }
8537}
8538
8539static int read_lcb_cache(u32 off, u64 *val)
8540{
8541 int i;
8542
8543 for (i = 0; i < ARRAY_SIZE(lcb_cache); i++) {
8544 if (lcb_cache[i].off == off) {
8545 *val = lcb_cache[i].val;
8546 return 0;
8547 }
8548 }
8549
8550 pr_warn("%s bad offset 0x%x\n", __func__, off);
8551 return -1;
8552}
8553
8554/*
Mike Marciniszyn77241052015-07-30 15:17:43 -04008555 * Read an LCB CSR. Access may not be in host control, so check.
8556 * Return 0 on success, -EBUSY on failure.
8557 */
8558int read_lcb_csr(struct hfi1_devdata *dd, u32 addr, u64 *data)
8559{
8560 struct hfi1_pportdata *ppd = dd->pport;
8561
8562 /* if up, go through the 8051 for the value */
8563 if (ppd->host_link_state & HLS_UP)
8564 return read_lcb_via_8051(dd, addr, data);
Michael J. Ruhl86884262017-03-20 17:24:51 -07008565 /* if going up or down, check the cache, otherwise, no access */
8566 if (ppd->host_link_state & (HLS_GOING_UP | HLS_GOING_OFFLINE)) {
8567 if (read_lcb_cache(addr, data))
8568 return -EBUSY;
8569 return 0;
8570 }
8571
Mike Marciniszyn77241052015-07-30 15:17:43 -04008572 /* otherwise, host has access */
8573 *data = read_csr(dd, addr);
8574 return 0;
8575}
8576
8577/*
8578 * Use the 8051 to write a LCB CSR.
8579 */
8580static int write_lcb_via_8051(struct hfi1_devdata *dd, u32 addr, u64 data)
8581{
Dean Luick3bf40d62015-11-06 20:07:04 -05008582 u32 regno;
8583 int ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008584
Dean Luick3bf40d62015-11-06 20:07:04 -05008585 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR ||
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07008586 (dd->dc8051_ver < dc8051_ver(0, 20, 0))) {
Dean Luick3bf40d62015-11-06 20:07:04 -05008587 if (acquire_lcb_access(dd, 0) == 0) {
8588 write_csr(dd, addr, data);
8589 release_lcb_access(dd, 0);
8590 return 0;
8591 }
8592 return -EBUSY;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008593 }
Dean Luick3bf40d62015-11-06 20:07:04 -05008594
8595 /* register is an index of LCB registers: (offset - base) / 8 */
8596 regno = (addr - DC_LCB_CFG_RUN) >> 3;
8597 ret = do_8051_command(dd, HCMD_WRITE_LCB_CSR, regno, &data);
8598 if (ret != HCMD_SUCCESS)
8599 return -EBUSY;
8600 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008601}
8602
8603/*
8604 * Write an LCB CSR. Access may not be in host control, so check.
8605 * Return 0 on success, -EBUSY on failure.
8606 */
8607int write_lcb_csr(struct hfi1_devdata *dd, u32 addr, u64 data)
8608{
8609 struct hfi1_pportdata *ppd = dd->pport;
8610
8611 /* if up, go through the 8051 for the value */
8612 if (ppd->host_link_state & HLS_UP)
8613 return write_lcb_via_8051(dd, addr, data);
8614 /* if going up or down, no access */
8615 if (ppd->host_link_state & (HLS_GOING_UP | HLS_GOING_OFFLINE))
8616 return -EBUSY;
8617 /* otherwise, host has access */
8618 write_csr(dd, addr, data);
8619 return 0;
8620}
8621
8622/*
8623 * Returns:
8624 * < 0 = Linux error, not able to get access
8625 * > 0 = 8051 command RETURN_CODE
8626 */
Sebastian Sanchez9996b042017-12-18 19:56:59 -08008627static int do_8051_command(struct hfi1_devdata *dd, u32 type, u64 in_data,
8628 u64 *out_data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008629{
8630 u64 reg, completed;
8631 int return_code;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008632 unsigned long timeout;
8633
8634 hfi1_cdbg(DC8051, "type %d, data 0x%012llx", type, in_data);
8635
Sebastian Sanchez9996b042017-12-18 19:56:59 -08008636 mutex_lock(&dd->dc8051_lock);
8637
8638 /* We can't send any commands to the 8051 if it's in reset */
8639 if (dd->dc_shutdown) {
8640 return_code = -ENODEV;
8641 goto fail;
8642 }
8643
Mike Marciniszyn77241052015-07-30 15:17:43 -04008644 /*
8645 * If an 8051 host command timed out previously, then the 8051 is
8646 * stuck.
8647 *
8648 * On first timeout, attempt to reset and restart the entire DC
8649 * block (including 8051). (Is this too big of a hammer?)
8650 *
8651 * If the 8051 times out a second time, the reset did not bring it
8652 * back to healthy life. In that case, fail any subsequent commands.
8653 */
8654 if (dd->dc8051_timed_out) {
8655 if (dd->dc8051_timed_out > 1) {
8656 dd_dev_err(dd,
8657 "Previous 8051 host command timed out, skipping command %u\n",
8658 type);
8659 return_code = -ENXIO;
8660 goto fail;
8661 }
Tadeusz Struk22546b72017-04-28 10:40:02 -07008662 _dc_shutdown(dd);
8663 _dc_start(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008664 }
8665
8666 /*
8667 * If there is no timeout, then the 8051 command interface is
8668 * waiting for a command.
8669 */
8670
8671 /*
Dean Luick3bf40d62015-11-06 20:07:04 -05008672 * When writing a LCB CSR, out_data contains the full value to
8673 * to be written, while in_data contains the relative LCB
8674 * address in 7:0. Do the work here, rather than the caller,
8675 * of distrubting the write data to where it needs to go:
8676 *
8677 * Write data
8678 * 39:00 -> in_data[47:8]
8679 * 47:40 -> DC8051_CFG_EXT_DEV_0.RETURN_CODE
8680 * 63:48 -> DC8051_CFG_EXT_DEV_0.RSP_DATA
8681 */
8682 if (type == HCMD_WRITE_LCB_CSR) {
8683 in_data |= ((*out_data) & 0xffffffffffull) << 8;
Dean Luick00801672016-12-07 19:33:40 -08008684 /* must preserve COMPLETED - it is tied to hardware */
8685 reg = read_csr(dd, DC_DC8051_CFG_EXT_DEV_0);
8686 reg &= DC_DC8051_CFG_EXT_DEV_0_COMPLETED_SMASK;
8687 reg |= ((((*out_data) >> 40) & 0xff) <<
Dean Luick3bf40d62015-11-06 20:07:04 -05008688 DC_DC8051_CFG_EXT_DEV_0_RETURN_CODE_SHIFT)
8689 | ((((*out_data) >> 48) & 0xffff) <<
8690 DC_DC8051_CFG_EXT_DEV_0_RSP_DATA_SHIFT);
8691 write_csr(dd, DC_DC8051_CFG_EXT_DEV_0, reg);
8692 }
8693
8694 /*
Mike Marciniszyn77241052015-07-30 15:17:43 -04008695 * Do two writes: the first to stabilize the type and req_data, the
8696 * second to activate.
8697 */
8698 reg = ((u64)type & DC_DC8051_CFG_HOST_CMD_0_REQ_TYPE_MASK)
8699 << DC_DC8051_CFG_HOST_CMD_0_REQ_TYPE_SHIFT
8700 | (in_data & DC_DC8051_CFG_HOST_CMD_0_REQ_DATA_MASK)
8701 << DC_DC8051_CFG_HOST_CMD_0_REQ_DATA_SHIFT;
8702 write_csr(dd, DC_DC8051_CFG_HOST_CMD_0, reg);
8703 reg |= DC_DC8051_CFG_HOST_CMD_0_REQ_NEW_SMASK;
8704 write_csr(dd, DC_DC8051_CFG_HOST_CMD_0, reg);
8705
8706 /* wait for completion, alternate: interrupt */
8707 timeout = jiffies + msecs_to_jiffies(DC8051_COMMAND_TIMEOUT);
8708 while (1) {
8709 reg = read_csr(dd, DC_DC8051_CFG_HOST_CMD_1);
8710 completed = reg & DC_DC8051_CFG_HOST_CMD_1_COMPLETED_SMASK;
8711 if (completed)
8712 break;
8713 if (time_after(jiffies, timeout)) {
8714 dd->dc8051_timed_out++;
8715 dd_dev_err(dd, "8051 host command %u timeout\n", type);
8716 if (out_data)
8717 *out_data = 0;
8718 return_code = -ETIMEDOUT;
8719 goto fail;
8720 }
8721 udelay(2);
8722 }
8723
8724 if (out_data) {
8725 *out_data = (reg >> DC_DC8051_CFG_HOST_CMD_1_RSP_DATA_SHIFT)
8726 & DC_DC8051_CFG_HOST_CMD_1_RSP_DATA_MASK;
8727 if (type == HCMD_READ_LCB_CSR) {
8728 /* top 16 bits are in a different register */
8729 *out_data |= (read_csr(dd, DC_DC8051_CFG_EXT_DEV_1)
8730 & DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_SMASK)
8731 << (48
8732 - DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_SHIFT);
8733 }
8734 }
8735 return_code = (reg >> DC_DC8051_CFG_HOST_CMD_1_RETURN_CODE_SHIFT)
8736 & DC_DC8051_CFG_HOST_CMD_1_RETURN_CODE_MASK;
8737 dd->dc8051_timed_out = 0;
8738 /*
8739 * Clear command for next user.
8740 */
8741 write_csr(dd, DC_DC8051_CFG_HOST_CMD_0, 0);
8742
8743fail:
Tadeusz Struk22546b72017-04-28 10:40:02 -07008744 mutex_unlock(&dd->dc8051_lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008745 return return_code;
8746}
8747
8748static int set_physical_link_state(struct hfi1_devdata *dd, u64 state)
8749{
8750 return do_8051_command(dd, HCMD_CHANGE_PHY_STATE, state, NULL);
8751}
8752
Sebastian Sanchez9996b042017-12-18 19:56:59 -08008753int load_8051_config(struct hfi1_devdata *dd, u8 field_id,
8754 u8 lane_id, u32 config_data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008755{
8756 u64 data;
8757 int ret;
8758
8759 data = (u64)field_id << LOAD_DATA_FIELD_ID_SHIFT
8760 | (u64)lane_id << LOAD_DATA_LANE_ID_SHIFT
8761 | (u64)config_data << LOAD_DATA_DATA_SHIFT;
Sebastian Sanchez9996b042017-12-18 19:56:59 -08008762 ret = do_8051_command(dd, HCMD_LOAD_CONFIG_DATA, data, NULL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008763 if (ret != HCMD_SUCCESS) {
8764 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008765 "load 8051 config: field id %d, lane %d, err %d\n",
8766 (int)field_id, (int)lane_id, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008767 }
8768 return ret;
8769}
8770
8771/*
8772 * Read the 8051 firmware "registers". Use the RAM directly. Always
8773 * set the result, even on error.
8774 * Return 0 on success, -errno on failure
8775 */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08008776int read_8051_config(struct hfi1_devdata *dd, u8 field_id, u8 lane_id,
8777 u32 *result)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008778{
8779 u64 big_data;
8780 u32 addr;
8781 int ret;
8782
8783 /* address start depends on the lane_id */
8784 if (lane_id < 4)
8785 addr = (4 * NUM_GENERAL_FIELDS)
8786 + (lane_id * 4 * NUM_LANE_FIELDS);
8787 else
8788 addr = 0;
8789 addr += field_id * 4;
8790
8791 /* read is in 8-byte chunks, hardware will truncate the address down */
8792 ret = read_8051_data(dd, addr, 8, &big_data);
8793
8794 if (ret == 0) {
8795 /* extract the 4 bytes we want */
8796 if (addr & 0x4)
8797 *result = (u32)(big_data >> 32);
8798 else
8799 *result = (u32)big_data;
8800 } else {
8801 *result = 0;
8802 dd_dev_err(dd, "%s: direct read failed, lane %d, field %d!\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008803 __func__, lane_id, field_id);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008804 }
8805
8806 return ret;
8807}
8808
8809static int write_vc_local_phy(struct hfi1_devdata *dd, u8 power_management,
8810 u8 continuous)
8811{
8812 u32 frame;
8813
8814 frame = continuous << CONTINIOUS_REMOTE_UPDATE_SUPPORT_SHIFT
8815 | power_management << POWER_MANAGEMENT_SHIFT;
8816 return load_8051_config(dd, VERIFY_CAP_LOCAL_PHY,
8817 GENERAL_CONFIG, frame);
8818}
8819
8820static int write_vc_local_fabric(struct hfi1_devdata *dd, u8 vau, u8 z, u8 vcu,
8821 u16 vl15buf, u8 crc_sizes)
8822{
8823 u32 frame;
8824
8825 frame = (u32)vau << VAU_SHIFT
8826 | (u32)z << Z_SHIFT
8827 | (u32)vcu << VCU_SHIFT
8828 | (u32)vl15buf << VL15BUF_SHIFT
8829 | (u32)crc_sizes << CRC_SIZES_SHIFT;
8830 return load_8051_config(dd, VERIFY_CAP_LOCAL_FABRIC,
8831 GENERAL_CONFIG, frame);
8832}
8833
Sebastian Sanchez254361c2018-05-02 06:42:21 -07008834static void read_vc_local_link_mode(struct hfi1_devdata *dd, u8 *misc_bits,
8835 u8 *flag_bits, u16 *link_widths)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008836{
8837 u32 frame;
8838
Sebastian Sanchez254361c2018-05-02 06:42:21 -07008839 read_8051_config(dd, VERIFY_CAP_LOCAL_LINK_MODE, GENERAL_CONFIG,
Jubin John17fb4f22016-02-14 20:21:52 -08008840 &frame);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008841 *misc_bits = (frame >> MISC_CONFIG_BITS_SHIFT) & MISC_CONFIG_BITS_MASK;
8842 *flag_bits = (frame >> LOCAL_FLAG_BITS_SHIFT) & LOCAL_FLAG_BITS_MASK;
8843 *link_widths = (frame >> LINK_WIDTH_SHIFT) & LINK_WIDTH_MASK;
8844}
8845
Sebastian Sanchez254361c2018-05-02 06:42:21 -07008846static int write_vc_local_link_mode(struct hfi1_devdata *dd,
8847 u8 misc_bits,
8848 u8 flag_bits,
8849 u16 link_widths)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008850{
8851 u32 frame;
8852
8853 frame = (u32)misc_bits << MISC_CONFIG_BITS_SHIFT
8854 | (u32)flag_bits << LOCAL_FLAG_BITS_SHIFT
8855 | (u32)link_widths << LINK_WIDTH_SHIFT;
Sebastian Sanchez254361c2018-05-02 06:42:21 -07008856 return load_8051_config(dd, VERIFY_CAP_LOCAL_LINK_MODE, GENERAL_CONFIG,
Mike Marciniszyn77241052015-07-30 15:17:43 -04008857 frame);
8858}
8859
8860static int write_local_device_id(struct hfi1_devdata *dd, u16 device_id,
8861 u8 device_rev)
8862{
8863 u32 frame;
8864
8865 frame = ((u32)device_id << LOCAL_DEVICE_ID_SHIFT)
8866 | ((u32)device_rev << LOCAL_DEVICE_REV_SHIFT);
8867 return load_8051_config(dd, LOCAL_DEVICE_ID, GENERAL_CONFIG, frame);
8868}
8869
8870static void read_remote_device_id(struct hfi1_devdata *dd, u16 *device_id,
8871 u8 *device_rev)
8872{
8873 u32 frame;
8874
8875 read_8051_config(dd, REMOTE_DEVICE_ID, GENERAL_CONFIG, &frame);
8876 *device_id = (frame >> REMOTE_DEVICE_ID_SHIFT) & REMOTE_DEVICE_ID_MASK;
8877 *device_rev = (frame >> REMOTE_DEVICE_REV_SHIFT)
8878 & REMOTE_DEVICE_REV_MASK;
8879}
8880
Sebastian Sanchez913cc672017-07-29 08:44:01 -07008881int write_host_interface_version(struct hfi1_devdata *dd, u8 version)
8882{
8883 u32 frame;
8884 u32 mask;
8885
8886 mask = (HOST_INTERFACE_VERSION_MASK << HOST_INTERFACE_VERSION_SHIFT);
8887 read_8051_config(dd, RESERVED_REGISTERS, GENERAL_CONFIG, &frame);
8888 /* Clear, then set field */
8889 frame &= ~mask;
8890 frame |= ((u32)version << HOST_INTERFACE_VERSION_SHIFT);
Sebastian Sanchez9996b042017-12-18 19:56:59 -08008891 return load_8051_config(dd, RESERVED_REGISTERS, GENERAL_CONFIG,
8892 frame);
Sebastian Sanchez913cc672017-07-29 08:44:01 -07008893}
8894
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07008895void read_misc_status(struct hfi1_devdata *dd, u8 *ver_major, u8 *ver_minor,
8896 u8 *ver_patch)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008897{
8898 u32 frame;
8899
8900 read_8051_config(dd, MISC_STATUS, GENERAL_CONFIG, &frame);
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07008901 *ver_major = (frame >> STS_FM_VERSION_MAJOR_SHIFT) &
8902 STS_FM_VERSION_MAJOR_MASK;
8903 *ver_minor = (frame >> STS_FM_VERSION_MINOR_SHIFT) &
8904 STS_FM_VERSION_MINOR_MASK;
8905
8906 read_8051_config(dd, VERSION_PATCH, GENERAL_CONFIG, &frame);
8907 *ver_patch = (frame >> STS_FM_VERSION_PATCH_SHIFT) &
8908 STS_FM_VERSION_PATCH_MASK;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008909}
8910
8911static void read_vc_remote_phy(struct hfi1_devdata *dd, u8 *power_management,
8912 u8 *continuous)
8913{
8914 u32 frame;
8915
8916 read_8051_config(dd, VERIFY_CAP_REMOTE_PHY, GENERAL_CONFIG, &frame);
8917 *power_management = (frame >> POWER_MANAGEMENT_SHIFT)
8918 & POWER_MANAGEMENT_MASK;
8919 *continuous = (frame >> CONTINIOUS_REMOTE_UPDATE_SUPPORT_SHIFT)
8920 & CONTINIOUS_REMOTE_UPDATE_SUPPORT_MASK;
8921}
8922
8923static void read_vc_remote_fabric(struct hfi1_devdata *dd, u8 *vau, u8 *z,
8924 u8 *vcu, u16 *vl15buf, u8 *crc_sizes)
8925{
8926 u32 frame;
8927
8928 read_8051_config(dd, VERIFY_CAP_REMOTE_FABRIC, GENERAL_CONFIG, &frame);
8929 *vau = (frame >> VAU_SHIFT) & VAU_MASK;
8930 *z = (frame >> Z_SHIFT) & Z_MASK;
8931 *vcu = (frame >> VCU_SHIFT) & VCU_MASK;
8932 *vl15buf = (frame >> VL15BUF_SHIFT) & VL15BUF_MASK;
8933 *crc_sizes = (frame >> CRC_SIZES_SHIFT) & CRC_SIZES_MASK;
8934}
8935
8936static void read_vc_remote_link_width(struct hfi1_devdata *dd,
8937 u8 *remote_tx_rate,
8938 u16 *link_widths)
8939{
8940 u32 frame;
8941
8942 read_8051_config(dd, VERIFY_CAP_REMOTE_LINK_WIDTH, GENERAL_CONFIG,
Jubin John17fb4f22016-02-14 20:21:52 -08008943 &frame);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008944 *remote_tx_rate = (frame >> REMOTE_TX_RATE_SHIFT)
8945 & REMOTE_TX_RATE_MASK;
8946 *link_widths = (frame >> LINK_WIDTH_SHIFT) & LINK_WIDTH_MASK;
8947}
8948
8949static void read_local_lni(struct hfi1_devdata *dd, u8 *enable_lane_rx)
8950{
8951 u32 frame;
8952
8953 read_8051_config(dd, LOCAL_LNI_INFO, GENERAL_CONFIG, &frame);
8954 *enable_lane_rx = (frame >> ENABLE_LANE_RX_SHIFT) & ENABLE_LANE_RX_MASK;
8955}
8956
Mike Marciniszyn77241052015-07-30 15:17:43 -04008957static void read_last_local_state(struct hfi1_devdata *dd, u32 *lls)
8958{
8959 read_8051_config(dd, LAST_LOCAL_STATE_COMPLETE, GENERAL_CONFIG, lls);
8960}
8961
8962static void read_last_remote_state(struct hfi1_devdata *dd, u32 *lrs)
8963{
8964 read_8051_config(dd, LAST_REMOTE_STATE_COMPLETE, GENERAL_CONFIG, lrs);
8965}
8966
8967void hfi1_read_link_quality(struct hfi1_devdata *dd, u8 *link_quality)
8968{
8969 u32 frame;
8970 int ret;
8971
8972 *link_quality = 0;
8973 if (dd->pport->host_link_state & HLS_UP) {
8974 ret = read_8051_config(dd, LINK_QUALITY_INFO, GENERAL_CONFIG,
Jubin John17fb4f22016-02-14 20:21:52 -08008975 &frame);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008976 if (ret == 0)
8977 *link_quality = (frame >> LINK_QUALITY_SHIFT)
8978 & LINK_QUALITY_MASK;
8979 }
8980}
8981
8982static void read_planned_down_reason_code(struct hfi1_devdata *dd, u8 *pdrrc)
8983{
8984 u32 frame;
8985
8986 read_8051_config(dd, LINK_QUALITY_INFO, GENERAL_CONFIG, &frame);
8987 *pdrrc = (frame >> DOWN_REMOTE_REASON_SHIFT) & DOWN_REMOTE_REASON_MASK;
8988}
8989
Dean Luickfeb831d2016-04-14 08:31:36 -07008990static void read_link_down_reason(struct hfi1_devdata *dd, u8 *ldr)
8991{
8992 u32 frame;
8993
8994 read_8051_config(dd, LINK_DOWN_REASON, GENERAL_CONFIG, &frame);
8995 *ldr = (frame & 0xff);
8996}
8997
Mike Marciniszyn77241052015-07-30 15:17:43 -04008998static int read_tx_settings(struct hfi1_devdata *dd,
8999 u8 *enable_lane_tx,
9000 u8 *tx_polarity_inversion,
9001 u8 *rx_polarity_inversion,
9002 u8 *max_rate)
9003{
9004 u32 frame;
9005 int ret;
9006
9007 ret = read_8051_config(dd, TX_SETTINGS, GENERAL_CONFIG, &frame);
9008 *enable_lane_tx = (frame >> ENABLE_LANE_TX_SHIFT)
9009 & ENABLE_LANE_TX_MASK;
9010 *tx_polarity_inversion = (frame >> TX_POLARITY_INVERSION_SHIFT)
9011 & TX_POLARITY_INVERSION_MASK;
9012 *rx_polarity_inversion = (frame >> RX_POLARITY_INVERSION_SHIFT)
9013 & RX_POLARITY_INVERSION_MASK;
9014 *max_rate = (frame >> MAX_RATE_SHIFT) & MAX_RATE_MASK;
9015 return ret;
9016}
9017
9018static int write_tx_settings(struct hfi1_devdata *dd,
9019 u8 enable_lane_tx,
9020 u8 tx_polarity_inversion,
9021 u8 rx_polarity_inversion,
9022 u8 max_rate)
9023{
9024 u32 frame;
9025
9026 /* no need to mask, all variable sizes match field widths */
9027 frame = enable_lane_tx << ENABLE_LANE_TX_SHIFT
9028 | tx_polarity_inversion << TX_POLARITY_INVERSION_SHIFT
9029 | rx_polarity_inversion << RX_POLARITY_INVERSION_SHIFT
9030 | max_rate << MAX_RATE_SHIFT;
9031 return load_8051_config(dd, TX_SETTINGS, GENERAL_CONFIG, frame);
9032}
9033
Mike Marciniszyn77241052015-07-30 15:17:43 -04009034/*
9035 * Read an idle LCB message.
9036 *
9037 * Returns 0 on success, -EINVAL on error
9038 */
9039static int read_idle_message(struct hfi1_devdata *dd, u64 type, u64 *data_out)
9040{
9041 int ret;
9042
Jubin John17fb4f22016-02-14 20:21:52 -08009043 ret = do_8051_command(dd, HCMD_READ_LCB_IDLE_MSG, type, data_out);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009044 if (ret != HCMD_SUCCESS) {
9045 dd_dev_err(dd, "read idle message: type %d, err %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08009046 (u32)type, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009047 return -EINVAL;
9048 }
9049 dd_dev_info(dd, "%s: read idle message 0x%llx\n", __func__, *data_out);
9050 /* return only the payload as we already know the type */
9051 *data_out >>= IDLE_PAYLOAD_SHIFT;
9052 return 0;
9053}
9054
9055/*
9056 * Read an idle SMA message. To be done in response to a notification from
9057 * the 8051.
9058 *
9059 * Returns 0 on success, -EINVAL on error
9060 */
9061static int read_idle_sma(struct hfi1_devdata *dd, u64 *data)
9062{
Jubin John17fb4f22016-02-14 20:21:52 -08009063 return read_idle_message(dd, (u64)IDLE_SMA << IDLE_MSG_TYPE_SHIFT,
9064 data);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009065}
9066
9067/*
9068 * Send an idle LCB message.
9069 *
9070 * Returns 0 on success, -EINVAL on error
9071 */
9072static int send_idle_message(struct hfi1_devdata *dd, u64 data)
9073{
9074 int ret;
9075
9076 dd_dev_info(dd, "%s: sending idle message 0x%llx\n", __func__, data);
9077 ret = do_8051_command(dd, HCMD_SEND_LCB_IDLE_MSG, data, NULL);
9078 if (ret != HCMD_SUCCESS) {
9079 dd_dev_err(dd, "send idle message: data 0x%llx, err %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08009080 data, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009081 return -EINVAL;
9082 }
9083 return 0;
9084}
9085
9086/*
9087 * Send an idle SMA message.
9088 *
9089 * Returns 0 on success, -EINVAL on error
9090 */
9091int send_idle_sma(struct hfi1_devdata *dd, u64 message)
9092{
9093 u64 data;
9094
Jubin John17fb4f22016-02-14 20:21:52 -08009095 data = ((message & IDLE_PAYLOAD_MASK) << IDLE_PAYLOAD_SHIFT) |
9096 ((u64)IDLE_SMA << IDLE_MSG_TYPE_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009097 return send_idle_message(dd, data);
9098}
9099
9100/*
9101 * Initialize the LCB then do a quick link up. This may or may not be
9102 * in loopback.
9103 *
9104 * return 0 on success, -errno on error
9105 */
9106static int do_quick_linkup(struct hfi1_devdata *dd)
9107{
Mike Marciniszyn77241052015-07-30 15:17:43 -04009108 int ret;
9109
9110 lcb_shutdown(dd, 0);
9111
9112 if (loopback) {
9113 /* LCB_CFG_LOOPBACK.VAL = 2 */
9114 /* LCB_CFG_LANE_WIDTH.VAL = 0 */
9115 write_csr(dd, DC_LCB_CFG_LOOPBACK,
Jubin John17fb4f22016-02-14 20:21:52 -08009116 IB_PACKET_TYPE << DC_LCB_CFG_LOOPBACK_VAL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009117 write_csr(dd, DC_LCB_CFG_LANE_WIDTH, 0);
9118 }
9119
9120 /* start the LCBs */
9121 /* LCB_CFG_TX_FIFOS_RESET.VAL = 0 */
9122 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0);
9123
9124 /* simulator only loopback steps */
9125 if (loopback && dd->icode == ICODE_FUNCTIONAL_SIMULATOR) {
9126 /* LCB_CFG_RUN.EN = 1 */
9127 write_csr(dd, DC_LCB_CFG_RUN,
Jubin John17fb4f22016-02-14 20:21:52 -08009128 1ull << DC_LCB_CFG_RUN_EN_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009129
Dean Luickec8a1422017-03-20 17:24:39 -07009130 ret = wait_link_transfer_active(dd, 10);
9131 if (ret)
9132 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009133
9134 write_csr(dd, DC_LCB_CFG_ALLOW_LINK_UP,
Jubin John17fb4f22016-02-14 20:21:52 -08009135 1ull << DC_LCB_CFG_ALLOW_LINK_UP_VAL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009136 }
9137
9138 if (!loopback) {
9139 /*
9140 * When doing quick linkup and not in loopback, both
9141 * sides must be done with LCB set-up before either
9142 * starts the quick linkup. Put a delay here so that
9143 * both sides can be started and have a chance to be
9144 * done with LCB set up before resuming.
9145 */
9146 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009147 "Pausing for peer to be finished with LCB set up\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04009148 msleep(5000);
Jubin John17fb4f22016-02-14 20:21:52 -08009149 dd_dev_err(dd, "Continuing with quick linkup\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04009150 }
9151
9152 write_csr(dd, DC_LCB_ERR_EN, 0); /* mask LCB errors */
9153 set_8051_lcb_access(dd);
9154
9155 /*
9156 * State "quick" LinkUp request sets the physical link state to
9157 * LinkUp without a verify capability sequence.
9158 * This state is in simulator v37 and later.
9159 */
9160 ret = set_physical_link_state(dd, PLS_QUICK_LINKUP);
9161 if (ret != HCMD_SUCCESS) {
9162 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009163 "%s: set physical link state to quick LinkUp failed with return %d\n",
9164 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009165
9166 set_host_lcb_access(dd);
9167 write_csr(dd, DC_LCB_ERR_EN, ~0ull); /* watch LCB errors */
9168
9169 if (ret >= 0)
9170 ret = -EINVAL;
9171 return ret;
9172 }
9173
9174 return 0; /* success */
9175}
9176
9177/*
Mike Marciniszyn77241052015-07-30 15:17:43 -04009178 * Do all special steps to set up loopback.
9179 */
9180static int init_loopback(struct hfi1_devdata *dd)
9181{
9182 dd_dev_info(dd, "Entering loopback mode\n");
9183
9184 /* all loopbacks should disable self GUID check */
9185 write_csr(dd, DC_DC8051_CFG_MODE,
Jubin John17fb4f22016-02-14 20:21:52 -08009186 (read_csr(dd, DC_DC8051_CFG_MODE) | DISABLE_SELF_GUID_CHECK));
Mike Marciniszyn77241052015-07-30 15:17:43 -04009187
9188 /*
9189 * The simulator has only one loopback option - LCB. Switch
9190 * to that option, which includes quick link up.
9191 *
9192 * Accept all valid loopback values.
9193 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08009194 if ((dd->icode == ICODE_FUNCTIONAL_SIMULATOR) &&
9195 (loopback == LOOPBACK_SERDES || loopback == LOOPBACK_LCB ||
9196 loopback == LOOPBACK_CABLE)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04009197 loopback = LOOPBACK_LCB;
9198 quick_linkup = 1;
9199 return 0;
9200 }
9201
Jan Sokolowski242b4942017-10-09 13:08:28 -07009202 /*
9203 * SerDes loopback init sequence is handled in set_local_link_attributes
9204 */
9205 if (loopback == LOOPBACK_SERDES)
9206 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009207
9208 /* LCB loopback - handled at poll time */
9209 if (loopback == LOOPBACK_LCB) {
9210 quick_linkup = 1; /* LCB is always quick linkup */
9211
9212 /* not supported in emulation due to emulation RTL changes */
9213 if (dd->icode == ICODE_FPGA_EMULATION) {
9214 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009215 "LCB loopback not supported in emulation\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04009216 return -EINVAL;
9217 }
9218 return 0;
9219 }
9220
9221 /* external cable loopback requires no extra steps */
9222 if (loopback == LOOPBACK_CABLE)
9223 return 0;
9224
9225 dd_dev_err(dd, "Invalid loopback mode %d\n", loopback);
9226 return -EINVAL;
9227}
9228
9229/*
9230 * Translate from the OPA_LINK_WIDTH handed to us by the FM to bits
9231 * used in the Verify Capability link width attribute.
9232 */
9233static u16 opa_to_vc_link_widths(u16 opa_widths)
9234{
9235 int i;
9236 u16 result = 0;
9237
9238 static const struct link_bits {
9239 u16 from;
9240 u16 to;
9241 } opa_link_xlate[] = {
Jubin John8638b772016-02-14 20:19:24 -08009242 { OPA_LINK_WIDTH_1X, 1 << (1 - 1) },
9243 { OPA_LINK_WIDTH_2X, 1 << (2 - 1) },
9244 { OPA_LINK_WIDTH_3X, 1 << (3 - 1) },
9245 { OPA_LINK_WIDTH_4X, 1 << (4 - 1) },
Mike Marciniszyn77241052015-07-30 15:17:43 -04009246 };
9247
9248 for (i = 0; i < ARRAY_SIZE(opa_link_xlate); i++) {
9249 if (opa_widths & opa_link_xlate[i].from)
9250 result |= opa_link_xlate[i].to;
9251 }
9252 return result;
9253}
9254
9255/*
9256 * Set link attributes before moving to polling.
9257 */
9258static int set_local_link_attributes(struct hfi1_pportdata *ppd)
9259{
9260 struct hfi1_devdata *dd = ppd->dd;
9261 u8 enable_lane_tx;
9262 u8 tx_polarity_inversion;
9263 u8 rx_polarity_inversion;
9264 int ret;
Jan Sokolowski242b4942017-10-09 13:08:28 -07009265 u32 misc_bits = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009266 /* reset our fabric serdes to clear any lingering problems */
9267 fabric_serdes_reset(dd);
9268
9269 /* set the local tx rate - need to read-modify-write */
9270 ret = read_tx_settings(dd, &enable_lane_tx, &tx_polarity_inversion,
Jubin John17fb4f22016-02-14 20:21:52 -08009271 &rx_polarity_inversion, &ppd->local_tx_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009272 if (ret)
9273 goto set_local_link_attributes_fail;
9274
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07009275 if (dd->dc8051_ver < dc8051_ver(0, 20, 0)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04009276 /* set the tx rate to the fastest enabled */
9277 if (ppd->link_speed_enabled & OPA_LINK_SPEED_25G)
9278 ppd->local_tx_rate = 1;
9279 else
9280 ppd->local_tx_rate = 0;
9281 } else {
9282 /* set the tx rate to all enabled */
9283 ppd->local_tx_rate = 0;
9284 if (ppd->link_speed_enabled & OPA_LINK_SPEED_25G)
9285 ppd->local_tx_rate |= 2;
9286 if (ppd->link_speed_enabled & OPA_LINK_SPEED_12_5G)
9287 ppd->local_tx_rate |= 1;
9288 }
Easwar Hariharanfebffe22015-10-26 10:28:36 -04009289
9290 enable_lane_tx = 0xF; /* enable all four lanes */
Mike Marciniszyn77241052015-07-30 15:17:43 -04009291 ret = write_tx_settings(dd, enable_lane_tx, tx_polarity_inversion,
Jubin John17fb4f22016-02-14 20:21:52 -08009292 rx_polarity_inversion, ppd->local_tx_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009293 if (ret != HCMD_SUCCESS)
9294 goto set_local_link_attributes_fail;
9295
Sebastian Sanchez9996b042017-12-18 19:56:59 -08009296 ret = write_host_interface_version(dd, HOST_INTERFACE_VERSION);
9297 if (ret != HCMD_SUCCESS) {
9298 dd_dev_err(dd,
9299 "Failed to set host interface version, return 0x%x\n",
9300 ret);
9301 goto set_local_link_attributes_fail;
9302 }
9303
Mike Marciniszyn77241052015-07-30 15:17:43 -04009304 /*
9305 * DC supports continuous updates.
9306 */
Jubin John17fb4f22016-02-14 20:21:52 -08009307 ret = write_vc_local_phy(dd,
9308 0 /* no power management */,
9309 1 /* continuous updates */);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009310 if (ret != HCMD_SUCCESS)
9311 goto set_local_link_attributes_fail;
9312
9313 /* z=1 in the next call: AU of 0 is not supported by the hardware */
9314 ret = write_vc_local_fabric(dd, dd->vau, 1, dd->vcu, dd->vl15_init,
9315 ppd->port_crc_mode_enabled);
9316 if (ret != HCMD_SUCCESS)
9317 goto set_local_link_attributes_fail;
9318
Jan Sokolowski242b4942017-10-09 13:08:28 -07009319 /*
9320 * SerDes loopback init sequence requires
9321 * setting bit 0 of MISC_CONFIG_BITS
9322 */
9323 if (loopback == LOOPBACK_SERDES)
9324 misc_bits |= 1 << LOOPBACK_SERDES_CONFIG_BIT_MASK_SHIFT;
9325
Sebastian Sanchez254361c2018-05-02 06:42:21 -07009326 /*
9327 * An external device configuration request is used to reset the LCB
9328 * to retry to obtain operational lanes when the first attempt is
9329 * unsuccesful.
9330 */
9331 if (dd->dc8051_ver >= dc8051_ver(1, 25, 0))
9332 misc_bits |= 1 << EXT_CFG_LCB_RESET_SUPPORTED_SHIFT;
9333
9334 ret = write_vc_local_link_mode(dd, misc_bits, 0,
9335 opa_to_vc_link_widths(
Jubin John17fb4f22016-02-14 20:21:52 -08009336 ppd->link_width_enabled));
Mike Marciniszyn77241052015-07-30 15:17:43 -04009337 if (ret != HCMD_SUCCESS)
9338 goto set_local_link_attributes_fail;
9339
9340 /* let peer know who we are */
9341 ret = write_local_device_id(dd, dd->pcidev->device, dd->minrev);
9342 if (ret == HCMD_SUCCESS)
9343 return 0;
9344
9345set_local_link_attributes_fail:
9346 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009347 "Failed to set local link attributes, return 0x%x\n",
9348 ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009349 return ret;
9350}
9351
9352/*
Easwar Hariharan623bba22016-04-12 11:25:57 -07009353 * Call this to start the link.
9354 * Do not do anything if the link is disabled.
9355 * Returns 0 if link is disabled, moved to polling, or the driver is not ready.
Mike Marciniszyn77241052015-07-30 15:17:43 -04009356 */
9357int start_link(struct hfi1_pportdata *ppd)
9358{
Dean Luick0db9dec2016-09-06 04:35:20 -07009359 /*
9360 * Tune the SerDes to a ballpark setting for optimal signal and bit
9361 * error rate. Needs to be done before starting the link.
9362 */
9363 tune_serdes(ppd);
9364
Mike Marciniszyn77241052015-07-30 15:17:43 -04009365 if (!ppd->driver_link_ready) {
9366 dd_dev_info(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009367 "%s: stopping link start because driver is not ready\n",
9368 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009369 return 0;
9370 }
9371
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07009372 /*
9373 * FULL_MGMT_P_KEY is cleared from the pkey table, so that the
9374 * pkey table can be configured properly if the HFI unit is connected
9375 * to switch port with MgmtAllowed=NO
9376 */
9377 clear_full_mgmt_pkey(ppd);
9378
Easwar Hariharan623bba22016-04-12 11:25:57 -07009379 return set_link_state(ppd, HLS_DN_POLL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009380}
9381
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009382static void wait_for_qsfp_init(struct hfi1_pportdata *ppd)
9383{
9384 struct hfi1_devdata *dd = ppd->dd;
9385 u64 mask;
9386 unsigned long timeout;
9387
9388 /*
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009389 * Some QSFP cables have a quirk that asserts the IntN line as a side
9390 * effect of power up on plug-in. We ignore this false positive
9391 * interrupt until the module has finished powering up by waiting for
9392 * a minimum timeout of the module inrush initialization time of
9393 * 500 ms (SFF 8679 Table 5-6) to ensure the voltage rails in the
9394 * module have stabilized.
9395 */
9396 msleep(500);
9397
9398 /*
9399 * Check for QSFP interrupt for t_init (SFF 8679 Table 8-1)
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009400 */
9401 timeout = jiffies + msecs_to_jiffies(2000);
9402 while (1) {
9403 mask = read_csr(dd, dd->hfi1_id ?
9404 ASIC_QSFP2_IN : ASIC_QSFP1_IN);
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009405 if (!(mask & QSFP_HFI0_INT_N))
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009406 break;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009407 if (time_after(jiffies, timeout)) {
9408 dd_dev_info(dd, "%s: No IntN detected, reset complete\n",
9409 __func__);
9410 break;
9411 }
9412 udelay(2);
9413 }
9414}
9415
9416static void set_qsfp_int_n(struct hfi1_pportdata *ppd, u8 enable)
9417{
9418 struct hfi1_devdata *dd = ppd->dd;
9419 u64 mask;
9420
9421 mask = read_csr(dd, dd->hfi1_id ? ASIC_QSFP2_MASK : ASIC_QSFP1_MASK);
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009422 if (enable) {
9423 /*
9424 * Clear the status register to avoid an immediate interrupt
9425 * when we re-enable the IntN pin
9426 */
9427 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_CLEAR : ASIC_QSFP1_CLEAR,
9428 QSFP_HFI0_INT_N);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009429 mask |= (u64)QSFP_HFI0_INT_N;
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009430 } else {
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009431 mask &= ~(u64)QSFP_HFI0_INT_N;
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009432 }
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009433 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_MASK : ASIC_QSFP1_MASK, mask);
9434}
9435
Sebastian Sanchez30e10522017-09-26 06:06:03 -07009436int reset_qsfp(struct hfi1_pportdata *ppd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009437{
9438 struct hfi1_devdata *dd = ppd->dd;
9439 u64 mask, qsfp_mask;
9440
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009441 /* Disable INT_N from triggering QSFP interrupts */
9442 set_qsfp_int_n(ppd, 0);
9443
9444 /* Reset the QSFP */
Mike Marciniszyn77241052015-07-30 15:17:43 -04009445 mask = (u64)QSFP_HFI0_RESET_N;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009446
9447 qsfp_mask = read_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009448 dd->hfi1_id ? ASIC_QSFP2_OUT : ASIC_QSFP1_OUT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009449 qsfp_mask &= ~mask;
9450 write_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009451 dd->hfi1_id ? ASIC_QSFP2_OUT : ASIC_QSFP1_OUT, qsfp_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009452
9453 udelay(10);
9454
9455 qsfp_mask |= mask;
9456 write_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009457 dd->hfi1_id ? ASIC_QSFP2_OUT : ASIC_QSFP1_OUT, qsfp_mask);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009458
9459 wait_for_qsfp_init(ppd);
9460
9461 /*
9462 * Allow INT_N to trigger the QSFP interrupt to watch
9463 * for alarms and warnings
9464 */
9465 set_qsfp_int_n(ppd, 1);
Sebastian Sanchez30e10522017-09-26 06:06:03 -07009466
9467 /*
9468 * After the reset, AOC transmitters are enabled by default. They need
9469 * to be turned off to complete the QSFP setup before they can be
9470 * enabled again.
9471 */
9472 return set_qsfp_tx(ppd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009473}
9474
9475static int handle_qsfp_error_conditions(struct hfi1_pportdata *ppd,
9476 u8 *qsfp_interrupt_status)
9477{
9478 struct hfi1_devdata *dd = ppd->dd;
9479
9480 if ((qsfp_interrupt_status[0] & QSFP_HIGH_TEMP_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009481 (qsfp_interrupt_status[0] & QSFP_HIGH_TEMP_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009482 dd_dev_err(dd, "%s: QSFP cable temperature too high\n",
9483 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009484
9485 if ((qsfp_interrupt_status[0] & QSFP_LOW_TEMP_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009486 (qsfp_interrupt_status[0] & QSFP_LOW_TEMP_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009487 dd_dev_err(dd, "%s: QSFP cable temperature too low\n",
9488 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009489
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07009490 /*
9491 * The remaining alarms/warnings don't matter if the link is down.
9492 */
9493 if (ppd->host_link_state & HLS_DOWN)
9494 return 0;
9495
Mike Marciniszyn77241052015-07-30 15:17:43 -04009496 if ((qsfp_interrupt_status[1] & QSFP_HIGH_VCC_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009497 (qsfp_interrupt_status[1] & QSFP_HIGH_VCC_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009498 dd_dev_err(dd, "%s: QSFP supply voltage too high\n",
9499 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009500
9501 if ((qsfp_interrupt_status[1] & QSFP_LOW_VCC_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009502 (qsfp_interrupt_status[1] & QSFP_LOW_VCC_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009503 dd_dev_err(dd, "%s: QSFP supply voltage too low\n",
9504 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009505
9506 /* Byte 2 is vendor specific */
9507
9508 if ((qsfp_interrupt_status[3] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009509 (qsfp_interrupt_status[3] & QSFP_HIGH_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009510 dd_dev_err(dd, "%s: Cable RX channel 1/2 power too high\n",
9511 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009512
9513 if ((qsfp_interrupt_status[3] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009514 (qsfp_interrupt_status[3] & QSFP_LOW_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009515 dd_dev_err(dd, "%s: Cable RX channel 1/2 power too low\n",
9516 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009517
9518 if ((qsfp_interrupt_status[4] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009519 (qsfp_interrupt_status[4] & QSFP_HIGH_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009520 dd_dev_err(dd, "%s: Cable RX channel 3/4 power too high\n",
9521 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009522
9523 if ((qsfp_interrupt_status[4] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009524 (qsfp_interrupt_status[4] & QSFP_LOW_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009525 dd_dev_err(dd, "%s: Cable RX channel 3/4 power too low\n",
9526 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009527
9528 if ((qsfp_interrupt_status[5] & QSFP_HIGH_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009529 (qsfp_interrupt_status[5] & QSFP_HIGH_BIAS_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009530 dd_dev_err(dd, "%s: Cable TX channel 1/2 bias too high\n",
9531 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009532
9533 if ((qsfp_interrupt_status[5] & QSFP_LOW_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009534 (qsfp_interrupt_status[5] & QSFP_LOW_BIAS_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009535 dd_dev_err(dd, "%s: Cable TX channel 1/2 bias too low\n",
9536 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009537
9538 if ((qsfp_interrupt_status[6] & QSFP_HIGH_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009539 (qsfp_interrupt_status[6] & QSFP_HIGH_BIAS_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009540 dd_dev_err(dd, "%s: Cable TX channel 3/4 bias too high\n",
9541 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009542
9543 if ((qsfp_interrupt_status[6] & QSFP_LOW_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009544 (qsfp_interrupt_status[6] & QSFP_LOW_BIAS_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009545 dd_dev_err(dd, "%s: Cable TX channel 3/4 bias too low\n",
9546 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009547
9548 if ((qsfp_interrupt_status[7] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009549 (qsfp_interrupt_status[7] & QSFP_HIGH_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009550 dd_dev_err(dd, "%s: Cable TX channel 1/2 power too high\n",
9551 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009552
9553 if ((qsfp_interrupt_status[7] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009554 (qsfp_interrupt_status[7] & QSFP_LOW_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009555 dd_dev_err(dd, "%s: Cable TX channel 1/2 power too low\n",
9556 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009557
9558 if ((qsfp_interrupt_status[8] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009559 (qsfp_interrupt_status[8] & QSFP_HIGH_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009560 dd_dev_err(dd, "%s: Cable TX channel 3/4 power too high\n",
9561 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009562
9563 if ((qsfp_interrupt_status[8] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009564 (qsfp_interrupt_status[8] & QSFP_LOW_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009565 dd_dev_err(dd, "%s: Cable TX channel 3/4 power too low\n",
9566 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009567
9568 /* Bytes 9-10 and 11-12 are reserved */
9569 /* Bytes 13-15 are vendor specific */
9570
9571 return 0;
9572}
9573
Easwar Hariharan623bba22016-04-12 11:25:57 -07009574/* This routine will only be scheduled if the QSFP module present is asserted */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009575void qsfp_event(struct work_struct *work)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009576{
9577 struct qsfp_data *qd;
9578 struct hfi1_pportdata *ppd;
9579 struct hfi1_devdata *dd;
9580
9581 qd = container_of(work, struct qsfp_data, qsfp_work);
9582 ppd = qd->ppd;
9583 dd = ppd->dd;
9584
9585 /* Sanity check */
9586 if (!qsfp_mod_present(ppd))
9587 return;
9588
Jan Sokolowski96603ed2017-07-29 08:43:26 -07009589 if (ppd->host_link_state == HLS_DN_DISABLE) {
9590 dd_dev_info(ppd->dd,
9591 "%s: stopping link start because link is disabled\n",
9592 __func__);
9593 return;
9594 }
9595
Mike Marciniszyn77241052015-07-30 15:17:43 -04009596 /*
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07009597 * Turn DC back on after cable has been re-inserted. Up until
9598 * now, the DC has been in reset to save power.
Mike Marciniszyn77241052015-07-30 15:17:43 -04009599 */
9600 dc_start(dd);
9601
9602 if (qd->cache_refresh_required) {
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009603 set_qsfp_int_n(ppd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009604
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009605 wait_for_qsfp_init(ppd);
9606
9607 /*
9608 * Allow INT_N to trigger the QSFP interrupt to watch
9609 * for alarms and warnings
Mike Marciniszyn77241052015-07-30 15:17:43 -04009610 */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009611 set_qsfp_int_n(ppd, 1);
9612
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009613 start_link(ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009614 }
9615
9616 if (qd->check_interrupt_flags) {
9617 u8 qsfp_interrupt_status[16] = {0,};
9618
Dean Luick765a6fa2016-03-05 08:50:06 -08009619 if (one_qsfp_read(ppd, dd->hfi1_id, 6,
9620 &qsfp_interrupt_status[0], 16) != 16) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04009621 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009622 "%s: Failed to read status of QSFP module\n",
9623 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009624 } else {
9625 unsigned long flags;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009626
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009627 handle_qsfp_error_conditions(
9628 ppd, qsfp_interrupt_status);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009629 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
9630 ppd->qsfp_info.check_interrupt_flags = 0;
9631 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock,
Jubin John17fb4f22016-02-14 20:21:52 -08009632 flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009633 }
9634 }
9635}
9636
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009637static void init_qsfp_int(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009638{
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009639 struct hfi1_pportdata *ppd = dd->pport;
9640 u64 qsfp_mask, cce_int_mask;
9641 const int qsfp1_int_smask = QSFP1_INT % 64;
9642 const int qsfp2_int_smask = QSFP2_INT % 64;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009643
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009644 /*
9645 * disable QSFP1 interrupts for HFI1, QSFP2 interrupts for HFI0
9646 * Qsfp1Int and Qsfp2Int are adjacent bits in the same CSR,
9647 * therefore just one of QSFP1_INT/QSFP2_INT can be used to find
9648 * the index of the appropriate CSR in the CCEIntMask CSR array
9649 */
9650 cce_int_mask = read_csr(dd, CCE_INT_MASK +
9651 (8 * (QSFP1_INT / 64)));
9652 if (dd->hfi1_id) {
9653 cce_int_mask &= ~((u64)1 << qsfp1_int_smask);
9654 write_csr(dd, CCE_INT_MASK + (8 * (QSFP1_INT / 64)),
9655 cce_int_mask);
9656 } else {
9657 cce_int_mask &= ~((u64)1 << qsfp2_int_smask);
9658 write_csr(dd, CCE_INT_MASK + (8 * (QSFP2_INT / 64)),
9659 cce_int_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009660 }
9661
Mike Marciniszyn77241052015-07-30 15:17:43 -04009662 qsfp_mask = (u64)(QSFP_HFI0_INT_N | QSFP_HFI0_MODPRST_N);
9663 /* Clear current status to avoid spurious interrupts */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009664 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_CLEAR : ASIC_QSFP1_CLEAR,
9665 qsfp_mask);
9666 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_MASK : ASIC_QSFP1_MASK,
9667 qsfp_mask);
9668
9669 set_qsfp_int_n(ppd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009670
9671 /* Handle active low nature of INT_N and MODPRST_N pins */
9672 if (qsfp_mod_present(ppd))
9673 qsfp_mask &= ~(u64)QSFP_HFI0_MODPRST_N;
9674 write_csr(dd,
9675 dd->hfi1_id ? ASIC_QSFP2_INVERT : ASIC_QSFP1_INVERT,
9676 qsfp_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009677}
9678
Dean Luickbbdeb332015-12-01 15:38:15 -05009679/*
9680 * Do a one-time initialize of the LCB block.
9681 */
9682static void init_lcb(struct hfi1_devdata *dd)
9683{
Dean Luicka59329d2016-02-03 14:32:31 -08009684 /* simulator does not correctly handle LCB cclk loopback, skip */
9685 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR)
9686 return;
9687
Dean Luickbbdeb332015-12-01 15:38:15 -05009688 /* the DC has been reset earlier in the driver load */
9689
9690 /* set LCB for cclk loopback on the port */
9691 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0x01);
9692 write_csr(dd, DC_LCB_CFG_LANE_WIDTH, 0x00);
9693 write_csr(dd, DC_LCB_CFG_REINIT_AS_SLAVE, 0x00);
9694 write_csr(dd, DC_LCB_CFG_CNT_FOR_SKIP_STALL, 0x110);
9695 write_csr(dd, DC_LCB_CFG_CLK_CNTR, 0x08);
9696 write_csr(dd, DC_LCB_CFG_LOOPBACK, 0x02);
9697 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0x00);
9698}
9699
Dean Luick673b9752016-08-31 07:24:33 -07009700/*
9701 * Perform a test read on the QSFP. Return 0 on success, -ERRNO
9702 * on error.
9703 */
9704static int test_qsfp_read(struct hfi1_pportdata *ppd)
9705{
9706 int ret;
9707 u8 status;
9708
Easwar Hariharanfb897ad2017-03-20 17:25:42 -07009709 /*
9710 * Report success if not a QSFP or, if it is a QSFP, but the cable is
9711 * not present
9712 */
9713 if (ppd->port_type != PORT_TYPE_QSFP || !qsfp_mod_present(ppd))
Dean Luick673b9752016-08-31 07:24:33 -07009714 return 0;
9715
9716 /* read byte 2, the status byte */
9717 ret = one_qsfp_read(ppd, ppd->dd->hfi1_id, 2, &status, 1);
9718 if (ret < 0)
9719 return ret;
9720 if (ret != 1)
9721 return -EIO;
9722
9723 return 0; /* success */
9724}
9725
9726/*
9727 * Values for QSFP retry.
9728 *
9729 * Give up after 10s (20 x 500ms). The overall timeout was empirically
9730 * arrived at from experience on a large cluster.
9731 */
9732#define MAX_QSFP_RETRIES 20
9733#define QSFP_RETRY_WAIT 500 /* msec */
9734
9735/*
9736 * Try a QSFP read. If it fails, schedule a retry for later.
9737 * Called on first link activation after driver load.
9738 */
9739static void try_start_link(struct hfi1_pportdata *ppd)
9740{
9741 if (test_qsfp_read(ppd)) {
9742 /* read failed */
9743 if (ppd->qsfp_retry_count >= MAX_QSFP_RETRIES) {
9744 dd_dev_err(ppd->dd, "QSFP not responding, giving up\n");
9745 return;
9746 }
9747 dd_dev_info(ppd->dd,
9748 "QSFP not responding, waiting and retrying %d\n",
9749 (int)ppd->qsfp_retry_count);
9750 ppd->qsfp_retry_count++;
Sebastian Sanchez71d47002017-07-29 08:43:49 -07009751 queue_delayed_work(ppd->link_wq, &ppd->start_link_work,
Dean Luick673b9752016-08-31 07:24:33 -07009752 msecs_to_jiffies(QSFP_RETRY_WAIT));
9753 return;
9754 }
9755 ppd->qsfp_retry_count = 0;
9756
Dean Luick673b9752016-08-31 07:24:33 -07009757 start_link(ppd);
9758}
9759
9760/*
9761 * Workqueue function to start the link after a delay.
9762 */
9763void handle_start_link(struct work_struct *work)
9764{
9765 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
9766 start_link_work.work);
9767 try_start_link(ppd);
9768}
9769
Mike Marciniszyn77241052015-07-30 15:17:43 -04009770int bringup_serdes(struct hfi1_pportdata *ppd)
9771{
9772 struct hfi1_devdata *dd = ppd->dd;
9773 u64 guid;
9774 int ret;
9775
9776 if (HFI1_CAP_IS_KSET(EXTENDED_PSN))
9777 add_rcvctrl(dd, RCV_CTRL_RCV_EXTENDED_PSN_ENABLE_SMASK);
9778
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07009779 guid = ppd->guids[HFI1_PORT_GUID_INDEX];
Mike Marciniszyn77241052015-07-30 15:17:43 -04009780 if (!guid) {
9781 if (dd->base_guid)
9782 guid = dd->base_guid + ppd->port - 1;
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07009783 ppd->guids[HFI1_PORT_GUID_INDEX] = guid;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009784 }
9785
Mike Marciniszyn77241052015-07-30 15:17:43 -04009786 /* Set linkinit_reason on power up per OPA spec */
9787 ppd->linkinit_reason = OPA_LINKINIT_REASON_LINKUP;
9788
Dean Luickbbdeb332015-12-01 15:38:15 -05009789 /* one-time init of the LCB */
9790 init_lcb(dd);
9791
Mike Marciniszyn77241052015-07-30 15:17:43 -04009792 if (loopback) {
9793 ret = init_loopback(dd);
9794 if (ret < 0)
9795 return ret;
9796 }
9797
Easwar Hariharan9775a992016-05-12 10:22:39 -07009798 get_port_type(ppd);
9799 if (ppd->port_type == PORT_TYPE_QSFP) {
9800 set_qsfp_int_n(ppd, 0);
9801 wait_for_qsfp_init(ppd);
9802 set_qsfp_int_n(ppd, 1);
9803 }
9804
Dean Luick673b9752016-08-31 07:24:33 -07009805 try_start_link(ppd);
9806 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009807}
9808
9809void hfi1_quiet_serdes(struct hfi1_pportdata *ppd)
9810{
9811 struct hfi1_devdata *dd = ppd->dd;
9812
9813 /*
9814 * Shut down the link and keep it down. First turn off that the
9815 * driver wants to allow the link to be up (driver_link_ready).
9816 * Then make sure the link is not automatically restarted
9817 * (link_enabled). Cancel any pending restart. And finally
9818 * go offline.
9819 */
9820 ppd->driver_link_ready = 0;
9821 ppd->link_enabled = 0;
9822
Dean Luick673b9752016-08-31 07:24:33 -07009823 ppd->qsfp_retry_count = MAX_QSFP_RETRIES; /* prevent more retries */
9824 flush_delayed_work(&ppd->start_link_work);
9825 cancel_delayed_work_sync(&ppd->start_link_work);
9826
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009827 ppd->offline_disabled_reason =
Jan Sokolowskie8d5aff2017-11-06 06:39:07 -08009828 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_REBOOT);
9829 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_REBOOT, 0,
9830 OPA_LINKDOWN_REASON_REBOOT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009831 set_link_state(ppd, HLS_DN_OFFLINE);
9832
9833 /* disable the port */
9834 clear_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
9835}
9836
9837static inline int init_cpu_counters(struct hfi1_devdata *dd)
9838{
9839 struct hfi1_pportdata *ppd;
9840 int i;
9841
9842 ppd = (struct hfi1_pportdata *)(dd + 1);
9843 for (i = 0; i < dd->num_pports; i++, ppd++) {
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08009844 ppd->ibport_data.rvp.rc_acks = NULL;
9845 ppd->ibport_data.rvp.rc_qacks = NULL;
9846 ppd->ibport_data.rvp.rc_acks = alloc_percpu(u64);
9847 ppd->ibport_data.rvp.rc_qacks = alloc_percpu(u64);
9848 ppd->ibport_data.rvp.rc_delayed_comp = alloc_percpu(u64);
9849 if (!ppd->ibport_data.rvp.rc_acks ||
9850 !ppd->ibport_data.rvp.rc_delayed_comp ||
9851 !ppd->ibport_data.rvp.rc_qacks)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009852 return -ENOMEM;
9853 }
9854
9855 return 0;
9856}
9857
Mike Marciniszyn77241052015-07-30 15:17:43 -04009858/*
9859 * index is the index into the receive array
9860 */
9861void hfi1_put_tid(struct hfi1_devdata *dd, u32 index,
9862 u32 type, unsigned long pa, u16 order)
9863{
9864 u64 reg;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009865
9866 if (!(dd->flags & HFI1_PRESENT))
9867 goto done;
9868
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07009869 if (type == PT_INVALID || type == PT_INVALID_FLUSH) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04009870 pa = 0;
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07009871 order = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009872 } else if (type > PT_INVALID) {
9873 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009874 "unexpected receive array type %u for index %u, not handled\n",
9875 type, index);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009876 goto done;
9877 }
Mike Marciniszyn8cb10212017-06-09 15:59:59 -07009878 trace_hfi1_put_tid(dd, index, type, pa, order);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009879
9880#define RT_ADDR_SHIFT 12 /* 4KB kernel address boundary */
9881 reg = RCV_ARRAY_RT_WRITE_ENABLE_SMASK
9882 | (u64)order << RCV_ARRAY_RT_BUF_SIZE_SHIFT
9883 | ((pa >> RT_ADDR_SHIFT) & RCV_ARRAY_RT_ADDR_MASK)
9884 << RCV_ARRAY_RT_ADDR_SHIFT;
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07009885 trace_hfi1_write_rcvarray(dd->rcvarray_wc + (index * 8), reg);
9886 writeq(reg, dd->rcvarray_wc + (index * 8));
Mike Marciniszyn77241052015-07-30 15:17:43 -04009887
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07009888 if (type == PT_EAGER || type == PT_INVALID_FLUSH || (index & 3) == 3)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009889 /*
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07009890 * Eager entries are written and flushed
9891 *
9892 * Expected entries are flushed every 4 writes
Mike Marciniszyn77241052015-07-30 15:17:43 -04009893 */
9894 flush_wc();
9895done:
9896 return;
9897}
9898
9899void hfi1_clear_tids(struct hfi1_ctxtdata *rcd)
9900{
9901 struct hfi1_devdata *dd = rcd->dd;
9902 u32 i;
9903
9904 /* this could be optimized */
9905 for (i = rcd->eager_base; i < rcd->eager_base +
9906 rcd->egrbufs.alloced; i++)
9907 hfi1_put_tid(dd, i, PT_INVALID, 0, 0);
9908
9909 for (i = rcd->expected_base;
9910 i < rcd->expected_base + rcd->expected_count; i++)
9911 hfi1_put_tid(dd, i, PT_INVALID, 0, 0);
9912}
9913
Mike Marciniszyn77241052015-07-30 15:17:43 -04009914static const char * const ib_cfg_name_strings[] = {
9915 "HFI1_IB_CFG_LIDLMC",
9916 "HFI1_IB_CFG_LWID_DG_ENB",
9917 "HFI1_IB_CFG_LWID_ENB",
9918 "HFI1_IB_CFG_LWID",
9919 "HFI1_IB_CFG_SPD_ENB",
9920 "HFI1_IB_CFG_SPD",
9921 "HFI1_IB_CFG_RXPOL_ENB",
9922 "HFI1_IB_CFG_LREV_ENB",
9923 "HFI1_IB_CFG_LINKLATENCY",
9924 "HFI1_IB_CFG_HRTBT",
9925 "HFI1_IB_CFG_OP_VLS",
9926 "HFI1_IB_CFG_VL_HIGH_CAP",
9927 "HFI1_IB_CFG_VL_LOW_CAP",
9928 "HFI1_IB_CFG_OVERRUN_THRESH",
9929 "HFI1_IB_CFG_PHYERR_THRESH",
9930 "HFI1_IB_CFG_LINKDEFAULT",
9931 "HFI1_IB_CFG_PKEYS",
9932 "HFI1_IB_CFG_MTU",
9933 "HFI1_IB_CFG_LSTATE",
9934 "HFI1_IB_CFG_VL_HIGH_LIMIT",
9935 "HFI1_IB_CFG_PMA_TICKS",
9936 "HFI1_IB_CFG_PORT"
9937};
9938
9939static const char *ib_cfg_name(int which)
9940{
9941 if (which < 0 || which >= ARRAY_SIZE(ib_cfg_name_strings))
9942 return "invalid";
9943 return ib_cfg_name_strings[which];
9944}
9945
9946int hfi1_get_ib_cfg(struct hfi1_pportdata *ppd, int which)
9947{
9948 struct hfi1_devdata *dd = ppd->dd;
9949 int val = 0;
9950
9951 switch (which) {
9952 case HFI1_IB_CFG_LWID_ENB: /* allowed Link-width */
9953 val = ppd->link_width_enabled;
9954 break;
9955 case HFI1_IB_CFG_LWID: /* currently active Link-width */
9956 val = ppd->link_width_active;
9957 break;
9958 case HFI1_IB_CFG_SPD_ENB: /* allowed Link speeds */
9959 val = ppd->link_speed_enabled;
9960 break;
9961 case HFI1_IB_CFG_SPD: /* current Link speed */
9962 val = ppd->link_speed_active;
9963 break;
9964
9965 case HFI1_IB_CFG_RXPOL_ENB: /* Auto-RX-polarity enable */
9966 case HFI1_IB_CFG_LREV_ENB: /* Auto-Lane-reversal enable */
9967 case HFI1_IB_CFG_LINKLATENCY:
9968 goto unimplemented;
9969
9970 case HFI1_IB_CFG_OP_VLS:
Patel Jay P00f92032017-10-23 06:05:53 -07009971 val = ppd->actual_vls_operational;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009972 break;
9973 case HFI1_IB_CFG_VL_HIGH_CAP: /* VL arb high priority table size */
9974 val = VL_ARB_HIGH_PRIO_TABLE_SIZE;
9975 break;
9976 case HFI1_IB_CFG_VL_LOW_CAP: /* VL arb low priority table size */
9977 val = VL_ARB_LOW_PRIO_TABLE_SIZE;
9978 break;
9979 case HFI1_IB_CFG_OVERRUN_THRESH: /* IB overrun threshold */
9980 val = ppd->overrun_threshold;
9981 break;
9982 case HFI1_IB_CFG_PHYERR_THRESH: /* IB PHY error threshold */
9983 val = ppd->phy_error_threshold;
9984 break;
9985 case HFI1_IB_CFG_LINKDEFAULT: /* IB link default (sleep/poll) */
Ira Weiny156d24d2017-09-26 07:00:43 -07009986 val = HLS_DEFAULT;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009987 break;
9988
9989 case HFI1_IB_CFG_HRTBT: /* Heartbeat off/enable/auto */
9990 case HFI1_IB_CFG_PMA_TICKS:
9991 default:
9992unimplemented:
9993 if (HFI1_CAP_IS_KSET(PRINT_UNIMPL))
9994 dd_dev_info(
9995 dd,
9996 "%s: which %s: not implemented\n",
9997 __func__,
9998 ib_cfg_name(which));
9999 break;
10000 }
10001
10002 return val;
10003}
10004
10005/*
10006 * The largest MAD packet size.
10007 */
10008#define MAX_MAD_PACKET 2048
10009
10010/*
10011 * Return the maximum header bytes that can go on the _wire_
10012 * for this device. This count includes the ICRC which is
10013 * not part of the packet held in memory but it is appended
10014 * by the HW.
10015 * This is dependent on the device's receive header entry size.
10016 * HFI allows this to be set per-receive context, but the
10017 * driver presently enforces a global value.
10018 */
10019u32 lrh_max_header_bytes(struct hfi1_devdata *dd)
10020{
10021 /*
10022 * The maximum non-payload (MTU) bytes in LRH.PktLen are
10023 * the Receive Header Entry Size minus the PBC (or RHF) size
10024 * plus one DW for the ICRC appended by HW.
10025 *
10026 * dd->rcd[0].rcvhdrqentsize is in DW.
10027 * We use rcd[0] as all context will have the same value. Also,
10028 * the first kernel context would have been allocated by now so
10029 * we are guaranteed a valid value.
10030 */
10031 return (dd->rcd[0]->rcvhdrqentsize - 2/*PBC/RHF*/ + 1/*ICRC*/) << 2;
10032}
10033
10034/*
10035 * Set Send Length
10036 * @ppd - per port data
10037 *
10038 * Set the MTU by limiting how many DWs may be sent. The SendLenCheck*
10039 * registers compare against LRH.PktLen, so use the max bytes included
10040 * in the LRH.
10041 *
10042 * This routine changes all VL values except VL15, which it maintains at
10043 * the same value.
10044 */
10045static void set_send_length(struct hfi1_pportdata *ppd)
10046{
10047 struct hfi1_devdata *dd = ppd->dd;
Harish Chegondi6cc6ad22015-12-01 15:38:24 -050010048 u32 max_hb = lrh_max_header_bytes(dd), dcmtu;
10049 u32 maxvlmtu = dd->vld[15].mtu;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010050 u64 len1 = 0, len2 = (((dd->vld[15].mtu + max_hb) >> 2)
10051 & SEND_LEN_CHECK1_LEN_VL15_MASK) <<
10052 SEND_LEN_CHECK1_LEN_VL15_SHIFT;
Jubin Johnb4ba6632016-06-09 07:51:08 -070010053 int i, j;
Jianxin Xiong44306f12016-04-12 11:30:28 -070010054 u32 thres;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010055
10056 for (i = 0; i < ppd->vls_supported; i++) {
10057 if (dd->vld[i].mtu > maxvlmtu)
10058 maxvlmtu = dd->vld[i].mtu;
10059 if (i <= 3)
10060 len1 |= (((dd->vld[i].mtu + max_hb) >> 2)
10061 & SEND_LEN_CHECK0_LEN_VL0_MASK) <<
10062 ((i % 4) * SEND_LEN_CHECK0_LEN_VL1_SHIFT);
10063 else
10064 len2 |= (((dd->vld[i].mtu + max_hb) >> 2)
10065 & SEND_LEN_CHECK1_LEN_VL4_MASK) <<
10066 ((i % 4) * SEND_LEN_CHECK1_LEN_VL5_SHIFT);
10067 }
10068 write_csr(dd, SEND_LEN_CHECK0, len1);
10069 write_csr(dd, SEND_LEN_CHECK1, len2);
10070 /* adjust kernel credit return thresholds based on new MTUs */
10071 /* all kernel receive contexts have the same hdrqentsize */
10072 for (i = 0; i < ppd->vls_supported; i++) {
Jianxin Xiong44306f12016-04-12 11:30:28 -070010073 thres = min(sc_percent_to_threshold(dd->vld[i].sc, 50),
10074 sc_mtu_to_threshold(dd->vld[i].sc,
10075 dd->vld[i].mtu,
Jubin John17fb4f22016-02-14 20:21:52 -080010076 dd->rcd[0]->rcvhdrqentsize));
Jubin Johnb4ba6632016-06-09 07:51:08 -070010077 for (j = 0; j < INIT_SC_PER_VL; j++)
10078 sc_set_cr_threshold(
10079 pio_select_send_context_vl(dd, j, i),
10080 thres);
Jianxin Xiong44306f12016-04-12 11:30:28 -070010081 }
10082 thres = min(sc_percent_to_threshold(dd->vld[15].sc, 50),
10083 sc_mtu_to_threshold(dd->vld[15].sc,
10084 dd->vld[15].mtu,
10085 dd->rcd[0]->rcvhdrqentsize));
10086 sc_set_cr_threshold(dd->vld[15].sc, thres);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010087
10088 /* Adjust maximum MTU for the port in DC */
10089 dcmtu = maxvlmtu == 10240 ? DCC_CFG_PORT_MTU_CAP_10240 :
10090 (ilog2(maxvlmtu >> 8) + 1);
10091 len1 = read_csr(ppd->dd, DCC_CFG_PORT_CONFIG);
10092 len1 &= ~DCC_CFG_PORT_CONFIG_MTU_CAP_SMASK;
10093 len1 |= ((u64)dcmtu & DCC_CFG_PORT_CONFIG_MTU_CAP_MASK) <<
10094 DCC_CFG_PORT_CONFIG_MTU_CAP_SHIFT;
10095 write_csr(ppd->dd, DCC_CFG_PORT_CONFIG, len1);
10096}
10097
10098static void set_lidlmc(struct hfi1_pportdata *ppd)
10099{
10100 int i;
10101 u64 sreg = 0;
10102 struct hfi1_devdata *dd = ppd->dd;
10103 u32 mask = ~((1U << ppd->lmc) - 1);
10104 u64 c1 = read_csr(ppd->dd, DCC_CFG_PORT_CONFIG1);
Dasaratharaman Chandramouli51e658f52017-08-04 13:54:35 -070010105 u32 lid;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010106
Dasaratharaman Chandramouli51e658f52017-08-04 13:54:35 -070010107 /*
10108 * Program 0 in CSR if port lid is extended. This prevents
10109 * 9B packets being sent out for large lids.
10110 */
10111 lid = (ppd->lid >= be16_to_cpu(IB_MULTICAST_LID_BASE)) ? 0 : ppd->lid;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010112 c1 &= ~(DCC_CFG_PORT_CONFIG1_TARGET_DLID_SMASK
10113 | DCC_CFG_PORT_CONFIG1_DLID_MASK_SMASK);
Dasaratharaman Chandramouli51e658f52017-08-04 13:54:35 -070010114 c1 |= ((lid & DCC_CFG_PORT_CONFIG1_TARGET_DLID_MASK)
Jubin John8638b772016-02-14 20:19:24 -080010115 << DCC_CFG_PORT_CONFIG1_TARGET_DLID_SHIFT) |
Mike Marciniszyn77241052015-07-30 15:17:43 -040010116 ((mask & DCC_CFG_PORT_CONFIG1_DLID_MASK_MASK)
10117 << DCC_CFG_PORT_CONFIG1_DLID_MASK_SHIFT);
10118 write_csr(ppd->dd, DCC_CFG_PORT_CONFIG1, c1);
10119
10120 /*
10121 * Iterate over all the send contexts and set their SLID check
10122 */
10123 sreg = ((mask & SEND_CTXT_CHECK_SLID_MASK_MASK) <<
10124 SEND_CTXT_CHECK_SLID_MASK_SHIFT) |
Dasaratharaman Chandramouli51e658f52017-08-04 13:54:35 -070010125 (((lid & mask) & SEND_CTXT_CHECK_SLID_VALUE_MASK) <<
Mike Marciniszyn77241052015-07-30 15:17:43 -040010126 SEND_CTXT_CHECK_SLID_VALUE_SHIFT);
10127
10128 for (i = 0; i < dd->chip_send_contexts; i++) {
10129 hfi1_cdbg(LINKVERB, "SendContext[%d].SLID_CHECK = 0x%x",
10130 i, (u32)sreg);
10131 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_SLID, sreg);
10132 }
10133
10134 /* Now we have to do the same thing for the sdma engines */
Dasaratharaman Chandramouli51e658f52017-08-04 13:54:35 -070010135 sdma_update_lmc(dd, mask, lid);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010136}
10137
Dean Luick6854c692016-07-25 13:38:56 -070010138static const char *state_completed_string(u32 completed)
10139{
10140 static const char * const state_completed[] = {
10141 "EstablishComm",
10142 "OptimizeEQ",
10143 "VerifyCap"
10144 };
10145
10146 if (completed < ARRAY_SIZE(state_completed))
10147 return state_completed[completed];
10148
10149 return "unknown";
10150}
10151
10152static const char all_lanes_dead_timeout_expired[] =
10153 "All lanes were inactive – was the interconnect media removed?";
10154static const char tx_out_of_policy[] =
10155 "Passing lanes on local port do not meet the local link width policy";
10156static const char no_state_complete[] =
10157 "State timeout occurred before link partner completed the state";
10158static const char * const state_complete_reasons[] = {
10159 [0x00] = "Reason unknown",
10160 [0x01] = "Link was halted by driver, refer to LinkDownReason",
10161 [0x02] = "Link partner reported failure",
10162 [0x10] = "Unable to achieve frame sync on any lane",
10163 [0x11] =
10164 "Unable to find a common bit rate with the link partner",
10165 [0x12] =
10166 "Unable to achieve frame sync on sufficient lanes to meet the local link width policy",
10167 [0x13] =
10168 "Unable to identify preset equalization on sufficient lanes to meet the local link width policy",
10169 [0x14] = no_state_complete,
10170 [0x15] =
10171 "State timeout occurred before link partner identified equalization presets",
10172 [0x16] =
10173 "Link partner completed the EstablishComm state, but the passing lanes do not meet the local link width policy",
10174 [0x17] = tx_out_of_policy,
10175 [0x20] = all_lanes_dead_timeout_expired,
10176 [0x21] =
10177 "Unable to achieve acceptable BER on sufficient lanes to meet the local link width policy",
10178 [0x22] = no_state_complete,
10179 [0x23] =
10180 "Link partner completed the OptimizeEq state, but the passing lanes do not meet the local link width policy",
10181 [0x24] = tx_out_of_policy,
10182 [0x30] = all_lanes_dead_timeout_expired,
10183 [0x31] =
10184 "State timeout occurred waiting for host to process received frames",
10185 [0x32] = no_state_complete,
10186 [0x33] =
10187 "Link partner completed the VerifyCap state, but the passing lanes do not meet the local link width policy",
10188 [0x34] = tx_out_of_policy,
Jakub Byczkowskie870b4a2017-09-26 07:00:04 -070010189 [0x35] = "Negotiated link width is mutually exclusive",
10190 [0x36] =
10191 "Timed out before receiving verifycap frames in VerifyCap.Exchange",
10192 [0x37] = "Unable to resolve secure data exchange",
Dean Luick6854c692016-07-25 13:38:56 -070010193};
10194
10195static const char *state_complete_reason_code_string(struct hfi1_pportdata *ppd,
10196 u32 code)
10197{
10198 const char *str = NULL;
10199
10200 if (code < ARRAY_SIZE(state_complete_reasons))
10201 str = state_complete_reasons[code];
10202
10203 if (str)
10204 return str;
10205 return "Reserved";
10206}
10207
10208/* describe the given last state complete frame */
10209static void decode_state_complete(struct hfi1_pportdata *ppd, u32 frame,
10210 const char *prefix)
10211{
10212 struct hfi1_devdata *dd = ppd->dd;
10213 u32 success;
10214 u32 state;
10215 u32 reason;
10216 u32 lanes;
10217
10218 /*
10219 * Decode frame:
10220 * [ 0: 0] - success
10221 * [ 3: 1] - state
10222 * [ 7: 4] - next state timeout
10223 * [15: 8] - reason code
10224 * [31:16] - lanes
10225 */
10226 success = frame & 0x1;
10227 state = (frame >> 1) & 0x7;
10228 reason = (frame >> 8) & 0xff;
10229 lanes = (frame >> 16) & 0xffff;
10230
10231 dd_dev_err(dd, "Last %s LNI state complete frame 0x%08x:\n",
10232 prefix, frame);
10233 dd_dev_err(dd, " last reported state state: %s (0x%x)\n",
10234 state_completed_string(state), state);
10235 dd_dev_err(dd, " state successfully completed: %s\n",
10236 success ? "yes" : "no");
10237 dd_dev_err(dd, " fail reason 0x%x: %s\n",
10238 reason, state_complete_reason_code_string(ppd, reason));
10239 dd_dev_err(dd, " passing lane mask: 0x%x", lanes);
10240}
10241
10242/*
10243 * Read the last state complete frames and explain them. This routine
10244 * expects to be called if the link went down during link negotiation
10245 * and initialization (LNI). That is, anywhere between polling and link up.
10246 */
10247static void check_lni_states(struct hfi1_pportdata *ppd)
10248{
10249 u32 last_local_state;
10250 u32 last_remote_state;
10251
10252 read_last_local_state(ppd->dd, &last_local_state);
10253 read_last_remote_state(ppd->dd, &last_remote_state);
10254
10255 /*
10256 * Don't report anything if there is nothing to report. A value of
10257 * 0 means the link was taken down while polling and there was no
10258 * training in-process.
10259 */
10260 if (last_local_state == 0 && last_remote_state == 0)
10261 return;
10262
10263 decode_state_complete(ppd, last_local_state, "transmitted");
10264 decode_state_complete(ppd, last_remote_state, "received");
10265}
10266
Dean Luickec8a1422017-03-20 17:24:39 -070010267/* wait for wait_ms for LINK_TRANSFER_ACTIVE to go to 1 */
10268static int wait_link_transfer_active(struct hfi1_devdata *dd, int wait_ms)
10269{
10270 u64 reg;
10271 unsigned long timeout;
10272
10273 /* watch LCB_STS_LINK_TRANSFER_ACTIVE */
10274 timeout = jiffies + msecs_to_jiffies(wait_ms);
10275 while (1) {
10276 reg = read_csr(dd, DC_LCB_STS_LINK_TRANSFER_ACTIVE);
10277 if (reg)
10278 break;
10279 if (time_after(jiffies, timeout)) {
10280 dd_dev_err(dd,
10281 "timeout waiting for LINK_TRANSFER_ACTIVE\n");
10282 return -ETIMEDOUT;
10283 }
10284 udelay(2);
10285 }
10286 return 0;
10287}
10288
10289/* called when the logical link state is not down as it should be */
10290static void force_logical_link_state_down(struct hfi1_pportdata *ppd)
10291{
10292 struct hfi1_devdata *dd = ppd->dd;
10293
10294 /*
10295 * Bring link up in LCB loopback
10296 */
10297 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 1);
10298 write_csr(dd, DC_LCB_CFG_IGNORE_LOST_RCLK,
10299 DC_LCB_CFG_IGNORE_LOST_RCLK_EN_SMASK);
10300
10301 write_csr(dd, DC_LCB_CFG_LANE_WIDTH, 0);
10302 write_csr(dd, DC_LCB_CFG_REINIT_AS_SLAVE, 0);
10303 write_csr(dd, DC_LCB_CFG_CNT_FOR_SKIP_STALL, 0x110);
10304 write_csr(dd, DC_LCB_CFG_LOOPBACK, 0x2);
10305
10306 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0);
10307 (void)read_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET);
10308 udelay(3);
10309 write_csr(dd, DC_LCB_CFG_ALLOW_LINK_UP, 1);
10310 write_csr(dd, DC_LCB_CFG_RUN, 1ull << DC_LCB_CFG_RUN_EN_SHIFT);
10311
10312 wait_link_transfer_active(dd, 100);
10313
10314 /*
10315 * Bring the link down again.
10316 */
10317 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 1);
10318 write_csr(dd, DC_LCB_CFG_ALLOW_LINK_UP, 0);
10319 write_csr(dd, DC_LCB_CFG_IGNORE_LOST_RCLK, 0);
10320
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070010321 dd_dev_info(ppd->dd, "logical state forced to LINK_DOWN\n");
Dean Luickec8a1422017-03-20 17:24:39 -070010322}
10323
Mike Marciniszyn77241052015-07-30 15:17:43 -040010324/*
10325 * Helper for set_link_state(). Do not call except from that routine.
10326 * Expects ppd->hls_mutex to be held.
10327 *
10328 * @rem_reason value to be sent to the neighbor
10329 *
10330 * LinkDownReasons only set if transition succeeds.
10331 */
10332static int goto_offline(struct hfi1_pportdata *ppd, u8 rem_reason)
10333{
10334 struct hfi1_devdata *dd = ppd->dd;
Sebastian Sanchez913cc672017-07-29 08:44:01 -070010335 u32 previous_state;
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -070010336 int offline_state_ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010337 int ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010338
Michael J. Ruhl86884262017-03-20 17:24:51 -070010339 update_lcb_cache(dd);
10340
Mike Marciniszyn77241052015-07-30 15:17:43 -040010341 previous_state = ppd->host_link_state;
10342 ppd->host_link_state = HLS_GOING_OFFLINE;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010343
Sebastian Sanchez913cc672017-07-29 08:44:01 -070010344 /* start offline transition */
10345 ret = set_physical_link_state(dd, (rem_reason << 8) | PLS_OFFLINE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010346
Sebastian Sanchez913cc672017-07-29 08:44:01 -070010347 if (ret != HCMD_SUCCESS) {
10348 dd_dev_err(dd,
10349 "Failed to transition to Offline link state, return %d\n",
10350 ret);
10351 return -EINVAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010352 }
Sebastian Sanchez913cc672017-07-29 08:44:01 -070010353 if (ppd->offline_disabled_reason ==
10354 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE))
10355 ppd->offline_disabled_reason =
10356 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_TRANSIENT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010357
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -070010358 offline_state_ret = wait_phys_link_offline_substates(ppd, 10000);
10359 if (offline_state_ret < 0)
10360 return offline_state_ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010361
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -070010362 /* Disabling AOC transmitters */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080010363 if (ppd->port_type == PORT_TYPE_QSFP &&
10364 ppd->qsfp_info.limiting_active &&
10365 qsfp_mod_present(ppd)) {
Dean Luick765a6fa2016-03-05 08:50:06 -080010366 int ret;
10367
10368 ret = acquire_chip_resource(dd, qsfp_resource(dd), QSFP_WAIT);
10369 if (ret == 0) {
10370 set_qsfp_tx(ppd, 0);
10371 release_chip_resource(dd, qsfp_resource(dd));
10372 } else {
10373 /* not fatal, but should warn */
10374 dd_dev_err(dd,
10375 "Unable to acquire lock to turn off QSFP TX\n");
10376 }
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080010377 }
10378
Mike Marciniszyn77241052015-07-30 15:17:43 -040010379 /*
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -070010380 * Wait for the offline.Quiet transition if it hasn't happened yet. It
10381 * can take a while for the link to go down.
10382 */
10383 if (offline_state_ret != PLS_OFFLINE_QUIET) {
10384 ret = wait_physical_linkstate(ppd, PLS_OFFLINE, 30000);
10385 if (ret < 0)
10386 return ret;
10387 }
10388
10389 /*
10390 * Now in charge of LCB - must be after the physical state is
10391 * offline.quiet and before host_link_state is changed.
10392 */
10393 set_host_lcb_access(dd);
10394 write_csr(dd, DC_LCB_ERR_EN, ~0ull); /* watch LCB errors */
10395
10396 /* make sure the logical state is also down */
10397 ret = wait_logical_linkstate(ppd, IB_PORT_DOWN, 1000);
10398 if (ret)
10399 force_logical_link_state_down(ppd);
10400
10401 ppd->host_link_state = HLS_LINK_COOLDOWN; /* LCB access allowed */
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070010402 update_statusp(ppd, IB_PORT_DOWN);
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -070010403
10404 /*
Mike Marciniszyn77241052015-07-30 15:17:43 -040010405 * The LNI has a mandatory wait time after the physical state
10406 * moves to Offline.Quiet. The wait time may be different
10407 * depending on how the link went down. The 8051 firmware
10408 * will observe the needed wait time and only move to ready
10409 * when that is completed. The largest of the quiet timeouts
Dean Luick05087f3b2015-12-01 15:38:16 -050010410 * is 6s, so wait that long and then at least 0.5s more for
10411 * other transitions, and another 0.5s for a buffer.
Mike Marciniszyn77241052015-07-30 15:17:43 -040010412 */
Dean Luick05087f3b2015-12-01 15:38:16 -050010413 ret = wait_fm_ready(dd, 7000);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010414 if (ret) {
10415 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010416 "After going offline, timed out waiting for the 8051 to become ready to accept host requests\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -040010417 /* state is really offline, so make it so */
10418 ppd->host_link_state = HLS_DN_OFFLINE;
10419 return ret;
10420 }
10421
10422 /*
10423 * The state is now offline and the 8051 is ready to accept host
10424 * requests.
10425 * - change our state
10426 * - notify others if we were previously in a linkup state
10427 */
10428 ppd->host_link_state = HLS_DN_OFFLINE;
10429 if (previous_state & HLS_UP) {
10430 /* went down while link was up */
10431 handle_linkup_change(dd, 0);
10432 } else if (previous_state
10433 & (HLS_DN_POLL | HLS_VERIFY_CAP | HLS_GOING_UP)) {
10434 /* went down while attempting link up */
Dean Luick6854c692016-07-25 13:38:56 -070010435 check_lni_states(ppd);
Sebastian Sanchez30e10522017-09-26 06:06:03 -070010436
10437 /* The QSFP doesn't need to be reset on LNI failure */
10438 ppd->qsfp_info.reset_needed = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010439 }
10440
10441 /* the active link width (downgrade) is 0 on link down */
10442 ppd->link_width_active = 0;
10443 ppd->link_width_downgrade_tx_active = 0;
10444 ppd->link_width_downgrade_rx_active = 0;
10445 ppd->current_egress_rate = 0;
10446 return 0;
10447}
10448
10449/* return the link state name */
10450static const char *link_state_name(u32 state)
10451{
10452 const char *name;
10453 int n = ilog2(state);
10454 static const char * const names[] = {
10455 [__HLS_UP_INIT_BP] = "INIT",
10456 [__HLS_UP_ARMED_BP] = "ARMED",
10457 [__HLS_UP_ACTIVE_BP] = "ACTIVE",
10458 [__HLS_DN_DOWNDEF_BP] = "DOWNDEF",
10459 [__HLS_DN_POLL_BP] = "POLL",
10460 [__HLS_DN_DISABLE_BP] = "DISABLE",
10461 [__HLS_DN_OFFLINE_BP] = "OFFLINE",
10462 [__HLS_VERIFY_CAP_BP] = "VERIFY_CAP",
10463 [__HLS_GOING_UP_BP] = "GOING_UP",
10464 [__HLS_GOING_OFFLINE_BP] = "GOING_OFFLINE",
10465 [__HLS_LINK_COOLDOWN_BP] = "LINK_COOLDOWN"
10466 };
10467
10468 name = n < ARRAY_SIZE(names) ? names[n] : NULL;
10469 return name ? name : "unknown";
10470}
10471
10472/* return the link state reason name */
10473static const char *link_state_reason_name(struct hfi1_pportdata *ppd, u32 state)
10474{
10475 if (state == HLS_UP_INIT) {
10476 switch (ppd->linkinit_reason) {
10477 case OPA_LINKINIT_REASON_LINKUP:
10478 return "(LINKUP)";
10479 case OPA_LINKINIT_REASON_FLAPPING:
10480 return "(FLAPPING)";
10481 case OPA_LINKINIT_OUTSIDE_POLICY:
10482 return "(OUTSIDE_POLICY)";
10483 case OPA_LINKINIT_QUARANTINED:
10484 return "(QUARANTINED)";
10485 case OPA_LINKINIT_INSUFIC_CAPABILITY:
10486 return "(INSUFIC_CAPABILITY)";
10487 default:
10488 break;
10489 }
10490 }
10491 return "";
10492}
10493
10494/*
Jakub Byczkowskid392a672017-08-13 08:08:52 -070010495 * driver_pstate - convert the driver's notion of a port's
Mike Marciniszyn77241052015-07-30 15:17:43 -040010496 * state (an HLS_*) into a physical state (a {IB,OPA}_PORTPHYSSTATE_*).
10497 * Return -1 (converted to a u32) to indicate error.
10498 */
Jakub Byczkowskid392a672017-08-13 08:08:52 -070010499u32 driver_pstate(struct hfi1_pportdata *ppd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040010500{
10501 switch (ppd->host_link_state) {
10502 case HLS_UP_INIT:
10503 case HLS_UP_ARMED:
10504 case HLS_UP_ACTIVE:
10505 return IB_PORTPHYSSTATE_LINKUP;
10506 case HLS_DN_POLL:
10507 return IB_PORTPHYSSTATE_POLLING;
10508 case HLS_DN_DISABLE:
10509 return IB_PORTPHYSSTATE_DISABLED;
10510 case HLS_DN_OFFLINE:
10511 return OPA_PORTPHYSSTATE_OFFLINE;
10512 case HLS_VERIFY_CAP:
Michael J. Ruhle4607072018-05-02 06:42:59 -070010513 return IB_PORTPHYSSTATE_TRAINING;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010514 case HLS_GOING_UP:
Michael J. Ruhle4607072018-05-02 06:42:59 -070010515 return IB_PORTPHYSSTATE_TRAINING;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010516 case HLS_GOING_OFFLINE:
10517 return OPA_PORTPHYSSTATE_OFFLINE;
10518 case HLS_LINK_COOLDOWN:
10519 return OPA_PORTPHYSSTATE_OFFLINE;
10520 case HLS_DN_DOWNDEF:
10521 default:
10522 dd_dev_err(ppd->dd, "invalid host_link_state 0x%x\n",
10523 ppd->host_link_state);
10524 return -1;
10525 }
10526}
10527
10528/*
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070010529 * driver_lstate - convert the driver's notion of a port's
Mike Marciniszyn77241052015-07-30 15:17:43 -040010530 * state (an HLS_*) into a logical state (a IB_PORT_*). Return -1
10531 * (converted to a u32) to indicate error.
10532 */
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070010533u32 driver_lstate(struct hfi1_pportdata *ppd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040010534{
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -070010535 if (ppd->host_link_state && (ppd->host_link_state & HLS_DOWN))
Mike Marciniszyn77241052015-07-30 15:17:43 -040010536 return IB_PORT_DOWN;
10537
10538 switch (ppd->host_link_state & HLS_UP) {
10539 case HLS_UP_INIT:
10540 return IB_PORT_INIT;
10541 case HLS_UP_ARMED:
10542 return IB_PORT_ARMED;
10543 case HLS_UP_ACTIVE:
10544 return IB_PORT_ACTIVE;
10545 default:
10546 dd_dev_err(ppd->dd, "invalid host_link_state 0x%x\n",
10547 ppd->host_link_state);
10548 return -1;
10549 }
10550}
10551
10552void set_link_down_reason(struct hfi1_pportdata *ppd, u8 lcl_reason,
10553 u8 neigh_reason, u8 rem_reason)
10554{
10555 if (ppd->local_link_down_reason.latest == 0 &&
10556 ppd->neigh_link_down_reason.latest == 0) {
10557 ppd->local_link_down_reason.latest = lcl_reason;
10558 ppd->neigh_link_down_reason.latest = neigh_reason;
10559 ppd->remote_link_down_reason = rem_reason;
10560 }
10561}
10562
10563/*
Alex Estrin5e2d6762017-07-24 07:46:36 -070010564 * Verify if BCT for data VLs is non-zero.
10565 */
10566static inline bool data_vls_operational(struct hfi1_pportdata *ppd)
10567{
10568 return !!ppd->actual_vls_operational;
10569}
10570
10571/*
Mike Marciniszyn77241052015-07-30 15:17:43 -040010572 * Change the physical and/or logical link state.
10573 *
10574 * Do not call this routine while inside an interrupt. It contains
10575 * calls to routines that can take multiple seconds to finish.
10576 *
10577 * Returns 0 on success, -errno on failure.
10578 */
10579int set_link_state(struct hfi1_pportdata *ppd, u32 state)
10580{
10581 struct hfi1_devdata *dd = ppd->dd;
10582 struct ib_event event = {.device = NULL};
10583 int ret1, ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010584 int orig_new_state, poll_bounce;
10585
10586 mutex_lock(&ppd->hls_lock);
10587
10588 orig_new_state = state;
10589 if (state == HLS_DN_DOWNDEF)
Ira Weiny156d24d2017-09-26 07:00:43 -070010590 state = HLS_DEFAULT;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010591
10592 /* interpret poll -> poll as a link bounce */
Jubin Johnd0d236e2016-02-14 20:20:15 -080010593 poll_bounce = ppd->host_link_state == HLS_DN_POLL &&
10594 state == HLS_DN_POLL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010595
10596 dd_dev_info(dd, "%s: current %s, new %s %s%s\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -080010597 link_state_name(ppd->host_link_state),
10598 link_state_name(orig_new_state),
10599 poll_bounce ? "(bounce) " : "",
10600 link_state_reason_name(ppd, state));
Mike Marciniszyn77241052015-07-30 15:17:43 -040010601
Mike Marciniszyn77241052015-07-30 15:17:43 -040010602 /*
10603 * If we're going to a (HLS_*) link state that implies the logical
10604 * link state is neither of (IB_PORT_ARMED, IB_PORT_ACTIVE), then
10605 * reset is_sm_config_started to 0.
10606 */
10607 if (!(state & (HLS_UP_ARMED | HLS_UP_ACTIVE)))
10608 ppd->is_sm_config_started = 0;
10609
10610 /*
10611 * Do nothing if the states match. Let a poll to poll link bounce
10612 * go through.
10613 */
10614 if (ppd->host_link_state == state && !poll_bounce)
10615 goto done;
10616
10617 switch (state) {
10618 case HLS_UP_INIT:
Jubin Johnd0d236e2016-02-14 20:20:15 -080010619 if (ppd->host_link_state == HLS_DN_POLL &&
10620 (quick_linkup || dd->icode == ICODE_FUNCTIONAL_SIMULATOR)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010621 /*
10622 * Quick link up jumps from polling to here.
10623 *
10624 * Whether in normal or loopback mode, the
10625 * simulator jumps from polling to link up.
10626 * Accept that here.
10627 */
Jubin John17fb4f22016-02-14 20:21:52 -080010628 /* OK */
Mike Marciniszyn77241052015-07-30 15:17:43 -040010629 } else if (ppd->host_link_state != HLS_GOING_UP) {
10630 goto unexpected;
10631 }
10632
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070010633 /*
10634 * Wait for Link_Up physical state.
10635 * Physical and Logical states should already be
10636 * be transitioned to LinkUp and LinkInit respectively.
10637 */
10638 ret = wait_physical_linkstate(ppd, PLS_LINKUP, 1000);
10639 if (ret) {
10640 dd_dev_err(dd,
10641 "%s: physical state did not change to LINK-UP\n",
10642 __func__);
10643 break;
10644 }
10645
Mike Marciniszyn77241052015-07-30 15:17:43 -040010646 ret = wait_logical_linkstate(ppd, IB_PORT_INIT, 1000);
10647 if (ret) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010648 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010649 "%s: logical state did not change to INIT\n",
10650 __func__);
Jan Sokolowski59ec8732017-07-24 07:46:18 -070010651 break;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010652 }
Jan Sokolowski59ec8732017-07-24 07:46:18 -070010653
10654 /* clear old transient LINKINIT_REASON code */
10655 if (ppd->linkinit_reason >= OPA_LINKINIT_REASON_CLEAR)
10656 ppd->linkinit_reason =
10657 OPA_LINKINIT_REASON_LINKUP;
10658
10659 /* enable the port */
10660 add_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
10661
10662 handle_linkup_change(dd, 1);
Kamenee Arumugam07190072018-02-01 10:52:28 -080010663
10664 /*
10665 * After link up, a new link width will have been set.
10666 * Update the xmit counters with regards to the new
10667 * link width.
10668 */
10669 update_xmit_counters(ppd, ppd->link_width_active);
10670
Jan Sokolowski59ec8732017-07-24 07:46:18 -070010671 ppd->host_link_state = HLS_UP_INIT;
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070010672 update_statusp(ppd, IB_PORT_INIT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010673 break;
10674 case HLS_UP_ARMED:
10675 if (ppd->host_link_state != HLS_UP_INIT)
10676 goto unexpected;
10677
Alex Estrin5e2d6762017-07-24 07:46:36 -070010678 if (!data_vls_operational(ppd)) {
10679 dd_dev_err(dd,
10680 "%s: data VLs not operational\n", __func__);
10681 ret = -EINVAL;
10682 break;
10683 }
10684
Mike Marciniszyn77241052015-07-30 15:17:43 -040010685 set_logical_state(dd, LSTATE_ARMED);
10686 ret = wait_logical_linkstate(ppd, IB_PORT_ARMED, 1000);
10687 if (ret) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010688 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010689 "%s: logical state did not change to ARMED\n",
10690 __func__);
Alex Estrin5efd40c2017-07-29 08:43:20 -070010691 break;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010692 }
Alex Estrin5efd40c2017-07-29 08:43:20 -070010693 ppd->host_link_state = HLS_UP_ARMED;
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070010694 update_statusp(ppd, IB_PORT_ARMED);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010695 /*
10696 * The simulator does not currently implement SMA messages,
10697 * so neighbor_normal is not set. Set it here when we first
10698 * move to Armed.
10699 */
10700 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR)
10701 ppd->neighbor_normal = 1;
10702 break;
10703 case HLS_UP_ACTIVE:
10704 if (ppd->host_link_state != HLS_UP_ARMED)
10705 goto unexpected;
10706
Mike Marciniszyn77241052015-07-30 15:17:43 -040010707 set_logical_state(dd, LSTATE_ACTIVE);
10708 ret = wait_logical_linkstate(ppd, IB_PORT_ACTIVE, 1000);
10709 if (ret) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010710 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010711 "%s: logical state did not change to ACTIVE\n",
10712 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010713 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010714 /* tell all engines to go running */
10715 sdma_all_running(dd);
Alex Estrin5efd40c2017-07-29 08:43:20 -070010716 ppd->host_link_state = HLS_UP_ACTIVE;
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070010717 update_statusp(ppd, IB_PORT_ACTIVE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010718
10719 /* Signal the IB layer that the port has went active */
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -080010720 event.device = &dd->verbs_dev.rdi.ibdev;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010721 event.element.port_num = ppd->port;
10722 event.event = IB_EVENT_PORT_ACTIVE;
10723 }
10724 break;
10725 case HLS_DN_POLL:
10726 if ((ppd->host_link_state == HLS_DN_DISABLE ||
10727 ppd->host_link_state == HLS_DN_OFFLINE) &&
10728 dd->dc_shutdown)
10729 dc_start(dd);
10730 /* Hand LED control to the DC */
10731 write_csr(dd, DCC_CFG_LED_CNTRL, 0);
10732
10733 if (ppd->host_link_state != HLS_DN_OFFLINE) {
10734 u8 tmp = ppd->link_enabled;
10735
10736 ret = goto_offline(ppd, ppd->remote_link_down_reason);
10737 if (ret) {
10738 ppd->link_enabled = tmp;
10739 break;
10740 }
10741 ppd->remote_link_down_reason = 0;
10742
10743 if (ppd->driver_link_ready)
10744 ppd->link_enabled = 1;
10745 }
10746
Jim Snowfb9036d2016-01-11 18:32:21 -050010747 set_all_slowpath(ppd->dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010748 ret = set_local_link_attributes(ppd);
10749 if (ret)
10750 break;
10751
10752 ppd->port_error_action = 0;
10753 ppd->host_link_state = HLS_DN_POLL;
10754
10755 if (quick_linkup) {
10756 /* quick linkup does not go into polling */
10757 ret = do_quick_linkup(dd);
10758 } else {
10759 ret1 = set_physical_link_state(dd, PLS_POLLING);
10760 if (ret1 != HCMD_SUCCESS) {
10761 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010762 "Failed to transition to Polling link state, return 0x%x\n",
10763 ret1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010764 ret = -EINVAL;
10765 }
10766 }
Bryan Morgana9c05e32016-02-03 14:30:49 -080010767 ppd->offline_disabled_reason =
10768 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010769 /*
10770 * If an error occurred above, go back to offline. The
10771 * caller may reschedule another attempt.
10772 */
10773 if (ret)
10774 goto_offline(ppd, 0);
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070010775 else
Jakub Byczkowskid392a672017-08-13 08:08:52 -070010776 log_physical_state(ppd, PLS_POLLING);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010777 break;
10778 case HLS_DN_DISABLE:
10779 /* link is disabled */
10780 ppd->link_enabled = 0;
10781
10782 /* allow any state to transition to disabled */
10783
10784 /* must transition to offline first */
10785 if (ppd->host_link_state != HLS_DN_OFFLINE) {
10786 ret = goto_offline(ppd, ppd->remote_link_down_reason);
10787 if (ret)
10788 break;
10789 ppd->remote_link_down_reason = 0;
10790 }
10791
Michael J. Ruhldb069ec2017-02-08 05:28:13 -080010792 if (!dd->dc_shutdown) {
10793 ret1 = set_physical_link_state(dd, PLS_DISABLED);
10794 if (ret1 != HCMD_SUCCESS) {
10795 dd_dev_err(dd,
10796 "Failed to transition to Disabled link state, return 0x%x\n",
10797 ret1);
10798 ret = -EINVAL;
10799 break;
10800 }
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070010801 ret = wait_physical_linkstate(ppd, PLS_DISABLED, 10000);
10802 if (ret) {
10803 dd_dev_err(dd,
10804 "%s: physical state did not change to DISABLED\n",
10805 __func__);
10806 break;
10807 }
Michael J. Ruhldb069ec2017-02-08 05:28:13 -080010808 dc_shutdown(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010809 }
10810 ppd->host_link_state = HLS_DN_DISABLE;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010811 break;
10812 case HLS_DN_OFFLINE:
10813 if (ppd->host_link_state == HLS_DN_DISABLE)
10814 dc_start(dd);
10815
10816 /* allow any state to transition to offline */
10817 ret = goto_offline(ppd, ppd->remote_link_down_reason);
10818 if (!ret)
10819 ppd->remote_link_down_reason = 0;
10820 break;
10821 case HLS_VERIFY_CAP:
10822 if (ppd->host_link_state != HLS_DN_POLL)
10823 goto unexpected;
10824 ppd->host_link_state = HLS_VERIFY_CAP;
Jakub Byczkowskid392a672017-08-13 08:08:52 -070010825 log_physical_state(ppd, PLS_CONFIGPHY_VERIFYCAP);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010826 break;
10827 case HLS_GOING_UP:
10828 if (ppd->host_link_state != HLS_VERIFY_CAP)
10829 goto unexpected;
10830
10831 ret1 = set_physical_link_state(dd, PLS_LINKUP);
10832 if (ret1 != HCMD_SUCCESS) {
10833 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010834 "Failed to transition to link up state, return 0x%x\n",
10835 ret1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010836 ret = -EINVAL;
10837 break;
10838 }
10839 ppd->host_link_state = HLS_GOING_UP;
10840 break;
10841
10842 case HLS_GOING_OFFLINE: /* transient within goto_offline() */
10843 case HLS_LINK_COOLDOWN: /* transient within goto_offline() */
10844 default:
10845 dd_dev_info(dd, "%s: state 0x%x: not supported\n",
Jubin John17fb4f22016-02-14 20:21:52 -080010846 __func__, state);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010847 ret = -EINVAL;
10848 break;
10849 }
10850
Mike Marciniszyn77241052015-07-30 15:17:43 -040010851 goto done;
10852
10853unexpected:
10854 dd_dev_err(dd, "%s: unexpected state transition from %s to %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -080010855 __func__, link_state_name(ppd->host_link_state),
10856 link_state_name(state));
Mike Marciniszyn77241052015-07-30 15:17:43 -040010857 ret = -EINVAL;
10858
10859done:
10860 mutex_unlock(&ppd->hls_lock);
10861
10862 if (event.device)
10863 ib_dispatch_event(&event);
10864
10865 return ret;
10866}
10867
10868int hfi1_set_ib_cfg(struct hfi1_pportdata *ppd, int which, u32 val)
10869{
10870 u64 reg;
10871 int ret = 0;
10872
10873 switch (which) {
10874 case HFI1_IB_CFG_LIDLMC:
10875 set_lidlmc(ppd);
10876 break;
10877 case HFI1_IB_CFG_VL_HIGH_LIMIT:
10878 /*
10879 * The VL Arbitrator high limit is sent in units of 4k
10880 * bytes, while HFI stores it in units of 64 bytes.
10881 */
Jubin John8638b772016-02-14 20:19:24 -080010882 val *= 4096 / 64;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010883 reg = ((u64)val & SEND_HIGH_PRIORITY_LIMIT_LIMIT_MASK)
10884 << SEND_HIGH_PRIORITY_LIMIT_LIMIT_SHIFT;
10885 write_csr(ppd->dd, SEND_HIGH_PRIORITY_LIMIT, reg);
10886 break;
10887 case HFI1_IB_CFG_LINKDEFAULT: /* IB link default (sleep/poll) */
10888 /* HFI only supports POLL as the default link down state */
10889 if (val != HLS_DN_POLL)
10890 ret = -EINVAL;
10891 break;
10892 case HFI1_IB_CFG_OP_VLS:
10893 if (ppd->vls_operational != val) {
10894 ppd->vls_operational = val;
10895 if (!ppd->port)
10896 ret = -EINVAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010897 }
10898 break;
10899 /*
10900 * For link width, link width downgrade, and speed enable, always AND
10901 * the setting with what is actually supported. This has two benefits.
10902 * First, enabled can't have unsupported values, no matter what the
10903 * SM or FM might want. Second, the ALL_SUPPORTED wildcards that mean
10904 * "fill in with your supported value" have all the bits in the
10905 * field set, so simply ANDing with supported has the desired result.
10906 */
10907 case HFI1_IB_CFG_LWID_ENB: /* set allowed Link-width */
10908 ppd->link_width_enabled = val & ppd->link_width_supported;
10909 break;
10910 case HFI1_IB_CFG_LWID_DG_ENB: /* set allowed link width downgrade */
10911 ppd->link_width_downgrade_enabled =
10912 val & ppd->link_width_downgrade_supported;
10913 break;
10914 case HFI1_IB_CFG_SPD_ENB: /* allowed Link speeds */
10915 ppd->link_speed_enabled = val & ppd->link_speed_supported;
10916 break;
10917 case HFI1_IB_CFG_OVERRUN_THRESH: /* IB overrun threshold */
10918 /*
10919 * HFI does not follow IB specs, save this value
10920 * so we can report it, if asked.
10921 */
10922 ppd->overrun_threshold = val;
10923 break;
10924 case HFI1_IB_CFG_PHYERR_THRESH: /* IB PHY error threshold */
10925 /*
10926 * HFI does not follow IB specs, save this value
10927 * so we can report it, if asked.
10928 */
10929 ppd->phy_error_threshold = val;
10930 break;
10931
10932 case HFI1_IB_CFG_MTU:
10933 set_send_length(ppd);
10934 break;
10935
10936 case HFI1_IB_CFG_PKEYS:
10937 if (HFI1_CAP_IS_KSET(PKEY_CHECK))
10938 set_partition_keys(ppd);
10939 break;
10940
10941 default:
10942 if (HFI1_CAP_IS_KSET(PRINT_UNIMPL))
10943 dd_dev_info(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010944 "%s: which %s, val 0x%x: not implemented\n",
10945 __func__, ib_cfg_name(which), val);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010946 break;
10947 }
10948 return ret;
10949}
10950
10951/* begin functions related to vl arbitration table caching */
10952static void init_vl_arb_caches(struct hfi1_pportdata *ppd)
10953{
10954 int i;
10955
10956 BUILD_BUG_ON(VL_ARB_TABLE_SIZE !=
10957 VL_ARB_LOW_PRIO_TABLE_SIZE);
10958 BUILD_BUG_ON(VL_ARB_TABLE_SIZE !=
10959 VL_ARB_HIGH_PRIO_TABLE_SIZE);
10960
10961 /*
10962 * Note that we always return values directly from the
10963 * 'vl_arb_cache' (and do no CSR reads) in response to a
10964 * 'Get(VLArbTable)'. This is obviously correct after a
10965 * 'Set(VLArbTable)', since the cache will then be up to
10966 * date. But it's also correct prior to any 'Set(VLArbTable)'
10967 * since then both the cache, and the relevant h/w registers
10968 * will be zeroed.
10969 */
10970
10971 for (i = 0; i < MAX_PRIO_TABLE; i++)
10972 spin_lock_init(&ppd->vl_arb_cache[i].lock);
10973}
10974
10975/*
10976 * vl_arb_lock_cache
10977 *
10978 * All other vl_arb_* functions should be called only after locking
10979 * the cache.
10980 */
10981static inline struct vl_arb_cache *
10982vl_arb_lock_cache(struct hfi1_pportdata *ppd, int idx)
10983{
10984 if (idx != LO_PRIO_TABLE && idx != HI_PRIO_TABLE)
10985 return NULL;
10986 spin_lock(&ppd->vl_arb_cache[idx].lock);
10987 return &ppd->vl_arb_cache[idx];
10988}
10989
10990static inline void vl_arb_unlock_cache(struct hfi1_pportdata *ppd, int idx)
10991{
10992 spin_unlock(&ppd->vl_arb_cache[idx].lock);
10993}
10994
10995static void vl_arb_get_cache(struct vl_arb_cache *cache,
10996 struct ib_vl_weight_elem *vl)
10997{
10998 memcpy(vl, cache->table, VL_ARB_TABLE_SIZE * sizeof(*vl));
10999}
11000
11001static void vl_arb_set_cache(struct vl_arb_cache *cache,
11002 struct ib_vl_weight_elem *vl)
11003{
11004 memcpy(cache->table, vl, VL_ARB_TABLE_SIZE * sizeof(*vl));
11005}
11006
11007static int vl_arb_match_cache(struct vl_arb_cache *cache,
11008 struct ib_vl_weight_elem *vl)
11009{
11010 return !memcmp(cache->table, vl, VL_ARB_TABLE_SIZE * sizeof(*vl));
11011}
Jubin Johnf4d507c2016-02-14 20:20:25 -080011012
Mike Marciniszyn77241052015-07-30 15:17:43 -040011013/* end functions related to vl arbitration table caching */
11014
11015static int set_vl_weights(struct hfi1_pportdata *ppd, u32 target,
11016 u32 size, struct ib_vl_weight_elem *vl)
11017{
11018 struct hfi1_devdata *dd = ppd->dd;
11019 u64 reg;
11020 unsigned int i, is_up = 0;
11021 int drain, ret = 0;
11022
11023 mutex_lock(&ppd->hls_lock);
11024
11025 if (ppd->host_link_state & HLS_UP)
11026 is_up = 1;
11027
11028 drain = !is_ax(dd) && is_up;
11029
11030 if (drain)
11031 /*
11032 * Before adjusting VL arbitration weights, empty per-VL
11033 * FIFOs, otherwise a packet whose VL weight is being
11034 * set to 0 could get stuck in a FIFO with no chance to
11035 * egress.
11036 */
11037 ret = stop_drain_data_vls(dd);
11038
11039 if (ret) {
11040 dd_dev_err(
11041 dd,
11042 "%s: cannot stop/drain VLs - refusing to change VL arbitration weights\n",
11043 __func__);
11044 goto err;
11045 }
11046
11047 for (i = 0; i < size; i++, vl++) {
11048 /*
11049 * NOTE: The low priority shift and mask are used here, but
11050 * they are the same for both the low and high registers.
11051 */
11052 reg = (((u64)vl->vl & SEND_LOW_PRIORITY_LIST_VL_MASK)
11053 << SEND_LOW_PRIORITY_LIST_VL_SHIFT)
11054 | (((u64)vl->weight
11055 & SEND_LOW_PRIORITY_LIST_WEIGHT_MASK)
11056 << SEND_LOW_PRIORITY_LIST_WEIGHT_SHIFT);
11057 write_csr(dd, target + (i * 8), reg);
11058 }
11059 pio_send_control(dd, PSC_GLOBAL_VLARB_ENABLE);
11060
11061 if (drain)
11062 open_fill_data_vls(dd); /* reopen all VLs */
11063
11064err:
11065 mutex_unlock(&ppd->hls_lock);
11066
11067 return ret;
11068}
11069
11070/*
11071 * Read one credit merge VL register.
11072 */
11073static void read_one_cm_vl(struct hfi1_devdata *dd, u32 csr,
11074 struct vl_limit *vll)
11075{
11076 u64 reg = read_csr(dd, csr);
11077
11078 vll->dedicated = cpu_to_be16(
11079 (reg >> SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_SHIFT)
11080 & SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_MASK);
11081 vll->shared = cpu_to_be16(
11082 (reg >> SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_SHIFT)
11083 & SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_MASK);
11084}
11085
11086/*
11087 * Read the current credit merge limits.
11088 */
11089static int get_buffer_control(struct hfi1_devdata *dd,
11090 struct buffer_control *bc, u16 *overall_limit)
11091{
11092 u64 reg;
11093 int i;
11094
11095 /* not all entries are filled in */
11096 memset(bc, 0, sizeof(*bc));
11097
11098 /* OPA and HFI have a 1-1 mapping */
11099 for (i = 0; i < TXE_NUM_DATA_VL; i++)
Jubin John8638b772016-02-14 20:19:24 -080011100 read_one_cm_vl(dd, SEND_CM_CREDIT_VL + (8 * i), &bc->vl[i]);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011101
11102 /* NOTE: assumes that VL* and VL15 CSRs are bit-wise identical */
11103 read_one_cm_vl(dd, SEND_CM_CREDIT_VL15, &bc->vl[15]);
11104
11105 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
11106 bc->overall_shared_limit = cpu_to_be16(
11107 (reg >> SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SHIFT)
11108 & SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_MASK);
11109 if (overall_limit)
11110 *overall_limit = (reg
11111 >> SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SHIFT)
11112 & SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_MASK;
11113 return sizeof(struct buffer_control);
11114}
11115
11116static int get_sc2vlnt(struct hfi1_devdata *dd, struct sc2vlnt *dp)
11117{
11118 u64 reg;
11119 int i;
11120
11121 /* each register contains 16 SC->VLnt mappings, 4 bits each */
11122 reg = read_csr(dd, DCC_CFG_SC_VL_TABLE_15_0);
11123 for (i = 0; i < sizeof(u64); i++) {
11124 u8 byte = *(((u8 *)&reg) + i);
11125
11126 dp->vlnt[2 * i] = byte & 0xf;
11127 dp->vlnt[(2 * i) + 1] = (byte & 0xf0) >> 4;
11128 }
11129
11130 reg = read_csr(dd, DCC_CFG_SC_VL_TABLE_31_16);
11131 for (i = 0; i < sizeof(u64); i++) {
11132 u8 byte = *(((u8 *)&reg) + i);
11133
11134 dp->vlnt[16 + (2 * i)] = byte & 0xf;
11135 dp->vlnt[16 + (2 * i) + 1] = (byte & 0xf0) >> 4;
11136 }
11137 return sizeof(struct sc2vlnt);
11138}
11139
11140static void get_vlarb_preempt(struct hfi1_devdata *dd, u32 nelems,
11141 struct ib_vl_weight_elem *vl)
11142{
11143 unsigned int i;
11144
11145 for (i = 0; i < nelems; i++, vl++) {
11146 vl->vl = 0xf;
11147 vl->weight = 0;
11148 }
11149}
11150
11151static void set_sc2vlnt(struct hfi1_devdata *dd, struct sc2vlnt *dp)
11152{
11153 write_csr(dd, DCC_CFG_SC_VL_TABLE_15_0,
Jubin John17fb4f22016-02-14 20:21:52 -080011154 DC_SC_VL_VAL(15_0,
11155 0, dp->vlnt[0] & 0xf,
11156 1, dp->vlnt[1] & 0xf,
11157 2, dp->vlnt[2] & 0xf,
11158 3, dp->vlnt[3] & 0xf,
11159 4, dp->vlnt[4] & 0xf,
11160 5, dp->vlnt[5] & 0xf,
11161 6, dp->vlnt[6] & 0xf,
11162 7, dp->vlnt[7] & 0xf,
11163 8, dp->vlnt[8] & 0xf,
11164 9, dp->vlnt[9] & 0xf,
11165 10, dp->vlnt[10] & 0xf,
11166 11, dp->vlnt[11] & 0xf,
11167 12, dp->vlnt[12] & 0xf,
11168 13, dp->vlnt[13] & 0xf,
11169 14, dp->vlnt[14] & 0xf,
11170 15, dp->vlnt[15] & 0xf));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011171 write_csr(dd, DCC_CFG_SC_VL_TABLE_31_16,
Jubin John17fb4f22016-02-14 20:21:52 -080011172 DC_SC_VL_VAL(31_16,
11173 16, dp->vlnt[16] & 0xf,
11174 17, dp->vlnt[17] & 0xf,
11175 18, dp->vlnt[18] & 0xf,
11176 19, dp->vlnt[19] & 0xf,
11177 20, dp->vlnt[20] & 0xf,
11178 21, dp->vlnt[21] & 0xf,
11179 22, dp->vlnt[22] & 0xf,
11180 23, dp->vlnt[23] & 0xf,
11181 24, dp->vlnt[24] & 0xf,
11182 25, dp->vlnt[25] & 0xf,
11183 26, dp->vlnt[26] & 0xf,
11184 27, dp->vlnt[27] & 0xf,
11185 28, dp->vlnt[28] & 0xf,
11186 29, dp->vlnt[29] & 0xf,
11187 30, dp->vlnt[30] & 0xf,
11188 31, dp->vlnt[31] & 0xf));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011189}
11190
11191static void nonzero_msg(struct hfi1_devdata *dd, int idx, const char *what,
11192 u16 limit)
11193{
11194 if (limit != 0)
11195 dd_dev_info(dd, "Invalid %s limit %d on VL %d, ignoring\n",
Jubin John17fb4f22016-02-14 20:21:52 -080011196 what, (int)limit, idx);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011197}
11198
11199/* change only the shared limit portion of SendCmGLobalCredit */
11200static void set_global_shared(struct hfi1_devdata *dd, u16 limit)
11201{
11202 u64 reg;
11203
11204 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
11205 reg &= ~SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SMASK;
11206 reg |= (u64)limit << SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SHIFT;
11207 write_csr(dd, SEND_CM_GLOBAL_CREDIT, reg);
11208}
11209
11210/* change only the total credit limit portion of SendCmGLobalCredit */
11211static void set_global_limit(struct hfi1_devdata *dd, u16 limit)
11212{
11213 u64 reg;
11214
11215 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
11216 reg &= ~SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SMASK;
11217 reg |= (u64)limit << SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SHIFT;
11218 write_csr(dd, SEND_CM_GLOBAL_CREDIT, reg);
11219}
11220
11221/* set the given per-VL shared limit */
11222static void set_vl_shared(struct hfi1_devdata *dd, int vl, u16 limit)
11223{
11224 u64 reg;
11225 u32 addr;
11226
11227 if (vl < TXE_NUM_DATA_VL)
11228 addr = SEND_CM_CREDIT_VL + (8 * vl);
11229 else
11230 addr = SEND_CM_CREDIT_VL15;
11231
11232 reg = read_csr(dd, addr);
11233 reg &= ~SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_SMASK;
11234 reg |= (u64)limit << SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_SHIFT;
11235 write_csr(dd, addr, reg);
11236}
11237
11238/* set the given per-VL dedicated limit */
11239static void set_vl_dedicated(struct hfi1_devdata *dd, int vl, u16 limit)
11240{
11241 u64 reg;
11242 u32 addr;
11243
11244 if (vl < TXE_NUM_DATA_VL)
11245 addr = SEND_CM_CREDIT_VL + (8 * vl);
11246 else
11247 addr = SEND_CM_CREDIT_VL15;
11248
11249 reg = read_csr(dd, addr);
11250 reg &= ~SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_SMASK;
11251 reg |= (u64)limit << SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_SHIFT;
11252 write_csr(dd, addr, reg);
11253}
11254
11255/* spin until the given per-VL status mask bits clear */
11256static void wait_for_vl_status_clear(struct hfi1_devdata *dd, u64 mask,
11257 const char *which)
11258{
11259 unsigned long timeout;
11260 u64 reg;
11261
11262 timeout = jiffies + msecs_to_jiffies(VL_STATUS_CLEAR_TIMEOUT);
11263 while (1) {
11264 reg = read_csr(dd, SEND_CM_CREDIT_USED_STATUS) & mask;
11265
11266 if (reg == 0)
11267 return; /* success */
11268 if (time_after(jiffies, timeout))
11269 break; /* timed out */
11270 udelay(1);
11271 }
11272
11273 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080011274 "%s credit change status not clearing after %dms, mask 0x%llx, not clear 0x%llx\n",
11275 which, VL_STATUS_CLEAR_TIMEOUT, mask, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011276 /*
11277 * If this occurs, it is likely there was a credit loss on the link.
11278 * The only recovery from that is a link bounce.
11279 */
11280 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080011281 "Continuing anyway. A credit loss may occur. Suggest a link bounce\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -040011282}
11283
11284/*
11285 * The number of credits on the VLs may be changed while everything
11286 * is "live", but the following algorithm must be followed due to
11287 * how the hardware is actually implemented. In particular,
11288 * Return_Credit_Status[] is the only correct status check.
11289 *
11290 * if (reducing Global_Shared_Credit_Limit or any shared limit changing)
11291 * set Global_Shared_Credit_Limit = 0
11292 * use_all_vl = 1
11293 * mask0 = all VLs that are changing either dedicated or shared limits
11294 * set Shared_Limit[mask0] = 0
11295 * spin until Return_Credit_Status[use_all_vl ? all VL : mask0] == 0
11296 * if (changing any dedicated limit)
11297 * mask1 = all VLs that are lowering dedicated limits
11298 * lower Dedicated_Limit[mask1]
11299 * spin until Return_Credit_Status[mask1] == 0
11300 * raise Dedicated_Limits
11301 * raise Shared_Limits
11302 * raise Global_Shared_Credit_Limit
11303 *
11304 * lower = if the new limit is lower, set the limit to the new value
11305 * raise = if the new limit is higher than the current value (may be changed
11306 * earlier in the algorithm), set the new limit to the new value
11307 */
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011308int set_buffer_control(struct hfi1_pportdata *ppd,
11309 struct buffer_control *new_bc)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011310{
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011311 struct hfi1_devdata *dd = ppd->dd;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011312 u64 changing_mask, ld_mask, stat_mask;
11313 int change_count;
11314 int i, use_all_mask;
11315 int this_shared_changing;
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011316 int vl_count = 0, ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011317 /*
11318 * A0: add the variable any_shared_limit_changing below and in the
11319 * algorithm above. If removing A0 support, it can be removed.
11320 */
11321 int any_shared_limit_changing;
11322 struct buffer_control cur_bc;
11323 u8 changing[OPA_MAX_VLS];
11324 u8 lowering_dedicated[OPA_MAX_VLS];
11325 u16 cur_total;
11326 u32 new_total = 0;
11327 const u64 all_mask =
11328 SEND_CM_CREDIT_USED_STATUS_VL0_RETURN_CREDIT_STATUS_SMASK
11329 | SEND_CM_CREDIT_USED_STATUS_VL1_RETURN_CREDIT_STATUS_SMASK
11330 | SEND_CM_CREDIT_USED_STATUS_VL2_RETURN_CREDIT_STATUS_SMASK
11331 | SEND_CM_CREDIT_USED_STATUS_VL3_RETURN_CREDIT_STATUS_SMASK
11332 | SEND_CM_CREDIT_USED_STATUS_VL4_RETURN_CREDIT_STATUS_SMASK
11333 | SEND_CM_CREDIT_USED_STATUS_VL5_RETURN_CREDIT_STATUS_SMASK
11334 | SEND_CM_CREDIT_USED_STATUS_VL6_RETURN_CREDIT_STATUS_SMASK
11335 | SEND_CM_CREDIT_USED_STATUS_VL7_RETURN_CREDIT_STATUS_SMASK
11336 | SEND_CM_CREDIT_USED_STATUS_VL15_RETURN_CREDIT_STATUS_SMASK;
11337
11338#define valid_vl(idx) ((idx) < TXE_NUM_DATA_VL || (idx) == 15)
11339#define NUM_USABLE_VLS 16 /* look at VL15 and less */
11340
Mike Marciniszyn77241052015-07-30 15:17:43 -040011341 /* find the new total credits, do sanity check on unused VLs */
11342 for (i = 0; i < OPA_MAX_VLS; i++) {
11343 if (valid_vl(i)) {
11344 new_total += be16_to_cpu(new_bc->vl[i].dedicated);
11345 continue;
11346 }
11347 nonzero_msg(dd, i, "dedicated",
Jubin John17fb4f22016-02-14 20:21:52 -080011348 be16_to_cpu(new_bc->vl[i].dedicated));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011349 nonzero_msg(dd, i, "shared",
Jubin John17fb4f22016-02-14 20:21:52 -080011350 be16_to_cpu(new_bc->vl[i].shared));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011351 new_bc->vl[i].dedicated = 0;
11352 new_bc->vl[i].shared = 0;
11353 }
11354 new_total += be16_to_cpu(new_bc->overall_shared_limit);
Dean Luickbff14bb2015-12-17 19:24:13 -050011355
Mike Marciniszyn77241052015-07-30 15:17:43 -040011356 /* fetch the current values */
11357 get_buffer_control(dd, &cur_bc, &cur_total);
11358
11359 /*
11360 * Create the masks we will use.
11361 */
11362 memset(changing, 0, sizeof(changing));
11363 memset(lowering_dedicated, 0, sizeof(lowering_dedicated));
Jubin John4d114fd2016-02-14 20:21:43 -080011364 /*
11365 * NOTE: Assumes that the individual VL bits are adjacent and in
11366 * increasing order
11367 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040011368 stat_mask =
11369 SEND_CM_CREDIT_USED_STATUS_VL0_RETURN_CREDIT_STATUS_SMASK;
11370 changing_mask = 0;
11371 ld_mask = 0;
11372 change_count = 0;
11373 any_shared_limit_changing = 0;
11374 for (i = 0; i < NUM_USABLE_VLS; i++, stat_mask <<= 1) {
11375 if (!valid_vl(i))
11376 continue;
11377 this_shared_changing = new_bc->vl[i].shared
11378 != cur_bc.vl[i].shared;
11379 if (this_shared_changing)
11380 any_shared_limit_changing = 1;
Jubin Johnd0d236e2016-02-14 20:20:15 -080011381 if (new_bc->vl[i].dedicated != cur_bc.vl[i].dedicated ||
11382 this_shared_changing) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011383 changing[i] = 1;
11384 changing_mask |= stat_mask;
11385 change_count++;
11386 }
11387 if (be16_to_cpu(new_bc->vl[i].dedicated) <
11388 be16_to_cpu(cur_bc.vl[i].dedicated)) {
11389 lowering_dedicated[i] = 1;
11390 ld_mask |= stat_mask;
11391 }
11392 }
11393
11394 /* bracket the credit change with a total adjustment */
11395 if (new_total > cur_total)
11396 set_global_limit(dd, new_total);
11397
11398 /*
11399 * Start the credit change algorithm.
11400 */
11401 use_all_mask = 0;
11402 if ((be16_to_cpu(new_bc->overall_shared_limit) <
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050011403 be16_to_cpu(cur_bc.overall_shared_limit)) ||
11404 (is_ax(dd) && any_shared_limit_changing)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011405 set_global_shared(dd, 0);
11406 cur_bc.overall_shared_limit = 0;
11407 use_all_mask = 1;
11408 }
11409
11410 for (i = 0; i < NUM_USABLE_VLS; i++) {
11411 if (!valid_vl(i))
11412 continue;
11413
11414 if (changing[i]) {
11415 set_vl_shared(dd, i, 0);
11416 cur_bc.vl[i].shared = 0;
11417 }
11418 }
11419
11420 wait_for_vl_status_clear(dd, use_all_mask ? all_mask : changing_mask,
Jubin John17fb4f22016-02-14 20:21:52 -080011421 "shared");
Mike Marciniszyn77241052015-07-30 15:17:43 -040011422
11423 if (change_count > 0) {
11424 for (i = 0; i < NUM_USABLE_VLS; i++) {
11425 if (!valid_vl(i))
11426 continue;
11427
11428 if (lowering_dedicated[i]) {
11429 set_vl_dedicated(dd, i,
Jubin John17fb4f22016-02-14 20:21:52 -080011430 be16_to_cpu(new_bc->
11431 vl[i].dedicated));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011432 cur_bc.vl[i].dedicated =
11433 new_bc->vl[i].dedicated;
11434 }
11435 }
11436
11437 wait_for_vl_status_clear(dd, ld_mask, "dedicated");
11438
11439 /* now raise all dedicated that are going up */
11440 for (i = 0; i < NUM_USABLE_VLS; i++) {
11441 if (!valid_vl(i))
11442 continue;
11443
11444 if (be16_to_cpu(new_bc->vl[i].dedicated) >
11445 be16_to_cpu(cur_bc.vl[i].dedicated))
11446 set_vl_dedicated(dd, i,
Jubin John17fb4f22016-02-14 20:21:52 -080011447 be16_to_cpu(new_bc->
11448 vl[i].dedicated));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011449 }
11450 }
11451
11452 /* next raise all shared that are going up */
11453 for (i = 0; i < NUM_USABLE_VLS; i++) {
11454 if (!valid_vl(i))
11455 continue;
11456
11457 if (be16_to_cpu(new_bc->vl[i].shared) >
11458 be16_to_cpu(cur_bc.vl[i].shared))
11459 set_vl_shared(dd, i, be16_to_cpu(new_bc->vl[i].shared));
11460 }
11461
11462 /* finally raise the global shared */
11463 if (be16_to_cpu(new_bc->overall_shared_limit) >
Jubin John17fb4f22016-02-14 20:21:52 -080011464 be16_to_cpu(cur_bc.overall_shared_limit))
Mike Marciniszyn77241052015-07-30 15:17:43 -040011465 set_global_shared(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080011466 be16_to_cpu(new_bc->overall_shared_limit));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011467
11468 /* bracket the credit change with a total adjustment */
11469 if (new_total < cur_total)
11470 set_global_limit(dd, new_total);
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011471
11472 /*
11473 * Determine the actual number of operational VLS using the number of
11474 * dedicated and shared credits for each VL.
11475 */
11476 if (change_count > 0) {
11477 for (i = 0; i < TXE_NUM_DATA_VL; i++)
11478 if (be16_to_cpu(new_bc->vl[i].dedicated) > 0 ||
11479 be16_to_cpu(new_bc->vl[i].shared) > 0)
11480 vl_count++;
11481 ppd->actual_vls_operational = vl_count;
11482 ret = sdma_map_init(dd, ppd->port - 1, vl_count ?
11483 ppd->actual_vls_operational :
11484 ppd->vls_operational,
11485 NULL);
11486 if (ret == 0)
11487 ret = pio_map_init(dd, ppd->port - 1, vl_count ?
11488 ppd->actual_vls_operational :
11489 ppd->vls_operational, NULL);
11490 if (ret)
11491 return ret;
11492 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040011493 return 0;
11494}
11495
11496/*
11497 * Read the given fabric manager table. Return the size of the
11498 * table (in bytes) on success, and a negative error code on
11499 * failure.
11500 */
11501int fm_get_table(struct hfi1_pportdata *ppd, int which, void *t)
11502
11503{
11504 int size;
11505 struct vl_arb_cache *vlc;
11506
11507 switch (which) {
11508 case FM_TBL_VL_HIGH_ARB:
11509 size = 256;
11510 /*
11511 * OPA specifies 128 elements (of 2 bytes each), though
11512 * HFI supports only 16 elements in h/w.
11513 */
11514 vlc = vl_arb_lock_cache(ppd, HI_PRIO_TABLE);
11515 vl_arb_get_cache(vlc, t);
11516 vl_arb_unlock_cache(ppd, HI_PRIO_TABLE);
11517 break;
11518 case FM_TBL_VL_LOW_ARB:
11519 size = 256;
11520 /*
11521 * OPA specifies 128 elements (of 2 bytes each), though
11522 * HFI supports only 16 elements in h/w.
11523 */
11524 vlc = vl_arb_lock_cache(ppd, LO_PRIO_TABLE);
11525 vl_arb_get_cache(vlc, t);
11526 vl_arb_unlock_cache(ppd, LO_PRIO_TABLE);
11527 break;
11528 case FM_TBL_BUFFER_CONTROL:
11529 size = get_buffer_control(ppd->dd, t, NULL);
11530 break;
11531 case FM_TBL_SC2VLNT:
11532 size = get_sc2vlnt(ppd->dd, t);
11533 break;
11534 case FM_TBL_VL_PREEMPT_ELEMS:
11535 size = 256;
11536 /* OPA specifies 128 elements, of 2 bytes each */
11537 get_vlarb_preempt(ppd->dd, OPA_MAX_VLS, t);
11538 break;
11539 case FM_TBL_VL_PREEMPT_MATRIX:
11540 size = 256;
11541 /*
11542 * OPA specifies that this is the same size as the VL
11543 * arbitration tables (i.e., 256 bytes).
11544 */
11545 break;
11546 default:
11547 return -EINVAL;
11548 }
11549 return size;
11550}
11551
11552/*
11553 * Write the given fabric manager table.
11554 */
11555int fm_set_table(struct hfi1_pportdata *ppd, int which, void *t)
11556{
11557 int ret = 0;
11558 struct vl_arb_cache *vlc;
11559
11560 switch (which) {
11561 case FM_TBL_VL_HIGH_ARB:
11562 vlc = vl_arb_lock_cache(ppd, HI_PRIO_TABLE);
11563 if (vl_arb_match_cache(vlc, t)) {
11564 vl_arb_unlock_cache(ppd, HI_PRIO_TABLE);
11565 break;
11566 }
11567 vl_arb_set_cache(vlc, t);
11568 vl_arb_unlock_cache(ppd, HI_PRIO_TABLE);
11569 ret = set_vl_weights(ppd, SEND_HIGH_PRIORITY_LIST,
11570 VL_ARB_HIGH_PRIO_TABLE_SIZE, t);
11571 break;
11572 case FM_TBL_VL_LOW_ARB:
11573 vlc = vl_arb_lock_cache(ppd, LO_PRIO_TABLE);
11574 if (vl_arb_match_cache(vlc, t)) {
11575 vl_arb_unlock_cache(ppd, LO_PRIO_TABLE);
11576 break;
11577 }
11578 vl_arb_set_cache(vlc, t);
11579 vl_arb_unlock_cache(ppd, LO_PRIO_TABLE);
11580 ret = set_vl_weights(ppd, SEND_LOW_PRIORITY_LIST,
11581 VL_ARB_LOW_PRIO_TABLE_SIZE, t);
11582 break;
11583 case FM_TBL_BUFFER_CONTROL:
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011584 ret = set_buffer_control(ppd, t);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011585 break;
11586 case FM_TBL_SC2VLNT:
11587 set_sc2vlnt(ppd->dd, t);
11588 break;
11589 default:
11590 ret = -EINVAL;
11591 }
11592 return ret;
11593}
11594
11595/*
11596 * Disable all data VLs.
11597 *
11598 * Return 0 if disabled, non-zero if the VLs cannot be disabled.
11599 */
11600static int disable_data_vls(struct hfi1_devdata *dd)
11601{
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050011602 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -040011603 return 1;
11604
11605 pio_send_control(dd, PSC_DATA_VL_DISABLE);
11606
11607 return 0;
11608}
11609
11610/*
11611 * open_fill_data_vls() - the counterpart to stop_drain_data_vls().
11612 * Just re-enables all data VLs (the "fill" part happens
11613 * automatically - the name was chosen for symmetry with
11614 * stop_drain_data_vls()).
11615 *
11616 * Return 0 if successful, non-zero if the VLs cannot be enabled.
11617 */
11618int open_fill_data_vls(struct hfi1_devdata *dd)
11619{
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050011620 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -040011621 return 1;
11622
11623 pio_send_control(dd, PSC_DATA_VL_ENABLE);
11624
11625 return 0;
11626}
11627
11628/*
11629 * drain_data_vls() - assumes that disable_data_vls() has been called,
11630 * wait for occupancy (of per-VL FIFOs) for all contexts, and SDMA
11631 * engines to drop to 0.
11632 */
11633static void drain_data_vls(struct hfi1_devdata *dd)
11634{
11635 sc_wait(dd);
11636 sdma_wait(dd);
11637 pause_for_credit_return(dd);
11638}
11639
11640/*
11641 * stop_drain_data_vls() - disable, then drain all per-VL fifos.
11642 *
11643 * Use open_fill_data_vls() to resume using data VLs. This pair is
11644 * meant to be used like this:
11645 *
11646 * stop_drain_data_vls(dd);
11647 * // do things with per-VL resources
11648 * open_fill_data_vls(dd);
11649 */
11650int stop_drain_data_vls(struct hfi1_devdata *dd)
11651{
11652 int ret;
11653
11654 ret = disable_data_vls(dd);
11655 if (ret == 0)
11656 drain_data_vls(dd);
11657
11658 return ret;
11659}
11660
11661/*
11662 * Convert a nanosecond time to a cclock count. No matter how slow
11663 * the cclock, a non-zero ns will always have a non-zero result.
11664 */
11665u32 ns_to_cclock(struct hfi1_devdata *dd, u32 ns)
11666{
11667 u32 cclocks;
11668
11669 if (dd->icode == ICODE_FPGA_EMULATION)
11670 cclocks = (ns * 1000) / FPGA_CCLOCK_PS;
11671 else /* simulation pretends to be ASIC */
11672 cclocks = (ns * 1000) / ASIC_CCLOCK_PS;
11673 if (ns && !cclocks) /* if ns nonzero, must be at least 1 */
11674 cclocks = 1;
11675 return cclocks;
11676}
11677
11678/*
11679 * Convert a cclock count to nanoseconds. Not matter how slow
11680 * the cclock, a non-zero cclocks will always have a non-zero result.
11681 */
11682u32 cclock_to_ns(struct hfi1_devdata *dd, u32 cclocks)
11683{
11684 u32 ns;
11685
11686 if (dd->icode == ICODE_FPGA_EMULATION)
11687 ns = (cclocks * FPGA_CCLOCK_PS) / 1000;
11688 else /* simulation pretends to be ASIC */
11689 ns = (cclocks * ASIC_CCLOCK_PS) / 1000;
11690 if (cclocks && !ns)
11691 ns = 1;
11692 return ns;
11693}
11694
11695/*
11696 * Dynamically adjust the receive interrupt timeout for a context based on
11697 * incoming packet rate.
11698 *
11699 * NOTE: Dynamic adjustment does not allow rcv_intr_count to be zero.
11700 */
11701static void adjust_rcv_timeout(struct hfi1_ctxtdata *rcd, u32 npkts)
11702{
11703 struct hfi1_devdata *dd = rcd->dd;
11704 u32 timeout = rcd->rcvavail_timeout;
11705
11706 /*
11707 * This algorithm doubles or halves the timeout depending on whether
11708 * the number of packets received in this interrupt were less than or
11709 * greater equal the interrupt count.
11710 *
11711 * The calculations below do not allow a steady state to be achieved.
11712 * Only at the endpoints it is possible to have an unchanging
11713 * timeout.
11714 */
11715 if (npkts < rcv_intr_count) {
11716 /*
11717 * Not enough packets arrived before the timeout, adjust
11718 * timeout downward.
11719 */
11720 if (timeout < 2) /* already at minimum? */
11721 return;
11722 timeout >>= 1;
11723 } else {
11724 /*
11725 * More than enough packets arrived before the timeout, adjust
11726 * timeout upward.
11727 */
11728 if (timeout >= dd->rcv_intr_timeout_csr) /* already at max? */
11729 return;
11730 timeout = min(timeout << 1, dd->rcv_intr_timeout_csr);
11731 }
11732
11733 rcd->rcvavail_timeout = timeout;
Jubin John4d114fd2016-02-14 20:21:43 -080011734 /*
11735 * timeout cannot be larger than rcv_intr_timeout_csr which has already
11736 * been verified to be in range
11737 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040011738 write_kctxt_csr(dd, rcd->ctxt, RCV_AVAIL_TIME_OUT,
Jubin John17fb4f22016-02-14 20:21:52 -080011739 (u64)timeout <<
11740 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011741}
11742
11743void update_usrhead(struct hfi1_ctxtdata *rcd, u32 hd, u32 updegr, u32 egrhd,
11744 u32 intr_adjust, u32 npkts)
11745{
11746 struct hfi1_devdata *dd = rcd->dd;
11747 u64 reg;
11748 u32 ctxt = rcd->ctxt;
11749
11750 /*
11751 * Need to write timeout register before updating RcvHdrHead to ensure
11752 * that a new value is used when the HW decides to restart counting.
11753 */
11754 if (intr_adjust)
11755 adjust_rcv_timeout(rcd, npkts);
11756 if (updegr) {
11757 reg = (egrhd & RCV_EGR_INDEX_HEAD_HEAD_MASK)
11758 << RCV_EGR_INDEX_HEAD_HEAD_SHIFT;
11759 write_uctxt_csr(dd, ctxt, RCV_EGR_INDEX_HEAD, reg);
11760 }
11761 mmiowb();
11762 reg = ((u64)rcv_intr_count << RCV_HDR_HEAD_COUNTER_SHIFT) |
11763 (((u64)hd & RCV_HDR_HEAD_HEAD_MASK)
11764 << RCV_HDR_HEAD_HEAD_SHIFT);
11765 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, reg);
11766 mmiowb();
11767}
11768
11769u32 hdrqempty(struct hfi1_ctxtdata *rcd)
11770{
11771 u32 head, tail;
11772
11773 head = (read_uctxt_csr(rcd->dd, rcd->ctxt, RCV_HDR_HEAD)
11774 & RCV_HDR_HEAD_HEAD_SMASK) >> RCV_HDR_HEAD_HEAD_SHIFT;
11775
11776 if (rcd->rcvhdrtail_kvaddr)
11777 tail = get_rcvhdrtail(rcd);
11778 else
11779 tail = read_uctxt_csr(rcd->dd, rcd->ctxt, RCV_HDR_TAIL);
11780
11781 return head == tail;
11782}
11783
11784/*
11785 * Context Control and Receive Array encoding for buffer size:
11786 * 0x0 invalid
11787 * 0x1 4 KB
11788 * 0x2 8 KB
11789 * 0x3 16 KB
11790 * 0x4 32 KB
11791 * 0x5 64 KB
11792 * 0x6 128 KB
11793 * 0x7 256 KB
11794 * 0x8 512 KB (Receive Array only)
11795 * 0x9 1 MB (Receive Array only)
11796 * 0xa 2 MB (Receive Array only)
11797 *
11798 * 0xB-0xF - reserved (Receive Array only)
11799 *
11800 *
11801 * This routine assumes that the value has already been sanity checked.
11802 */
11803static u32 encoded_size(u32 size)
11804{
11805 switch (size) {
Jubin John8638b772016-02-14 20:19:24 -080011806 case 4 * 1024: return 0x1;
11807 case 8 * 1024: return 0x2;
11808 case 16 * 1024: return 0x3;
11809 case 32 * 1024: return 0x4;
11810 case 64 * 1024: return 0x5;
11811 case 128 * 1024: return 0x6;
11812 case 256 * 1024: return 0x7;
11813 case 512 * 1024: return 0x8;
11814 case 1 * 1024 * 1024: return 0x9;
11815 case 2 * 1024 * 1024: return 0xa;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011816 }
11817 return 0x1; /* if invalid, go with the minimum size */
11818}
11819
Michael J. Ruhl22505632017-07-24 07:46:06 -070011820void hfi1_rcvctrl(struct hfi1_devdata *dd, unsigned int op,
11821 struct hfi1_ctxtdata *rcd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011822{
Mike Marciniszyn77241052015-07-30 15:17:43 -040011823 u64 rcvctrl, reg;
11824 int did_enable = 0;
Michael J. Ruhl22505632017-07-24 07:46:06 -070011825 u16 ctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011826
Mike Marciniszyn77241052015-07-30 15:17:43 -040011827 if (!rcd)
11828 return;
11829
Michael J. Ruhl22505632017-07-24 07:46:06 -070011830 ctxt = rcd->ctxt;
11831
Mike Marciniszyn77241052015-07-30 15:17:43 -040011832 hfi1_cdbg(RCVCTRL, "ctxt %d op 0x%x", ctxt, op);
11833
11834 rcvctrl = read_kctxt_csr(dd, ctxt, RCV_CTXT_CTRL);
11835 /* if the context already enabled, don't do the extra steps */
Jubin Johnd0d236e2016-02-14 20:20:15 -080011836 if ((op & HFI1_RCVCTRL_CTXT_ENB) &&
11837 !(rcvctrl & RCV_CTXT_CTRL_ENABLE_SMASK)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011838 /* reset the tail and hdr addresses, and sequence count */
11839 write_kctxt_csr(dd, ctxt, RCV_HDR_ADDR,
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011840 rcd->rcvhdrq_dma);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011841 if (HFI1_CAP_KGET_MASK(rcd->flags, DMA_RTAIL))
11842 write_kctxt_csr(dd, ctxt, RCV_HDR_TAIL_ADDR,
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011843 rcd->rcvhdrqtailaddr_dma);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011844 rcd->seq_cnt = 1;
11845
11846 /* reset the cached receive header queue head value */
11847 rcd->head = 0;
11848
11849 /*
11850 * Zero the receive header queue so we don't get false
11851 * positives when checking the sequence number. The
11852 * sequence numbers could land exactly on the same spot.
11853 * E.g. a rcd restart before the receive header wrapped.
11854 */
11855 memset(rcd->rcvhdrq, 0, rcd->rcvhdrq_size);
11856
11857 /* starting timeout */
11858 rcd->rcvavail_timeout = dd->rcv_intr_timeout_csr;
11859
11860 /* enable the context */
11861 rcvctrl |= RCV_CTXT_CTRL_ENABLE_SMASK;
11862
11863 /* clean the egr buffer size first */
11864 rcvctrl &= ~RCV_CTXT_CTRL_EGR_BUF_SIZE_SMASK;
11865 rcvctrl |= ((u64)encoded_size(rcd->egrbufs.rcvtid_size)
11866 & RCV_CTXT_CTRL_EGR_BUF_SIZE_MASK)
11867 << RCV_CTXT_CTRL_EGR_BUF_SIZE_SHIFT;
11868
11869 /* zero RcvHdrHead - set RcvHdrHead.Counter after enable */
11870 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, 0);
11871 did_enable = 1;
11872
11873 /* zero RcvEgrIndexHead */
11874 write_uctxt_csr(dd, ctxt, RCV_EGR_INDEX_HEAD, 0);
11875
11876 /* set eager count and base index */
11877 reg = (((u64)(rcd->egrbufs.alloced >> RCV_SHIFT)
11878 & RCV_EGR_CTRL_EGR_CNT_MASK)
11879 << RCV_EGR_CTRL_EGR_CNT_SHIFT) |
11880 (((rcd->eager_base >> RCV_SHIFT)
11881 & RCV_EGR_CTRL_EGR_BASE_INDEX_MASK)
11882 << RCV_EGR_CTRL_EGR_BASE_INDEX_SHIFT);
11883 write_kctxt_csr(dd, ctxt, RCV_EGR_CTRL, reg);
11884
11885 /*
11886 * Set TID (expected) count and base index.
11887 * rcd->expected_count is set to individual RcvArray entries,
11888 * not pairs, and the CSR takes a pair-count in groups of
11889 * four, so divide by 8.
11890 */
11891 reg = (((rcd->expected_count >> RCV_SHIFT)
11892 & RCV_TID_CTRL_TID_PAIR_CNT_MASK)
11893 << RCV_TID_CTRL_TID_PAIR_CNT_SHIFT) |
11894 (((rcd->expected_base >> RCV_SHIFT)
11895 & RCV_TID_CTRL_TID_BASE_INDEX_MASK)
11896 << RCV_TID_CTRL_TID_BASE_INDEX_SHIFT);
11897 write_kctxt_csr(dd, ctxt, RCV_TID_CTRL, reg);
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050011898 if (ctxt == HFI1_CTRL_CTXT)
11899 write_csr(dd, RCV_VL15, HFI1_CTRL_CTXT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011900 }
11901 if (op & HFI1_RCVCTRL_CTXT_DIS) {
11902 write_csr(dd, RCV_VL15, 0);
Mark F. Brown46b010d2015-11-09 19:18:20 -050011903 /*
11904 * When receive context is being disabled turn on tail
11905 * update with a dummy tail address and then disable
11906 * receive context.
11907 */
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011908 if (dd->rcvhdrtail_dummy_dma) {
Mark F. Brown46b010d2015-11-09 19:18:20 -050011909 write_kctxt_csr(dd, ctxt, RCV_HDR_TAIL_ADDR,
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011910 dd->rcvhdrtail_dummy_dma);
Mitko Haralanov566c1572016-02-03 14:32:49 -080011911 /* Enabling RcvCtxtCtrl.TailUpd is intentional. */
Mark F. Brown46b010d2015-11-09 19:18:20 -050011912 rcvctrl |= RCV_CTXT_CTRL_TAIL_UPD_SMASK;
11913 }
11914
Mike Marciniszyn77241052015-07-30 15:17:43 -040011915 rcvctrl &= ~RCV_CTXT_CTRL_ENABLE_SMASK;
11916 }
11917 if (op & HFI1_RCVCTRL_INTRAVAIL_ENB)
11918 rcvctrl |= RCV_CTXT_CTRL_INTR_AVAIL_SMASK;
11919 if (op & HFI1_RCVCTRL_INTRAVAIL_DIS)
11920 rcvctrl &= ~RCV_CTXT_CTRL_INTR_AVAIL_SMASK;
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011921 if (op & HFI1_RCVCTRL_TAILUPD_ENB && rcd->rcvhdrqtailaddr_dma)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011922 rcvctrl |= RCV_CTXT_CTRL_TAIL_UPD_SMASK;
Mitko Haralanov566c1572016-02-03 14:32:49 -080011923 if (op & HFI1_RCVCTRL_TAILUPD_DIS) {
11924 /* See comment on RcvCtxtCtrl.TailUpd above */
11925 if (!(op & HFI1_RCVCTRL_CTXT_DIS))
11926 rcvctrl &= ~RCV_CTXT_CTRL_TAIL_UPD_SMASK;
11927 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040011928 if (op & HFI1_RCVCTRL_TIDFLOW_ENB)
11929 rcvctrl |= RCV_CTXT_CTRL_TID_FLOW_ENABLE_SMASK;
11930 if (op & HFI1_RCVCTRL_TIDFLOW_DIS)
11931 rcvctrl &= ~RCV_CTXT_CTRL_TID_FLOW_ENABLE_SMASK;
11932 if (op & HFI1_RCVCTRL_ONE_PKT_EGR_ENB) {
Jubin John4d114fd2016-02-14 20:21:43 -080011933 /*
11934 * In one-packet-per-eager mode, the size comes from
11935 * the RcvArray entry.
11936 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040011937 rcvctrl &= ~RCV_CTXT_CTRL_EGR_BUF_SIZE_SMASK;
11938 rcvctrl |= RCV_CTXT_CTRL_ONE_PACKET_PER_EGR_BUFFER_SMASK;
11939 }
11940 if (op & HFI1_RCVCTRL_ONE_PKT_EGR_DIS)
11941 rcvctrl &= ~RCV_CTXT_CTRL_ONE_PACKET_PER_EGR_BUFFER_SMASK;
11942 if (op & HFI1_RCVCTRL_NO_RHQ_DROP_ENB)
11943 rcvctrl |= RCV_CTXT_CTRL_DONT_DROP_RHQ_FULL_SMASK;
11944 if (op & HFI1_RCVCTRL_NO_RHQ_DROP_DIS)
11945 rcvctrl &= ~RCV_CTXT_CTRL_DONT_DROP_RHQ_FULL_SMASK;
11946 if (op & HFI1_RCVCTRL_NO_EGR_DROP_ENB)
11947 rcvctrl |= RCV_CTXT_CTRL_DONT_DROP_EGR_FULL_SMASK;
11948 if (op & HFI1_RCVCTRL_NO_EGR_DROP_DIS)
11949 rcvctrl &= ~RCV_CTXT_CTRL_DONT_DROP_EGR_FULL_SMASK;
11950 rcd->rcvctrl = rcvctrl;
11951 hfi1_cdbg(RCVCTRL, "ctxt %d rcvctrl 0x%llx\n", ctxt, rcvctrl);
11952 write_kctxt_csr(dd, ctxt, RCV_CTXT_CTRL, rcd->rcvctrl);
11953
11954 /* work around sticky RcvCtxtStatus.BlockedRHQFull */
Jubin Johnd0d236e2016-02-14 20:20:15 -080011955 if (did_enable &&
11956 (rcvctrl & RCV_CTXT_CTRL_DONT_DROP_RHQ_FULL_SMASK)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011957 reg = read_kctxt_csr(dd, ctxt, RCV_CTXT_STATUS);
11958 if (reg != 0) {
11959 dd_dev_info(dd, "ctxt %d status %lld (blocked)\n",
Jubin John17fb4f22016-02-14 20:21:52 -080011960 ctxt, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011961 read_uctxt_csr(dd, ctxt, RCV_HDR_HEAD);
11962 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, 0x10);
11963 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, 0x00);
11964 read_uctxt_csr(dd, ctxt, RCV_HDR_HEAD);
11965 reg = read_kctxt_csr(dd, ctxt, RCV_CTXT_STATUS);
11966 dd_dev_info(dd, "ctxt %d status %lld (%s blocked)\n",
Jubin John17fb4f22016-02-14 20:21:52 -080011967 ctxt, reg, reg == 0 ? "not" : "still");
Mike Marciniszyn77241052015-07-30 15:17:43 -040011968 }
11969 }
11970
11971 if (did_enable) {
11972 /*
11973 * The interrupt timeout and count must be set after
11974 * the context is enabled to take effect.
11975 */
11976 /* set interrupt timeout */
11977 write_kctxt_csr(dd, ctxt, RCV_AVAIL_TIME_OUT,
Jubin John17fb4f22016-02-14 20:21:52 -080011978 (u64)rcd->rcvavail_timeout <<
Mike Marciniszyn77241052015-07-30 15:17:43 -040011979 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_SHIFT);
11980
11981 /* set RcvHdrHead.Counter, zero RcvHdrHead.Head (again) */
11982 reg = (u64)rcv_intr_count << RCV_HDR_HEAD_COUNTER_SHIFT;
11983 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, reg);
11984 }
11985
11986 if (op & (HFI1_RCVCTRL_TAILUPD_DIS | HFI1_RCVCTRL_CTXT_DIS))
11987 /*
11988 * If the context has been disabled and the Tail Update has
Mark F. Brown46b010d2015-11-09 19:18:20 -050011989 * been cleared, set the RCV_HDR_TAIL_ADDR CSR to dummy address
11990 * so it doesn't contain an address that is invalid.
Mike Marciniszyn77241052015-07-30 15:17:43 -040011991 */
Mark F. Brown46b010d2015-11-09 19:18:20 -050011992 write_kctxt_csr(dd, ctxt, RCV_HDR_TAIL_ADDR,
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011993 dd->rcvhdrtail_dummy_dma);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011994}
11995
Dean Luick582e05c2016-02-18 11:13:01 -080011996u32 hfi1_read_cntrs(struct hfi1_devdata *dd, char **namep, u64 **cntrp)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011997{
11998 int ret;
11999 u64 val = 0;
12000
12001 if (namep) {
12002 ret = dd->cntrnameslen;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012003 *namep = dd->cntrnames;
12004 } else {
12005 const struct cntr_entry *entry;
12006 int i, j;
12007
12008 ret = (dd->ndevcntrs) * sizeof(u64);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012009
12010 /* Get the start of the block of counters */
12011 *cntrp = dd->cntrs;
12012
12013 /*
12014 * Now go and fill in each counter in the block.
12015 */
12016 for (i = 0; i < DEV_CNTR_LAST; i++) {
12017 entry = &dev_cntrs[i];
12018 hfi1_cdbg(CNTR, "reading %s", entry->name);
12019 if (entry->flags & CNTR_DISABLED) {
12020 /* Nothing */
12021 hfi1_cdbg(CNTR, "\tDisabled\n");
12022 } else {
12023 if (entry->flags & CNTR_VL) {
12024 hfi1_cdbg(CNTR, "\tPer VL\n");
12025 for (j = 0; j < C_VL_COUNT; j++) {
12026 val = entry->rw_cntr(entry,
12027 dd, j,
12028 CNTR_MODE_R,
12029 0);
12030 hfi1_cdbg(
12031 CNTR,
12032 "\t\tRead 0x%llx for %d\n",
12033 val, j);
12034 dd->cntrs[entry->offset + j] =
12035 val;
12036 }
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012037 } else if (entry->flags & CNTR_SDMA) {
12038 hfi1_cdbg(CNTR,
12039 "\t Per SDMA Engine\n");
12040 for (j = 0; j < dd->chip_sdma_engines;
12041 j++) {
12042 val =
12043 entry->rw_cntr(entry, dd, j,
12044 CNTR_MODE_R, 0);
12045 hfi1_cdbg(CNTR,
12046 "\t\tRead 0x%llx for %d\n",
12047 val, j);
12048 dd->cntrs[entry->offset + j] =
12049 val;
12050 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040012051 } else {
12052 val = entry->rw_cntr(entry, dd,
12053 CNTR_INVALID_VL,
12054 CNTR_MODE_R, 0);
12055 dd->cntrs[entry->offset] = val;
12056 hfi1_cdbg(CNTR, "\tRead 0x%llx", val);
12057 }
12058 }
12059 }
12060 }
12061 return ret;
12062}
12063
12064/*
12065 * Used by sysfs to create files for hfi stats to read
12066 */
Dean Luick582e05c2016-02-18 11:13:01 -080012067u32 hfi1_read_portcntrs(struct hfi1_pportdata *ppd, char **namep, u64 **cntrp)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012068{
12069 int ret;
12070 u64 val = 0;
12071
12072 if (namep) {
Dean Luick582e05c2016-02-18 11:13:01 -080012073 ret = ppd->dd->portcntrnameslen;
12074 *namep = ppd->dd->portcntrnames;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012075 } else {
12076 const struct cntr_entry *entry;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012077 int i, j;
12078
Dean Luick582e05c2016-02-18 11:13:01 -080012079 ret = ppd->dd->nportcntrs * sizeof(u64);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012080 *cntrp = ppd->cntrs;
12081
12082 for (i = 0; i < PORT_CNTR_LAST; i++) {
12083 entry = &port_cntrs[i];
12084 hfi1_cdbg(CNTR, "reading %s", entry->name);
12085 if (entry->flags & CNTR_DISABLED) {
12086 /* Nothing */
12087 hfi1_cdbg(CNTR, "\tDisabled\n");
12088 continue;
12089 }
12090
12091 if (entry->flags & CNTR_VL) {
12092 hfi1_cdbg(CNTR, "\tPer VL");
12093 for (j = 0; j < C_VL_COUNT; j++) {
12094 val = entry->rw_cntr(entry, ppd, j,
12095 CNTR_MODE_R,
12096 0);
12097 hfi1_cdbg(
12098 CNTR,
12099 "\t\tRead 0x%llx for %d",
12100 val, j);
12101 ppd->cntrs[entry->offset + j] = val;
12102 }
12103 } else {
12104 val = entry->rw_cntr(entry, ppd,
12105 CNTR_INVALID_VL,
12106 CNTR_MODE_R,
12107 0);
12108 ppd->cntrs[entry->offset] = val;
12109 hfi1_cdbg(CNTR, "\tRead 0x%llx", val);
12110 }
12111 }
12112 }
12113 return ret;
12114}
12115
12116static void free_cntrs(struct hfi1_devdata *dd)
12117{
12118 struct hfi1_pportdata *ppd;
12119 int i;
12120
Kees Cook80641352017-10-16 15:51:54 -070012121 if (dd->synth_stats_timer.function)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012122 del_timer_sync(&dd->synth_stats_timer);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012123 ppd = (struct hfi1_pportdata *)(dd + 1);
12124 for (i = 0; i < dd->num_pports; i++, ppd++) {
12125 kfree(ppd->cntrs);
12126 kfree(ppd->scntrs);
Dennis Dalessandro4eb06882016-01-19 14:42:39 -080012127 free_percpu(ppd->ibport_data.rvp.rc_acks);
12128 free_percpu(ppd->ibport_data.rvp.rc_qacks);
12129 free_percpu(ppd->ibport_data.rvp.rc_delayed_comp);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012130 ppd->cntrs = NULL;
12131 ppd->scntrs = NULL;
Dennis Dalessandro4eb06882016-01-19 14:42:39 -080012132 ppd->ibport_data.rvp.rc_acks = NULL;
12133 ppd->ibport_data.rvp.rc_qacks = NULL;
12134 ppd->ibport_data.rvp.rc_delayed_comp = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012135 }
12136 kfree(dd->portcntrnames);
12137 dd->portcntrnames = NULL;
12138 kfree(dd->cntrs);
12139 dd->cntrs = NULL;
12140 kfree(dd->scntrs);
12141 dd->scntrs = NULL;
12142 kfree(dd->cntrnames);
12143 dd->cntrnames = NULL;
Tadeusz Struk22546b72017-04-28 10:40:02 -070012144 if (dd->update_cntr_wq) {
12145 destroy_workqueue(dd->update_cntr_wq);
12146 dd->update_cntr_wq = NULL;
12147 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040012148}
12149
Mike Marciniszyn77241052015-07-30 15:17:43 -040012150static u64 read_dev_port_cntr(struct hfi1_devdata *dd, struct cntr_entry *entry,
12151 u64 *psval, void *context, int vl)
12152{
12153 u64 val;
12154 u64 sval = *psval;
12155
12156 if (entry->flags & CNTR_DISABLED) {
12157 dd_dev_err(dd, "Counter %s not enabled", entry->name);
12158 return 0;
12159 }
12160
12161 hfi1_cdbg(CNTR, "cntr: %s vl %d psval 0x%llx", entry->name, vl, *psval);
12162
12163 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_R, 0);
12164
12165 /* If its a synthetic counter there is more work we need to do */
12166 if (entry->flags & CNTR_SYNTH) {
12167 if (sval == CNTR_MAX) {
12168 /* No need to read already saturated */
12169 return CNTR_MAX;
12170 }
12171
12172 if (entry->flags & CNTR_32BIT) {
12173 /* 32bit counters can wrap multiple times */
12174 u64 upper = sval >> 32;
12175 u64 lower = (sval << 32) >> 32;
12176
12177 if (lower > val) { /* hw wrapped */
12178 if (upper == CNTR_32BIT_MAX)
12179 val = CNTR_MAX;
12180 else
12181 upper++;
12182 }
12183
12184 if (val != CNTR_MAX)
12185 val = (upper << 32) | val;
12186
12187 } else {
12188 /* If we rolled we are saturated */
12189 if ((val < sval) || (val > CNTR_MAX))
12190 val = CNTR_MAX;
12191 }
12192 }
12193
12194 *psval = val;
12195
12196 hfi1_cdbg(CNTR, "\tNew val=0x%llx", val);
12197
12198 return val;
12199}
12200
12201static u64 write_dev_port_cntr(struct hfi1_devdata *dd,
12202 struct cntr_entry *entry,
12203 u64 *psval, void *context, int vl, u64 data)
12204{
12205 u64 val;
12206
12207 if (entry->flags & CNTR_DISABLED) {
12208 dd_dev_err(dd, "Counter %s not enabled", entry->name);
12209 return 0;
12210 }
12211
12212 hfi1_cdbg(CNTR, "cntr: %s vl %d psval 0x%llx", entry->name, vl, *psval);
12213
12214 if (entry->flags & CNTR_SYNTH) {
12215 *psval = data;
12216 if (entry->flags & CNTR_32BIT) {
12217 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_W,
12218 (data << 32) >> 32);
12219 val = data; /* return the full 64bit value */
12220 } else {
12221 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_W,
12222 data);
12223 }
12224 } else {
12225 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_W, data);
12226 }
12227
12228 *psval = val;
12229
12230 hfi1_cdbg(CNTR, "\tNew val=0x%llx", val);
12231
12232 return val;
12233}
12234
12235u64 read_dev_cntr(struct hfi1_devdata *dd, int index, int vl)
12236{
12237 struct cntr_entry *entry;
12238 u64 *sval;
12239
12240 entry = &dev_cntrs[index];
12241 sval = dd->scntrs + entry->offset;
12242
12243 if (vl != CNTR_INVALID_VL)
12244 sval += vl;
12245
12246 return read_dev_port_cntr(dd, entry, sval, dd, vl);
12247}
12248
12249u64 write_dev_cntr(struct hfi1_devdata *dd, int index, int vl, u64 data)
12250{
12251 struct cntr_entry *entry;
12252 u64 *sval;
12253
12254 entry = &dev_cntrs[index];
12255 sval = dd->scntrs + entry->offset;
12256
12257 if (vl != CNTR_INVALID_VL)
12258 sval += vl;
12259
12260 return write_dev_port_cntr(dd, entry, sval, dd, vl, data);
12261}
12262
12263u64 read_port_cntr(struct hfi1_pportdata *ppd, int index, int vl)
12264{
12265 struct cntr_entry *entry;
12266 u64 *sval;
12267
12268 entry = &port_cntrs[index];
12269 sval = ppd->scntrs + entry->offset;
12270
12271 if (vl != CNTR_INVALID_VL)
12272 sval += vl;
12273
12274 if ((index >= C_RCV_HDR_OVF_FIRST + ppd->dd->num_rcv_contexts) &&
12275 (index <= C_RCV_HDR_OVF_LAST)) {
12276 /* We do not want to bother for disabled contexts */
12277 return 0;
12278 }
12279
12280 return read_dev_port_cntr(ppd->dd, entry, sval, ppd, vl);
12281}
12282
12283u64 write_port_cntr(struct hfi1_pportdata *ppd, int index, int vl, u64 data)
12284{
12285 struct cntr_entry *entry;
12286 u64 *sval;
12287
12288 entry = &port_cntrs[index];
12289 sval = ppd->scntrs + entry->offset;
12290
12291 if (vl != CNTR_INVALID_VL)
12292 sval += vl;
12293
12294 if ((index >= C_RCV_HDR_OVF_FIRST + ppd->dd->num_rcv_contexts) &&
12295 (index <= C_RCV_HDR_OVF_LAST)) {
12296 /* We do not want to bother for disabled contexts */
12297 return 0;
12298 }
12299
12300 return write_dev_port_cntr(ppd->dd, entry, sval, ppd, vl, data);
12301}
12302
Tadeusz Struk22546b72017-04-28 10:40:02 -070012303static void do_update_synth_timer(struct work_struct *work)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012304{
12305 u64 cur_tx;
12306 u64 cur_rx;
12307 u64 total_flits;
12308 u8 update = 0;
12309 int i, j, vl;
12310 struct hfi1_pportdata *ppd;
12311 struct cntr_entry *entry;
Tadeusz Struk22546b72017-04-28 10:40:02 -070012312 struct hfi1_devdata *dd = container_of(work, struct hfi1_devdata,
12313 update_cntr_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012314
12315 /*
12316 * Rather than keep beating on the CSRs pick a minimal set that we can
12317 * check to watch for potential roll over. We can do this by looking at
12318 * the number of flits sent/recv. If the total flits exceeds 32bits then
12319 * we have to iterate all the counters and update.
12320 */
12321 entry = &dev_cntrs[C_DC_RCV_FLITS];
12322 cur_rx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL, CNTR_MODE_R, 0);
12323
12324 entry = &dev_cntrs[C_DC_XMIT_FLITS];
12325 cur_tx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL, CNTR_MODE_R, 0);
12326
12327 hfi1_cdbg(
12328 CNTR,
12329 "[%d] curr tx=0x%llx rx=0x%llx :: last tx=0x%llx rx=0x%llx\n",
12330 dd->unit, cur_tx, cur_rx, dd->last_tx, dd->last_rx);
12331
12332 if ((cur_tx < dd->last_tx) || (cur_rx < dd->last_rx)) {
12333 /*
12334 * May not be strictly necessary to update but it won't hurt and
12335 * simplifies the logic here.
12336 */
12337 update = 1;
12338 hfi1_cdbg(CNTR, "[%d] Tripwire counter rolled, updating",
12339 dd->unit);
12340 } else {
12341 total_flits = (cur_tx - dd->last_tx) + (cur_rx - dd->last_rx);
12342 hfi1_cdbg(CNTR,
12343 "[%d] total flits 0x%llx limit 0x%llx\n", dd->unit,
12344 total_flits, (u64)CNTR_32BIT_MAX);
12345 if (total_flits >= CNTR_32BIT_MAX) {
12346 hfi1_cdbg(CNTR, "[%d] 32bit limit hit, updating",
12347 dd->unit);
12348 update = 1;
12349 }
12350 }
12351
12352 if (update) {
12353 hfi1_cdbg(CNTR, "[%d] Updating dd and ppd counters", dd->unit);
12354 for (i = 0; i < DEV_CNTR_LAST; i++) {
12355 entry = &dev_cntrs[i];
12356 if (entry->flags & CNTR_VL) {
12357 for (vl = 0; vl < C_VL_COUNT; vl++)
12358 read_dev_cntr(dd, i, vl);
12359 } else {
12360 read_dev_cntr(dd, i, CNTR_INVALID_VL);
12361 }
12362 }
12363 ppd = (struct hfi1_pportdata *)(dd + 1);
12364 for (i = 0; i < dd->num_pports; i++, ppd++) {
12365 for (j = 0; j < PORT_CNTR_LAST; j++) {
12366 entry = &port_cntrs[j];
12367 if (entry->flags & CNTR_VL) {
12368 for (vl = 0; vl < C_VL_COUNT; vl++)
12369 read_port_cntr(ppd, j, vl);
12370 } else {
12371 read_port_cntr(ppd, j, CNTR_INVALID_VL);
12372 }
12373 }
12374 }
12375
12376 /*
12377 * We want the value in the register. The goal is to keep track
12378 * of the number of "ticks" not the counter value. In other
12379 * words if the register rolls we want to notice it and go ahead
12380 * and force an update.
12381 */
12382 entry = &dev_cntrs[C_DC_XMIT_FLITS];
12383 dd->last_tx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL,
12384 CNTR_MODE_R, 0);
12385
12386 entry = &dev_cntrs[C_DC_RCV_FLITS];
12387 dd->last_rx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL,
12388 CNTR_MODE_R, 0);
12389
12390 hfi1_cdbg(CNTR, "[%d] setting last tx/rx to 0x%llx 0x%llx",
12391 dd->unit, dd->last_tx, dd->last_rx);
12392
12393 } else {
12394 hfi1_cdbg(CNTR, "[%d] No update necessary", dd->unit);
12395 }
Tadeusz Struk22546b72017-04-28 10:40:02 -070012396}
Mike Marciniszyn77241052015-07-30 15:17:43 -040012397
Kees Cook80641352017-10-16 15:51:54 -070012398static void update_synth_timer(struct timer_list *t)
Tadeusz Struk22546b72017-04-28 10:40:02 -070012399{
Kees Cook80641352017-10-16 15:51:54 -070012400 struct hfi1_devdata *dd = from_timer(dd, t, synth_stats_timer);
Tadeusz Struk22546b72017-04-28 10:40:02 -070012401
12402 queue_work(dd->update_cntr_wq, &dd->update_cntr_work);
Bart Van Assche48a0cc132016-06-03 12:09:56 -070012403 mod_timer(&dd->synth_stats_timer, jiffies + HZ * SYNTH_CNT_TIME);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012404}
12405
Jianxin Xiong09a79082016-10-25 13:12:40 -070012406#define C_MAX_NAME 16 /* 15 chars + one for /0 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012407static int init_cntrs(struct hfi1_devdata *dd)
12408{
Dean Luickc024c552016-01-11 18:30:57 -050012409 int i, rcv_ctxts, j;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012410 size_t sz;
12411 char *p;
12412 char name[C_MAX_NAME];
12413 struct hfi1_pportdata *ppd;
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012414 const char *bit_type_32 = ",32";
12415 const int bit_type_32_sz = strlen(bit_type_32);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012416
12417 /* set up the stats timer; the add_timer is done at the end */
Kees Cook80641352017-10-16 15:51:54 -070012418 timer_setup(&dd->synth_stats_timer, update_synth_timer, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012419
12420 /***********************/
12421 /* per device counters */
12422 /***********************/
12423
12424 /* size names and determine how many we have*/
12425 dd->ndevcntrs = 0;
12426 sz = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012427
12428 for (i = 0; i < DEV_CNTR_LAST; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012429 if (dev_cntrs[i].flags & CNTR_DISABLED) {
12430 hfi1_dbg_early("\tSkipping %s\n", dev_cntrs[i].name);
12431 continue;
12432 }
12433
12434 if (dev_cntrs[i].flags & CNTR_VL) {
Dean Luickc024c552016-01-11 18:30:57 -050012435 dev_cntrs[i].offset = dd->ndevcntrs;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012436 for (j = 0; j < C_VL_COUNT; j++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012437 snprintf(name, C_MAX_NAME, "%s%d",
Jubin John17fb4f22016-02-14 20:21:52 -080012438 dev_cntrs[i].name, vl_from_idx(j));
Mike Marciniszyn77241052015-07-30 15:17:43 -040012439 sz += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012440 /* Add ",32" for 32-bit counters */
12441 if (dev_cntrs[i].flags & CNTR_32BIT)
12442 sz += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012443 sz++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012444 dd->ndevcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012445 }
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012446 } else if (dev_cntrs[i].flags & CNTR_SDMA) {
Dean Luickc024c552016-01-11 18:30:57 -050012447 dev_cntrs[i].offset = dd->ndevcntrs;
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012448 for (j = 0; j < dd->chip_sdma_engines; j++) {
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012449 snprintf(name, C_MAX_NAME, "%s%d",
12450 dev_cntrs[i].name, j);
12451 sz += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012452 /* Add ",32" for 32-bit counters */
12453 if (dev_cntrs[i].flags & CNTR_32BIT)
12454 sz += bit_type_32_sz;
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012455 sz++;
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012456 dd->ndevcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012457 }
12458 } else {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012459 /* +1 for newline. */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012460 sz += strlen(dev_cntrs[i].name) + 1;
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012461 /* Add ",32" for 32-bit counters */
12462 if (dev_cntrs[i].flags & CNTR_32BIT)
12463 sz += bit_type_32_sz;
Dean Luickc024c552016-01-11 18:30:57 -050012464 dev_cntrs[i].offset = dd->ndevcntrs;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012465 dd->ndevcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012466 }
12467 }
12468
12469 /* allocate space for the counter values */
Dean Luickc024c552016-01-11 18:30:57 -050012470 dd->cntrs = kcalloc(dd->ndevcntrs, sizeof(u64), GFP_KERNEL);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012471 if (!dd->cntrs)
12472 goto bail;
12473
Dean Luickc024c552016-01-11 18:30:57 -050012474 dd->scntrs = kcalloc(dd->ndevcntrs, sizeof(u64), GFP_KERNEL);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012475 if (!dd->scntrs)
12476 goto bail;
12477
Mike Marciniszyn77241052015-07-30 15:17:43 -040012478 /* allocate space for the counter names */
12479 dd->cntrnameslen = sz;
12480 dd->cntrnames = kmalloc(sz, GFP_KERNEL);
12481 if (!dd->cntrnames)
12482 goto bail;
12483
12484 /* fill in the names */
Dean Luickc024c552016-01-11 18:30:57 -050012485 for (p = dd->cntrnames, i = 0; i < DEV_CNTR_LAST; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012486 if (dev_cntrs[i].flags & CNTR_DISABLED) {
12487 /* Nothing */
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012488 } else if (dev_cntrs[i].flags & CNTR_VL) {
12489 for (j = 0; j < C_VL_COUNT; j++) {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012490 snprintf(name, C_MAX_NAME, "%s%d",
12491 dev_cntrs[i].name,
12492 vl_from_idx(j));
12493 memcpy(p, name, strlen(name));
12494 p += strlen(name);
12495
12496 /* Counter is 32 bits */
12497 if (dev_cntrs[i].flags & CNTR_32BIT) {
12498 memcpy(p, bit_type_32, bit_type_32_sz);
12499 p += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012500 }
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012501
Mike Marciniszyn77241052015-07-30 15:17:43 -040012502 *p++ = '\n';
12503 }
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012504 } else if (dev_cntrs[i].flags & CNTR_SDMA) {
12505 for (j = 0; j < dd->chip_sdma_engines; j++) {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012506 snprintf(name, C_MAX_NAME, "%s%d",
12507 dev_cntrs[i].name, j);
12508 memcpy(p, name, strlen(name));
12509 p += strlen(name);
12510
12511 /* Counter is 32 bits */
12512 if (dev_cntrs[i].flags & CNTR_32BIT) {
12513 memcpy(p, bit_type_32, bit_type_32_sz);
12514 p += bit_type_32_sz;
12515 }
12516
12517 *p++ = '\n';
12518 }
12519 } else {
12520 memcpy(p, dev_cntrs[i].name, strlen(dev_cntrs[i].name));
12521 p += strlen(dev_cntrs[i].name);
12522
12523 /* Counter is 32 bits */
12524 if (dev_cntrs[i].flags & CNTR_32BIT) {
12525 memcpy(p, bit_type_32, bit_type_32_sz);
12526 p += bit_type_32_sz;
12527 }
12528
12529 *p++ = '\n';
Mike Marciniszyn77241052015-07-30 15:17:43 -040012530 }
12531 }
12532
12533 /*********************/
12534 /* per port counters */
12535 /*********************/
12536
12537 /*
12538 * Go through the counters for the overflows and disable the ones we
12539 * don't need. This varies based on platform so we need to do it
12540 * dynamically here.
12541 */
12542 rcv_ctxts = dd->num_rcv_contexts;
12543 for (i = C_RCV_HDR_OVF_FIRST + rcv_ctxts;
12544 i <= C_RCV_HDR_OVF_LAST; i++) {
12545 port_cntrs[i].flags |= CNTR_DISABLED;
12546 }
12547
12548 /* size port counter names and determine how many we have*/
12549 sz = 0;
12550 dd->nportcntrs = 0;
12551 for (i = 0; i < PORT_CNTR_LAST; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012552 if (port_cntrs[i].flags & CNTR_DISABLED) {
12553 hfi1_dbg_early("\tSkipping %s\n", port_cntrs[i].name);
12554 continue;
12555 }
12556
12557 if (port_cntrs[i].flags & CNTR_VL) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012558 port_cntrs[i].offset = dd->nportcntrs;
12559 for (j = 0; j < C_VL_COUNT; j++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012560 snprintf(name, C_MAX_NAME, "%s%d",
Jubin John17fb4f22016-02-14 20:21:52 -080012561 port_cntrs[i].name, vl_from_idx(j));
Mike Marciniszyn77241052015-07-30 15:17:43 -040012562 sz += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012563 /* Add ",32" for 32-bit counters */
12564 if (port_cntrs[i].flags & CNTR_32BIT)
12565 sz += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012566 sz++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012567 dd->nportcntrs++;
12568 }
12569 } else {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012570 /* +1 for newline */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012571 sz += strlen(port_cntrs[i].name) + 1;
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012572 /* Add ",32" for 32-bit counters */
12573 if (port_cntrs[i].flags & CNTR_32BIT)
12574 sz += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012575 port_cntrs[i].offset = dd->nportcntrs;
12576 dd->nportcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012577 }
12578 }
12579
12580 /* allocate space for the counter names */
12581 dd->portcntrnameslen = sz;
12582 dd->portcntrnames = kmalloc(sz, GFP_KERNEL);
12583 if (!dd->portcntrnames)
12584 goto bail;
12585
12586 /* fill in port cntr names */
12587 for (p = dd->portcntrnames, i = 0; i < PORT_CNTR_LAST; i++) {
12588 if (port_cntrs[i].flags & CNTR_DISABLED)
12589 continue;
12590
12591 if (port_cntrs[i].flags & CNTR_VL) {
12592 for (j = 0; j < C_VL_COUNT; j++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012593 snprintf(name, C_MAX_NAME, "%s%d",
Jubin John17fb4f22016-02-14 20:21:52 -080012594 port_cntrs[i].name, vl_from_idx(j));
Mike Marciniszyn77241052015-07-30 15:17:43 -040012595 memcpy(p, name, strlen(name));
12596 p += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012597
12598 /* Counter is 32 bits */
12599 if (port_cntrs[i].flags & CNTR_32BIT) {
12600 memcpy(p, bit_type_32, bit_type_32_sz);
12601 p += bit_type_32_sz;
12602 }
12603
Mike Marciniszyn77241052015-07-30 15:17:43 -040012604 *p++ = '\n';
12605 }
12606 } else {
12607 memcpy(p, port_cntrs[i].name,
12608 strlen(port_cntrs[i].name));
12609 p += strlen(port_cntrs[i].name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012610
12611 /* Counter is 32 bits */
12612 if (port_cntrs[i].flags & CNTR_32BIT) {
12613 memcpy(p, bit_type_32, bit_type_32_sz);
12614 p += bit_type_32_sz;
12615 }
12616
Mike Marciniszyn77241052015-07-30 15:17:43 -040012617 *p++ = '\n';
12618 }
12619 }
12620
12621 /* allocate per port storage for counter values */
12622 ppd = (struct hfi1_pportdata *)(dd + 1);
12623 for (i = 0; i < dd->num_pports; i++, ppd++) {
12624 ppd->cntrs = kcalloc(dd->nportcntrs, sizeof(u64), GFP_KERNEL);
12625 if (!ppd->cntrs)
12626 goto bail;
12627
12628 ppd->scntrs = kcalloc(dd->nportcntrs, sizeof(u64), GFP_KERNEL);
12629 if (!ppd->scntrs)
12630 goto bail;
12631 }
12632
12633 /* CPU counters need to be allocated and zeroed */
12634 if (init_cpu_counters(dd))
12635 goto bail;
12636
Tadeusz Struk22546b72017-04-28 10:40:02 -070012637 dd->update_cntr_wq = alloc_ordered_workqueue("hfi1_update_cntr_%d",
12638 WQ_MEM_RECLAIM, dd->unit);
12639 if (!dd->update_cntr_wq)
12640 goto bail;
12641
12642 INIT_WORK(&dd->update_cntr_work, do_update_synth_timer);
12643
Mike Marciniszyn77241052015-07-30 15:17:43 -040012644 mod_timer(&dd->synth_stats_timer, jiffies + HZ * SYNTH_CNT_TIME);
12645 return 0;
12646bail:
12647 free_cntrs(dd);
12648 return -ENOMEM;
12649}
12650
Mike Marciniszyn77241052015-07-30 15:17:43 -040012651static u32 chip_to_opa_lstate(struct hfi1_devdata *dd, u32 chip_lstate)
12652{
12653 switch (chip_lstate) {
12654 default:
12655 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080012656 "Unknown logical state 0x%x, reporting IB_PORT_DOWN\n",
12657 chip_lstate);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012658 /* fall through */
12659 case LSTATE_DOWN:
12660 return IB_PORT_DOWN;
12661 case LSTATE_INIT:
12662 return IB_PORT_INIT;
12663 case LSTATE_ARMED:
12664 return IB_PORT_ARMED;
12665 case LSTATE_ACTIVE:
12666 return IB_PORT_ACTIVE;
12667 }
12668}
12669
12670u32 chip_to_opa_pstate(struct hfi1_devdata *dd, u32 chip_pstate)
12671{
12672 /* look at the HFI meta-states only */
12673 switch (chip_pstate & 0xf0) {
12674 default:
12675 dd_dev_err(dd, "Unexpected chip physical state of 0x%x\n",
Jubin John17fb4f22016-02-14 20:21:52 -080012676 chip_pstate);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012677 /* fall through */
12678 case PLS_DISABLED:
12679 return IB_PORTPHYSSTATE_DISABLED;
12680 case PLS_OFFLINE:
12681 return OPA_PORTPHYSSTATE_OFFLINE;
12682 case PLS_POLLING:
12683 return IB_PORTPHYSSTATE_POLLING;
12684 case PLS_CONFIGPHY:
12685 return IB_PORTPHYSSTATE_TRAINING;
12686 case PLS_LINKUP:
12687 return IB_PORTPHYSSTATE_LINKUP;
12688 case PLS_PHYTEST:
12689 return IB_PORTPHYSSTATE_PHY_TEST;
12690 }
12691}
12692
12693/* return the OPA port logical state name */
12694const char *opa_lstate_name(u32 lstate)
12695{
12696 static const char * const port_logical_names[] = {
12697 "PORT_NOP",
12698 "PORT_DOWN",
12699 "PORT_INIT",
12700 "PORT_ARMED",
12701 "PORT_ACTIVE",
12702 "PORT_ACTIVE_DEFER",
12703 };
12704 if (lstate < ARRAY_SIZE(port_logical_names))
12705 return port_logical_names[lstate];
12706 return "unknown";
12707}
12708
12709/* return the OPA port physical state name */
12710const char *opa_pstate_name(u32 pstate)
12711{
12712 static const char * const port_physical_names[] = {
12713 "PHYS_NOP",
12714 "reserved1",
12715 "PHYS_POLL",
12716 "PHYS_DISABLED",
12717 "PHYS_TRAINING",
12718 "PHYS_LINKUP",
12719 "PHYS_LINK_ERR_RECOVER",
12720 "PHYS_PHY_TEST",
12721 "reserved8",
12722 "PHYS_OFFLINE",
12723 "PHYS_GANGED",
12724 "PHYS_TEST",
12725 };
12726 if (pstate < ARRAY_SIZE(port_physical_names))
12727 return port_physical_names[pstate];
12728 return "unknown";
12729}
12730
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070012731/**
12732 * update_statusp - Update userspace status flag
12733 * @ppd: Port data structure
12734 * @state: port state information
12735 *
12736 * Actual port status is determined by the host_link_state value
12737 * in the ppd.
12738 *
12739 * host_link_state MUST be updated before updating the user space
12740 * statusp.
12741 */
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070012742static void update_statusp(struct hfi1_pportdata *ppd, u32 state)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012743{
Mike Marciniszyn77241052015-07-30 15:17:43 -040012744 /*
12745 * Set port status flags in the page mapped into userspace
12746 * memory. Do it here to ensure a reliable state - this is
12747 * the only function called by all state handling code.
12748 * Always set the flags due to the fact that the cache value
12749 * might have been changed explicitly outside of this
12750 * function.
12751 */
12752 if (ppd->statusp) {
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070012753 switch (state) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012754 case IB_PORT_DOWN:
12755 case IB_PORT_INIT:
12756 *ppd->statusp &= ~(HFI1_STATUS_IB_CONF |
12757 HFI1_STATUS_IB_READY);
12758 break;
12759 case IB_PORT_ARMED:
12760 *ppd->statusp |= HFI1_STATUS_IB_CONF;
12761 break;
12762 case IB_PORT_ACTIVE:
12763 *ppd->statusp |= HFI1_STATUS_IB_READY;
12764 break;
12765 }
12766 }
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070012767 dd_dev_info(ppd->dd, "logical state changed to %s (0x%x)\n",
12768 opa_lstate_name(state), state);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012769}
12770
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070012771/**
Mike Marciniszyn77241052015-07-30 15:17:43 -040012772 * wait_logical_linkstate - wait for an IB link state change to occur
12773 * @ppd: port device
12774 * @state: the state to wait for
12775 * @msecs: the number of milliseconds to wait
12776 *
12777 * Wait up to msecs milliseconds for IB link state change to occur.
12778 * For now, take the easy polling route.
12779 * Returns 0 if state reached, otherwise -ETIMEDOUT.
12780 */
12781static int wait_logical_linkstate(struct hfi1_pportdata *ppd, u32 state,
12782 int msecs)
12783{
12784 unsigned long timeout;
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070012785 u32 new_state;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012786
12787 timeout = jiffies + msecs_to_jiffies(msecs);
12788 while (1) {
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070012789 new_state = chip_to_opa_lstate(ppd->dd,
12790 read_logical_state(ppd->dd));
12791 if (new_state == state)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012792 break;
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070012793 if (time_after(jiffies, timeout)) {
12794 dd_dev_err(ppd->dd,
12795 "timeout waiting for link state 0x%x\n",
12796 state);
12797 return -ETIMEDOUT;
12798 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040012799 msleep(20);
12800 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040012801
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070012802 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012803}
12804
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012805static void log_state_transition(struct hfi1_pportdata *ppd, u32 state)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012806{
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012807 u32 ib_pstate = chip_to_opa_pstate(ppd->dd, state);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012808
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012809 dd_dev_info(ppd->dd,
12810 "physical state changed to %s (0x%x), phy 0x%x\n",
12811 opa_pstate_name(ib_pstate), ib_pstate, state);
12812}
12813
12814/*
12815 * Read the physical hardware link state and check if it matches host
12816 * drivers anticipated state.
12817 */
12818static void log_physical_state(struct hfi1_pportdata *ppd, u32 state)
12819{
12820 u32 read_state = read_physical_state(ppd->dd);
12821
12822 if (read_state == state) {
12823 log_state_transition(ppd, state);
12824 } else {
12825 dd_dev_err(ppd->dd,
12826 "anticipated phy link state 0x%x, read 0x%x\n",
12827 state, read_state);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012828 }
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070012829}
12830
12831/*
12832 * wait_physical_linkstate - wait for an physical link state change to occur
12833 * @ppd: port device
12834 * @state: the state to wait for
12835 * @msecs: the number of milliseconds to wait
12836 *
12837 * Wait up to msecs milliseconds for physical link state change to occur.
12838 * Returns 0 if state reached, otherwise -ETIMEDOUT.
12839 */
12840static int wait_physical_linkstate(struct hfi1_pportdata *ppd, u32 state,
12841 int msecs)
12842{
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012843 u32 read_state;
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070012844 unsigned long timeout;
12845
12846 timeout = jiffies + msecs_to_jiffies(msecs);
12847 while (1) {
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012848 read_state = read_physical_state(ppd->dd);
12849 if (read_state == state)
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070012850 break;
12851 if (time_after(jiffies, timeout)) {
12852 dd_dev_err(ppd->dd,
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012853 "timeout waiting for phy link state 0x%x\n",
12854 state);
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070012855 return -ETIMEDOUT;
12856 }
12857 usleep_range(1950, 2050); /* sleep 2ms-ish */
12858 }
12859
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012860 log_state_transition(ppd, state);
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070012861 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012862}
12863
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -070012864/*
12865 * wait_phys_link_offline_quiet_substates - wait for any offline substate
12866 * @ppd: port device
12867 * @msecs: the number of milliseconds to wait
12868 *
12869 * Wait up to msecs milliseconds for any offline physical link
12870 * state change to occur.
12871 * Returns 0 if at least one state is reached, otherwise -ETIMEDOUT.
12872 */
12873static int wait_phys_link_offline_substates(struct hfi1_pportdata *ppd,
12874 int msecs)
12875{
12876 u32 read_state;
12877 unsigned long timeout;
12878
12879 timeout = jiffies + msecs_to_jiffies(msecs);
12880 while (1) {
12881 read_state = read_physical_state(ppd->dd);
12882 if ((read_state & 0xF0) == PLS_OFFLINE)
12883 break;
12884 if (time_after(jiffies, timeout)) {
12885 dd_dev_err(ppd->dd,
12886 "timeout waiting for phy link offline.quiet substates. Read state 0x%x, %dms\n",
12887 read_state, msecs);
12888 return -ETIMEDOUT;
12889 }
12890 usleep_range(1950, 2050); /* sleep 2ms-ish */
12891 }
12892
12893 log_state_transition(ppd, read_state);
12894 return read_state;
12895}
12896
Mike Marciniszyn77241052015-07-30 15:17:43 -040012897#define CLEAR_STATIC_RATE_CONTROL_SMASK(r) \
12898(r &= ~SEND_CTXT_CHECK_ENABLE_DISALLOW_PBC_STATIC_RATE_CONTROL_SMASK)
12899
12900#define SET_STATIC_RATE_CONTROL_SMASK(r) \
12901(r |= SEND_CTXT_CHECK_ENABLE_DISALLOW_PBC_STATIC_RATE_CONTROL_SMASK)
12902
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -070012903void hfi1_init_ctxt(struct send_context *sc)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012904{
Jubin Johnd125a6c2016-02-14 20:19:49 -080012905 if (sc) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012906 struct hfi1_devdata *dd = sc->dd;
12907 u64 reg;
12908 u8 set = (sc->type == SC_USER ?
12909 HFI1_CAP_IS_USET(STATIC_RATE_CTRL) :
12910 HFI1_CAP_IS_KSET(STATIC_RATE_CTRL));
12911 reg = read_kctxt_csr(dd, sc->hw_context,
12912 SEND_CTXT_CHECK_ENABLE);
12913 if (set)
12914 CLEAR_STATIC_RATE_CONTROL_SMASK(reg);
12915 else
12916 SET_STATIC_RATE_CONTROL_SMASK(reg);
12917 write_kctxt_csr(dd, sc->hw_context,
12918 SEND_CTXT_CHECK_ENABLE, reg);
12919 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040012920}
12921
12922int hfi1_tempsense_rd(struct hfi1_devdata *dd, struct hfi1_temp *temp)
12923{
12924 int ret = 0;
12925 u64 reg;
12926
12927 if (dd->icode != ICODE_RTL_SILICON) {
12928 if (HFI1_CAP_IS_KSET(PRINT_UNIMPL))
12929 dd_dev_info(dd, "%s: tempsense not supported by HW\n",
12930 __func__);
12931 return -EINVAL;
12932 }
12933 reg = read_csr(dd, ASIC_STS_THERM);
12934 temp->curr = ((reg >> ASIC_STS_THERM_CURR_TEMP_SHIFT) &
12935 ASIC_STS_THERM_CURR_TEMP_MASK);
12936 temp->lo_lim = ((reg >> ASIC_STS_THERM_LO_TEMP_SHIFT) &
12937 ASIC_STS_THERM_LO_TEMP_MASK);
12938 temp->hi_lim = ((reg >> ASIC_STS_THERM_HI_TEMP_SHIFT) &
12939 ASIC_STS_THERM_HI_TEMP_MASK);
12940 temp->crit_lim = ((reg >> ASIC_STS_THERM_CRIT_TEMP_SHIFT) &
12941 ASIC_STS_THERM_CRIT_TEMP_MASK);
12942 /* triggers is a 3-bit value - 1 bit per trigger. */
12943 temp->triggers = (u8)((reg >> ASIC_STS_THERM_LOW_SHIFT) & 0x7);
12944
12945 return ret;
12946}
12947
Mike Marciniszyn2d9544a2017-10-23 06:06:16 -070012948/**
12949 * get_int_mask - get 64 bit int mask
12950 * @dd - the devdata
12951 * @i - the csr (relative to CCE_INT_MASK)
12952 *
12953 * Returns the mask with the urgent interrupt mask
12954 * bit clear for kernel receive contexts.
12955 */
12956static u64 get_int_mask(struct hfi1_devdata *dd, u32 i)
12957{
12958 u64 mask = U64_MAX; /* default to no change */
12959
12960 if (i >= (IS_RCVURGENT_START / 64) && i < (IS_RCVURGENT_END / 64)) {
12961 int j = (i - (IS_RCVURGENT_START / 64)) * 64;
12962 int k = !j ? IS_RCVURGENT_START % 64 : 0;
12963
12964 if (j)
12965 j -= IS_RCVURGENT_START % 64;
12966 /* j = 0..dd->first_dyn_alloc_ctxt - 1,k = 0..63 */
12967 for (; j < dd->first_dyn_alloc_ctxt && k < 64; j++, k++)
12968 /* convert to bit in mask and clear */
12969 mask &= ~BIT_ULL(k);
12970 }
12971 return mask;
12972}
12973
Mike Marciniszyn77241052015-07-30 15:17:43 -040012974/* ========================================================================= */
12975
12976/*
12977 * Enable/disable chip from delivering interrupts.
12978 */
12979void set_intr_state(struct hfi1_devdata *dd, u32 enable)
12980{
12981 int i;
12982
12983 /*
12984 * In HFI, the mask needs to be 1 to allow interrupts.
12985 */
12986 if (enable) {
Mike Marciniszyn2d9544a2017-10-23 06:06:16 -070012987 /* enable all interrupts but urgent on kernel contexts */
12988 for (i = 0; i < CCE_NUM_INT_CSRS; i++) {
12989 u64 mask = get_int_mask(dd, i);
12990
12991 write_csr(dd, CCE_INT_MASK + (8 * i), mask);
12992 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040012993
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080012994 init_qsfp_int(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012995 } else {
12996 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080012997 write_csr(dd, CCE_INT_MASK + (8 * i), 0ull);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012998 }
12999}
13000
13001/*
13002 * Clear all interrupt sources on the chip.
13003 */
13004static void clear_all_interrupts(struct hfi1_devdata *dd)
13005{
13006 int i;
13007
13008 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080013009 write_csr(dd, CCE_INT_CLEAR + (8 * i), ~(u64)0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013010
13011 write_csr(dd, CCE_ERR_CLEAR, ~(u64)0);
13012 write_csr(dd, MISC_ERR_CLEAR, ~(u64)0);
13013 write_csr(dd, RCV_ERR_CLEAR, ~(u64)0);
13014 write_csr(dd, SEND_ERR_CLEAR, ~(u64)0);
13015 write_csr(dd, SEND_PIO_ERR_CLEAR, ~(u64)0);
13016 write_csr(dd, SEND_DMA_ERR_CLEAR, ~(u64)0);
13017 write_csr(dd, SEND_EGRESS_ERR_CLEAR, ~(u64)0);
13018 for (i = 0; i < dd->chip_send_contexts; i++)
13019 write_kctxt_csr(dd, i, SEND_CTXT_ERR_CLEAR, ~(u64)0);
13020 for (i = 0; i < dd->chip_sdma_engines; i++)
13021 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_CLEAR, ~(u64)0);
13022
13023 write_csr(dd, DCC_ERR_FLG_CLR, ~(u64)0);
13024 write_csr(dd, DC_LCB_ERR_CLR, ~(u64)0);
13025 write_csr(dd, DC_DC8051_ERR_CLR, ~(u64)0);
13026}
13027
13028/* Move to pcie.c? */
13029static void disable_intx(struct pci_dev *pdev)
13030{
13031 pci_intx(pdev, 0);
13032}
13033
Michael J. Ruhl82a97922018-02-01 10:43:42 -080013034/**
13035 * hfi1_clean_up_interrupts() - Free all IRQ resources
13036 * @dd: valid device data data structure
13037 *
13038 * Free the MSI or INTx IRQs and assoicated PCI resources,
13039 * if they have been allocated.
13040 */
13041void hfi1_clean_up_interrupts(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040013042{
13043 int i;
13044
13045 /* remove irqs - must happen before disabling/turning off */
13046 if (dd->num_msix_entries) {
13047 /* MSI-X */
13048 struct hfi1_msix_entry *me = dd->msix_entries;
13049
13050 for (i = 0; i < dd->num_msix_entries; i++, me++) {
Jubin Johnd125a6c2016-02-14 20:19:49 -080013051 if (!me->arg) /* => no irq, no affinity */
Mitko Haralanov957558c2016-02-03 14:33:40 -080013052 continue;
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013053 hfi1_put_irq_affinity(dd, me);
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013054 pci_free_irq(dd->pcidev, i, me->arg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013055 }
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013056
13057 /* clean structures */
13058 kfree(dd->msix_entries);
13059 dd->msix_entries = NULL;
13060 dd->num_msix_entries = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013061 } else {
13062 /* INTx */
13063 if (dd->requested_intx_irq) {
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013064 pci_free_irq(dd->pcidev, 0, dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013065 dd->requested_intx_irq = 0;
13066 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040013067 disable_intx(dd->pcidev);
13068 }
13069
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013070 pci_free_irq_vectors(dd->pcidev);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013071}
13072
13073/*
13074 * Remap the interrupt source from the general handler to the given MSI-X
13075 * interrupt.
13076 */
13077static void remap_intr(struct hfi1_devdata *dd, int isrc, int msix_intr)
13078{
13079 u64 reg;
13080 int m, n;
13081
13082 /* clear from the handled mask of the general interrupt */
13083 m = isrc / 64;
13084 n = isrc % 64;
Dennis Dalessandrobc54f672017-05-29 17:18:14 -070013085 if (likely(m < CCE_NUM_INT_CSRS)) {
13086 dd->gi_mask[m] &= ~((u64)1 << n);
13087 } else {
13088 dd_dev_err(dd, "remap interrupt err\n");
13089 return;
13090 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040013091
13092 /* direct the chip source to the given MSI-X interrupt */
13093 m = isrc / 8;
13094 n = isrc % 8;
Jubin John8638b772016-02-14 20:19:24 -080013095 reg = read_csr(dd, CCE_INT_MAP + (8 * m));
13096 reg &= ~((u64)0xff << (8 * n));
13097 reg |= ((u64)msix_intr & 0xff) << (8 * n);
13098 write_csr(dd, CCE_INT_MAP + (8 * m), reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013099}
13100
13101static void remap_sdma_interrupts(struct hfi1_devdata *dd,
13102 int engine, int msix_intr)
13103{
13104 /*
13105 * SDMA engine interrupt sources grouped by type, rather than
13106 * engine. Per-engine interrupts are as follows:
13107 * SDMA
13108 * SDMAProgress
13109 * SDMAIdle
13110 */
Jubin John8638b772016-02-14 20:19:24 -080013111 remap_intr(dd, IS_SDMA_START + 0 * TXE_NUM_SDMA_ENGINES + engine,
Jubin John17fb4f22016-02-14 20:21:52 -080013112 msix_intr);
Jubin John8638b772016-02-14 20:19:24 -080013113 remap_intr(dd, IS_SDMA_START + 1 * TXE_NUM_SDMA_ENGINES + engine,
Jubin John17fb4f22016-02-14 20:21:52 -080013114 msix_intr);
Jubin John8638b772016-02-14 20:19:24 -080013115 remap_intr(dd, IS_SDMA_START + 2 * TXE_NUM_SDMA_ENGINES + engine,
Jubin John17fb4f22016-02-14 20:21:52 -080013116 msix_intr);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013117}
13118
Mike Marciniszyn77241052015-07-30 15:17:43 -040013119static int request_intx_irq(struct hfi1_devdata *dd)
13120{
13121 int ret;
13122
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013123 ret = pci_request_irq(dd->pcidev, 0, general_interrupt, NULL, dd,
13124 DRIVER_NAME "_%d", dd->unit);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013125 if (ret)
13126 dd_dev_err(dd, "unable to request INTx interrupt, err %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -080013127 ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013128 else
13129 dd->requested_intx_irq = 1;
13130 return ret;
13131}
13132
13133static int request_msix_irqs(struct hfi1_devdata *dd)
13134{
Mike Marciniszyn77241052015-07-30 15:17:43 -040013135 int first_general, last_general;
13136 int first_sdma, last_sdma;
13137 int first_rx, last_rx;
Mitko Haralanov957558c2016-02-03 14:33:40 -080013138 int i, ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013139
13140 /* calculate the ranges we are going to use */
13141 first_general = 0;
Jubin Johnf3ff8182016-02-14 20:20:50 -080013142 last_general = first_general + 1;
13143 first_sdma = last_general;
13144 last_sdma = first_sdma + dd->num_sdma;
13145 first_rx = last_sdma;
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013146 last_rx = first_rx + dd->n_krcv_queues + dd->num_vnic_contexts;
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013147
13148 /* VNIC MSIx interrupts get mapped when VNIC contexts are created */
13149 dd->first_dyn_msix_idx = first_rx + dd->n_krcv_queues;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013150
13151 /*
Mike Marciniszyn77241052015-07-30 15:17:43 -040013152 * Sanity check - the code expects all SDMA chip source
13153 * interrupts to be in the same CSR, starting at bit 0. Verify
13154 * that this is true by checking the bit location of the start.
13155 */
13156 BUILD_BUG_ON(IS_SDMA_START % 64);
13157
13158 for (i = 0; i < dd->num_msix_entries; i++) {
13159 struct hfi1_msix_entry *me = &dd->msix_entries[i];
13160 const char *err_info;
13161 irq_handler_t handler;
Dean Luickf4f30031c2015-10-26 10:28:44 -040013162 irq_handler_t thread = NULL;
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013163 void *arg = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013164 int idx;
13165 struct hfi1_ctxtdata *rcd = NULL;
13166 struct sdma_engine *sde = NULL;
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013167 char name[MAX_NAME_SIZE];
Mike Marciniszyn77241052015-07-30 15:17:43 -040013168
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013169 /* obtain the arguments to pci_request_irq */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013170 if (first_general <= i && i < last_general) {
13171 idx = i - first_general;
13172 handler = general_interrupt;
13173 arg = dd;
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013174 snprintf(name, sizeof(name),
Jubin John98050712015-11-16 21:59:27 -050013175 DRIVER_NAME "_%d", dd->unit);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013176 err_info = "general";
Mitko Haralanov957558c2016-02-03 14:33:40 -080013177 me->type = IRQ_GENERAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013178 } else if (first_sdma <= i && i < last_sdma) {
13179 idx = i - first_sdma;
13180 sde = &dd->per_sdma[idx];
13181 handler = sdma_interrupt;
13182 arg = sde;
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013183 snprintf(name, sizeof(name),
Jubin John98050712015-11-16 21:59:27 -050013184 DRIVER_NAME "_%d sdma%d", dd->unit, idx);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013185 err_info = "sdma";
13186 remap_sdma_interrupts(dd, idx, i);
Mitko Haralanov957558c2016-02-03 14:33:40 -080013187 me->type = IRQ_SDMA;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013188 } else if (first_rx <= i && i < last_rx) {
13189 idx = i - first_rx;
Michael J. Ruhld59075a2017-09-26 07:01:16 -070013190 rcd = hfi1_rcd_get_by_index_safe(dd, idx);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013191 if (rcd) {
13192 /*
13193 * Set the interrupt register and mask for this
13194 * context's interrupt.
13195 */
13196 rcd->ireg = (IS_RCVAVAIL_START + idx) / 64;
13197 rcd->imask = ((u64)1) <<
13198 ((IS_RCVAVAIL_START + idx) % 64);
13199 handler = receive_context_interrupt;
13200 thread = receive_context_thread;
13201 arg = rcd;
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013202 snprintf(name, sizeof(name),
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013203 DRIVER_NAME "_%d kctxt%d",
13204 dd->unit, idx);
13205 err_info = "receive context";
13206 remap_intr(dd, IS_RCVAVAIL_START + idx, i);
13207 me->type = IRQ_RCVCTXT;
13208 rcd->msix_intr = i;
Michael J. Ruhld295dbe2017-08-04 13:52:44 -070013209 hfi1_rcd_put(rcd);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013210 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040013211 } else {
13212 /* not in our expected range - complain, then
Jubin John4d114fd2016-02-14 20:21:43 -080013213 * ignore it
13214 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013215 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013216 "Unexpected extra MSI-X interrupt %d\n", i);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013217 continue;
13218 }
13219 /* no argument, no interrupt */
Jubin Johnd125a6c2016-02-14 20:19:49 -080013220 if (!arg)
Mike Marciniszyn77241052015-07-30 15:17:43 -040013221 continue;
13222 /* make sure the name is terminated */
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013223 name[sizeof(name) - 1] = 0;
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013224 me->irq = pci_irq_vector(dd->pcidev, i);
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013225 ret = pci_request_irq(dd->pcidev, i, handler, thread, arg,
13226 name);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013227 if (ret) {
13228 dd_dev_err(dd,
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013229 "unable to allocate %s interrupt, irq %d, index %d, err %d\n",
13230 err_info, me->irq, idx, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013231 return ret;
13232 }
13233 /*
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013234 * assign arg after pci_request_irq call, so it will be
Mike Marciniszyn77241052015-07-30 15:17:43 -040013235 * cleaned up
13236 */
13237 me->arg = arg;
13238
Mitko Haralanov957558c2016-02-03 14:33:40 -080013239 ret = hfi1_get_irq_affinity(dd, me);
13240 if (ret)
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013241 dd_dev_err(dd, "unable to pin IRQ %d\n", ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013242 }
13243
Mike Marciniszyn77241052015-07-30 15:17:43 -040013244 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013245}
13246
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013247void hfi1_vnic_synchronize_irq(struct hfi1_devdata *dd)
13248{
13249 int i;
13250
13251 if (!dd->num_msix_entries) {
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013252 synchronize_irq(pci_irq_vector(dd->pcidev, 0));
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013253 return;
13254 }
13255
13256 for (i = 0; i < dd->vnic.num_ctxt; i++) {
13257 struct hfi1_ctxtdata *rcd = dd->vnic.ctxt[i];
13258 struct hfi1_msix_entry *me = &dd->msix_entries[rcd->msix_intr];
13259
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013260 synchronize_irq(me->irq);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013261 }
13262}
13263
13264void hfi1_reset_vnic_msix_info(struct hfi1_ctxtdata *rcd)
13265{
13266 struct hfi1_devdata *dd = rcd->dd;
13267 struct hfi1_msix_entry *me = &dd->msix_entries[rcd->msix_intr];
13268
13269 if (!me->arg) /* => no irq, no affinity */
13270 return;
13271
13272 hfi1_put_irq_affinity(dd, me);
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013273 pci_free_irq(dd->pcidev, rcd->msix_intr, me->arg);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013274
13275 me->arg = NULL;
13276}
13277
13278void hfi1_set_vnic_msix_info(struct hfi1_ctxtdata *rcd)
13279{
13280 struct hfi1_devdata *dd = rcd->dd;
13281 struct hfi1_msix_entry *me;
13282 int idx = rcd->ctxt;
13283 void *arg = rcd;
13284 int ret;
13285
13286 rcd->msix_intr = dd->vnic.msix_idx++;
13287 me = &dd->msix_entries[rcd->msix_intr];
13288
13289 /*
13290 * Set the interrupt register and mask for this
13291 * context's interrupt.
13292 */
13293 rcd->ireg = (IS_RCVAVAIL_START + idx) / 64;
13294 rcd->imask = ((u64)1) <<
13295 ((IS_RCVAVAIL_START + idx) % 64);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013296 me->type = IRQ_RCVCTXT;
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013297 me->irq = pci_irq_vector(dd->pcidev, rcd->msix_intr);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013298 remap_intr(dd, IS_RCVAVAIL_START + idx, rcd->msix_intr);
13299
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013300 ret = pci_request_irq(dd->pcidev, rcd->msix_intr,
13301 receive_context_interrupt,
13302 receive_context_thread, arg,
13303 DRIVER_NAME "_%d kctxt%d", dd->unit, idx);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013304 if (ret) {
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013305 dd_dev_err(dd, "vnic irq request (irq %d, idx %d) fail %d\n",
13306 me->irq, idx, ret);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013307 return;
13308 }
13309 /*
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013310 * assign arg after pci_request_irq call, so it will be
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013311 * cleaned up
13312 */
13313 me->arg = arg;
13314
13315 ret = hfi1_get_irq_affinity(dd, me);
13316 if (ret) {
13317 dd_dev_err(dd,
13318 "unable to pin IRQ %d\n", ret);
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013319 pci_free_irq(dd->pcidev, rcd->msix_intr, me->arg);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013320 }
13321}
13322
Mike Marciniszyn77241052015-07-30 15:17:43 -040013323/*
13324 * Set the general handler to accept all interrupts, remap all
13325 * chip interrupts back to MSI-X 0.
13326 */
13327static void reset_interrupts(struct hfi1_devdata *dd)
13328{
13329 int i;
13330
13331 /* all interrupts handled by the general handler */
13332 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
13333 dd->gi_mask[i] = ~(u64)0;
13334
13335 /* all chip interrupts map to MSI-X 0 */
13336 for (i = 0; i < CCE_NUM_INT_MAP_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080013337 write_csr(dd, CCE_INT_MAP + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013338}
13339
13340static int set_up_interrupts(struct hfi1_devdata *dd)
13341{
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013342 u32 total;
13343 int ret, request;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013344 int single_interrupt = 0; /* we expect to have all the interrupts */
13345
13346 /*
13347 * Interrupt count:
13348 * 1 general, "slow path" interrupt (includes the SDMA engines
13349 * slow source, SDMACleanupDone)
13350 * N interrupts - one per used SDMA engine
13351 * M interrupt - one per kernel receive context
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013352 * V interrupt - one for each VNIC context
Mike Marciniszyn77241052015-07-30 15:17:43 -040013353 */
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013354 total = 1 + dd->num_sdma + dd->n_krcv_queues + dd->num_vnic_contexts;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013355
Mike Marciniszyn77241052015-07-30 15:17:43 -040013356 /* ask for MSI-X interrupts */
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013357 request = request_msix(dd, total);
13358 if (request < 0) {
13359 ret = request;
13360 goto fail;
13361 } else if (request == 0) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013362 /* using INTx */
13363 /* dd->num_msix_entries already zero */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013364 single_interrupt = 1;
13365 dd_dev_err(dd, "MSI-X failed, using INTx interrupts\n");
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013366 } else if (request < total) {
13367 /* using MSI-X, with reduced interrupts */
13368 dd_dev_err(dd, "reduced interrupt found, wanted %u, got %u\n",
13369 total, request);
13370 ret = -EINVAL;
13371 goto fail;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013372 } else {
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013373 dd->msix_entries = kcalloc(total, sizeof(*dd->msix_entries),
13374 GFP_KERNEL);
13375 if (!dd->msix_entries) {
13376 ret = -ENOMEM;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013377 goto fail;
13378 }
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013379 /* using MSI-X */
13380 dd->num_msix_entries = total;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013381 dd_dev_info(dd, "%u MSI-X interrupts allocated\n", total);
13382 }
13383
13384 /* mask all interrupts */
13385 set_intr_state(dd, 0);
13386 /* clear all pending interrupts */
13387 clear_all_interrupts(dd);
13388
13389 /* reset general handler mask, chip MSI-X mappings */
13390 reset_interrupts(dd);
13391
13392 if (single_interrupt)
13393 ret = request_intx_irq(dd);
13394 else
13395 ret = request_msix_irqs(dd);
13396 if (ret)
13397 goto fail;
13398
13399 return 0;
13400
13401fail:
Michael J. Ruhl82a97922018-02-01 10:43:42 -080013402 hfi1_clean_up_interrupts(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013403 return ret;
13404}
13405
13406/*
13407 * Set up context values in dd. Sets:
13408 *
13409 * num_rcv_contexts - number of contexts being used
13410 * n_krcv_queues - number of kernel contexts
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013411 * first_dyn_alloc_ctxt - first dynamically allocated context
13412 * in array of contexts
Mike Marciniszyn77241052015-07-30 15:17:43 -040013413 * freectxts - number of free user contexts
13414 * num_send_contexts - number of PIO send contexts being used
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013415 * num_vnic_contexts - number of contexts reserved for VNIC
Mike Marciniszyn77241052015-07-30 15:17:43 -040013416 */
13417static int set_up_context_variables(struct hfi1_devdata *dd)
13418{
Harish Chegondi429b6a72016-08-31 07:24:40 -070013419 unsigned long num_kernel_contexts;
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013420 u16 num_vnic_contexts = HFI1_NUM_VNIC_CTXT;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013421 int total_contexts;
13422 int ret;
13423 unsigned ngroups;
Dean Luick8f000f72016-04-12 11:32:06 -070013424 int qos_rmt_count;
13425 int user_rmt_reduced;
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013426 u32 n_usr_ctxts;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013427
13428 /*
Dean Luick33a9eb52016-04-12 10:50:22 -070013429 * Kernel receive contexts:
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050013430 * - Context 0 - control context (VL15/multicast/error)
Dean Luick33a9eb52016-04-12 10:50:22 -070013431 * - Context 1 - first kernel context
13432 * - Context 2 - second kernel context
13433 * ...
Mike Marciniszyn77241052015-07-30 15:17:43 -040013434 */
13435 if (n_krcvqs)
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050013436 /*
Dean Luick33a9eb52016-04-12 10:50:22 -070013437 * n_krcvqs is the sum of module parameter kernel receive
13438 * contexts, krcvqs[]. It does not include the control
13439 * context, so add that.
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050013440 */
Dean Luick33a9eb52016-04-12 10:50:22 -070013441 num_kernel_contexts = n_krcvqs + 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013442 else
Harish Chegondi8784ac02016-07-25 13:38:50 -070013443 num_kernel_contexts = DEFAULT_KRCVQS + 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013444 /*
13445 * Every kernel receive context needs an ACK send context.
13446 * one send context is allocated for each VL{0-7} and VL15
13447 */
13448 if (num_kernel_contexts > (dd->chip_send_contexts - num_vls - 1)) {
13449 dd_dev_err(dd,
Harish Chegondi429b6a72016-08-31 07:24:40 -070013450 "Reducing # kernel rcv contexts to: %d, from %lu\n",
Mike Marciniszyn77241052015-07-30 15:17:43 -040013451 (int)(dd->chip_send_contexts - num_vls - 1),
Harish Chegondi429b6a72016-08-31 07:24:40 -070013452 num_kernel_contexts);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013453 num_kernel_contexts = dd->chip_send_contexts - num_vls - 1;
13454 }
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013455
13456 /* Accommodate VNIC contexts if possible */
13457 if ((num_kernel_contexts + num_vnic_contexts) > dd->chip_rcv_contexts) {
13458 dd_dev_err(dd, "No receive contexts available for VNIC\n");
13459 num_vnic_contexts = 0;
13460 }
13461 total_contexts = num_kernel_contexts + num_vnic_contexts;
13462
Mike Marciniszyn77241052015-07-30 15:17:43 -040013463 /*
Jubin John0852d242016-04-12 11:30:08 -070013464 * User contexts:
13465 * - default to 1 user context per real (non-HT) CPU core if
13466 * num_user_contexts is negative
Mike Marciniszyn77241052015-07-30 15:17:43 -040013467 */
Sebastian Sanchez2ce6bf22015-12-11 08:44:48 -050013468 if (num_user_contexts < 0)
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013469 n_usr_ctxts = cpumask_weight(&node_affinity.real_cpu_mask);
13470 else
13471 n_usr_ctxts = num_user_contexts;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013472 /*
13473 * Adjust the counts given a global max.
13474 */
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013475 if (total_contexts + n_usr_ctxts > dd->chip_rcv_contexts) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013476 dd_dev_err(dd,
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013477 "Reducing # user receive contexts to: %d, from %u\n",
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013478 (int)(dd->chip_rcv_contexts - total_contexts),
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013479 n_usr_ctxts);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013480 /* recalculate */
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013481 n_usr_ctxts = dd->chip_rcv_contexts - total_contexts;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013482 }
13483
Dean Luick8f000f72016-04-12 11:32:06 -070013484 /* each user context requires an entry in the RMT */
13485 qos_rmt_count = qos_rmt_entries(dd, NULL, NULL);
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013486 if (qos_rmt_count + n_usr_ctxts > NUM_MAP_ENTRIES) {
Dean Luick8f000f72016-04-12 11:32:06 -070013487 user_rmt_reduced = NUM_MAP_ENTRIES - qos_rmt_count;
13488 dd_dev_err(dd,
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013489 "RMT size is reducing the number of user receive contexts from %u to %d\n",
13490 n_usr_ctxts,
Dean Luick8f000f72016-04-12 11:32:06 -070013491 user_rmt_reduced);
13492 /* recalculate */
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013493 n_usr_ctxts = user_rmt_reduced;
Dean Luick8f000f72016-04-12 11:32:06 -070013494 }
13495
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013496 total_contexts += n_usr_ctxts;
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013497
13498 /* the first N are kernel contexts, the rest are user/vnic contexts */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013499 dd->num_rcv_contexts = total_contexts;
13500 dd->n_krcv_queues = num_kernel_contexts;
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013501 dd->first_dyn_alloc_ctxt = num_kernel_contexts;
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013502 dd->num_vnic_contexts = num_vnic_contexts;
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013503 dd->num_user_contexts = n_usr_ctxts;
13504 dd->freectxts = n_usr_ctxts;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013505 dd_dev_info(dd,
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013506 "rcv contexts: chip %d, used %d (kernel %d, vnic %u, user %u)\n",
Jubin John17fb4f22016-02-14 20:21:52 -080013507 (int)dd->chip_rcv_contexts,
13508 (int)dd->num_rcv_contexts,
13509 (int)dd->n_krcv_queues,
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013510 dd->num_vnic_contexts,
13511 dd->num_user_contexts);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013512
13513 /*
13514 * Receive array allocation:
13515 * All RcvArray entries are divided into groups of 8. This
13516 * is required by the hardware and will speed up writes to
13517 * consecutive entries by using write-combining of the entire
13518 * cacheline.
13519 *
13520 * The number of groups are evenly divided among all contexts.
13521 * any left over groups will be given to the first N user
13522 * contexts.
13523 */
13524 dd->rcv_entries.group_size = RCV_INCREMENT;
13525 ngroups = dd->chip_rcv_array_count / dd->rcv_entries.group_size;
13526 dd->rcv_entries.ngroups = ngroups / dd->num_rcv_contexts;
13527 dd->rcv_entries.nctxt_extra = ngroups -
13528 (dd->num_rcv_contexts * dd->rcv_entries.ngroups);
13529 dd_dev_info(dd, "RcvArray groups %u, ctxts extra %u\n",
13530 dd->rcv_entries.ngroups,
13531 dd->rcv_entries.nctxt_extra);
13532 if (dd->rcv_entries.ngroups * dd->rcv_entries.group_size >
13533 MAX_EAGER_ENTRIES * 2) {
13534 dd->rcv_entries.ngroups = (MAX_EAGER_ENTRIES * 2) /
13535 dd->rcv_entries.group_size;
13536 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013537 "RcvArray group count too high, change to %u\n",
13538 dd->rcv_entries.ngroups);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013539 dd->rcv_entries.nctxt_extra = 0;
13540 }
13541 /*
13542 * PIO send contexts
13543 */
13544 ret = init_sc_pools_and_sizes(dd);
13545 if (ret >= 0) { /* success */
13546 dd->num_send_contexts = ret;
13547 dd_dev_info(
13548 dd,
Jianxin Xiong44306f12016-04-12 11:30:28 -070013549 "send contexts: chip %d, used %d (kernel %d, ack %d, user %d, vl15 %d)\n",
Mike Marciniszyn77241052015-07-30 15:17:43 -040013550 dd->chip_send_contexts,
13551 dd->num_send_contexts,
13552 dd->sc_sizes[SC_KERNEL].count,
13553 dd->sc_sizes[SC_ACK].count,
Jianxin Xiong44306f12016-04-12 11:30:28 -070013554 dd->sc_sizes[SC_USER].count,
13555 dd->sc_sizes[SC_VL15].count);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013556 ret = 0; /* success */
13557 }
13558
13559 return ret;
13560}
13561
13562/*
13563 * Set the device/port partition key table. The MAD code
13564 * will ensure that, at least, the partial management
13565 * partition key is present in the table.
13566 */
13567static void set_partition_keys(struct hfi1_pportdata *ppd)
13568{
13569 struct hfi1_devdata *dd = ppd->dd;
13570 u64 reg = 0;
13571 int i;
13572
13573 dd_dev_info(dd, "Setting partition keys\n");
13574 for (i = 0; i < hfi1_get_npkeys(dd); i++) {
13575 reg |= (ppd->pkeys[i] &
13576 RCV_PARTITION_KEY_PARTITION_KEY_A_MASK) <<
13577 ((i % 4) *
13578 RCV_PARTITION_KEY_PARTITION_KEY_B_SHIFT);
13579 /* Each register holds 4 PKey values. */
13580 if ((i % 4) == 3) {
13581 write_csr(dd, RCV_PARTITION_KEY +
13582 ((i - 3) * 2), reg);
13583 reg = 0;
13584 }
13585 }
13586
13587 /* Always enable HW pkeys check when pkeys table is set */
13588 add_rcvctrl(dd, RCV_CTRL_RCV_PARTITION_KEY_ENABLE_SMASK);
13589}
13590
13591/*
13592 * These CSRs and memories are uninitialized on reset and must be
13593 * written before reading to set the ECC/parity bits.
13594 *
13595 * NOTE: All user context CSRs that are not mmaped write-only
13596 * (e.g. the TID flows) must be initialized even if the driver never
13597 * reads them.
13598 */
13599static void write_uninitialized_csrs_and_memories(struct hfi1_devdata *dd)
13600{
13601 int i, j;
13602
13603 /* CceIntMap */
13604 for (i = 0; i < CCE_NUM_INT_MAP_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080013605 write_csr(dd, CCE_INT_MAP + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013606
13607 /* SendCtxtCreditReturnAddr */
13608 for (i = 0; i < dd->chip_send_contexts; i++)
13609 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_RETURN_ADDR, 0);
13610
13611 /* PIO Send buffers */
13612 /* SDMA Send buffers */
Jubin John4d114fd2016-02-14 20:21:43 -080013613 /*
13614 * These are not normally read, and (presently) have no method
13615 * to be read, so are not pre-initialized
13616 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013617
13618 /* RcvHdrAddr */
13619 /* RcvHdrTailAddr */
13620 /* RcvTidFlowTable */
13621 for (i = 0; i < dd->chip_rcv_contexts; i++) {
13622 write_kctxt_csr(dd, i, RCV_HDR_ADDR, 0);
13623 write_kctxt_csr(dd, i, RCV_HDR_TAIL_ADDR, 0);
13624 for (j = 0; j < RXE_NUM_TID_FLOWS; j++)
Jubin John8638b772016-02-14 20:19:24 -080013625 write_uctxt_csr(dd, i, RCV_TID_FLOW_TABLE + (8 * j), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013626 }
13627
13628 /* RcvArray */
13629 for (i = 0; i < dd->chip_rcv_array_count; i++)
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -070013630 hfi1_put_tid(dd, i, PT_INVALID_FLUSH, 0, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013631
13632 /* RcvQPMapTable */
13633 for (i = 0; i < 32; i++)
13634 write_csr(dd, RCV_QP_MAP_TABLE + (8 * i), 0);
13635}
13636
13637/*
13638 * Use the ctrl_bits in CceCtrl to clear the status_bits in CceStatus.
13639 */
13640static void clear_cce_status(struct hfi1_devdata *dd, u64 status_bits,
13641 u64 ctrl_bits)
13642{
13643 unsigned long timeout;
13644 u64 reg;
13645
13646 /* is the condition present? */
13647 reg = read_csr(dd, CCE_STATUS);
13648 if ((reg & status_bits) == 0)
13649 return;
13650
13651 /* clear the condition */
13652 write_csr(dd, CCE_CTRL, ctrl_bits);
13653
13654 /* wait for the condition to clear */
13655 timeout = jiffies + msecs_to_jiffies(CCE_STATUS_TIMEOUT);
13656 while (1) {
13657 reg = read_csr(dd, CCE_STATUS);
13658 if ((reg & status_bits) == 0)
13659 return;
13660 if (time_after(jiffies, timeout)) {
13661 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013662 "Timeout waiting for CceStatus to clear bits 0x%llx, remaining 0x%llx\n",
13663 status_bits, reg & status_bits);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013664 return;
13665 }
13666 udelay(1);
13667 }
13668}
13669
13670/* set CCE CSRs to chip reset defaults */
13671static void reset_cce_csrs(struct hfi1_devdata *dd)
13672{
13673 int i;
13674
13675 /* CCE_REVISION read-only */
13676 /* CCE_REVISION2 read-only */
13677 /* CCE_CTRL - bits clear automatically */
13678 /* CCE_STATUS read-only, use CceCtrl to clear */
13679 clear_cce_status(dd, ALL_FROZE, CCE_CTRL_SPC_UNFREEZE_SMASK);
13680 clear_cce_status(dd, ALL_TXE_PAUSE, CCE_CTRL_TXE_RESUME_SMASK);
13681 clear_cce_status(dd, ALL_RXE_PAUSE, CCE_CTRL_RXE_RESUME_SMASK);
13682 for (i = 0; i < CCE_NUM_SCRATCH; i++)
13683 write_csr(dd, CCE_SCRATCH + (8 * i), 0);
13684 /* CCE_ERR_STATUS read-only */
13685 write_csr(dd, CCE_ERR_MASK, 0);
13686 write_csr(dd, CCE_ERR_CLEAR, ~0ull);
13687 /* CCE_ERR_FORCE leave alone */
13688 for (i = 0; i < CCE_NUM_32_BIT_COUNTERS; i++)
13689 write_csr(dd, CCE_COUNTER_ARRAY32 + (8 * i), 0);
13690 write_csr(dd, CCE_DC_CTRL, CCE_DC_CTRL_RESETCSR);
13691 /* CCE_PCIE_CTRL leave alone */
13692 for (i = 0; i < CCE_NUM_MSIX_VECTORS; i++) {
13693 write_csr(dd, CCE_MSIX_TABLE_LOWER + (8 * i), 0);
13694 write_csr(dd, CCE_MSIX_TABLE_UPPER + (8 * i),
Jubin John17fb4f22016-02-14 20:21:52 -080013695 CCE_MSIX_TABLE_UPPER_RESETCSR);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013696 }
13697 for (i = 0; i < CCE_NUM_MSIX_PBAS; i++) {
13698 /* CCE_MSIX_PBA read-only */
13699 write_csr(dd, CCE_MSIX_INT_GRANTED, ~0ull);
13700 write_csr(dd, CCE_MSIX_VEC_CLR_WITHOUT_INT, ~0ull);
13701 }
13702 for (i = 0; i < CCE_NUM_INT_MAP_CSRS; i++)
13703 write_csr(dd, CCE_INT_MAP, 0);
13704 for (i = 0; i < CCE_NUM_INT_CSRS; i++) {
13705 /* CCE_INT_STATUS read-only */
13706 write_csr(dd, CCE_INT_MASK + (8 * i), 0);
13707 write_csr(dd, CCE_INT_CLEAR + (8 * i), ~0ull);
13708 /* CCE_INT_FORCE leave alone */
13709 /* CCE_INT_BLOCKED read-only */
13710 }
13711 for (i = 0; i < CCE_NUM_32_BIT_INT_COUNTERS; i++)
13712 write_csr(dd, CCE_INT_COUNTER_ARRAY32 + (8 * i), 0);
13713}
13714
Mike Marciniszyn77241052015-07-30 15:17:43 -040013715/* set MISC CSRs to chip reset defaults */
13716static void reset_misc_csrs(struct hfi1_devdata *dd)
13717{
13718 int i;
13719
13720 for (i = 0; i < 32; i++) {
13721 write_csr(dd, MISC_CFG_RSA_R2 + (8 * i), 0);
13722 write_csr(dd, MISC_CFG_RSA_SIGNATURE + (8 * i), 0);
13723 write_csr(dd, MISC_CFG_RSA_MODULUS + (8 * i), 0);
13724 }
Jubin John4d114fd2016-02-14 20:21:43 -080013725 /*
13726 * MISC_CFG_SHA_PRELOAD leave alone - always reads 0 and can
13727 * only be written 128-byte chunks
13728 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013729 /* init RSA engine to clear lingering errors */
13730 write_csr(dd, MISC_CFG_RSA_CMD, 1);
13731 write_csr(dd, MISC_CFG_RSA_MU, 0);
13732 write_csr(dd, MISC_CFG_FW_CTRL, 0);
13733 /* MISC_STS_8051_DIGEST read-only */
13734 /* MISC_STS_SBM_DIGEST read-only */
13735 /* MISC_STS_PCIE_DIGEST read-only */
13736 /* MISC_STS_FAB_DIGEST read-only */
13737 /* MISC_ERR_STATUS read-only */
13738 write_csr(dd, MISC_ERR_MASK, 0);
13739 write_csr(dd, MISC_ERR_CLEAR, ~0ull);
13740 /* MISC_ERR_FORCE leave alone */
13741}
13742
13743/* set TXE CSRs to chip reset defaults */
13744static void reset_txe_csrs(struct hfi1_devdata *dd)
13745{
13746 int i;
13747
13748 /*
13749 * TXE Kernel CSRs
13750 */
13751 write_csr(dd, SEND_CTRL, 0);
13752 __cm_reset(dd, 0); /* reset CM internal state */
13753 /* SEND_CONTEXTS read-only */
13754 /* SEND_DMA_ENGINES read-only */
13755 /* SEND_PIO_MEM_SIZE read-only */
13756 /* SEND_DMA_MEM_SIZE read-only */
13757 write_csr(dd, SEND_HIGH_PRIORITY_LIMIT, 0);
13758 pio_reset_all(dd); /* SEND_PIO_INIT_CTXT */
13759 /* SEND_PIO_ERR_STATUS read-only */
13760 write_csr(dd, SEND_PIO_ERR_MASK, 0);
13761 write_csr(dd, SEND_PIO_ERR_CLEAR, ~0ull);
13762 /* SEND_PIO_ERR_FORCE leave alone */
13763 /* SEND_DMA_ERR_STATUS read-only */
13764 write_csr(dd, SEND_DMA_ERR_MASK, 0);
13765 write_csr(dd, SEND_DMA_ERR_CLEAR, ~0ull);
13766 /* SEND_DMA_ERR_FORCE leave alone */
13767 /* SEND_EGRESS_ERR_STATUS read-only */
13768 write_csr(dd, SEND_EGRESS_ERR_MASK, 0);
13769 write_csr(dd, SEND_EGRESS_ERR_CLEAR, ~0ull);
13770 /* SEND_EGRESS_ERR_FORCE leave alone */
13771 write_csr(dd, SEND_BTH_QP, 0);
13772 write_csr(dd, SEND_STATIC_RATE_CONTROL, 0);
13773 write_csr(dd, SEND_SC2VLT0, 0);
13774 write_csr(dd, SEND_SC2VLT1, 0);
13775 write_csr(dd, SEND_SC2VLT2, 0);
13776 write_csr(dd, SEND_SC2VLT3, 0);
13777 write_csr(dd, SEND_LEN_CHECK0, 0);
13778 write_csr(dd, SEND_LEN_CHECK1, 0);
13779 /* SEND_ERR_STATUS read-only */
13780 write_csr(dd, SEND_ERR_MASK, 0);
13781 write_csr(dd, SEND_ERR_CLEAR, ~0ull);
13782 /* SEND_ERR_FORCE read-only */
13783 for (i = 0; i < VL_ARB_LOW_PRIO_TABLE_SIZE; i++)
Jubin John8638b772016-02-14 20:19:24 -080013784 write_csr(dd, SEND_LOW_PRIORITY_LIST + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013785 for (i = 0; i < VL_ARB_HIGH_PRIO_TABLE_SIZE; i++)
Jubin John8638b772016-02-14 20:19:24 -080013786 write_csr(dd, SEND_HIGH_PRIORITY_LIST + (8 * i), 0);
13787 for (i = 0; i < dd->chip_send_contexts / NUM_CONTEXTS_PER_SET; i++)
13788 write_csr(dd, SEND_CONTEXT_SET_CTRL + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013789 for (i = 0; i < TXE_NUM_32_BIT_COUNTER; i++)
Jubin John8638b772016-02-14 20:19:24 -080013790 write_csr(dd, SEND_COUNTER_ARRAY32 + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013791 for (i = 0; i < TXE_NUM_64_BIT_COUNTER; i++)
Jubin John8638b772016-02-14 20:19:24 -080013792 write_csr(dd, SEND_COUNTER_ARRAY64 + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013793 write_csr(dd, SEND_CM_CTRL, SEND_CM_CTRL_RESETCSR);
Jubin John17fb4f22016-02-14 20:21:52 -080013794 write_csr(dd, SEND_CM_GLOBAL_CREDIT, SEND_CM_GLOBAL_CREDIT_RESETCSR);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013795 /* SEND_CM_CREDIT_USED_STATUS read-only */
13796 write_csr(dd, SEND_CM_TIMER_CTRL, 0);
13797 write_csr(dd, SEND_CM_LOCAL_AU_TABLE0_TO3, 0);
13798 write_csr(dd, SEND_CM_LOCAL_AU_TABLE4_TO7, 0);
13799 write_csr(dd, SEND_CM_REMOTE_AU_TABLE0_TO3, 0);
13800 write_csr(dd, SEND_CM_REMOTE_AU_TABLE4_TO7, 0);
13801 for (i = 0; i < TXE_NUM_DATA_VL; i++)
Jubin John8638b772016-02-14 20:19:24 -080013802 write_csr(dd, SEND_CM_CREDIT_VL + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013803 write_csr(dd, SEND_CM_CREDIT_VL15, 0);
13804 /* SEND_CM_CREDIT_USED_VL read-only */
13805 /* SEND_CM_CREDIT_USED_VL15 read-only */
13806 /* SEND_EGRESS_CTXT_STATUS read-only */
13807 /* SEND_EGRESS_SEND_DMA_STATUS read-only */
13808 write_csr(dd, SEND_EGRESS_ERR_INFO, ~0ull);
13809 /* SEND_EGRESS_ERR_INFO read-only */
13810 /* SEND_EGRESS_ERR_SOURCE read-only */
13811
13812 /*
13813 * TXE Per-Context CSRs
13814 */
13815 for (i = 0; i < dd->chip_send_contexts; i++) {
13816 write_kctxt_csr(dd, i, SEND_CTXT_CTRL, 0);
13817 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_CTRL, 0);
13818 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_RETURN_ADDR, 0);
13819 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_FORCE, 0);
13820 write_kctxt_csr(dd, i, SEND_CTXT_ERR_MASK, 0);
13821 write_kctxt_csr(dd, i, SEND_CTXT_ERR_CLEAR, ~0ull);
13822 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_ENABLE, 0);
13823 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_VL, 0);
13824 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_JOB_KEY, 0);
13825 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_PARTITION_KEY, 0);
13826 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_SLID, 0);
13827 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_OPCODE, 0);
13828 }
13829
13830 /*
13831 * TXE Per-SDMA CSRs
13832 */
13833 for (i = 0; i < dd->chip_sdma_engines; i++) {
13834 write_kctxt_csr(dd, i, SEND_DMA_CTRL, 0);
13835 /* SEND_DMA_STATUS read-only */
13836 write_kctxt_csr(dd, i, SEND_DMA_BASE_ADDR, 0);
13837 write_kctxt_csr(dd, i, SEND_DMA_LEN_GEN, 0);
13838 write_kctxt_csr(dd, i, SEND_DMA_TAIL, 0);
13839 /* SEND_DMA_HEAD read-only */
13840 write_kctxt_csr(dd, i, SEND_DMA_HEAD_ADDR, 0);
13841 write_kctxt_csr(dd, i, SEND_DMA_PRIORITY_THLD, 0);
13842 /* SEND_DMA_IDLE_CNT read-only */
13843 write_kctxt_csr(dd, i, SEND_DMA_RELOAD_CNT, 0);
13844 write_kctxt_csr(dd, i, SEND_DMA_DESC_CNT, 0);
13845 /* SEND_DMA_DESC_FETCHED_CNT read-only */
13846 /* SEND_DMA_ENG_ERR_STATUS read-only */
13847 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_MASK, 0);
13848 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_CLEAR, ~0ull);
13849 /* SEND_DMA_ENG_ERR_FORCE leave alone */
13850 write_kctxt_csr(dd, i, SEND_DMA_CHECK_ENABLE, 0);
13851 write_kctxt_csr(dd, i, SEND_DMA_CHECK_VL, 0);
13852 write_kctxt_csr(dd, i, SEND_DMA_CHECK_JOB_KEY, 0);
13853 write_kctxt_csr(dd, i, SEND_DMA_CHECK_PARTITION_KEY, 0);
13854 write_kctxt_csr(dd, i, SEND_DMA_CHECK_SLID, 0);
13855 write_kctxt_csr(dd, i, SEND_DMA_CHECK_OPCODE, 0);
13856 write_kctxt_csr(dd, i, SEND_DMA_MEMORY, 0);
13857 }
13858}
13859
13860/*
13861 * Expect on entry:
13862 * o Packet ingress is disabled, i.e. RcvCtrl.RcvPortEnable == 0
13863 */
13864static void init_rbufs(struct hfi1_devdata *dd)
13865{
13866 u64 reg;
13867 int count;
13868
13869 /*
13870 * Wait for DMA to stop: RxRbufPktPending and RxPktInProgress are
13871 * clear.
13872 */
13873 count = 0;
13874 while (1) {
13875 reg = read_csr(dd, RCV_STATUS);
13876 if ((reg & (RCV_STATUS_RX_RBUF_PKT_PENDING_SMASK
13877 | RCV_STATUS_RX_PKT_IN_PROGRESS_SMASK)) == 0)
13878 break;
13879 /*
13880 * Give up after 1ms - maximum wait time.
13881 *
Harish Chegondie8a70af2016-09-25 07:42:01 -070013882 * RBuf size is 136KiB. Slowest possible is PCIe Gen1 x1 at
Mike Marciniszyn77241052015-07-30 15:17:43 -040013883 * 250MB/s bandwidth. Lower rate to 66% for overhead to get:
Harish Chegondie8a70af2016-09-25 07:42:01 -070013884 * 136 KB / (66% * 250MB/s) = 844us
Mike Marciniszyn77241052015-07-30 15:17:43 -040013885 */
13886 if (count++ > 500) {
13887 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013888 "%s: in-progress DMA not clearing: RcvStatus 0x%llx, continuing\n",
13889 __func__, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013890 break;
13891 }
13892 udelay(2); /* do not busy-wait the CSR */
13893 }
13894
13895 /* start the init - expect RcvCtrl to be 0 */
13896 write_csr(dd, RCV_CTRL, RCV_CTRL_RX_RBUF_INIT_SMASK);
13897
13898 /*
13899 * Read to force the write of Rcvtrl.RxRbufInit. There is a brief
13900 * period after the write before RcvStatus.RxRbufInitDone is valid.
13901 * The delay in the first run through the loop below is sufficient and
13902 * required before the first read of RcvStatus.RxRbufInintDone.
13903 */
13904 read_csr(dd, RCV_CTRL);
13905
13906 /* wait for the init to finish */
13907 count = 0;
13908 while (1) {
13909 /* delay is required first time through - see above */
13910 udelay(2); /* do not busy-wait the CSR */
13911 reg = read_csr(dd, RCV_STATUS);
13912 if (reg & (RCV_STATUS_RX_RBUF_INIT_DONE_SMASK))
13913 break;
13914
13915 /* give up after 100us - slowest possible at 33MHz is 73us */
13916 if (count++ > 50) {
13917 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013918 "%s: RcvStatus.RxRbufInit not set, continuing\n",
13919 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013920 break;
13921 }
13922 }
13923}
13924
13925/* set RXE CSRs to chip reset defaults */
13926static void reset_rxe_csrs(struct hfi1_devdata *dd)
13927{
13928 int i, j;
13929
13930 /*
13931 * RXE Kernel CSRs
13932 */
13933 write_csr(dd, RCV_CTRL, 0);
13934 init_rbufs(dd);
13935 /* RCV_STATUS read-only */
13936 /* RCV_CONTEXTS read-only */
13937 /* RCV_ARRAY_CNT read-only */
13938 /* RCV_BUF_SIZE read-only */
13939 write_csr(dd, RCV_BTH_QP, 0);
13940 write_csr(dd, RCV_MULTICAST, 0);
13941 write_csr(dd, RCV_BYPASS, 0);
13942 write_csr(dd, RCV_VL15, 0);
13943 /* this is a clear-down */
13944 write_csr(dd, RCV_ERR_INFO,
Jubin John17fb4f22016-02-14 20:21:52 -080013945 RCV_ERR_INFO_RCV_EXCESS_BUFFER_OVERRUN_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013946 /* RCV_ERR_STATUS read-only */
13947 write_csr(dd, RCV_ERR_MASK, 0);
13948 write_csr(dd, RCV_ERR_CLEAR, ~0ull);
13949 /* RCV_ERR_FORCE leave alone */
13950 for (i = 0; i < 32; i++)
13951 write_csr(dd, RCV_QP_MAP_TABLE + (8 * i), 0);
13952 for (i = 0; i < 4; i++)
13953 write_csr(dd, RCV_PARTITION_KEY + (8 * i), 0);
13954 for (i = 0; i < RXE_NUM_32_BIT_COUNTERS; i++)
13955 write_csr(dd, RCV_COUNTER_ARRAY32 + (8 * i), 0);
13956 for (i = 0; i < RXE_NUM_64_BIT_COUNTERS; i++)
13957 write_csr(dd, RCV_COUNTER_ARRAY64 + (8 * i), 0);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013958 for (i = 0; i < RXE_NUM_RSM_INSTANCES; i++)
13959 clear_rsm_rule(dd, i);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013960 for (i = 0; i < 32; i++)
13961 write_csr(dd, RCV_RSM_MAP_TABLE + (8 * i), 0);
13962
13963 /*
13964 * RXE Kernel and User Per-Context CSRs
13965 */
13966 for (i = 0; i < dd->chip_rcv_contexts; i++) {
13967 /* kernel */
13968 write_kctxt_csr(dd, i, RCV_CTXT_CTRL, 0);
13969 /* RCV_CTXT_STATUS read-only */
13970 write_kctxt_csr(dd, i, RCV_EGR_CTRL, 0);
13971 write_kctxt_csr(dd, i, RCV_TID_CTRL, 0);
13972 write_kctxt_csr(dd, i, RCV_KEY_CTRL, 0);
13973 write_kctxt_csr(dd, i, RCV_HDR_ADDR, 0);
13974 write_kctxt_csr(dd, i, RCV_HDR_CNT, 0);
13975 write_kctxt_csr(dd, i, RCV_HDR_ENT_SIZE, 0);
13976 write_kctxt_csr(dd, i, RCV_HDR_SIZE, 0);
13977 write_kctxt_csr(dd, i, RCV_HDR_TAIL_ADDR, 0);
13978 write_kctxt_csr(dd, i, RCV_AVAIL_TIME_OUT, 0);
13979 write_kctxt_csr(dd, i, RCV_HDR_OVFL_CNT, 0);
13980
13981 /* user */
13982 /* RCV_HDR_TAIL read-only */
13983 write_uctxt_csr(dd, i, RCV_HDR_HEAD, 0);
13984 /* RCV_EGR_INDEX_TAIL read-only */
13985 write_uctxt_csr(dd, i, RCV_EGR_INDEX_HEAD, 0);
13986 /* RCV_EGR_OFFSET_TAIL read-only */
13987 for (j = 0; j < RXE_NUM_TID_FLOWS; j++) {
Jubin John17fb4f22016-02-14 20:21:52 -080013988 write_uctxt_csr(dd, i,
13989 RCV_TID_FLOW_TABLE + (8 * j), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013990 }
13991 }
13992}
13993
13994/*
13995 * Set sc2vl tables.
13996 *
13997 * They power on to zeros, so to avoid send context errors
13998 * they need to be set:
13999 *
14000 * SC 0-7 -> VL 0-7 (respectively)
14001 * SC 15 -> VL 15
14002 * otherwise
14003 * -> VL 0
14004 */
14005static void init_sc2vl_tables(struct hfi1_devdata *dd)
14006{
14007 int i;
14008 /* init per architecture spec, constrained by hardware capability */
14009
14010 /* HFI maps sent packets */
14011 write_csr(dd, SEND_SC2VLT0, SC2VL_VAL(
14012 0,
14013 0, 0, 1, 1,
14014 2, 2, 3, 3,
14015 4, 4, 5, 5,
14016 6, 6, 7, 7));
14017 write_csr(dd, SEND_SC2VLT1, SC2VL_VAL(
14018 1,
14019 8, 0, 9, 0,
14020 10, 0, 11, 0,
14021 12, 0, 13, 0,
14022 14, 0, 15, 15));
14023 write_csr(dd, SEND_SC2VLT2, SC2VL_VAL(
14024 2,
14025 16, 0, 17, 0,
14026 18, 0, 19, 0,
14027 20, 0, 21, 0,
14028 22, 0, 23, 0));
14029 write_csr(dd, SEND_SC2VLT3, SC2VL_VAL(
14030 3,
14031 24, 0, 25, 0,
14032 26, 0, 27, 0,
14033 28, 0, 29, 0,
14034 30, 0, 31, 0));
14035
14036 /* DC maps received packets */
14037 write_csr(dd, DCC_CFG_SC_VL_TABLE_15_0, DC_SC_VL_VAL(
14038 15_0,
14039 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7,
14040 8, 0, 9, 0, 10, 0, 11, 0, 12, 0, 13, 0, 14, 0, 15, 15));
14041 write_csr(dd, DCC_CFG_SC_VL_TABLE_31_16, DC_SC_VL_VAL(
14042 31_16,
14043 16, 0, 17, 0, 18, 0, 19, 0, 20, 0, 21, 0, 22, 0, 23, 0,
14044 24, 0, 25, 0, 26, 0, 27, 0, 28, 0, 29, 0, 30, 0, 31, 0));
14045
14046 /* initialize the cached sc2vl values consistently with h/w */
14047 for (i = 0; i < 32; i++) {
14048 if (i < 8 || i == 15)
14049 *((u8 *)(dd->sc2vl) + i) = (u8)i;
14050 else
14051 *((u8 *)(dd->sc2vl) + i) = 0;
14052 }
14053}
14054
14055/*
14056 * Read chip sizes and then reset parts to sane, disabled, values. We cannot
14057 * depend on the chip going through a power-on reset - a driver may be loaded
14058 * and unloaded many times.
14059 *
14060 * Do not write any CSR values to the chip in this routine - there may be
14061 * a reset following the (possible) FLR in this routine.
14062 *
14063 */
Bartlomiej Dudekc53df622017-06-30 13:14:40 -070014064static int init_chip(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014065{
14066 int i;
Bartlomiej Dudekc53df622017-06-30 13:14:40 -070014067 int ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014068
14069 /*
14070 * Put the HFI CSRs in a known state.
14071 * Combine this with a DC reset.
14072 *
14073 * Stop the device from doing anything while we do a
14074 * reset. We know there are no other active users of
14075 * the device since we are now in charge. Turn off
14076 * off all outbound and inbound traffic and make sure
14077 * the device does not generate any interrupts.
14078 */
14079
14080 /* disable send contexts and SDMA engines */
14081 write_csr(dd, SEND_CTRL, 0);
14082 for (i = 0; i < dd->chip_send_contexts; i++)
14083 write_kctxt_csr(dd, i, SEND_CTXT_CTRL, 0);
14084 for (i = 0; i < dd->chip_sdma_engines; i++)
14085 write_kctxt_csr(dd, i, SEND_DMA_CTRL, 0);
14086 /* disable port (turn off RXE inbound traffic) and contexts */
14087 write_csr(dd, RCV_CTRL, 0);
14088 for (i = 0; i < dd->chip_rcv_contexts; i++)
14089 write_csr(dd, RCV_CTXT_CTRL, 0);
14090 /* mask all interrupt sources */
14091 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080014092 write_csr(dd, CCE_INT_MASK + (8 * i), 0ull);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014093
14094 /*
14095 * DC Reset: do a full DC reset before the register clear.
14096 * A recommended length of time to hold is one CSR read,
14097 * so reread the CceDcCtrl. Then, hold the DC in reset
14098 * across the clear.
14099 */
14100 write_csr(dd, CCE_DC_CTRL, CCE_DC_CTRL_DC_RESET_SMASK);
Jubin John50e5dcb2016-02-14 20:19:41 -080014101 (void)read_csr(dd, CCE_DC_CTRL);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014102
14103 if (use_flr) {
14104 /*
14105 * A FLR will reset the SPC core and part of the PCIe.
14106 * The parts that need to be restored have already been
14107 * saved.
14108 */
14109 dd_dev_info(dd, "Resetting CSRs with FLR\n");
14110
14111 /* do the FLR, the DC reset will remain */
Christoph Hellwig21c433a2017-04-25 14:36:19 -050014112 pcie_flr(dd->pcidev);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014113
14114 /* restore command and BARs */
Bartlomiej Dudekc53df622017-06-30 13:14:40 -070014115 ret = restore_pci_variables(dd);
14116 if (ret) {
14117 dd_dev_err(dd, "%s: Could not restore PCI variables\n",
14118 __func__);
14119 return ret;
14120 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040014121
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050014122 if (is_ax(dd)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014123 dd_dev_info(dd, "Resetting CSRs with FLR\n");
Christoph Hellwig21c433a2017-04-25 14:36:19 -050014124 pcie_flr(dd->pcidev);
Bartlomiej Dudekc53df622017-06-30 13:14:40 -070014125 ret = restore_pci_variables(dd);
14126 if (ret) {
14127 dd_dev_err(dd, "%s: Could not restore PCI variables\n",
14128 __func__);
14129 return ret;
14130 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040014131 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040014132 } else {
14133 dd_dev_info(dd, "Resetting CSRs with writes\n");
14134 reset_cce_csrs(dd);
14135 reset_txe_csrs(dd);
14136 reset_rxe_csrs(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014137 reset_misc_csrs(dd);
14138 }
14139 /* clear the DC reset */
14140 write_csr(dd, CCE_DC_CTRL, 0);
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040014141
Mike Marciniszyn77241052015-07-30 15:17:43 -040014142 /* Set the LED off */
Sebastian Sanchez773d04512016-02-09 14:29:40 -080014143 setextled(dd, 0);
14144
Mike Marciniszyn77241052015-07-30 15:17:43 -040014145 /*
14146 * Clear the QSFP reset.
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050014147 * An FLR enforces a 0 on all out pins. The driver does not touch
Mike Marciniszyn77241052015-07-30 15:17:43 -040014148 * ASIC_QSFPn_OUT otherwise. This leaves RESET_N low and
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050014149 * anything plugged constantly in reset, if it pays attention
Mike Marciniszyn77241052015-07-30 15:17:43 -040014150 * to RESET_N.
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050014151 * Prime examples of this are optical cables. Set all pins high.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014152 * I2CCLK and I2CDAT will change per direction, and INT_N and
14153 * MODPRS_N are input only and their value is ignored.
14154 */
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050014155 write_csr(dd, ASIC_QSFP1_OUT, 0x1f);
14156 write_csr(dd, ASIC_QSFP2_OUT, 0x1f);
Dean Luicka2ee27a2016-03-05 08:49:50 -080014157 init_chip_resources(dd);
Bartlomiej Dudekc53df622017-06-30 13:14:40 -070014158 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014159}
14160
14161static void init_early_variables(struct hfi1_devdata *dd)
14162{
14163 int i;
14164
14165 /* assign link credit variables */
14166 dd->vau = CM_VAU;
14167 dd->link_credits = CM_GLOBAL_CREDITS;
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050014168 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -040014169 dd->link_credits--;
14170 dd->vcu = cu_to_vcu(hfi1_cu);
14171 /* enough room for 8 MAD packets plus header - 17K */
14172 dd->vl15_init = (8 * (2048 + 128)) / vau_to_au(dd->vau);
14173 if (dd->vl15_init > dd->link_credits)
14174 dd->vl15_init = dd->link_credits;
14175
14176 write_uninitialized_csrs_and_memories(dd);
14177
14178 if (HFI1_CAP_IS_KSET(PKEY_CHECK))
14179 for (i = 0; i < dd->num_pports; i++) {
14180 struct hfi1_pportdata *ppd = &dd->pport[i];
14181
14182 set_partition_keys(ppd);
14183 }
14184 init_sc2vl_tables(dd);
14185}
14186
14187static void init_kdeth_qp(struct hfi1_devdata *dd)
14188{
14189 /* user changed the KDETH_QP */
14190 if (kdeth_qp != 0 && kdeth_qp >= 0xff) {
14191 /* out of range or illegal value */
14192 dd_dev_err(dd, "Invalid KDETH queue pair prefix, ignoring");
14193 kdeth_qp = 0;
14194 }
14195 if (kdeth_qp == 0) /* not set, or failed range check */
14196 kdeth_qp = DEFAULT_KDETH_QP;
14197
14198 write_csr(dd, SEND_BTH_QP,
Jubin John17fb4f22016-02-14 20:21:52 -080014199 (kdeth_qp & SEND_BTH_QP_KDETH_QP_MASK) <<
14200 SEND_BTH_QP_KDETH_QP_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014201
14202 write_csr(dd, RCV_BTH_QP,
Jubin John17fb4f22016-02-14 20:21:52 -080014203 (kdeth_qp & RCV_BTH_QP_KDETH_QP_MASK) <<
14204 RCV_BTH_QP_KDETH_QP_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014205}
14206
14207/**
14208 * init_qpmap_table
14209 * @dd - device data
14210 * @first_ctxt - first context
14211 * @last_ctxt - first context
14212 *
14213 * This return sets the qpn mapping table that
14214 * is indexed by qpn[8:1].
14215 *
14216 * The routine will round robin the 256 settings
14217 * from first_ctxt to last_ctxt.
14218 *
14219 * The first/last looks ahead to having specialized
14220 * receive contexts for mgmt and bypass. Normal
14221 * verbs traffic will assumed to be on a range
14222 * of receive contexts.
14223 */
14224static void init_qpmap_table(struct hfi1_devdata *dd,
14225 u32 first_ctxt,
14226 u32 last_ctxt)
14227{
14228 u64 reg = 0;
14229 u64 regno = RCV_QP_MAP_TABLE;
14230 int i;
14231 u64 ctxt = first_ctxt;
14232
Dean Luick60d585ad2016-04-12 10:50:35 -070014233 for (i = 0; i < 256; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014234 reg |= ctxt << (8 * (i % 8));
Mike Marciniszyn77241052015-07-30 15:17:43 -040014235 ctxt++;
14236 if (ctxt > last_ctxt)
14237 ctxt = first_ctxt;
Dean Luick60d585ad2016-04-12 10:50:35 -070014238 if (i % 8 == 7) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014239 write_csr(dd, regno, reg);
14240 reg = 0;
14241 regno += 8;
14242 }
14243 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040014244
14245 add_rcvctrl(dd, RCV_CTRL_RCV_QP_MAP_ENABLE_SMASK
14246 | RCV_CTRL_RCV_BYPASS_ENABLE_SMASK);
14247}
14248
Dean Luick372cc85a2016-04-12 11:30:51 -070014249struct rsm_map_table {
14250 u64 map[NUM_MAP_REGS];
14251 unsigned int used;
14252};
14253
Dean Luickb12349a2016-04-12 11:31:33 -070014254struct rsm_rule_data {
14255 u8 offset;
14256 u8 pkt_type;
14257 u32 field1_off;
14258 u32 field2_off;
14259 u32 index1_off;
14260 u32 index1_width;
14261 u32 index2_off;
14262 u32 index2_width;
14263 u32 mask1;
14264 u32 value1;
14265 u32 mask2;
14266 u32 value2;
14267};
14268
Dean Luick372cc85a2016-04-12 11:30:51 -070014269/*
14270 * Return an initialized RMT map table for users to fill in. OK if it
14271 * returns NULL, indicating no table.
14272 */
14273static struct rsm_map_table *alloc_rsm_map_table(struct hfi1_devdata *dd)
14274{
14275 struct rsm_map_table *rmt;
14276 u8 rxcontext = is_ax(dd) ? 0 : 0xff; /* 0 is default if a0 ver. */
14277
14278 rmt = kmalloc(sizeof(*rmt), GFP_KERNEL);
14279 if (rmt) {
14280 memset(rmt->map, rxcontext, sizeof(rmt->map));
14281 rmt->used = 0;
14282 }
14283
14284 return rmt;
14285}
14286
14287/*
14288 * Write the final RMT map table to the chip and free the table. OK if
14289 * table is NULL.
14290 */
14291static void complete_rsm_map_table(struct hfi1_devdata *dd,
14292 struct rsm_map_table *rmt)
14293{
14294 int i;
14295
14296 if (rmt) {
14297 /* write table to chip */
14298 for (i = 0; i < NUM_MAP_REGS; i++)
14299 write_csr(dd, RCV_RSM_MAP_TABLE + (8 * i), rmt->map[i]);
14300
14301 /* enable RSM */
14302 add_rcvctrl(dd, RCV_CTRL_RCV_RSM_ENABLE_SMASK);
14303 }
14304}
14305
Dean Luickb12349a2016-04-12 11:31:33 -070014306/*
14307 * Add a receive side mapping rule.
14308 */
14309static void add_rsm_rule(struct hfi1_devdata *dd, u8 rule_index,
14310 struct rsm_rule_data *rrd)
14311{
14312 write_csr(dd, RCV_RSM_CFG + (8 * rule_index),
14313 (u64)rrd->offset << RCV_RSM_CFG_OFFSET_SHIFT |
14314 1ull << rule_index | /* enable bit */
14315 (u64)rrd->pkt_type << RCV_RSM_CFG_PACKET_TYPE_SHIFT);
14316 write_csr(dd, RCV_RSM_SELECT + (8 * rule_index),
14317 (u64)rrd->field1_off << RCV_RSM_SELECT_FIELD1_OFFSET_SHIFT |
14318 (u64)rrd->field2_off << RCV_RSM_SELECT_FIELD2_OFFSET_SHIFT |
14319 (u64)rrd->index1_off << RCV_RSM_SELECT_INDEX1_OFFSET_SHIFT |
14320 (u64)rrd->index1_width << RCV_RSM_SELECT_INDEX1_WIDTH_SHIFT |
14321 (u64)rrd->index2_off << RCV_RSM_SELECT_INDEX2_OFFSET_SHIFT |
14322 (u64)rrd->index2_width << RCV_RSM_SELECT_INDEX2_WIDTH_SHIFT);
14323 write_csr(dd, RCV_RSM_MATCH + (8 * rule_index),
14324 (u64)rrd->mask1 << RCV_RSM_MATCH_MASK1_SHIFT |
14325 (u64)rrd->value1 << RCV_RSM_MATCH_VALUE1_SHIFT |
14326 (u64)rrd->mask2 << RCV_RSM_MATCH_MASK2_SHIFT |
14327 (u64)rrd->value2 << RCV_RSM_MATCH_VALUE2_SHIFT);
14328}
14329
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014330/*
14331 * Clear a receive side mapping rule.
14332 */
14333static void clear_rsm_rule(struct hfi1_devdata *dd, u8 rule_index)
14334{
14335 write_csr(dd, RCV_RSM_CFG + (8 * rule_index), 0);
14336 write_csr(dd, RCV_RSM_SELECT + (8 * rule_index), 0);
14337 write_csr(dd, RCV_RSM_MATCH + (8 * rule_index), 0);
14338}
14339
Dean Luick4a818be2016-04-12 11:31:11 -070014340/* return the number of RSM map table entries that will be used for QOS */
14341static int qos_rmt_entries(struct hfi1_devdata *dd, unsigned int *mp,
14342 unsigned int *np)
14343{
14344 int i;
14345 unsigned int m, n;
14346 u8 max_by_vl = 0;
14347
14348 /* is QOS active at all? */
14349 if (dd->n_krcv_queues <= MIN_KERNEL_KCTXTS ||
14350 num_vls == 1 ||
14351 krcvqsset <= 1)
14352 goto no_qos;
14353
14354 /* determine bits for qpn */
14355 for (i = 0; i < min_t(unsigned int, num_vls, krcvqsset); i++)
14356 if (krcvqs[i] > max_by_vl)
14357 max_by_vl = krcvqs[i];
14358 if (max_by_vl > 32)
14359 goto no_qos;
14360 m = ilog2(__roundup_pow_of_two(max_by_vl));
14361
14362 /* determine bits for vl */
14363 n = ilog2(__roundup_pow_of_two(num_vls));
14364
14365 /* reject if too much is used */
14366 if ((m + n) > 7)
14367 goto no_qos;
14368
14369 if (mp)
14370 *mp = m;
14371 if (np)
14372 *np = n;
14373
14374 return 1 << (m + n);
14375
14376no_qos:
14377 if (mp)
14378 *mp = 0;
14379 if (np)
14380 *np = 0;
14381 return 0;
14382}
14383
Mike Marciniszyn77241052015-07-30 15:17:43 -040014384/**
14385 * init_qos - init RX qos
14386 * @dd - device data
Dean Luick372cc85a2016-04-12 11:30:51 -070014387 * @rmt - RSM map table
Mike Marciniszyn77241052015-07-30 15:17:43 -040014388 *
Dean Luick33a9eb52016-04-12 10:50:22 -070014389 * This routine initializes Rule 0 and the RSM map table to implement
14390 * quality of service (qos).
Mike Marciniszyn77241052015-07-30 15:17:43 -040014391 *
Dean Luick33a9eb52016-04-12 10:50:22 -070014392 * If all of the limit tests succeed, qos is applied based on the array
14393 * interpretation of krcvqs where entry 0 is VL0.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014394 *
Dean Luick33a9eb52016-04-12 10:50:22 -070014395 * The number of vl bits (n) and the number of qpn bits (m) are computed to
14396 * feed both the RSM map table and the single rule.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014397 */
Dean Luick372cc85a2016-04-12 11:30:51 -070014398static void init_qos(struct hfi1_devdata *dd, struct rsm_map_table *rmt)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014399{
Dean Luickb12349a2016-04-12 11:31:33 -070014400 struct rsm_rule_data rrd;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014401 unsigned qpns_per_vl, ctxt, i, qpn, n = 1, m;
Dean Luick372cc85a2016-04-12 11:30:51 -070014402 unsigned int rmt_entries;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014403 u64 reg;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014404
Dean Luick4a818be2016-04-12 11:31:11 -070014405 if (!rmt)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014406 goto bail;
Dean Luick4a818be2016-04-12 11:31:11 -070014407 rmt_entries = qos_rmt_entries(dd, &m, &n);
14408 if (rmt_entries == 0)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014409 goto bail;
Dean Luick4a818be2016-04-12 11:31:11 -070014410 qpns_per_vl = 1 << m;
14411
Dean Luick372cc85a2016-04-12 11:30:51 -070014412 /* enough room in the map table? */
14413 rmt_entries = 1 << (m + n);
14414 if (rmt->used + rmt_entries >= NUM_MAP_ENTRIES)
Easwar Hariharan859bcad2015-12-10 11:13:38 -050014415 goto bail;
Dean Luick4a818be2016-04-12 11:31:11 -070014416
Dean Luick372cc85a2016-04-12 11:30:51 -070014417 /* add qos entries to the the RSM map table */
Dean Luick33a9eb52016-04-12 10:50:22 -070014418 for (i = 0, ctxt = FIRST_KERNEL_KCTXT; i < num_vls; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014419 unsigned tctxt;
14420
14421 for (qpn = 0, tctxt = ctxt;
14422 krcvqs[i] && qpn < qpns_per_vl; qpn++) {
14423 unsigned idx, regoff, regidx;
14424
Dean Luick372cc85a2016-04-12 11:30:51 -070014425 /* generate the index the hardware will produce */
14426 idx = rmt->used + ((qpn << n) ^ i);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014427 regoff = (idx % 8) * 8;
14428 regidx = idx / 8;
Dean Luick372cc85a2016-04-12 11:30:51 -070014429 /* replace default with context number */
14430 reg = rmt->map[regidx];
Mike Marciniszyn77241052015-07-30 15:17:43 -040014431 reg &= ~(RCV_RSM_MAP_TABLE_RCV_CONTEXT_A_MASK
14432 << regoff);
14433 reg |= (u64)(tctxt++) << regoff;
Dean Luick372cc85a2016-04-12 11:30:51 -070014434 rmt->map[regidx] = reg;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014435 if (tctxt == ctxt + krcvqs[i])
14436 tctxt = ctxt;
14437 }
14438 ctxt += krcvqs[i];
14439 }
Dean Luickb12349a2016-04-12 11:31:33 -070014440
14441 rrd.offset = rmt->used;
14442 rrd.pkt_type = 2;
14443 rrd.field1_off = LRH_BTH_MATCH_OFFSET;
14444 rrd.field2_off = LRH_SC_MATCH_OFFSET;
14445 rrd.index1_off = LRH_SC_SELECT_OFFSET;
14446 rrd.index1_width = n;
14447 rrd.index2_off = QPN_SELECT_OFFSET;
14448 rrd.index2_width = m + n;
14449 rrd.mask1 = LRH_BTH_MASK;
14450 rrd.value1 = LRH_BTH_VALUE;
14451 rrd.mask2 = LRH_SC_MASK;
14452 rrd.value2 = LRH_SC_VALUE;
14453
14454 /* add rule 0 */
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014455 add_rsm_rule(dd, RSM_INS_VERBS, &rrd);
Dean Luickb12349a2016-04-12 11:31:33 -070014456
Dean Luick372cc85a2016-04-12 11:30:51 -070014457 /* mark RSM map entries as used */
14458 rmt->used += rmt_entries;
Dean Luick33a9eb52016-04-12 10:50:22 -070014459 /* map everything else to the mcast/err/vl15 context */
14460 init_qpmap_table(dd, HFI1_CTRL_CTXT, HFI1_CTRL_CTXT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014461 dd->qos_shift = n + 1;
14462 return;
14463bail:
14464 dd->qos_shift = 1;
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050014465 init_qpmap_table(dd, FIRST_KERNEL_KCTXT, dd->n_krcv_queues - 1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014466}
14467
Dean Luick8f000f72016-04-12 11:32:06 -070014468static void init_user_fecn_handling(struct hfi1_devdata *dd,
14469 struct rsm_map_table *rmt)
14470{
14471 struct rsm_rule_data rrd;
14472 u64 reg;
14473 int i, idx, regoff, regidx;
14474 u8 offset;
14475
14476 /* there needs to be enough room in the map table */
14477 if (rmt->used + dd->num_user_contexts >= NUM_MAP_ENTRIES) {
14478 dd_dev_err(dd, "User FECN handling disabled - too many user contexts allocated\n");
14479 return;
14480 }
14481
14482 /*
14483 * RSM will extract the destination context as an index into the
14484 * map table. The destination contexts are a sequential block
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014485 * in the range first_dyn_alloc_ctxt...num_rcv_contexts-1 (inclusive).
Dean Luick8f000f72016-04-12 11:32:06 -070014486 * Map entries are accessed as offset + extracted value. Adjust
14487 * the added offset so this sequence can be placed anywhere in
14488 * the table - as long as the entries themselves do not wrap.
14489 * There are only enough bits in offset for the table size, so
14490 * start with that to allow for a "negative" offset.
14491 */
14492 offset = (u8)(NUM_MAP_ENTRIES + (int)rmt->used -
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014493 (int)dd->first_dyn_alloc_ctxt);
Dean Luick8f000f72016-04-12 11:32:06 -070014494
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014495 for (i = dd->first_dyn_alloc_ctxt, idx = rmt->used;
Dean Luick8f000f72016-04-12 11:32:06 -070014496 i < dd->num_rcv_contexts; i++, idx++) {
14497 /* replace with identity mapping */
14498 regoff = (idx % 8) * 8;
14499 regidx = idx / 8;
14500 reg = rmt->map[regidx];
14501 reg &= ~(RCV_RSM_MAP_TABLE_RCV_CONTEXT_A_MASK << regoff);
14502 reg |= (u64)i << regoff;
14503 rmt->map[regidx] = reg;
14504 }
14505
14506 /*
14507 * For RSM intercept of Expected FECN packets:
14508 * o packet type 0 - expected
14509 * o match on F (bit 95), using select/match 1, and
14510 * o match on SH (bit 133), using select/match 2.
14511 *
14512 * Use index 1 to extract the 8-bit receive context from DestQP
14513 * (start at bit 64). Use that as the RSM map table index.
14514 */
14515 rrd.offset = offset;
14516 rrd.pkt_type = 0;
14517 rrd.field1_off = 95;
14518 rrd.field2_off = 133;
14519 rrd.index1_off = 64;
14520 rrd.index1_width = 8;
14521 rrd.index2_off = 0;
14522 rrd.index2_width = 0;
14523 rrd.mask1 = 1;
14524 rrd.value1 = 1;
14525 rrd.mask2 = 1;
14526 rrd.value2 = 1;
14527
14528 /* add rule 1 */
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014529 add_rsm_rule(dd, RSM_INS_FECN, &rrd);
Dean Luick8f000f72016-04-12 11:32:06 -070014530
14531 rmt->used += dd->num_user_contexts;
14532}
14533
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014534/* Initialize RSM for VNIC */
14535void hfi1_init_vnic_rsm(struct hfi1_devdata *dd)
14536{
14537 u8 i, j;
14538 u8 ctx_id = 0;
14539 u64 reg;
14540 u32 regoff;
14541 struct rsm_rule_data rrd;
14542
14543 if (hfi1_vnic_is_rsm_full(dd, NUM_VNIC_MAP_ENTRIES)) {
14544 dd_dev_err(dd, "Vnic RSM disabled, rmt entries used = %d\n",
14545 dd->vnic.rmt_start);
14546 return;
14547 }
14548
14549 dev_dbg(&(dd)->pcidev->dev, "Vnic rsm start = %d, end %d\n",
14550 dd->vnic.rmt_start,
14551 dd->vnic.rmt_start + NUM_VNIC_MAP_ENTRIES);
14552
14553 /* Update RSM mapping table, 32 regs, 256 entries - 1 ctx per byte */
14554 regoff = RCV_RSM_MAP_TABLE + (dd->vnic.rmt_start / 8) * 8;
14555 reg = read_csr(dd, regoff);
14556 for (i = 0; i < NUM_VNIC_MAP_ENTRIES; i++) {
14557 /* Update map register with vnic context */
14558 j = (dd->vnic.rmt_start + i) % 8;
14559 reg &= ~(0xffllu << (j * 8));
14560 reg |= (u64)dd->vnic.ctxt[ctx_id++]->ctxt << (j * 8);
14561 /* Wrap up vnic ctx index */
14562 ctx_id %= dd->vnic.num_ctxt;
14563 /* Write back map register */
14564 if (j == 7 || ((i + 1) == NUM_VNIC_MAP_ENTRIES)) {
14565 dev_dbg(&(dd)->pcidev->dev,
14566 "Vnic rsm map reg[%d] =0x%llx\n",
14567 regoff - RCV_RSM_MAP_TABLE, reg);
14568
14569 write_csr(dd, regoff, reg);
14570 regoff += 8;
14571 if (i < (NUM_VNIC_MAP_ENTRIES - 1))
14572 reg = read_csr(dd, regoff);
14573 }
14574 }
14575
14576 /* Add rule for vnic */
14577 rrd.offset = dd->vnic.rmt_start;
14578 rrd.pkt_type = 4;
14579 /* Match 16B packets */
14580 rrd.field1_off = L2_TYPE_MATCH_OFFSET;
14581 rrd.mask1 = L2_TYPE_MASK;
14582 rrd.value1 = L2_16B_VALUE;
14583 /* Match ETH L4 packets */
14584 rrd.field2_off = L4_TYPE_MATCH_OFFSET;
14585 rrd.mask2 = L4_16B_TYPE_MASK;
14586 rrd.value2 = L4_16B_ETH_VALUE;
14587 /* Calc context from veswid and entropy */
14588 rrd.index1_off = L4_16B_HDR_VESWID_OFFSET;
14589 rrd.index1_width = ilog2(NUM_VNIC_MAP_ENTRIES);
14590 rrd.index2_off = L2_16B_ENTROPY_OFFSET;
14591 rrd.index2_width = ilog2(NUM_VNIC_MAP_ENTRIES);
14592 add_rsm_rule(dd, RSM_INS_VNIC, &rrd);
14593
14594 /* Enable RSM if not already enabled */
14595 add_rcvctrl(dd, RCV_CTRL_RCV_RSM_ENABLE_SMASK);
14596}
14597
14598void hfi1_deinit_vnic_rsm(struct hfi1_devdata *dd)
14599{
14600 clear_rsm_rule(dd, RSM_INS_VNIC);
14601
14602 /* Disable RSM if used only by vnic */
14603 if (dd->vnic.rmt_start == 0)
14604 clear_rcvctrl(dd, RCV_CTRL_RCV_RSM_ENABLE_SMASK);
14605}
14606
Mike Marciniszyn77241052015-07-30 15:17:43 -040014607static void init_rxe(struct hfi1_devdata *dd)
14608{
Dean Luick372cc85a2016-04-12 11:30:51 -070014609 struct rsm_map_table *rmt;
Don Hiatt72c07e22017-08-04 13:53:58 -070014610 u64 val;
Dean Luick372cc85a2016-04-12 11:30:51 -070014611
Mike Marciniszyn77241052015-07-30 15:17:43 -040014612 /* enable all receive errors */
14613 write_csr(dd, RCV_ERR_MASK, ~0ull);
Dean Luick372cc85a2016-04-12 11:30:51 -070014614
14615 rmt = alloc_rsm_map_table(dd);
14616 /* set up QOS, including the QPN map table */
14617 init_qos(dd, rmt);
Dean Luick8f000f72016-04-12 11:32:06 -070014618 init_user_fecn_handling(dd, rmt);
Dean Luick372cc85a2016-04-12 11:30:51 -070014619 complete_rsm_map_table(dd, rmt);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014620 /* record number of used rsm map entries for vnic */
14621 dd->vnic.rmt_start = rmt->used;
Dean Luick372cc85a2016-04-12 11:30:51 -070014622 kfree(rmt);
14623
Mike Marciniszyn77241052015-07-30 15:17:43 -040014624 /*
14625 * make sure RcvCtrl.RcvWcb <= PCIe Device Control
14626 * Register Max_Payload_Size (PCI_EXP_DEVCTL in Linux PCIe config
14627 * space, PciCfgCap2.MaxPayloadSize in HFI). There is only one
14628 * invalid configuration: RcvCtrl.RcvWcb set to its max of 256 and
14629 * Max_PayLoad_Size set to its minimum of 128.
14630 *
14631 * Presently, RcvCtrl.RcvWcb is not modified from its default of 0
14632 * (64 bytes). Max_Payload_Size is possibly modified upward in
14633 * tune_pcie_caps() which is called after this routine.
14634 */
Don Hiatt72c07e22017-08-04 13:53:58 -070014635
14636 /* Have 16 bytes (4DW) of bypass header available in header queue */
14637 val = read_csr(dd, RCV_BYPASS);
14638 val |= (4ull << 16);
14639 write_csr(dd, RCV_BYPASS, val);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014640}
14641
14642static void init_other(struct hfi1_devdata *dd)
14643{
14644 /* enable all CCE errors */
14645 write_csr(dd, CCE_ERR_MASK, ~0ull);
14646 /* enable *some* Misc errors */
14647 write_csr(dd, MISC_ERR_MASK, DRIVER_MISC_MASK);
14648 /* enable all DC errors, except LCB */
14649 write_csr(dd, DCC_ERR_FLG_EN, ~0ull);
14650 write_csr(dd, DC_DC8051_ERR_EN, ~0ull);
14651}
14652
14653/*
14654 * Fill out the given AU table using the given CU. A CU is defined in terms
14655 * AUs. The table is a an encoding: given the index, how many AUs does that
14656 * represent?
14657 *
14658 * NOTE: Assumes that the register layout is the same for the
14659 * local and remote tables.
14660 */
14661static void assign_cm_au_table(struct hfi1_devdata *dd, u32 cu,
14662 u32 csr0to3, u32 csr4to7)
14663{
14664 write_csr(dd, csr0to3,
Jubin John17fb4f22016-02-14 20:21:52 -080014665 0ull << SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE0_SHIFT |
14666 1ull << SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE1_SHIFT |
14667 2ull * cu <<
14668 SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE2_SHIFT |
14669 4ull * cu <<
14670 SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE3_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014671 write_csr(dd, csr4to7,
Jubin John17fb4f22016-02-14 20:21:52 -080014672 8ull * cu <<
14673 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE4_SHIFT |
14674 16ull * cu <<
14675 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE5_SHIFT |
14676 32ull * cu <<
14677 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE6_SHIFT |
14678 64ull * cu <<
14679 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE7_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014680}
14681
14682static void assign_local_cm_au_table(struct hfi1_devdata *dd, u8 vcu)
14683{
14684 assign_cm_au_table(dd, vcu_to_cu(vcu), SEND_CM_LOCAL_AU_TABLE0_TO3,
Jubin John17fb4f22016-02-14 20:21:52 -080014685 SEND_CM_LOCAL_AU_TABLE4_TO7);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014686}
14687
14688void assign_remote_cm_au_table(struct hfi1_devdata *dd, u8 vcu)
14689{
14690 assign_cm_au_table(dd, vcu_to_cu(vcu), SEND_CM_REMOTE_AU_TABLE0_TO3,
Jubin John17fb4f22016-02-14 20:21:52 -080014691 SEND_CM_REMOTE_AU_TABLE4_TO7);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014692}
14693
14694static void init_txe(struct hfi1_devdata *dd)
14695{
14696 int i;
14697
14698 /* enable all PIO, SDMA, general, and Egress errors */
14699 write_csr(dd, SEND_PIO_ERR_MASK, ~0ull);
14700 write_csr(dd, SEND_DMA_ERR_MASK, ~0ull);
14701 write_csr(dd, SEND_ERR_MASK, ~0ull);
14702 write_csr(dd, SEND_EGRESS_ERR_MASK, ~0ull);
14703
14704 /* enable all per-context and per-SDMA engine errors */
14705 for (i = 0; i < dd->chip_send_contexts; i++)
14706 write_kctxt_csr(dd, i, SEND_CTXT_ERR_MASK, ~0ull);
14707 for (i = 0; i < dd->chip_sdma_engines; i++)
14708 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_MASK, ~0ull);
14709
14710 /* set the local CU to AU mapping */
14711 assign_local_cm_au_table(dd, dd->vcu);
14712
14713 /*
14714 * Set reasonable default for Credit Return Timer
14715 * Don't set on Simulator - causes it to choke.
14716 */
14717 if (dd->icode != ICODE_FUNCTIONAL_SIMULATOR)
14718 write_csr(dd, SEND_CM_TIMER_CTRL, HFI1_CREDIT_RETURN_RATE);
14719}
14720
Michael J. Ruhl17573972017-07-24 07:46:01 -070014721int hfi1_set_ctxt_jkey(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd,
14722 u16 jkey)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014723{
Michael J. Ruhl17573972017-07-24 07:46:01 -070014724 u8 hw_ctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014725 u64 reg;
14726
Michael J. Ruhl17573972017-07-24 07:46:01 -070014727 if (!rcd || !rcd->sc)
14728 return -EINVAL;
14729
14730 hw_ctxt = rcd->sc->hw_context;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014731 reg = SEND_CTXT_CHECK_JOB_KEY_MASK_SMASK | /* mask is always 1's */
14732 ((jkey & SEND_CTXT_CHECK_JOB_KEY_VALUE_MASK) <<
14733 SEND_CTXT_CHECK_JOB_KEY_VALUE_SHIFT);
14734 /* JOB_KEY_ALLOW_PERMISSIVE is not allowed by default */
14735 if (HFI1_CAP_KGET_MASK(rcd->flags, ALLOW_PERM_JKEY))
14736 reg |= SEND_CTXT_CHECK_JOB_KEY_ALLOW_PERMISSIVE_SMASK;
Michael J. Ruhl17573972017-07-24 07:46:01 -070014737 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_JOB_KEY, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014738 /*
14739 * Enable send-side J_KEY integrity check, unless this is A0 h/w
Mike Marciniszyn77241052015-07-30 15:17:43 -040014740 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050014741 if (!is_ax(dd)) {
Michael J. Ruhl17573972017-07-24 07:46:01 -070014742 reg = read_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014743 reg |= SEND_CTXT_CHECK_ENABLE_CHECK_JOB_KEY_SMASK;
Michael J. Ruhl17573972017-07-24 07:46:01 -070014744 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014745 }
14746
14747 /* Enable J_KEY check on receive context. */
14748 reg = RCV_KEY_CTRL_JOB_KEY_ENABLE_SMASK |
14749 ((jkey & RCV_KEY_CTRL_JOB_KEY_VALUE_MASK) <<
14750 RCV_KEY_CTRL_JOB_KEY_VALUE_SHIFT);
Michael J. Ruhl17573972017-07-24 07:46:01 -070014751 write_kctxt_csr(dd, rcd->ctxt, RCV_KEY_CTRL, reg);
14752
14753 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014754}
14755
Michael J. Ruhl17573972017-07-24 07:46:01 -070014756int hfi1_clear_ctxt_jkey(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014757{
Michael J. Ruhl17573972017-07-24 07:46:01 -070014758 u8 hw_ctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014759 u64 reg;
14760
Michael J. Ruhl17573972017-07-24 07:46:01 -070014761 if (!rcd || !rcd->sc)
14762 return -EINVAL;
14763
14764 hw_ctxt = rcd->sc->hw_context;
14765 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_JOB_KEY, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014766 /*
14767 * Disable send-side J_KEY integrity check, unless this is A0 h/w.
14768 * This check would not have been enabled for A0 h/w, see
14769 * set_ctxt_jkey().
14770 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050014771 if (!is_ax(dd)) {
Michael J. Ruhl17573972017-07-24 07:46:01 -070014772 reg = read_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014773 reg &= ~SEND_CTXT_CHECK_ENABLE_CHECK_JOB_KEY_SMASK;
Michael J. Ruhl17573972017-07-24 07:46:01 -070014774 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014775 }
14776 /* Turn off the J_KEY on the receive side */
Michael J. Ruhl17573972017-07-24 07:46:01 -070014777 write_kctxt_csr(dd, rcd->ctxt, RCV_KEY_CTRL, 0);
14778
14779 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014780}
14781
Michael J. Ruhl17573972017-07-24 07:46:01 -070014782int hfi1_set_ctxt_pkey(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd,
14783 u16 pkey)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014784{
Michael J. Ruhl17573972017-07-24 07:46:01 -070014785 u8 hw_ctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014786 u64 reg;
14787
Michael J. Ruhl17573972017-07-24 07:46:01 -070014788 if (!rcd || !rcd->sc)
14789 return -EINVAL;
14790
14791 hw_ctxt = rcd->sc->hw_context;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014792 reg = ((u64)pkey & SEND_CTXT_CHECK_PARTITION_KEY_VALUE_MASK) <<
14793 SEND_CTXT_CHECK_PARTITION_KEY_VALUE_SHIFT;
Michael J. Ruhl17573972017-07-24 07:46:01 -070014794 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_PARTITION_KEY, reg);
14795 reg = read_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014796 reg |= SEND_CTXT_CHECK_ENABLE_CHECK_PARTITION_KEY_SMASK;
Sebastian Sancheze38d1e42016-04-12 11:22:21 -070014797 reg &= ~SEND_CTXT_CHECK_ENABLE_DISALLOW_KDETH_PACKETS_SMASK;
Michael J. Ruhl17573972017-07-24 07:46:01 -070014798 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE, reg);
14799
14800 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014801}
14802
Michael J. Ruhl637a9a72017-05-04 05:15:03 -070014803int hfi1_clear_ctxt_pkey(struct hfi1_devdata *dd, struct hfi1_ctxtdata *ctxt)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014804{
Michael J. Ruhl637a9a72017-05-04 05:15:03 -070014805 u8 hw_ctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014806 u64 reg;
14807
Michael J. Ruhl637a9a72017-05-04 05:15:03 -070014808 if (!ctxt || !ctxt->sc)
14809 return -EINVAL;
14810
Michael J. Ruhl637a9a72017-05-04 05:15:03 -070014811 hw_ctxt = ctxt->sc->hw_context;
14812 reg = read_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014813 reg &= ~SEND_CTXT_CHECK_ENABLE_CHECK_PARTITION_KEY_SMASK;
Michael J. Ruhl637a9a72017-05-04 05:15:03 -070014814 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE, reg);
14815 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_PARTITION_KEY, 0);
14816
14817 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014818}
14819
14820/*
14821 * Start doing the clean up the the chip. Our clean up happens in multiple
14822 * stages and this is just the first.
14823 */
14824void hfi1_start_cleanup(struct hfi1_devdata *dd)
14825{
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -080014826 aspm_exit(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014827 free_cntrs(dd);
14828 free_rcverr(dd);
Dean Luicka2ee27a2016-03-05 08:49:50 -080014829 finish_chip_resources(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014830}
14831
14832#define HFI_BASE_GUID(dev) \
14833 ((dev)->base_guid & ~(1ULL << GUID_HFI_INDEX_SHIFT))
14834
14835/*
Dean Luick78eb1292016-03-05 08:49:45 -080014836 * Information can be shared between the two HFIs on the same ASIC
14837 * in the same OS. This function finds the peer device and sets
14838 * up a shared structure.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014839 */
Dean Luick78eb1292016-03-05 08:49:45 -080014840static int init_asic_data(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014841{
14842 unsigned long flags;
14843 struct hfi1_devdata *tmp, *peer = NULL;
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014844 struct hfi1_asic_data *asic_data;
Dean Luick78eb1292016-03-05 08:49:45 -080014845 int ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014846
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014847 /* pre-allocate the asic structure in case we are the first device */
14848 asic_data = kzalloc(sizeof(*dd->asic_data), GFP_KERNEL);
14849 if (!asic_data)
14850 return -ENOMEM;
14851
Mike Marciniszyn77241052015-07-30 15:17:43 -040014852 spin_lock_irqsave(&hfi1_devs_lock, flags);
14853 /* Find our peer device */
14854 list_for_each_entry(tmp, &hfi1_dev_list, list) {
14855 if ((HFI_BASE_GUID(dd) == HFI_BASE_GUID(tmp)) &&
14856 dd->unit != tmp->unit) {
14857 peer = tmp;
14858 break;
14859 }
14860 }
14861
Dean Luick78eb1292016-03-05 08:49:45 -080014862 if (peer) {
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014863 /* use already allocated structure */
Dean Luick78eb1292016-03-05 08:49:45 -080014864 dd->asic_data = peer->asic_data;
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014865 kfree(asic_data);
Dean Luick78eb1292016-03-05 08:49:45 -080014866 } else {
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014867 dd->asic_data = asic_data;
Dean Luick78eb1292016-03-05 08:49:45 -080014868 mutex_init(&dd->asic_data->asic_resource_mutex);
14869 }
14870 dd->asic_data->dds[dd->hfi1_id] = dd; /* self back-pointer */
Mike Marciniszyn77241052015-07-30 15:17:43 -040014871 spin_unlock_irqrestore(&hfi1_devs_lock, flags);
Dean Luickdba715f2016-07-06 17:28:52 -040014872
14873 /* first one through - set up i2c devices */
14874 if (!peer)
14875 ret = set_up_i2c(dd, dd->asic_data);
14876
Dean Luick78eb1292016-03-05 08:49:45 -080014877 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014878}
14879
Dean Luick5d9157a2015-11-16 21:59:34 -050014880/*
14881 * Set dd->boardname. Use a generic name if a name is not returned from
14882 * EFI variable space.
14883 *
14884 * Return 0 on success, -ENOMEM if space could not be allocated.
14885 */
14886static int obtain_boardname(struct hfi1_devdata *dd)
14887{
14888 /* generic board description */
14889 const char generic[] =
14890 "Intel Omni-Path Host Fabric Interface Adapter 100 Series";
14891 unsigned long size;
14892 int ret;
14893
14894 ret = read_hfi1_efi_var(dd, "description", &size,
14895 (void **)&dd->boardname);
14896 if (ret) {
Dean Luick845f8762016-02-03 14:31:57 -080014897 dd_dev_info(dd, "Board description not found\n");
Dean Luick5d9157a2015-11-16 21:59:34 -050014898 /* use generic description */
14899 dd->boardname = kstrdup(generic, GFP_KERNEL);
14900 if (!dd->boardname)
14901 return -ENOMEM;
14902 }
14903 return 0;
14904}
14905
Kaike Wan24487dd2016-02-26 13:33:23 -080014906/*
14907 * Check the interrupt registers to make sure that they are mapped correctly.
14908 * It is intended to help user identify any mismapping by VMM when the driver
14909 * is running in a VM. This function should only be called before interrupt
14910 * is set up properly.
14911 *
14912 * Return 0 on success, -EINVAL on failure.
14913 */
14914static int check_int_registers(struct hfi1_devdata *dd)
14915{
14916 u64 reg;
14917 u64 all_bits = ~(u64)0;
14918 u64 mask;
14919
14920 /* Clear CceIntMask[0] to avoid raising any interrupts */
14921 mask = read_csr(dd, CCE_INT_MASK);
14922 write_csr(dd, CCE_INT_MASK, 0ull);
14923 reg = read_csr(dd, CCE_INT_MASK);
14924 if (reg)
14925 goto err_exit;
14926
14927 /* Clear all interrupt status bits */
14928 write_csr(dd, CCE_INT_CLEAR, all_bits);
14929 reg = read_csr(dd, CCE_INT_STATUS);
14930 if (reg)
14931 goto err_exit;
14932
14933 /* Set all interrupt status bits */
14934 write_csr(dd, CCE_INT_FORCE, all_bits);
14935 reg = read_csr(dd, CCE_INT_STATUS);
14936 if (reg != all_bits)
14937 goto err_exit;
14938
14939 /* Restore the interrupt mask */
14940 write_csr(dd, CCE_INT_CLEAR, all_bits);
14941 write_csr(dd, CCE_INT_MASK, mask);
14942
14943 return 0;
14944err_exit:
14945 write_csr(dd, CCE_INT_MASK, mask);
14946 dd_dev_err(dd, "Interrupt registers not properly mapped by VMM\n");
14947 return -EINVAL;
14948}
14949
Mike Marciniszyn77241052015-07-30 15:17:43 -040014950/**
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040014951 * Allocate and initialize the device structure for the hfi.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014952 * @dev: the pci_dev for hfi1_ib device
14953 * @ent: pci_device_id struct for this dev
14954 *
14955 * Also allocates, initializes, and returns the devdata struct for this
14956 * device instance
14957 *
14958 * This is global, and is called directly at init to set up the
14959 * chip-specific function pointers for later use.
14960 */
14961struct hfi1_devdata *hfi1_init_dd(struct pci_dev *pdev,
14962 const struct pci_device_id *ent)
14963{
14964 struct hfi1_devdata *dd;
14965 struct hfi1_pportdata *ppd;
14966 u64 reg;
14967 int i, ret;
14968 static const char * const inames[] = { /* implementation names */
14969 "RTL silicon",
14970 "RTL VCS simulation",
14971 "RTL FPGA emulation",
14972 "Functional simulator"
14973 };
Kaike Wan24487dd2016-02-26 13:33:23 -080014974 struct pci_dev *parent = pdev->bus->self;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014975
Jubin John17fb4f22016-02-14 20:21:52 -080014976 dd = hfi1_alloc_devdata(pdev, NUM_IB_PORTS *
14977 sizeof(struct hfi1_pportdata));
Mike Marciniszyn77241052015-07-30 15:17:43 -040014978 if (IS_ERR(dd))
14979 goto bail;
14980 ppd = dd->pport;
14981 for (i = 0; i < dd->num_pports; i++, ppd++) {
14982 int vl;
14983 /* init common fields */
14984 hfi1_init_pportdata(pdev, ppd, dd, 0, 1);
14985 /* DC supports 4 link widths */
14986 ppd->link_width_supported =
14987 OPA_LINK_WIDTH_1X | OPA_LINK_WIDTH_2X |
14988 OPA_LINK_WIDTH_3X | OPA_LINK_WIDTH_4X;
14989 ppd->link_width_downgrade_supported =
14990 ppd->link_width_supported;
14991 /* start out enabling only 4X */
14992 ppd->link_width_enabled = OPA_LINK_WIDTH_4X;
14993 ppd->link_width_downgrade_enabled =
14994 ppd->link_width_downgrade_supported;
14995 /* link width active is 0 when link is down */
14996 /* link width downgrade active is 0 when link is down */
14997
Jubin Johnd0d236e2016-02-14 20:20:15 -080014998 if (num_vls < HFI1_MIN_VLS_SUPPORTED ||
14999 num_vls > HFI1_MAX_VLS_SUPPORTED) {
Michael J. Ruhl11f0e892017-12-18 19:57:21 -080015000 dd_dev_err(dd, "Invalid num_vls %u, using %u VLs\n",
15001 num_vls, HFI1_MAX_VLS_SUPPORTED);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015002 num_vls = HFI1_MAX_VLS_SUPPORTED;
15003 }
15004 ppd->vls_supported = num_vls;
15005 ppd->vls_operational = ppd->vls_supported;
15006 /* Set the default MTU. */
15007 for (vl = 0; vl < num_vls; vl++)
15008 dd->vld[vl].mtu = hfi1_max_mtu;
15009 dd->vld[15].mtu = MAX_MAD_PACKET;
15010 /*
15011 * Set the initial values to reasonable default, will be set
15012 * for real when link is up.
15013 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040015014 ppd->overrun_threshold = 0x4;
15015 ppd->phy_error_threshold = 0xf;
15016 ppd->port_crc_mode_enabled = link_crc_mask;
15017 /* initialize supported LTP CRC mode */
15018 ppd->port_ltp_crc_mode = cap_to_port_ltp(link_crc_mask) << 8;
15019 /* initialize enabled LTP CRC mode */
15020 ppd->port_ltp_crc_mode |= cap_to_port_ltp(link_crc_mask) << 4;
15021 /* start in offline */
15022 ppd->host_link_state = HLS_DN_OFFLINE;
15023 init_vl_arb_caches(ppd);
15024 }
15025
Mike Marciniszyn77241052015-07-30 15:17:43 -040015026 /*
15027 * Do remaining PCIe setup and save PCIe values in dd.
15028 * Any error printing is already done by the init code.
15029 * On return, we have the chip mapped.
15030 */
Easwar Hariharan26ea2542016-10-17 04:19:58 -070015031 ret = hfi1_pcie_ddinit(dd, pdev);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015032 if (ret < 0)
15033 goto bail_free;
15034
Bartlomiej Dudeka618b7e2017-07-24 07:46:30 -070015035 /* Save PCI space registers to rewrite after device reset */
15036 ret = save_pci_variables(dd);
15037 if (ret < 0)
15038 goto bail_cleanup;
15039
Mike Marciniszyn77241052015-07-30 15:17:43 -040015040 /* verify that reads actually work, save revision for reset check */
15041 dd->revision = read_csr(dd, CCE_REVISION);
15042 if (dd->revision == ~(u64)0) {
15043 dd_dev_err(dd, "cannot read chip CSRs\n");
15044 ret = -EINVAL;
15045 goto bail_cleanup;
15046 }
15047 dd->majrev = (dd->revision >> CCE_REVISION_CHIP_REV_MAJOR_SHIFT)
15048 & CCE_REVISION_CHIP_REV_MAJOR_MASK;
15049 dd->minrev = (dd->revision >> CCE_REVISION_CHIP_REV_MINOR_SHIFT)
15050 & CCE_REVISION_CHIP_REV_MINOR_MASK;
15051
Jubin John4d114fd2016-02-14 20:21:43 -080015052 /*
Kaike Wan24487dd2016-02-26 13:33:23 -080015053 * Check interrupt registers mapping if the driver has no access to
15054 * the upstream component. In this case, it is likely that the driver
15055 * is running in a VM.
15056 */
15057 if (!parent) {
15058 ret = check_int_registers(dd);
15059 if (ret)
15060 goto bail_cleanup;
15061 }
15062
15063 /*
Jubin John4d114fd2016-02-14 20:21:43 -080015064 * obtain the hardware ID - NOT related to unit, which is a
15065 * software enumeration
15066 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040015067 reg = read_csr(dd, CCE_REVISION2);
15068 dd->hfi1_id = (reg >> CCE_REVISION2_HFI_ID_SHIFT)
15069 & CCE_REVISION2_HFI_ID_MASK;
15070 /* the variable size will remove unwanted bits */
15071 dd->icode = reg >> CCE_REVISION2_IMPL_CODE_SHIFT;
15072 dd->irev = reg >> CCE_REVISION2_IMPL_REVISION_SHIFT;
15073 dd_dev_info(dd, "Implementation: %s, revision 0x%x\n",
Jubin John17fb4f22016-02-14 20:21:52 -080015074 dd->icode < ARRAY_SIZE(inames) ?
15075 inames[dd->icode] : "unknown", (int)dd->irev);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015076
15077 /* speeds the hardware can support */
15078 dd->pport->link_speed_supported = OPA_LINK_SPEED_25G;
15079 /* speeds allowed to run at */
15080 dd->pport->link_speed_enabled = dd->pport->link_speed_supported;
15081 /* give a reasonable active value, will be set on link up */
15082 dd->pport->link_speed_active = OPA_LINK_SPEED_25G;
15083
15084 dd->chip_rcv_contexts = read_csr(dd, RCV_CONTEXTS);
15085 dd->chip_send_contexts = read_csr(dd, SEND_CONTEXTS);
15086 dd->chip_sdma_engines = read_csr(dd, SEND_DMA_ENGINES);
15087 dd->chip_pio_mem_size = read_csr(dd, SEND_PIO_MEM_SIZE);
15088 dd->chip_sdma_mem_size = read_csr(dd, SEND_DMA_MEM_SIZE);
15089 /* fix up link widths for emulation _p */
15090 ppd = dd->pport;
15091 if (dd->icode == ICODE_FPGA_EMULATION && is_emulator_p(dd)) {
15092 ppd->link_width_supported =
15093 ppd->link_width_enabled =
15094 ppd->link_width_downgrade_supported =
15095 ppd->link_width_downgrade_enabled =
15096 OPA_LINK_WIDTH_1X;
15097 }
15098 /* insure num_vls isn't larger than number of sdma engines */
15099 if (HFI1_CAP_IS_KSET(SDMA) && num_vls > dd->chip_sdma_engines) {
15100 dd_dev_err(dd, "num_vls %u too large, using %u VLs\n",
Dean Luick11a59092015-12-01 15:38:18 -050015101 num_vls, dd->chip_sdma_engines);
15102 num_vls = dd->chip_sdma_engines;
15103 ppd->vls_supported = dd->chip_sdma_engines;
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080015104 ppd->vls_operational = ppd->vls_supported;
Mike Marciniszyn77241052015-07-30 15:17:43 -040015105 }
15106
15107 /*
15108 * Convert the ns parameter to the 64 * cclocks used in the CSR.
15109 * Limit the max if larger than the field holds. If timeout is
15110 * non-zero, then the calculated field will be at least 1.
15111 *
15112 * Must be after icode is set up - the cclock rate depends
15113 * on knowing the hardware being used.
15114 */
15115 dd->rcv_intr_timeout_csr = ns_to_cclock(dd, rcv_intr_timeout) / 64;
15116 if (dd->rcv_intr_timeout_csr >
15117 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_MASK)
15118 dd->rcv_intr_timeout_csr =
15119 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_MASK;
15120 else if (dd->rcv_intr_timeout_csr == 0 && rcv_intr_timeout)
15121 dd->rcv_intr_timeout_csr = 1;
15122
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040015123 /* needs to be done before we look for the peer device */
15124 read_guid(dd);
15125
Dean Luick78eb1292016-03-05 08:49:45 -080015126 /* set up shared ASIC data with peer device */
15127 ret = init_asic_data(dd);
15128 if (ret)
15129 goto bail_cleanup;
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040015130
Mike Marciniszyn77241052015-07-30 15:17:43 -040015131 /* obtain chip sizes, reset chip CSRs */
Bartlomiej Dudekc53df622017-06-30 13:14:40 -070015132 ret = init_chip(dd);
15133 if (ret)
15134 goto bail_cleanup;
Mike Marciniszyn77241052015-07-30 15:17:43 -040015135
15136 /* read in the PCIe link speed information */
15137 ret = pcie_speeds(dd);
15138 if (ret)
15139 goto bail_cleanup;
15140
Dean Luicke83eba22016-09-30 04:41:45 -070015141 /* call before get_platform_config(), after init_chip_resources() */
15142 ret = eprom_init(dd);
15143 if (ret)
15144 goto bail_free_rcverr;
15145
Easwar Hariharanc3838b32016-02-09 14:29:13 -080015146 /* Needs to be called before hfi1_firmware_init */
15147 get_platform_config(dd);
15148
Mike Marciniszyn77241052015-07-30 15:17:43 -040015149 /* read in firmware */
15150 ret = hfi1_firmware_init(dd);
15151 if (ret)
15152 goto bail_cleanup;
15153
15154 /*
15155 * In general, the PCIe Gen3 transition must occur after the
15156 * chip has been idled (so it won't initiate any PCIe transactions
15157 * e.g. an interrupt) and before the driver changes any registers
15158 * (the transition will reset the registers).
15159 *
15160 * In particular, place this call after:
15161 * - init_chip() - the chip will not initiate any PCIe transactions
15162 * - pcie_speeds() - reads the current link speed
15163 * - hfi1_firmware_init() - the needed firmware is ready to be
15164 * downloaded
15165 */
15166 ret = do_pcie_gen3_transition(dd);
15167 if (ret)
15168 goto bail_cleanup;
15169
15170 /* start setting dd values and adjusting CSRs */
15171 init_early_variables(dd);
15172
15173 parse_platform_config(dd);
15174
Dean Luick5d9157a2015-11-16 21:59:34 -050015175 ret = obtain_boardname(dd);
15176 if (ret)
Mike Marciniszyn77241052015-07-30 15:17:43 -040015177 goto bail_cleanup;
Mike Marciniszyn77241052015-07-30 15:17:43 -040015178
15179 snprintf(dd->boardversion, BOARD_VERS_MAX,
Dean Luick5d9157a2015-11-16 21:59:34 -050015180 "ChipABI %u.%u, ChipRev %u.%u, SW Compat %llu\n",
Mike Marciniszyn77241052015-07-30 15:17:43 -040015181 HFI1_CHIP_VERS_MAJ, HFI1_CHIP_VERS_MIN,
Mike Marciniszyn77241052015-07-30 15:17:43 -040015182 (u32)dd->majrev,
15183 (u32)dd->minrev,
15184 (dd->revision >> CCE_REVISION_SW_SHIFT)
15185 & CCE_REVISION_SW_MASK);
15186
15187 ret = set_up_context_variables(dd);
15188 if (ret)
15189 goto bail_cleanup;
15190
15191 /* set initial RXE CSRs */
15192 init_rxe(dd);
15193 /* set initial TXE CSRs */
15194 init_txe(dd);
15195 /* set initial non-RXE, non-TXE CSRs */
15196 init_other(dd);
15197 /* set up KDETH QP prefix in both RX and TX CSRs */
15198 init_kdeth_qp(dd);
15199
Dennis Dalessandro41973442016-07-25 07:52:36 -070015200 ret = hfi1_dev_affinity_init(dd);
15201 if (ret)
15202 goto bail_cleanup;
Mitko Haralanov957558c2016-02-03 14:33:40 -080015203
Mike Marciniszyn77241052015-07-30 15:17:43 -040015204 /* send contexts must be set up before receive contexts */
15205 ret = init_send_contexts(dd);
15206 if (ret)
15207 goto bail_cleanup;
15208
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -070015209 ret = hfi1_create_kctxts(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015210 if (ret)
15211 goto bail_cleanup;
15212
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -070015213 /*
15214 * Initialize aspm, to be done after gen3 transition and setting up
15215 * contexts and before enabling interrupts
15216 */
15217 aspm_init(dd);
15218
Mike Marciniszyn77241052015-07-30 15:17:43 -040015219 dd->rcvhdrsize = DEFAULT_RCVHDRSIZE;
15220 /*
15221 * rcd[0] is guaranteed to be valid by this point. Also, all
15222 * context are using the same value, as per the module parameter.
15223 */
15224 dd->rhf_offset = dd->rcd[0]->rcvhdrqentsize - sizeof(u64) / sizeof(u32);
15225
15226 ret = init_pervl_scs(dd);
15227 if (ret)
15228 goto bail_cleanup;
15229
15230 /* sdma init */
15231 for (i = 0; i < dd->num_pports; ++i) {
15232 ret = sdma_init(dd, i);
15233 if (ret)
15234 goto bail_cleanup;
15235 }
15236
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -070015237 /* use contexts created by hfi1_create_kctxts */
Mike Marciniszyn77241052015-07-30 15:17:43 -040015238 ret = set_up_interrupts(dd);
15239 if (ret)
15240 goto bail_cleanup;
15241
15242 /* set up LCB access - must be after set_up_interrupts() */
15243 init_lcb_access(dd);
15244
Ira Weinyfc0b76c2016-07-27 21:09:40 -040015245 /*
15246 * Serial number is created from the base guid:
15247 * [27:24] = base guid [38:35]
15248 * [23: 0] = base guid [23: 0]
15249 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040015250 snprintf(dd->serial, SERIAL_MAX, "0x%08llx\n",
Ira Weinyfc0b76c2016-07-27 21:09:40 -040015251 (dd->base_guid & 0xFFFFFF) |
15252 ((dd->base_guid >> 11) & 0xF000000));
Mike Marciniszyn77241052015-07-30 15:17:43 -040015253
15254 dd->oui1 = dd->base_guid >> 56 & 0xFF;
15255 dd->oui2 = dd->base_guid >> 48 & 0xFF;
15256 dd->oui3 = dd->base_guid >> 40 & 0xFF;
15257
15258 ret = load_firmware(dd); /* asymmetric with dispose_firmware() */
15259 if (ret)
15260 goto bail_clear_intr;
Mike Marciniszyn77241052015-07-30 15:17:43 -040015261
15262 thermal_init(dd);
15263
15264 ret = init_cntrs(dd);
15265 if (ret)
15266 goto bail_clear_intr;
15267
15268 ret = init_rcverr(dd);
15269 if (ret)
15270 goto bail_free_cntrs;
15271
Tadeusz Strukacd7c8f2016-10-25 08:57:55 -070015272 init_completion(&dd->user_comp);
15273
15274 /* The user refcount starts with one to inidicate an active device */
15275 atomic_set(&dd->user_refcount, 1);
15276
Mike Marciniszyn77241052015-07-30 15:17:43 -040015277 goto bail;
15278
15279bail_free_rcverr:
15280 free_rcverr(dd);
15281bail_free_cntrs:
15282 free_cntrs(dd);
15283bail_clear_intr:
Michael J. Ruhl82a97922018-02-01 10:43:42 -080015284 hfi1_clean_up_interrupts(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015285bail_cleanup:
15286 hfi1_pcie_ddcleanup(dd);
15287bail_free:
15288 hfi1_free_devdata(dd);
15289 dd = ERR_PTR(ret);
15290bail:
15291 return dd;
15292}
15293
15294static u16 delay_cycles(struct hfi1_pportdata *ppd, u32 desired_egress_rate,
15295 u32 dw_len)
15296{
15297 u32 delta_cycles;
15298 u32 current_egress_rate = ppd->current_egress_rate;
15299 /* rates here are in units of 10^6 bits/sec */
15300
15301 if (desired_egress_rate == -1)
15302 return 0; /* shouldn't happen */
15303
15304 if (desired_egress_rate >= current_egress_rate)
15305 return 0; /* we can't help go faster, only slower */
15306
15307 delta_cycles = egress_cycles(dw_len * 4, desired_egress_rate) -
15308 egress_cycles(dw_len * 4, current_egress_rate);
15309
15310 return (u16)delta_cycles;
15311}
15312
Mike Marciniszyn77241052015-07-30 15:17:43 -040015313/**
15314 * create_pbc - build a pbc for transmission
15315 * @flags: special case flags or-ed in built pbc
15316 * @srate: static rate
15317 * @vl: vl
15318 * @dwlen: dword length (header words + data words + pbc words)
15319 *
15320 * Create a PBC with the given flags, rate, VL, and length.
15321 *
15322 * NOTE: The PBC created will not insert any HCRC - all callers but one are
15323 * for verbs, which does not use this PSM feature. The lone other caller
15324 * is for the diagnostic interface which calls this if the user does not
15325 * supply their own PBC.
15326 */
15327u64 create_pbc(struct hfi1_pportdata *ppd, u64 flags, int srate_mbs, u32 vl,
15328 u32 dw_len)
15329{
15330 u64 pbc, delay = 0;
15331
15332 if (unlikely(srate_mbs))
15333 delay = delay_cycles(ppd, srate_mbs, dw_len);
15334
15335 pbc = flags
15336 | (delay << PBC_STATIC_RATE_CONTROL_COUNT_SHIFT)
15337 | ((u64)PBC_IHCRC_NONE << PBC_INSERT_HCRC_SHIFT)
15338 | (vl & PBC_VL_MASK) << PBC_VL_SHIFT
15339 | (dw_len & PBC_LENGTH_DWS_MASK)
15340 << PBC_LENGTH_DWS_SHIFT;
15341
15342 return pbc;
15343}
15344
15345#define SBUS_THERMAL 0x4f
15346#define SBUS_THERM_MONITOR_MODE 0x1
15347
15348#define THERM_FAILURE(dev, ret, reason) \
15349 dd_dev_err((dd), \
15350 "Thermal sensor initialization failed: %s (%d)\n", \
15351 (reason), (ret))
15352
15353/*
Jakub Pawlakcde10af2016-05-12 10:23:35 -070015354 * Initialize the thermal sensor.
Mike Marciniszyn77241052015-07-30 15:17:43 -040015355 *
15356 * After initialization, enable polling of thermal sensor through
15357 * SBus interface. In order for this to work, the SBus Master
15358 * firmware has to be loaded due to the fact that the HW polling
15359 * logic uses SBus interrupts, which are not supported with
15360 * default firmware. Otherwise, no data will be returned through
15361 * the ASIC_STS_THERM CSR.
15362 */
15363static int thermal_init(struct hfi1_devdata *dd)
15364{
15365 int ret = 0;
15366
15367 if (dd->icode != ICODE_RTL_SILICON ||
Dean Luicka4536982016-03-05 08:50:11 -080015368 check_chip_resource(dd, CR_THERM_INIT, NULL))
Mike Marciniszyn77241052015-07-30 15:17:43 -040015369 return ret;
15370
Dean Luick576531f2016-03-05 08:50:01 -080015371 ret = acquire_chip_resource(dd, CR_SBUS, SBUS_TIMEOUT);
15372 if (ret) {
15373 THERM_FAILURE(dd, ret, "Acquire SBus");
15374 return ret;
15375 }
15376
Mike Marciniszyn77241052015-07-30 15:17:43 -040015377 dd_dev_info(dd, "Initializing thermal sensor\n");
Jareer Abdel-Qader4ef98982015-11-06 20:07:00 -050015378 /* Disable polling of thermal readings */
15379 write_csr(dd, ASIC_CFG_THERM_POLL_EN, 0x0);
15380 msleep(100);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015381 /* Thermal Sensor Initialization */
15382 /* Step 1: Reset the Thermal SBus Receiver */
15383 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x0,
15384 RESET_SBUS_RECEIVER, 0);
15385 if (ret) {
15386 THERM_FAILURE(dd, ret, "Bus Reset");
15387 goto done;
15388 }
15389 /* Step 2: Set Reset bit in Thermal block */
15390 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x0,
15391 WRITE_SBUS_RECEIVER, 0x1);
15392 if (ret) {
15393 THERM_FAILURE(dd, ret, "Therm Block Reset");
15394 goto done;
15395 }
15396 /* Step 3: Write clock divider value (100MHz -> 2MHz) */
15397 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x1,
15398 WRITE_SBUS_RECEIVER, 0x32);
15399 if (ret) {
15400 THERM_FAILURE(dd, ret, "Write Clock Div");
15401 goto done;
15402 }
15403 /* Step 4: Select temperature mode */
15404 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x3,
15405 WRITE_SBUS_RECEIVER,
15406 SBUS_THERM_MONITOR_MODE);
15407 if (ret) {
15408 THERM_FAILURE(dd, ret, "Write Mode Sel");
15409 goto done;
15410 }
15411 /* Step 5: De-assert block reset and start conversion */
15412 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x0,
15413 WRITE_SBUS_RECEIVER, 0x2);
15414 if (ret) {
15415 THERM_FAILURE(dd, ret, "Write Reset Deassert");
15416 goto done;
15417 }
15418 /* Step 5.1: Wait for first conversion (21.5ms per spec) */
15419 msleep(22);
15420
15421 /* Enable polling of thermal readings */
15422 write_csr(dd, ASIC_CFG_THERM_POLL_EN, 0x1);
Dean Luicka4536982016-03-05 08:50:11 -080015423
15424 /* Set initialized flag */
15425 ret = acquire_chip_resource(dd, CR_THERM_INIT, 0);
15426 if (ret)
15427 THERM_FAILURE(dd, ret, "Unable to set thermal init flag");
15428
Mike Marciniszyn77241052015-07-30 15:17:43 -040015429done:
Dean Luick576531f2016-03-05 08:50:01 -080015430 release_chip_resource(dd, CR_SBUS);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015431 return ret;
15432}
15433
15434static void handle_temp_err(struct hfi1_devdata *dd)
15435{
15436 struct hfi1_pportdata *ppd = &dd->pport[0];
15437 /*
15438 * Thermal Critical Interrupt
15439 * Put the device into forced freeze mode, take link down to
15440 * offline, and put DC into reset.
15441 */
15442 dd_dev_emerg(dd,
15443 "Critical temperature reached! Forcing device into freeze mode!\n");
15444 dd->flags |= HFI1_FORCED_FREEZE;
Jubin John8638b772016-02-14 20:19:24 -080015445 start_freeze_handling(ppd, FREEZE_SELF | FREEZE_ABORT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015446 /*
15447 * Shut DC down as much and as quickly as possible.
15448 *
15449 * Step 1: Take the link down to OFFLINE. This will cause the
15450 * 8051 to put the Serdes in reset. However, we don't want to
15451 * go through the entire link state machine since we want to
15452 * shutdown ASAP. Furthermore, this is not a graceful shutdown
15453 * but rather an attempt to save the chip.
15454 * Code below is almost the same as quiet_serdes() but avoids
15455 * all the extra work and the sleeps.
15456 */
15457 ppd->driver_link_ready = 0;
15458 ppd->link_enabled = 0;
Harish Chegondibf640092016-03-05 08:49:29 -080015459 set_physical_link_state(dd, (OPA_LINKDOWN_REASON_SMA_DISABLED << 8) |
15460 PLS_OFFLINE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015461 /*
15462 * Step 2: Shutdown LCB and 8051
15463 * After shutdown, do not restore DC_CFG_RESET value.
15464 */
15465 dc_shutdown(dd);
15466}