blob: cdc388cd713b0bb28d0a5bab8208e10056d3d872 [file] [log] [blame]
Mike Marciniszyn77241052015-07-30 15:17:43 -04001/*
Jubin John05d6ac12016-02-14 20:22:17 -08002 * Copyright(c) 2015, 2016 Intel Corporation.
Mike Marciniszyn77241052015-07-30 15:17:43 -04003 *
4 * This file is provided under a dual BSD/GPLv2 license. When using or
5 * redistributing this file, you may do so under either license.
6 *
7 * GPL LICENSE SUMMARY
8 *
Mike Marciniszyn77241052015-07-30 15:17:43 -04009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * BSD LICENSE
19 *
Mike Marciniszyn77241052015-07-30 15:17:43 -040020 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 *
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
29 * distribution.
30 * - Neither the name of Intel Corporation nor the names of its
31 * contributors may be used to endorse or promote products derived
32 * from this software without specific prior written permission.
33 *
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45 *
46 */
47
48/*
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"
Mike Marciniszyn77241052015-07-30 15:17:43 -040067
68#define NUM_IB_PORTS 1
69
70uint kdeth_qp;
71module_param_named(kdeth_qp, kdeth_qp, uint, S_IRUGO);
72MODULE_PARM_DESC(kdeth_qp, "Set the KDETH queue pair prefix");
73
74uint num_vls = HFI1_MAX_VLS_SUPPORTED;
75module_param(num_vls, uint, S_IRUGO);
76MODULE_PARM_DESC(num_vls, "Set number of Virtual Lanes to use (1-8)");
77
78/*
79 * Default time to aggregate two 10K packets from the idle state
80 * (timer not running). The timer starts at the end of the first packet,
81 * so only the time for one 10K packet and header plus a bit extra is needed.
82 * 10 * 1024 + 64 header byte = 10304 byte
83 * 10304 byte / 12.5 GB/s = 824.32ns
84 */
85uint rcv_intr_timeout = (824 + 16); /* 16 is for coalescing interrupt */
86module_param(rcv_intr_timeout, uint, S_IRUGO);
87MODULE_PARM_DESC(rcv_intr_timeout, "Receive interrupt mitigation timeout in ns");
88
89uint rcv_intr_count = 16; /* same as qib */
90module_param(rcv_intr_count, uint, S_IRUGO);
91MODULE_PARM_DESC(rcv_intr_count, "Receive interrupt mitigation count");
92
93ushort link_crc_mask = SUPPORTED_CRCS;
94module_param(link_crc_mask, ushort, S_IRUGO);
95MODULE_PARM_DESC(link_crc_mask, "CRCs to use on the link");
96
97uint loopback;
98module_param_named(loopback, loopback, uint, S_IRUGO);
99MODULE_PARM_DESC(loopback, "Put into loopback mode (1 = serdes, 3 = external cable");
100
101/* Other driver tunables */
102uint rcv_intr_dynamic = 1; /* enable dynamic mode for rcv int mitigation*/
103static ushort crc_14b_sideband = 1;
104static uint use_flr = 1;
105uint quick_linkup; /* skip LNI */
106
107struct flag_table {
108 u64 flag; /* the flag */
109 char *str; /* description string */
110 u16 extra; /* extra information */
111 u16 unused0;
112 u32 unused1;
113};
114
115/* str must be a string constant */
116#define FLAG_ENTRY(str, extra, flag) {flag, str, extra}
117#define FLAG_ENTRY0(str, flag) {flag, str, 0}
118
119/* Send Error Consequences */
120#define SEC_WRITE_DROPPED 0x1
121#define SEC_PACKET_DROPPED 0x2
122#define SEC_SC_HALTED 0x4 /* per-context only */
123#define SEC_SPC_FREEZE 0x8 /* per-HFI only */
124
Harish Chegondi8784ac02016-07-25 13:38:50 -0700125#define DEFAULT_KRCVQS 2
Mike Marciniszyn77241052015-07-30 15:17:43 -0400126#define MIN_KERNEL_KCTXTS 2
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500127#define FIRST_KERNEL_KCTXT 1
Dean Luick372cc85a2016-04-12 11:30:51 -0700128/* sizes for both the QP and RSM map tables */
129#define NUM_MAP_ENTRIES 256
Mike Marciniszyn77241052015-07-30 15:17:43 -0400130#define NUM_MAP_REGS 32
131
132/* Bit offset into the GUID which carries HFI id information */
133#define GUID_HFI_INDEX_SHIFT 39
134
135/* extract the emulation revision */
136#define emulator_rev(dd) ((dd)->irev >> 8)
137/* parallel and serial emulation versions are 3 and 4 respectively */
138#define is_emulator_p(dd) ((((dd)->irev) & 0xf) == 3)
139#define is_emulator_s(dd) ((((dd)->irev) & 0xf) == 4)
140
141/* RSM fields */
142
143/* packet type */
144#define IB_PACKET_TYPE 2ull
145#define QW_SHIFT 6ull
146/* QPN[7..1] */
147#define QPN_WIDTH 7ull
148
149/* LRH.BTH: QW 0, OFFSET 48 - for match */
150#define LRH_BTH_QW 0ull
151#define LRH_BTH_BIT_OFFSET 48ull
152#define LRH_BTH_OFFSET(off) ((LRH_BTH_QW << QW_SHIFT) | (off))
153#define LRH_BTH_MATCH_OFFSET LRH_BTH_OFFSET(LRH_BTH_BIT_OFFSET)
154#define LRH_BTH_SELECT
155#define LRH_BTH_MASK 3ull
156#define LRH_BTH_VALUE 2ull
157
158/* LRH.SC[3..0] QW 0, OFFSET 56 - for match */
159#define LRH_SC_QW 0ull
160#define LRH_SC_BIT_OFFSET 56ull
161#define LRH_SC_OFFSET(off) ((LRH_SC_QW << QW_SHIFT) | (off))
162#define LRH_SC_MATCH_OFFSET LRH_SC_OFFSET(LRH_SC_BIT_OFFSET)
163#define LRH_SC_MASK 128ull
164#define LRH_SC_VALUE 0ull
165
166/* SC[n..0] QW 0, OFFSET 60 - for select */
167#define LRH_SC_SELECT_OFFSET ((LRH_SC_QW << QW_SHIFT) | (60ull))
168
169/* QPN[m+n:1] QW 1, OFFSET 1 */
170#define QPN_SELECT_OFFSET ((1ull << QW_SHIFT) | (1ull))
171
172/* defines to build power on SC2VL table */
173#define SC2VL_VAL( \
174 num, \
175 sc0, sc0val, \
176 sc1, sc1val, \
177 sc2, sc2val, \
178 sc3, sc3val, \
179 sc4, sc4val, \
180 sc5, sc5val, \
181 sc6, sc6val, \
182 sc7, sc7val) \
183( \
184 ((u64)(sc0val) << SEND_SC2VLT##num##_SC##sc0##_SHIFT) | \
185 ((u64)(sc1val) << SEND_SC2VLT##num##_SC##sc1##_SHIFT) | \
186 ((u64)(sc2val) << SEND_SC2VLT##num##_SC##sc2##_SHIFT) | \
187 ((u64)(sc3val) << SEND_SC2VLT##num##_SC##sc3##_SHIFT) | \
188 ((u64)(sc4val) << SEND_SC2VLT##num##_SC##sc4##_SHIFT) | \
189 ((u64)(sc5val) << SEND_SC2VLT##num##_SC##sc5##_SHIFT) | \
190 ((u64)(sc6val) << SEND_SC2VLT##num##_SC##sc6##_SHIFT) | \
191 ((u64)(sc7val) << SEND_SC2VLT##num##_SC##sc7##_SHIFT) \
192)
193
194#define DC_SC_VL_VAL( \
195 range, \
196 e0, e0val, \
197 e1, e1val, \
198 e2, e2val, \
199 e3, e3val, \
200 e4, e4val, \
201 e5, e5val, \
202 e6, e6val, \
203 e7, e7val, \
204 e8, e8val, \
205 e9, e9val, \
206 e10, e10val, \
207 e11, e11val, \
208 e12, e12val, \
209 e13, e13val, \
210 e14, e14val, \
211 e15, e15val) \
212( \
213 ((u64)(e0val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e0##_SHIFT) | \
214 ((u64)(e1val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e1##_SHIFT) | \
215 ((u64)(e2val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e2##_SHIFT) | \
216 ((u64)(e3val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e3##_SHIFT) | \
217 ((u64)(e4val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e4##_SHIFT) | \
218 ((u64)(e5val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e5##_SHIFT) | \
219 ((u64)(e6val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e6##_SHIFT) | \
220 ((u64)(e7val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e7##_SHIFT) | \
221 ((u64)(e8val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e8##_SHIFT) | \
222 ((u64)(e9val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e9##_SHIFT) | \
223 ((u64)(e10val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e10##_SHIFT) | \
224 ((u64)(e11val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e11##_SHIFT) | \
225 ((u64)(e12val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e12##_SHIFT) | \
226 ((u64)(e13val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e13##_SHIFT) | \
227 ((u64)(e14val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e14##_SHIFT) | \
228 ((u64)(e15val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e15##_SHIFT) \
229)
230
231/* all CceStatus sub-block freeze bits */
232#define ALL_FROZE (CCE_STATUS_SDMA_FROZE_SMASK \
233 | CCE_STATUS_RXE_FROZE_SMASK \
234 | CCE_STATUS_TXE_FROZE_SMASK \
235 | CCE_STATUS_TXE_PIO_FROZE_SMASK)
236/* all CceStatus sub-block TXE pause bits */
237#define ALL_TXE_PAUSE (CCE_STATUS_TXE_PIO_PAUSED_SMASK \
238 | CCE_STATUS_TXE_PAUSED_SMASK \
239 | CCE_STATUS_SDMA_PAUSED_SMASK)
240/* all CceStatus sub-block RXE pause bits */
241#define ALL_RXE_PAUSE CCE_STATUS_RXE_PAUSED_SMASK
242
Jakub Pawlak2b719042016-07-01 16:01:22 -0700243#define CNTR_MAX 0xFFFFFFFFFFFFFFFFULL
244#define CNTR_32BIT_MAX 0x00000000FFFFFFFF
245
Mike Marciniszyn77241052015-07-30 15:17:43 -0400246/*
247 * CCE Error flags.
248 */
249static struct flag_table cce_err_status_flags[] = {
250/* 0*/ FLAG_ENTRY0("CceCsrParityErr",
251 CCE_ERR_STATUS_CCE_CSR_PARITY_ERR_SMASK),
252/* 1*/ FLAG_ENTRY0("CceCsrReadBadAddrErr",
253 CCE_ERR_STATUS_CCE_CSR_READ_BAD_ADDR_ERR_SMASK),
254/* 2*/ FLAG_ENTRY0("CceCsrWriteBadAddrErr",
255 CCE_ERR_STATUS_CCE_CSR_WRITE_BAD_ADDR_ERR_SMASK),
256/* 3*/ FLAG_ENTRY0("CceTrgtAsyncFifoParityErr",
257 CCE_ERR_STATUS_CCE_TRGT_ASYNC_FIFO_PARITY_ERR_SMASK),
258/* 4*/ FLAG_ENTRY0("CceTrgtAccessErr",
259 CCE_ERR_STATUS_CCE_TRGT_ACCESS_ERR_SMASK),
260/* 5*/ FLAG_ENTRY0("CceRspdDataParityErr",
261 CCE_ERR_STATUS_CCE_RSPD_DATA_PARITY_ERR_SMASK),
262/* 6*/ FLAG_ENTRY0("CceCli0AsyncFifoParityErr",
263 CCE_ERR_STATUS_CCE_CLI0_ASYNC_FIFO_PARITY_ERR_SMASK),
264/* 7*/ FLAG_ENTRY0("CceCsrCfgBusParityErr",
265 CCE_ERR_STATUS_CCE_CSR_CFG_BUS_PARITY_ERR_SMASK),
266/* 8*/ FLAG_ENTRY0("CceCli2AsyncFifoParityErr",
267 CCE_ERR_STATUS_CCE_CLI2_ASYNC_FIFO_PARITY_ERR_SMASK),
268/* 9*/ FLAG_ENTRY0("CceCli1AsyncFifoPioCrdtParityErr",
269 CCE_ERR_STATUS_CCE_CLI1_ASYNC_FIFO_PIO_CRDT_PARITY_ERR_SMASK),
270/*10*/ FLAG_ENTRY0("CceCli1AsyncFifoPioCrdtParityErr",
271 CCE_ERR_STATUS_CCE_CLI1_ASYNC_FIFO_SDMA_HD_PARITY_ERR_SMASK),
272/*11*/ FLAG_ENTRY0("CceCli1AsyncFifoRxdmaParityError",
273 CCE_ERR_STATUS_CCE_CLI1_ASYNC_FIFO_RXDMA_PARITY_ERROR_SMASK),
274/*12*/ FLAG_ENTRY0("CceCli1AsyncFifoDbgParityError",
275 CCE_ERR_STATUS_CCE_CLI1_ASYNC_FIFO_DBG_PARITY_ERROR_SMASK),
276/*13*/ FLAG_ENTRY0("PcicRetryMemCorErr",
277 CCE_ERR_STATUS_PCIC_RETRY_MEM_COR_ERR_SMASK),
278/*14*/ FLAG_ENTRY0("PcicRetryMemCorErr",
279 CCE_ERR_STATUS_PCIC_RETRY_SOT_MEM_COR_ERR_SMASK),
280/*15*/ FLAG_ENTRY0("PcicPostHdQCorErr",
281 CCE_ERR_STATUS_PCIC_POST_HD_QCOR_ERR_SMASK),
282/*16*/ FLAG_ENTRY0("PcicPostHdQCorErr",
283 CCE_ERR_STATUS_PCIC_POST_DAT_QCOR_ERR_SMASK),
284/*17*/ FLAG_ENTRY0("PcicPostHdQCorErr",
285 CCE_ERR_STATUS_PCIC_CPL_HD_QCOR_ERR_SMASK),
286/*18*/ FLAG_ENTRY0("PcicCplDatQCorErr",
287 CCE_ERR_STATUS_PCIC_CPL_DAT_QCOR_ERR_SMASK),
288/*19*/ FLAG_ENTRY0("PcicNPostHQParityErr",
289 CCE_ERR_STATUS_PCIC_NPOST_HQ_PARITY_ERR_SMASK),
290/*20*/ FLAG_ENTRY0("PcicNPostDatQParityErr",
291 CCE_ERR_STATUS_PCIC_NPOST_DAT_QPARITY_ERR_SMASK),
292/*21*/ FLAG_ENTRY0("PcicRetryMemUncErr",
293 CCE_ERR_STATUS_PCIC_RETRY_MEM_UNC_ERR_SMASK),
294/*22*/ FLAG_ENTRY0("PcicRetrySotMemUncErr",
295 CCE_ERR_STATUS_PCIC_RETRY_SOT_MEM_UNC_ERR_SMASK),
296/*23*/ FLAG_ENTRY0("PcicPostHdQUncErr",
297 CCE_ERR_STATUS_PCIC_POST_HD_QUNC_ERR_SMASK),
298/*24*/ FLAG_ENTRY0("PcicPostDatQUncErr",
299 CCE_ERR_STATUS_PCIC_POST_DAT_QUNC_ERR_SMASK),
300/*25*/ FLAG_ENTRY0("PcicCplHdQUncErr",
301 CCE_ERR_STATUS_PCIC_CPL_HD_QUNC_ERR_SMASK),
302/*26*/ FLAG_ENTRY0("PcicCplDatQUncErr",
303 CCE_ERR_STATUS_PCIC_CPL_DAT_QUNC_ERR_SMASK),
304/*27*/ FLAG_ENTRY0("PcicTransmitFrontParityErr",
305 CCE_ERR_STATUS_PCIC_TRANSMIT_FRONT_PARITY_ERR_SMASK),
306/*28*/ FLAG_ENTRY0("PcicTransmitBackParityErr",
307 CCE_ERR_STATUS_PCIC_TRANSMIT_BACK_PARITY_ERR_SMASK),
308/*29*/ FLAG_ENTRY0("PcicReceiveParityErr",
309 CCE_ERR_STATUS_PCIC_RECEIVE_PARITY_ERR_SMASK),
310/*30*/ FLAG_ENTRY0("CceTrgtCplTimeoutErr",
311 CCE_ERR_STATUS_CCE_TRGT_CPL_TIMEOUT_ERR_SMASK),
312/*31*/ FLAG_ENTRY0("LATriggered",
313 CCE_ERR_STATUS_LA_TRIGGERED_SMASK),
314/*32*/ FLAG_ENTRY0("CceSegReadBadAddrErr",
315 CCE_ERR_STATUS_CCE_SEG_READ_BAD_ADDR_ERR_SMASK),
316/*33*/ FLAG_ENTRY0("CceSegWriteBadAddrErr",
317 CCE_ERR_STATUS_CCE_SEG_WRITE_BAD_ADDR_ERR_SMASK),
318/*34*/ FLAG_ENTRY0("CceRcplAsyncFifoParityErr",
319 CCE_ERR_STATUS_CCE_RCPL_ASYNC_FIFO_PARITY_ERR_SMASK),
320/*35*/ FLAG_ENTRY0("CceRxdmaConvFifoParityErr",
321 CCE_ERR_STATUS_CCE_RXDMA_CONV_FIFO_PARITY_ERR_SMASK),
322/*36*/ FLAG_ENTRY0("CceMsixTableCorErr",
323 CCE_ERR_STATUS_CCE_MSIX_TABLE_COR_ERR_SMASK),
324/*37*/ FLAG_ENTRY0("CceMsixTableUncErr",
325 CCE_ERR_STATUS_CCE_MSIX_TABLE_UNC_ERR_SMASK),
326/*38*/ FLAG_ENTRY0("CceIntMapCorErr",
327 CCE_ERR_STATUS_CCE_INT_MAP_COR_ERR_SMASK),
328/*39*/ FLAG_ENTRY0("CceIntMapUncErr",
329 CCE_ERR_STATUS_CCE_INT_MAP_UNC_ERR_SMASK),
330/*40*/ FLAG_ENTRY0("CceMsixCsrParityErr",
331 CCE_ERR_STATUS_CCE_MSIX_CSR_PARITY_ERR_SMASK),
332/*41-63 reserved*/
333};
334
335/*
336 * Misc Error flags
337 */
338#define MES(text) MISC_ERR_STATUS_MISC_##text##_ERR_SMASK
339static struct flag_table misc_err_status_flags[] = {
340/* 0*/ FLAG_ENTRY0("CSR_PARITY", MES(CSR_PARITY)),
341/* 1*/ FLAG_ENTRY0("CSR_READ_BAD_ADDR", MES(CSR_READ_BAD_ADDR)),
342/* 2*/ FLAG_ENTRY0("CSR_WRITE_BAD_ADDR", MES(CSR_WRITE_BAD_ADDR)),
343/* 3*/ FLAG_ENTRY0("SBUS_WRITE_FAILED", MES(SBUS_WRITE_FAILED)),
344/* 4*/ FLAG_ENTRY0("KEY_MISMATCH", MES(KEY_MISMATCH)),
345/* 5*/ FLAG_ENTRY0("FW_AUTH_FAILED", MES(FW_AUTH_FAILED)),
346/* 6*/ FLAG_ENTRY0("EFUSE_CSR_PARITY", MES(EFUSE_CSR_PARITY)),
347/* 7*/ FLAG_ENTRY0("EFUSE_READ_BAD_ADDR", MES(EFUSE_READ_BAD_ADDR)),
348/* 8*/ FLAG_ENTRY0("EFUSE_WRITE", MES(EFUSE_WRITE)),
349/* 9*/ FLAG_ENTRY0("EFUSE_DONE_PARITY", MES(EFUSE_DONE_PARITY)),
350/*10*/ FLAG_ENTRY0("INVALID_EEP_CMD", MES(INVALID_EEP_CMD)),
351/*11*/ FLAG_ENTRY0("MBIST_FAIL", MES(MBIST_FAIL)),
352/*12*/ FLAG_ENTRY0("PLL_LOCK_FAIL", MES(PLL_LOCK_FAIL))
353};
354
355/*
356 * TXE PIO Error flags and consequences
357 */
358static struct flag_table pio_err_status_flags[] = {
359/* 0*/ FLAG_ENTRY("PioWriteBadCtxt",
360 SEC_WRITE_DROPPED,
361 SEND_PIO_ERR_STATUS_PIO_WRITE_BAD_CTXT_ERR_SMASK),
362/* 1*/ FLAG_ENTRY("PioWriteAddrParity",
363 SEC_SPC_FREEZE,
364 SEND_PIO_ERR_STATUS_PIO_WRITE_ADDR_PARITY_ERR_SMASK),
365/* 2*/ FLAG_ENTRY("PioCsrParity",
366 SEC_SPC_FREEZE,
367 SEND_PIO_ERR_STATUS_PIO_CSR_PARITY_ERR_SMASK),
368/* 3*/ FLAG_ENTRY("PioSbMemFifo0",
369 SEC_SPC_FREEZE,
370 SEND_PIO_ERR_STATUS_PIO_SB_MEM_FIFO0_ERR_SMASK),
371/* 4*/ FLAG_ENTRY("PioSbMemFifo1",
372 SEC_SPC_FREEZE,
373 SEND_PIO_ERR_STATUS_PIO_SB_MEM_FIFO1_ERR_SMASK),
374/* 5*/ FLAG_ENTRY("PioPccFifoParity",
375 SEC_SPC_FREEZE,
376 SEND_PIO_ERR_STATUS_PIO_PCC_FIFO_PARITY_ERR_SMASK),
377/* 6*/ FLAG_ENTRY("PioPecFifoParity",
378 SEC_SPC_FREEZE,
379 SEND_PIO_ERR_STATUS_PIO_PEC_FIFO_PARITY_ERR_SMASK),
380/* 7*/ FLAG_ENTRY("PioSbrdctlCrrelParity",
381 SEC_SPC_FREEZE,
382 SEND_PIO_ERR_STATUS_PIO_SBRDCTL_CRREL_PARITY_ERR_SMASK),
383/* 8*/ FLAG_ENTRY("PioSbrdctrlCrrelFifoParity",
384 SEC_SPC_FREEZE,
385 SEND_PIO_ERR_STATUS_PIO_SBRDCTRL_CRREL_FIFO_PARITY_ERR_SMASK),
386/* 9*/ FLAG_ENTRY("PioPktEvictFifoParityErr",
387 SEC_SPC_FREEZE,
388 SEND_PIO_ERR_STATUS_PIO_PKT_EVICT_FIFO_PARITY_ERR_SMASK),
389/*10*/ FLAG_ENTRY("PioSmPktResetParity",
390 SEC_SPC_FREEZE,
391 SEND_PIO_ERR_STATUS_PIO_SM_PKT_RESET_PARITY_ERR_SMASK),
392/*11*/ FLAG_ENTRY("PioVlLenMemBank0Unc",
393 SEC_SPC_FREEZE,
394 SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK0_UNC_ERR_SMASK),
395/*12*/ FLAG_ENTRY("PioVlLenMemBank1Unc",
396 SEC_SPC_FREEZE,
397 SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK1_UNC_ERR_SMASK),
398/*13*/ FLAG_ENTRY("PioVlLenMemBank0Cor",
399 0,
400 SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK0_COR_ERR_SMASK),
401/*14*/ FLAG_ENTRY("PioVlLenMemBank1Cor",
402 0,
403 SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK1_COR_ERR_SMASK),
404/*15*/ FLAG_ENTRY("PioCreditRetFifoParity",
405 SEC_SPC_FREEZE,
406 SEND_PIO_ERR_STATUS_PIO_CREDIT_RET_FIFO_PARITY_ERR_SMASK),
407/*16*/ FLAG_ENTRY("PioPpmcPblFifo",
408 SEC_SPC_FREEZE,
409 SEND_PIO_ERR_STATUS_PIO_PPMC_PBL_FIFO_ERR_SMASK),
410/*17*/ FLAG_ENTRY("PioInitSmIn",
411 0,
412 SEND_PIO_ERR_STATUS_PIO_INIT_SM_IN_ERR_SMASK),
413/*18*/ FLAG_ENTRY("PioPktEvictSmOrArbSm",
414 SEC_SPC_FREEZE,
415 SEND_PIO_ERR_STATUS_PIO_PKT_EVICT_SM_OR_ARB_SM_ERR_SMASK),
416/*19*/ FLAG_ENTRY("PioHostAddrMemUnc",
417 SEC_SPC_FREEZE,
418 SEND_PIO_ERR_STATUS_PIO_HOST_ADDR_MEM_UNC_ERR_SMASK),
419/*20*/ FLAG_ENTRY("PioHostAddrMemCor",
420 0,
421 SEND_PIO_ERR_STATUS_PIO_HOST_ADDR_MEM_COR_ERR_SMASK),
422/*21*/ FLAG_ENTRY("PioWriteDataParity",
423 SEC_SPC_FREEZE,
424 SEND_PIO_ERR_STATUS_PIO_WRITE_DATA_PARITY_ERR_SMASK),
425/*22*/ FLAG_ENTRY("PioStateMachine",
426 SEC_SPC_FREEZE,
427 SEND_PIO_ERR_STATUS_PIO_STATE_MACHINE_ERR_SMASK),
428/*23*/ FLAG_ENTRY("PioWriteQwValidParity",
Jubin John8638b772016-02-14 20:19:24 -0800429 SEC_WRITE_DROPPED | SEC_SPC_FREEZE,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400430 SEND_PIO_ERR_STATUS_PIO_WRITE_QW_VALID_PARITY_ERR_SMASK),
431/*24*/ FLAG_ENTRY("PioBlockQwCountParity",
Jubin John8638b772016-02-14 20:19:24 -0800432 SEC_WRITE_DROPPED | SEC_SPC_FREEZE,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400433 SEND_PIO_ERR_STATUS_PIO_BLOCK_QW_COUNT_PARITY_ERR_SMASK),
434/*25*/ FLAG_ENTRY("PioVlfVlLenParity",
435 SEC_SPC_FREEZE,
436 SEND_PIO_ERR_STATUS_PIO_VLF_VL_LEN_PARITY_ERR_SMASK),
437/*26*/ FLAG_ENTRY("PioVlfSopParity",
438 SEC_SPC_FREEZE,
439 SEND_PIO_ERR_STATUS_PIO_VLF_SOP_PARITY_ERR_SMASK),
440/*27*/ FLAG_ENTRY("PioVlFifoParity",
441 SEC_SPC_FREEZE,
442 SEND_PIO_ERR_STATUS_PIO_VL_FIFO_PARITY_ERR_SMASK),
443/*28*/ FLAG_ENTRY("PioPpmcBqcMemParity",
444 SEC_SPC_FREEZE,
445 SEND_PIO_ERR_STATUS_PIO_PPMC_BQC_MEM_PARITY_ERR_SMASK),
446/*29*/ FLAG_ENTRY("PioPpmcSopLen",
447 SEC_SPC_FREEZE,
448 SEND_PIO_ERR_STATUS_PIO_PPMC_SOP_LEN_ERR_SMASK),
449/*30-31 reserved*/
450/*32*/ FLAG_ENTRY("PioCurrentFreeCntParity",
451 SEC_SPC_FREEZE,
452 SEND_PIO_ERR_STATUS_PIO_CURRENT_FREE_CNT_PARITY_ERR_SMASK),
453/*33*/ FLAG_ENTRY("PioLastReturnedCntParity",
454 SEC_SPC_FREEZE,
455 SEND_PIO_ERR_STATUS_PIO_LAST_RETURNED_CNT_PARITY_ERR_SMASK),
456/*34*/ FLAG_ENTRY("PioPccSopHeadParity",
457 SEC_SPC_FREEZE,
458 SEND_PIO_ERR_STATUS_PIO_PCC_SOP_HEAD_PARITY_ERR_SMASK),
459/*35*/ FLAG_ENTRY("PioPecSopHeadParityErr",
460 SEC_SPC_FREEZE,
461 SEND_PIO_ERR_STATUS_PIO_PEC_SOP_HEAD_PARITY_ERR_SMASK),
462/*36-63 reserved*/
463};
464
465/* TXE PIO errors that cause an SPC freeze */
466#define ALL_PIO_FREEZE_ERR \
467 (SEND_PIO_ERR_STATUS_PIO_WRITE_ADDR_PARITY_ERR_SMASK \
468 | SEND_PIO_ERR_STATUS_PIO_CSR_PARITY_ERR_SMASK \
469 | SEND_PIO_ERR_STATUS_PIO_SB_MEM_FIFO0_ERR_SMASK \
470 | SEND_PIO_ERR_STATUS_PIO_SB_MEM_FIFO1_ERR_SMASK \
471 | SEND_PIO_ERR_STATUS_PIO_PCC_FIFO_PARITY_ERR_SMASK \
472 | SEND_PIO_ERR_STATUS_PIO_PEC_FIFO_PARITY_ERR_SMASK \
473 | SEND_PIO_ERR_STATUS_PIO_SBRDCTL_CRREL_PARITY_ERR_SMASK \
474 | SEND_PIO_ERR_STATUS_PIO_SBRDCTRL_CRREL_FIFO_PARITY_ERR_SMASK \
475 | SEND_PIO_ERR_STATUS_PIO_PKT_EVICT_FIFO_PARITY_ERR_SMASK \
476 | SEND_PIO_ERR_STATUS_PIO_SM_PKT_RESET_PARITY_ERR_SMASK \
477 | SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK0_UNC_ERR_SMASK \
478 | SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK1_UNC_ERR_SMASK \
479 | SEND_PIO_ERR_STATUS_PIO_CREDIT_RET_FIFO_PARITY_ERR_SMASK \
480 | SEND_PIO_ERR_STATUS_PIO_PPMC_PBL_FIFO_ERR_SMASK \
481 | SEND_PIO_ERR_STATUS_PIO_PKT_EVICT_SM_OR_ARB_SM_ERR_SMASK \
482 | SEND_PIO_ERR_STATUS_PIO_HOST_ADDR_MEM_UNC_ERR_SMASK \
483 | SEND_PIO_ERR_STATUS_PIO_WRITE_DATA_PARITY_ERR_SMASK \
484 | SEND_PIO_ERR_STATUS_PIO_STATE_MACHINE_ERR_SMASK \
485 | SEND_PIO_ERR_STATUS_PIO_WRITE_QW_VALID_PARITY_ERR_SMASK \
486 | SEND_PIO_ERR_STATUS_PIO_BLOCK_QW_COUNT_PARITY_ERR_SMASK \
487 | SEND_PIO_ERR_STATUS_PIO_VLF_VL_LEN_PARITY_ERR_SMASK \
488 | SEND_PIO_ERR_STATUS_PIO_VLF_SOP_PARITY_ERR_SMASK \
489 | SEND_PIO_ERR_STATUS_PIO_VL_FIFO_PARITY_ERR_SMASK \
490 | SEND_PIO_ERR_STATUS_PIO_PPMC_BQC_MEM_PARITY_ERR_SMASK \
491 | SEND_PIO_ERR_STATUS_PIO_PPMC_SOP_LEN_ERR_SMASK \
492 | SEND_PIO_ERR_STATUS_PIO_CURRENT_FREE_CNT_PARITY_ERR_SMASK \
493 | SEND_PIO_ERR_STATUS_PIO_LAST_RETURNED_CNT_PARITY_ERR_SMASK \
494 | SEND_PIO_ERR_STATUS_PIO_PCC_SOP_HEAD_PARITY_ERR_SMASK \
495 | SEND_PIO_ERR_STATUS_PIO_PEC_SOP_HEAD_PARITY_ERR_SMASK)
496
497/*
498 * TXE SDMA Error flags
499 */
500static struct flag_table sdma_err_status_flags[] = {
501/* 0*/ FLAG_ENTRY0("SDmaRpyTagErr",
502 SEND_DMA_ERR_STATUS_SDMA_RPY_TAG_ERR_SMASK),
503/* 1*/ FLAG_ENTRY0("SDmaCsrParityErr",
504 SEND_DMA_ERR_STATUS_SDMA_CSR_PARITY_ERR_SMASK),
505/* 2*/ FLAG_ENTRY0("SDmaPcieReqTrackingUncErr",
506 SEND_DMA_ERR_STATUS_SDMA_PCIE_REQ_TRACKING_UNC_ERR_SMASK),
507/* 3*/ FLAG_ENTRY0("SDmaPcieReqTrackingCorErr",
508 SEND_DMA_ERR_STATUS_SDMA_PCIE_REQ_TRACKING_COR_ERR_SMASK),
509/*04-63 reserved*/
510};
511
512/* TXE SDMA errors that cause an SPC freeze */
513#define ALL_SDMA_FREEZE_ERR \
514 (SEND_DMA_ERR_STATUS_SDMA_RPY_TAG_ERR_SMASK \
515 | SEND_DMA_ERR_STATUS_SDMA_CSR_PARITY_ERR_SMASK \
516 | SEND_DMA_ERR_STATUS_SDMA_PCIE_REQ_TRACKING_UNC_ERR_SMASK)
517
Mike Marciniszyn69a00b82016-02-03 14:31:49 -0800518/* SendEgressErrInfo bits that correspond to a PortXmitDiscard counter */
519#define PORT_DISCARD_EGRESS_ERRS \
520 (SEND_EGRESS_ERR_INFO_TOO_LONG_IB_PACKET_ERR_SMASK \
521 | SEND_EGRESS_ERR_INFO_VL_MAPPING_ERR_SMASK \
522 | SEND_EGRESS_ERR_INFO_VL_ERR_SMASK)
523
Mike Marciniszyn77241052015-07-30 15:17:43 -0400524/*
525 * TXE Egress Error flags
526 */
527#define SEES(text) SEND_EGRESS_ERR_STATUS_##text##_ERR_SMASK
528static struct flag_table egress_err_status_flags[] = {
529/* 0*/ FLAG_ENTRY0("TxPktIntegrityMemCorErr", SEES(TX_PKT_INTEGRITY_MEM_COR)),
530/* 1*/ FLAG_ENTRY0("TxPktIntegrityMemUncErr", SEES(TX_PKT_INTEGRITY_MEM_UNC)),
531/* 2 reserved */
532/* 3*/ FLAG_ENTRY0("TxEgressFifoUnderrunOrParityErr",
533 SEES(TX_EGRESS_FIFO_UNDERRUN_OR_PARITY)),
534/* 4*/ FLAG_ENTRY0("TxLinkdownErr", SEES(TX_LINKDOWN)),
535/* 5*/ FLAG_ENTRY0("TxIncorrectLinkStateErr", SEES(TX_INCORRECT_LINK_STATE)),
536/* 6 reserved */
537/* 7*/ FLAG_ENTRY0("TxPioLaunchIntfParityErr",
538 SEES(TX_PIO_LAUNCH_INTF_PARITY)),
539/* 8*/ FLAG_ENTRY0("TxSdmaLaunchIntfParityErr",
540 SEES(TX_SDMA_LAUNCH_INTF_PARITY)),
541/* 9-10 reserved */
542/*11*/ FLAG_ENTRY0("TxSbrdCtlStateMachineParityErr",
543 SEES(TX_SBRD_CTL_STATE_MACHINE_PARITY)),
544/*12*/ FLAG_ENTRY0("TxIllegalVLErr", SEES(TX_ILLEGAL_VL)),
545/*13*/ FLAG_ENTRY0("TxLaunchCsrParityErr", SEES(TX_LAUNCH_CSR_PARITY)),
546/*14*/ FLAG_ENTRY0("TxSbrdCtlCsrParityErr", SEES(TX_SBRD_CTL_CSR_PARITY)),
547/*15*/ FLAG_ENTRY0("TxConfigParityErr", SEES(TX_CONFIG_PARITY)),
548/*16*/ FLAG_ENTRY0("TxSdma0DisallowedPacketErr",
549 SEES(TX_SDMA0_DISALLOWED_PACKET)),
550/*17*/ FLAG_ENTRY0("TxSdma1DisallowedPacketErr",
551 SEES(TX_SDMA1_DISALLOWED_PACKET)),
552/*18*/ FLAG_ENTRY0("TxSdma2DisallowedPacketErr",
553 SEES(TX_SDMA2_DISALLOWED_PACKET)),
554/*19*/ FLAG_ENTRY0("TxSdma3DisallowedPacketErr",
555 SEES(TX_SDMA3_DISALLOWED_PACKET)),
556/*20*/ FLAG_ENTRY0("TxSdma4DisallowedPacketErr",
557 SEES(TX_SDMA4_DISALLOWED_PACKET)),
558/*21*/ FLAG_ENTRY0("TxSdma5DisallowedPacketErr",
559 SEES(TX_SDMA5_DISALLOWED_PACKET)),
560/*22*/ FLAG_ENTRY0("TxSdma6DisallowedPacketErr",
561 SEES(TX_SDMA6_DISALLOWED_PACKET)),
562/*23*/ FLAG_ENTRY0("TxSdma7DisallowedPacketErr",
563 SEES(TX_SDMA7_DISALLOWED_PACKET)),
564/*24*/ FLAG_ENTRY0("TxSdma8DisallowedPacketErr",
565 SEES(TX_SDMA8_DISALLOWED_PACKET)),
566/*25*/ FLAG_ENTRY0("TxSdma9DisallowedPacketErr",
567 SEES(TX_SDMA9_DISALLOWED_PACKET)),
568/*26*/ FLAG_ENTRY0("TxSdma10DisallowedPacketErr",
569 SEES(TX_SDMA10_DISALLOWED_PACKET)),
570/*27*/ FLAG_ENTRY0("TxSdma11DisallowedPacketErr",
571 SEES(TX_SDMA11_DISALLOWED_PACKET)),
572/*28*/ FLAG_ENTRY0("TxSdma12DisallowedPacketErr",
573 SEES(TX_SDMA12_DISALLOWED_PACKET)),
574/*29*/ FLAG_ENTRY0("TxSdma13DisallowedPacketErr",
575 SEES(TX_SDMA13_DISALLOWED_PACKET)),
576/*30*/ FLAG_ENTRY0("TxSdma14DisallowedPacketErr",
577 SEES(TX_SDMA14_DISALLOWED_PACKET)),
578/*31*/ FLAG_ENTRY0("TxSdma15DisallowedPacketErr",
579 SEES(TX_SDMA15_DISALLOWED_PACKET)),
580/*32*/ FLAG_ENTRY0("TxLaunchFifo0UncOrParityErr",
581 SEES(TX_LAUNCH_FIFO0_UNC_OR_PARITY)),
582/*33*/ FLAG_ENTRY0("TxLaunchFifo1UncOrParityErr",
583 SEES(TX_LAUNCH_FIFO1_UNC_OR_PARITY)),
584/*34*/ FLAG_ENTRY0("TxLaunchFifo2UncOrParityErr",
585 SEES(TX_LAUNCH_FIFO2_UNC_OR_PARITY)),
586/*35*/ FLAG_ENTRY0("TxLaunchFifo3UncOrParityErr",
587 SEES(TX_LAUNCH_FIFO3_UNC_OR_PARITY)),
588/*36*/ FLAG_ENTRY0("TxLaunchFifo4UncOrParityErr",
589 SEES(TX_LAUNCH_FIFO4_UNC_OR_PARITY)),
590/*37*/ FLAG_ENTRY0("TxLaunchFifo5UncOrParityErr",
591 SEES(TX_LAUNCH_FIFO5_UNC_OR_PARITY)),
592/*38*/ FLAG_ENTRY0("TxLaunchFifo6UncOrParityErr",
593 SEES(TX_LAUNCH_FIFO6_UNC_OR_PARITY)),
594/*39*/ FLAG_ENTRY0("TxLaunchFifo7UncOrParityErr",
595 SEES(TX_LAUNCH_FIFO7_UNC_OR_PARITY)),
596/*40*/ FLAG_ENTRY0("TxLaunchFifo8UncOrParityErr",
597 SEES(TX_LAUNCH_FIFO8_UNC_OR_PARITY)),
598/*41*/ FLAG_ENTRY0("TxCreditReturnParityErr", SEES(TX_CREDIT_RETURN_PARITY)),
599/*42*/ FLAG_ENTRY0("TxSbHdrUncErr", SEES(TX_SB_HDR_UNC)),
600/*43*/ FLAG_ENTRY0("TxReadSdmaMemoryUncErr", SEES(TX_READ_SDMA_MEMORY_UNC)),
601/*44*/ FLAG_ENTRY0("TxReadPioMemoryUncErr", SEES(TX_READ_PIO_MEMORY_UNC)),
602/*45*/ FLAG_ENTRY0("TxEgressFifoUncErr", SEES(TX_EGRESS_FIFO_UNC)),
603/*46*/ FLAG_ENTRY0("TxHcrcInsertionErr", SEES(TX_HCRC_INSERTION)),
604/*47*/ FLAG_ENTRY0("TxCreditReturnVLErr", SEES(TX_CREDIT_RETURN_VL)),
605/*48*/ FLAG_ENTRY0("TxLaunchFifo0CorErr", SEES(TX_LAUNCH_FIFO0_COR)),
606/*49*/ FLAG_ENTRY0("TxLaunchFifo1CorErr", SEES(TX_LAUNCH_FIFO1_COR)),
607/*50*/ FLAG_ENTRY0("TxLaunchFifo2CorErr", SEES(TX_LAUNCH_FIFO2_COR)),
608/*51*/ FLAG_ENTRY0("TxLaunchFifo3CorErr", SEES(TX_LAUNCH_FIFO3_COR)),
609/*52*/ FLAG_ENTRY0("TxLaunchFifo4CorErr", SEES(TX_LAUNCH_FIFO4_COR)),
610/*53*/ FLAG_ENTRY0("TxLaunchFifo5CorErr", SEES(TX_LAUNCH_FIFO5_COR)),
611/*54*/ FLAG_ENTRY0("TxLaunchFifo6CorErr", SEES(TX_LAUNCH_FIFO6_COR)),
612/*55*/ FLAG_ENTRY0("TxLaunchFifo7CorErr", SEES(TX_LAUNCH_FIFO7_COR)),
613/*56*/ FLAG_ENTRY0("TxLaunchFifo8CorErr", SEES(TX_LAUNCH_FIFO8_COR)),
614/*57*/ FLAG_ENTRY0("TxCreditOverrunErr", SEES(TX_CREDIT_OVERRUN)),
615/*58*/ FLAG_ENTRY0("TxSbHdrCorErr", SEES(TX_SB_HDR_COR)),
616/*59*/ FLAG_ENTRY0("TxReadSdmaMemoryCorErr", SEES(TX_READ_SDMA_MEMORY_COR)),
617/*60*/ FLAG_ENTRY0("TxReadPioMemoryCorErr", SEES(TX_READ_PIO_MEMORY_COR)),
618/*61*/ FLAG_ENTRY0("TxEgressFifoCorErr", SEES(TX_EGRESS_FIFO_COR)),
619/*62*/ FLAG_ENTRY0("TxReadSdmaMemoryCsrUncErr",
620 SEES(TX_READ_SDMA_MEMORY_CSR_UNC)),
621/*63*/ FLAG_ENTRY0("TxReadPioMemoryCsrUncErr",
622 SEES(TX_READ_PIO_MEMORY_CSR_UNC)),
623};
624
625/*
626 * TXE Egress Error Info flags
627 */
628#define SEEI(text) SEND_EGRESS_ERR_INFO_##text##_ERR_SMASK
629static struct flag_table egress_err_info_flags[] = {
630/* 0*/ FLAG_ENTRY0("Reserved", 0ull),
631/* 1*/ FLAG_ENTRY0("VLErr", SEEI(VL)),
632/* 2*/ FLAG_ENTRY0("JobKeyErr", SEEI(JOB_KEY)),
633/* 3*/ FLAG_ENTRY0("JobKeyErr", SEEI(JOB_KEY)),
634/* 4*/ FLAG_ENTRY0("PartitionKeyErr", SEEI(PARTITION_KEY)),
635/* 5*/ FLAG_ENTRY0("SLIDErr", SEEI(SLID)),
636/* 6*/ FLAG_ENTRY0("OpcodeErr", SEEI(OPCODE)),
637/* 7*/ FLAG_ENTRY0("VLMappingErr", SEEI(VL_MAPPING)),
638/* 8*/ FLAG_ENTRY0("RawErr", SEEI(RAW)),
639/* 9*/ FLAG_ENTRY0("RawIPv6Err", SEEI(RAW_IPV6)),
640/*10*/ FLAG_ENTRY0("GRHErr", SEEI(GRH)),
641/*11*/ FLAG_ENTRY0("BypassErr", SEEI(BYPASS)),
642/*12*/ FLAG_ENTRY0("KDETHPacketsErr", SEEI(KDETH_PACKETS)),
643/*13*/ FLAG_ENTRY0("NonKDETHPacketsErr", SEEI(NON_KDETH_PACKETS)),
644/*14*/ FLAG_ENTRY0("TooSmallIBPacketsErr", SEEI(TOO_SMALL_IB_PACKETS)),
645/*15*/ FLAG_ENTRY0("TooSmallBypassPacketsErr", SEEI(TOO_SMALL_BYPASS_PACKETS)),
646/*16*/ FLAG_ENTRY0("PbcTestErr", SEEI(PBC_TEST)),
647/*17*/ FLAG_ENTRY0("BadPktLenErr", SEEI(BAD_PKT_LEN)),
648/*18*/ FLAG_ENTRY0("TooLongIBPacketErr", SEEI(TOO_LONG_IB_PACKET)),
649/*19*/ FLAG_ENTRY0("TooLongBypassPacketsErr", SEEI(TOO_LONG_BYPASS_PACKETS)),
650/*20*/ FLAG_ENTRY0("PbcStaticRateControlErr", SEEI(PBC_STATIC_RATE_CONTROL)),
651/*21*/ FLAG_ENTRY0("BypassBadPktLenErr", SEEI(BAD_PKT_LEN)),
652};
653
654/* TXE Egress errors that cause an SPC freeze */
655#define ALL_TXE_EGRESS_FREEZE_ERR \
656 (SEES(TX_EGRESS_FIFO_UNDERRUN_OR_PARITY) \
657 | SEES(TX_PIO_LAUNCH_INTF_PARITY) \
658 | SEES(TX_SDMA_LAUNCH_INTF_PARITY) \
659 | SEES(TX_SBRD_CTL_STATE_MACHINE_PARITY) \
660 | SEES(TX_LAUNCH_CSR_PARITY) \
661 | SEES(TX_SBRD_CTL_CSR_PARITY) \
662 | SEES(TX_CONFIG_PARITY) \
663 | SEES(TX_LAUNCH_FIFO0_UNC_OR_PARITY) \
664 | SEES(TX_LAUNCH_FIFO1_UNC_OR_PARITY) \
665 | SEES(TX_LAUNCH_FIFO2_UNC_OR_PARITY) \
666 | SEES(TX_LAUNCH_FIFO3_UNC_OR_PARITY) \
667 | SEES(TX_LAUNCH_FIFO4_UNC_OR_PARITY) \
668 | SEES(TX_LAUNCH_FIFO5_UNC_OR_PARITY) \
669 | SEES(TX_LAUNCH_FIFO6_UNC_OR_PARITY) \
670 | SEES(TX_LAUNCH_FIFO7_UNC_OR_PARITY) \
671 | SEES(TX_LAUNCH_FIFO8_UNC_OR_PARITY) \
672 | SEES(TX_CREDIT_RETURN_PARITY))
673
674/*
675 * TXE Send error flags
676 */
677#define SES(name) SEND_ERR_STATUS_SEND_##name##_ERR_SMASK
678static struct flag_table send_err_status_flags[] = {
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -0500679/* 0*/ FLAG_ENTRY0("SendCsrParityErr", SES(CSR_PARITY)),
Mike Marciniszyn77241052015-07-30 15:17:43 -0400680/* 1*/ FLAG_ENTRY0("SendCsrReadBadAddrErr", SES(CSR_READ_BAD_ADDR)),
681/* 2*/ FLAG_ENTRY0("SendCsrWriteBadAddrErr", SES(CSR_WRITE_BAD_ADDR))
682};
683
684/*
685 * TXE Send Context Error flags and consequences
686 */
687static struct flag_table sc_err_status_flags[] = {
688/* 0*/ FLAG_ENTRY("InconsistentSop",
689 SEC_PACKET_DROPPED | SEC_SC_HALTED,
690 SEND_CTXT_ERR_STATUS_PIO_INCONSISTENT_SOP_ERR_SMASK),
691/* 1*/ FLAG_ENTRY("DisallowedPacket",
692 SEC_PACKET_DROPPED | SEC_SC_HALTED,
693 SEND_CTXT_ERR_STATUS_PIO_DISALLOWED_PACKET_ERR_SMASK),
694/* 2*/ FLAG_ENTRY("WriteCrossesBoundary",
695 SEC_WRITE_DROPPED | SEC_SC_HALTED,
696 SEND_CTXT_ERR_STATUS_PIO_WRITE_CROSSES_BOUNDARY_ERR_SMASK),
697/* 3*/ FLAG_ENTRY("WriteOverflow",
698 SEC_WRITE_DROPPED | SEC_SC_HALTED,
699 SEND_CTXT_ERR_STATUS_PIO_WRITE_OVERFLOW_ERR_SMASK),
700/* 4*/ FLAG_ENTRY("WriteOutOfBounds",
701 SEC_WRITE_DROPPED | SEC_SC_HALTED,
702 SEND_CTXT_ERR_STATUS_PIO_WRITE_OUT_OF_BOUNDS_ERR_SMASK),
703/* 5-63 reserved*/
704};
705
706/*
707 * RXE Receive Error flags
708 */
709#define RXES(name) RCV_ERR_STATUS_RX_##name##_ERR_SMASK
710static struct flag_table rxe_err_status_flags[] = {
711/* 0*/ FLAG_ENTRY0("RxDmaCsrCorErr", RXES(DMA_CSR_COR)),
712/* 1*/ FLAG_ENTRY0("RxDcIntfParityErr", RXES(DC_INTF_PARITY)),
713/* 2*/ FLAG_ENTRY0("RxRcvHdrUncErr", RXES(RCV_HDR_UNC)),
714/* 3*/ FLAG_ENTRY0("RxRcvHdrCorErr", RXES(RCV_HDR_COR)),
715/* 4*/ FLAG_ENTRY0("RxRcvDataUncErr", RXES(RCV_DATA_UNC)),
716/* 5*/ FLAG_ENTRY0("RxRcvDataCorErr", RXES(RCV_DATA_COR)),
717/* 6*/ FLAG_ENTRY0("RxRcvQpMapTableUncErr", RXES(RCV_QP_MAP_TABLE_UNC)),
718/* 7*/ FLAG_ENTRY0("RxRcvQpMapTableCorErr", RXES(RCV_QP_MAP_TABLE_COR)),
719/* 8*/ FLAG_ENTRY0("RxRcvCsrParityErr", RXES(RCV_CSR_PARITY)),
720/* 9*/ FLAG_ENTRY0("RxDcSopEopParityErr", RXES(DC_SOP_EOP_PARITY)),
721/*10*/ FLAG_ENTRY0("RxDmaFlagUncErr", RXES(DMA_FLAG_UNC)),
722/*11*/ FLAG_ENTRY0("RxDmaFlagCorErr", RXES(DMA_FLAG_COR)),
723/*12*/ FLAG_ENTRY0("RxRcvFsmEncodingErr", RXES(RCV_FSM_ENCODING)),
724/*13*/ FLAG_ENTRY0("RxRbufFreeListUncErr", RXES(RBUF_FREE_LIST_UNC)),
725/*14*/ FLAG_ENTRY0("RxRbufFreeListCorErr", RXES(RBUF_FREE_LIST_COR)),
726/*15*/ FLAG_ENTRY0("RxRbufLookupDesRegUncErr", RXES(RBUF_LOOKUP_DES_REG_UNC)),
727/*16*/ FLAG_ENTRY0("RxRbufLookupDesRegUncCorErr",
728 RXES(RBUF_LOOKUP_DES_REG_UNC_COR)),
729/*17*/ FLAG_ENTRY0("RxRbufLookupDesUncErr", RXES(RBUF_LOOKUP_DES_UNC)),
730/*18*/ FLAG_ENTRY0("RxRbufLookupDesCorErr", RXES(RBUF_LOOKUP_DES_COR)),
731/*19*/ FLAG_ENTRY0("RxRbufBlockListReadUncErr",
732 RXES(RBUF_BLOCK_LIST_READ_UNC)),
733/*20*/ FLAG_ENTRY0("RxRbufBlockListReadCorErr",
734 RXES(RBUF_BLOCK_LIST_READ_COR)),
735/*21*/ FLAG_ENTRY0("RxRbufCsrQHeadBufNumParityErr",
736 RXES(RBUF_CSR_QHEAD_BUF_NUM_PARITY)),
737/*22*/ FLAG_ENTRY0("RxRbufCsrQEntCntParityErr",
738 RXES(RBUF_CSR_QENT_CNT_PARITY)),
739/*23*/ FLAG_ENTRY0("RxRbufCsrQNextBufParityErr",
740 RXES(RBUF_CSR_QNEXT_BUF_PARITY)),
741/*24*/ FLAG_ENTRY0("RxRbufCsrQVldBitParityErr",
742 RXES(RBUF_CSR_QVLD_BIT_PARITY)),
743/*25*/ FLAG_ENTRY0("RxRbufCsrQHdPtrParityErr", RXES(RBUF_CSR_QHD_PTR_PARITY)),
744/*26*/ FLAG_ENTRY0("RxRbufCsrQTlPtrParityErr", RXES(RBUF_CSR_QTL_PTR_PARITY)),
745/*27*/ FLAG_ENTRY0("RxRbufCsrQNumOfPktParityErr",
746 RXES(RBUF_CSR_QNUM_OF_PKT_PARITY)),
747/*28*/ FLAG_ENTRY0("RxRbufCsrQEOPDWParityErr", RXES(RBUF_CSR_QEOPDW_PARITY)),
748/*29*/ FLAG_ENTRY0("RxRbufCtxIdParityErr", RXES(RBUF_CTX_ID_PARITY)),
749/*30*/ FLAG_ENTRY0("RxRBufBadLookupErr", RXES(RBUF_BAD_LOOKUP)),
750/*31*/ FLAG_ENTRY0("RxRbufFullErr", RXES(RBUF_FULL)),
751/*32*/ FLAG_ENTRY0("RxRbufEmptyErr", RXES(RBUF_EMPTY)),
752/*33*/ FLAG_ENTRY0("RxRbufFlRdAddrParityErr", RXES(RBUF_FL_RD_ADDR_PARITY)),
753/*34*/ FLAG_ENTRY0("RxRbufFlWrAddrParityErr", RXES(RBUF_FL_WR_ADDR_PARITY)),
754/*35*/ FLAG_ENTRY0("RxRbufFlInitdoneParityErr",
755 RXES(RBUF_FL_INITDONE_PARITY)),
756/*36*/ FLAG_ENTRY0("RxRbufFlInitWrAddrParityErr",
757 RXES(RBUF_FL_INIT_WR_ADDR_PARITY)),
758/*37*/ FLAG_ENTRY0("RxRbufNextFreeBufUncErr", RXES(RBUF_NEXT_FREE_BUF_UNC)),
759/*38*/ FLAG_ENTRY0("RxRbufNextFreeBufCorErr", RXES(RBUF_NEXT_FREE_BUF_COR)),
760/*39*/ FLAG_ENTRY0("RxLookupDesPart1UncErr", RXES(LOOKUP_DES_PART1_UNC)),
761/*40*/ FLAG_ENTRY0("RxLookupDesPart1UncCorErr",
762 RXES(LOOKUP_DES_PART1_UNC_COR)),
763/*41*/ FLAG_ENTRY0("RxLookupDesPart2ParityErr",
764 RXES(LOOKUP_DES_PART2_PARITY)),
765/*42*/ FLAG_ENTRY0("RxLookupRcvArrayUncErr", RXES(LOOKUP_RCV_ARRAY_UNC)),
766/*43*/ FLAG_ENTRY0("RxLookupRcvArrayCorErr", RXES(LOOKUP_RCV_ARRAY_COR)),
767/*44*/ FLAG_ENTRY0("RxLookupCsrParityErr", RXES(LOOKUP_CSR_PARITY)),
768/*45*/ FLAG_ENTRY0("RxHqIntrCsrParityErr", RXES(HQ_INTR_CSR_PARITY)),
769/*46*/ FLAG_ENTRY0("RxHqIntrFsmErr", RXES(HQ_INTR_FSM)),
770/*47*/ FLAG_ENTRY0("RxRbufDescPart1UncErr", RXES(RBUF_DESC_PART1_UNC)),
771/*48*/ FLAG_ENTRY0("RxRbufDescPart1CorErr", RXES(RBUF_DESC_PART1_COR)),
772/*49*/ FLAG_ENTRY0("RxRbufDescPart2UncErr", RXES(RBUF_DESC_PART2_UNC)),
773/*50*/ FLAG_ENTRY0("RxRbufDescPart2CorErr", RXES(RBUF_DESC_PART2_COR)),
774/*51*/ FLAG_ENTRY0("RxDmaHdrFifoRdUncErr", RXES(DMA_HDR_FIFO_RD_UNC)),
775/*52*/ FLAG_ENTRY0("RxDmaHdrFifoRdCorErr", RXES(DMA_HDR_FIFO_RD_COR)),
776/*53*/ FLAG_ENTRY0("RxDmaDataFifoRdUncErr", RXES(DMA_DATA_FIFO_RD_UNC)),
777/*54*/ FLAG_ENTRY0("RxDmaDataFifoRdCorErr", RXES(DMA_DATA_FIFO_RD_COR)),
778/*55*/ FLAG_ENTRY0("RxRbufDataUncErr", RXES(RBUF_DATA_UNC)),
779/*56*/ FLAG_ENTRY0("RxRbufDataCorErr", RXES(RBUF_DATA_COR)),
780/*57*/ FLAG_ENTRY0("RxDmaCsrParityErr", RXES(DMA_CSR_PARITY)),
781/*58*/ FLAG_ENTRY0("RxDmaEqFsmEncodingErr", RXES(DMA_EQ_FSM_ENCODING)),
782/*59*/ FLAG_ENTRY0("RxDmaDqFsmEncodingErr", RXES(DMA_DQ_FSM_ENCODING)),
783/*60*/ FLAG_ENTRY0("RxDmaCsrUncErr", RXES(DMA_CSR_UNC)),
784/*61*/ FLAG_ENTRY0("RxCsrReadBadAddrErr", RXES(CSR_READ_BAD_ADDR)),
785/*62*/ FLAG_ENTRY0("RxCsrWriteBadAddrErr", RXES(CSR_WRITE_BAD_ADDR)),
786/*63*/ FLAG_ENTRY0("RxCsrParityErr", RXES(CSR_PARITY))
787};
788
789/* RXE errors that will trigger an SPC freeze */
790#define ALL_RXE_FREEZE_ERR \
791 (RCV_ERR_STATUS_RX_RCV_QP_MAP_TABLE_UNC_ERR_SMASK \
792 | RCV_ERR_STATUS_RX_RCV_CSR_PARITY_ERR_SMASK \
793 | RCV_ERR_STATUS_RX_DMA_FLAG_UNC_ERR_SMASK \
794 | RCV_ERR_STATUS_RX_RCV_FSM_ENCODING_ERR_SMASK \
795 | RCV_ERR_STATUS_RX_RBUF_FREE_LIST_UNC_ERR_SMASK \
796 | RCV_ERR_STATUS_RX_RBUF_LOOKUP_DES_REG_UNC_ERR_SMASK \
797 | RCV_ERR_STATUS_RX_RBUF_LOOKUP_DES_REG_UNC_COR_ERR_SMASK \
798 | RCV_ERR_STATUS_RX_RBUF_LOOKUP_DES_UNC_ERR_SMASK \
799 | RCV_ERR_STATUS_RX_RBUF_BLOCK_LIST_READ_UNC_ERR_SMASK \
800 | RCV_ERR_STATUS_RX_RBUF_CSR_QHEAD_BUF_NUM_PARITY_ERR_SMASK \
801 | RCV_ERR_STATUS_RX_RBUF_CSR_QENT_CNT_PARITY_ERR_SMASK \
802 | RCV_ERR_STATUS_RX_RBUF_CSR_QNEXT_BUF_PARITY_ERR_SMASK \
803 | RCV_ERR_STATUS_RX_RBUF_CSR_QVLD_BIT_PARITY_ERR_SMASK \
804 | RCV_ERR_STATUS_RX_RBUF_CSR_QHD_PTR_PARITY_ERR_SMASK \
805 | RCV_ERR_STATUS_RX_RBUF_CSR_QTL_PTR_PARITY_ERR_SMASK \
806 | RCV_ERR_STATUS_RX_RBUF_CSR_QNUM_OF_PKT_PARITY_ERR_SMASK \
807 | RCV_ERR_STATUS_RX_RBUF_CSR_QEOPDW_PARITY_ERR_SMASK \
808 | RCV_ERR_STATUS_RX_RBUF_CTX_ID_PARITY_ERR_SMASK \
809 | RCV_ERR_STATUS_RX_RBUF_BAD_LOOKUP_ERR_SMASK \
810 | RCV_ERR_STATUS_RX_RBUF_FULL_ERR_SMASK \
811 | RCV_ERR_STATUS_RX_RBUF_EMPTY_ERR_SMASK \
812 | RCV_ERR_STATUS_RX_RBUF_FL_RD_ADDR_PARITY_ERR_SMASK \
813 | RCV_ERR_STATUS_RX_RBUF_FL_WR_ADDR_PARITY_ERR_SMASK \
814 | RCV_ERR_STATUS_RX_RBUF_FL_INITDONE_PARITY_ERR_SMASK \
815 | RCV_ERR_STATUS_RX_RBUF_FL_INIT_WR_ADDR_PARITY_ERR_SMASK \
816 | RCV_ERR_STATUS_RX_RBUF_NEXT_FREE_BUF_UNC_ERR_SMASK \
817 | RCV_ERR_STATUS_RX_LOOKUP_DES_PART1_UNC_ERR_SMASK \
818 | RCV_ERR_STATUS_RX_LOOKUP_DES_PART1_UNC_COR_ERR_SMASK \
819 | RCV_ERR_STATUS_RX_LOOKUP_DES_PART2_PARITY_ERR_SMASK \
820 | RCV_ERR_STATUS_RX_LOOKUP_RCV_ARRAY_UNC_ERR_SMASK \
821 | RCV_ERR_STATUS_RX_LOOKUP_CSR_PARITY_ERR_SMASK \
822 | RCV_ERR_STATUS_RX_HQ_INTR_CSR_PARITY_ERR_SMASK \
823 | RCV_ERR_STATUS_RX_HQ_INTR_FSM_ERR_SMASK \
824 | RCV_ERR_STATUS_RX_RBUF_DESC_PART1_UNC_ERR_SMASK \
825 | RCV_ERR_STATUS_RX_RBUF_DESC_PART1_COR_ERR_SMASK \
826 | RCV_ERR_STATUS_RX_RBUF_DESC_PART2_UNC_ERR_SMASK \
827 | RCV_ERR_STATUS_RX_DMA_HDR_FIFO_RD_UNC_ERR_SMASK \
828 | RCV_ERR_STATUS_RX_DMA_DATA_FIFO_RD_UNC_ERR_SMASK \
829 | RCV_ERR_STATUS_RX_RBUF_DATA_UNC_ERR_SMASK \
830 | RCV_ERR_STATUS_RX_DMA_CSR_PARITY_ERR_SMASK \
831 | RCV_ERR_STATUS_RX_DMA_EQ_FSM_ENCODING_ERR_SMASK \
832 | RCV_ERR_STATUS_RX_DMA_DQ_FSM_ENCODING_ERR_SMASK \
833 | RCV_ERR_STATUS_RX_DMA_CSR_UNC_ERR_SMASK \
834 | RCV_ERR_STATUS_RX_CSR_PARITY_ERR_SMASK)
835
836#define RXE_FREEZE_ABORT_MASK \
837 (RCV_ERR_STATUS_RX_DMA_CSR_UNC_ERR_SMASK | \
838 RCV_ERR_STATUS_RX_DMA_HDR_FIFO_RD_UNC_ERR_SMASK | \
839 RCV_ERR_STATUS_RX_DMA_DATA_FIFO_RD_UNC_ERR_SMASK)
840
841/*
842 * DCC Error Flags
843 */
844#define DCCE(name) DCC_ERR_FLG_##name##_SMASK
845static struct flag_table dcc_err_flags[] = {
846 FLAG_ENTRY0("bad_l2_err", DCCE(BAD_L2_ERR)),
847 FLAG_ENTRY0("bad_sc_err", DCCE(BAD_SC_ERR)),
848 FLAG_ENTRY0("bad_mid_tail_err", DCCE(BAD_MID_TAIL_ERR)),
849 FLAG_ENTRY0("bad_preemption_err", DCCE(BAD_PREEMPTION_ERR)),
850 FLAG_ENTRY0("preemption_err", DCCE(PREEMPTION_ERR)),
851 FLAG_ENTRY0("preemptionvl15_err", DCCE(PREEMPTIONVL15_ERR)),
852 FLAG_ENTRY0("bad_vl_marker_err", DCCE(BAD_VL_MARKER_ERR)),
853 FLAG_ENTRY0("bad_dlid_target_err", DCCE(BAD_DLID_TARGET_ERR)),
854 FLAG_ENTRY0("bad_lver_err", DCCE(BAD_LVER_ERR)),
855 FLAG_ENTRY0("uncorrectable_err", DCCE(UNCORRECTABLE_ERR)),
856 FLAG_ENTRY0("bad_crdt_ack_err", DCCE(BAD_CRDT_ACK_ERR)),
857 FLAG_ENTRY0("unsup_pkt_type", DCCE(UNSUP_PKT_TYPE)),
858 FLAG_ENTRY0("bad_ctrl_flit_err", DCCE(BAD_CTRL_FLIT_ERR)),
859 FLAG_ENTRY0("event_cntr_parity_err", DCCE(EVENT_CNTR_PARITY_ERR)),
860 FLAG_ENTRY0("event_cntr_rollover_err", DCCE(EVENT_CNTR_ROLLOVER_ERR)),
861 FLAG_ENTRY0("link_err", DCCE(LINK_ERR)),
862 FLAG_ENTRY0("misc_cntr_rollover_err", DCCE(MISC_CNTR_ROLLOVER_ERR)),
863 FLAG_ENTRY0("bad_ctrl_dist_err", DCCE(BAD_CTRL_DIST_ERR)),
864 FLAG_ENTRY0("bad_tail_dist_err", DCCE(BAD_TAIL_DIST_ERR)),
865 FLAG_ENTRY0("bad_head_dist_err", DCCE(BAD_HEAD_DIST_ERR)),
866 FLAG_ENTRY0("nonvl15_state_err", DCCE(NONVL15_STATE_ERR)),
867 FLAG_ENTRY0("vl15_multi_err", DCCE(VL15_MULTI_ERR)),
868 FLAG_ENTRY0("bad_pkt_length_err", DCCE(BAD_PKT_LENGTH_ERR)),
869 FLAG_ENTRY0("unsup_vl_err", DCCE(UNSUP_VL_ERR)),
870 FLAG_ENTRY0("perm_nvl15_err", DCCE(PERM_NVL15_ERR)),
871 FLAG_ENTRY0("slid_zero_err", DCCE(SLID_ZERO_ERR)),
872 FLAG_ENTRY0("dlid_zero_err", DCCE(DLID_ZERO_ERR)),
873 FLAG_ENTRY0("length_mtu_err", DCCE(LENGTH_MTU_ERR)),
874 FLAG_ENTRY0("rx_early_drop_err", DCCE(RX_EARLY_DROP_ERR)),
875 FLAG_ENTRY0("late_short_err", DCCE(LATE_SHORT_ERR)),
876 FLAG_ENTRY0("late_long_err", DCCE(LATE_LONG_ERR)),
877 FLAG_ENTRY0("late_ebp_err", DCCE(LATE_EBP_ERR)),
878 FLAG_ENTRY0("fpe_tx_fifo_ovflw_err", DCCE(FPE_TX_FIFO_OVFLW_ERR)),
879 FLAG_ENTRY0("fpe_tx_fifo_unflw_err", DCCE(FPE_TX_FIFO_UNFLW_ERR)),
880 FLAG_ENTRY0("csr_access_blocked_host", DCCE(CSR_ACCESS_BLOCKED_HOST)),
881 FLAG_ENTRY0("csr_access_blocked_uc", DCCE(CSR_ACCESS_BLOCKED_UC)),
882 FLAG_ENTRY0("tx_ctrl_parity_err", DCCE(TX_CTRL_PARITY_ERR)),
883 FLAG_ENTRY0("tx_ctrl_parity_mbe_err", DCCE(TX_CTRL_PARITY_MBE_ERR)),
884 FLAG_ENTRY0("tx_sc_parity_err", DCCE(TX_SC_PARITY_ERR)),
885 FLAG_ENTRY0("rx_ctrl_parity_mbe_err", DCCE(RX_CTRL_PARITY_MBE_ERR)),
886 FLAG_ENTRY0("csr_parity_err", DCCE(CSR_PARITY_ERR)),
887 FLAG_ENTRY0("csr_inval_addr", DCCE(CSR_INVAL_ADDR)),
888 FLAG_ENTRY0("tx_byte_shft_parity_err", DCCE(TX_BYTE_SHFT_PARITY_ERR)),
889 FLAG_ENTRY0("rx_byte_shft_parity_err", DCCE(RX_BYTE_SHFT_PARITY_ERR)),
890 FLAG_ENTRY0("fmconfig_err", DCCE(FMCONFIG_ERR)),
891 FLAG_ENTRY0("rcvport_err", DCCE(RCVPORT_ERR)),
892};
893
894/*
895 * LCB error flags
896 */
897#define LCBE(name) DC_LCB_ERR_FLG_##name##_SMASK
898static struct flag_table lcb_err_flags[] = {
899/* 0*/ FLAG_ENTRY0("CSR_PARITY_ERR", LCBE(CSR_PARITY_ERR)),
900/* 1*/ FLAG_ENTRY0("INVALID_CSR_ADDR", LCBE(INVALID_CSR_ADDR)),
901/* 2*/ FLAG_ENTRY0("RST_FOR_FAILED_DESKEW", LCBE(RST_FOR_FAILED_DESKEW)),
902/* 3*/ FLAG_ENTRY0("ALL_LNS_FAILED_REINIT_TEST",
903 LCBE(ALL_LNS_FAILED_REINIT_TEST)),
904/* 4*/ FLAG_ENTRY0("LOST_REINIT_STALL_OR_TOS", LCBE(LOST_REINIT_STALL_OR_TOS)),
905/* 5*/ FLAG_ENTRY0("TX_LESS_THAN_FOUR_LNS", LCBE(TX_LESS_THAN_FOUR_LNS)),
906/* 6*/ FLAG_ENTRY0("RX_LESS_THAN_FOUR_LNS", LCBE(RX_LESS_THAN_FOUR_LNS)),
907/* 7*/ FLAG_ENTRY0("SEQ_CRC_ERR", LCBE(SEQ_CRC_ERR)),
908/* 8*/ FLAG_ENTRY0("REINIT_FROM_PEER", LCBE(REINIT_FROM_PEER)),
909/* 9*/ FLAG_ENTRY0("REINIT_FOR_LN_DEGRADE", LCBE(REINIT_FOR_LN_DEGRADE)),
910/*10*/ FLAG_ENTRY0("CRC_ERR_CNT_HIT_LIMIT", LCBE(CRC_ERR_CNT_HIT_LIMIT)),
911/*11*/ FLAG_ENTRY0("RCLK_STOPPED", LCBE(RCLK_STOPPED)),
912/*12*/ FLAG_ENTRY0("UNEXPECTED_REPLAY_MARKER", LCBE(UNEXPECTED_REPLAY_MARKER)),
913/*13*/ FLAG_ENTRY0("UNEXPECTED_ROUND_TRIP_MARKER",
914 LCBE(UNEXPECTED_ROUND_TRIP_MARKER)),
915/*14*/ FLAG_ENTRY0("ILLEGAL_NULL_LTP", LCBE(ILLEGAL_NULL_LTP)),
916/*15*/ FLAG_ENTRY0("ILLEGAL_FLIT_ENCODING", LCBE(ILLEGAL_FLIT_ENCODING)),
917/*16*/ FLAG_ENTRY0("FLIT_INPUT_BUF_OFLW", LCBE(FLIT_INPUT_BUF_OFLW)),
918/*17*/ FLAG_ENTRY0("VL_ACK_INPUT_BUF_OFLW", LCBE(VL_ACK_INPUT_BUF_OFLW)),
919/*18*/ FLAG_ENTRY0("VL_ACK_INPUT_PARITY_ERR", LCBE(VL_ACK_INPUT_PARITY_ERR)),
920/*19*/ FLAG_ENTRY0("VL_ACK_INPUT_WRONG_CRC_MODE",
921 LCBE(VL_ACK_INPUT_WRONG_CRC_MODE)),
922/*20*/ FLAG_ENTRY0("FLIT_INPUT_BUF_MBE", LCBE(FLIT_INPUT_BUF_MBE)),
923/*21*/ FLAG_ENTRY0("FLIT_INPUT_BUF_SBE", LCBE(FLIT_INPUT_BUF_SBE)),
924/*22*/ FLAG_ENTRY0("REPLAY_BUF_MBE", LCBE(REPLAY_BUF_MBE)),
925/*23*/ FLAG_ENTRY0("REPLAY_BUF_SBE", LCBE(REPLAY_BUF_SBE)),
926/*24*/ FLAG_ENTRY0("CREDIT_RETURN_FLIT_MBE", LCBE(CREDIT_RETURN_FLIT_MBE)),
927/*25*/ FLAG_ENTRY0("RST_FOR_LINK_TIMEOUT", LCBE(RST_FOR_LINK_TIMEOUT)),
928/*26*/ FLAG_ENTRY0("RST_FOR_INCOMPLT_RND_TRIP",
929 LCBE(RST_FOR_INCOMPLT_RND_TRIP)),
930/*27*/ FLAG_ENTRY0("HOLD_REINIT", LCBE(HOLD_REINIT)),
931/*28*/ FLAG_ENTRY0("NEG_EDGE_LINK_TRANSFER_ACTIVE",
932 LCBE(NEG_EDGE_LINK_TRANSFER_ACTIVE)),
933/*29*/ FLAG_ENTRY0("REDUNDANT_FLIT_PARITY_ERR",
934 LCBE(REDUNDANT_FLIT_PARITY_ERR))
935};
936
937/*
938 * DC8051 Error Flags
939 */
940#define D8E(name) DC_DC8051_ERR_FLG_##name##_SMASK
941static struct flag_table dc8051_err_flags[] = {
942 FLAG_ENTRY0("SET_BY_8051", D8E(SET_BY_8051)),
943 FLAG_ENTRY0("LOST_8051_HEART_BEAT", D8E(LOST_8051_HEART_BEAT)),
944 FLAG_ENTRY0("CRAM_MBE", D8E(CRAM_MBE)),
945 FLAG_ENTRY0("CRAM_SBE", D8E(CRAM_SBE)),
946 FLAG_ENTRY0("DRAM_MBE", D8E(DRAM_MBE)),
947 FLAG_ENTRY0("DRAM_SBE", D8E(DRAM_SBE)),
948 FLAG_ENTRY0("IRAM_MBE", D8E(IRAM_MBE)),
949 FLAG_ENTRY0("IRAM_SBE", D8E(IRAM_SBE)),
950 FLAG_ENTRY0("UNMATCHED_SECURE_MSG_ACROSS_BCC_LANES",
Jubin John17fb4f22016-02-14 20:21:52 -0800951 D8E(UNMATCHED_SECURE_MSG_ACROSS_BCC_LANES)),
Mike Marciniszyn77241052015-07-30 15:17:43 -0400952 FLAG_ENTRY0("INVALID_CSR_ADDR", D8E(INVALID_CSR_ADDR)),
953};
954
955/*
956 * DC8051 Information Error flags
957 *
958 * Flags in DC8051_DBG_ERR_INFO_SET_BY_8051.ERROR field.
959 */
960static struct flag_table dc8051_info_err_flags[] = {
961 FLAG_ENTRY0("Spico ROM check failed", SPICO_ROM_FAILED),
962 FLAG_ENTRY0("Unknown frame received", UNKNOWN_FRAME),
963 FLAG_ENTRY0("Target BER not met", TARGET_BER_NOT_MET),
964 FLAG_ENTRY0("Serdes internal loopback failure",
Jubin John17fb4f22016-02-14 20:21:52 -0800965 FAILED_SERDES_INTERNAL_LOOPBACK),
Mike Marciniszyn77241052015-07-30 15:17:43 -0400966 FLAG_ENTRY0("Failed SerDes init", FAILED_SERDES_INIT),
967 FLAG_ENTRY0("Failed LNI(Polling)", FAILED_LNI_POLLING),
968 FLAG_ENTRY0("Failed LNI(Debounce)", FAILED_LNI_DEBOUNCE),
969 FLAG_ENTRY0("Failed LNI(EstbComm)", FAILED_LNI_ESTBCOMM),
970 FLAG_ENTRY0("Failed LNI(OptEq)", FAILED_LNI_OPTEQ),
971 FLAG_ENTRY0("Failed LNI(VerifyCap_1)", FAILED_LNI_VERIFY_CAP1),
972 FLAG_ENTRY0("Failed LNI(VerifyCap_2)", FAILED_LNI_VERIFY_CAP2),
Jubin John8fefef12016-03-05 08:50:38 -0800973 FLAG_ENTRY0("Failed LNI(ConfigLT)", FAILED_LNI_CONFIGLT),
974 FLAG_ENTRY0("Host Handshake Timeout", HOST_HANDSHAKE_TIMEOUT)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400975};
976
977/*
978 * DC8051 Information Host Information flags
979 *
980 * Flags in DC8051_DBG_ERR_INFO_SET_BY_8051.HOST_MSG field.
981 */
982static struct flag_table dc8051_info_host_msg_flags[] = {
983 FLAG_ENTRY0("Host request done", 0x0001),
984 FLAG_ENTRY0("BC SMA message", 0x0002),
985 FLAG_ENTRY0("BC PWR_MGM message", 0x0004),
986 FLAG_ENTRY0("BC Unknown message (BCC)", 0x0008),
987 FLAG_ENTRY0("BC Unknown message (LCB)", 0x0010),
988 FLAG_ENTRY0("External device config request", 0x0020),
989 FLAG_ENTRY0("VerifyCap all frames received", 0x0040),
990 FLAG_ENTRY0("LinkUp achieved", 0x0080),
991 FLAG_ENTRY0("Link going down", 0x0100),
992};
993
Mike Marciniszyn77241052015-07-30 15:17:43 -0400994static u32 encoded_size(u32 size);
995static u32 chip_to_opa_lstate(struct hfi1_devdata *dd, u32 chip_lstate);
996static int set_physical_link_state(struct hfi1_devdata *dd, u64 state);
997static void read_vc_remote_phy(struct hfi1_devdata *dd, u8 *power_management,
998 u8 *continuous);
999static void read_vc_remote_fabric(struct hfi1_devdata *dd, u8 *vau, u8 *z,
1000 u8 *vcu, u16 *vl15buf, u8 *crc_sizes);
1001static void read_vc_remote_link_width(struct hfi1_devdata *dd,
1002 u8 *remote_tx_rate, u16 *link_widths);
1003static void read_vc_local_link_width(struct hfi1_devdata *dd, u8 *misc_bits,
1004 u8 *flag_bits, u16 *link_widths);
1005static void read_remote_device_id(struct hfi1_devdata *dd, u16 *device_id,
1006 u8 *device_rev);
1007static void read_mgmt_allowed(struct hfi1_devdata *dd, u8 *mgmt_allowed);
1008static void read_local_lni(struct hfi1_devdata *dd, u8 *enable_lane_rx);
1009static int read_tx_settings(struct hfi1_devdata *dd, u8 *enable_lane_tx,
1010 u8 *tx_polarity_inversion,
1011 u8 *rx_polarity_inversion, u8 *max_rate);
1012static void handle_sdma_eng_err(struct hfi1_devdata *dd,
1013 unsigned int context, u64 err_status);
1014static void handle_qsfp_int(struct hfi1_devdata *dd, u32 source, u64 reg);
1015static void handle_dcc_err(struct hfi1_devdata *dd,
1016 unsigned int context, u64 err_status);
1017static void handle_lcb_err(struct hfi1_devdata *dd,
1018 unsigned int context, u64 err_status);
1019static void handle_8051_interrupt(struct hfi1_devdata *dd, u32 unused, u64 reg);
1020static void handle_cce_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1021static void handle_rxe_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1022static void handle_misc_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1023static void handle_pio_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1024static void handle_sdma_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1025static void handle_egress_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1026static void handle_txe_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1027static void set_partition_keys(struct hfi1_pportdata *);
1028static const char *link_state_name(u32 state);
1029static const char *link_state_reason_name(struct hfi1_pportdata *ppd,
1030 u32 state);
1031static int do_8051_command(struct hfi1_devdata *dd, u32 type, u64 in_data,
1032 u64 *out_data);
1033static int read_idle_sma(struct hfi1_devdata *dd, u64 *data);
1034static int thermal_init(struct hfi1_devdata *dd);
1035
1036static int wait_logical_linkstate(struct hfi1_pportdata *ppd, u32 state,
1037 int msecs);
1038static void read_planned_down_reason_code(struct hfi1_devdata *dd, u8 *pdrrc);
Dean Luickfeb831d2016-04-14 08:31:36 -07001039static void read_link_down_reason(struct hfi1_devdata *dd, u8 *ldr);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001040static void handle_temp_err(struct hfi1_devdata *);
1041static void dc_shutdown(struct hfi1_devdata *);
1042static void dc_start(struct hfi1_devdata *);
Dean Luick8f000f72016-04-12 11:32:06 -07001043static int qos_rmt_entries(struct hfi1_devdata *dd, unsigned int *mp,
1044 unsigned int *np);
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07001045static void clear_full_mgmt_pkey(struct hfi1_pportdata *ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001046
1047/*
1048 * Error interrupt table entry. This is used as input to the interrupt
1049 * "clear down" routine used for all second tier error interrupt register.
1050 * Second tier interrupt registers have a single bit representing them
1051 * in the top-level CceIntStatus.
1052 */
1053struct err_reg_info {
1054 u32 status; /* status CSR offset */
1055 u32 clear; /* clear CSR offset */
1056 u32 mask; /* mask CSR offset */
1057 void (*handler)(struct hfi1_devdata *dd, u32 source, u64 reg);
1058 const char *desc;
1059};
1060
1061#define NUM_MISC_ERRS (IS_GENERAL_ERR_END - IS_GENERAL_ERR_START)
1062#define NUM_DC_ERRS (IS_DC_END - IS_DC_START)
1063#define NUM_VARIOUS (IS_VARIOUS_END - IS_VARIOUS_START)
1064
1065/*
1066 * Helpers for building HFI and DC error interrupt table entries. Different
1067 * helpers are needed because of inconsistent register names.
1068 */
1069#define EE(reg, handler, desc) \
1070 { reg##_STATUS, reg##_CLEAR, reg##_MASK, \
1071 handler, desc }
1072#define DC_EE1(reg, handler, desc) \
1073 { reg##_FLG, reg##_FLG_CLR, reg##_FLG_EN, handler, desc }
1074#define DC_EE2(reg, handler, desc) \
1075 { reg##_FLG, reg##_CLR, reg##_EN, handler, desc }
1076
1077/*
1078 * Table of the "misc" grouping of error interrupts. Each entry refers to
1079 * another register containing more information.
1080 */
1081static const struct err_reg_info misc_errs[NUM_MISC_ERRS] = {
1082/* 0*/ EE(CCE_ERR, handle_cce_err, "CceErr"),
1083/* 1*/ EE(RCV_ERR, handle_rxe_err, "RxeErr"),
1084/* 2*/ EE(MISC_ERR, handle_misc_err, "MiscErr"),
1085/* 3*/ { 0, 0, 0, NULL }, /* reserved */
1086/* 4*/ EE(SEND_PIO_ERR, handle_pio_err, "PioErr"),
1087/* 5*/ EE(SEND_DMA_ERR, handle_sdma_err, "SDmaErr"),
1088/* 6*/ EE(SEND_EGRESS_ERR, handle_egress_err, "EgressErr"),
1089/* 7*/ EE(SEND_ERR, handle_txe_err, "TxeErr")
1090 /* the rest are reserved */
1091};
1092
1093/*
1094 * Index into the Various section of the interrupt sources
1095 * corresponding to the Critical Temperature interrupt.
1096 */
1097#define TCRIT_INT_SOURCE 4
1098
1099/*
1100 * SDMA error interrupt entry - refers to another register containing more
1101 * information.
1102 */
1103static const struct err_reg_info sdma_eng_err =
1104 EE(SEND_DMA_ENG_ERR, handle_sdma_eng_err, "SDmaEngErr");
1105
1106static const struct err_reg_info various_err[NUM_VARIOUS] = {
1107/* 0*/ { 0, 0, 0, NULL }, /* PbcInt */
1108/* 1*/ { 0, 0, 0, NULL }, /* GpioAssertInt */
1109/* 2*/ EE(ASIC_QSFP1, handle_qsfp_int, "QSFP1"),
1110/* 3*/ EE(ASIC_QSFP2, handle_qsfp_int, "QSFP2"),
1111/* 4*/ { 0, 0, 0, NULL }, /* TCritInt */
1112 /* rest are reserved */
1113};
1114
1115/*
1116 * The DC encoding of mtu_cap for 10K MTU in the DCC_CFG_PORT_CONFIG
1117 * register can not be derived from the MTU value because 10K is not
1118 * a power of 2. Therefore, we need a constant. Everything else can
1119 * be calculated.
1120 */
1121#define DCC_CFG_PORT_MTU_CAP_10240 7
1122
1123/*
1124 * Table of the DC grouping of error interrupts. Each entry refers to
1125 * another register containing more information.
1126 */
1127static const struct err_reg_info dc_errs[NUM_DC_ERRS] = {
1128/* 0*/ DC_EE1(DCC_ERR, handle_dcc_err, "DCC Err"),
1129/* 1*/ DC_EE2(DC_LCB_ERR, handle_lcb_err, "LCB Err"),
1130/* 2*/ DC_EE2(DC_DC8051_ERR, handle_8051_interrupt, "DC8051 Interrupt"),
1131/* 3*/ /* dc_lbm_int - special, see is_dc_int() */
1132 /* the rest are reserved */
1133};
1134
1135struct cntr_entry {
1136 /*
1137 * counter name
1138 */
1139 char *name;
1140
1141 /*
1142 * csr to read for name (if applicable)
1143 */
1144 u64 csr;
1145
1146 /*
1147 * offset into dd or ppd to store the counter's value
1148 */
1149 int offset;
1150
1151 /*
1152 * flags
1153 */
1154 u8 flags;
1155
1156 /*
1157 * accessor for stat element, context either dd or ppd
1158 */
Jubin John17fb4f22016-02-14 20:21:52 -08001159 u64 (*rw_cntr)(const struct cntr_entry *, void *context, int vl,
1160 int mode, u64 data);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001161};
1162
1163#define C_RCV_HDR_OVF_FIRST C_RCV_HDR_OVF_0
1164#define C_RCV_HDR_OVF_LAST C_RCV_HDR_OVF_159
1165
1166#define CNTR_ELEM(name, csr, offset, flags, accessor) \
1167{ \
1168 name, \
1169 csr, \
1170 offset, \
1171 flags, \
1172 accessor \
1173}
1174
1175/* 32bit RXE */
1176#define RXE32_PORT_CNTR_ELEM(name, counter, flags) \
1177CNTR_ELEM(#name, \
1178 (counter * 8 + RCV_COUNTER_ARRAY32), \
1179 0, flags | CNTR_32BIT, \
1180 port_access_u32_csr)
1181
1182#define RXE32_DEV_CNTR_ELEM(name, counter, flags) \
1183CNTR_ELEM(#name, \
1184 (counter * 8 + RCV_COUNTER_ARRAY32), \
1185 0, flags | CNTR_32BIT, \
1186 dev_access_u32_csr)
1187
1188/* 64bit RXE */
1189#define RXE64_PORT_CNTR_ELEM(name, counter, flags) \
1190CNTR_ELEM(#name, \
1191 (counter * 8 + RCV_COUNTER_ARRAY64), \
1192 0, flags, \
1193 port_access_u64_csr)
1194
1195#define RXE64_DEV_CNTR_ELEM(name, counter, flags) \
1196CNTR_ELEM(#name, \
1197 (counter * 8 + RCV_COUNTER_ARRAY64), \
1198 0, flags, \
1199 dev_access_u64_csr)
1200
1201#define OVR_LBL(ctx) C_RCV_HDR_OVF_ ## ctx
1202#define OVR_ELM(ctx) \
1203CNTR_ELEM("RcvHdrOvr" #ctx, \
Jubin John8638b772016-02-14 20:19:24 -08001204 (RCV_HDR_OVFL_CNT + ctx * 0x100), \
Mike Marciniszyn77241052015-07-30 15:17:43 -04001205 0, CNTR_NORMAL, port_access_u64_csr)
1206
1207/* 32bit TXE */
1208#define TXE32_PORT_CNTR_ELEM(name, counter, flags) \
1209CNTR_ELEM(#name, \
1210 (counter * 8 + SEND_COUNTER_ARRAY32), \
1211 0, flags | CNTR_32BIT, \
1212 port_access_u32_csr)
1213
1214/* 64bit TXE */
1215#define TXE64_PORT_CNTR_ELEM(name, counter, flags) \
1216CNTR_ELEM(#name, \
1217 (counter * 8 + SEND_COUNTER_ARRAY64), \
1218 0, flags, \
1219 port_access_u64_csr)
1220
1221# define TX64_DEV_CNTR_ELEM(name, counter, flags) \
1222CNTR_ELEM(#name,\
1223 counter * 8 + SEND_COUNTER_ARRAY64, \
1224 0, \
1225 flags, \
1226 dev_access_u64_csr)
1227
1228/* CCE */
1229#define CCE_PERF_DEV_CNTR_ELEM(name, counter, flags) \
1230CNTR_ELEM(#name, \
1231 (counter * 8 + CCE_COUNTER_ARRAY32), \
1232 0, flags | CNTR_32BIT, \
1233 dev_access_u32_csr)
1234
1235#define CCE_INT_DEV_CNTR_ELEM(name, counter, flags) \
1236CNTR_ELEM(#name, \
1237 (counter * 8 + CCE_INT_COUNTER_ARRAY32), \
1238 0, flags | CNTR_32BIT, \
1239 dev_access_u32_csr)
1240
1241/* DC */
1242#define DC_PERF_CNTR(name, counter, flags) \
1243CNTR_ELEM(#name, \
1244 counter, \
1245 0, \
1246 flags, \
1247 dev_access_u64_csr)
1248
1249#define DC_PERF_CNTR_LCB(name, counter, flags) \
1250CNTR_ELEM(#name, \
1251 counter, \
1252 0, \
1253 flags, \
1254 dc_access_lcb_cntr)
1255
1256/* ibp counters */
1257#define SW_IBP_CNTR(name, cntr) \
1258CNTR_ELEM(#name, \
1259 0, \
1260 0, \
1261 CNTR_SYNTH, \
1262 access_ibp_##cntr)
1263
1264u64 read_csr(const struct hfi1_devdata *dd, u32 offset)
1265{
Mike Marciniszyn77241052015-07-30 15:17:43 -04001266 if (dd->flags & HFI1_PRESENT) {
Bhaktipriya Shridhar6d210ee2016-02-25 17:22:11 +05301267 return readq((void __iomem *)dd->kregbase + offset);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001268 }
1269 return -1;
1270}
1271
1272void write_csr(const struct hfi1_devdata *dd, u32 offset, u64 value)
1273{
1274 if (dd->flags & HFI1_PRESENT)
1275 writeq(value, (void __iomem *)dd->kregbase + offset);
1276}
1277
1278void __iomem *get_csr_addr(
1279 struct hfi1_devdata *dd,
1280 u32 offset)
1281{
1282 return (void __iomem *)dd->kregbase + offset;
1283}
1284
1285static inline u64 read_write_csr(const struct hfi1_devdata *dd, u32 csr,
1286 int mode, u64 value)
1287{
1288 u64 ret;
1289
Mike Marciniszyn77241052015-07-30 15:17:43 -04001290 if (mode == CNTR_MODE_R) {
1291 ret = read_csr(dd, csr);
1292 } else if (mode == CNTR_MODE_W) {
1293 write_csr(dd, csr, value);
1294 ret = value;
1295 } else {
1296 dd_dev_err(dd, "Invalid cntr register access mode");
1297 return 0;
1298 }
1299
1300 hfi1_cdbg(CNTR, "csr 0x%x val 0x%llx mode %d", csr, ret, mode);
1301 return ret;
1302}
1303
1304/* Dev Access */
1305static u64 dev_access_u32_csr(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001306 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001307{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301308 struct hfi1_devdata *dd = context;
Vennila Megavannana699c6c2016-01-11 18:30:56 -05001309 u64 csr = entry->csr;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001310
Vennila Megavannana699c6c2016-01-11 18:30:56 -05001311 if (entry->flags & CNTR_SDMA) {
1312 if (vl == CNTR_INVALID_VL)
1313 return 0;
1314 csr += 0x100 * vl;
1315 } else {
1316 if (vl != CNTR_INVALID_VL)
1317 return 0;
1318 }
1319 return read_write_csr(dd, csr, mode, data);
1320}
1321
1322static u64 access_sde_err_cnt(const struct cntr_entry *entry,
1323 void *context, int idx, int mode, u64 data)
1324{
1325 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1326
1327 if (dd->per_sdma && idx < dd->num_sdma)
1328 return dd->per_sdma[idx].err_cnt;
1329 return 0;
1330}
1331
1332static u64 access_sde_int_cnt(const struct cntr_entry *entry,
1333 void *context, int idx, int mode, u64 data)
1334{
1335 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1336
1337 if (dd->per_sdma && idx < dd->num_sdma)
1338 return dd->per_sdma[idx].sdma_int_cnt;
1339 return 0;
1340}
1341
1342static u64 access_sde_idle_int_cnt(const struct cntr_entry *entry,
1343 void *context, int idx, int mode, u64 data)
1344{
1345 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1346
1347 if (dd->per_sdma && idx < dd->num_sdma)
1348 return dd->per_sdma[idx].idle_int_cnt;
1349 return 0;
1350}
1351
1352static u64 access_sde_progress_int_cnt(const struct cntr_entry *entry,
1353 void *context, int idx, int mode,
1354 u64 data)
1355{
1356 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1357
1358 if (dd->per_sdma && idx < dd->num_sdma)
1359 return dd->per_sdma[idx].progress_int_cnt;
1360 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001361}
1362
1363static u64 dev_access_u64_csr(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001364 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001365{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301366 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001367
1368 u64 val = 0;
1369 u64 csr = entry->csr;
1370
1371 if (entry->flags & CNTR_VL) {
1372 if (vl == CNTR_INVALID_VL)
1373 return 0;
1374 csr += 8 * vl;
1375 } else {
1376 if (vl != CNTR_INVALID_VL)
1377 return 0;
1378 }
1379
1380 val = read_write_csr(dd, csr, mode, data);
1381 return val;
1382}
1383
1384static u64 dc_access_lcb_cntr(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001385 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001386{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301387 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001388 u32 csr = entry->csr;
1389 int ret = 0;
1390
1391 if (vl != CNTR_INVALID_VL)
1392 return 0;
1393 if (mode == CNTR_MODE_R)
1394 ret = read_lcb_csr(dd, csr, &data);
1395 else if (mode == CNTR_MODE_W)
1396 ret = write_lcb_csr(dd, csr, data);
1397
1398 if (ret) {
1399 dd_dev_err(dd, "Could not acquire LCB for counter 0x%x", csr);
1400 return 0;
1401 }
1402
1403 hfi1_cdbg(CNTR, "csr 0x%x val 0x%llx mode %d", csr, data, mode);
1404 return data;
1405}
1406
1407/* Port Access */
1408static u64 port_access_u32_csr(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001409 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001410{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301411 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001412
1413 if (vl != CNTR_INVALID_VL)
1414 return 0;
1415 return read_write_csr(ppd->dd, entry->csr, mode, data);
1416}
1417
1418static u64 port_access_u64_csr(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001419 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001420{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301421 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001422 u64 val;
1423 u64 csr = entry->csr;
1424
1425 if (entry->flags & CNTR_VL) {
1426 if (vl == CNTR_INVALID_VL)
1427 return 0;
1428 csr += 8 * vl;
1429 } else {
1430 if (vl != CNTR_INVALID_VL)
1431 return 0;
1432 }
1433 val = read_write_csr(ppd->dd, csr, mode, data);
1434 return val;
1435}
1436
1437/* Software defined */
1438static inline u64 read_write_sw(struct hfi1_devdata *dd, u64 *cntr, int mode,
1439 u64 data)
1440{
1441 u64 ret;
1442
1443 if (mode == CNTR_MODE_R) {
1444 ret = *cntr;
1445 } else if (mode == CNTR_MODE_W) {
1446 *cntr = data;
1447 ret = data;
1448 } else {
1449 dd_dev_err(dd, "Invalid cntr sw access mode");
1450 return 0;
1451 }
1452
1453 hfi1_cdbg(CNTR, "val 0x%llx mode %d", ret, mode);
1454
1455 return ret;
1456}
1457
1458static u64 access_sw_link_dn_cnt(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001459 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001460{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301461 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001462
1463 if (vl != CNTR_INVALID_VL)
1464 return 0;
1465 return read_write_sw(ppd->dd, &ppd->link_downed, mode, data);
1466}
1467
1468static u64 access_sw_link_up_cnt(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001469 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001470{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301471 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001472
1473 if (vl != CNTR_INVALID_VL)
1474 return 0;
1475 return read_write_sw(ppd->dd, &ppd->link_up, mode, data);
1476}
1477
Dean Luick6d014532015-12-01 15:38:23 -05001478static u64 access_sw_unknown_frame_cnt(const struct cntr_entry *entry,
1479 void *context, int vl, int mode,
1480 u64 data)
1481{
1482 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context;
1483
1484 if (vl != CNTR_INVALID_VL)
1485 return 0;
1486 return read_write_sw(ppd->dd, &ppd->unknown_frame_count, mode, data);
1487}
1488
Mike Marciniszyn77241052015-07-30 15:17:43 -04001489static u64 access_sw_xmit_discards(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001490 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001491{
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08001492 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context;
1493 u64 zero = 0;
1494 u64 *counter;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001495
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08001496 if (vl == CNTR_INVALID_VL)
1497 counter = &ppd->port_xmit_discards;
1498 else if (vl >= 0 && vl < C_VL_COUNT)
1499 counter = &ppd->port_xmit_discards_vl[vl];
1500 else
1501 counter = &zero;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001502
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08001503 return read_write_sw(ppd->dd, counter, mode, data);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001504}
1505
1506static u64 access_xmit_constraint_errs(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001507 void *context, int vl, int mode,
1508 u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001509{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301510 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001511
1512 if (vl != CNTR_INVALID_VL)
1513 return 0;
1514
1515 return read_write_sw(ppd->dd, &ppd->port_xmit_constraint_errors,
1516 mode, data);
1517}
1518
1519static u64 access_rcv_constraint_errs(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001520 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001521{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301522 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001523
1524 if (vl != CNTR_INVALID_VL)
1525 return 0;
1526
1527 return read_write_sw(ppd->dd, &ppd->port_rcv_constraint_errors,
1528 mode, data);
1529}
1530
1531u64 get_all_cpu_total(u64 __percpu *cntr)
1532{
1533 int cpu;
1534 u64 counter = 0;
1535
1536 for_each_possible_cpu(cpu)
1537 counter += *per_cpu_ptr(cntr, cpu);
1538 return counter;
1539}
1540
1541static u64 read_write_cpu(struct hfi1_devdata *dd, u64 *z_val,
1542 u64 __percpu *cntr,
1543 int vl, int mode, u64 data)
1544{
Mike Marciniszyn77241052015-07-30 15:17:43 -04001545 u64 ret = 0;
1546
1547 if (vl != CNTR_INVALID_VL)
1548 return 0;
1549
1550 if (mode == CNTR_MODE_R) {
1551 ret = get_all_cpu_total(cntr) - *z_val;
1552 } else if (mode == CNTR_MODE_W) {
1553 /* A write can only zero the counter */
1554 if (data == 0)
1555 *z_val = get_all_cpu_total(cntr);
1556 else
1557 dd_dev_err(dd, "Per CPU cntrs can only be zeroed");
1558 } else {
1559 dd_dev_err(dd, "Invalid cntr sw cpu access mode");
1560 return 0;
1561 }
1562
1563 return ret;
1564}
1565
1566static u64 access_sw_cpu_intr(const struct cntr_entry *entry,
1567 void *context, int vl, int mode, u64 data)
1568{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301569 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001570
1571 return read_write_cpu(dd, &dd->z_int_counter, dd->int_counter, vl,
1572 mode, data);
1573}
1574
1575static u64 access_sw_cpu_rcv_limit(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001576 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001577{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301578 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001579
1580 return read_write_cpu(dd, &dd->z_rcv_limit, dd->rcv_limit, vl,
1581 mode, data);
1582}
1583
1584static u64 access_sw_pio_wait(const struct cntr_entry *entry,
1585 void *context, int vl, int mode, u64 data)
1586{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301587 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001588
1589 return dd->verbs_dev.n_piowait;
1590}
1591
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001592static u64 access_sw_pio_drain(const struct cntr_entry *entry,
1593 void *context, int vl, int mode, u64 data)
1594{
1595 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1596
1597 return dd->verbs_dev.n_piodrain;
1598}
1599
Mike Marciniszyn77241052015-07-30 15:17:43 -04001600static u64 access_sw_vtx_wait(const struct cntr_entry *entry,
1601 void *context, int vl, int mode, u64 data)
1602{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301603 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001604
1605 return dd->verbs_dev.n_txwait;
1606}
1607
1608static u64 access_sw_kmem_wait(const struct cntr_entry *entry,
1609 void *context, int vl, int mode, u64 data)
1610{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301611 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001612
1613 return dd->verbs_dev.n_kmem_wait;
1614}
1615
Dean Luickb4219222015-10-26 10:28:35 -04001616static u64 access_sw_send_schedule(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001617 void *context, int vl, int mode, u64 data)
Dean Luickb4219222015-10-26 10:28:35 -04001618{
1619 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1620
Vennila Megavannan89abfc82016-02-03 14:34:07 -08001621 return read_write_cpu(dd, &dd->z_send_schedule, dd->send_schedule, vl,
1622 mode, data);
Dean Luickb4219222015-10-26 10:28:35 -04001623}
1624
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05001625/* Software counters for the error status bits within MISC_ERR_STATUS */
1626static u64 access_misc_pll_lock_fail_err_cnt(const struct cntr_entry *entry,
1627 void *context, int vl, int mode,
1628 u64 data)
1629{
1630 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1631
1632 return dd->misc_err_status_cnt[12];
1633}
1634
1635static u64 access_misc_mbist_fail_err_cnt(const struct cntr_entry *entry,
1636 void *context, int vl, int mode,
1637 u64 data)
1638{
1639 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1640
1641 return dd->misc_err_status_cnt[11];
1642}
1643
1644static u64 access_misc_invalid_eep_cmd_err_cnt(const struct cntr_entry *entry,
1645 void *context, int vl, int mode,
1646 u64 data)
1647{
1648 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1649
1650 return dd->misc_err_status_cnt[10];
1651}
1652
1653static u64 access_misc_efuse_done_parity_err_cnt(const struct cntr_entry *entry,
1654 void *context, int vl,
1655 int mode, u64 data)
1656{
1657 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1658
1659 return dd->misc_err_status_cnt[9];
1660}
1661
1662static u64 access_misc_efuse_write_err_cnt(const struct cntr_entry *entry,
1663 void *context, int vl, int mode,
1664 u64 data)
1665{
1666 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1667
1668 return dd->misc_err_status_cnt[8];
1669}
1670
1671static u64 access_misc_efuse_read_bad_addr_err_cnt(
1672 const struct cntr_entry *entry,
1673 void *context, int vl, int mode, u64 data)
1674{
1675 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1676
1677 return dd->misc_err_status_cnt[7];
1678}
1679
1680static u64 access_misc_efuse_csr_parity_err_cnt(const struct cntr_entry *entry,
1681 void *context, int vl,
1682 int mode, u64 data)
1683{
1684 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1685
1686 return dd->misc_err_status_cnt[6];
1687}
1688
1689static u64 access_misc_fw_auth_failed_err_cnt(const struct cntr_entry *entry,
1690 void *context, int vl, int mode,
1691 u64 data)
1692{
1693 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1694
1695 return dd->misc_err_status_cnt[5];
1696}
1697
1698static u64 access_misc_key_mismatch_err_cnt(const struct cntr_entry *entry,
1699 void *context, int vl, int mode,
1700 u64 data)
1701{
1702 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1703
1704 return dd->misc_err_status_cnt[4];
1705}
1706
1707static u64 access_misc_sbus_write_failed_err_cnt(const struct cntr_entry *entry,
1708 void *context, int vl,
1709 int mode, u64 data)
1710{
1711 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1712
1713 return dd->misc_err_status_cnt[3];
1714}
1715
1716static u64 access_misc_csr_write_bad_addr_err_cnt(
1717 const struct cntr_entry *entry,
1718 void *context, int vl, int mode, u64 data)
1719{
1720 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1721
1722 return dd->misc_err_status_cnt[2];
1723}
1724
1725static u64 access_misc_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
1726 void *context, int vl,
1727 int mode, u64 data)
1728{
1729 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1730
1731 return dd->misc_err_status_cnt[1];
1732}
1733
1734static u64 access_misc_csr_parity_err_cnt(const struct cntr_entry *entry,
1735 void *context, int vl, int mode,
1736 u64 data)
1737{
1738 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1739
1740 return dd->misc_err_status_cnt[0];
1741}
1742
1743/*
1744 * Software counter for the aggregate of
1745 * individual CceErrStatus counters
1746 */
1747static u64 access_sw_cce_err_status_aggregated_cnt(
1748 const struct cntr_entry *entry,
1749 void *context, int vl, int mode, u64 data)
1750{
1751 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1752
1753 return dd->sw_cce_err_status_aggregate;
1754}
1755
1756/*
1757 * Software counters corresponding to each of the
1758 * error status bits within CceErrStatus
1759 */
1760static u64 access_cce_msix_csr_parity_err_cnt(const struct cntr_entry *entry,
1761 void *context, int vl, int mode,
1762 u64 data)
1763{
1764 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1765
1766 return dd->cce_err_status_cnt[40];
1767}
1768
1769static u64 access_cce_int_map_unc_err_cnt(const struct cntr_entry *entry,
1770 void *context, int vl, int mode,
1771 u64 data)
1772{
1773 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1774
1775 return dd->cce_err_status_cnt[39];
1776}
1777
1778static u64 access_cce_int_map_cor_err_cnt(const struct cntr_entry *entry,
1779 void *context, int vl, int mode,
1780 u64 data)
1781{
1782 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1783
1784 return dd->cce_err_status_cnt[38];
1785}
1786
1787static u64 access_cce_msix_table_unc_err_cnt(const struct cntr_entry *entry,
1788 void *context, int vl, int mode,
1789 u64 data)
1790{
1791 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1792
1793 return dd->cce_err_status_cnt[37];
1794}
1795
1796static u64 access_cce_msix_table_cor_err_cnt(const struct cntr_entry *entry,
1797 void *context, int vl, int mode,
1798 u64 data)
1799{
1800 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1801
1802 return dd->cce_err_status_cnt[36];
1803}
1804
1805static u64 access_cce_rxdma_conv_fifo_parity_err_cnt(
1806 const struct cntr_entry *entry,
1807 void *context, int vl, int mode, u64 data)
1808{
1809 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1810
1811 return dd->cce_err_status_cnt[35];
1812}
1813
1814static u64 access_cce_rcpl_async_fifo_parity_err_cnt(
1815 const struct cntr_entry *entry,
1816 void *context, int vl, int mode, u64 data)
1817{
1818 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1819
1820 return dd->cce_err_status_cnt[34];
1821}
1822
1823static u64 access_cce_seg_write_bad_addr_err_cnt(const struct cntr_entry *entry,
1824 void *context, int vl,
1825 int mode, u64 data)
1826{
1827 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1828
1829 return dd->cce_err_status_cnt[33];
1830}
1831
1832static u64 access_cce_seg_read_bad_addr_err_cnt(const struct cntr_entry *entry,
1833 void *context, int vl, int mode,
1834 u64 data)
1835{
1836 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1837
1838 return dd->cce_err_status_cnt[32];
1839}
1840
1841static u64 access_la_triggered_cnt(const struct cntr_entry *entry,
1842 void *context, int vl, int mode, u64 data)
1843{
1844 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1845
1846 return dd->cce_err_status_cnt[31];
1847}
1848
1849static u64 access_cce_trgt_cpl_timeout_err_cnt(const struct cntr_entry *entry,
1850 void *context, int vl, int mode,
1851 u64 data)
1852{
1853 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1854
1855 return dd->cce_err_status_cnt[30];
1856}
1857
1858static u64 access_pcic_receive_parity_err_cnt(const struct cntr_entry *entry,
1859 void *context, int vl, int mode,
1860 u64 data)
1861{
1862 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1863
1864 return dd->cce_err_status_cnt[29];
1865}
1866
1867static u64 access_pcic_transmit_back_parity_err_cnt(
1868 const struct cntr_entry *entry,
1869 void *context, int vl, int mode, u64 data)
1870{
1871 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1872
1873 return dd->cce_err_status_cnt[28];
1874}
1875
1876static u64 access_pcic_transmit_front_parity_err_cnt(
1877 const struct cntr_entry *entry,
1878 void *context, int vl, int mode, u64 data)
1879{
1880 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1881
1882 return dd->cce_err_status_cnt[27];
1883}
1884
1885static u64 access_pcic_cpl_dat_q_unc_err_cnt(const struct cntr_entry *entry,
1886 void *context, int vl, int mode,
1887 u64 data)
1888{
1889 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1890
1891 return dd->cce_err_status_cnt[26];
1892}
1893
1894static u64 access_pcic_cpl_hd_q_unc_err_cnt(const struct cntr_entry *entry,
1895 void *context, int vl, int mode,
1896 u64 data)
1897{
1898 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1899
1900 return dd->cce_err_status_cnt[25];
1901}
1902
1903static u64 access_pcic_post_dat_q_unc_err_cnt(const struct cntr_entry *entry,
1904 void *context, int vl, int mode,
1905 u64 data)
1906{
1907 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1908
1909 return dd->cce_err_status_cnt[24];
1910}
1911
1912static u64 access_pcic_post_hd_q_unc_err_cnt(const struct cntr_entry *entry,
1913 void *context, int vl, int mode,
1914 u64 data)
1915{
1916 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1917
1918 return dd->cce_err_status_cnt[23];
1919}
1920
1921static u64 access_pcic_retry_sot_mem_unc_err_cnt(const struct cntr_entry *entry,
1922 void *context, int vl,
1923 int mode, u64 data)
1924{
1925 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1926
1927 return dd->cce_err_status_cnt[22];
1928}
1929
1930static u64 access_pcic_retry_mem_unc_err(const struct cntr_entry *entry,
1931 void *context, int vl, int mode,
1932 u64 data)
1933{
1934 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1935
1936 return dd->cce_err_status_cnt[21];
1937}
1938
1939static u64 access_pcic_n_post_dat_q_parity_err_cnt(
1940 const struct cntr_entry *entry,
1941 void *context, int vl, int mode, u64 data)
1942{
1943 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1944
1945 return dd->cce_err_status_cnt[20];
1946}
1947
1948static u64 access_pcic_n_post_h_q_parity_err_cnt(const struct cntr_entry *entry,
1949 void *context, int vl,
1950 int mode, u64 data)
1951{
1952 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1953
1954 return dd->cce_err_status_cnt[19];
1955}
1956
1957static u64 access_pcic_cpl_dat_q_cor_err_cnt(const struct cntr_entry *entry,
1958 void *context, int vl, int mode,
1959 u64 data)
1960{
1961 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1962
1963 return dd->cce_err_status_cnt[18];
1964}
1965
1966static u64 access_pcic_cpl_hd_q_cor_err_cnt(const struct cntr_entry *entry,
1967 void *context, int vl, int mode,
1968 u64 data)
1969{
1970 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1971
1972 return dd->cce_err_status_cnt[17];
1973}
1974
1975static u64 access_pcic_post_dat_q_cor_err_cnt(const struct cntr_entry *entry,
1976 void *context, int vl, int mode,
1977 u64 data)
1978{
1979 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1980
1981 return dd->cce_err_status_cnt[16];
1982}
1983
1984static u64 access_pcic_post_hd_q_cor_err_cnt(const struct cntr_entry *entry,
1985 void *context, int vl, int mode,
1986 u64 data)
1987{
1988 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1989
1990 return dd->cce_err_status_cnt[15];
1991}
1992
1993static u64 access_pcic_retry_sot_mem_cor_err_cnt(const struct cntr_entry *entry,
1994 void *context, int vl,
1995 int mode, u64 data)
1996{
1997 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1998
1999 return dd->cce_err_status_cnt[14];
2000}
2001
2002static u64 access_pcic_retry_mem_cor_err_cnt(const struct cntr_entry *entry,
2003 void *context, int vl, int mode,
2004 u64 data)
2005{
2006 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2007
2008 return dd->cce_err_status_cnt[13];
2009}
2010
2011static u64 access_cce_cli1_async_fifo_dbg_parity_err_cnt(
2012 const struct cntr_entry *entry,
2013 void *context, int vl, int mode, u64 data)
2014{
2015 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2016
2017 return dd->cce_err_status_cnt[12];
2018}
2019
2020static u64 access_cce_cli1_async_fifo_rxdma_parity_err_cnt(
2021 const struct cntr_entry *entry,
2022 void *context, int vl, int mode, u64 data)
2023{
2024 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2025
2026 return dd->cce_err_status_cnt[11];
2027}
2028
2029static u64 access_cce_cli1_async_fifo_sdma_hd_parity_err_cnt(
2030 const struct cntr_entry *entry,
2031 void *context, int vl, int mode, u64 data)
2032{
2033 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2034
2035 return dd->cce_err_status_cnt[10];
2036}
2037
2038static u64 access_cce_cl1_async_fifo_pio_crdt_parity_err_cnt(
2039 const struct cntr_entry *entry,
2040 void *context, int vl, int mode, u64 data)
2041{
2042 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2043
2044 return dd->cce_err_status_cnt[9];
2045}
2046
2047static u64 access_cce_cli2_async_fifo_parity_err_cnt(
2048 const struct cntr_entry *entry,
2049 void *context, int vl, int mode, u64 data)
2050{
2051 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2052
2053 return dd->cce_err_status_cnt[8];
2054}
2055
2056static u64 access_cce_csr_cfg_bus_parity_err_cnt(const struct cntr_entry *entry,
2057 void *context, int vl,
2058 int mode, u64 data)
2059{
2060 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2061
2062 return dd->cce_err_status_cnt[7];
2063}
2064
2065static u64 access_cce_cli0_async_fifo_parity_err_cnt(
2066 const struct cntr_entry *entry,
2067 void *context, int vl, int mode, u64 data)
2068{
2069 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2070
2071 return dd->cce_err_status_cnt[6];
2072}
2073
2074static u64 access_cce_rspd_data_parity_err_cnt(const struct cntr_entry *entry,
2075 void *context, int vl, int mode,
2076 u64 data)
2077{
2078 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2079
2080 return dd->cce_err_status_cnt[5];
2081}
2082
2083static u64 access_cce_trgt_access_err_cnt(const struct cntr_entry *entry,
2084 void *context, int vl, int mode,
2085 u64 data)
2086{
2087 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2088
2089 return dd->cce_err_status_cnt[4];
2090}
2091
2092static u64 access_cce_trgt_async_fifo_parity_err_cnt(
2093 const struct cntr_entry *entry,
2094 void *context, int vl, int mode, u64 data)
2095{
2096 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2097
2098 return dd->cce_err_status_cnt[3];
2099}
2100
2101static u64 access_cce_csr_write_bad_addr_err_cnt(const struct cntr_entry *entry,
2102 void *context, int vl,
2103 int mode, u64 data)
2104{
2105 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2106
2107 return dd->cce_err_status_cnt[2];
2108}
2109
2110static u64 access_cce_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
2111 void *context, int vl,
2112 int mode, u64 data)
2113{
2114 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2115
2116 return dd->cce_err_status_cnt[1];
2117}
2118
2119static u64 access_ccs_csr_parity_err_cnt(const struct cntr_entry *entry,
2120 void *context, int vl, int mode,
2121 u64 data)
2122{
2123 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2124
2125 return dd->cce_err_status_cnt[0];
2126}
2127
2128/*
2129 * Software counters corresponding to each of the
2130 * error status bits within RcvErrStatus
2131 */
2132static u64 access_rx_csr_parity_err_cnt(const struct cntr_entry *entry,
2133 void *context, int vl, int mode,
2134 u64 data)
2135{
2136 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2137
2138 return dd->rcv_err_status_cnt[63];
2139}
2140
2141static u64 access_rx_csr_write_bad_addr_err_cnt(const struct cntr_entry *entry,
2142 void *context, int vl,
2143 int mode, u64 data)
2144{
2145 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2146
2147 return dd->rcv_err_status_cnt[62];
2148}
2149
2150static u64 access_rx_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
2151 void *context, int vl, int mode,
2152 u64 data)
2153{
2154 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2155
2156 return dd->rcv_err_status_cnt[61];
2157}
2158
2159static u64 access_rx_dma_csr_unc_err_cnt(const struct cntr_entry *entry,
2160 void *context, int vl, int mode,
2161 u64 data)
2162{
2163 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2164
2165 return dd->rcv_err_status_cnt[60];
2166}
2167
2168static u64 access_rx_dma_dq_fsm_encoding_err_cnt(const struct cntr_entry *entry,
2169 void *context, int vl,
2170 int mode, u64 data)
2171{
2172 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2173
2174 return dd->rcv_err_status_cnt[59];
2175}
2176
2177static u64 access_rx_dma_eq_fsm_encoding_err_cnt(const struct cntr_entry *entry,
2178 void *context, int vl,
2179 int mode, u64 data)
2180{
2181 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2182
2183 return dd->rcv_err_status_cnt[58];
2184}
2185
2186static u64 access_rx_dma_csr_parity_err_cnt(const struct cntr_entry *entry,
2187 void *context, int vl, int mode,
2188 u64 data)
2189{
2190 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2191
2192 return dd->rcv_err_status_cnt[57];
2193}
2194
2195static u64 access_rx_rbuf_data_cor_err_cnt(const struct cntr_entry *entry,
2196 void *context, int vl, int mode,
2197 u64 data)
2198{
2199 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2200
2201 return dd->rcv_err_status_cnt[56];
2202}
2203
2204static u64 access_rx_rbuf_data_unc_err_cnt(const struct cntr_entry *entry,
2205 void *context, int vl, int mode,
2206 u64 data)
2207{
2208 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2209
2210 return dd->rcv_err_status_cnt[55];
2211}
2212
2213static u64 access_rx_dma_data_fifo_rd_cor_err_cnt(
2214 const struct cntr_entry *entry,
2215 void *context, int vl, int mode, u64 data)
2216{
2217 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2218
2219 return dd->rcv_err_status_cnt[54];
2220}
2221
2222static u64 access_rx_dma_data_fifo_rd_unc_err_cnt(
2223 const struct cntr_entry *entry,
2224 void *context, int vl, int mode, u64 data)
2225{
2226 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2227
2228 return dd->rcv_err_status_cnt[53];
2229}
2230
2231static u64 access_rx_dma_hdr_fifo_rd_cor_err_cnt(const struct cntr_entry *entry,
2232 void *context, int vl,
2233 int mode, u64 data)
2234{
2235 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2236
2237 return dd->rcv_err_status_cnt[52];
2238}
2239
2240static u64 access_rx_dma_hdr_fifo_rd_unc_err_cnt(const struct cntr_entry *entry,
2241 void *context, int vl,
2242 int mode, u64 data)
2243{
2244 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2245
2246 return dd->rcv_err_status_cnt[51];
2247}
2248
2249static u64 access_rx_rbuf_desc_part2_cor_err_cnt(const struct cntr_entry *entry,
2250 void *context, int vl,
2251 int mode, u64 data)
2252{
2253 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2254
2255 return dd->rcv_err_status_cnt[50];
2256}
2257
2258static u64 access_rx_rbuf_desc_part2_unc_err_cnt(const struct cntr_entry *entry,
2259 void *context, int vl,
2260 int mode, u64 data)
2261{
2262 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2263
2264 return dd->rcv_err_status_cnt[49];
2265}
2266
2267static u64 access_rx_rbuf_desc_part1_cor_err_cnt(const struct cntr_entry *entry,
2268 void *context, int vl,
2269 int mode, u64 data)
2270{
2271 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2272
2273 return dd->rcv_err_status_cnt[48];
2274}
2275
2276static u64 access_rx_rbuf_desc_part1_unc_err_cnt(const struct cntr_entry *entry,
2277 void *context, int vl,
2278 int mode, u64 data)
2279{
2280 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2281
2282 return dd->rcv_err_status_cnt[47];
2283}
2284
2285static u64 access_rx_hq_intr_fsm_err_cnt(const struct cntr_entry *entry,
2286 void *context, int vl, int mode,
2287 u64 data)
2288{
2289 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2290
2291 return dd->rcv_err_status_cnt[46];
2292}
2293
2294static u64 access_rx_hq_intr_csr_parity_err_cnt(
2295 const struct cntr_entry *entry,
2296 void *context, int vl, int mode, u64 data)
2297{
2298 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2299
2300 return dd->rcv_err_status_cnt[45];
2301}
2302
2303static u64 access_rx_lookup_csr_parity_err_cnt(
2304 const struct cntr_entry *entry,
2305 void *context, int vl, int mode, u64 data)
2306{
2307 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2308
2309 return dd->rcv_err_status_cnt[44];
2310}
2311
2312static u64 access_rx_lookup_rcv_array_cor_err_cnt(
2313 const struct cntr_entry *entry,
2314 void *context, int vl, int mode, u64 data)
2315{
2316 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2317
2318 return dd->rcv_err_status_cnt[43];
2319}
2320
2321static u64 access_rx_lookup_rcv_array_unc_err_cnt(
2322 const struct cntr_entry *entry,
2323 void *context, int vl, int mode, u64 data)
2324{
2325 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2326
2327 return dd->rcv_err_status_cnt[42];
2328}
2329
2330static u64 access_rx_lookup_des_part2_parity_err_cnt(
2331 const struct cntr_entry *entry,
2332 void *context, int vl, int mode, u64 data)
2333{
2334 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2335
2336 return dd->rcv_err_status_cnt[41];
2337}
2338
2339static u64 access_rx_lookup_des_part1_unc_cor_err_cnt(
2340 const struct cntr_entry *entry,
2341 void *context, int vl, int mode, u64 data)
2342{
2343 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2344
2345 return dd->rcv_err_status_cnt[40];
2346}
2347
2348static u64 access_rx_lookup_des_part1_unc_err_cnt(
2349 const struct cntr_entry *entry,
2350 void *context, int vl, int mode, u64 data)
2351{
2352 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2353
2354 return dd->rcv_err_status_cnt[39];
2355}
2356
2357static u64 access_rx_rbuf_next_free_buf_cor_err_cnt(
2358 const struct cntr_entry *entry,
2359 void *context, int vl, int mode, u64 data)
2360{
2361 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2362
2363 return dd->rcv_err_status_cnt[38];
2364}
2365
2366static u64 access_rx_rbuf_next_free_buf_unc_err_cnt(
2367 const struct cntr_entry *entry,
2368 void *context, int vl, int mode, u64 data)
2369{
2370 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2371
2372 return dd->rcv_err_status_cnt[37];
2373}
2374
2375static u64 access_rbuf_fl_init_wr_addr_parity_err_cnt(
2376 const struct cntr_entry *entry,
2377 void *context, int vl, int mode, u64 data)
2378{
2379 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2380
2381 return dd->rcv_err_status_cnt[36];
2382}
2383
2384static u64 access_rx_rbuf_fl_initdone_parity_err_cnt(
2385 const struct cntr_entry *entry,
2386 void *context, int vl, int mode, u64 data)
2387{
2388 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2389
2390 return dd->rcv_err_status_cnt[35];
2391}
2392
2393static u64 access_rx_rbuf_fl_write_addr_parity_err_cnt(
2394 const struct cntr_entry *entry,
2395 void *context, int vl, int mode, u64 data)
2396{
2397 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2398
2399 return dd->rcv_err_status_cnt[34];
2400}
2401
2402static u64 access_rx_rbuf_fl_rd_addr_parity_err_cnt(
2403 const struct cntr_entry *entry,
2404 void *context, int vl, int mode, u64 data)
2405{
2406 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2407
2408 return dd->rcv_err_status_cnt[33];
2409}
2410
2411static u64 access_rx_rbuf_empty_err_cnt(const struct cntr_entry *entry,
2412 void *context, int vl, int mode,
2413 u64 data)
2414{
2415 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2416
2417 return dd->rcv_err_status_cnt[32];
2418}
2419
2420static u64 access_rx_rbuf_full_err_cnt(const struct cntr_entry *entry,
2421 void *context, int vl, int mode,
2422 u64 data)
2423{
2424 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2425
2426 return dd->rcv_err_status_cnt[31];
2427}
2428
2429static u64 access_rbuf_bad_lookup_err_cnt(const struct cntr_entry *entry,
2430 void *context, int vl, int mode,
2431 u64 data)
2432{
2433 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2434
2435 return dd->rcv_err_status_cnt[30];
2436}
2437
2438static u64 access_rbuf_ctx_id_parity_err_cnt(const struct cntr_entry *entry,
2439 void *context, int vl, int mode,
2440 u64 data)
2441{
2442 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2443
2444 return dd->rcv_err_status_cnt[29];
2445}
2446
2447static u64 access_rbuf_csr_qeopdw_parity_err_cnt(const struct cntr_entry *entry,
2448 void *context, int vl,
2449 int mode, u64 data)
2450{
2451 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2452
2453 return dd->rcv_err_status_cnt[28];
2454}
2455
2456static u64 access_rx_rbuf_csr_q_num_of_pkt_parity_err_cnt(
2457 const struct cntr_entry *entry,
2458 void *context, int vl, int mode, u64 data)
2459{
2460 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2461
2462 return dd->rcv_err_status_cnt[27];
2463}
2464
2465static u64 access_rx_rbuf_csr_q_t1_ptr_parity_err_cnt(
2466 const struct cntr_entry *entry,
2467 void *context, int vl, int mode, u64 data)
2468{
2469 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2470
2471 return dd->rcv_err_status_cnt[26];
2472}
2473
2474static u64 access_rx_rbuf_csr_q_hd_ptr_parity_err_cnt(
2475 const struct cntr_entry *entry,
2476 void *context, int vl, int mode, u64 data)
2477{
2478 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2479
2480 return dd->rcv_err_status_cnt[25];
2481}
2482
2483static u64 access_rx_rbuf_csr_q_vld_bit_parity_err_cnt(
2484 const struct cntr_entry *entry,
2485 void *context, int vl, int mode, u64 data)
2486{
2487 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2488
2489 return dd->rcv_err_status_cnt[24];
2490}
2491
2492static u64 access_rx_rbuf_csr_q_next_buf_parity_err_cnt(
2493 const struct cntr_entry *entry,
2494 void *context, int vl, int mode, u64 data)
2495{
2496 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2497
2498 return dd->rcv_err_status_cnt[23];
2499}
2500
2501static u64 access_rx_rbuf_csr_q_ent_cnt_parity_err_cnt(
2502 const struct cntr_entry *entry,
2503 void *context, int vl, int mode, u64 data)
2504{
2505 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2506
2507 return dd->rcv_err_status_cnt[22];
2508}
2509
2510static u64 access_rx_rbuf_csr_q_head_buf_num_parity_err_cnt(
2511 const struct cntr_entry *entry,
2512 void *context, int vl, int mode, u64 data)
2513{
2514 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2515
2516 return dd->rcv_err_status_cnt[21];
2517}
2518
2519static u64 access_rx_rbuf_block_list_read_cor_err_cnt(
2520 const struct cntr_entry *entry,
2521 void *context, int vl, int mode, u64 data)
2522{
2523 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2524
2525 return dd->rcv_err_status_cnt[20];
2526}
2527
2528static u64 access_rx_rbuf_block_list_read_unc_err_cnt(
2529 const struct cntr_entry *entry,
2530 void *context, int vl, int mode, u64 data)
2531{
2532 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2533
2534 return dd->rcv_err_status_cnt[19];
2535}
2536
2537static u64 access_rx_rbuf_lookup_des_cor_err_cnt(const struct cntr_entry *entry,
2538 void *context, int vl,
2539 int mode, u64 data)
2540{
2541 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2542
2543 return dd->rcv_err_status_cnt[18];
2544}
2545
2546static u64 access_rx_rbuf_lookup_des_unc_err_cnt(const struct cntr_entry *entry,
2547 void *context, int vl,
2548 int mode, u64 data)
2549{
2550 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2551
2552 return dd->rcv_err_status_cnt[17];
2553}
2554
2555static u64 access_rx_rbuf_lookup_des_reg_unc_cor_err_cnt(
2556 const struct cntr_entry *entry,
2557 void *context, int vl, int mode, u64 data)
2558{
2559 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2560
2561 return dd->rcv_err_status_cnt[16];
2562}
2563
2564static u64 access_rx_rbuf_lookup_des_reg_unc_err_cnt(
2565 const struct cntr_entry *entry,
2566 void *context, int vl, int mode, u64 data)
2567{
2568 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2569
2570 return dd->rcv_err_status_cnt[15];
2571}
2572
2573static u64 access_rx_rbuf_free_list_cor_err_cnt(const struct cntr_entry *entry,
2574 void *context, int vl,
2575 int mode, u64 data)
2576{
2577 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2578
2579 return dd->rcv_err_status_cnt[14];
2580}
2581
2582static u64 access_rx_rbuf_free_list_unc_err_cnt(const struct cntr_entry *entry,
2583 void *context, int vl,
2584 int mode, u64 data)
2585{
2586 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2587
2588 return dd->rcv_err_status_cnt[13];
2589}
2590
2591static u64 access_rx_rcv_fsm_encoding_err_cnt(const struct cntr_entry *entry,
2592 void *context, int vl, int mode,
2593 u64 data)
2594{
2595 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2596
2597 return dd->rcv_err_status_cnt[12];
2598}
2599
2600static u64 access_rx_dma_flag_cor_err_cnt(const struct cntr_entry *entry,
2601 void *context, int vl, int mode,
2602 u64 data)
2603{
2604 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2605
2606 return dd->rcv_err_status_cnt[11];
2607}
2608
2609static u64 access_rx_dma_flag_unc_err_cnt(const struct cntr_entry *entry,
2610 void *context, int vl, int mode,
2611 u64 data)
2612{
2613 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2614
2615 return dd->rcv_err_status_cnt[10];
2616}
2617
2618static u64 access_rx_dc_sop_eop_parity_err_cnt(const struct cntr_entry *entry,
2619 void *context, int vl, int mode,
2620 u64 data)
2621{
2622 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2623
2624 return dd->rcv_err_status_cnt[9];
2625}
2626
2627static u64 access_rx_rcv_csr_parity_err_cnt(const struct cntr_entry *entry,
2628 void *context, int vl, int mode,
2629 u64 data)
2630{
2631 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2632
2633 return dd->rcv_err_status_cnt[8];
2634}
2635
2636static u64 access_rx_rcv_qp_map_table_cor_err_cnt(
2637 const struct cntr_entry *entry,
2638 void *context, int vl, int mode, u64 data)
2639{
2640 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2641
2642 return dd->rcv_err_status_cnt[7];
2643}
2644
2645static u64 access_rx_rcv_qp_map_table_unc_err_cnt(
2646 const struct cntr_entry *entry,
2647 void *context, int vl, int mode, u64 data)
2648{
2649 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2650
2651 return dd->rcv_err_status_cnt[6];
2652}
2653
2654static u64 access_rx_rcv_data_cor_err_cnt(const struct cntr_entry *entry,
2655 void *context, int vl, int mode,
2656 u64 data)
2657{
2658 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2659
2660 return dd->rcv_err_status_cnt[5];
2661}
2662
2663static u64 access_rx_rcv_data_unc_err_cnt(const struct cntr_entry *entry,
2664 void *context, int vl, int mode,
2665 u64 data)
2666{
2667 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2668
2669 return dd->rcv_err_status_cnt[4];
2670}
2671
2672static u64 access_rx_rcv_hdr_cor_err_cnt(const struct cntr_entry *entry,
2673 void *context, int vl, int mode,
2674 u64 data)
2675{
2676 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2677
2678 return dd->rcv_err_status_cnt[3];
2679}
2680
2681static u64 access_rx_rcv_hdr_unc_err_cnt(const struct cntr_entry *entry,
2682 void *context, int vl, int mode,
2683 u64 data)
2684{
2685 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2686
2687 return dd->rcv_err_status_cnt[2];
2688}
2689
2690static u64 access_rx_dc_intf_parity_err_cnt(const struct cntr_entry *entry,
2691 void *context, int vl, int mode,
2692 u64 data)
2693{
2694 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2695
2696 return dd->rcv_err_status_cnt[1];
2697}
2698
2699static u64 access_rx_dma_csr_cor_err_cnt(const struct cntr_entry *entry,
2700 void *context, int vl, int mode,
2701 u64 data)
2702{
2703 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2704
2705 return dd->rcv_err_status_cnt[0];
2706}
2707
2708/*
2709 * Software counters corresponding to each of the
2710 * error status bits within SendPioErrStatus
2711 */
2712static u64 access_pio_pec_sop_head_parity_err_cnt(
2713 const struct cntr_entry *entry,
2714 void *context, int vl, int mode, u64 data)
2715{
2716 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2717
2718 return dd->send_pio_err_status_cnt[35];
2719}
2720
2721static u64 access_pio_pcc_sop_head_parity_err_cnt(
2722 const struct cntr_entry *entry,
2723 void *context, int vl, int mode, u64 data)
2724{
2725 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2726
2727 return dd->send_pio_err_status_cnt[34];
2728}
2729
2730static u64 access_pio_last_returned_cnt_parity_err_cnt(
2731 const struct cntr_entry *entry,
2732 void *context, int vl, int mode, u64 data)
2733{
2734 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2735
2736 return dd->send_pio_err_status_cnt[33];
2737}
2738
2739static u64 access_pio_current_free_cnt_parity_err_cnt(
2740 const struct cntr_entry *entry,
2741 void *context, int vl, int mode, u64 data)
2742{
2743 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2744
2745 return dd->send_pio_err_status_cnt[32];
2746}
2747
2748static u64 access_pio_reserved_31_err_cnt(const struct cntr_entry *entry,
2749 void *context, int vl, int mode,
2750 u64 data)
2751{
2752 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2753
2754 return dd->send_pio_err_status_cnt[31];
2755}
2756
2757static u64 access_pio_reserved_30_err_cnt(const struct cntr_entry *entry,
2758 void *context, int vl, int mode,
2759 u64 data)
2760{
2761 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2762
2763 return dd->send_pio_err_status_cnt[30];
2764}
2765
2766static u64 access_pio_ppmc_sop_len_err_cnt(const struct cntr_entry *entry,
2767 void *context, int vl, int mode,
2768 u64 data)
2769{
2770 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2771
2772 return dd->send_pio_err_status_cnt[29];
2773}
2774
2775static u64 access_pio_ppmc_bqc_mem_parity_err_cnt(
2776 const struct cntr_entry *entry,
2777 void *context, int vl, int mode, u64 data)
2778{
2779 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2780
2781 return dd->send_pio_err_status_cnt[28];
2782}
2783
2784static u64 access_pio_vl_fifo_parity_err_cnt(const struct cntr_entry *entry,
2785 void *context, int vl, int mode,
2786 u64 data)
2787{
2788 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2789
2790 return dd->send_pio_err_status_cnt[27];
2791}
2792
2793static u64 access_pio_vlf_sop_parity_err_cnt(const struct cntr_entry *entry,
2794 void *context, int vl, int mode,
2795 u64 data)
2796{
2797 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2798
2799 return dd->send_pio_err_status_cnt[26];
2800}
2801
2802static u64 access_pio_vlf_v1_len_parity_err_cnt(const struct cntr_entry *entry,
2803 void *context, int vl,
2804 int mode, u64 data)
2805{
2806 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2807
2808 return dd->send_pio_err_status_cnt[25];
2809}
2810
2811static u64 access_pio_block_qw_count_parity_err_cnt(
2812 const struct cntr_entry *entry,
2813 void *context, int vl, int mode, u64 data)
2814{
2815 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2816
2817 return dd->send_pio_err_status_cnt[24];
2818}
2819
2820static u64 access_pio_write_qw_valid_parity_err_cnt(
2821 const struct cntr_entry *entry,
2822 void *context, int vl, int mode, u64 data)
2823{
2824 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2825
2826 return dd->send_pio_err_status_cnt[23];
2827}
2828
2829static u64 access_pio_state_machine_err_cnt(const struct cntr_entry *entry,
2830 void *context, int vl, int mode,
2831 u64 data)
2832{
2833 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2834
2835 return dd->send_pio_err_status_cnt[22];
2836}
2837
2838static u64 access_pio_write_data_parity_err_cnt(const struct cntr_entry *entry,
2839 void *context, int vl,
2840 int mode, u64 data)
2841{
2842 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2843
2844 return dd->send_pio_err_status_cnt[21];
2845}
2846
2847static u64 access_pio_host_addr_mem_cor_err_cnt(const struct cntr_entry *entry,
2848 void *context, int vl,
2849 int mode, u64 data)
2850{
2851 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2852
2853 return dd->send_pio_err_status_cnt[20];
2854}
2855
2856static u64 access_pio_host_addr_mem_unc_err_cnt(const struct cntr_entry *entry,
2857 void *context, int vl,
2858 int mode, u64 data)
2859{
2860 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2861
2862 return dd->send_pio_err_status_cnt[19];
2863}
2864
2865static u64 access_pio_pkt_evict_sm_or_arb_sm_err_cnt(
2866 const struct cntr_entry *entry,
2867 void *context, int vl, int mode, u64 data)
2868{
2869 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2870
2871 return dd->send_pio_err_status_cnt[18];
2872}
2873
2874static u64 access_pio_init_sm_in_err_cnt(const struct cntr_entry *entry,
2875 void *context, int vl, int mode,
2876 u64 data)
2877{
2878 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2879
2880 return dd->send_pio_err_status_cnt[17];
2881}
2882
2883static u64 access_pio_ppmc_pbl_fifo_err_cnt(const struct cntr_entry *entry,
2884 void *context, int vl, int mode,
2885 u64 data)
2886{
2887 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2888
2889 return dd->send_pio_err_status_cnt[16];
2890}
2891
2892static u64 access_pio_credit_ret_fifo_parity_err_cnt(
2893 const struct cntr_entry *entry,
2894 void *context, int vl, int mode, u64 data)
2895{
2896 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2897
2898 return dd->send_pio_err_status_cnt[15];
2899}
2900
2901static u64 access_pio_v1_len_mem_bank1_cor_err_cnt(
2902 const struct cntr_entry *entry,
2903 void *context, int vl, int mode, u64 data)
2904{
2905 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2906
2907 return dd->send_pio_err_status_cnt[14];
2908}
2909
2910static u64 access_pio_v1_len_mem_bank0_cor_err_cnt(
2911 const struct cntr_entry *entry,
2912 void *context, int vl, int mode, u64 data)
2913{
2914 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2915
2916 return dd->send_pio_err_status_cnt[13];
2917}
2918
2919static u64 access_pio_v1_len_mem_bank1_unc_err_cnt(
2920 const struct cntr_entry *entry,
2921 void *context, int vl, int mode, u64 data)
2922{
2923 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2924
2925 return dd->send_pio_err_status_cnt[12];
2926}
2927
2928static u64 access_pio_v1_len_mem_bank0_unc_err_cnt(
2929 const struct cntr_entry *entry,
2930 void *context, int vl, int mode, u64 data)
2931{
2932 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2933
2934 return dd->send_pio_err_status_cnt[11];
2935}
2936
2937static u64 access_pio_sm_pkt_reset_parity_err_cnt(
2938 const struct cntr_entry *entry,
2939 void *context, int vl, int mode, u64 data)
2940{
2941 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2942
2943 return dd->send_pio_err_status_cnt[10];
2944}
2945
2946static u64 access_pio_pkt_evict_fifo_parity_err_cnt(
2947 const struct cntr_entry *entry,
2948 void *context, int vl, int mode, u64 data)
2949{
2950 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2951
2952 return dd->send_pio_err_status_cnt[9];
2953}
2954
2955static u64 access_pio_sbrdctrl_crrel_fifo_parity_err_cnt(
2956 const struct cntr_entry *entry,
2957 void *context, int vl, int mode, u64 data)
2958{
2959 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2960
2961 return dd->send_pio_err_status_cnt[8];
2962}
2963
2964static u64 access_pio_sbrdctl_crrel_parity_err_cnt(
2965 const struct cntr_entry *entry,
2966 void *context, int vl, int mode, u64 data)
2967{
2968 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2969
2970 return dd->send_pio_err_status_cnt[7];
2971}
2972
2973static u64 access_pio_pec_fifo_parity_err_cnt(const struct cntr_entry *entry,
2974 void *context, int vl, int mode,
2975 u64 data)
2976{
2977 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2978
2979 return dd->send_pio_err_status_cnt[6];
2980}
2981
2982static u64 access_pio_pcc_fifo_parity_err_cnt(const struct cntr_entry *entry,
2983 void *context, int vl, int mode,
2984 u64 data)
2985{
2986 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2987
2988 return dd->send_pio_err_status_cnt[5];
2989}
2990
2991static u64 access_pio_sb_mem_fifo1_err_cnt(const struct cntr_entry *entry,
2992 void *context, int vl, int mode,
2993 u64 data)
2994{
2995 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2996
2997 return dd->send_pio_err_status_cnt[4];
2998}
2999
3000static u64 access_pio_sb_mem_fifo0_err_cnt(const struct cntr_entry *entry,
3001 void *context, int vl, int mode,
3002 u64 data)
3003{
3004 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3005
3006 return dd->send_pio_err_status_cnt[3];
3007}
3008
3009static u64 access_pio_csr_parity_err_cnt(const struct cntr_entry *entry,
3010 void *context, int vl, int mode,
3011 u64 data)
3012{
3013 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3014
3015 return dd->send_pio_err_status_cnt[2];
3016}
3017
3018static u64 access_pio_write_addr_parity_err_cnt(const struct cntr_entry *entry,
3019 void *context, int vl,
3020 int mode, u64 data)
3021{
3022 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3023
3024 return dd->send_pio_err_status_cnt[1];
3025}
3026
3027static u64 access_pio_write_bad_ctxt_err_cnt(const struct cntr_entry *entry,
3028 void *context, int vl, int mode,
3029 u64 data)
3030{
3031 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3032
3033 return dd->send_pio_err_status_cnt[0];
3034}
3035
3036/*
3037 * Software counters corresponding to each of the
3038 * error status bits within SendDmaErrStatus
3039 */
3040static u64 access_sdma_pcie_req_tracking_cor_err_cnt(
3041 const struct cntr_entry *entry,
3042 void *context, int vl, int mode, u64 data)
3043{
3044 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3045
3046 return dd->send_dma_err_status_cnt[3];
3047}
3048
3049static u64 access_sdma_pcie_req_tracking_unc_err_cnt(
3050 const struct cntr_entry *entry,
3051 void *context, int vl, int mode, u64 data)
3052{
3053 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3054
3055 return dd->send_dma_err_status_cnt[2];
3056}
3057
3058static u64 access_sdma_csr_parity_err_cnt(const struct cntr_entry *entry,
3059 void *context, int vl, int mode,
3060 u64 data)
3061{
3062 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3063
3064 return dd->send_dma_err_status_cnt[1];
3065}
3066
3067static u64 access_sdma_rpy_tag_err_cnt(const struct cntr_entry *entry,
3068 void *context, int vl, int mode,
3069 u64 data)
3070{
3071 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3072
3073 return dd->send_dma_err_status_cnt[0];
3074}
3075
3076/*
3077 * Software counters corresponding to each of the
3078 * error status bits within SendEgressErrStatus
3079 */
3080static u64 access_tx_read_pio_memory_csr_unc_err_cnt(
3081 const struct cntr_entry *entry,
3082 void *context, int vl, int mode, u64 data)
3083{
3084 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3085
3086 return dd->send_egress_err_status_cnt[63];
3087}
3088
3089static u64 access_tx_read_sdma_memory_csr_err_cnt(
3090 const struct cntr_entry *entry,
3091 void *context, int vl, int mode, u64 data)
3092{
3093 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3094
3095 return dd->send_egress_err_status_cnt[62];
3096}
3097
3098static u64 access_tx_egress_fifo_cor_err_cnt(const struct cntr_entry *entry,
3099 void *context, int vl, int mode,
3100 u64 data)
3101{
3102 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3103
3104 return dd->send_egress_err_status_cnt[61];
3105}
3106
3107static u64 access_tx_read_pio_memory_cor_err_cnt(const struct cntr_entry *entry,
3108 void *context, int vl,
3109 int mode, u64 data)
3110{
3111 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3112
3113 return dd->send_egress_err_status_cnt[60];
3114}
3115
3116static u64 access_tx_read_sdma_memory_cor_err_cnt(
3117 const struct cntr_entry *entry,
3118 void *context, int vl, int mode, u64 data)
3119{
3120 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3121
3122 return dd->send_egress_err_status_cnt[59];
3123}
3124
3125static u64 access_tx_sb_hdr_cor_err_cnt(const struct cntr_entry *entry,
3126 void *context, int vl, int mode,
3127 u64 data)
3128{
3129 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3130
3131 return dd->send_egress_err_status_cnt[58];
3132}
3133
3134static u64 access_tx_credit_overrun_err_cnt(const struct cntr_entry *entry,
3135 void *context, int vl, int mode,
3136 u64 data)
3137{
3138 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3139
3140 return dd->send_egress_err_status_cnt[57];
3141}
3142
3143static u64 access_tx_launch_fifo8_cor_err_cnt(const struct cntr_entry *entry,
3144 void *context, int vl, int mode,
3145 u64 data)
3146{
3147 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3148
3149 return dd->send_egress_err_status_cnt[56];
3150}
3151
3152static u64 access_tx_launch_fifo7_cor_err_cnt(const struct cntr_entry *entry,
3153 void *context, int vl, int mode,
3154 u64 data)
3155{
3156 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3157
3158 return dd->send_egress_err_status_cnt[55];
3159}
3160
3161static u64 access_tx_launch_fifo6_cor_err_cnt(const struct cntr_entry *entry,
3162 void *context, int vl, int mode,
3163 u64 data)
3164{
3165 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3166
3167 return dd->send_egress_err_status_cnt[54];
3168}
3169
3170static u64 access_tx_launch_fifo5_cor_err_cnt(const struct cntr_entry *entry,
3171 void *context, int vl, int mode,
3172 u64 data)
3173{
3174 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3175
3176 return dd->send_egress_err_status_cnt[53];
3177}
3178
3179static u64 access_tx_launch_fifo4_cor_err_cnt(const struct cntr_entry *entry,
3180 void *context, int vl, int mode,
3181 u64 data)
3182{
3183 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3184
3185 return dd->send_egress_err_status_cnt[52];
3186}
3187
3188static u64 access_tx_launch_fifo3_cor_err_cnt(const struct cntr_entry *entry,
3189 void *context, int vl, int mode,
3190 u64 data)
3191{
3192 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3193
3194 return dd->send_egress_err_status_cnt[51];
3195}
3196
3197static u64 access_tx_launch_fifo2_cor_err_cnt(const struct cntr_entry *entry,
3198 void *context, int vl, int mode,
3199 u64 data)
3200{
3201 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3202
3203 return dd->send_egress_err_status_cnt[50];
3204}
3205
3206static u64 access_tx_launch_fifo1_cor_err_cnt(const struct cntr_entry *entry,
3207 void *context, int vl, int mode,
3208 u64 data)
3209{
3210 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3211
3212 return dd->send_egress_err_status_cnt[49];
3213}
3214
3215static u64 access_tx_launch_fifo0_cor_err_cnt(const struct cntr_entry *entry,
3216 void *context, int vl, int mode,
3217 u64 data)
3218{
3219 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3220
3221 return dd->send_egress_err_status_cnt[48];
3222}
3223
3224static u64 access_tx_credit_return_vl_err_cnt(const struct cntr_entry *entry,
3225 void *context, int vl, int mode,
3226 u64 data)
3227{
3228 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3229
3230 return dd->send_egress_err_status_cnt[47];
3231}
3232
3233static u64 access_tx_hcrc_insertion_err_cnt(const struct cntr_entry *entry,
3234 void *context, int vl, int mode,
3235 u64 data)
3236{
3237 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3238
3239 return dd->send_egress_err_status_cnt[46];
3240}
3241
3242static u64 access_tx_egress_fifo_unc_err_cnt(const struct cntr_entry *entry,
3243 void *context, int vl, int mode,
3244 u64 data)
3245{
3246 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3247
3248 return dd->send_egress_err_status_cnt[45];
3249}
3250
3251static u64 access_tx_read_pio_memory_unc_err_cnt(const struct cntr_entry *entry,
3252 void *context, int vl,
3253 int mode, u64 data)
3254{
3255 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3256
3257 return dd->send_egress_err_status_cnt[44];
3258}
3259
3260static u64 access_tx_read_sdma_memory_unc_err_cnt(
3261 const struct cntr_entry *entry,
3262 void *context, int vl, int mode, u64 data)
3263{
3264 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3265
3266 return dd->send_egress_err_status_cnt[43];
3267}
3268
3269static u64 access_tx_sb_hdr_unc_err_cnt(const struct cntr_entry *entry,
3270 void *context, int vl, int mode,
3271 u64 data)
3272{
3273 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3274
3275 return dd->send_egress_err_status_cnt[42];
3276}
3277
3278static u64 access_tx_credit_return_partiy_err_cnt(
3279 const struct cntr_entry *entry,
3280 void *context, int vl, int mode, u64 data)
3281{
3282 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3283
3284 return dd->send_egress_err_status_cnt[41];
3285}
3286
3287static u64 access_tx_launch_fifo8_unc_or_parity_err_cnt(
3288 const struct cntr_entry *entry,
3289 void *context, int vl, int mode, u64 data)
3290{
3291 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3292
3293 return dd->send_egress_err_status_cnt[40];
3294}
3295
3296static u64 access_tx_launch_fifo7_unc_or_parity_err_cnt(
3297 const struct cntr_entry *entry,
3298 void *context, int vl, int mode, u64 data)
3299{
3300 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3301
3302 return dd->send_egress_err_status_cnt[39];
3303}
3304
3305static u64 access_tx_launch_fifo6_unc_or_parity_err_cnt(
3306 const struct cntr_entry *entry,
3307 void *context, int vl, int mode, u64 data)
3308{
3309 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3310
3311 return dd->send_egress_err_status_cnt[38];
3312}
3313
3314static u64 access_tx_launch_fifo5_unc_or_parity_err_cnt(
3315 const struct cntr_entry *entry,
3316 void *context, int vl, int mode, u64 data)
3317{
3318 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3319
3320 return dd->send_egress_err_status_cnt[37];
3321}
3322
3323static u64 access_tx_launch_fifo4_unc_or_parity_err_cnt(
3324 const struct cntr_entry *entry,
3325 void *context, int vl, int mode, u64 data)
3326{
3327 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3328
3329 return dd->send_egress_err_status_cnt[36];
3330}
3331
3332static u64 access_tx_launch_fifo3_unc_or_parity_err_cnt(
3333 const struct cntr_entry *entry,
3334 void *context, int vl, int mode, u64 data)
3335{
3336 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3337
3338 return dd->send_egress_err_status_cnt[35];
3339}
3340
3341static u64 access_tx_launch_fifo2_unc_or_parity_err_cnt(
3342 const struct cntr_entry *entry,
3343 void *context, int vl, int mode, u64 data)
3344{
3345 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3346
3347 return dd->send_egress_err_status_cnt[34];
3348}
3349
3350static u64 access_tx_launch_fifo1_unc_or_parity_err_cnt(
3351 const struct cntr_entry *entry,
3352 void *context, int vl, int mode, u64 data)
3353{
3354 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3355
3356 return dd->send_egress_err_status_cnt[33];
3357}
3358
3359static u64 access_tx_launch_fifo0_unc_or_parity_err_cnt(
3360 const struct cntr_entry *entry,
3361 void *context, int vl, int mode, u64 data)
3362{
3363 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3364
3365 return dd->send_egress_err_status_cnt[32];
3366}
3367
3368static u64 access_tx_sdma15_disallowed_packet_err_cnt(
3369 const struct cntr_entry *entry,
3370 void *context, int vl, int mode, u64 data)
3371{
3372 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3373
3374 return dd->send_egress_err_status_cnt[31];
3375}
3376
3377static u64 access_tx_sdma14_disallowed_packet_err_cnt(
3378 const struct cntr_entry *entry,
3379 void *context, int vl, int mode, u64 data)
3380{
3381 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3382
3383 return dd->send_egress_err_status_cnt[30];
3384}
3385
3386static u64 access_tx_sdma13_disallowed_packet_err_cnt(
3387 const struct cntr_entry *entry,
3388 void *context, int vl, int mode, u64 data)
3389{
3390 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3391
3392 return dd->send_egress_err_status_cnt[29];
3393}
3394
3395static u64 access_tx_sdma12_disallowed_packet_err_cnt(
3396 const struct cntr_entry *entry,
3397 void *context, int vl, int mode, u64 data)
3398{
3399 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3400
3401 return dd->send_egress_err_status_cnt[28];
3402}
3403
3404static u64 access_tx_sdma11_disallowed_packet_err_cnt(
3405 const struct cntr_entry *entry,
3406 void *context, int vl, int mode, u64 data)
3407{
3408 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3409
3410 return dd->send_egress_err_status_cnt[27];
3411}
3412
3413static u64 access_tx_sdma10_disallowed_packet_err_cnt(
3414 const struct cntr_entry *entry,
3415 void *context, int vl, int mode, u64 data)
3416{
3417 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3418
3419 return dd->send_egress_err_status_cnt[26];
3420}
3421
3422static u64 access_tx_sdma9_disallowed_packet_err_cnt(
3423 const struct cntr_entry *entry,
3424 void *context, int vl, int mode, u64 data)
3425{
3426 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3427
3428 return dd->send_egress_err_status_cnt[25];
3429}
3430
3431static u64 access_tx_sdma8_disallowed_packet_err_cnt(
3432 const struct cntr_entry *entry,
3433 void *context, int vl, int mode, u64 data)
3434{
3435 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3436
3437 return dd->send_egress_err_status_cnt[24];
3438}
3439
3440static u64 access_tx_sdma7_disallowed_packet_err_cnt(
3441 const struct cntr_entry *entry,
3442 void *context, int vl, int mode, u64 data)
3443{
3444 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3445
3446 return dd->send_egress_err_status_cnt[23];
3447}
3448
3449static u64 access_tx_sdma6_disallowed_packet_err_cnt(
3450 const struct cntr_entry *entry,
3451 void *context, int vl, int mode, u64 data)
3452{
3453 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3454
3455 return dd->send_egress_err_status_cnt[22];
3456}
3457
3458static u64 access_tx_sdma5_disallowed_packet_err_cnt(
3459 const struct cntr_entry *entry,
3460 void *context, int vl, int mode, u64 data)
3461{
3462 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3463
3464 return dd->send_egress_err_status_cnt[21];
3465}
3466
3467static u64 access_tx_sdma4_disallowed_packet_err_cnt(
3468 const struct cntr_entry *entry,
3469 void *context, int vl, int mode, u64 data)
3470{
3471 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3472
3473 return dd->send_egress_err_status_cnt[20];
3474}
3475
3476static u64 access_tx_sdma3_disallowed_packet_err_cnt(
3477 const struct cntr_entry *entry,
3478 void *context, int vl, int mode, u64 data)
3479{
3480 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3481
3482 return dd->send_egress_err_status_cnt[19];
3483}
3484
3485static u64 access_tx_sdma2_disallowed_packet_err_cnt(
3486 const struct cntr_entry *entry,
3487 void *context, int vl, int mode, u64 data)
3488{
3489 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3490
3491 return dd->send_egress_err_status_cnt[18];
3492}
3493
3494static u64 access_tx_sdma1_disallowed_packet_err_cnt(
3495 const struct cntr_entry *entry,
3496 void *context, int vl, int mode, u64 data)
3497{
3498 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3499
3500 return dd->send_egress_err_status_cnt[17];
3501}
3502
3503static u64 access_tx_sdma0_disallowed_packet_err_cnt(
3504 const struct cntr_entry *entry,
3505 void *context, int vl, int mode, u64 data)
3506{
3507 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3508
3509 return dd->send_egress_err_status_cnt[16];
3510}
3511
3512static u64 access_tx_config_parity_err_cnt(const struct cntr_entry *entry,
3513 void *context, int vl, int mode,
3514 u64 data)
3515{
3516 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3517
3518 return dd->send_egress_err_status_cnt[15];
3519}
3520
3521static u64 access_tx_sbrd_ctl_csr_parity_err_cnt(const struct cntr_entry *entry,
3522 void *context, int vl,
3523 int mode, u64 data)
3524{
3525 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3526
3527 return dd->send_egress_err_status_cnt[14];
3528}
3529
3530static u64 access_tx_launch_csr_parity_err_cnt(const struct cntr_entry *entry,
3531 void *context, int vl, int mode,
3532 u64 data)
3533{
3534 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3535
3536 return dd->send_egress_err_status_cnt[13];
3537}
3538
3539static u64 access_tx_illegal_vl_err_cnt(const struct cntr_entry *entry,
3540 void *context, int vl, int mode,
3541 u64 data)
3542{
3543 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3544
3545 return dd->send_egress_err_status_cnt[12];
3546}
3547
3548static u64 access_tx_sbrd_ctl_state_machine_parity_err_cnt(
3549 const struct cntr_entry *entry,
3550 void *context, int vl, int mode, u64 data)
3551{
3552 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3553
3554 return dd->send_egress_err_status_cnt[11];
3555}
3556
3557static u64 access_egress_reserved_10_err_cnt(const struct cntr_entry *entry,
3558 void *context, int vl, int mode,
3559 u64 data)
3560{
3561 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3562
3563 return dd->send_egress_err_status_cnt[10];
3564}
3565
3566static u64 access_egress_reserved_9_err_cnt(const struct cntr_entry *entry,
3567 void *context, int vl, int mode,
3568 u64 data)
3569{
3570 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3571
3572 return dd->send_egress_err_status_cnt[9];
3573}
3574
3575static u64 access_tx_sdma_launch_intf_parity_err_cnt(
3576 const struct cntr_entry *entry,
3577 void *context, int vl, int mode, u64 data)
3578{
3579 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3580
3581 return dd->send_egress_err_status_cnt[8];
3582}
3583
3584static u64 access_tx_pio_launch_intf_parity_err_cnt(
3585 const struct cntr_entry *entry,
3586 void *context, int vl, int mode, u64 data)
3587{
3588 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3589
3590 return dd->send_egress_err_status_cnt[7];
3591}
3592
3593static u64 access_egress_reserved_6_err_cnt(const struct cntr_entry *entry,
3594 void *context, int vl, int mode,
3595 u64 data)
3596{
3597 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3598
3599 return dd->send_egress_err_status_cnt[6];
3600}
3601
3602static u64 access_tx_incorrect_link_state_err_cnt(
3603 const struct cntr_entry *entry,
3604 void *context, int vl, int mode, u64 data)
3605{
3606 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3607
3608 return dd->send_egress_err_status_cnt[5];
3609}
3610
3611static u64 access_tx_linkdown_err_cnt(const struct cntr_entry *entry,
3612 void *context, int vl, int mode,
3613 u64 data)
3614{
3615 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3616
3617 return dd->send_egress_err_status_cnt[4];
3618}
3619
3620static u64 access_tx_egress_fifi_underrun_or_parity_err_cnt(
3621 const struct cntr_entry *entry,
3622 void *context, int vl, int mode, u64 data)
3623{
3624 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3625
3626 return dd->send_egress_err_status_cnt[3];
3627}
3628
3629static u64 access_egress_reserved_2_err_cnt(const struct cntr_entry *entry,
3630 void *context, int vl, int mode,
3631 u64 data)
3632{
3633 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3634
3635 return dd->send_egress_err_status_cnt[2];
3636}
3637
3638static u64 access_tx_pkt_integrity_mem_unc_err_cnt(
3639 const struct cntr_entry *entry,
3640 void *context, int vl, int mode, u64 data)
3641{
3642 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3643
3644 return dd->send_egress_err_status_cnt[1];
3645}
3646
3647static u64 access_tx_pkt_integrity_mem_cor_err_cnt(
3648 const struct cntr_entry *entry,
3649 void *context, int vl, int mode, u64 data)
3650{
3651 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3652
3653 return dd->send_egress_err_status_cnt[0];
3654}
3655
3656/*
3657 * Software counters corresponding to each of the
3658 * error status bits within SendErrStatus
3659 */
3660static u64 access_send_csr_write_bad_addr_err_cnt(
3661 const struct cntr_entry *entry,
3662 void *context, int vl, int mode, u64 data)
3663{
3664 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3665
3666 return dd->send_err_status_cnt[2];
3667}
3668
3669static u64 access_send_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
3670 void *context, int vl,
3671 int mode, u64 data)
3672{
3673 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3674
3675 return dd->send_err_status_cnt[1];
3676}
3677
3678static u64 access_send_csr_parity_cnt(const struct cntr_entry *entry,
3679 void *context, int vl, int mode,
3680 u64 data)
3681{
3682 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3683
3684 return dd->send_err_status_cnt[0];
3685}
3686
3687/*
3688 * Software counters corresponding to each of the
3689 * error status bits within SendCtxtErrStatus
3690 */
3691static u64 access_pio_write_out_of_bounds_err_cnt(
3692 const struct cntr_entry *entry,
3693 void *context, int vl, int mode, u64 data)
3694{
3695 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3696
3697 return dd->sw_ctxt_err_status_cnt[4];
3698}
3699
3700static u64 access_pio_write_overflow_err_cnt(const struct cntr_entry *entry,
3701 void *context, int vl, int mode,
3702 u64 data)
3703{
3704 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3705
3706 return dd->sw_ctxt_err_status_cnt[3];
3707}
3708
3709static u64 access_pio_write_crosses_boundary_err_cnt(
3710 const struct cntr_entry *entry,
3711 void *context, int vl, int mode, u64 data)
3712{
3713 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3714
3715 return dd->sw_ctxt_err_status_cnt[2];
3716}
3717
3718static u64 access_pio_disallowed_packet_err_cnt(const struct cntr_entry *entry,
3719 void *context, int vl,
3720 int mode, u64 data)
3721{
3722 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3723
3724 return dd->sw_ctxt_err_status_cnt[1];
3725}
3726
3727static u64 access_pio_inconsistent_sop_err_cnt(const struct cntr_entry *entry,
3728 void *context, int vl, int mode,
3729 u64 data)
3730{
3731 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3732
3733 return dd->sw_ctxt_err_status_cnt[0];
3734}
3735
3736/*
3737 * Software counters corresponding to each of the
3738 * error status bits within SendDmaEngErrStatus
3739 */
3740static u64 access_sdma_header_request_fifo_cor_err_cnt(
3741 const struct cntr_entry *entry,
3742 void *context, int vl, int mode, u64 data)
3743{
3744 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3745
3746 return dd->sw_send_dma_eng_err_status_cnt[23];
3747}
3748
3749static u64 access_sdma_header_storage_cor_err_cnt(
3750 const struct cntr_entry *entry,
3751 void *context, int vl, int mode, u64 data)
3752{
3753 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3754
3755 return dd->sw_send_dma_eng_err_status_cnt[22];
3756}
3757
3758static u64 access_sdma_packet_tracking_cor_err_cnt(
3759 const struct cntr_entry *entry,
3760 void *context, int vl, int mode, u64 data)
3761{
3762 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3763
3764 return dd->sw_send_dma_eng_err_status_cnt[21];
3765}
3766
3767static u64 access_sdma_assembly_cor_err_cnt(const struct cntr_entry *entry,
3768 void *context, int vl, int mode,
3769 u64 data)
3770{
3771 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3772
3773 return dd->sw_send_dma_eng_err_status_cnt[20];
3774}
3775
3776static u64 access_sdma_desc_table_cor_err_cnt(const struct cntr_entry *entry,
3777 void *context, int vl, int mode,
3778 u64 data)
3779{
3780 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3781
3782 return dd->sw_send_dma_eng_err_status_cnt[19];
3783}
3784
3785static u64 access_sdma_header_request_fifo_unc_err_cnt(
3786 const struct cntr_entry *entry,
3787 void *context, int vl, int mode, u64 data)
3788{
3789 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3790
3791 return dd->sw_send_dma_eng_err_status_cnt[18];
3792}
3793
3794static u64 access_sdma_header_storage_unc_err_cnt(
3795 const struct cntr_entry *entry,
3796 void *context, int vl, int mode, u64 data)
3797{
3798 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3799
3800 return dd->sw_send_dma_eng_err_status_cnt[17];
3801}
3802
3803static u64 access_sdma_packet_tracking_unc_err_cnt(
3804 const struct cntr_entry *entry,
3805 void *context, int vl, int mode, u64 data)
3806{
3807 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3808
3809 return dd->sw_send_dma_eng_err_status_cnt[16];
3810}
3811
3812static u64 access_sdma_assembly_unc_err_cnt(const struct cntr_entry *entry,
3813 void *context, int vl, int mode,
3814 u64 data)
3815{
3816 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3817
3818 return dd->sw_send_dma_eng_err_status_cnt[15];
3819}
3820
3821static u64 access_sdma_desc_table_unc_err_cnt(const struct cntr_entry *entry,
3822 void *context, int vl, int mode,
3823 u64 data)
3824{
3825 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3826
3827 return dd->sw_send_dma_eng_err_status_cnt[14];
3828}
3829
3830static u64 access_sdma_timeout_err_cnt(const struct cntr_entry *entry,
3831 void *context, int vl, int mode,
3832 u64 data)
3833{
3834 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3835
3836 return dd->sw_send_dma_eng_err_status_cnt[13];
3837}
3838
3839static u64 access_sdma_header_length_err_cnt(const struct cntr_entry *entry,
3840 void *context, int vl, int mode,
3841 u64 data)
3842{
3843 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3844
3845 return dd->sw_send_dma_eng_err_status_cnt[12];
3846}
3847
3848static u64 access_sdma_header_address_err_cnt(const struct cntr_entry *entry,
3849 void *context, int vl, int mode,
3850 u64 data)
3851{
3852 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3853
3854 return dd->sw_send_dma_eng_err_status_cnt[11];
3855}
3856
3857static u64 access_sdma_header_select_err_cnt(const struct cntr_entry *entry,
3858 void *context, int vl, int mode,
3859 u64 data)
3860{
3861 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3862
3863 return dd->sw_send_dma_eng_err_status_cnt[10];
3864}
3865
3866static u64 access_sdma_reserved_9_err_cnt(const struct cntr_entry *entry,
3867 void *context, int vl, int mode,
3868 u64 data)
3869{
3870 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3871
3872 return dd->sw_send_dma_eng_err_status_cnt[9];
3873}
3874
3875static u64 access_sdma_packet_desc_overflow_err_cnt(
3876 const struct cntr_entry *entry,
3877 void *context, int vl, int mode, u64 data)
3878{
3879 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3880
3881 return dd->sw_send_dma_eng_err_status_cnt[8];
3882}
3883
3884static u64 access_sdma_length_mismatch_err_cnt(const struct cntr_entry *entry,
3885 void *context, int vl,
3886 int mode, u64 data)
3887{
3888 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3889
3890 return dd->sw_send_dma_eng_err_status_cnt[7];
3891}
3892
3893static u64 access_sdma_halt_err_cnt(const struct cntr_entry *entry,
3894 void *context, int vl, int mode, u64 data)
3895{
3896 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3897
3898 return dd->sw_send_dma_eng_err_status_cnt[6];
3899}
3900
3901static u64 access_sdma_mem_read_err_cnt(const struct cntr_entry *entry,
3902 void *context, int vl, int mode,
3903 u64 data)
3904{
3905 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3906
3907 return dd->sw_send_dma_eng_err_status_cnt[5];
3908}
3909
3910static u64 access_sdma_first_desc_err_cnt(const struct cntr_entry *entry,
3911 void *context, int vl, int mode,
3912 u64 data)
3913{
3914 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3915
3916 return dd->sw_send_dma_eng_err_status_cnt[4];
3917}
3918
3919static u64 access_sdma_tail_out_of_bounds_err_cnt(
3920 const struct cntr_entry *entry,
3921 void *context, int vl, int mode, u64 data)
3922{
3923 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3924
3925 return dd->sw_send_dma_eng_err_status_cnt[3];
3926}
3927
3928static u64 access_sdma_too_long_err_cnt(const struct cntr_entry *entry,
3929 void *context, int vl, int mode,
3930 u64 data)
3931{
3932 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3933
3934 return dd->sw_send_dma_eng_err_status_cnt[2];
3935}
3936
3937static u64 access_sdma_gen_mismatch_err_cnt(const struct cntr_entry *entry,
3938 void *context, int vl, int mode,
3939 u64 data)
3940{
3941 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3942
3943 return dd->sw_send_dma_eng_err_status_cnt[1];
3944}
3945
3946static u64 access_sdma_wrong_dw_err_cnt(const struct cntr_entry *entry,
3947 void *context, int vl, int mode,
3948 u64 data)
3949{
3950 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3951
3952 return dd->sw_send_dma_eng_err_status_cnt[0];
3953}
3954
Jakub Pawlak2b719042016-07-01 16:01:22 -07003955static u64 access_dc_rcv_err_cnt(const struct cntr_entry *entry,
3956 void *context, int vl, int mode,
3957 u64 data)
3958{
3959 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3960
3961 u64 val = 0;
3962 u64 csr = entry->csr;
3963
3964 val = read_write_csr(dd, csr, mode, data);
3965 if (mode == CNTR_MODE_R) {
3966 val = val > CNTR_MAX - dd->sw_rcv_bypass_packet_errors ?
3967 CNTR_MAX : val + dd->sw_rcv_bypass_packet_errors;
3968 } else if (mode == CNTR_MODE_W) {
3969 dd->sw_rcv_bypass_packet_errors = 0;
3970 } else {
3971 dd_dev_err(dd, "Invalid cntr register access mode");
3972 return 0;
3973 }
3974 return val;
3975}
3976
Mike Marciniszyn77241052015-07-30 15:17:43 -04003977#define def_access_sw_cpu(cntr) \
3978static u64 access_sw_cpu_##cntr(const struct cntr_entry *entry, \
3979 void *context, int vl, int mode, u64 data) \
3980{ \
3981 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context; \
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08003982 return read_write_cpu(ppd->dd, &ppd->ibport_data.rvp.z_ ##cntr, \
3983 ppd->ibport_data.rvp.cntr, vl, \
Mike Marciniszyn77241052015-07-30 15:17:43 -04003984 mode, data); \
3985}
3986
3987def_access_sw_cpu(rc_acks);
3988def_access_sw_cpu(rc_qacks);
3989def_access_sw_cpu(rc_delayed_comp);
3990
3991#define def_access_ibp_counter(cntr) \
3992static u64 access_ibp_##cntr(const struct cntr_entry *entry, \
3993 void *context, int vl, int mode, u64 data) \
3994{ \
3995 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context; \
3996 \
3997 if (vl != CNTR_INVALID_VL) \
3998 return 0; \
3999 \
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08004000 return read_write_sw(ppd->dd, &ppd->ibport_data.rvp.n_ ##cntr, \
Mike Marciniszyn77241052015-07-30 15:17:43 -04004001 mode, data); \
4002}
4003
4004def_access_ibp_counter(loop_pkts);
4005def_access_ibp_counter(rc_resends);
4006def_access_ibp_counter(rnr_naks);
4007def_access_ibp_counter(other_naks);
4008def_access_ibp_counter(rc_timeouts);
4009def_access_ibp_counter(pkt_drops);
4010def_access_ibp_counter(dmawait);
4011def_access_ibp_counter(rc_seqnak);
4012def_access_ibp_counter(rc_dupreq);
4013def_access_ibp_counter(rdma_seq);
4014def_access_ibp_counter(unaligned);
4015def_access_ibp_counter(seq_naks);
4016
4017static struct cntr_entry dev_cntrs[DEV_CNTR_LAST] = {
4018[C_RCV_OVF] = RXE32_DEV_CNTR_ELEM(RcvOverflow, RCV_BUF_OVFL_CNT, CNTR_SYNTH),
4019[C_RX_TID_FULL] = RXE32_DEV_CNTR_ELEM(RxTIDFullEr, RCV_TID_FULL_ERR_CNT,
4020 CNTR_NORMAL),
4021[C_RX_TID_INVALID] = RXE32_DEV_CNTR_ELEM(RxTIDInvalid, RCV_TID_VALID_ERR_CNT,
4022 CNTR_NORMAL),
4023[C_RX_TID_FLGMS] = RXE32_DEV_CNTR_ELEM(RxTidFLGMs,
4024 RCV_TID_FLOW_GEN_MISMATCH_CNT,
4025 CNTR_NORMAL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004026[C_RX_CTX_EGRS] = RXE32_DEV_CNTR_ELEM(RxCtxEgrS, RCV_CONTEXT_EGR_STALL,
4027 CNTR_NORMAL),
4028[C_RCV_TID_FLSMS] = RXE32_DEV_CNTR_ELEM(RxTidFLSMs,
4029 RCV_TID_FLOW_SEQ_MISMATCH_CNT, CNTR_NORMAL),
4030[C_CCE_PCI_CR_ST] = CCE_PERF_DEV_CNTR_ELEM(CcePciCrSt,
4031 CCE_PCIE_POSTED_CRDT_STALL_CNT, CNTR_NORMAL),
4032[C_CCE_PCI_TR_ST] = CCE_PERF_DEV_CNTR_ELEM(CcePciTrSt, CCE_PCIE_TRGT_STALL_CNT,
4033 CNTR_NORMAL),
4034[C_CCE_PIO_WR_ST] = CCE_PERF_DEV_CNTR_ELEM(CcePioWrSt, CCE_PIO_WR_STALL_CNT,
4035 CNTR_NORMAL),
4036[C_CCE_ERR_INT] = CCE_INT_DEV_CNTR_ELEM(CceErrInt, CCE_ERR_INT_CNT,
4037 CNTR_NORMAL),
4038[C_CCE_SDMA_INT] = CCE_INT_DEV_CNTR_ELEM(CceSdmaInt, CCE_SDMA_INT_CNT,
4039 CNTR_NORMAL),
4040[C_CCE_MISC_INT] = CCE_INT_DEV_CNTR_ELEM(CceMiscInt, CCE_MISC_INT_CNT,
4041 CNTR_NORMAL),
4042[C_CCE_RCV_AV_INT] = CCE_INT_DEV_CNTR_ELEM(CceRcvAvInt, CCE_RCV_AVAIL_INT_CNT,
4043 CNTR_NORMAL),
4044[C_CCE_RCV_URG_INT] = CCE_INT_DEV_CNTR_ELEM(CceRcvUrgInt,
4045 CCE_RCV_URGENT_INT_CNT, CNTR_NORMAL),
4046[C_CCE_SEND_CR_INT] = CCE_INT_DEV_CNTR_ELEM(CceSndCrInt,
4047 CCE_SEND_CREDIT_INT_CNT, CNTR_NORMAL),
4048[C_DC_UNC_ERR] = DC_PERF_CNTR(DcUnctblErr, DCC_ERR_UNCORRECTABLE_CNT,
4049 CNTR_SYNTH),
Jakub Pawlak2b719042016-07-01 16:01:22 -07004050[C_DC_RCV_ERR] = CNTR_ELEM("DcRecvErr", DCC_ERR_PORTRCV_ERR_CNT, 0, CNTR_SYNTH,
4051 access_dc_rcv_err_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004052[C_DC_FM_CFG_ERR] = DC_PERF_CNTR(DcFmCfgErr, DCC_ERR_FMCONFIG_ERR_CNT,
4053 CNTR_SYNTH),
4054[C_DC_RMT_PHY_ERR] = DC_PERF_CNTR(DcRmtPhyErr, DCC_ERR_RCVREMOTE_PHY_ERR_CNT,
4055 CNTR_SYNTH),
4056[C_DC_DROPPED_PKT] = DC_PERF_CNTR(DcDroppedPkt, DCC_ERR_DROPPED_PKT_CNT,
4057 CNTR_SYNTH),
4058[C_DC_MC_XMIT_PKTS] = DC_PERF_CNTR(DcMcXmitPkts,
4059 DCC_PRF_PORT_XMIT_MULTICAST_CNT, CNTR_SYNTH),
4060[C_DC_MC_RCV_PKTS] = DC_PERF_CNTR(DcMcRcvPkts,
4061 DCC_PRF_PORT_RCV_MULTICAST_PKT_CNT,
4062 CNTR_SYNTH),
4063[C_DC_XMIT_CERR] = DC_PERF_CNTR(DcXmitCorr,
4064 DCC_PRF_PORT_XMIT_CORRECTABLE_CNT, CNTR_SYNTH),
4065[C_DC_RCV_CERR] = DC_PERF_CNTR(DcRcvCorrCnt, DCC_PRF_PORT_RCV_CORRECTABLE_CNT,
4066 CNTR_SYNTH),
4067[C_DC_RCV_FCC] = DC_PERF_CNTR(DcRxFCntl, DCC_PRF_RX_FLOW_CRTL_CNT,
4068 CNTR_SYNTH),
4069[C_DC_XMIT_FCC] = DC_PERF_CNTR(DcXmitFCntl, DCC_PRF_TX_FLOW_CRTL_CNT,
4070 CNTR_SYNTH),
4071[C_DC_XMIT_FLITS] = DC_PERF_CNTR(DcXmitFlits, DCC_PRF_PORT_XMIT_DATA_CNT,
4072 CNTR_SYNTH),
4073[C_DC_RCV_FLITS] = DC_PERF_CNTR(DcRcvFlits, DCC_PRF_PORT_RCV_DATA_CNT,
4074 CNTR_SYNTH),
4075[C_DC_XMIT_PKTS] = DC_PERF_CNTR(DcXmitPkts, DCC_PRF_PORT_XMIT_PKTS_CNT,
4076 CNTR_SYNTH),
4077[C_DC_RCV_PKTS] = DC_PERF_CNTR(DcRcvPkts, DCC_PRF_PORT_RCV_PKTS_CNT,
4078 CNTR_SYNTH),
4079[C_DC_RX_FLIT_VL] = DC_PERF_CNTR(DcRxFlitVl, DCC_PRF_PORT_VL_RCV_DATA_CNT,
4080 CNTR_SYNTH | CNTR_VL),
4081[C_DC_RX_PKT_VL] = DC_PERF_CNTR(DcRxPktVl, DCC_PRF_PORT_VL_RCV_PKTS_CNT,
4082 CNTR_SYNTH | CNTR_VL),
4083[C_DC_RCV_FCN] = DC_PERF_CNTR(DcRcvFcn, DCC_PRF_PORT_RCV_FECN_CNT, CNTR_SYNTH),
4084[C_DC_RCV_FCN_VL] = DC_PERF_CNTR(DcRcvFcnVl, DCC_PRF_PORT_VL_RCV_FECN_CNT,
4085 CNTR_SYNTH | CNTR_VL),
4086[C_DC_RCV_BCN] = DC_PERF_CNTR(DcRcvBcn, DCC_PRF_PORT_RCV_BECN_CNT, CNTR_SYNTH),
4087[C_DC_RCV_BCN_VL] = DC_PERF_CNTR(DcRcvBcnVl, DCC_PRF_PORT_VL_RCV_BECN_CNT,
4088 CNTR_SYNTH | CNTR_VL),
4089[C_DC_RCV_BBL] = DC_PERF_CNTR(DcRcvBbl, DCC_PRF_PORT_RCV_BUBBLE_CNT,
4090 CNTR_SYNTH),
4091[C_DC_RCV_BBL_VL] = DC_PERF_CNTR(DcRcvBblVl, DCC_PRF_PORT_VL_RCV_BUBBLE_CNT,
4092 CNTR_SYNTH | CNTR_VL),
4093[C_DC_MARK_FECN] = DC_PERF_CNTR(DcMarkFcn, DCC_PRF_PORT_MARK_FECN_CNT,
4094 CNTR_SYNTH),
4095[C_DC_MARK_FECN_VL] = DC_PERF_CNTR(DcMarkFcnVl, DCC_PRF_PORT_VL_MARK_FECN_CNT,
4096 CNTR_SYNTH | CNTR_VL),
4097[C_DC_TOTAL_CRC] =
4098 DC_PERF_CNTR_LCB(DcTotCrc, DC_LCB_ERR_INFO_TOTAL_CRC_ERR,
4099 CNTR_SYNTH),
4100[C_DC_CRC_LN0] = DC_PERF_CNTR_LCB(DcCrcLn0, DC_LCB_ERR_INFO_CRC_ERR_LN0,
4101 CNTR_SYNTH),
4102[C_DC_CRC_LN1] = DC_PERF_CNTR_LCB(DcCrcLn1, DC_LCB_ERR_INFO_CRC_ERR_LN1,
4103 CNTR_SYNTH),
4104[C_DC_CRC_LN2] = DC_PERF_CNTR_LCB(DcCrcLn2, DC_LCB_ERR_INFO_CRC_ERR_LN2,
4105 CNTR_SYNTH),
4106[C_DC_CRC_LN3] = DC_PERF_CNTR_LCB(DcCrcLn3, DC_LCB_ERR_INFO_CRC_ERR_LN3,
4107 CNTR_SYNTH),
4108[C_DC_CRC_MULT_LN] =
4109 DC_PERF_CNTR_LCB(DcMultLn, DC_LCB_ERR_INFO_CRC_ERR_MULTI_LN,
4110 CNTR_SYNTH),
4111[C_DC_TX_REPLAY] = DC_PERF_CNTR_LCB(DcTxReplay, DC_LCB_ERR_INFO_TX_REPLAY_CNT,
4112 CNTR_SYNTH),
4113[C_DC_RX_REPLAY] = DC_PERF_CNTR_LCB(DcRxReplay, DC_LCB_ERR_INFO_RX_REPLAY_CNT,
4114 CNTR_SYNTH),
4115[C_DC_SEQ_CRC_CNT] =
4116 DC_PERF_CNTR_LCB(DcLinkSeqCrc, DC_LCB_ERR_INFO_SEQ_CRC_CNT,
4117 CNTR_SYNTH),
4118[C_DC_ESC0_ONLY_CNT] =
4119 DC_PERF_CNTR_LCB(DcEsc0, DC_LCB_ERR_INFO_ESCAPE_0_ONLY_CNT,
4120 CNTR_SYNTH),
4121[C_DC_ESC0_PLUS1_CNT] =
4122 DC_PERF_CNTR_LCB(DcEsc1, DC_LCB_ERR_INFO_ESCAPE_0_PLUS1_CNT,
4123 CNTR_SYNTH),
4124[C_DC_ESC0_PLUS2_CNT] =
4125 DC_PERF_CNTR_LCB(DcEsc0Plus2, DC_LCB_ERR_INFO_ESCAPE_0_PLUS2_CNT,
4126 CNTR_SYNTH),
4127[C_DC_REINIT_FROM_PEER_CNT] =
4128 DC_PERF_CNTR_LCB(DcReinitPeer, DC_LCB_ERR_INFO_REINIT_FROM_PEER_CNT,
4129 CNTR_SYNTH),
4130[C_DC_SBE_CNT] = DC_PERF_CNTR_LCB(DcSbe, DC_LCB_ERR_INFO_SBE_CNT,
4131 CNTR_SYNTH),
4132[C_DC_MISC_FLG_CNT] =
4133 DC_PERF_CNTR_LCB(DcMiscFlg, DC_LCB_ERR_INFO_MISC_FLG_CNT,
4134 CNTR_SYNTH),
4135[C_DC_PRF_GOOD_LTP_CNT] =
4136 DC_PERF_CNTR_LCB(DcGoodLTP, DC_LCB_PRF_GOOD_LTP_CNT, CNTR_SYNTH),
4137[C_DC_PRF_ACCEPTED_LTP_CNT] =
4138 DC_PERF_CNTR_LCB(DcAccLTP, DC_LCB_PRF_ACCEPTED_LTP_CNT,
4139 CNTR_SYNTH),
4140[C_DC_PRF_RX_FLIT_CNT] =
4141 DC_PERF_CNTR_LCB(DcPrfRxFlit, DC_LCB_PRF_RX_FLIT_CNT, CNTR_SYNTH),
4142[C_DC_PRF_TX_FLIT_CNT] =
4143 DC_PERF_CNTR_LCB(DcPrfTxFlit, DC_LCB_PRF_TX_FLIT_CNT, CNTR_SYNTH),
4144[C_DC_PRF_CLK_CNTR] =
4145 DC_PERF_CNTR_LCB(DcPrfClk, DC_LCB_PRF_CLK_CNTR, CNTR_SYNTH),
4146[C_DC_PG_DBG_FLIT_CRDTS_CNT] =
4147 DC_PERF_CNTR_LCB(DcFltCrdts, DC_LCB_PG_DBG_FLIT_CRDTS_CNT, CNTR_SYNTH),
4148[C_DC_PG_STS_PAUSE_COMPLETE_CNT] =
4149 DC_PERF_CNTR_LCB(DcPauseComp, DC_LCB_PG_STS_PAUSE_COMPLETE_CNT,
4150 CNTR_SYNTH),
4151[C_DC_PG_STS_TX_SBE_CNT] =
4152 DC_PERF_CNTR_LCB(DcStsTxSbe, DC_LCB_PG_STS_TX_SBE_CNT, CNTR_SYNTH),
4153[C_DC_PG_STS_TX_MBE_CNT] =
4154 DC_PERF_CNTR_LCB(DcStsTxMbe, DC_LCB_PG_STS_TX_MBE_CNT,
4155 CNTR_SYNTH),
4156[C_SW_CPU_INTR] = CNTR_ELEM("Intr", 0, 0, CNTR_NORMAL,
4157 access_sw_cpu_intr),
4158[C_SW_CPU_RCV_LIM] = CNTR_ELEM("RcvLimit", 0, 0, CNTR_NORMAL,
4159 access_sw_cpu_rcv_limit),
4160[C_SW_VTX_WAIT] = CNTR_ELEM("vTxWait", 0, 0, CNTR_NORMAL,
4161 access_sw_vtx_wait),
4162[C_SW_PIO_WAIT] = CNTR_ELEM("PioWait", 0, 0, CNTR_NORMAL,
4163 access_sw_pio_wait),
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08004164[C_SW_PIO_DRAIN] = CNTR_ELEM("PioDrain", 0, 0, CNTR_NORMAL,
4165 access_sw_pio_drain),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004166[C_SW_KMEM_WAIT] = CNTR_ELEM("KmemWait", 0, 0, CNTR_NORMAL,
4167 access_sw_kmem_wait),
Dean Luickb4219222015-10-26 10:28:35 -04004168[C_SW_SEND_SCHED] = CNTR_ELEM("SendSched", 0, 0, CNTR_NORMAL,
4169 access_sw_send_schedule),
Vennila Megavannana699c6c2016-01-11 18:30:56 -05004170[C_SDMA_DESC_FETCHED_CNT] = CNTR_ELEM("SDEDscFdCn",
4171 SEND_DMA_DESC_FETCHED_CNT, 0,
4172 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4173 dev_access_u32_csr),
4174[C_SDMA_INT_CNT] = CNTR_ELEM("SDMAInt", 0, 0,
4175 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4176 access_sde_int_cnt),
4177[C_SDMA_ERR_CNT] = CNTR_ELEM("SDMAErrCt", 0, 0,
4178 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4179 access_sde_err_cnt),
4180[C_SDMA_IDLE_INT_CNT] = CNTR_ELEM("SDMAIdInt", 0, 0,
4181 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4182 access_sde_idle_int_cnt),
4183[C_SDMA_PROGRESS_INT_CNT] = CNTR_ELEM("SDMAPrIntCn", 0, 0,
4184 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4185 access_sde_progress_int_cnt),
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05004186/* MISC_ERR_STATUS */
4187[C_MISC_PLL_LOCK_FAIL_ERR] = CNTR_ELEM("MISC_PLL_LOCK_FAIL_ERR", 0, 0,
4188 CNTR_NORMAL,
4189 access_misc_pll_lock_fail_err_cnt),
4190[C_MISC_MBIST_FAIL_ERR] = CNTR_ELEM("MISC_MBIST_FAIL_ERR", 0, 0,
4191 CNTR_NORMAL,
4192 access_misc_mbist_fail_err_cnt),
4193[C_MISC_INVALID_EEP_CMD_ERR] = CNTR_ELEM("MISC_INVALID_EEP_CMD_ERR", 0, 0,
4194 CNTR_NORMAL,
4195 access_misc_invalid_eep_cmd_err_cnt),
4196[C_MISC_EFUSE_DONE_PARITY_ERR] = CNTR_ELEM("MISC_EFUSE_DONE_PARITY_ERR", 0, 0,
4197 CNTR_NORMAL,
4198 access_misc_efuse_done_parity_err_cnt),
4199[C_MISC_EFUSE_WRITE_ERR] = CNTR_ELEM("MISC_EFUSE_WRITE_ERR", 0, 0,
4200 CNTR_NORMAL,
4201 access_misc_efuse_write_err_cnt),
4202[C_MISC_EFUSE_READ_BAD_ADDR_ERR] = CNTR_ELEM("MISC_EFUSE_READ_BAD_ADDR_ERR", 0,
4203 0, CNTR_NORMAL,
4204 access_misc_efuse_read_bad_addr_err_cnt),
4205[C_MISC_EFUSE_CSR_PARITY_ERR] = CNTR_ELEM("MISC_EFUSE_CSR_PARITY_ERR", 0, 0,
4206 CNTR_NORMAL,
4207 access_misc_efuse_csr_parity_err_cnt),
4208[C_MISC_FW_AUTH_FAILED_ERR] = CNTR_ELEM("MISC_FW_AUTH_FAILED_ERR", 0, 0,
4209 CNTR_NORMAL,
4210 access_misc_fw_auth_failed_err_cnt),
4211[C_MISC_KEY_MISMATCH_ERR] = CNTR_ELEM("MISC_KEY_MISMATCH_ERR", 0, 0,
4212 CNTR_NORMAL,
4213 access_misc_key_mismatch_err_cnt),
4214[C_MISC_SBUS_WRITE_FAILED_ERR] = CNTR_ELEM("MISC_SBUS_WRITE_FAILED_ERR", 0, 0,
4215 CNTR_NORMAL,
4216 access_misc_sbus_write_failed_err_cnt),
4217[C_MISC_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("MISC_CSR_WRITE_BAD_ADDR_ERR", 0, 0,
4218 CNTR_NORMAL,
4219 access_misc_csr_write_bad_addr_err_cnt),
4220[C_MISC_CSR_READ_BAD_ADDR_ERR] = CNTR_ELEM("MISC_CSR_READ_BAD_ADDR_ERR", 0, 0,
4221 CNTR_NORMAL,
4222 access_misc_csr_read_bad_addr_err_cnt),
4223[C_MISC_CSR_PARITY_ERR] = CNTR_ELEM("MISC_CSR_PARITY_ERR", 0, 0,
4224 CNTR_NORMAL,
4225 access_misc_csr_parity_err_cnt),
4226/* CceErrStatus */
4227[C_CCE_ERR_STATUS_AGGREGATED_CNT] = CNTR_ELEM("CceErrStatusAggregatedCnt", 0, 0,
4228 CNTR_NORMAL,
4229 access_sw_cce_err_status_aggregated_cnt),
4230[C_CCE_MSIX_CSR_PARITY_ERR] = CNTR_ELEM("CceMsixCsrParityErr", 0, 0,
4231 CNTR_NORMAL,
4232 access_cce_msix_csr_parity_err_cnt),
4233[C_CCE_INT_MAP_UNC_ERR] = CNTR_ELEM("CceIntMapUncErr", 0, 0,
4234 CNTR_NORMAL,
4235 access_cce_int_map_unc_err_cnt),
4236[C_CCE_INT_MAP_COR_ERR] = CNTR_ELEM("CceIntMapCorErr", 0, 0,
4237 CNTR_NORMAL,
4238 access_cce_int_map_cor_err_cnt),
4239[C_CCE_MSIX_TABLE_UNC_ERR] = CNTR_ELEM("CceMsixTableUncErr", 0, 0,
4240 CNTR_NORMAL,
4241 access_cce_msix_table_unc_err_cnt),
4242[C_CCE_MSIX_TABLE_COR_ERR] = CNTR_ELEM("CceMsixTableCorErr", 0, 0,
4243 CNTR_NORMAL,
4244 access_cce_msix_table_cor_err_cnt),
4245[C_CCE_RXDMA_CONV_FIFO_PARITY_ERR] = CNTR_ELEM("CceRxdmaConvFifoParityErr", 0,
4246 0, CNTR_NORMAL,
4247 access_cce_rxdma_conv_fifo_parity_err_cnt),
4248[C_CCE_RCPL_ASYNC_FIFO_PARITY_ERR] = CNTR_ELEM("CceRcplAsyncFifoParityErr", 0,
4249 0, CNTR_NORMAL,
4250 access_cce_rcpl_async_fifo_parity_err_cnt),
4251[C_CCE_SEG_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("CceSegWriteBadAddrErr", 0, 0,
4252 CNTR_NORMAL,
4253 access_cce_seg_write_bad_addr_err_cnt),
4254[C_CCE_SEG_READ_BAD_ADDR_ERR] = CNTR_ELEM("CceSegReadBadAddrErr", 0, 0,
4255 CNTR_NORMAL,
4256 access_cce_seg_read_bad_addr_err_cnt),
4257[C_LA_TRIGGERED] = CNTR_ELEM("Cce LATriggered", 0, 0,
4258 CNTR_NORMAL,
4259 access_la_triggered_cnt),
4260[C_CCE_TRGT_CPL_TIMEOUT_ERR] = CNTR_ELEM("CceTrgtCplTimeoutErr", 0, 0,
4261 CNTR_NORMAL,
4262 access_cce_trgt_cpl_timeout_err_cnt),
4263[C_PCIC_RECEIVE_PARITY_ERR] = CNTR_ELEM("PcicReceiveParityErr", 0, 0,
4264 CNTR_NORMAL,
4265 access_pcic_receive_parity_err_cnt),
4266[C_PCIC_TRANSMIT_BACK_PARITY_ERR] = CNTR_ELEM("PcicTransmitBackParityErr", 0, 0,
4267 CNTR_NORMAL,
4268 access_pcic_transmit_back_parity_err_cnt),
4269[C_PCIC_TRANSMIT_FRONT_PARITY_ERR] = CNTR_ELEM("PcicTransmitFrontParityErr", 0,
4270 0, CNTR_NORMAL,
4271 access_pcic_transmit_front_parity_err_cnt),
4272[C_PCIC_CPL_DAT_Q_UNC_ERR] = CNTR_ELEM("PcicCplDatQUncErr", 0, 0,
4273 CNTR_NORMAL,
4274 access_pcic_cpl_dat_q_unc_err_cnt),
4275[C_PCIC_CPL_HD_Q_UNC_ERR] = CNTR_ELEM("PcicCplHdQUncErr", 0, 0,
4276 CNTR_NORMAL,
4277 access_pcic_cpl_hd_q_unc_err_cnt),
4278[C_PCIC_POST_DAT_Q_UNC_ERR] = CNTR_ELEM("PcicPostDatQUncErr", 0, 0,
4279 CNTR_NORMAL,
4280 access_pcic_post_dat_q_unc_err_cnt),
4281[C_PCIC_POST_HD_Q_UNC_ERR] = CNTR_ELEM("PcicPostHdQUncErr", 0, 0,
4282 CNTR_NORMAL,
4283 access_pcic_post_hd_q_unc_err_cnt),
4284[C_PCIC_RETRY_SOT_MEM_UNC_ERR] = CNTR_ELEM("PcicRetrySotMemUncErr", 0, 0,
4285 CNTR_NORMAL,
4286 access_pcic_retry_sot_mem_unc_err_cnt),
4287[C_PCIC_RETRY_MEM_UNC_ERR] = CNTR_ELEM("PcicRetryMemUncErr", 0, 0,
4288 CNTR_NORMAL,
4289 access_pcic_retry_mem_unc_err),
4290[C_PCIC_N_POST_DAT_Q_PARITY_ERR] = CNTR_ELEM("PcicNPostDatQParityErr", 0, 0,
4291 CNTR_NORMAL,
4292 access_pcic_n_post_dat_q_parity_err_cnt),
4293[C_PCIC_N_POST_H_Q_PARITY_ERR] = CNTR_ELEM("PcicNPostHQParityErr", 0, 0,
4294 CNTR_NORMAL,
4295 access_pcic_n_post_h_q_parity_err_cnt),
4296[C_PCIC_CPL_DAT_Q_COR_ERR] = CNTR_ELEM("PcicCplDatQCorErr", 0, 0,
4297 CNTR_NORMAL,
4298 access_pcic_cpl_dat_q_cor_err_cnt),
4299[C_PCIC_CPL_HD_Q_COR_ERR] = CNTR_ELEM("PcicCplHdQCorErr", 0, 0,
4300 CNTR_NORMAL,
4301 access_pcic_cpl_hd_q_cor_err_cnt),
4302[C_PCIC_POST_DAT_Q_COR_ERR] = CNTR_ELEM("PcicPostDatQCorErr", 0, 0,
4303 CNTR_NORMAL,
4304 access_pcic_post_dat_q_cor_err_cnt),
4305[C_PCIC_POST_HD_Q_COR_ERR] = CNTR_ELEM("PcicPostHdQCorErr", 0, 0,
4306 CNTR_NORMAL,
4307 access_pcic_post_hd_q_cor_err_cnt),
4308[C_PCIC_RETRY_SOT_MEM_COR_ERR] = CNTR_ELEM("PcicRetrySotMemCorErr", 0, 0,
4309 CNTR_NORMAL,
4310 access_pcic_retry_sot_mem_cor_err_cnt),
4311[C_PCIC_RETRY_MEM_COR_ERR] = CNTR_ELEM("PcicRetryMemCorErr", 0, 0,
4312 CNTR_NORMAL,
4313 access_pcic_retry_mem_cor_err_cnt),
4314[C_CCE_CLI1_ASYNC_FIFO_DBG_PARITY_ERR] = CNTR_ELEM(
4315 "CceCli1AsyncFifoDbgParityError", 0, 0,
4316 CNTR_NORMAL,
4317 access_cce_cli1_async_fifo_dbg_parity_err_cnt),
4318[C_CCE_CLI1_ASYNC_FIFO_RXDMA_PARITY_ERR] = CNTR_ELEM(
4319 "CceCli1AsyncFifoRxdmaParityError", 0, 0,
4320 CNTR_NORMAL,
4321 access_cce_cli1_async_fifo_rxdma_parity_err_cnt
4322 ),
4323[C_CCE_CLI1_ASYNC_FIFO_SDMA_HD_PARITY_ERR] = CNTR_ELEM(
4324 "CceCli1AsyncFifoSdmaHdParityErr", 0, 0,
4325 CNTR_NORMAL,
4326 access_cce_cli1_async_fifo_sdma_hd_parity_err_cnt),
4327[C_CCE_CLI1_ASYNC_FIFO_PIO_CRDT_PARITY_ERR] = CNTR_ELEM(
4328 "CceCli1AsyncFifoPioCrdtParityErr", 0, 0,
4329 CNTR_NORMAL,
4330 access_cce_cl1_async_fifo_pio_crdt_parity_err_cnt),
4331[C_CCE_CLI2_ASYNC_FIFO_PARITY_ERR] = CNTR_ELEM("CceCli2AsyncFifoParityErr", 0,
4332 0, CNTR_NORMAL,
4333 access_cce_cli2_async_fifo_parity_err_cnt),
4334[C_CCE_CSR_CFG_BUS_PARITY_ERR] = CNTR_ELEM("CceCsrCfgBusParityErr", 0, 0,
4335 CNTR_NORMAL,
4336 access_cce_csr_cfg_bus_parity_err_cnt),
4337[C_CCE_CLI0_ASYNC_FIFO_PARTIY_ERR] = CNTR_ELEM("CceCli0AsyncFifoParityErr", 0,
4338 0, CNTR_NORMAL,
4339 access_cce_cli0_async_fifo_parity_err_cnt),
4340[C_CCE_RSPD_DATA_PARITY_ERR] = CNTR_ELEM("CceRspdDataParityErr", 0, 0,
4341 CNTR_NORMAL,
4342 access_cce_rspd_data_parity_err_cnt),
4343[C_CCE_TRGT_ACCESS_ERR] = CNTR_ELEM("CceTrgtAccessErr", 0, 0,
4344 CNTR_NORMAL,
4345 access_cce_trgt_access_err_cnt),
4346[C_CCE_TRGT_ASYNC_FIFO_PARITY_ERR] = CNTR_ELEM("CceTrgtAsyncFifoParityErr", 0,
4347 0, CNTR_NORMAL,
4348 access_cce_trgt_async_fifo_parity_err_cnt),
4349[C_CCE_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("CceCsrWriteBadAddrErr", 0, 0,
4350 CNTR_NORMAL,
4351 access_cce_csr_write_bad_addr_err_cnt),
4352[C_CCE_CSR_READ_BAD_ADDR_ERR] = CNTR_ELEM("CceCsrReadBadAddrErr", 0, 0,
4353 CNTR_NORMAL,
4354 access_cce_csr_read_bad_addr_err_cnt),
4355[C_CCE_CSR_PARITY_ERR] = CNTR_ELEM("CceCsrParityErr", 0, 0,
4356 CNTR_NORMAL,
4357 access_ccs_csr_parity_err_cnt),
4358
4359/* RcvErrStatus */
4360[C_RX_CSR_PARITY_ERR] = CNTR_ELEM("RxCsrParityErr", 0, 0,
4361 CNTR_NORMAL,
4362 access_rx_csr_parity_err_cnt),
4363[C_RX_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("RxCsrWriteBadAddrErr", 0, 0,
4364 CNTR_NORMAL,
4365 access_rx_csr_write_bad_addr_err_cnt),
4366[C_RX_CSR_READ_BAD_ADDR_ERR] = CNTR_ELEM("RxCsrReadBadAddrErr", 0, 0,
4367 CNTR_NORMAL,
4368 access_rx_csr_read_bad_addr_err_cnt),
4369[C_RX_DMA_CSR_UNC_ERR] = CNTR_ELEM("RxDmaCsrUncErr", 0, 0,
4370 CNTR_NORMAL,
4371 access_rx_dma_csr_unc_err_cnt),
4372[C_RX_DMA_DQ_FSM_ENCODING_ERR] = CNTR_ELEM("RxDmaDqFsmEncodingErr", 0, 0,
4373 CNTR_NORMAL,
4374 access_rx_dma_dq_fsm_encoding_err_cnt),
4375[C_RX_DMA_EQ_FSM_ENCODING_ERR] = CNTR_ELEM("RxDmaEqFsmEncodingErr", 0, 0,
4376 CNTR_NORMAL,
4377 access_rx_dma_eq_fsm_encoding_err_cnt),
4378[C_RX_DMA_CSR_PARITY_ERR] = CNTR_ELEM("RxDmaCsrParityErr", 0, 0,
4379 CNTR_NORMAL,
4380 access_rx_dma_csr_parity_err_cnt),
4381[C_RX_RBUF_DATA_COR_ERR] = CNTR_ELEM("RxRbufDataCorErr", 0, 0,
4382 CNTR_NORMAL,
4383 access_rx_rbuf_data_cor_err_cnt),
4384[C_RX_RBUF_DATA_UNC_ERR] = CNTR_ELEM("RxRbufDataUncErr", 0, 0,
4385 CNTR_NORMAL,
4386 access_rx_rbuf_data_unc_err_cnt),
4387[C_RX_DMA_DATA_FIFO_RD_COR_ERR] = CNTR_ELEM("RxDmaDataFifoRdCorErr", 0, 0,
4388 CNTR_NORMAL,
4389 access_rx_dma_data_fifo_rd_cor_err_cnt),
4390[C_RX_DMA_DATA_FIFO_RD_UNC_ERR] = CNTR_ELEM("RxDmaDataFifoRdUncErr", 0, 0,
4391 CNTR_NORMAL,
4392 access_rx_dma_data_fifo_rd_unc_err_cnt),
4393[C_RX_DMA_HDR_FIFO_RD_COR_ERR] = CNTR_ELEM("RxDmaHdrFifoRdCorErr", 0, 0,
4394 CNTR_NORMAL,
4395 access_rx_dma_hdr_fifo_rd_cor_err_cnt),
4396[C_RX_DMA_HDR_FIFO_RD_UNC_ERR] = CNTR_ELEM("RxDmaHdrFifoRdUncErr", 0, 0,
4397 CNTR_NORMAL,
4398 access_rx_dma_hdr_fifo_rd_unc_err_cnt),
4399[C_RX_RBUF_DESC_PART2_COR_ERR] = CNTR_ELEM("RxRbufDescPart2CorErr", 0, 0,
4400 CNTR_NORMAL,
4401 access_rx_rbuf_desc_part2_cor_err_cnt),
4402[C_RX_RBUF_DESC_PART2_UNC_ERR] = CNTR_ELEM("RxRbufDescPart2UncErr", 0, 0,
4403 CNTR_NORMAL,
4404 access_rx_rbuf_desc_part2_unc_err_cnt),
4405[C_RX_RBUF_DESC_PART1_COR_ERR] = CNTR_ELEM("RxRbufDescPart1CorErr", 0, 0,
4406 CNTR_NORMAL,
4407 access_rx_rbuf_desc_part1_cor_err_cnt),
4408[C_RX_RBUF_DESC_PART1_UNC_ERR] = CNTR_ELEM("RxRbufDescPart1UncErr", 0, 0,
4409 CNTR_NORMAL,
4410 access_rx_rbuf_desc_part1_unc_err_cnt),
4411[C_RX_HQ_INTR_FSM_ERR] = CNTR_ELEM("RxHqIntrFsmErr", 0, 0,
4412 CNTR_NORMAL,
4413 access_rx_hq_intr_fsm_err_cnt),
4414[C_RX_HQ_INTR_CSR_PARITY_ERR] = CNTR_ELEM("RxHqIntrCsrParityErr", 0, 0,
4415 CNTR_NORMAL,
4416 access_rx_hq_intr_csr_parity_err_cnt),
4417[C_RX_LOOKUP_CSR_PARITY_ERR] = CNTR_ELEM("RxLookupCsrParityErr", 0, 0,
4418 CNTR_NORMAL,
4419 access_rx_lookup_csr_parity_err_cnt),
4420[C_RX_LOOKUP_RCV_ARRAY_COR_ERR] = CNTR_ELEM("RxLookupRcvArrayCorErr", 0, 0,
4421 CNTR_NORMAL,
4422 access_rx_lookup_rcv_array_cor_err_cnt),
4423[C_RX_LOOKUP_RCV_ARRAY_UNC_ERR] = CNTR_ELEM("RxLookupRcvArrayUncErr", 0, 0,
4424 CNTR_NORMAL,
4425 access_rx_lookup_rcv_array_unc_err_cnt),
4426[C_RX_LOOKUP_DES_PART2_PARITY_ERR] = CNTR_ELEM("RxLookupDesPart2ParityErr", 0,
4427 0, CNTR_NORMAL,
4428 access_rx_lookup_des_part2_parity_err_cnt),
4429[C_RX_LOOKUP_DES_PART1_UNC_COR_ERR] = CNTR_ELEM("RxLookupDesPart1UncCorErr", 0,
4430 0, CNTR_NORMAL,
4431 access_rx_lookup_des_part1_unc_cor_err_cnt),
4432[C_RX_LOOKUP_DES_PART1_UNC_ERR] = CNTR_ELEM("RxLookupDesPart1UncErr", 0, 0,
4433 CNTR_NORMAL,
4434 access_rx_lookup_des_part1_unc_err_cnt),
4435[C_RX_RBUF_NEXT_FREE_BUF_COR_ERR] = CNTR_ELEM("RxRbufNextFreeBufCorErr", 0, 0,
4436 CNTR_NORMAL,
4437 access_rx_rbuf_next_free_buf_cor_err_cnt),
4438[C_RX_RBUF_NEXT_FREE_BUF_UNC_ERR] = CNTR_ELEM("RxRbufNextFreeBufUncErr", 0, 0,
4439 CNTR_NORMAL,
4440 access_rx_rbuf_next_free_buf_unc_err_cnt),
4441[C_RX_RBUF_FL_INIT_WR_ADDR_PARITY_ERR] = CNTR_ELEM(
4442 "RxRbufFlInitWrAddrParityErr", 0, 0,
4443 CNTR_NORMAL,
4444 access_rbuf_fl_init_wr_addr_parity_err_cnt),
4445[C_RX_RBUF_FL_INITDONE_PARITY_ERR] = CNTR_ELEM("RxRbufFlInitdoneParityErr", 0,
4446 0, CNTR_NORMAL,
4447 access_rx_rbuf_fl_initdone_parity_err_cnt),
4448[C_RX_RBUF_FL_WRITE_ADDR_PARITY_ERR] = CNTR_ELEM("RxRbufFlWrAddrParityErr", 0,
4449 0, CNTR_NORMAL,
4450 access_rx_rbuf_fl_write_addr_parity_err_cnt),
4451[C_RX_RBUF_FL_RD_ADDR_PARITY_ERR] = CNTR_ELEM("RxRbufFlRdAddrParityErr", 0, 0,
4452 CNTR_NORMAL,
4453 access_rx_rbuf_fl_rd_addr_parity_err_cnt),
4454[C_RX_RBUF_EMPTY_ERR] = CNTR_ELEM("RxRbufEmptyErr", 0, 0,
4455 CNTR_NORMAL,
4456 access_rx_rbuf_empty_err_cnt),
4457[C_RX_RBUF_FULL_ERR] = CNTR_ELEM("RxRbufFullErr", 0, 0,
4458 CNTR_NORMAL,
4459 access_rx_rbuf_full_err_cnt),
4460[C_RX_RBUF_BAD_LOOKUP_ERR] = CNTR_ELEM("RxRBufBadLookupErr", 0, 0,
4461 CNTR_NORMAL,
4462 access_rbuf_bad_lookup_err_cnt),
4463[C_RX_RBUF_CTX_ID_PARITY_ERR] = CNTR_ELEM("RxRbufCtxIdParityErr", 0, 0,
4464 CNTR_NORMAL,
4465 access_rbuf_ctx_id_parity_err_cnt),
4466[C_RX_RBUF_CSR_QEOPDW_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQEOPDWParityErr", 0, 0,
4467 CNTR_NORMAL,
4468 access_rbuf_csr_qeopdw_parity_err_cnt),
4469[C_RX_RBUF_CSR_Q_NUM_OF_PKT_PARITY_ERR] = CNTR_ELEM(
4470 "RxRbufCsrQNumOfPktParityErr", 0, 0,
4471 CNTR_NORMAL,
4472 access_rx_rbuf_csr_q_num_of_pkt_parity_err_cnt),
4473[C_RX_RBUF_CSR_Q_T1_PTR_PARITY_ERR] = CNTR_ELEM(
4474 "RxRbufCsrQTlPtrParityErr", 0, 0,
4475 CNTR_NORMAL,
4476 access_rx_rbuf_csr_q_t1_ptr_parity_err_cnt),
4477[C_RX_RBUF_CSR_Q_HD_PTR_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQHdPtrParityErr", 0,
4478 0, CNTR_NORMAL,
4479 access_rx_rbuf_csr_q_hd_ptr_parity_err_cnt),
4480[C_RX_RBUF_CSR_Q_VLD_BIT_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQVldBitParityErr", 0,
4481 0, CNTR_NORMAL,
4482 access_rx_rbuf_csr_q_vld_bit_parity_err_cnt),
4483[C_RX_RBUF_CSR_Q_NEXT_BUF_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQNextBufParityErr",
4484 0, 0, CNTR_NORMAL,
4485 access_rx_rbuf_csr_q_next_buf_parity_err_cnt),
4486[C_RX_RBUF_CSR_Q_ENT_CNT_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQEntCntParityErr", 0,
4487 0, CNTR_NORMAL,
4488 access_rx_rbuf_csr_q_ent_cnt_parity_err_cnt),
4489[C_RX_RBUF_CSR_Q_HEAD_BUF_NUM_PARITY_ERR] = CNTR_ELEM(
4490 "RxRbufCsrQHeadBufNumParityErr", 0, 0,
4491 CNTR_NORMAL,
4492 access_rx_rbuf_csr_q_head_buf_num_parity_err_cnt),
4493[C_RX_RBUF_BLOCK_LIST_READ_COR_ERR] = CNTR_ELEM("RxRbufBlockListReadCorErr", 0,
4494 0, CNTR_NORMAL,
4495 access_rx_rbuf_block_list_read_cor_err_cnt),
4496[C_RX_RBUF_BLOCK_LIST_READ_UNC_ERR] = CNTR_ELEM("RxRbufBlockListReadUncErr", 0,
4497 0, CNTR_NORMAL,
4498 access_rx_rbuf_block_list_read_unc_err_cnt),
4499[C_RX_RBUF_LOOKUP_DES_COR_ERR] = CNTR_ELEM("RxRbufLookupDesCorErr", 0, 0,
4500 CNTR_NORMAL,
4501 access_rx_rbuf_lookup_des_cor_err_cnt),
4502[C_RX_RBUF_LOOKUP_DES_UNC_ERR] = CNTR_ELEM("RxRbufLookupDesUncErr", 0, 0,
4503 CNTR_NORMAL,
4504 access_rx_rbuf_lookup_des_unc_err_cnt),
4505[C_RX_RBUF_LOOKUP_DES_REG_UNC_COR_ERR] = CNTR_ELEM(
4506 "RxRbufLookupDesRegUncCorErr", 0, 0,
4507 CNTR_NORMAL,
4508 access_rx_rbuf_lookup_des_reg_unc_cor_err_cnt),
4509[C_RX_RBUF_LOOKUP_DES_REG_UNC_ERR] = CNTR_ELEM("RxRbufLookupDesRegUncErr", 0, 0,
4510 CNTR_NORMAL,
4511 access_rx_rbuf_lookup_des_reg_unc_err_cnt),
4512[C_RX_RBUF_FREE_LIST_COR_ERR] = CNTR_ELEM("RxRbufFreeListCorErr", 0, 0,
4513 CNTR_NORMAL,
4514 access_rx_rbuf_free_list_cor_err_cnt),
4515[C_RX_RBUF_FREE_LIST_UNC_ERR] = CNTR_ELEM("RxRbufFreeListUncErr", 0, 0,
4516 CNTR_NORMAL,
4517 access_rx_rbuf_free_list_unc_err_cnt),
4518[C_RX_RCV_FSM_ENCODING_ERR] = CNTR_ELEM("RxRcvFsmEncodingErr", 0, 0,
4519 CNTR_NORMAL,
4520 access_rx_rcv_fsm_encoding_err_cnt),
4521[C_RX_DMA_FLAG_COR_ERR] = CNTR_ELEM("RxDmaFlagCorErr", 0, 0,
4522 CNTR_NORMAL,
4523 access_rx_dma_flag_cor_err_cnt),
4524[C_RX_DMA_FLAG_UNC_ERR] = CNTR_ELEM("RxDmaFlagUncErr", 0, 0,
4525 CNTR_NORMAL,
4526 access_rx_dma_flag_unc_err_cnt),
4527[C_RX_DC_SOP_EOP_PARITY_ERR] = CNTR_ELEM("RxDcSopEopParityErr", 0, 0,
4528 CNTR_NORMAL,
4529 access_rx_dc_sop_eop_parity_err_cnt),
4530[C_RX_RCV_CSR_PARITY_ERR] = CNTR_ELEM("RxRcvCsrParityErr", 0, 0,
4531 CNTR_NORMAL,
4532 access_rx_rcv_csr_parity_err_cnt),
4533[C_RX_RCV_QP_MAP_TABLE_COR_ERR] = CNTR_ELEM("RxRcvQpMapTableCorErr", 0, 0,
4534 CNTR_NORMAL,
4535 access_rx_rcv_qp_map_table_cor_err_cnt),
4536[C_RX_RCV_QP_MAP_TABLE_UNC_ERR] = CNTR_ELEM("RxRcvQpMapTableUncErr", 0, 0,
4537 CNTR_NORMAL,
4538 access_rx_rcv_qp_map_table_unc_err_cnt),
4539[C_RX_RCV_DATA_COR_ERR] = CNTR_ELEM("RxRcvDataCorErr", 0, 0,
4540 CNTR_NORMAL,
4541 access_rx_rcv_data_cor_err_cnt),
4542[C_RX_RCV_DATA_UNC_ERR] = CNTR_ELEM("RxRcvDataUncErr", 0, 0,
4543 CNTR_NORMAL,
4544 access_rx_rcv_data_unc_err_cnt),
4545[C_RX_RCV_HDR_COR_ERR] = CNTR_ELEM("RxRcvHdrCorErr", 0, 0,
4546 CNTR_NORMAL,
4547 access_rx_rcv_hdr_cor_err_cnt),
4548[C_RX_RCV_HDR_UNC_ERR] = CNTR_ELEM("RxRcvHdrUncErr", 0, 0,
4549 CNTR_NORMAL,
4550 access_rx_rcv_hdr_unc_err_cnt),
4551[C_RX_DC_INTF_PARITY_ERR] = CNTR_ELEM("RxDcIntfParityErr", 0, 0,
4552 CNTR_NORMAL,
4553 access_rx_dc_intf_parity_err_cnt),
4554[C_RX_DMA_CSR_COR_ERR] = CNTR_ELEM("RxDmaCsrCorErr", 0, 0,
4555 CNTR_NORMAL,
4556 access_rx_dma_csr_cor_err_cnt),
4557/* SendPioErrStatus */
4558[C_PIO_PEC_SOP_HEAD_PARITY_ERR] = CNTR_ELEM("PioPecSopHeadParityErr", 0, 0,
4559 CNTR_NORMAL,
4560 access_pio_pec_sop_head_parity_err_cnt),
4561[C_PIO_PCC_SOP_HEAD_PARITY_ERR] = CNTR_ELEM("PioPccSopHeadParityErr", 0, 0,
4562 CNTR_NORMAL,
4563 access_pio_pcc_sop_head_parity_err_cnt),
4564[C_PIO_LAST_RETURNED_CNT_PARITY_ERR] = CNTR_ELEM("PioLastReturnedCntParityErr",
4565 0, 0, CNTR_NORMAL,
4566 access_pio_last_returned_cnt_parity_err_cnt),
4567[C_PIO_CURRENT_FREE_CNT_PARITY_ERR] = CNTR_ELEM("PioCurrentFreeCntParityErr", 0,
4568 0, CNTR_NORMAL,
4569 access_pio_current_free_cnt_parity_err_cnt),
4570[C_PIO_RSVD_31_ERR] = CNTR_ELEM("Pio Reserved 31", 0, 0,
4571 CNTR_NORMAL,
4572 access_pio_reserved_31_err_cnt),
4573[C_PIO_RSVD_30_ERR] = CNTR_ELEM("Pio Reserved 30", 0, 0,
4574 CNTR_NORMAL,
4575 access_pio_reserved_30_err_cnt),
4576[C_PIO_PPMC_SOP_LEN_ERR] = CNTR_ELEM("PioPpmcSopLenErr", 0, 0,
4577 CNTR_NORMAL,
4578 access_pio_ppmc_sop_len_err_cnt),
4579[C_PIO_PPMC_BQC_MEM_PARITY_ERR] = CNTR_ELEM("PioPpmcBqcMemParityErr", 0, 0,
4580 CNTR_NORMAL,
4581 access_pio_ppmc_bqc_mem_parity_err_cnt),
4582[C_PIO_VL_FIFO_PARITY_ERR] = CNTR_ELEM("PioVlFifoParityErr", 0, 0,
4583 CNTR_NORMAL,
4584 access_pio_vl_fifo_parity_err_cnt),
4585[C_PIO_VLF_SOP_PARITY_ERR] = CNTR_ELEM("PioVlfSopParityErr", 0, 0,
4586 CNTR_NORMAL,
4587 access_pio_vlf_sop_parity_err_cnt),
4588[C_PIO_VLF_V1_LEN_PARITY_ERR] = CNTR_ELEM("PioVlfVlLenParityErr", 0, 0,
4589 CNTR_NORMAL,
4590 access_pio_vlf_v1_len_parity_err_cnt),
4591[C_PIO_BLOCK_QW_COUNT_PARITY_ERR] = CNTR_ELEM("PioBlockQwCountParityErr", 0, 0,
4592 CNTR_NORMAL,
4593 access_pio_block_qw_count_parity_err_cnt),
4594[C_PIO_WRITE_QW_VALID_PARITY_ERR] = CNTR_ELEM("PioWriteQwValidParityErr", 0, 0,
4595 CNTR_NORMAL,
4596 access_pio_write_qw_valid_parity_err_cnt),
4597[C_PIO_STATE_MACHINE_ERR] = CNTR_ELEM("PioStateMachineErr", 0, 0,
4598 CNTR_NORMAL,
4599 access_pio_state_machine_err_cnt),
4600[C_PIO_WRITE_DATA_PARITY_ERR] = CNTR_ELEM("PioWriteDataParityErr", 0, 0,
4601 CNTR_NORMAL,
4602 access_pio_write_data_parity_err_cnt),
4603[C_PIO_HOST_ADDR_MEM_COR_ERR] = CNTR_ELEM("PioHostAddrMemCorErr", 0, 0,
4604 CNTR_NORMAL,
4605 access_pio_host_addr_mem_cor_err_cnt),
4606[C_PIO_HOST_ADDR_MEM_UNC_ERR] = CNTR_ELEM("PioHostAddrMemUncErr", 0, 0,
4607 CNTR_NORMAL,
4608 access_pio_host_addr_mem_unc_err_cnt),
4609[C_PIO_PKT_EVICT_SM_OR_ARM_SM_ERR] = CNTR_ELEM("PioPktEvictSmOrArbSmErr", 0, 0,
4610 CNTR_NORMAL,
4611 access_pio_pkt_evict_sm_or_arb_sm_err_cnt),
4612[C_PIO_INIT_SM_IN_ERR] = CNTR_ELEM("PioInitSmInErr", 0, 0,
4613 CNTR_NORMAL,
4614 access_pio_init_sm_in_err_cnt),
4615[C_PIO_PPMC_PBL_FIFO_ERR] = CNTR_ELEM("PioPpmcPblFifoErr", 0, 0,
4616 CNTR_NORMAL,
4617 access_pio_ppmc_pbl_fifo_err_cnt),
4618[C_PIO_CREDIT_RET_FIFO_PARITY_ERR] = CNTR_ELEM("PioCreditRetFifoParityErr", 0,
4619 0, CNTR_NORMAL,
4620 access_pio_credit_ret_fifo_parity_err_cnt),
4621[C_PIO_V1_LEN_MEM_BANK1_COR_ERR] = CNTR_ELEM("PioVlLenMemBank1CorErr", 0, 0,
4622 CNTR_NORMAL,
4623 access_pio_v1_len_mem_bank1_cor_err_cnt),
4624[C_PIO_V1_LEN_MEM_BANK0_COR_ERR] = CNTR_ELEM("PioVlLenMemBank0CorErr", 0, 0,
4625 CNTR_NORMAL,
4626 access_pio_v1_len_mem_bank0_cor_err_cnt),
4627[C_PIO_V1_LEN_MEM_BANK1_UNC_ERR] = CNTR_ELEM("PioVlLenMemBank1UncErr", 0, 0,
4628 CNTR_NORMAL,
4629 access_pio_v1_len_mem_bank1_unc_err_cnt),
4630[C_PIO_V1_LEN_MEM_BANK0_UNC_ERR] = CNTR_ELEM("PioVlLenMemBank0UncErr", 0, 0,
4631 CNTR_NORMAL,
4632 access_pio_v1_len_mem_bank0_unc_err_cnt),
4633[C_PIO_SM_PKT_RESET_PARITY_ERR] = CNTR_ELEM("PioSmPktResetParityErr", 0, 0,
4634 CNTR_NORMAL,
4635 access_pio_sm_pkt_reset_parity_err_cnt),
4636[C_PIO_PKT_EVICT_FIFO_PARITY_ERR] = CNTR_ELEM("PioPktEvictFifoParityErr", 0, 0,
4637 CNTR_NORMAL,
4638 access_pio_pkt_evict_fifo_parity_err_cnt),
4639[C_PIO_SBRDCTRL_CRREL_FIFO_PARITY_ERR] = CNTR_ELEM(
4640 "PioSbrdctrlCrrelFifoParityErr", 0, 0,
4641 CNTR_NORMAL,
4642 access_pio_sbrdctrl_crrel_fifo_parity_err_cnt),
4643[C_PIO_SBRDCTL_CRREL_PARITY_ERR] = CNTR_ELEM("PioSbrdctlCrrelParityErr", 0, 0,
4644 CNTR_NORMAL,
4645 access_pio_sbrdctl_crrel_parity_err_cnt),
4646[C_PIO_PEC_FIFO_PARITY_ERR] = CNTR_ELEM("PioPecFifoParityErr", 0, 0,
4647 CNTR_NORMAL,
4648 access_pio_pec_fifo_parity_err_cnt),
4649[C_PIO_PCC_FIFO_PARITY_ERR] = CNTR_ELEM("PioPccFifoParityErr", 0, 0,
4650 CNTR_NORMAL,
4651 access_pio_pcc_fifo_parity_err_cnt),
4652[C_PIO_SB_MEM_FIFO1_ERR] = CNTR_ELEM("PioSbMemFifo1Err", 0, 0,
4653 CNTR_NORMAL,
4654 access_pio_sb_mem_fifo1_err_cnt),
4655[C_PIO_SB_MEM_FIFO0_ERR] = CNTR_ELEM("PioSbMemFifo0Err", 0, 0,
4656 CNTR_NORMAL,
4657 access_pio_sb_mem_fifo0_err_cnt),
4658[C_PIO_CSR_PARITY_ERR] = CNTR_ELEM("PioCsrParityErr", 0, 0,
4659 CNTR_NORMAL,
4660 access_pio_csr_parity_err_cnt),
4661[C_PIO_WRITE_ADDR_PARITY_ERR] = CNTR_ELEM("PioWriteAddrParityErr", 0, 0,
4662 CNTR_NORMAL,
4663 access_pio_write_addr_parity_err_cnt),
4664[C_PIO_WRITE_BAD_CTXT_ERR] = CNTR_ELEM("PioWriteBadCtxtErr", 0, 0,
4665 CNTR_NORMAL,
4666 access_pio_write_bad_ctxt_err_cnt),
4667/* SendDmaErrStatus */
4668[C_SDMA_PCIE_REQ_TRACKING_COR_ERR] = CNTR_ELEM("SDmaPcieReqTrackingCorErr", 0,
4669 0, CNTR_NORMAL,
4670 access_sdma_pcie_req_tracking_cor_err_cnt),
4671[C_SDMA_PCIE_REQ_TRACKING_UNC_ERR] = CNTR_ELEM("SDmaPcieReqTrackingUncErr", 0,
4672 0, CNTR_NORMAL,
4673 access_sdma_pcie_req_tracking_unc_err_cnt),
4674[C_SDMA_CSR_PARITY_ERR] = CNTR_ELEM("SDmaCsrParityErr", 0, 0,
4675 CNTR_NORMAL,
4676 access_sdma_csr_parity_err_cnt),
4677[C_SDMA_RPY_TAG_ERR] = CNTR_ELEM("SDmaRpyTagErr", 0, 0,
4678 CNTR_NORMAL,
4679 access_sdma_rpy_tag_err_cnt),
4680/* SendEgressErrStatus */
4681[C_TX_READ_PIO_MEMORY_CSR_UNC_ERR] = CNTR_ELEM("TxReadPioMemoryCsrUncErr", 0, 0,
4682 CNTR_NORMAL,
4683 access_tx_read_pio_memory_csr_unc_err_cnt),
4684[C_TX_READ_SDMA_MEMORY_CSR_UNC_ERR] = CNTR_ELEM("TxReadSdmaMemoryCsrUncErr", 0,
4685 0, CNTR_NORMAL,
4686 access_tx_read_sdma_memory_csr_err_cnt),
4687[C_TX_EGRESS_FIFO_COR_ERR] = CNTR_ELEM("TxEgressFifoCorErr", 0, 0,
4688 CNTR_NORMAL,
4689 access_tx_egress_fifo_cor_err_cnt),
4690[C_TX_READ_PIO_MEMORY_COR_ERR] = CNTR_ELEM("TxReadPioMemoryCorErr", 0, 0,
4691 CNTR_NORMAL,
4692 access_tx_read_pio_memory_cor_err_cnt),
4693[C_TX_READ_SDMA_MEMORY_COR_ERR] = CNTR_ELEM("TxReadSdmaMemoryCorErr", 0, 0,
4694 CNTR_NORMAL,
4695 access_tx_read_sdma_memory_cor_err_cnt),
4696[C_TX_SB_HDR_COR_ERR] = CNTR_ELEM("TxSbHdrCorErr", 0, 0,
4697 CNTR_NORMAL,
4698 access_tx_sb_hdr_cor_err_cnt),
4699[C_TX_CREDIT_OVERRUN_ERR] = CNTR_ELEM("TxCreditOverrunErr", 0, 0,
4700 CNTR_NORMAL,
4701 access_tx_credit_overrun_err_cnt),
4702[C_TX_LAUNCH_FIFO8_COR_ERR] = CNTR_ELEM("TxLaunchFifo8CorErr", 0, 0,
4703 CNTR_NORMAL,
4704 access_tx_launch_fifo8_cor_err_cnt),
4705[C_TX_LAUNCH_FIFO7_COR_ERR] = CNTR_ELEM("TxLaunchFifo7CorErr", 0, 0,
4706 CNTR_NORMAL,
4707 access_tx_launch_fifo7_cor_err_cnt),
4708[C_TX_LAUNCH_FIFO6_COR_ERR] = CNTR_ELEM("TxLaunchFifo6CorErr", 0, 0,
4709 CNTR_NORMAL,
4710 access_tx_launch_fifo6_cor_err_cnt),
4711[C_TX_LAUNCH_FIFO5_COR_ERR] = CNTR_ELEM("TxLaunchFifo5CorErr", 0, 0,
4712 CNTR_NORMAL,
4713 access_tx_launch_fifo5_cor_err_cnt),
4714[C_TX_LAUNCH_FIFO4_COR_ERR] = CNTR_ELEM("TxLaunchFifo4CorErr", 0, 0,
4715 CNTR_NORMAL,
4716 access_tx_launch_fifo4_cor_err_cnt),
4717[C_TX_LAUNCH_FIFO3_COR_ERR] = CNTR_ELEM("TxLaunchFifo3CorErr", 0, 0,
4718 CNTR_NORMAL,
4719 access_tx_launch_fifo3_cor_err_cnt),
4720[C_TX_LAUNCH_FIFO2_COR_ERR] = CNTR_ELEM("TxLaunchFifo2CorErr", 0, 0,
4721 CNTR_NORMAL,
4722 access_tx_launch_fifo2_cor_err_cnt),
4723[C_TX_LAUNCH_FIFO1_COR_ERR] = CNTR_ELEM("TxLaunchFifo1CorErr", 0, 0,
4724 CNTR_NORMAL,
4725 access_tx_launch_fifo1_cor_err_cnt),
4726[C_TX_LAUNCH_FIFO0_COR_ERR] = CNTR_ELEM("TxLaunchFifo0CorErr", 0, 0,
4727 CNTR_NORMAL,
4728 access_tx_launch_fifo0_cor_err_cnt),
4729[C_TX_CREDIT_RETURN_VL_ERR] = CNTR_ELEM("TxCreditReturnVLErr", 0, 0,
4730 CNTR_NORMAL,
4731 access_tx_credit_return_vl_err_cnt),
4732[C_TX_HCRC_INSERTION_ERR] = CNTR_ELEM("TxHcrcInsertionErr", 0, 0,
4733 CNTR_NORMAL,
4734 access_tx_hcrc_insertion_err_cnt),
4735[C_TX_EGRESS_FIFI_UNC_ERR] = CNTR_ELEM("TxEgressFifoUncErr", 0, 0,
4736 CNTR_NORMAL,
4737 access_tx_egress_fifo_unc_err_cnt),
4738[C_TX_READ_PIO_MEMORY_UNC_ERR] = CNTR_ELEM("TxReadPioMemoryUncErr", 0, 0,
4739 CNTR_NORMAL,
4740 access_tx_read_pio_memory_unc_err_cnt),
4741[C_TX_READ_SDMA_MEMORY_UNC_ERR] = CNTR_ELEM("TxReadSdmaMemoryUncErr", 0, 0,
4742 CNTR_NORMAL,
4743 access_tx_read_sdma_memory_unc_err_cnt),
4744[C_TX_SB_HDR_UNC_ERR] = CNTR_ELEM("TxSbHdrUncErr", 0, 0,
4745 CNTR_NORMAL,
4746 access_tx_sb_hdr_unc_err_cnt),
4747[C_TX_CREDIT_RETURN_PARITY_ERR] = CNTR_ELEM("TxCreditReturnParityErr", 0, 0,
4748 CNTR_NORMAL,
4749 access_tx_credit_return_partiy_err_cnt),
4750[C_TX_LAUNCH_FIFO8_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo8UncOrParityErr",
4751 0, 0, CNTR_NORMAL,
4752 access_tx_launch_fifo8_unc_or_parity_err_cnt),
4753[C_TX_LAUNCH_FIFO7_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo7UncOrParityErr",
4754 0, 0, CNTR_NORMAL,
4755 access_tx_launch_fifo7_unc_or_parity_err_cnt),
4756[C_TX_LAUNCH_FIFO6_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo6UncOrParityErr",
4757 0, 0, CNTR_NORMAL,
4758 access_tx_launch_fifo6_unc_or_parity_err_cnt),
4759[C_TX_LAUNCH_FIFO5_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo5UncOrParityErr",
4760 0, 0, CNTR_NORMAL,
4761 access_tx_launch_fifo5_unc_or_parity_err_cnt),
4762[C_TX_LAUNCH_FIFO4_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo4UncOrParityErr",
4763 0, 0, CNTR_NORMAL,
4764 access_tx_launch_fifo4_unc_or_parity_err_cnt),
4765[C_TX_LAUNCH_FIFO3_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo3UncOrParityErr",
4766 0, 0, CNTR_NORMAL,
4767 access_tx_launch_fifo3_unc_or_parity_err_cnt),
4768[C_TX_LAUNCH_FIFO2_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo2UncOrParityErr",
4769 0, 0, CNTR_NORMAL,
4770 access_tx_launch_fifo2_unc_or_parity_err_cnt),
4771[C_TX_LAUNCH_FIFO1_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo1UncOrParityErr",
4772 0, 0, CNTR_NORMAL,
4773 access_tx_launch_fifo1_unc_or_parity_err_cnt),
4774[C_TX_LAUNCH_FIFO0_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo0UncOrParityErr",
4775 0, 0, CNTR_NORMAL,
4776 access_tx_launch_fifo0_unc_or_parity_err_cnt),
4777[C_TX_SDMA15_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma15DisallowedPacketErr",
4778 0, 0, CNTR_NORMAL,
4779 access_tx_sdma15_disallowed_packet_err_cnt),
4780[C_TX_SDMA14_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma14DisallowedPacketErr",
4781 0, 0, CNTR_NORMAL,
4782 access_tx_sdma14_disallowed_packet_err_cnt),
4783[C_TX_SDMA13_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma13DisallowedPacketErr",
4784 0, 0, CNTR_NORMAL,
4785 access_tx_sdma13_disallowed_packet_err_cnt),
4786[C_TX_SDMA12_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma12DisallowedPacketErr",
4787 0, 0, CNTR_NORMAL,
4788 access_tx_sdma12_disallowed_packet_err_cnt),
4789[C_TX_SDMA11_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma11DisallowedPacketErr",
4790 0, 0, CNTR_NORMAL,
4791 access_tx_sdma11_disallowed_packet_err_cnt),
4792[C_TX_SDMA10_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma10DisallowedPacketErr",
4793 0, 0, CNTR_NORMAL,
4794 access_tx_sdma10_disallowed_packet_err_cnt),
4795[C_TX_SDMA9_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma9DisallowedPacketErr",
4796 0, 0, CNTR_NORMAL,
4797 access_tx_sdma9_disallowed_packet_err_cnt),
4798[C_TX_SDMA8_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma8DisallowedPacketErr",
4799 0, 0, CNTR_NORMAL,
4800 access_tx_sdma8_disallowed_packet_err_cnt),
4801[C_TX_SDMA7_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma7DisallowedPacketErr",
4802 0, 0, CNTR_NORMAL,
4803 access_tx_sdma7_disallowed_packet_err_cnt),
4804[C_TX_SDMA6_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma6DisallowedPacketErr",
4805 0, 0, CNTR_NORMAL,
4806 access_tx_sdma6_disallowed_packet_err_cnt),
4807[C_TX_SDMA5_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma5DisallowedPacketErr",
4808 0, 0, CNTR_NORMAL,
4809 access_tx_sdma5_disallowed_packet_err_cnt),
4810[C_TX_SDMA4_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma4DisallowedPacketErr",
4811 0, 0, CNTR_NORMAL,
4812 access_tx_sdma4_disallowed_packet_err_cnt),
4813[C_TX_SDMA3_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma3DisallowedPacketErr",
4814 0, 0, CNTR_NORMAL,
4815 access_tx_sdma3_disallowed_packet_err_cnt),
4816[C_TX_SDMA2_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma2DisallowedPacketErr",
4817 0, 0, CNTR_NORMAL,
4818 access_tx_sdma2_disallowed_packet_err_cnt),
4819[C_TX_SDMA1_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma1DisallowedPacketErr",
4820 0, 0, CNTR_NORMAL,
4821 access_tx_sdma1_disallowed_packet_err_cnt),
4822[C_TX_SDMA0_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma0DisallowedPacketErr",
4823 0, 0, CNTR_NORMAL,
4824 access_tx_sdma0_disallowed_packet_err_cnt),
4825[C_TX_CONFIG_PARITY_ERR] = CNTR_ELEM("TxConfigParityErr", 0, 0,
4826 CNTR_NORMAL,
4827 access_tx_config_parity_err_cnt),
4828[C_TX_SBRD_CTL_CSR_PARITY_ERR] = CNTR_ELEM("TxSbrdCtlCsrParityErr", 0, 0,
4829 CNTR_NORMAL,
4830 access_tx_sbrd_ctl_csr_parity_err_cnt),
4831[C_TX_LAUNCH_CSR_PARITY_ERR] = CNTR_ELEM("TxLaunchCsrParityErr", 0, 0,
4832 CNTR_NORMAL,
4833 access_tx_launch_csr_parity_err_cnt),
4834[C_TX_ILLEGAL_CL_ERR] = CNTR_ELEM("TxIllegalVLErr", 0, 0,
4835 CNTR_NORMAL,
4836 access_tx_illegal_vl_err_cnt),
4837[C_TX_SBRD_CTL_STATE_MACHINE_PARITY_ERR] = CNTR_ELEM(
4838 "TxSbrdCtlStateMachineParityErr", 0, 0,
4839 CNTR_NORMAL,
4840 access_tx_sbrd_ctl_state_machine_parity_err_cnt),
4841[C_TX_RESERVED_10] = CNTR_ELEM("Tx Egress Reserved 10", 0, 0,
4842 CNTR_NORMAL,
4843 access_egress_reserved_10_err_cnt),
4844[C_TX_RESERVED_9] = CNTR_ELEM("Tx Egress Reserved 9", 0, 0,
4845 CNTR_NORMAL,
4846 access_egress_reserved_9_err_cnt),
4847[C_TX_SDMA_LAUNCH_INTF_PARITY_ERR] = CNTR_ELEM("TxSdmaLaunchIntfParityErr",
4848 0, 0, CNTR_NORMAL,
4849 access_tx_sdma_launch_intf_parity_err_cnt),
4850[C_TX_PIO_LAUNCH_INTF_PARITY_ERR] = CNTR_ELEM("TxPioLaunchIntfParityErr", 0, 0,
4851 CNTR_NORMAL,
4852 access_tx_pio_launch_intf_parity_err_cnt),
4853[C_TX_RESERVED_6] = CNTR_ELEM("Tx Egress Reserved 6", 0, 0,
4854 CNTR_NORMAL,
4855 access_egress_reserved_6_err_cnt),
4856[C_TX_INCORRECT_LINK_STATE_ERR] = CNTR_ELEM("TxIncorrectLinkStateErr", 0, 0,
4857 CNTR_NORMAL,
4858 access_tx_incorrect_link_state_err_cnt),
4859[C_TX_LINK_DOWN_ERR] = CNTR_ELEM("TxLinkdownErr", 0, 0,
4860 CNTR_NORMAL,
4861 access_tx_linkdown_err_cnt),
4862[C_TX_EGRESS_FIFO_UNDERRUN_OR_PARITY_ERR] = CNTR_ELEM(
4863 "EgressFifoUnderrunOrParityErr", 0, 0,
4864 CNTR_NORMAL,
4865 access_tx_egress_fifi_underrun_or_parity_err_cnt),
4866[C_TX_RESERVED_2] = CNTR_ELEM("Tx Egress Reserved 2", 0, 0,
4867 CNTR_NORMAL,
4868 access_egress_reserved_2_err_cnt),
4869[C_TX_PKT_INTEGRITY_MEM_UNC_ERR] = CNTR_ELEM("TxPktIntegrityMemUncErr", 0, 0,
4870 CNTR_NORMAL,
4871 access_tx_pkt_integrity_mem_unc_err_cnt),
4872[C_TX_PKT_INTEGRITY_MEM_COR_ERR] = CNTR_ELEM("TxPktIntegrityMemCorErr", 0, 0,
4873 CNTR_NORMAL,
4874 access_tx_pkt_integrity_mem_cor_err_cnt),
4875/* SendErrStatus */
4876[C_SEND_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("SendCsrWriteBadAddrErr", 0, 0,
4877 CNTR_NORMAL,
4878 access_send_csr_write_bad_addr_err_cnt),
4879[C_SEND_CSR_READ_BAD_ADD_ERR] = CNTR_ELEM("SendCsrReadBadAddrErr", 0, 0,
4880 CNTR_NORMAL,
4881 access_send_csr_read_bad_addr_err_cnt),
4882[C_SEND_CSR_PARITY_ERR] = CNTR_ELEM("SendCsrParityErr", 0, 0,
4883 CNTR_NORMAL,
4884 access_send_csr_parity_cnt),
4885/* SendCtxtErrStatus */
4886[C_PIO_WRITE_OUT_OF_BOUNDS_ERR] = CNTR_ELEM("PioWriteOutOfBoundsErr", 0, 0,
4887 CNTR_NORMAL,
4888 access_pio_write_out_of_bounds_err_cnt),
4889[C_PIO_WRITE_OVERFLOW_ERR] = CNTR_ELEM("PioWriteOverflowErr", 0, 0,
4890 CNTR_NORMAL,
4891 access_pio_write_overflow_err_cnt),
4892[C_PIO_WRITE_CROSSES_BOUNDARY_ERR] = CNTR_ELEM("PioWriteCrossesBoundaryErr",
4893 0, 0, CNTR_NORMAL,
4894 access_pio_write_crosses_boundary_err_cnt),
4895[C_PIO_DISALLOWED_PACKET_ERR] = CNTR_ELEM("PioDisallowedPacketErr", 0, 0,
4896 CNTR_NORMAL,
4897 access_pio_disallowed_packet_err_cnt),
4898[C_PIO_INCONSISTENT_SOP_ERR] = CNTR_ELEM("PioInconsistentSopErr", 0, 0,
4899 CNTR_NORMAL,
4900 access_pio_inconsistent_sop_err_cnt),
4901/* SendDmaEngErrStatus */
4902[C_SDMA_HEADER_REQUEST_FIFO_COR_ERR] = CNTR_ELEM("SDmaHeaderRequestFifoCorErr",
4903 0, 0, CNTR_NORMAL,
4904 access_sdma_header_request_fifo_cor_err_cnt),
4905[C_SDMA_HEADER_STORAGE_COR_ERR] = CNTR_ELEM("SDmaHeaderStorageCorErr", 0, 0,
4906 CNTR_NORMAL,
4907 access_sdma_header_storage_cor_err_cnt),
4908[C_SDMA_PACKET_TRACKING_COR_ERR] = CNTR_ELEM("SDmaPacketTrackingCorErr", 0, 0,
4909 CNTR_NORMAL,
4910 access_sdma_packet_tracking_cor_err_cnt),
4911[C_SDMA_ASSEMBLY_COR_ERR] = CNTR_ELEM("SDmaAssemblyCorErr", 0, 0,
4912 CNTR_NORMAL,
4913 access_sdma_assembly_cor_err_cnt),
4914[C_SDMA_DESC_TABLE_COR_ERR] = CNTR_ELEM("SDmaDescTableCorErr", 0, 0,
4915 CNTR_NORMAL,
4916 access_sdma_desc_table_cor_err_cnt),
4917[C_SDMA_HEADER_REQUEST_FIFO_UNC_ERR] = CNTR_ELEM("SDmaHeaderRequestFifoUncErr",
4918 0, 0, CNTR_NORMAL,
4919 access_sdma_header_request_fifo_unc_err_cnt),
4920[C_SDMA_HEADER_STORAGE_UNC_ERR] = CNTR_ELEM("SDmaHeaderStorageUncErr", 0, 0,
4921 CNTR_NORMAL,
4922 access_sdma_header_storage_unc_err_cnt),
4923[C_SDMA_PACKET_TRACKING_UNC_ERR] = CNTR_ELEM("SDmaPacketTrackingUncErr", 0, 0,
4924 CNTR_NORMAL,
4925 access_sdma_packet_tracking_unc_err_cnt),
4926[C_SDMA_ASSEMBLY_UNC_ERR] = CNTR_ELEM("SDmaAssemblyUncErr", 0, 0,
4927 CNTR_NORMAL,
4928 access_sdma_assembly_unc_err_cnt),
4929[C_SDMA_DESC_TABLE_UNC_ERR] = CNTR_ELEM("SDmaDescTableUncErr", 0, 0,
4930 CNTR_NORMAL,
4931 access_sdma_desc_table_unc_err_cnt),
4932[C_SDMA_TIMEOUT_ERR] = CNTR_ELEM("SDmaTimeoutErr", 0, 0,
4933 CNTR_NORMAL,
4934 access_sdma_timeout_err_cnt),
4935[C_SDMA_HEADER_LENGTH_ERR] = CNTR_ELEM("SDmaHeaderLengthErr", 0, 0,
4936 CNTR_NORMAL,
4937 access_sdma_header_length_err_cnt),
4938[C_SDMA_HEADER_ADDRESS_ERR] = CNTR_ELEM("SDmaHeaderAddressErr", 0, 0,
4939 CNTR_NORMAL,
4940 access_sdma_header_address_err_cnt),
4941[C_SDMA_HEADER_SELECT_ERR] = CNTR_ELEM("SDmaHeaderSelectErr", 0, 0,
4942 CNTR_NORMAL,
4943 access_sdma_header_select_err_cnt),
4944[C_SMDA_RESERVED_9] = CNTR_ELEM("SDma Reserved 9", 0, 0,
4945 CNTR_NORMAL,
4946 access_sdma_reserved_9_err_cnt),
4947[C_SDMA_PACKET_DESC_OVERFLOW_ERR] = CNTR_ELEM("SDmaPacketDescOverflowErr", 0, 0,
4948 CNTR_NORMAL,
4949 access_sdma_packet_desc_overflow_err_cnt),
4950[C_SDMA_LENGTH_MISMATCH_ERR] = CNTR_ELEM("SDmaLengthMismatchErr", 0, 0,
4951 CNTR_NORMAL,
4952 access_sdma_length_mismatch_err_cnt),
4953[C_SDMA_HALT_ERR] = CNTR_ELEM("SDmaHaltErr", 0, 0,
4954 CNTR_NORMAL,
4955 access_sdma_halt_err_cnt),
4956[C_SDMA_MEM_READ_ERR] = CNTR_ELEM("SDmaMemReadErr", 0, 0,
4957 CNTR_NORMAL,
4958 access_sdma_mem_read_err_cnt),
4959[C_SDMA_FIRST_DESC_ERR] = CNTR_ELEM("SDmaFirstDescErr", 0, 0,
4960 CNTR_NORMAL,
4961 access_sdma_first_desc_err_cnt),
4962[C_SDMA_TAIL_OUT_OF_BOUNDS_ERR] = CNTR_ELEM("SDmaTailOutOfBoundsErr", 0, 0,
4963 CNTR_NORMAL,
4964 access_sdma_tail_out_of_bounds_err_cnt),
4965[C_SDMA_TOO_LONG_ERR] = CNTR_ELEM("SDmaTooLongErr", 0, 0,
4966 CNTR_NORMAL,
4967 access_sdma_too_long_err_cnt),
4968[C_SDMA_GEN_MISMATCH_ERR] = CNTR_ELEM("SDmaGenMismatchErr", 0, 0,
4969 CNTR_NORMAL,
4970 access_sdma_gen_mismatch_err_cnt),
4971[C_SDMA_WRONG_DW_ERR] = CNTR_ELEM("SDmaWrongDwErr", 0, 0,
4972 CNTR_NORMAL,
4973 access_sdma_wrong_dw_err_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004974};
4975
4976static struct cntr_entry port_cntrs[PORT_CNTR_LAST] = {
4977[C_TX_UNSUP_VL] = TXE32_PORT_CNTR_ELEM(TxUnVLErr, SEND_UNSUP_VL_ERR_CNT,
4978 CNTR_NORMAL),
4979[C_TX_INVAL_LEN] = TXE32_PORT_CNTR_ELEM(TxInvalLen, SEND_LEN_ERR_CNT,
4980 CNTR_NORMAL),
4981[C_TX_MM_LEN_ERR] = TXE32_PORT_CNTR_ELEM(TxMMLenErr, SEND_MAX_MIN_LEN_ERR_CNT,
4982 CNTR_NORMAL),
4983[C_TX_UNDERRUN] = TXE32_PORT_CNTR_ELEM(TxUnderrun, SEND_UNDERRUN_CNT,
4984 CNTR_NORMAL),
4985[C_TX_FLOW_STALL] = TXE32_PORT_CNTR_ELEM(TxFlowStall, SEND_FLOW_STALL_CNT,
4986 CNTR_NORMAL),
4987[C_TX_DROPPED] = TXE32_PORT_CNTR_ELEM(TxDropped, SEND_DROPPED_PKT_CNT,
4988 CNTR_NORMAL),
4989[C_TX_HDR_ERR] = TXE32_PORT_CNTR_ELEM(TxHdrErr, SEND_HEADERS_ERR_CNT,
4990 CNTR_NORMAL),
4991[C_TX_PKT] = TXE64_PORT_CNTR_ELEM(TxPkt, SEND_DATA_PKT_CNT, CNTR_NORMAL),
4992[C_TX_WORDS] = TXE64_PORT_CNTR_ELEM(TxWords, SEND_DWORD_CNT, CNTR_NORMAL),
4993[C_TX_WAIT] = TXE64_PORT_CNTR_ELEM(TxWait, SEND_WAIT_CNT, CNTR_SYNTH),
4994[C_TX_FLIT_VL] = TXE64_PORT_CNTR_ELEM(TxFlitVL, SEND_DATA_VL0_CNT,
Jubin John17fb4f22016-02-14 20:21:52 -08004995 CNTR_SYNTH | CNTR_VL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004996[C_TX_PKT_VL] = TXE64_PORT_CNTR_ELEM(TxPktVL, SEND_DATA_PKT_VL0_CNT,
Jubin John17fb4f22016-02-14 20:21:52 -08004997 CNTR_SYNTH | CNTR_VL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004998[C_TX_WAIT_VL] = TXE64_PORT_CNTR_ELEM(TxWaitVL, SEND_WAIT_VL0_CNT,
Jubin John17fb4f22016-02-14 20:21:52 -08004999 CNTR_SYNTH | CNTR_VL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005000[C_RX_PKT] = RXE64_PORT_CNTR_ELEM(RxPkt, RCV_DATA_PKT_CNT, CNTR_NORMAL),
5001[C_RX_WORDS] = RXE64_PORT_CNTR_ELEM(RxWords, RCV_DWORD_CNT, CNTR_NORMAL),
5002[C_SW_LINK_DOWN] = CNTR_ELEM("SwLinkDown", 0, 0, CNTR_SYNTH | CNTR_32BIT,
Jubin John17fb4f22016-02-14 20:21:52 -08005003 access_sw_link_dn_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005004[C_SW_LINK_UP] = CNTR_ELEM("SwLinkUp", 0, 0, CNTR_SYNTH | CNTR_32BIT,
Jubin John17fb4f22016-02-14 20:21:52 -08005005 access_sw_link_up_cnt),
Dean Luick6d014532015-12-01 15:38:23 -05005006[C_SW_UNKNOWN_FRAME] = CNTR_ELEM("UnknownFrame", 0, 0, CNTR_NORMAL,
5007 access_sw_unknown_frame_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005008[C_SW_XMIT_DSCD] = CNTR_ELEM("XmitDscd", 0, 0, CNTR_SYNTH | CNTR_32BIT,
Jubin John17fb4f22016-02-14 20:21:52 -08005009 access_sw_xmit_discards),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005010[C_SW_XMIT_DSCD_VL] = CNTR_ELEM("XmitDscdVl", 0, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08005011 CNTR_SYNTH | CNTR_32BIT | CNTR_VL,
5012 access_sw_xmit_discards),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005013[C_SW_XMIT_CSTR_ERR] = CNTR_ELEM("XmitCstrErr", 0, 0, CNTR_SYNTH,
Jubin John17fb4f22016-02-14 20:21:52 -08005014 access_xmit_constraint_errs),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005015[C_SW_RCV_CSTR_ERR] = CNTR_ELEM("RcvCstrErr", 0, 0, CNTR_SYNTH,
Jubin John17fb4f22016-02-14 20:21:52 -08005016 access_rcv_constraint_errs),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005017[C_SW_IBP_LOOP_PKTS] = SW_IBP_CNTR(LoopPkts, loop_pkts),
5018[C_SW_IBP_RC_RESENDS] = SW_IBP_CNTR(RcResend, rc_resends),
5019[C_SW_IBP_RNR_NAKS] = SW_IBP_CNTR(RnrNak, rnr_naks),
5020[C_SW_IBP_OTHER_NAKS] = SW_IBP_CNTR(OtherNak, other_naks),
5021[C_SW_IBP_RC_TIMEOUTS] = SW_IBP_CNTR(RcTimeOut, rc_timeouts),
5022[C_SW_IBP_PKT_DROPS] = SW_IBP_CNTR(PktDrop, pkt_drops),
5023[C_SW_IBP_DMA_WAIT] = SW_IBP_CNTR(DmaWait, dmawait),
5024[C_SW_IBP_RC_SEQNAK] = SW_IBP_CNTR(RcSeqNak, rc_seqnak),
5025[C_SW_IBP_RC_DUPREQ] = SW_IBP_CNTR(RcDupRew, rc_dupreq),
5026[C_SW_IBP_RDMA_SEQ] = SW_IBP_CNTR(RdmaSeq, rdma_seq),
5027[C_SW_IBP_UNALIGNED] = SW_IBP_CNTR(Unaligned, unaligned),
5028[C_SW_IBP_SEQ_NAK] = SW_IBP_CNTR(SeqNak, seq_naks),
5029[C_SW_CPU_RC_ACKS] = CNTR_ELEM("RcAcks", 0, 0, CNTR_NORMAL,
5030 access_sw_cpu_rc_acks),
5031[C_SW_CPU_RC_QACKS] = CNTR_ELEM("RcQacks", 0, 0, CNTR_NORMAL,
Jubin John17fb4f22016-02-14 20:21:52 -08005032 access_sw_cpu_rc_qacks),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005033[C_SW_CPU_RC_DELAYED_COMP] = CNTR_ELEM("RcDelayComp", 0, 0, CNTR_NORMAL,
Jubin John17fb4f22016-02-14 20:21:52 -08005034 access_sw_cpu_rc_delayed_comp),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005035[OVR_LBL(0)] = OVR_ELM(0), [OVR_LBL(1)] = OVR_ELM(1),
5036[OVR_LBL(2)] = OVR_ELM(2), [OVR_LBL(3)] = OVR_ELM(3),
5037[OVR_LBL(4)] = OVR_ELM(4), [OVR_LBL(5)] = OVR_ELM(5),
5038[OVR_LBL(6)] = OVR_ELM(6), [OVR_LBL(7)] = OVR_ELM(7),
5039[OVR_LBL(8)] = OVR_ELM(8), [OVR_LBL(9)] = OVR_ELM(9),
5040[OVR_LBL(10)] = OVR_ELM(10), [OVR_LBL(11)] = OVR_ELM(11),
5041[OVR_LBL(12)] = OVR_ELM(12), [OVR_LBL(13)] = OVR_ELM(13),
5042[OVR_LBL(14)] = OVR_ELM(14), [OVR_LBL(15)] = OVR_ELM(15),
5043[OVR_LBL(16)] = OVR_ELM(16), [OVR_LBL(17)] = OVR_ELM(17),
5044[OVR_LBL(18)] = OVR_ELM(18), [OVR_LBL(19)] = OVR_ELM(19),
5045[OVR_LBL(20)] = OVR_ELM(20), [OVR_LBL(21)] = OVR_ELM(21),
5046[OVR_LBL(22)] = OVR_ELM(22), [OVR_LBL(23)] = OVR_ELM(23),
5047[OVR_LBL(24)] = OVR_ELM(24), [OVR_LBL(25)] = OVR_ELM(25),
5048[OVR_LBL(26)] = OVR_ELM(26), [OVR_LBL(27)] = OVR_ELM(27),
5049[OVR_LBL(28)] = OVR_ELM(28), [OVR_LBL(29)] = OVR_ELM(29),
5050[OVR_LBL(30)] = OVR_ELM(30), [OVR_LBL(31)] = OVR_ELM(31),
5051[OVR_LBL(32)] = OVR_ELM(32), [OVR_LBL(33)] = OVR_ELM(33),
5052[OVR_LBL(34)] = OVR_ELM(34), [OVR_LBL(35)] = OVR_ELM(35),
5053[OVR_LBL(36)] = OVR_ELM(36), [OVR_LBL(37)] = OVR_ELM(37),
5054[OVR_LBL(38)] = OVR_ELM(38), [OVR_LBL(39)] = OVR_ELM(39),
5055[OVR_LBL(40)] = OVR_ELM(40), [OVR_LBL(41)] = OVR_ELM(41),
5056[OVR_LBL(42)] = OVR_ELM(42), [OVR_LBL(43)] = OVR_ELM(43),
5057[OVR_LBL(44)] = OVR_ELM(44), [OVR_LBL(45)] = OVR_ELM(45),
5058[OVR_LBL(46)] = OVR_ELM(46), [OVR_LBL(47)] = OVR_ELM(47),
5059[OVR_LBL(48)] = OVR_ELM(48), [OVR_LBL(49)] = OVR_ELM(49),
5060[OVR_LBL(50)] = OVR_ELM(50), [OVR_LBL(51)] = OVR_ELM(51),
5061[OVR_LBL(52)] = OVR_ELM(52), [OVR_LBL(53)] = OVR_ELM(53),
5062[OVR_LBL(54)] = OVR_ELM(54), [OVR_LBL(55)] = OVR_ELM(55),
5063[OVR_LBL(56)] = OVR_ELM(56), [OVR_LBL(57)] = OVR_ELM(57),
5064[OVR_LBL(58)] = OVR_ELM(58), [OVR_LBL(59)] = OVR_ELM(59),
5065[OVR_LBL(60)] = OVR_ELM(60), [OVR_LBL(61)] = OVR_ELM(61),
5066[OVR_LBL(62)] = OVR_ELM(62), [OVR_LBL(63)] = OVR_ELM(63),
5067[OVR_LBL(64)] = OVR_ELM(64), [OVR_LBL(65)] = OVR_ELM(65),
5068[OVR_LBL(66)] = OVR_ELM(66), [OVR_LBL(67)] = OVR_ELM(67),
5069[OVR_LBL(68)] = OVR_ELM(68), [OVR_LBL(69)] = OVR_ELM(69),
5070[OVR_LBL(70)] = OVR_ELM(70), [OVR_LBL(71)] = OVR_ELM(71),
5071[OVR_LBL(72)] = OVR_ELM(72), [OVR_LBL(73)] = OVR_ELM(73),
5072[OVR_LBL(74)] = OVR_ELM(74), [OVR_LBL(75)] = OVR_ELM(75),
5073[OVR_LBL(76)] = OVR_ELM(76), [OVR_LBL(77)] = OVR_ELM(77),
5074[OVR_LBL(78)] = OVR_ELM(78), [OVR_LBL(79)] = OVR_ELM(79),
5075[OVR_LBL(80)] = OVR_ELM(80), [OVR_LBL(81)] = OVR_ELM(81),
5076[OVR_LBL(82)] = OVR_ELM(82), [OVR_LBL(83)] = OVR_ELM(83),
5077[OVR_LBL(84)] = OVR_ELM(84), [OVR_LBL(85)] = OVR_ELM(85),
5078[OVR_LBL(86)] = OVR_ELM(86), [OVR_LBL(87)] = OVR_ELM(87),
5079[OVR_LBL(88)] = OVR_ELM(88), [OVR_LBL(89)] = OVR_ELM(89),
5080[OVR_LBL(90)] = OVR_ELM(90), [OVR_LBL(91)] = OVR_ELM(91),
5081[OVR_LBL(92)] = OVR_ELM(92), [OVR_LBL(93)] = OVR_ELM(93),
5082[OVR_LBL(94)] = OVR_ELM(94), [OVR_LBL(95)] = OVR_ELM(95),
5083[OVR_LBL(96)] = OVR_ELM(96), [OVR_LBL(97)] = OVR_ELM(97),
5084[OVR_LBL(98)] = OVR_ELM(98), [OVR_LBL(99)] = OVR_ELM(99),
5085[OVR_LBL(100)] = OVR_ELM(100), [OVR_LBL(101)] = OVR_ELM(101),
5086[OVR_LBL(102)] = OVR_ELM(102), [OVR_LBL(103)] = OVR_ELM(103),
5087[OVR_LBL(104)] = OVR_ELM(104), [OVR_LBL(105)] = OVR_ELM(105),
5088[OVR_LBL(106)] = OVR_ELM(106), [OVR_LBL(107)] = OVR_ELM(107),
5089[OVR_LBL(108)] = OVR_ELM(108), [OVR_LBL(109)] = OVR_ELM(109),
5090[OVR_LBL(110)] = OVR_ELM(110), [OVR_LBL(111)] = OVR_ELM(111),
5091[OVR_LBL(112)] = OVR_ELM(112), [OVR_LBL(113)] = OVR_ELM(113),
5092[OVR_LBL(114)] = OVR_ELM(114), [OVR_LBL(115)] = OVR_ELM(115),
5093[OVR_LBL(116)] = OVR_ELM(116), [OVR_LBL(117)] = OVR_ELM(117),
5094[OVR_LBL(118)] = OVR_ELM(118), [OVR_LBL(119)] = OVR_ELM(119),
5095[OVR_LBL(120)] = OVR_ELM(120), [OVR_LBL(121)] = OVR_ELM(121),
5096[OVR_LBL(122)] = OVR_ELM(122), [OVR_LBL(123)] = OVR_ELM(123),
5097[OVR_LBL(124)] = OVR_ELM(124), [OVR_LBL(125)] = OVR_ELM(125),
5098[OVR_LBL(126)] = OVR_ELM(126), [OVR_LBL(127)] = OVR_ELM(127),
5099[OVR_LBL(128)] = OVR_ELM(128), [OVR_LBL(129)] = OVR_ELM(129),
5100[OVR_LBL(130)] = OVR_ELM(130), [OVR_LBL(131)] = OVR_ELM(131),
5101[OVR_LBL(132)] = OVR_ELM(132), [OVR_LBL(133)] = OVR_ELM(133),
5102[OVR_LBL(134)] = OVR_ELM(134), [OVR_LBL(135)] = OVR_ELM(135),
5103[OVR_LBL(136)] = OVR_ELM(136), [OVR_LBL(137)] = OVR_ELM(137),
5104[OVR_LBL(138)] = OVR_ELM(138), [OVR_LBL(139)] = OVR_ELM(139),
5105[OVR_LBL(140)] = OVR_ELM(140), [OVR_LBL(141)] = OVR_ELM(141),
5106[OVR_LBL(142)] = OVR_ELM(142), [OVR_LBL(143)] = OVR_ELM(143),
5107[OVR_LBL(144)] = OVR_ELM(144), [OVR_LBL(145)] = OVR_ELM(145),
5108[OVR_LBL(146)] = OVR_ELM(146), [OVR_LBL(147)] = OVR_ELM(147),
5109[OVR_LBL(148)] = OVR_ELM(148), [OVR_LBL(149)] = OVR_ELM(149),
5110[OVR_LBL(150)] = OVR_ELM(150), [OVR_LBL(151)] = OVR_ELM(151),
5111[OVR_LBL(152)] = OVR_ELM(152), [OVR_LBL(153)] = OVR_ELM(153),
5112[OVR_LBL(154)] = OVR_ELM(154), [OVR_LBL(155)] = OVR_ELM(155),
5113[OVR_LBL(156)] = OVR_ELM(156), [OVR_LBL(157)] = OVR_ELM(157),
5114[OVR_LBL(158)] = OVR_ELM(158), [OVR_LBL(159)] = OVR_ELM(159),
5115};
5116
5117/* ======================================================================== */
5118
Mike Marciniszyn77241052015-07-30 15:17:43 -04005119/* return true if this is chip revision revision a */
5120int is_ax(struct hfi1_devdata *dd)
5121{
5122 u8 chip_rev_minor =
5123 dd->revision >> CCE_REVISION_CHIP_REV_MINOR_SHIFT
5124 & CCE_REVISION_CHIP_REV_MINOR_MASK;
5125 return (chip_rev_minor & 0xf0) == 0;
5126}
5127
5128/* return true if this is chip revision revision b */
5129int is_bx(struct hfi1_devdata *dd)
5130{
5131 u8 chip_rev_minor =
5132 dd->revision >> CCE_REVISION_CHIP_REV_MINOR_SHIFT
5133 & CCE_REVISION_CHIP_REV_MINOR_MASK;
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05005134 return (chip_rev_minor & 0xF0) == 0x10;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005135}
5136
5137/*
5138 * Append string s to buffer buf. Arguments curp and len are the current
5139 * position and remaining length, respectively.
5140 *
5141 * return 0 on success, 1 on out of room
5142 */
5143static int append_str(char *buf, char **curp, int *lenp, const char *s)
5144{
5145 char *p = *curp;
5146 int len = *lenp;
5147 int result = 0; /* success */
5148 char c;
5149
5150 /* add a comma, if first in the buffer */
5151 if (p != buf) {
5152 if (len == 0) {
5153 result = 1; /* out of room */
5154 goto done;
5155 }
5156 *p++ = ',';
5157 len--;
5158 }
5159
5160 /* copy the string */
5161 while ((c = *s++) != 0) {
5162 if (len == 0) {
5163 result = 1; /* out of room */
5164 goto done;
5165 }
5166 *p++ = c;
5167 len--;
5168 }
5169
5170done:
5171 /* write return values */
5172 *curp = p;
5173 *lenp = len;
5174
5175 return result;
5176}
5177
5178/*
5179 * Using the given flag table, print a comma separated string into
5180 * the buffer. End in '*' if the buffer is too short.
5181 */
5182static char *flag_string(char *buf, int buf_len, u64 flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005183 struct flag_table *table, int table_size)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005184{
5185 char extra[32];
5186 char *p = buf;
5187 int len = buf_len;
5188 int no_room = 0;
5189 int i;
5190
5191 /* make sure there is at least 2 so we can form "*" */
5192 if (len < 2)
5193 return "";
5194
5195 len--; /* leave room for a nul */
5196 for (i = 0; i < table_size; i++) {
5197 if (flags & table[i].flag) {
5198 no_room = append_str(buf, &p, &len, table[i].str);
5199 if (no_room)
5200 break;
5201 flags &= ~table[i].flag;
5202 }
5203 }
5204
5205 /* any undocumented bits left? */
5206 if (!no_room && flags) {
5207 snprintf(extra, sizeof(extra), "bits 0x%llx", flags);
5208 no_room = append_str(buf, &p, &len, extra);
5209 }
5210
5211 /* add * if ran out of room */
5212 if (no_room) {
5213 /* may need to back up to add space for a '*' */
5214 if (len == 0)
5215 --p;
5216 *p++ = '*';
5217 }
5218
5219 /* add final nul - space already allocated above */
5220 *p = 0;
5221 return buf;
5222}
5223
5224/* first 8 CCE error interrupt source names */
5225static const char * const cce_misc_names[] = {
5226 "CceErrInt", /* 0 */
5227 "RxeErrInt", /* 1 */
5228 "MiscErrInt", /* 2 */
5229 "Reserved3", /* 3 */
5230 "PioErrInt", /* 4 */
5231 "SDmaErrInt", /* 5 */
5232 "EgressErrInt", /* 6 */
5233 "TxeErrInt" /* 7 */
5234};
5235
5236/*
5237 * Return the miscellaneous error interrupt name.
5238 */
5239static char *is_misc_err_name(char *buf, size_t bsize, unsigned int source)
5240{
5241 if (source < ARRAY_SIZE(cce_misc_names))
5242 strncpy(buf, cce_misc_names[source], bsize);
5243 else
Jubin John17fb4f22016-02-14 20:21:52 -08005244 snprintf(buf, bsize, "Reserved%u",
5245 source + IS_GENERAL_ERR_START);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005246
5247 return buf;
5248}
5249
5250/*
5251 * Return the SDMA engine error interrupt name.
5252 */
5253static char *is_sdma_eng_err_name(char *buf, size_t bsize, unsigned int source)
5254{
5255 snprintf(buf, bsize, "SDmaEngErrInt%u", source);
5256 return buf;
5257}
5258
5259/*
5260 * Return the send context error interrupt name.
5261 */
5262static char *is_sendctxt_err_name(char *buf, size_t bsize, unsigned int source)
5263{
5264 snprintf(buf, bsize, "SendCtxtErrInt%u", source);
5265 return buf;
5266}
5267
5268static const char * const various_names[] = {
5269 "PbcInt",
5270 "GpioAssertInt",
5271 "Qsfp1Int",
5272 "Qsfp2Int",
5273 "TCritInt"
5274};
5275
5276/*
5277 * Return the various interrupt name.
5278 */
5279static char *is_various_name(char *buf, size_t bsize, unsigned int source)
5280{
5281 if (source < ARRAY_SIZE(various_names))
5282 strncpy(buf, various_names[source], bsize);
5283 else
Jubin John8638b772016-02-14 20:19:24 -08005284 snprintf(buf, bsize, "Reserved%u", source + IS_VARIOUS_START);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005285 return buf;
5286}
5287
5288/*
5289 * Return the DC interrupt name.
5290 */
5291static char *is_dc_name(char *buf, size_t bsize, unsigned int source)
5292{
5293 static const char * const dc_int_names[] = {
5294 "common",
5295 "lcb",
5296 "8051",
5297 "lbm" /* local block merge */
5298 };
5299
5300 if (source < ARRAY_SIZE(dc_int_names))
5301 snprintf(buf, bsize, "dc_%s_int", dc_int_names[source]);
5302 else
5303 snprintf(buf, bsize, "DCInt%u", source);
5304 return buf;
5305}
5306
5307static const char * const sdma_int_names[] = {
5308 "SDmaInt",
5309 "SdmaIdleInt",
5310 "SdmaProgressInt",
5311};
5312
5313/*
5314 * Return the SDMA engine interrupt name.
5315 */
5316static char *is_sdma_eng_name(char *buf, size_t bsize, unsigned int source)
5317{
5318 /* what interrupt */
5319 unsigned int what = source / TXE_NUM_SDMA_ENGINES;
5320 /* which engine */
5321 unsigned int which = source % TXE_NUM_SDMA_ENGINES;
5322
5323 if (likely(what < 3))
5324 snprintf(buf, bsize, "%s%u", sdma_int_names[what], which);
5325 else
5326 snprintf(buf, bsize, "Invalid SDMA interrupt %u", source);
5327 return buf;
5328}
5329
5330/*
5331 * Return the receive available interrupt name.
5332 */
5333static char *is_rcv_avail_name(char *buf, size_t bsize, unsigned int source)
5334{
5335 snprintf(buf, bsize, "RcvAvailInt%u", source);
5336 return buf;
5337}
5338
5339/*
5340 * Return the receive urgent interrupt name.
5341 */
5342static char *is_rcv_urgent_name(char *buf, size_t bsize, unsigned int source)
5343{
5344 snprintf(buf, bsize, "RcvUrgentInt%u", source);
5345 return buf;
5346}
5347
5348/*
5349 * Return the send credit interrupt name.
5350 */
5351static char *is_send_credit_name(char *buf, size_t bsize, unsigned int source)
5352{
5353 snprintf(buf, bsize, "SendCreditInt%u", source);
5354 return buf;
5355}
5356
5357/*
5358 * Return the reserved interrupt name.
5359 */
5360static char *is_reserved_name(char *buf, size_t bsize, unsigned int source)
5361{
5362 snprintf(buf, bsize, "Reserved%u", source + IS_RESERVED_START);
5363 return buf;
5364}
5365
5366static char *cce_err_status_string(char *buf, int buf_len, u64 flags)
5367{
5368 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005369 cce_err_status_flags,
5370 ARRAY_SIZE(cce_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005371}
5372
5373static char *rxe_err_status_string(char *buf, int buf_len, u64 flags)
5374{
5375 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005376 rxe_err_status_flags,
5377 ARRAY_SIZE(rxe_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005378}
5379
5380static char *misc_err_status_string(char *buf, int buf_len, u64 flags)
5381{
5382 return flag_string(buf, buf_len, flags, misc_err_status_flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005383 ARRAY_SIZE(misc_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005384}
5385
5386static char *pio_err_status_string(char *buf, int buf_len, u64 flags)
5387{
5388 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005389 pio_err_status_flags,
5390 ARRAY_SIZE(pio_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005391}
5392
5393static char *sdma_err_status_string(char *buf, int buf_len, u64 flags)
5394{
5395 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005396 sdma_err_status_flags,
5397 ARRAY_SIZE(sdma_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005398}
5399
5400static char *egress_err_status_string(char *buf, int buf_len, u64 flags)
5401{
5402 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005403 egress_err_status_flags,
5404 ARRAY_SIZE(egress_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005405}
5406
5407static char *egress_err_info_string(char *buf, int buf_len, u64 flags)
5408{
5409 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005410 egress_err_info_flags,
5411 ARRAY_SIZE(egress_err_info_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005412}
5413
5414static char *send_err_status_string(char *buf, int buf_len, u64 flags)
5415{
5416 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005417 send_err_status_flags,
5418 ARRAY_SIZE(send_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005419}
5420
5421static void handle_cce_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5422{
5423 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005424 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005425
5426 /*
5427 * For most these errors, there is nothing that can be done except
5428 * report or record it.
5429 */
5430 dd_dev_info(dd, "CCE Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005431 cce_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005432
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05005433 if ((reg & CCE_ERR_STATUS_CCE_CLI2_ASYNC_FIFO_PARITY_ERR_SMASK) &&
5434 is_ax(dd) && (dd->icode != ICODE_FUNCTIONAL_SIMULATOR)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04005435 /* this error requires a manual drop into SPC freeze mode */
5436 /* then a fix up */
5437 start_freeze_handling(dd->pport, FREEZE_SELF);
5438 }
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005439
5440 for (i = 0; i < NUM_CCE_ERR_STATUS_COUNTERS; i++) {
5441 if (reg & (1ull << i)) {
5442 incr_cntr64(&dd->cce_err_status_cnt[i]);
5443 /* maintain a counter over all cce_err_status errors */
5444 incr_cntr64(&dd->sw_cce_err_status_aggregate);
5445 }
5446 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005447}
5448
5449/*
5450 * Check counters for receive errors that do not have an interrupt
5451 * associated with them.
5452 */
5453#define RCVERR_CHECK_TIME 10
5454static void update_rcverr_timer(unsigned long opaque)
5455{
5456 struct hfi1_devdata *dd = (struct hfi1_devdata *)opaque;
5457 struct hfi1_pportdata *ppd = dd->pport;
5458 u32 cur_ovfl_cnt = read_dev_cntr(dd, C_RCV_OVF, CNTR_INVALID_VL);
5459
5460 if (dd->rcv_ovfl_cnt < cur_ovfl_cnt &&
Jubin John17fb4f22016-02-14 20:21:52 -08005461 ppd->port_error_action & OPA_PI_MASK_EX_BUFFER_OVERRUN) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04005462 dd_dev_info(dd, "%s: PortErrorAction bounce\n", __func__);
Jubin John17fb4f22016-02-14 20:21:52 -08005463 set_link_down_reason(
5464 ppd, OPA_LINKDOWN_REASON_EXCESSIVE_BUFFER_OVERRUN, 0,
5465 OPA_LINKDOWN_REASON_EXCESSIVE_BUFFER_OVERRUN);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005466 queue_work(ppd->hfi1_wq, &ppd->link_bounce_work);
5467 }
Jubin John50e5dcb2016-02-14 20:19:41 -08005468 dd->rcv_ovfl_cnt = (u32)cur_ovfl_cnt;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005469
5470 mod_timer(&dd->rcverr_timer, jiffies + HZ * RCVERR_CHECK_TIME);
5471}
5472
5473static int init_rcverr(struct hfi1_devdata *dd)
5474{
Muhammad Falak R Wani24523a92015-10-25 16:13:23 +05305475 setup_timer(&dd->rcverr_timer, update_rcverr_timer, (unsigned long)dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005476 /* Assume the hardware counter has been reset */
5477 dd->rcv_ovfl_cnt = 0;
5478 return mod_timer(&dd->rcverr_timer, jiffies + HZ * RCVERR_CHECK_TIME);
5479}
5480
5481static void free_rcverr(struct hfi1_devdata *dd)
5482{
5483 if (dd->rcverr_timer.data)
5484 del_timer_sync(&dd->rcverr_timer);
5485 dd->rcverr_timer.data = 0;
5486}
5487
5488static void handle_rxe_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5489{
5490 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005491 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005492
5493 dd_dev_info(dd, "Receive Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005494 rxe_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005495
5496 if (reg & ALL_RXE_FREEZE_ERR) {
5497 int flags = 0;
5498
5499 /*
5500 * Freeze mode recovery is disabled for the errors
5501 * in RXE_FREEZE_ABORT_MASK
5502 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05005503 if (is_ax(dd) && (reg & RXE_FREEZE_ABORT_MASK))
Mike Marciniszyn77241052015-07-30 15:17:43 -04005504 flags = FREEZE_ABORT;
5505
5506 start_freeze_handling(dd->pport, flags);
5507 }
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005508
5509 for (i = 0; i < NUM_RCV_ERR_STATUS_COUNTERS; i++) {
5510 if (reg & (1ull << i))
5511 incr_cntr64(&dd->rcv_err_status_cnt[i]);
5512 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005513}
5514
5515static void handle_misc_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5516{
5517 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005518 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005519
5520 dd_dev_info(dd, "Misc Error: %s",
Jubin John17fb4f22016-02-14 20:21:52 -08005521 misc_err_status_string(buf, sizeof(buf), reg));
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005522 for (i = 0; i < NUM_MISC_ERR_STATUS_COUNTERS; i++) {
5523 if (reg & (1ull << i))
5524 incr_cntr64(&dd->misc_err_status_cnt[i]);
5525 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005526}
5527
5528static void handle_pio_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5529{
5530 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005531 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005532
5533 dd_dev_info(dd, "PIO Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005534 pio_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005535
5536 if (reg & ALL_PIO_FREEZE_ERR)
5537 start_freeze_handling(dd->pport, 0);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005538
5539 for (i = 0; i < NUM_SEND_PIO_ERR_STATUS_COUNTERS; i++) {
5540 if (reg & (1ull << i))
5541 incr_cntr64(&dd->send_pio_err_status_cnt[i]);
5542 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005543}
5544
5545static void handle_sdma_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5546{
5547 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005548 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005549
5550 dd_dev_info(dd, "SDMA Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005551 sdma_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005552
5553 if (reg & ALL_SDMA_FREEZE_ERR)
5554 start_freeze_handling(dd->pport, 0);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005555
5556 for (i = 0; i < NUM_SEND_DMA_ERR_STATUS_COUNTERS; i++) {
5557 if (reg & (1ull << i))
5558 incr_cntr64(&dd->send_dma_err_status_cnt[i]);
5559 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005560}
5561
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005562static inline void __count_port_discards(struct hfi1_pportdata *ppd)
5563{
5564 incr_cntr64(&ppd->port_xmit_discards);
5565}
5566
Mike Marciniszyn77241052015-07-30 15:17:43 -04005567static void count_port_inactive(struct hfi1_devdata *dd)
5568{
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005569 __count_port_discards(dd->pport);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005570}
5571
5572/*
5573 * We have had a "disallowed packet" error during egress. Determine the
5574 * integrity check which failed, and update relevant error counter, etc.
5575 *
5576 * Note that the SEND_EGRESS_ERR_INFO register has only a single
5577 * bit of state per integrity check, and so we can miss the reason for an
5578 * egress error if more than one packet fails the same integrity check
5579 * since we cleared the corresponding bit in SEND_EGRESS_ERR_INFO.
5580 */
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005581static void handle_send_egress_err_info(struct hfi1_devdata *dd,
5582 int vl)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005583{
5584 struct hfi1_pportdata *ppd = dd->pport;
5585 u64 src = read_csr(dd, SEND_EGRESS_ERR_SOURCE); /* read first */
5586 u64 info = read_csr(dd, SEND_EGRESS_ERR_INFO);
5587 char buf[96];
5588
5589 /* clear down all observed info as quickly as possible after read */
5590 write_csr(dd, SEND_EGRESS_ERR_INFO, info);
5591
5592 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08005593 "Egress Error Info: 0x%llx, %s Egress Error Src 0x%llx\n",
5594 info, egress_err_info_string(buf, sizeof(buf), info), src);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005595
5596 /* Eventually add other counters for each bit */
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005597 if (info & PORT_DISCARD_EGRESS_ERRS) {
5598 int weight, i;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005599
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005600 /*
Dean Luick4c9e7aa2016-02-18 11:12:08 -08005601 * Count all applicable bits as individual errors and
5602 * attribute them to the packet that triggered this handler.
5603 * This may not be completely accurate due to limitations
5604 * on the available hardware error information. There is
5605 * a single information register and any number of error
5606 * packets may have occurred and contributed to it before
5607 * this routine is called. This means that:
5608 * a) If multiple packets with the same error occur before
5609 * this routine is called, earlier packets are missed.
5610 * There is only a single bit for each error type.
5611 * b) Errors may not be attributed to the correct VL.
5612 * The driver is attributing all bits in the info register
5613 * to the packet that triggered this call, but bits
5614 * could be an accumulation of different packets with
5615 * different VLs.
5616 * c) A single error packet may have multiple counts attached
5617 * to it. There is no way for the driver to know if
5618 * multiple bits set in the info register are due to a
5619 * single packet or multiple packets. The driver assumes
5620 * multiple packets.
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005621 */
Dean Luick4c9e7aa2016-02-18 11:12:08 -08005622 weight = hweight64(info & PORT_DISCARD_EGRESS_ERRS);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005623 for (i = 0; i < weight; i++) {
5624 __count_port_discards(ppd);
5625 if (vl >= 0 && vl < TXE_NUM_DATA_VL)
5626 incr_cntr64(&ppd->port_xmit_discards_vl[vl]);
5627 else if (vl == 15)
5628 incr_cntr64(&ppd->port_xmit_discards_vl
5629 [C_VL_15]);
5630 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005631 }
5632}
5633
5634/*
5635 * Input value is a bit position within the SEND_EGRESS_ERR_STATUS
5636 * register. Does it represent a 'port inactive' error?
5637 */
5638static inline int port_inactive_err(u64 posn)
5639{
5640 return (posn >= SEES(TX_LINKDOWN) &&
5641 posn <= SEES(TX_INCORRECT_LINK_STATE));
5642}
5643
5644/*
5645 * Input value is a bit position within the SEND_EGRESS_ERR_STATUS
5646 * register. Does it represent a 'disallowed packet' error?
5647 */
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005648static inline int disallowed_pkt_err(int posn)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005649{
5650 return (posn >= SEES(TX_SDMA0_DISALLOWED_PACKET) &&
5651 posn <= SEES(TX_SDMA15_DISALLOWED_PACKET));
5652}
5653
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005654/*
5655 * Input value is a bit position of one of the SDMA engine disallowed
5656 * packet errors. Return which engine. Use of this must be guarded by
5657 * disallowed_pkt_err().
5658 */
5659static inline int disallowed_pkt_engine(int posn)
5660{
5661 return posn - SEES(TX_SDMA0_DISALLOWED_PACKET);
5662}
5663
5664/*
5665 * Translate an SDMA engine to a VL. Return -1 if the tranlation cannot
5666 * be done.
5667 */
5668static int engine_to_vl(struct hfi1_devdata *dd, int engine)
5669{
5670 struct sdma_vl_map *m;
5671 int vl;
5672
5673 /* range check */
5674 if (engine < 0 || engine >= TXE_NUM_SDMA_ENGINES)
5675 return -1;
5676
5677 rcu_read_lock();
5678 m = rcu_dereference(dd->sdma_map);
5679 vl = m->engine_to_vl[engine];
5680 rcu_read_unlock();
5681
5682 return vl;
5683}
5684
5685/*
5686 * Translate the send context (sofware index) into a VL. Return -1 if the
5687 * translation cannot be done.
5688 */
5689static int sc_to_vl(struct hfi1_devdata *dd, int sw_index)
5690{
5691 struct send_context_info *sci;
5692 struct send_context *sc;
5693 int i;
5694
5695 sci = &dd->send_contexts[sw_index];
5696
5697 /* there is no information for user (PSM) and ack contexts */
Jianxin Xiong44306f12016-04-12 11:30:28 -07005698 if ((sci->type != SC_KERNEL) && (sci->type != SC_VL15))
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005699 return -1;
5700
5701 sc = sci->sc;
5702 if (!sc)
5703 return -1;
5704 if (dd->vld[15].sc == sc)
5705 return 15;
5706 for (i = 0; i < num_vls; i++)
5707 if (dd->vld[i].sc == sc)
5708 return i;
5709
5710 return -1;
5711}
5712
Mike Marciniszyn77241052015-07-30 15:17:43 -04005713static void handle_egress_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5714{
5715 u64 reg_copy = reg, handled = 0;
5716 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005717 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005718
5719 if (reg & ALL_TXE_EGRESS_FREEZE_ERR)
5720 start_freeze_handling(dd->pport, 0);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005721 else if (is_ax(dd) &&
5722 (reg & SEND_EGRESS_ERR_STATUS_TX_CREDIT_RETURN_VL_ERR_SMASK) &&
5723 (dd->icode != ICODE_FUNCTIONAL_SIMULATOR))
Mike Marciniszyn77241052015-07-30 15:17:43 -04005724 start_freeze_handling(dd->pport, 0);
5725
5726 while (reg_copy) {
5727 int posn = fls64(reg_copy);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005728 /* fls64() returns a 1-based offset, we want it zero based */
Mike Marciniszyn77241052015-07-30 15:17:43 -04005729 int shift = posn - 1;
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005730 u64 mask = 1ULL << shift;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005731
5732 if (port_inactive_err(shift)) {
5733 count_port_inactive(dd);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005734 handled |= mask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005735 } else if (disallowed_pkt_err(shift)) {
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005736 int vl = engine_to_vl(dd, disallowed_pkt_engine(shift));
5737
5738 handle_send_egress_err_info(dd, vl);
5739 handled |= mask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005740 }
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005741 reg_copy &= ~mask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005742 }
5743
5744 reg &= ~handled;
5745
5746 if (reg)
5747 dd_dev_info(dd, "Egress Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005748 egress_err_status_string(buf, sizeof(buf), reg));
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005749
5750 for (i = 0; i < NUM_SEND_EGRESS_ERR_STATUS_COUNTERS; i++) {
5751 if (reg & (1ull << i))
5752 incr_cntr64(&dd->send_egress_err_status_cnt[i]);
5753 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005754}
5755
5756static void handle_txe_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5757{
5758 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005759 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005760
5761 dd_dev_info(dd, "Send Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005762 send_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005763
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005764 for (i = 0; i < NUM_SEND_ERR_STATUS_COUNTERS; i++) {
5765 if (reg & (1ull << i))
5766 incr_cntr64(&dd->send_err_status_cnt[i]);
5767 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005768}
5769
5770/*
5771 * The maximum number of times the error clear down will loop before
5772 * blocking a repeating error. This value is arbitrary.
5773 */
5774#define MAX_CLEAR_COUNT 20
5775
5776/*
5777 * Clear and handle an error register. All error interrupts are funneled
5778 * through here to have a central location to correctly handle single-
5779 * or multi-shot errors.
5780 *
5781 * For non per-context registers, call this routine with a context value
5782 * of 0 so the per-context offset is zero.
5783 *
5784 * If the handler loops too many times, assume that something is wrong
5785 * and can't be fixed, so mask the error bits.
5786 */
5787static void interrupt_clear_down(struct hfi1_devdata *dd,
5788 u32 context,
5789 const struct err_reg_info *eri)
5790{
5791 u64 reg;
5792 u32 count;
5793
5794 /* read in a loop until no more errors are seen */
5795 count = 0;
5796 while (1) {
5797 reg = read_kctxt_csr(dd, context, eri->status);
5798 if (reg == 0)
5799 break;
5800 write_kctxt_csr(dd, context, eri->clear, reg);
5801 if (likely(eri->handler))
5802 eri->handler(dd, context, reg);
5803 count++;
5804 if (count > MAX_CLEAR_COUNT) {
5805 u64 mask;
5806
5807 dd_dev_err(dd, "Repeating %s bits 0x%llx - masking\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005808 eri->desc, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005809 /*
5810 * Read-modify-write so any other masked bits
5811 * remain masked.
5812 */
5813 mask = read_kctxt_csr(dd, context, eri->mask);
5814 mask &= ~reg;
5815 write_kctxt_csr(dd, context, eri->mask, mask);
5816 break;
5817 }
5818 }
5819}
5820
5821/*
5822 * CCE block "misc" interrupt. Source is < 16.
5823 */
5824static void is_misc_err_int(struct hfi1_devdata *dd, unsigned int source)
5825{
5826 const struct err_reg_info *eri = &misc_errs[source];
5827
5828 if (eri->handler) {
5829 interrupt_clear_down(dd, 0, eri);
5830 } else {
5831 dd_dev_err(dd, "Unexpected misc interrupt (%u) - reserved\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005832 source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005833 }
5834}
5835
5836static char *send_context_err_status_string(char *buf, int buf_len, u64 flags)
5837{
5838 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005839 sc_err_status_flags,
5840 ARRAY_SIZE(sc_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005841}
5842
5843/*
5844 * Send context error interrupt. Source (hw_context) is < 160.
5845 *
5846 * All send context errors cause the send context to halt. The normal
5847 * clear-down mechanism cannot be used because we cannot clear the
5848 * error bits until several other long-running items are done first.
5849 * This is OK because with the context halted, nothing else is going
5850 * to happen on it anyway.
5851 */
5852static void is_sendctxt_err_int(struct hfi1_devdata *dd,
5853 unsigned int hw_context)
5854{
5855 struct send_context_info *sci;
5856 struct send_context *sc;
5857 char flags[96];
5858 u64 status;
5859 u32 sw_index;
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005860 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005861
5862 sw_index = dd->hw_to_sw[hw_context];
5863 if (sw_index >= dd->num_send_contexts) {
5864 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08005865 "out of range sw index %u for send context %u\n",
5866 sw_index, hw_context);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005867 return;
5868 }
5869 sci = &dd->send_contexts[sw_index];
5870 sc = sci->sc;
5871 if (!sc) {
5872 dd_dev_err(dd, "%s: context %u(%u): no sc?\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -08005873 sw_index, hw_context);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005874 return;
5875 }
5876
5877 /* tell the software that a halt has begun */
5878 sc_stop(sc, SCF_HALTED);
5879
5880 status = read_kctxt_csr(dd, hw_context, SEND_CTXT_ERR_STATUS);
5881
5882 dd_dev_info(dd, "Send Context %u(%u) Error: %s\n", sw_index, hw_context,
Jubin John17fb4f22016-02-14 20:21:52 -08005883 send_context_err_status_string(flags, sizeof(flags),
5884 status));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005885
5886 if (status & SEND_CTXT_ERR_STATUS_PIO_DISALLOWED_PACKET_ERR_SMASK)
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005887 handle_send_egress_err_info(dd, sc_to_vl(dd, sw_index));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005888
5889 /*
5890 * Automatically restart halted kernel contexts out of interrupt
5891 * context. User contexts must ask the driver to restart the context.
5892 */
5893 if (sc->type != SC_USER)
5894 queue_work(dd->pport->hfi1_wq, &sc->halt_work);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005895
5896 /*
5897 * Update the counters for the corresponding status bits.
5898 * Note that these particular counters are aggregated over all
5899 * 160 contexts.
5900 */
5901 for (i = 0; i < NUM_SEND_CTXT_ERR_STATUS_COUNTERS; i++) {
5902 if (status & (1ull << i))
5903 incr_cntr64(&dd->sw_ctxt_err_status_cnt[i]);
5904 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005905}
5906
5907static void handle_sdma_eng_err(struct hfi1_devdata *dd,
5908 unsigned int source, u64 status)
5909{
5910 struct sdma_engine *sde;
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005911 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005912
5913 sde = &dd->per_sdma[source];
5914#ifdef CONFIG_SDMA_VERBOSITY
5915 dd_dev_err(sde->dd, "CONFIG SDMA(%u) %s:%d %s()\n", sde->this_idx,
5916 slashstrip(__FILE__), __LINE__, __func__);
5917 dd_dev_err(sde->dd, "CONFIG SDMA(%u) source: %u status 0x%llx\n",
5918 sde->this_idx, source, (unsigned long long)status);
5919#endif
Vennila Megavannana699c6c2016-01-11 18:30:56 -05005920 sde->err_cnt++;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005921 sdma_engine_error(sde, status);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005922
5923 /*
5924 * Update the counters for the corresponding status bits.
5925 * Note that these particular counters are aggregated over
5926 * all 16 DMA engines.
5927 */
5928 for (i = 0; i < NUM_SEND_DMA_ENG_ERR_STATUS_COUNTERS; i++) {
5929 if (status & (1ull << i))
5930 incr_cntr64(&dd->sw_send_dma_eng_err_status_cnt[i]);
5931 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005932}
5933
5934/*
5935 * CCE block SDMA error interrupt. Source is < 16.
5936 */
5937static void is_sdma_eng_err_int(struct hfi1_devdata *dd, unsigned int source)
5938{
5939#ifdef CONFIG_SDMA_VERBOSITY
5940 struct sdma_engine *sde = &dd->per_sdma[source];
5941
5942 dd_dev_err(dd, "CONFIG SDMA(%u) %s:%d %s()\n", sde->this_idx,
5943 slashstrip(__FILE__), __LINE__, __func__);
5944 dd_dev_err(dd, "CONFIG SDMA(%u) source: %u\n", sde->this_idx,
5945 source);
5946 sdma_dumpstate(sde);
5947#endif
5948 interrupt_clear_down(dd, source, &sdma_eng_err);
5949}
5950
5951/*
5952 * CCE block "various" interrupt. Source is < 8.
5953 */
5954static void is_various_int(struct hfi1_devdata *dd, unsigned int source)
5955{
5956 const struct err_reg_info *eri = &various_err[source];
5957
5958 /*
5959 * TCritInt cannot go through interrupt_clear_down()
5960 * because it is not a second tier interrupt. The handler
5961 * should be called directly.
5962 */
5963 if (source == TCRIT_INT_SOURCE)
5964 handle_temp_err(dd);
5965 else if (eri->handler)
5966 interrupt_clear_down(dd, 0, eri);
5967 else
5968 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08005969 "%s: Unimplemented/reserved interrupt %d\n",
5970 __func__, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005971}
5972
5973static void handle_qsfp_int(struct hfi1_devdata *dd, u32 src_ctx, u64 reg)
5974{
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08005975 /* src_ctx is always zero */
Mike Marciniszyn77241052015-07-30 15:17:43 -04005976 struct hfi1_pportdata *ppd = dd->pport;
5977 unsigned long flags;
5978 u64 qsfp_int_mgmt = (u64)(QSFP_HFI0_INT_N | QSFP_HFI0_MODPRST_N);
5979
5980 if (reg & QSFP_HFI0_MODPRST_N) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04005981 if (!qsfp_mod_present(ppd)) {
Easwar Hariharane8aa2842016-02-18 11:12:16 -08005982 dd_dev_info(dd, "%s: QSFP module removed\n",
5983 __func__);
5984
Mike Marciniszyn77241052015-07-30 15:17:43 -04005985 ppd->driver_link_ready = 0;
5986 /*
5987 * Cable removed, reset all our information about the
5988 * cache and cable capabilities
5989 */
5990
5991 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
5992 /*
5993 * We don't set cache_refresh_required here as we expect
5994 * an interrupt when a cable is inserted
5995 */
5996 ppd->qsfp_info.cache_valid = 0;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08005997 ppd->qsfp_info.reset_needed = 0;
5998 ppd->qsfp_info.limiting_active = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005999 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock,
Jubin John17fb4f22016-02-14 20:21:52 -08006000 flags);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006001 /* Invert the ModPresent pin now to detect plug-in */
6002 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_INVERT :
6003 ASIC_QSFP1_INVERT, qsfp_int_mgmt);
Bryan Morgana9c05e32016-02-03 14:30:49 -08006004
6005 if ((ppd->offline_disabled_reason >
6006 HFI1_ODR_MASK(
Easwar Hariharane1bf0d52016-02-03 14:36:58 -08006007 OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED)) ||
Bryan Morgana9c05e32016-02-03 14:30:49 -08006008 (ppd->offline_disabled_reason ==
6009 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE)))
6010 ppd->offline_disabled_reason =
6011 HFI1_ODR_MASK(
Easwar Hariharane1bf0d52016-02-03 14:36:58 -08006012 OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED);
Bryan Morgana9c05e32016-02-03 14:30:49 -08006013
Mike Marciniszyn77241052015-07-30 15:17:43 -04006014 if (ppd->host_link_state == HLS_DN_POLL) {
6015 /*
6016 * The link is still in POLL. This means
6017 * that the normal link down processing
6018 * will not happen. We have to do it here
6019 * before turning the DC off.
6020 */
6021 queue_work(ppd->hfi1_wq, &ppd->link_down_work);
6022 }
6023 } else {
Easwar Hariharane8aa2842016-02-18 11:12:16 -08006024 dd_dev_info(dd, "%s: QSFP module inserted\n",
6025 __func__);
6026
Mike Marciniszyn77241052015-07-30 15:17:43 -04006027 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
6028 ppd->qsfp_info.cache_valid = 0;
6029 ppd->qsfp_info.cache_refresh_required = 1;
6030 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock,
Jubin John17fb4f22016-02-14 20:21:52 -08006031 flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006032
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006033 /*
6034 * Stop inversion of ModPresent pin to detect
6035 * removal of the cable
6036 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006037 qsfp_int_mgmt &= ~(u64)QSFP_HFI0_MODPRST_N;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006038 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_INVERT :
6039 ASIC_QSFP1_INVERT, qsfp_int_mgmt);
6040
6041 ppd->offline_disabled_reason =
6042 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_TRANSIENT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006043 }
6044 }
6045
6046 if (reg & QSFP_HFI0_INT_N) {
Easwar Hariharane8aa2842016-02-18 11:12:16 -08006047 dd_dev_info(dd, "%s: Interrupt received from QSFP module\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006048 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006049 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
6050 ppd->qsfp_info.check_interrupt_flags = 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006051 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock, flags);
6052 }
6053
6054 /* Schedule the QSFP work only if there is a cable attached. */
6055 if (qsfp_mod_present(ppd))
6056 queue_work(ppd->hfi1_wq, &ppd->qsfp_info.qsfp_work);
6057}
6058
6059static int request_host_lcb_access(struct hfi1_devdata *dd)
6060{
6061 int ret;
6062
6063 ret = do_8051_command(dd, HCMD_MISC,
Jubin John17fb4f22016-02-14 20:21:52 -08006064 (u64)HCMD_MISC_REQUEST_LCB_ACCESS <<
6065 LOAD_DATA_FIELD_ID_SHIFT, NULL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006066 if (ret != HCMD_SUCCESS) {
6067 dd_dev_err(dd, "%s: command failed with error %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006068 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006069 }
6070 return ret == HCMD_SUCCESS ? 0 : -EBUSY;
6071}
6072
6073static int request_8051_lcb_access(struct hfi1_devdata *dd)
6074{
6075 int ret;
6076
6077 ret = do_8051_command(dd, HCMD_MISC,
Jubin John17fb4f22016-02-14 20:21:52 -08006078 (u64)HCMD_MISC_GRANT_LCB_ACCESS <<
6079 LOAD_DATA_FIELD_ID_SHIFT, NULL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006080 if (ret != HCMD_SUCCESS) {
6081 dd_dev_err(dd, "%s: command failed with error %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006082 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006083 }
6084 return ret == HCMD_SUCCESS ? 0 : -EBUSY;
6085}
6086
6087/*
6088 * Set the LCB selector - allow host access. The DCC selector always
6089 * points to the host.
6090 */
6091static inline void set_host_lcb_access(struct hfi1_devdata *dd)
6092{
6093 write_csr(dd, DC_DC8051_CFG_CSR_ACCESS_SEL,
Jubin John17fb4f22016-02-14 20:21:52 -08006094 DC_DC8051_CFG_CSR_ACCESS_SEL_DCC_SMASK |
6095 DC_DC8051_CFG_CSR_ACCESS_SEL_LCB_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006096}
6097
6098/*
6099 * Clear the LCB selector - allow 8051 access. The DCC selector always
6100 * points to the host.
6101 */
6102static inline void set_8051_lcb_access(struct hfi1_devdata *dd)
6103{
6104 write_csr(dd, DC_DC8051_CFG_CSR_ACCESS_SEL,
Jubin John17fb4f22016-02-14 20:21:52 -08006105 DC_DC8051_CFG_CSR_ACCESS_SEL_DCC_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006106}
6107
6108/*
6109 * Acquire LCB access from the 8051. If the host already has access,
6110 * just increment a counter. Otherwise, inform the 8051 that the
6111 * host is taking access.
6112 *
6113 * Returns:
6114 * 0 on success
6115 * -EBUSY if the 8051 has control and cannot be disturbed
6116 * -errno if unable to acquire access from the 8051
6117 */
6118int acquire_lcb_access(struct hfi1_devdata *dd, int sleep_ok)
6119{
6120 struct hfi1_pportdata *ppd = dd->pport;
6121 int ret = 0;
6122
6123 /*
6124 * Use the host link state lock so the operation of this routine
6125 * { link state check, selector change, count increment } can occur
6126 * as a unit against a link state change. Otherwise there is a
6127 * race between the state change and the count increment.
6128 */
6129 if (sleep_ok) {
6130 mutex_lock(&ppd->hls_lock);
6131 } else {
Dan Carpenter951842b2015-09-16 09:22:51 +03006132 while (!mutex_trylock(&ppd->hls_lock))
Mike Marciniszyn77241052015-07-30 15:17:43 -04006133 udelay(1);
6134 }
6135
6136 /* this access is valid only when the link is up */
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07006137 if (ppd->host_link_state & HLS_DOWN) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006138 dd_dev_info(dd, "%s: link state %s not up\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006139 __func__, link_state_name(ppd->host_link_state));
Mike Marciniszyn77241052015-07-30 15:17:43 -04006140 ret = -EBUSY;
6141 goto done;
6142 }
6143
6144 if (dd->lcb_access_count == 0) {
6145 ret = request_host_lcb_access(dd);
6146 if (ret) {
6147 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006148 "%s: unable to acquire LCB access, err %d\n",
6149 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006150 goto done;
6151 }
6152 set_host_lcb_access(dd);
6153 }
6154 dd->lcb_access_count++;
6155done:
6156 mutex_unlock(&ppd->hls_lock);
6157 return ret;
6158}
6159
6160/*
6161 * Release LCB access by decrementing the use count. If the count is moving
6162 * from 1 to 0, inform 8051 that it has control back.
6163 *
6164 * Returns:
6165 * 0 on success
6166 * -errno if unable to release access to the 8051
6167 */
6168int release_lcb_access(struct hfi1_devdata *dd, int sleep_ok)
6169{
6170 int ret = 0;
6171
6172 /*
6173 * Use the host link state lock because the acquire needed it.
6174 * Here, we only need to keep { selector change, count decrement }
6175 * as a unit.
6176 */
6177 if (sleep_ok) {
6178 mutex_lock(&dd->pport->hls_lock);
6179 } else {
Dan Carpenter951842b2015-09-16 09:22:51 +03006180 while (!mutex_trylock(&dd->pport->hls_lock))
Mike Marciniszyn77241052015-07-30 15:17:43 -04006181 udelay(1);
6182 }
6183
6184 if (dd->lcb_access_count == 0) {
6185 dd_dev_err(dd, "%s: LCB access count is zero. Skipping.\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006186 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006187 goto done;
6188 }
6189
6190 if (dd->lcb_access_count == 1) {
6191 set_8051_lcb_access(dd);
6192 ret = request_8051_lcb_access(dd);
6193 if (ret) {
6194 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006195 "%s: unable to release LCB access, err %d\n",
6196 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006197 /* restore host access if the grant didn't work */
6198 set_host_lcb_access(dd);
6199 goto done;
6200 }
6201 }
6202 dd->lcb_access_count--;
6203done:
6204 mutex_unlock(&dd->pport->hls_lock);
6205 return ret;
6206}
6207
6208/*
6209 * Initialize LCB access variables and state. Called during driver load,
6210 * after most of the initialization is finished.
6211 *
6212 * The DC default is LCB access on for the host. The driver defaults to
6213 * leaving access to the 8051. Assign access now - this constrains the call
6214 * to this routine to be after all LCB set-up is done. In particular, after
6215 * hf1_init_dd() -> set_up_interrupts() -> clear_all_interrupts()
6216 */
6217static void init_lcb_access(struct hfi1_devdata *dd)
6218{
6219 dd->lcb_access_count = 0;
6220}
6221
6222/*
6223 * Write a response back to a 8051 request.
6224 */
6225static void hreq_response(struct hfi1_devdata *dd, u8 return_code, u16 rsp_data)
6226{
6227 write_csr(dd, DC_DC8051_CFG_EXT_DEV_0,
Jubin John17fb4f22016-02-14 20:21:52 -08006228 DC_DC8051_CFG_EXT_DEV_0_COMPLETED_SMASK |
6229 (u64)return_code <<
6230 DC_DC8051_CFG_EXT_DEV_0_RETURN_CODE_SHIFT |
6231 (u64)rsp_data << DC_DC8051_CFG_EXT_DEV_0_RSP_DATA_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006232}
6233
6234/*
Easwar Hariharancbac3862016-02-03 14:31:31 -08006235 * Handle host requests from the 8051.
Mike Marciniszyn77241052015-07-30 15:17:43 -04006236 */
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07006237static void handle_8051_request(struct hfi1_pportdata *ppd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006238{
Easwar Hariharancbac3862016-02-03 14:31:31 -08006239 struct hfi1_devdata *dd = ppd->dd;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006240 u64 reg;
Easwar Hariharancbac3862016-02-03 14:31:31 -08006241 u16 data = 0;
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07006242 u8 type;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006243
6244 reg = read_csr(dd, DC_DC8051_CFG_EXT_DEV_1);
6245 if ((reg & DC_DC8051_CFG_EXT_DEV_1_REQ_NEW_SMASK) == 0)
6246 return; /* no request */
6247
6248 /* zero out COMPLETED so the response is seen */
6249 write_csr(dd, DC_DC8051_CFG_EXT_DEV_0, 0);
6250
6251 /* extract request details */
6252 type = (reg >> DC_DC8051_CFG_EXT_DEV_1_REQ_TYPE_SHIFT)
6253 & DC_DC8051_CFG_EXT_DEV_1_REQ_TYPE_MASK;
6254 data = (reg >> DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_SHIFT)
6255 & DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_MASK;
6256
6257 switch (type) {
6258 case HREQ_LOAD_CONFIG:
6259 case HREQ_SAVE_CONFIG:
6260 case HREQ_READ_CONFIG:
6261 case HREQ_SET_TX_EQ_ABS:
6262 case HREQ_SET_TX_EQ_REL:
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07006263 case HREQ_ENABLE:
Mike Marciniszyn77241052015-07-30 15:17:43 -04006264 dd_dev_info(dd, "8051 request: request 0x%x not supported\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006265 type);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006266 hreq_response(dd, HREQ_NOT_SUPPORTED, 0);
6267 break;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006268 case HREQ_CONFIG_DONE:
6269 hreq_response(dd, HREQ_SUCCESS, 0);
6270 break;
6271
6272 case HREQ_INTERFACE_TEST:
6273 hreq_response(dd, HREQ_SUCCESS, data);
6274 break;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006275 default:
6276 dd_dev_err(dd, "8051 request: unknown request 0x%x\n", type);
6277 hreq_response(dd, HREQ_NOT_SUPPORTED, 0);
6278 break;
6279 }
6280}
6281
6282static void write_global_credit(struct hfi1_devdata *dd,
6283 u8 vau, u16 total, u16 shared)
6284{
6285 write_csr(dd, SEND_CM_GLOBAL_CREDIT,
Jubin John17fb4f22016-02-14 20:21:52 -08006286 ((u64)total <<
6287 SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SHIFT) |
6288 ((u64)shared <<
6289 SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SHIFT) |
6290 ((u64)vau << SEND_CM_GLOBAL_CREDIT_AU_SHIFT));
Mike Marciniszyn77241052015-07-30 15:17:43 -04006291}
6292
6293/*
6294 * Set up initial VL15 credits of the remote. Assumes the rest of
6295 * the CM credit registers are zero from a previous global or credit reset .
6296 */
6297void set_up_vl15(struct hfi1_devdata *dd, u8 vau, u16 vl15buf)
6298{
6299 /* leave shared count at zero for both global and VL15 */
6300 write_global_credit(dd, vau, vl15buf, 0);
6301
6302 /* We may need some credits for another VL when sending packets
6303 * with the snoop interface. Dividing it down the middle for VL15
6304 * and VL0 should suffice.
6305 */
6306 if (unlikely(dd->hfi1_snoop.mode_flag == HFI1_PORT_SNOOP_MODE)) {
6307 write_csr(dd, SEND_CM_CREDIT_VL15, (u64)(vl15buf >> 1)
6308 << SEND_CM_CREDIT_VL15_DEDICATED_LIMIT_VL_SHIFT);
6309 write_csr(dd, SEND_CM_CREDIT_VL, (u64)(vl15buf >> 1)
6310 << SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_SHIFT);
6311 } else {
6312 write_csr(dd, SEND_CM_CREDIT_VL15, (u64)vl15buf
6313 << SEND_CM_CREDIT_VL15_DEDICATED_LIMIT_VL_SHIFT);
6314 }
6315}
6316
6317/*
6318 * Zero all credit details from the previous connection and
6319 * reset the CM manager's internal counters.
6320 */
6321void reset_link_credits(struct hfi1_devdata *dd)
6322{
6323 int i;
6324
6325 /* remove all previous VL credit limits */
6326 for (i = 0; i < TXE_NUM_DATA_VL; i++)
Jubin John8638b772016-02-14 20:19:24 -08006327 write_csr(dd, SEND_CM_CREDIT_VL + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006328 write_csr(dd, SEND_CM_CREDIT_VL15, 0);
6329 write_global_credit(dd, 0, 0, 0);
6330 /* reset the CM block */
6331 pio_send_control(dd, PSC_CM_RESET);
6332}
6333
6334/* convert a vCU to a CU */
6335static u32 vcu_to_cu(u8 vcu)
6336{
6337 return 1 << vcu;
6338}
6339
6340/* convert a CU to a vCU */
6341static u8 cu_to_vcu(u32 cu)
6342{
6343 return ilog2(cu);
6344}
6345
6346/* convert a vAU to an AU */
6347static u32 vau_to_au(u8 vau)
6348{
6349 return 8 * (1 << vau);
6350}
6351
6352static void set_linkup_defaults(struct hfi1_pportdata *ppd)
6353{
6354 ppd->sm_trap_qp = 0x0;
6355 ppd->sa_qp = 0x1;
6356}
6357
6358/*
6359 * Graceful LCB shutdown. This leaves the LCB FIFOs in reset.
6360 */
6361static void lcb_shutdown(struct hfi1_devdata *dd, int abort)
6362{
6363 u64 reg;
6364
6365 /* clear lcb run: LCB_CFG_RUN.EN = 0 */
6366 write_csr(dd, DC_LCB_CFG_RUN, 0);
6367 /* set tx fifo reset: LCB_CFG_TX_FIFOS_RESET.VAL = 1 */
6368 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET,
Jubin John17fb4f22016-02-14 20:21:52 -08006369 1ull << DC_LCB_CFG_TX_FIFOS_RESET_VAL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006370 /* set dcc reset csr: DCC_CFG_RESET.{reset_lcb,reset_rx_fpe} = 1 */
6371 dd->lcb_err_en = read_csr(dd, DC_LCB_ERR_EN);
6372 reg = read_csr(dd, DCC_CFG_RESET);
Jubin John17fb4f22016-02-14 20:21:52 -08006373 write_csr(dd, DCC_CFG_RESET, reg |
6374 (1ull << DCC_CFG_RESET_RESET_LCB_SHIFT) |
6375 (1ull << DCC_CFG_RESET_RESET_RX_FPE_SHIFT));
Jubin John50e5dcb2016-02-14 20:19:41 -08006376 (void)read_csr(dd, DCC_CFG_RESET); /* make sure the write completed */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006377 if (!abort) {
6378 udelay(1); /* must hold for the longer of 16cclks or 20ns */
6379 write_csr(dd, DCC_CFG_RESET, reg);
6380 write_csr(dd, DC_LCB_ERR_EN, dd->lcb_err_en);
6381 }
6382}
6383
6384/*
6385 * This routine should be called after the link has been transitioned to
6386 * OFFLINE (OFFLINE state has the side effect of putting the SerDes into
6387 * reset).
6388 *
6389 * The expectation is that the caller of this routine would have taken
6390 * care of properly transitioning the link into the correct state.
6391 */
6392static void dc_shutdown(struct hfi1_devdata *dd)
6393{
6394 unsigned long flags;
6395
6396 spin_lock_irqsave(&dd->dc8051_lock, flags);
6397 if (dd->dc_shutdown) {
6398 spin_unlock_irqrestore(&dd->dc8051_lock, flags);
6399 return;
6400 }
6401 dd->dc_shutdown = 1;
6402 spin_unlock_irqrestore(&dd->dc8051_lock, flags);
6403 /* Shutdown the LCB */
6404 lcb_shutdown(dd, 1);
Jubin John4d114fd2016-02-14 20:21:43 -08006405 /*
6406 * Going to OFFLINE would have causes the 8051 to put the
Mike Marciniszyn77241052015-07-30 15:17:43 -04006407 * SerDes into reset already. Just need to shut down the 8051,
Jubin John4d114fd2016-02-14 20:21:43 -08006408 * itself.
6409 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006410 write_csr(dd, DC_DC8051_CFG_RST, 0x1);
6411}
6412
Jubin John4d114fd2016-02-14 20:21:43 -08006413/*
6414 * Calling this after the DC has been brought out of reset should not
6415 * do any damage.
6416 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006417static void dc_start(struct hfi1_devdata *dd)
6418{
6419 unsigned long flags;
6420 int ret;
6421
6422 spin_lock_irqsave(&dd->dc8051_lock, flags);
6423 if (!dd->dc_shutdown)
6424 goto done;
6425 spin_unlock_irqrestore(&dd->dc8051_lock, flags);
6426 /* Take the 8051 out of reset */
6427 write_csr(dd, DC_DC8051_CFG_RST, 0ull);
6428 /* Wait until 8051 is ready */
6429 ret = wait_fm_ready(dd, TIMEOUT_8051_START);
6430 if (ret) {
6431 dd_dev_err(dd, "%s: timeout starting 8051 firmware\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006432 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006433 }
6434 /* Take away reset for LCB and RX FPE (set in lcb_shutdown). */
6435 write_csr(dd, DCC_CFG_RESET, 0x10);
6436 /* lcb_shutdown() with abort=1 does not restore these */
6437 write_csr(dd, DC_LCB_ERR_EN, dd->lcb_err_en);
6438 spin_lock_irqsave(&dd->dc8051_lock, flags);
6439 dd->dc_shutdown = 0;
6440done:
6441 spin_unlock_irqrestore(&dd->dc8051_lock, flags);
6442}
6443
6444/*
6445 * These LCB adjustments are for the Aurora SerDes core in the FPGA.
6446 */
6447static void adjust_lcb_for_fpga_serdes(struct hfi1_devdata *dd)
6448{
6449 u64 rx_radr, tx_radr;
6450 u32 version;
6451
6452 if (dd->icode != ICODE_FPGA_EMULATION)
6453 return;
6454
6455 /*
6456 * These LCB defaults on emulator _s are good, nothing to do here:
6457 * LCB_CFG_TX_FIFOS_RADR
6458 * LCB_CFG_RX_FIFOS_RADR
6459 * LCB_CFG_LN_DCLK
6460 * LCB_CFG_IGNORE_LOST_RCLK
6461 */
6462 if (is_emulator_s(dd))
6463 return;
6464 /* else this is _p */
6465
6466 version = emulator_rev(dd);
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05006467 if (!is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -04006468 version = 0x2d; /* all B0 use 0x2d or higher settings */
6469
6470 if (version <= 0x12) {
6471 /* release 0x12 and below */
6472
6473 /*
6474 * LCB_CFG_RX_FIFOS_RADR.RST_VAL = 0x9
6475 * LCB_CFG_RX_FIFOS_RADR.OK_TO_JUMP_VAL = 0x9
6476 * LCB_CFG_RX_FIFOS_RADR.DO_NOT_JUMP_VAL = 0xa
6477 */
6478 rx_radr =
6479 0xaull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6480 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6481 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6482 /*
6483 * LCB_CFG_TX_FIFOS_RADR.ON_REINIT = 0 (default)
6484 * LCB_CFG_TX_FIFOS_RADR.RST_VAL = 6
6485 */
6486 tx_radr = 6ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6487 } else if (version <= 0x18) {
6488 /* release 0x13 up to 0x18 */
6489 /* LCB_CFG_RX_FIFOS_RADR = 0x988 */
6490 rx_radr =
6491 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6492 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6493 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6494 tx_radr = 7ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6495 } else if (version == 0x19) {
6496 /* release 0x19 */
6497 /* LCB_CFG_RX_FIFOS_RADR = 0xa99 */
6498 rx_radr =
6499 0xAull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6500 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6501 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6502 tx_radr = 3ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6503 } else if (version == 0x1a) {
6504 /* release 0x1a */
6505 /* LCB_CFG_RX_FIFOS_RADR = 0x988 */
6506 rx_radr =
6507 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6508 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6509 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6510 tx_radr = 7ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6511 write_csr(dd, DC_LCB_CFG_LN_DCLK, 1ull);
6512 } else {
6513 /* release 0x1b and higher */
6514 /* LCB_CFG_RX_FIFOS_RADR = 0x877 */
6515 rx_radr =
6516 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6517 | 0x7ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6518 | 0x7ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6519 tx_radr = 3ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6520 }
6521
6522 write_csr(dd, DC_LCB_CFG_RX_FIFOS_RADR, rx_radr);
6523 /* LCB_CFG_IGNORE_LOST_RCLK.EN = 1 */
6524 write_csr(dd, DC_LCB_CFG_IGNORE_LOST_RCLK,
Jubin John17fb4f22016-02-14 20:21:52 -08006525 DC_LCB_CFG_IGNORE_LOST_RCLK_EN_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006526 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RADR, tx_radr);
6527}
6528
6529/*
6530 * Handle a SMA idle message
6531 *
6532 * This is a work-queue function outside of the interrupt.
6533 */
6534void handle_sma_message(struct work_struct *work)
6535{
6536 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
6537 sma_message_work);
6538 struct hfi1_devdata *dd = ppd->dd;
6539 u64 msg;
6540 int ret;
6541
Jubin John4d114fd2016-02-14 20:21:43 -08006542 /*
6543 * msg is bytes 1-4 of the 40-bit idle message - the command code
6544 * is stripped off
6545 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006546 ret = read_idle_sma(dd, &msg);
6547 if (ret)
6548 return;
6549 dd_dev_info(dd, "%s: SMA message 0x%llx\n", __func__, msg);
6550 /*
6551 * React to the SMA message. Byte[1] (0 for us) is the command.
6552 */
6553 switch (msg & 0xff) {
6554 case SMA_IDLE_ARM:
6555 /*
6556 * See OPAv1 table 9-14 - HFI and External Switch Ports Key
6557 * State Transitions
6558 *
6559 * Only expected in INIT or ARMED, discard otherwise.
6560 */
6561 if (ppd->host_link_state & (HLS_UP_INIT | HLS_UP_ARMED))
6562 ppd->neighbor_normal = 1;
6563 break;
6564 case SMA_IDLE_ACTIVE:
6565 /*
6566 * See OPAv1 table 9-14 - HFI and External Switch Ports Key
6567 * State Transitions
6568 *
6569 * Can activate the node. Discard otherwise.
6570 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08006571 if (ppd->host_link_state == HLS_UP_ARMED &&
6572 ppd->is_active_optimize_enabled) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006573 ppd->neighbor_normal = 1;
6574 ret = set_link_state(ppd, HLS_UP_ACTIVE);
6575 if (ret)
6576 dd_dev_err(
6577 dd,
6578 "%s: received Active SMA idle message, couldn't set link to Active\n",
6579 __func__);
6580 }
6581 break;
6582 default:
6583 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006584 "%s: received unexpected SMA idle message 0x%llx\n",
6585 __func__, msg);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006586 break;
6587 }
6588}
6589
6590static void adjust_rcvctrl(struct hfi1_devdata *dd, u64 add, u64 clear)
6591{
6592 u64 rcvctrl;
6593 unsigned long flags;
6594
6595 spin_lock_irqsave(&dd->rcvctrl_lock, flags);
6596 rcvctrl = read_csr(dd, RCV_CTRL);
6597 rcvctrl |= add;
6598 rcvctrl &= ~clear;
6599 write_csr(dd, RCV_CTRL, rcvctrl);
6600 spin_unlock_irqrestore(&dd->rcvctrl_lock, flags);
6601}
6602
6603static inline void add_rcvctrl(struct hfi1_devdata *dd, u64 add)
6604{
6605 adjust_rcvctrl(dd, add, 0);
6606}
6607
6608static inline void clear_rcvctrl(struct hfi1_devdata *dd, u64 clear)
6609{
6610 adjust_rcvctrl(dd, 0, clear);
6611}
6612
6613/*
6614 * Called from all interrupt handlers to start handling an SPC freeze.
6615 */
6616void start_freeze_handling(struct hfi1_pportdata *ppd, int flags)
6617{
6618 struct hfi1_devdata *dd = ppd->dd;
6619 struct send_context *sc;
6620 int i;
6621
6622 if (flags & FREEZE_SELF)
6623 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_FREEZE_SMASK);
6624
6625 /* enter frozen mode */
6626 dd->flags |= HFI1_FROZEN;
6627
6628 /* notify all SDMA engines that they are going into a freeze */
6629 sdma_freeze_notify(dd, !!(flags & FREEZE_LINK_DOWN));
6630
6631 /* do halt pre-handling on all enabled send contexts */
6632 for (i = 0; i < dd->num_send_contexts; i++) {
6633 sc = dd->send_contexts[i].sc;
6634 if (sc && (sc->flags & SCF_ENABLED))
6635 sc_stop(sc, SCF_FROZEN | SCF_HALTED);
6636 }
6637
6638 /* Send context are frozen. Notify user space */
6639 hfi1_set_uevent_bits(ppd, _HFI1_EVENT_FROZEN_BIT);
6640
6641 if (flags & FREEZE_ABORT) {
6642 dd_dev_err(dd,
6643 "Aborted freeze recovery. Please REBOOT system\n");
6644 return;
6645 }
6646 /* queue non-interrupt handler */
6647 queue_work(ppd->hfi1_wq, &ppd->freeze_work);
6648}
6649
6650/*
6651 * Wait until all 4 sub-blocks indicate that they have frozen or unfrozen,
6652 * depending on the "freeze" parameter.
6653 *
6654 * No need to return an error if it times out, our only option
6655 * is to proceed anyway.
6656 */
6657static void wait_for_freeze_status(struct hfi1_devdata *dd, int freeze)
6658{
6659 unsigned long timeout;
6660 u64 reg;
6661
6662 timeout = jiffies + msecs_to_jiffies(FREEZE_STATUS_TIMEOUT);
6663 while (1) {
6664 reg = read_csr(dd, CCE_STATUS);
6665 if (freeze) {
6666 /* waiting until all indicators are set */
6667 if ((reg & ALL_FROZE) == ALL_FROZE)
6668 return; /* all done */
6669 } else {
6670 /* waiting until all indicators are clear */
6671 if ((reg & ALL_FROZE) == 0)
6672 return; /* all done */
6673 }
6674
6675 if (time_after(jiffies, timeout)) {
6676 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006677 "Time out waiting for SPC %sfreeze, bits 0x%llx, expecting 0x%llx, continuing",
6678 freeze ? "" : "un", reg & ALL_FROZE,
6679 freeze ? ALL_FROZE : 0ull);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006680 return;
6681 }
6682 usleep_range(80, 120);
6683 }
6684}
6685
6686/*
6687 * Do all freeze handling for the RXE block.
6688 */
6689static void rxe_freeze(struct hfi1_devdata *dd)
6690{
6691 int i;
6692
6693 /* disable port */
6694 clear_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
6695
6696 /* disable all receive contexts */
6697 for (i = 0; i < dd->num_rcv_contexts; i++)
6698 hfi1_rcvctrl(dd, HFI1_RCVCTRL_CTXT_DIS, i);
6699}
6700
6701/*
6702 * Unfreeze handling for the RXE block - kernel contexts only.
6703 * This will also enable the port. User contexts will do unfreeze
6704 * handling on a per-context basis as they call into the driver.
6705 *
6706 */
6707static void rxe_kernel_unfreeze(struct hfi1_devdata *dd)
6708{
Mitko Haralanov566c1572016-02-03 14:32:49 -08006709 u32 rcvmask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006710 int i;
6711
6712 /* enable all kernel contexts */
Mitko Haralanov566c1572016-02-03 14:32:49 -08006713 for (i = 0; i < dd->n_krcv_queues; i++) {
6714 rcvmask = HFI1_RCVCTRL_CTXT_ENB;
6715 /* HFI1_RCVCTRL_TAILUPD_[ENB|DIS] needs to be set explicitly */
6716 rcvmask |= HFI1_CAP_KGET_MASK(dd->rcd[i]->flags, DMA_RTAIL) ?
6717 HFI1_RCVCTRL_TAILUPD_ENB : HFI1_RCVCTRL_TAILUPD_DIS;
6718 hfi1_rcvctrl(dd, rcvmask, i);
6719 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04006720
6721 /* enable port */
6722 add_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
6723}
6724
6725/*
6726 * Non-interrupt SPC freeze handling.
6727 *
6728 * This is a work-queue function outside of the triggering interrupt.
6729 */
6730void handle_freeze(struct work_struct *work)
6731{
6732 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
6733 freeze_work);
6734 struct hfi1_devdata *dd = ppd->dd;
6735
6736 /* wait for freeze indicators on all affected blocks */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006737 wait_for_freeze_status(dd, 1);
6738
6739 /* SPC is now frozen */
6740
6741 /* do send PIO freeze steps */
6742 pio_freeze(dd);
6743
6744 /* do send DMA freeze steps */
6745 sdma_freeze(dd);
6746
6747 /* do send egress freeze steps - nothing to do */
6748
6749 /* do receive freeze steps */
6750 rxe_freeze(dd);
6751
6752 /*
6753 * Unfreeze the hardware - clear the freeze, wait for each
6754 * block's frozen bit to clear, then clear the frozen flag.
6755 */
6756 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_UNFREEZE_SMASK);
6757 wait_for_freeze_status(dd, 0);
6758
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05006759 if (is_ax(dd)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006760 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_FREEZE_SMASK);
6761 wait_for_freeze_status(dd, 1);
6762 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_UNFREEZE_SMASK);
6763 wait_for_freeze_status(dd, 0);
6764 }
6765
6766 /* do send PIO unfreeze steps for kernel contexts */
6767 pio_kernel_unfreeze(dd);
6768
6769 /* do send DMA unfreeze steps */
6770 sdma_unfreeze(dd);
6771
6772 /* do send egress unfreeze steps - nothing to do */
6773
6774 /* do receive unfreeze steps for kernel contexts */
6775 rxe_kernel_unfreeze(dd);
6776
6777 /*
6778 * The unfreeze procedure touches global device registers when
6779 * it disables and re-enables RXE. Mark the device unfrozen
6780 * after all that is done so other parts of the driver waiting
6781 * for the device to unfreeze don't do things out of order.
6782 *
6783 * The above implies that the meaning of HFI1_FROZEN flag is
6784 * "Device has gone into freeze mode and freeze mode handling
6785 * is still in progress."
6786 *
6787 * The flag will be removed when freeze mode processing has
6788 * completed.
6789 */
6790 dd->flags &= ~HFI1_FROZEN;
6791 wake_up(&dd->event_queue);
6792
6793 /* no longer frozen */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006794}
6795
6796/*
6797 * Handle a link up interrupt from the 8051.
6798 *
6799 * This is a work-queue function outside of the interrupt.
6800 */
6801void handle_link_up(struct work_struct *work)
6802{
6803 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
Jubin John17fb4f22016-02-14 20:21:52 -08006804 link_up_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006805 set_link_state(ppd, HLS_UP_INIT);
6806
6807 /* cache the read of DC_LCB_STS_ROUND_TRIP_LTP_CNT */
6808 read_ltp_rtt(ppd->dd);
6809 /*
6810 * OPA specifies that certain counters are cleared on a transition
6811 * to link up, so do that.
6812 */
6813 clear_linkup_counters(ppd->dd);
6814 /*
6815 * And (re)set link up default values.
6816 */
6817 set_linkup_defaults(ppd);
6818
6819 /* enforce link speed enabled */
6820 if ((ppd->link_speed_active & ppd->link_speed_enabled) == 0) {
6821 /* oops - current speed is not enabled, bounce */
6822 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006823 "Link speed active 0x%x is outside enabled 0x%x, downing link\n",
6824 ppd->link_speed_active, ppd->link_speed_enabled);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006825 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_SPEED_POLICY, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08006826 OPA_LINKDOWN_REASON_SPEED_POLICY);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006827 set_link_state(ppd, HLS_DN_OFFLINE);
6828 start_link(ppd);
6829 }
6830}
6831
Jubin John4d114fd2016-02-14 20:21:43 -08006832/*
6833 * Several pieces of LNI information were cached for SMA in ppd.
6834 * Reset these on link down
6835 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006836static void reset_neighbor_info(struct hfi1_pportdata *ppd)
6837{
6838 ppd->neighbor_guid = 0;
6839 ppd->neighbor_port_number = 0;
6840 ppd->neighbor_type = 0;
6841 ppd->neighbor_fm_security = 0;
6842}
6843
Dean Luickfeb831d2016-04-14 08:31:36 -07006844static const char * const link_down_reason_strs[] = {
6845 [OPA_LINKDOWN_REASON_NONE] = "None",
6846 [OPA_LINKDOWN_REASON_RCV_ERROR_0] = "Recive error 0",
6847 [OPA_LINKDOWN_REASON_BAD_PKT_LEN] = "Bad packet length",
6848 [OPA_LINKDOWN_REASON_PKT_TOO_LONG] = "Packet too long",
6849 [OPA_LINKDOWN_REASON_PKT_TOO_SHORT] = "Packet too short",
6850 [OPA_LINKDOWN_REASON_BAD_SLID] = "Bad SLID",
6851 [OPA_LINKDOWN_REASON_BAD_DLID] = "Bad DLID",
6852 [OPA_LINKDOWN_REASON_BAD_L2] = "Bad L2",
6853 [OPA_LINKDOWN_REASON_BAD_SC] = "Bad SC",
6854 [OPA_LINKDOWN_REASON_RCV_ERROR_8] = "Receive error 8",
6855 [OPA_LINKDOWN_REASON_BAD_MID_TAIL] = "Bad mid tail",
6856 [OPA_LINKDOWN_REASON_RCV_ERROR_10] = "Receive error 10",
6857 [OPA_LINKDOWN_REASON_PREEMPT_ERROR] = "Preempt error",
6858 [OPA_LINKDOWN_REASON_PREEMPT_VL15] = "Preempt vl15",
6859 [OPA_LINKDOWN_REASON_BAD_VL_MARKER] = "Bad VL marker",
6860 [OPA_LINKDOWN_REASON_RCV_ERROR_14] = "Receive error 14",
6861 [OPA_LINKDOWN_REASON_RCV_ERROR_15] = "Receive error 15",
6862 [OPA_LINKDOWN_REASON_BAD_HEAD_DIST] = "Bad head distance",
6863 [OPA_LINKDOWN_REASON_BAD_TAIL_DIST] = "Bad tail distance",
6864 [OPA_LINKDOWN_REASON_BAD_CTRL_DIST] = "Bad control distance",
6865 [OPA_LINKDOWN_REASON_BAD_CREDIT_ACK] = "Bad credit ack",
6866 [OPA_LINKDOWN_REASON_UNSUPPORTED_VL_MARKER] = "Unsupported VL marker",
6867 [OPA_LINKDOWN_REASON_BAD_PREEMPT] = "Bad preempt",
6868 [OPA_LINKDOWN_REASON_BAD_CONTROL_FLIT] = "Bad control flit",
6869 [OPA_LINKDOWN_REASON_EXCEED_MULTICAST_LIMIT] = "Exceed multicast limit",
6870 [OPA_LINKDOWN_REASON_RCV_ERROR_24] = "Receive error 24",
6871 [OPA_LINKDOWN_REASON_RCV_ERROR_25] = "Receive error 25",
6872 [OPA_LINKDOWN_REASON_RCV_ERROR_26] = "Receive error 26",
6873 [OPA_LINKDOWN_REASON_RCV_ERROR_27] = "Receive error 27",
6874 [OPA_LINKDOWN_REASON_RCV_ERROR_28] = "Receive error 28",
6875 [OPA_LINKDOWN_REASON_RCV_ERROR_29] = "Receive error 29",
6876 [OPA_LINKDOWN_REASON_RCV_ERROR_30] = "Receive error 30",
6877 [OPA_LINKDOWN_REASON_EXCESSIVE_BUFFER_OVERRUN] =
6878 "Excessive buffer overrun",
6879 [OPA_LINKDOWN_REASON_UNKNOWN] = "Unknown",
6880 [OPA_LINKDOWN_REASON_REBOOT] = "Reboot",
6881 [OPA_LINKDOWN_REASON_NEIGHBOR_UNKNOWN] = "Neighbor unknown",
6882 [OPA_LINKDOWN_REASON_FM_BOUNCE] = "FM bounce",
6883 [OPA_LINKDOWN_REASON_SPEED_POLICY] = "Speed policy",
6884 [OPA_LINKDOWN_REASON_WIDTH_POLICY] = "Width policy",
6885 [OPA_LINKDOWN_REASON_DISCONNECTED] = "Disconnected",
6886 [OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED] =
6887 "Local media not installed",
6888 [OPA_LINKDOWN_REASON_NOT_INSTALLED] = "Not installed",
6889 [OPA_LINKDOWN_REASON_CHASSIS_CONFIG] = "Chassis config",
6890 [OPA_LINKDOWN_REASON_END_TO_END_NOT_INSTALLED] =
6891 "End to end not installed",
6892 [OPA_LINKDOWN_REASON_POWER_POLICY] = "Power policy",
6893 [OPA_LINKDOWN_REASON_LINKSPEED_POLICY] = "Link speed policy",
6894 [OPA_LINKDOWN_REASON_LINKWIDTH_POLICY] = "Link width policy",
6895 [OPA_LINKDOWN_REASON_SWITCH_MGMT] = "Switch management",
6896 [OPA_LINKDOWN_REASON_SMA_DISABLED] = "SMA disabled",
6897 [OPA_LINKDOWN_REASON_TRANSIENT] = "Transient"
6898};
6899
6900/* return the neighbor link down reason string */
6901static const char *link_down_reason_str(u8 reason)
6902{
6903 const char *str = NULL;
6904
6905 if (reason < ARRAY_SIZE(link_down_reason_strs))
6906 str = link_down_reason_strs[reason];
6907 if (!str)
6908 str = "(invalid)";
6909
6910 return str;
6911}
6912
Mike Marciniszyn77241052015-07-30 15:17:43 -04006913/*
6914 * Handle a link down interrupt from the 8051.
6915 *
6916 * This is a work-queue function outside of the interrupt.
6917 */
6918void handle_link_down(struct work_struct *work)
6919{
6920 u8 lcl_reason, neigh_reason = 0;
Dean Luickfeb831d2016-04-14 08:31:36 -07006921 u8 link_down_reason;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006922 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
Dean Luickfeb831d2016-04-14 08:31:36 -07006923 link_down_work);
6924 int was_up;
6925 static const char ldr_str[] = "Link down reason: ";
Mike Marciniszyn77241052015-07-30 15:17:43 -04006926
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006927 if ((ppd->host_link_state &
6928 (HLS_DN_POLL | HLS_VERIFY_CAP | HLS_GOING_UP)) &&
6929 ppd->port_type == PORT_TYPE_FIXED)
6930 ppd->offline_disabled_reason =
6931 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NOT_INSTALLED);
6932
6933 /* Go offline first, then deal with reading/writing through 8051 */
Dean Luickfeb831d2016-04-14 08:31:36 -07006934 was_up = !!(ppd->host_link_state & HLS_UP);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006935 set_link_state(ppd, HLS_DN_OFFLINE);
6936
Dean Luickfeb831d2016-04-14 08:31:36 -07006937 if (was_up) {
6938 lcl_reason = 0;
6939 /* link down reason is only valid if the link was up */
6940 read_link_down_reason(ppd->dd, &link_down_reason);
6941 switch (link_down_reason) {
6942 case LDR_LINK_TRANSFER_ACTIVE_LOW:
6943 /* the link went down, no idle message reason */
6944 dd_dev_info(ppd->dd, "%sUnexpected link down\n",
6945 ldr_str);
6946 break;
6947 case LDR_RECEIVED_LINKDOWN_IDLE_MSG:
6948 /*
6949 * The neighbor reason is only valid if an idle message
6950 * was received for it.
6951 */
6952 read_planned_down_reason_code(ppd->dd, &neigh_reason);
6953 dd_dev_info(ppd->dd,
6954 "%sNeighbor link down message %d, %s\n",
6955 ldr_str, neigh_reason,
6956 link_down_reason_str(neigh_reason));
6957 break;
6958 case LDR_RECEIVED_HOST_OFFLINE_REQ:
6959 dd_dev_info(ppd->dd,
6960 "%sHost requested link to go offline\n",
6961 ldr_str);
6962 break;
6963 default:
6964 dd_dev_info(ppd->dd, "%sUnknown reason 0x%x\n",
6965 ldr_str, link_down_reason);
6966 break;
6967 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04006968
Dean Luickfeb831d2016-04-14 08:31:36 -07006969 /*
6970 * If no reason, assume peer-initiated but missed
6971 * LinkGoingDown idle flits.
6972 */
6973 if (neigh_reason == 0)
6974 lcl_reason = OPA_LINKDOWN_REASON_NEIGHBOR_UNKNOWN;
6975 } else {
6976 /* went down while polling or going up */
6977 lcl_reason = OPA_LINKDOWN_REASON_TRANSIENT;
6978 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04006979
6980 set_link_down_reason(ppd, lcl_reason, neigh_reason, 0);
6981
Dean Luick015e91f2016-04-14 08:31:42 -07006982 /* inform the SMA when the link transitions from up to down */
6983 if (was_up && ppd->local_link_down_reason.sma == 0 &&
6984 ppd->neigh_link_down_reason.sma == 0) {
6985 ppd->local_link_down_reason.sma =
6986 ppd->local_link_down_reason.latest;
6987 ppd->neigh_link_down_reason.sma =
6988 ppd->neigh_link_down_reason.latest;
6989 }
6990
Mike Marciniszyn77241052015-07-30 15:17:43 -04006991 reset_neighbor_info(ppd);
6992
6993 /* disable the port */
6994 clear_rcvctrl(ppd->dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
6995
Jubin John4d114fd2016-02-14 20:21:43 -08006996 /*
6997 * If there is no cable attached, turn the DC off. Otherwise,
6998 * start the link bring up.
6999 */
Dean Luick0db9dec2016-09-06 04:35:20 -07007000 if (ppd->port_type == PORT_TYPE_QSFP && !qsfp_mod_present(ppd))
Mike Marciniszyn77241052015-07-30 15:17:43 -04007001 dc_shutdown(ppd->dd);
Dean Luick0db9dec2016-09-06 04:35:20 -07007002 else
Mike Marciniszyn77241052015-07-30 15:17:43 -04007003 start_link(ppd);
7004}
7005
7006void handle_link_bounce(struct work_struct *work)
7007{
7008 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
7009 link_bounce_work);
7010
7011 /*
7012 * Only do something if the link is currently up.
7013 */
7014 if (ppd->host_link_state & HLS_UP) {
7015 set_link_state(ppd, HLS_DN_OFFLINE);
7016 start_link(ppd);
7017 } else {
7018 dd_dev_info(ppd->dd, "%s: link not up (%s), nothing to do\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007019 __func__, link_state_name(ppd->host_link_state));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007020 }
7021}
7022
7023/*
7024 * Mask conversion: Capability exchange to Port LTP. The capability
7025 * exchange has an implicit 16b CRC that is mandatory.
7026 */
7027static int cap_to_port_ltp(int cap)
7028{
7029 int port_ltp = PORT_LTP_CRC_MODE_16; /* this mode is mandatory */
7030
7031 if (cap & CAP_CRC_14B)
7032 port_ltp |= PORT_LTP_CRC_MODE_14;
7033 if (cap & CAP_CRC_48B)
7034 port_ltp |= PORT_LTP_CRC_MODE_48;
7035 if (cap & CAP_CRC_12B_16B_PER_LANE)
7036 port_ltp |= PORT_LTP_CRC_MODE_PER_LANE;
7037
7038 return port_ltp;
7039}
7040
7041/*
7042 * Convert an OPA Port LTP mask to capability mask
7043 */
7044int port_ltp_to_cap(int port_ltp)
7045{
7046 int cap_mask = 0;
7047
7048 if (port_ltp & PORT_LTP_CRC_MODE_14)
7049 cap_mask |= CAP_CRC_14B;
7050 if (port_ltp & PORT_LTP_CRC_MODE_48)
7051 cap_mask |= CAP_CRC_48B;
7052 if (port_ltp & PORT_LTP_CRC_MODE_PER_LANE)
7053 cap_mask |= CAP_CRC_12B_16B_PER_LANE;
7054
7055 return cap_mask;
7056}
7057
7058/*
7059 * Convert a single DC LCB CRC mode to an OPA Port LTP mask.
7060 */
7061static int lcb_to_port_ltp(int lcb_crc)
7062{
7063 int port_ltp = 0;
7064
7065 if (lcb_crc == LCB_CRC_12B_16B_PER_LANE)
7066 port_ltp = PORT_LTP_CRC_MODE_PER_LANE;
7067 else if (lcb_crc == LCB_CRC_48B)
7068 port_ltp = PORT_LTP_CRC_MODE_48;
7069 else if (lcb_crc == LCB_CRC_14B)
7070 port_ltp = PORT_LTP_CRC_MODE_14;
7071 else
7072 port_ltp = PORT_LTP_CRC_MODE_16;
7073
7074 return port_ltp;
7075}
7076
7077/*
7078 * Our neighbor has indicated that we are allowed to act as a fabric
7079 * manager, so place the full management partition key in the second
7080 * (0-based) pkey array position (see OPAv1, section 20.2.2.6.8). Note
7081 * that we should already have the limited management partition key in
7082 * array element 1, and also that the port is not yet up when
7083 * add_full_mgmt_pkey() is invoked.
7084 */
7085static void add_full_mgmt_pkey(struct hfi1_pportdata *ppd)
7086{
7087 struct hfi1_devdata *dd = ppd->dd;
7088
Dean Luick87645222015-12-01 15:38:21 -05007089 /* Sanity check - ppd->pkeys[2] should be 0, or already initalized */
7090 if (!((ppd->pkeys[2] == 0) || (ppd->pkeys[2] == FULL_MGMT_P_KEY)))
7091 dd_dev_warn(dd, "%s pkey[2] already set to 0x%x, resetting it to 0x%x\n",
7092 __func__, ppd->pkeys[2], FULL_MGMT_P_KEY);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007093 ppd->pkeys[2] = FULL_MGMT_P_KEY;
7094 (void)hfi1_set_ib_cfg(ppd, HFI1_IB_CFG_PKEYS, 0);
Sebastian Sanchez34d351f2016-06-09 07:52:03 -07007095 hfi1_event_pkey_change(ppd->dd, ppd->port);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007096}
7097
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07007098static void clear_full_mgmt_pkey(struct hfi1_pportdata *ppd)
Sebastian Sanchezce8b2fd2016-05-24 12:50:47 -07007099{
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07007100 if (ppd->pkeys[2] != 0) {
7101 ppd->pkeys[2] = 0;
7102 (void)hfi1_set_ib_cfg(ppd, HFI1_IB_CFG_PKEYS, 0);
Sebastian Sanchez34d351f2016-06-09 07:52:03 -07007103 hfi1_event_pkey_change(ppd->dd, ppd->port);
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07007104 }
Sebastian Sanchezce8b2fd2016-05-24 12:50:47 -07007105}
7106
Mike Marciniszyn77241052015-07-30 15:17:43 -04007107/*
7108 * Convert the given link width to the OPA link width bitmask.
7109 */
7110static u16 link_width_to_bits(struct hfi1_devdata *dd, u16 width)
7111{
7112 switch (width) {
7113 case 0:
7114 /*
7115 * Simulator and quick linkup do not set the width.
7116 * Just set it to 4x without complaint.
7117 */
7118 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR || quick_linkup)
7119 return OPA_LINK_WIDTH_4X;
7120 return 0; /* no lanes up */
7121 case 1: return OPA_LINK_WIDTH_1X;
7122 case 2: return OPA_LINK_WIDTH_2X;
7123 case 3: return OPA_LINK_WIDTH_3X;
7124 default:
7125 dd_dev_info(dd, "%s: invalid width %d, using 4\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007126 __func__, width);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007127 /* fall through */
7128 case 4: return OPA_LINK_WIDTH_4X;
7129 }
7130}
7131
7132/*
7133 * Do a population count on the bottom nibble.
7134 */
7135static const u8 bit_counts[16] = {
7136 0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4
7137};
Jubin Johnf4d507c2016-02-14 20:20:25 -08007138
Mike Marciniszyn77241052015-07-30 15:17:43 -04007139static inline u8 nibble_to_count(u8 nibble)
7140{
7141 return bit_counts[nibble & 0xf];
7142}
7143
7144/*
7145 * Read the active lane information from the 8051 registers and return
7146 * their widths.
7147 *
7148 * Active lane information is found in these 8051 registers:
7149 * enable_lane_tx
7150 * enable_lane_rx
7151 */
7152static void get_link_widths(struct hfi1_devdata *dd, u16 *tx_width,
7153 u16 *rx_width)
7154{
7155 u16 tx, rx;
7156 u8 enable_lane_rx;
7157 u8 enable_lane_tx;
7158 u8 tx_polarity_inversion;
7159 u8 rx_polarity_inversion;
7160 u8 max_rate;
7161
7162 /* read the active lanes */
7163 read_tx_settings(dd, &enable_lane_tx, &tx_polarity_inversion,
Jubin John17fb4f22016-02-14 20:21:52 -08007164 &rx_polarity_inversion, &max_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007165 read_local_lni(dd, &enable_lane_rx);
7166
7167 /* convert to counts */
7168 tx = nibble_to_count(enable_lane_tx);
7169 rx = nibble_to_count(enable_lane_rx);
7170
7171 /*
7172 * Set link_speed_active here, overriding what was set in
7173 * handle_verify_cap(). The ASIC 8051 firmware does not correctly
7174 * set the max_rate field in handle_verify_cap until v0.19.
7175 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08007176 if ((dd->icode == ICODE_RTL_SILICON) &&
7177 (dd->dc8051_ver < dc8051_ver(0, 19))) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007178 /* max_rate: 0 = 12.5G, 1 = 25G */
7179 switch (max_rate) {
7180 case 0:
7181 dd->pport[0].link_speed_active = OPA_LINK_SPEED_12_5G;
7182 break;
7183 default:
7184 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007185 "%s: unexpected max rate %d, using 25Gb\n",
7186 __func__, (int)max_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007187 /* fall through */
7188 case 1:
7189 dd->pport[0].link_speed_active = OPA_LINK_SPEED_25G;
7190 break;
7191 }
7192 }
7193
7194 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007195 "Fabric active lanes (width): tx 0x%x (%d), rx 0x%x (%d)\n",
7196 enable_lane_tx, tx, enable_lane_rx, rx);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007197 *tx_width = link_width_to_bits(dd, tx);
7198 *rx_width = link_width_to_bits(dd, rx);
7199}
7200
7201/*
7202 * Read verify_cap_local_fm_link_width[1] to obtain the link widths.
7203 * Valid after the end of VerifyCap and during LinkUp. Does not change
7204 * after link up. I.e. look elsewhere for downgrade information.
7205 *
7206 * Bits are:
7207 * + bits [7:4] contain the number of active transmitters
7208 * + bits [3:0] contain the number of active receivers
7209 * These are numbers 1 through 4 and can be different values if the
7210 * link is asymmetric.
7211 *
7212 * verify_cap_local_fm_link_width[0] retains its original value.
7213 */
7214static void get_linkup_widths(struct hfi1_devdata *dd, u16 *tx_width,
7215 u16 *rx_width)
7216{
7217 u16 widths, tx, rx;
7218 u8 misc_bits, local_flags;
7219 u16 active_tx, active_rx;
7220
7221 read_vc_local_link_width(dd, &misc_bits, &local_flags, &widths);
7222 tx = widths >> 12;
7223 rx = (widths >> 8) & 0xf;
7224
7225 *tx_width = link_width_to_bits(dd, tx);
7226 *rx_width = link_width_to_bits(dd, rx);
7227
7228 /* print the active widths */
7229 get_link_widths(dd, &active_tx, &active_rx);
7230}
7231
7232/*
7233 * Set ppd->link_width_active and ppd->link_width_downgrade_active using
7234 * hardware information when the link first comes up.
7235 *
7236 * The link width is not available until after VerifyCap.AllFramesReceived
7237 * (the trigger for handle_verify_cap), so this is outside that routine
7238 * and should be called when the 8051 signals linkup.
7239 */
7240void get_linkup_link_widths(struct hfi1_pportdata *ppd)
7241{
7242 u16 tx_width, rx_width;
7243
7244 /* get end-of-LNI link widths */
7245 get_linkup_widths(ppd->dd, &tx_width, &rx_width);
7246
7247 /* use tx_width as the link is supposed to be symmetric on link up */
7248 ppd->link_width_active = tx_width;
7249 /* link width downgrade active (LWD.A) starts out matching LW.A */
7250 ppd->link_width_downgrade_tx_active = ppd->link_width_active;
7251 ppd->link_width_downgrade_rx_active = ppd->link_width_active;
7252 /* per OPA spec, on link up LWD.E resets to LWD.S */
7253 ppd->link_width_downgrade_enabled = ppd->link_width_downgrade_supported;
7254 /* cache the active egress rate (units {10^6 bits/sec]) */
7255 ppd->current_egress_rate = active_egress_rate(ppd);
7256}
7257
7258/*
7259 * Handle a verify capabilities interrupt from the 8051.
7260 *
7261 * This is a work-queue function outside of the interrupt.
7262 */
7263void handle_verify_cap(struct work_struct *work)
7264{
7265 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
7266 link_vc_work);
7267 struct hfi1_devdata *dd = ppd->dd;
7268 u64 reg;
7269 u8 power_management;
7270 u8 continious;
7271 u8 vcu;
7272 u8 vau;
7273 u8 z;
7274 u16 vl15buf;
7275 u16 link_widths;
7276 u16 crc_mask;
7277 u16 crc_val;
7278 u16 device_id;
7279 u16 active_tx, active_rx;
7280 u8 partner_supported_crc;
7281 u8 remote_tx_rate;
7282 u8 device_rev;
7283
7284 set_link_state(ppd, HLS_VERIFY_CAP);
7285
7286 lcb_shutdown(dd, 0);
7287 adjust_lcb_for_fpga_serdes(dd);
7288
7289 /*
7290 * These are now valid:
7291 * remote VerifyCap fields in the general LNI config
7292 * CSR DC8051_STS_REMOTE_GUID
7293 * CSR DC8051_STS_REMOTE_NODE_TYPE
7294 * CSR DC8051_STS_REMOTE_FM_SECURITY
7295 * CSR DC8051_STS_REMOTE_PORT_NO
7296 */
7297
7298 read_vc_remote_phy(dd, &power_management, &continious);
Jubin John17fb4f22016-02-14 20:21:52 -08007299 read_vc_remote_fabric(dd, &vau, &z, &vcu, &vl15buf,
7300 &partner_supported_crc);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007301 read_vc_remote_link_width(dd, &remote_tx_rate, &link_widths);
7302 read_remote_device_id(dd, &device_id, &device_rev);
7303 /*
7304 * And the 'MgmtAllowed' information, which is exchanged during
7305 * LNI, is also be available at this point.
7306 */
7307 read_mgmt_allowed(dd, &ppd->mgmt_allowed);
7308 /* print the active widths */
7309 get_link_widths(dd, &active_tx, &active_rx);
7310 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007311 "Peer PHY: power management 0x%x, continuous updates 0x%x\n",
7312 (int)power_management, (int)continious);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007313 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007314 "Peer Fabric: vAU %d, Z %d, vCU %d, vl15 credits 0x%x, CRC sizes 0x%x\n",
7315 (int)vau, (int)z, (int)vcu, (int)vl15buf,
7316 (int)partner_supported_crc);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007317 dd_dev_info(dd, "Peer Link Width: tx rate 0x%x, widths 0x%x\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007318 (u32)remote_tx_rate, (u32)link_widths);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007319 dd_dev_info(dd, "Peer Device ID: 0x%04x, Revision 0x%02x\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007320 (u32)device_id, (u32)device_rev);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007321 /*
7322 * The peer vAU value just read is the peer receiver value. HFI does
7323 * not support a transmit vAU of 0 (AU == 8). We advertised that
7324 * with Z=1 in the fabric capabilities sent to the peer. The peer
7325 * will see our Z=1, and, if it advertised a vAU of 0, will move its
7326 * receive to vAU of 1 (AU == 16). Do the same here. We do not care
7327 * about the peer Z value - our sent vAU is 3 (hardwired) and is not
7328 * subject to the Z value exception.
7329 */
7330 if (vau == 0)
7331 vau = 1;
7332 set_up_vl15(dd, vau, vl15buf);
7333
7334 /* set up the LCB CRC mode */
7335 crc_mask = ppd->port_crc_mode_enabled & partner_supported_crc;
7336
7337 /* order is important: use the lowest bit in common */
7338 if (crc_mask & CAP_CRC_14B)
7339 crc_val = LCB_CRC_14B;
7340 else if (crc_mask & CAP_CRC_48B)
7341 crc_val = LCB_CRC_48B;
7342 else if (crc_mask & CAP_CRC_12B_16B_PER_LANE)
7343 crc_val = LCB_CRC_12B_16B_PER_LANE;
7344 else
7345 crc_val = LCB_CRC_16B;
7346
7347 dd_dev_info(dd, "Final LCB CRC mode: %d\n", (int)crc_val);
7348 write_csr(dd, DC_LCB_CFG_CRC_MODE,
7349 (u64)crc_val << DC_LCB_CFG_CRC_MODE_TX_VAL_SHIFT);
7350
7351 /* set (14b only) or clear sideband credit */
7352 reg = read_csr(dd, SEND_CM_CTRL);
7353 if (crc_val == LCB_CRC_14B && crc_14b_sideband) {
7354 write_csr(dd, SEND_CM_CTRL,
Jubin John17fb4f22016-02-14 20:21:52 -08007355 reg | SEND_CM_CTRL_FORCE_CREDIT_MODE_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007356 } else {
7357 write_csr(dd, SEND_CM_CTRL,
Jubin John17fb4f22016-02-14 20:21:52 -08007358 reg & ~SEND_CM_CTRL_FORCE_CREDIT_MODE_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007359 }
7360
7361 ppd->link_speed_active = 0; /* invalid value */
7362 if (dd->dc8051_ver < dc8051_ver(0, 20)) {
7363 /* remote_tx_rate: 0 = 12.5G, 1 = 25G */
7364 switch (remote_tx_rate) {
7365 case 0:
7366 ppd->link_speed_active = OPA_LINK_SPEED_12_5G;
7367 break;
7368 case 1:
7369 ppd->link_speed_active = OPA_LINK_SPEED_25G;
7370 break;
7371 }
7372 } else {
7373 /* actual rate is highest bit of the ANDed rates */
7374 u8 rate = remote_tx_rate & ppd->local_tx_rate;
7375
7376 if (rate & 2)
7377 ppd->link_speed_active = OPA_LINK_SPEED_25G;
7378 else if (rate & 1)
7379 ppd->link_speed_active = OPA_LINK_SPEED_12_5G;
7380 }
7381 if (ppd->link_speed_active == 0) {
7382 dd_dev_err(dd, "%s: unexpected remote tx rate %d, using 25Gb\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007383 __func__, (int)remote_tx_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007384 ppd->link_speed_active = OPA_LINK_SPEED_25G;
7385 }
7386
7387 /*
7388 * Cache the values of the supported, enabled, and active
7389 * LTP CRC modes to return in 'portinfo' queries. But the bit
7390 * flags that are returned in the portinfo query differ from
7391 * what's in the link_crc_mask, crc_sizes, and crc_val
7392 * variables. Convert these here.
7393 */
7394 ppd->port_ltp_crc_mode = cap_to_port_ltp(link_crc_mask) << 8;
7395 /* supported crc modes */
7396 ppd->port_ltp_crc_mode |=
7397 cap_to_port_ltp(ppd->port_crc_mode_enabled) << 4;
7398 /* enabled crc modes */
7399 ppd->port_ltp_crc_mode |= lcb_to_port_ltp(crc_val);
7400 /* active crc mode */
7401
7402 /* set up the remote credit return table */
7403 assign_remote_cm_au_table(dd, vcu);
7404
7405 /*
7406 * The LCB is reset on entry to handle_verify_cap(), so this must
7407 * be applied on every link up.
7408 *
7409 * Adjust LCB error kill enable to kill the link if
7410 * these RBUF errors are seen:
7411 * REPLAY_BUF_MBE_SMASK
7412 * FLIT_INPUT_BUF_MBE_SMASK
7413 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05007414 if (is_ax(dd)) { /* fixed in B0 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04007415 reg = read_csr(dd, DC_LCB_CFG_LINK_KILL_EN);
7416 reg |= DC_LCB_CFG_LINK_KILL_EN_REPLAY_BUF_MBE_SMASK
7417 | DC_LCB_CFG_LINK_KILL_EN_FLIT_INPUT_BUF_MBE_SMASK;
7418 write_csr(dd, DC_LCB_CFG_LINK_KILL_EN, reg);
7419 }
7420
7421 /* pull LCB fifos out of reset - all fifo clocks must be stable */
7422 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0);
7423
7424 /* give 8051 access to the LCB CSRs */
7425 write_csr(dd, DC_LCB_ERR_EN, 0); /* mask LCB errors */
7426 set_8051_lcb_access(dd);
7427
7428 ppd->neighbor_guid =
7429 read_csr(dd, DC_DC8051_STS_REMOTE_GUID);
7430 ppd->neighbor_port_number = read_csr(dd, DC_DC8051_STS_REMOTE_PORT_NO) &
7431 DC_DC8051_STS_REMOTE_PORT_NO_VAL_SMASK;
7432 ppd->neighbor_type =
7433 read_csr(dd, DC_DC8051_STS_REMOTE_NODE_TYPE) &
7434 DC_DC8051_STS_REMOTE_NODE_TYPE_VAL_MASK;
7435 ppd->neighbor_fm_security =
7436 read_csr(dd, DC_DC8051_STS_REMOTE_FM_SECURITY) &
7437 DC_DC8051_STS_LOCAL_FM_SECURITY_DISABLED_MASK;
7438 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007439 "Neighbor Guid: %llx Neighbor type %d MgmtAllowed %d FM security bypass %d\n",
7440 ppd->neighbor_guid, ppd->neighbor_type,
7441 ppd->mgmt_allowed, ppd->neighbor_fm_security);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007442 if (ppd->mgmt_allowed)
7443 add_full_mgmt_pkey(ppd);
7444
7445 /* tell the 8051 to go to LinkUp */
7446 set_link_state(ppd, HLS_GOING_UP);
7447}
7448
7449/*
7450 * Apply the link width downgrade enabled policy against the current active
7451 * link widths.
7452 *
7453 * Called when the enabled policy changes or the active link widths change.
7454 */
7455void apply_link_downgrade_policy(struct hfi1_pportdata *ppd, int refresh_widths)
7456{
Mike Marciniszyn77241052015-07-30 15:17:43 -04007457 int do_bounce = 0;
Dean Luick323fd782015-11-16 21:59:24 -05007458 int tries;
7459 u16 lwde;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007460 u16 tx, rx;
7461
Dean Luick323fd782015-11-16 21:59:24 -05007462 /* use the hls lock to avoid a race with actual link up */
7463 tries = 0;
7464retry:
Mike Marciniszyn77241052015-07-30 15:17:43 -04007465 mutex_lock(&ppd->hls_lock);
7466 /* only apply if the link is up */
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07007467 if (ppd->host_link_state & HLS_DOWN) {
Dean Luick323fd782015-11-16 21:59:24 -05007468 /* still going up..wait and retry */
7469 if (ppd->host_link_state & HLS_GOING_UP) {
7470 if (++tries < 1000) {
7471 mutex_unlock(&ppd->hls_lock);
7472 usleep_range(100, 120); /* arbitrary */
7473 goto retry;
7474 }
7475 dd_dev_err(ppd->dd,
7476 "%s: giving up waiting for link state change\n",
7477 __func__);
7478 }
7479 goto done;
7480 }
7481
7482 lwde = ppd->link_width_downgrade_enabled;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007483
7484 if (refresh_widths) {
7485 get_link_widths(ppd->dd, &tx, &rx);
7486 ppd->link_width_downgrade_tx_active = tx;
7487 ppd->link_width_downgrade_rx_active = rx;
7488 }
7489
Dean Luickf9b56352016-04-14 08:31:30 -07007490 if (ppd->link_width_downgrade_tx_active == 0 ||
7491 ppd->link_width_downgrade_rx_active == 0) {
7492 /* the 8051 reported a dead link as a downgrade */
7493 dd_dev_err(ppd->dd, "Link downgrade is really a link down, ignoring\n");
7494 } else if (lwde == 0) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007495 /* downgrade is disabled */
7496
7497 /* bounce if not at starting active width */
7498 if ((ppd->link_width_active !=
Jubin John17fb4f22016-02-14 20:21:52 -08007499 ppd->link_width_downgrade_tx_active) ||
7500 (ppd->link_width_active !=
7501 ppd->link_width_downgrade_rx_active)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007502 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007503 "Link downgrade is disabled and link has downgraded, downing link\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04007504 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007505 " original 0x%x, tx active 0x%x, rx active 0x%x\n",
7506 ppd->link_width_active,
7507 ppd->link_width_downgrade_tx_active,
7508 ppd->link_width_downgrade_rx_active);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007509 do_bounce = 1;
7510 }
Jubin Johnd0d236e2016-02-14 20:20:15 -08007511 } else if ((lwde & ppd->link_width_downgrade_tx_active) == 0 ||
7512 (lwde & ppd->link_width_downgrade_rx_active) == 0) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007513 /* Tx or Rx is outside the enabled policy */
7514 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007515 "Link is outside of downgrade allowed, downing link\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04007516 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007517 " enabled 0x%x, tx active 0x%x, rx active 0x%x\n",
7518 lwde, ppd->link_width_downgrade_tx_active,
7519 ppd->link_width_downgrade_rx_active);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007520 do_bounce = 1;
7521 }
7522
Dean Luick323fd782015-11-16 21:59:24 -05007523done:
7524 mutex_unlock(&ppd->hls_lock);
7525
Mike Marciniszyn77241052015-07-30 15:17:43 -04007526 if (do_bounce) {
7527 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_WIDTH_POLICY, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08007528 OPA_LINKDOWN_REASON_WIDTH_POLICY);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007529 set_link_state(ppd, HLS_DN_OFFLINE);
7530 start_link(ppd);
7531 }
7532}
7533
7534/*
7535 * Handle a link downgrade interrupt from the 8051.
7536 *
7537 * This is a work-queue function outside of the interrupt.
7538 */
7539void handle_link_downgrade(struct work_struct *work)
7540{
7541 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
7542 link_downgrade_work);
7543
7544 dd_dev_info(ppd->dd, "8051: Link width downgrade\n");
7545 apply_link_downgrade_policy(ppd, 1);
7546}
7547
7548static char *dcc_err_string(char *buf, int buf_len, u64 flags)
7549{
7550 return flag_string(buf, buf_len, flags, dcc_err_flags,
7551 ARRAY_SIZE(dcc_err_flags));
7552}
7553
7554static char *lcb_err_string(char *buf, int buf_len, u64 flags)
7555{
7556 return flag_string(buf, buf_len, flags, lcb_err_flags,
7557 ARRAY_SIZE(lcb_err_flags));
7558}
7559
7560static char *dc8051_err_string(char *buf, int buf_len, u64 flags)
7561{
7562 return flag_string(buf, buf_len, flags, dc8051_err_flags,
7563 ARRAY_SIZE(dc8051_err_flags));
7564}
7565
7566static char *dc8051_info_err_string(char *buf, int buf_len, u64 flags)
7567{
7568 return flag_string(buf, buf_len, flags, dc8051_info_err_flags,
7569 ARRAY_SIZE(dc8051_info_err_flags));
7570}
7571
7572static char *dc8051_info_host_msg_string(char *buf, int buf_len, u64 flags)
7573{
7574 return flag_string(buf, buf_len, flags, dc8051_info_host_msg_flags,
7575 ARRAY_SIZE(dc8051_info_host_msg_flags));
7576}
7577
7578static void handle_8051_interrupt(struct hfi1_devdata *dd, u32 unused, u64 reg)
7579{
7580 struct hfi1_pportdata *ppd = dd->pport;
7581 u64 info, err, host_msg;
7582 int queue_link_down = 0;
7583 char buf[96];
7584
7585 /* look at the flags */
7586 if (reg & DC_DC8051_ERR_FLG_SET_BY_8051_SMASK) {
7587 /* 8051 information set by firmware */
7588 /* read DC8051_DBG_ERR_INFO_SET_BY_8051 for details */
7589 info = read_csr(dd, DC_DC8051_DBG_ERR_INFO_SET_BY_8051);
7590 err = (info >> DC_DC8051_DBG_ERR_INFO_SET_BY_8051_ERROR_SHIFT)
7591 & DC_DC8051_DBG_ERR_INFO_SET_BY_8051_ERROR_MASK;
7592 host_msg = (info >>
7593 DC_DC8051_DBG_ERR_INFO_SET_BY_8051_HOST_MSG_SHIFT)
7594 & DC_DC8051_DBG_ERR_INFO_SET_BY_8051_HOST_MSG_MASK;
7595
7596 /*
7597 * Handle error flags.
7598 */
7599 if (err & FAILED_LNI) {
7600 /*
7601 * LNI error indications are cleared by the 8051
7602 * only when starting polling. Only pay attention
7603 * to them when in the states that occur during
7604 * LNI.
7605 */
7606 if (ppd->host_link_state
7607 & (HLS_DN_POLL | HLS_VERIFY_CAP | HLS_GOING_UP)) {
7608 queue_link_down = 1;
7609 dd_dev_info(dd, "Link error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007610 dc8051_info_err_string(buf,
7611 sizeof(buf),
7612 err &
7613 FAILED_LNI));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007614 }
7615 err &= ~(u64)FAILED_LNI;
7616 }
Dean Luick6d014532015-12-01 15:38:23 -05007617 /* unknown frames can happen durning LNI, just count */
7618 if (err & UNKNOWN_FRAME) {
7619 ppd->unknown_frame_count++;
7620 err &= ~(u64)UNKNOWN_FRAME;
7621 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04007622 if (err) {
7623 /* report remaining errors, but do not do anything */
7624 dd_dev_err(dd, "8051 info error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007625 dc8051_info_err_string(buf, sizeof(buf),
7626 err));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007627 }
7628
7629 /*
7630 * Handle host message flags.
7631 */
7632 if (host_msg & HOST_REQ_DONE) {
7633 /*
7634 * Presently, the driver does a busy wait for
7635 * host requests to complete. This is only an
7636 * informational message.
7637 * NOTE: The 8051 clears the host message
7638 * information *on the next 8051 command*.
7639 * Therefore, when linkup is achieved,
7640 * this flag will still be set.
7641 */
7642 host_msg &= ~(u64)HOST_REQ_DONE;
7643 }
7644 if (host_msg & BC_SMA_MSG) {
7645 queue_work(ppd->hfi1_wq, &ppd->sma_message_work);
7646 host_msg &= ~(u64)BC_SMA_MSG;
7647 }
7648 if (host_msg & LINKUP_ACHIEVED) {
7649 dd_dev_info(dd, "8051: Link up\n");
7650 queue_work(ppd->hfi1_wq, &ppd->link_up_work);
7651 host_msg &= ~(u64)LINKUP_ACHIEVED;
7652 }
7653 if (host_msg & EXT_DEVICE_CFG_REQ) {
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07007654 handle_8051_request(ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007655 host_msg &= ~(u64)EXT_DEVICE_CFG_REQ;
7656 }
7657 if (host_msg & VERIFY_CAP_FRAME) {
7658 queue_work(ppd->hfi1_wq, &ppd->link_vc_work);
7659 host_msg &= ~(u64)VERIFY_CAP_FRAME;
7660 }
7661 if (host_msg & LINK_GOING_DOWN) {
7662 const char *extra = "";
7663 /* no downgrade action needed if going down */
7664 if (host_msg & LINK_WIDTH_DOWNGRADED) {
7665 host_msg &= ~(u64)LINK_WIDTH_DOWNGRADED;
7666 extra = " (ignoring downgrade)";
7667 }
7668 dd_dev_info(dd, "8051: Link down%s\n", extra);
7669 queue_link_down = 1;
7670 host_msg &= ~(u64)LINK_GOING_DOWN;
7671 }
7672 if (host_msg & LINK_WIDTH_DOWNGRADED) {
7673 queue_work(ppd->hfi1_wq, &ppd->link_downgrade_work);
7674 host_msg &= ~(u64)LINK_WIDTH_DOWNGRADED;
7675 }
7676 if (host_msg) {
7677 /* report remaining messages, but do not do anything */
7678 dd_dev_info(dd, "8051 info host message: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007679 dc8051_info_host_msg_string(buf,
7680 sizeof(buf),
7681 host_msg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007682 }
7683
7684 reg &= ~DC_DC8051_ERR_FLG_SET_BY_8051_SMASK;
7685 }
7686 if (reg & DC_DC8051_ERR_FLG_LOST_8051_HEART_BEAT_SMASK) {
7687 /*
7688 * Lost the 8051 heartbeat. If this happens, we
7689 * receive constant interrupts about it. Disable
7690 * the interrupt after the first.
7691 */
7692 dd_dev_err(dd, "Lost 8051 heartbeat\n");
7693 write_csr(dd, DC_DC8051_ERR_EN,
Jubin John17fb4f22016-02-14 20:21:52 -08007694 read_csr(dd, DC_DC8051_ERR_EN) &
7695 ~DC_DC8051_ERR_EN_LOST_8051_HEART_BEAT_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007696
7697 reg &= ~DC_DC8051_ERR_FLG_LOST_8051_HEART_BEAT_SMASK;
7698 }
7699 if (reg) {
7700 /* report the error, but do not do anything */
7701 dd_dev_err(dd, "8051 error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007702 dc8051_err_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007703 }
7704
7705 if (queue_link_down) {
Jubin John4d114fd2016-02-14 20:21:43 -08007706 /*
7707 * if the link is already going down or disabled, do not
7708 * queue another
7709 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08007710 if ((ppd->host_link_state &
7711 (HLS_GOING_OFFLINE | HLS_LINK_COOLDOWN)) ||
7712 ppd->link_enabled == 0) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007713 dd_dev_info(dd, "%s: not queuing link down\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007714 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007715 } else {
7716 queue_work(ppd->hfi1_wq, &ppd->link_down_work);
7717 }
7718 }
7719}
7720
7721static const char * const fm_config_txt[] = {
7722[0] =
7723 "BadHeadDist: Distance violation between two head flits",
7724[1] =
7725 "BadTailDist: Distance violation between two tail flits",
7726[2] =
7727 "BadCtrlDist: Distance violation between two credit control flits",
7728[3] =
7729 "BadCrdAck: Credits return for unsupported VL",
7730[4] =
7731 "UnsupportedVLMarker: Received VL Marker",
7732[5] =
7733 "BadPreempt: Exceeded the preemption nesting level",
7734[6] =
7735 "BadControlFlit: Received unsupported control flit",
7736/* no 7 */
7737[8] =
7738 "UnsupportedVLMarker: Received VL Marker for unconfigured or disabled VL",
7739};
7740
7741static const char * const port_rcv_txt[] = {
7742[1] =
7743 "BadPktLen: Illegal PktLen",
7744[2] =
7745 "PktLenTooLong: Packet longer than PktLen",
7746[3] =
7747 "PktLenTooShort: Packet shorter than PktLen",
7748[4] =
7749 "BadSLID: Illegal SLID (0, using multicast as SLID, does not include security validation of SLID)",
7750[5] =
7751 "BadDLID: Illegal DLID (0, doesn't match HFI)",
7752[6] =
7753 "BadL2: Illegal L2 opcode",
7754[7] =
7755 "BadSC: Unsupported SC",
7756[9] =
7757 "BadRC: Illegal RC",
7758[11] =
7759 "PreemptError: Preempting with same VL",
7760[12] =
7761 "PreemptVL15: Preempting a VL15 packet",
7762};
7763
7764#define OPA_LDR_FMCONFIG_OFFSET 16
7765#define OPA_LDR_PORTRCV_OFFSET 0
7766static void handle_dcc_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
7767{
7768 u64 info, hdr0, hdr1;
7769 const char *extra;
7770 char buf[96];
7771 struct hfi1_pportdata *ppd = dd->pport;
7772 u8 lcl_reason = 0;
7773 int do_bounce = 0;
7774
7775 if (reg & DCC_ERR_FLG_UNCORRECTABLE_ERR_SMASK) {
7776 if (!(dd->err_info_uncorrectable & OPA_EI_STATUS_SMASK)) {
7777 info = read_csr(dd, DCC_ERR_INFO_UNCORRECTABLE);
7778 dd->err_info_uncorrectable = info & OPA_EI_CODE_SMASK;
7779 /* set status bit */
7780 dd->err_info_uncorrectable |= OPA_EI_STATUS_SMASK;
7781 }
7782 reg &= ~DCC_ERR_FLG_UNCORRECTABLE_ERR_SMASK;
7783 }
7784
7785 if (reg & DCC_ERR_FLG_LINK_ERR_SMASK) {
7786 struct hfi1_pportdata *ppd = dd->pport;
7787 /* this counter saturates at (2^32) - 1 */
7788 if (ppd->link_downed < (u32)UINT_MAX)
7789 ppd->link_downed++;
7790 reg &= ~DCC_ERR_FLG_LINK_ERR_SMASK;
7791 }
7792
7793 if (reg & DCC_ERR_FLG_FMCONFIG_ERR_SMASK) {
7794 u8 reason_valid = 1;
7795
7796 info = read_csr(dd, DCC_ERR_INFO_FMCONFIG);
7797 if (!(dd->err_info_fmconfig & OPA_EI_STATUS_SMASK)) {
7798 dd->err_info_fmconfig = info & OPA_EI_CODE_SMASK;
7799 /* set status bit */
7800 dd->err_info_fmconfig |= OPA_EI_STATUS_SMASK;
7801 }
7802 switch (info) {
7803 case 0:
7804 case 1:
7805 case 2:
7806 case 3:
7807 case 4:
7808 case 5:
7809 case 6:
7810 extra = fm_config_txt[info];
7811 break;
7812 case 8:
7813 extra = fm_config_txt[info];
7814 if (ppd->port_error_action &
7815 OPA_PI_MASK_FM_CFG_UNSUPPORTED_VL_MARKER) {
7816 do_bounce = 1;
7817 /*
7818 * lcl_reason cannot be derived from info
7819 * for this error
7820 */
7821 lcl_reason =
7822 OPA_LINKDOWN_REASON_UNSUPPORTED_VL_MARKER;
7823 }
7824 break;
7825 default:
7826 reason_valid = 0;
7827 snprintf(buf, sizeof(buf), "reserved%lld", info);
7828 extra = buf;
7829 break;
7830 }
7831
7832 if (reason_valid && !do_bounce) {
7833 do_bounce = ppd->port_error_action &
7834 (1 << (OPA_LDR_FMCONFIG_OFFSET + info));
7835 lcl_reason = info + OPA_LINKDOWN_REASON_BAD_HEAD_DIST;
7836 }
7837
7838 /* just report this */
7839 dd_dev_info(dd, "DCC Error: fmconfig error: %s\n", extra);
7840 reg &= ~DCC_ERR_FLG_FMCONFIG_ERR_SMASK;
7841 }
7842
7843 if (reg & DCC_ERR_FLG_RCVPORT_ERR_SMASK) {
7844 u8 reason_valid = 1;
7845
7846 info = read_csr(dd, DCC_ERR_INFO_PORTRCV);
7847 hdr0 = read_csr(dd, DCC_ERR_INFO_PORTRCV_HDR0);
7848 hdr1 = read_csr(dd, DCC_ERR_INFO_PORTRCV_HDR1);
7849 if (!(dd->err_info_rcvport.status_and_code &
7850 OPA_EI_STATUS_SMASK)) {
7851 dd->err_info_rcvport.status_and_code =
7852 info & OPA_EI_CODE_SMASK;
7853 /* set status bit */
7854 dd->err_info_rcvport.status_and_code |=
7855 OPA_EI_STATUS_SMASK;
Jubin John4d114fd2016-02-14 20:21:43 -08007856 /*
7857 * save first 2 flits in the packet that caused
7858 * the error
7859 */
Bart Van Assche48a0cc132016-06-03 12:09:56 -07007860 dd->err_info_rcvport.packet_flit1 = hdr0;
7861 dd->err_info_rcvport.packet_flit2 = hdr1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007862 }
7863 switch (info) {
7864 case 1:
7865 case 2:
7866 case 3:
7867 case 4:
7868 case 5:
7869 case 6:
7870 case 7:
7871 case 9:
7872 case 11:
7873 case 12:
7874 extra = port_rcv_txt[info];
7875 break;
7876 default:
7877 reason_valid = 0;
7878 snprintf(buf, sizeof(buf), "reserved%lld", info);
7879 extra = buf;
7880 break;
7881 }
7882
7883 if (reason_valid && !do_bounce) {
7884 do_bounce = ppd->port_error_action &
7885 (1 << (OPA_LDR_PORTRCV_OFFSET + info));
7886 lcl_reason = info + OPA_LINKDOWN_REASON_RCV_ERROR_0;
7887 }
7888
7889 /* just report this */
7890 dd_dev_info(dd, "DCC Error: PortRcv error: %s\n", extra);
7891 dd_dev_info(dd, " hdr0 0x%llx, hdr1 0x%llx\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007892 hdr0, hdr1);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007893
7894 reg &= ~DCC_ERR_FLG_RCVPORT_ERR_SMASK;
7895 }
7896
7897 if (reg & DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_UC_SMASK) {
7898 /* informative only */
7899 dd_dev_info(dd, "8051 access to LCB blocked\n");
7900 reg &= ~DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_UC_SMASK;
7901 }
7902 if (reg & DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_HOST_SMASK) {
7903 /* informative only */
7904 dd_dev_info(dd, "host access to LCB blocked\n");
7905 reg &= ~DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_HOST_SMASK;
7906 }
7907
7908 /* report any remaining errors */
7909 if (reg)
7910 dd_dev_info(dd, "DCC Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007911 dcc_err_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007912
7913 if (lcl_reason == 0)
7914 lcl_reason = OPA_LINKDOWN_REASON_UNKNOWN;
7915
7916 if (do_bounce) {
7917 dd_dev_info(dd, "%s: PortErrorAction bounce\n", __func__);
7918 set_link_down_reason(ppd, lcl_reason, 0, lcl_reason);
7919 queue_work(ppd->hfi1_wq, &ppd->link_bounce_work);
7920 }
7921}
7922
7923static void handle_lcb_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
7924{
7925 char buf[96];
7926
7927 dd_dev_info(dd, "LCB Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007928 lcb_err_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007929}
7930
7931/*
7932 * CCE block DC interrupt. Source is < 8.
7933 */
7934static void is_dc_int(struct hfi1_devdata *dd, unsigned int source)
7935{
7936 const struct err_reg_info *eri = &dc_errs[source];
7937
7938 if (eri->handler) {
7939 interrupt_clear_down(dd, 0, eri);
7940 } else if (source == 3 /* dc_lbm_int */) {
7941 /*
7942 * This indicates that a parity error has occurred on the
7943 * address/control lines presented to the LBM. The error
7944 * is a single pulse, there is no associated error flag,
7945 * and it is non-maskable. This is because if a parity
7946 * error occurs on the request the request is dropped.
7947 * This should never occur, but it is nice to know if it
7948 * ever does.
7949 */
7950 dd_dev_err(dd, "Parity error in DC LBM block\n");
7951 } else {
7952 dd_dev_err(dd, "Invalid DC interrupt %u\n", source);
7953 }
7954}
7955
7956/*
7957 * TX block send credit interrupt. Source is < 160.
7958 */
7959static void is_send_credit_int(struct hfi1_devdata *dd, unsigned int source)
7960{
7961 sc_group_release_update(dd, source);
7962}
7963
7964/*
7965 * TX block SDMA interrupt. Source is < 48.
7966 *
7967 * SDMA interrupts are grouped by type:
7968 *
7969 * 0 - N-1 = SDma
7970 * N - 2N-1 = SDmaProgress
7971 * 2N - 3N-1 = SDmaIdle
7972 */
7973static void is_sdma_eng_int(struct hfi1_devdata *dd, unsigned int source)
7974{
7975 /* what interrupt */
7976 unsigned int what = source / TXE_NUM_SDMA_ENGINES;
7977 /* which engine */
7978 unsigned int which = source % TXE_NUM_SDMA_ENGINES;
7979
7980#ifdef CONFIG_SDMA_VERBOSITY
7981 dd_dev_err(dd, "CONFIG SDMA(%u) %s:%d %s()\n", which,
7982 slashstrip(__FILE__), __LINE__, __func__);
7983 sdma_dumpstate(&dd->per_sdma[which]);
7984#endif
7985
7986 if (likely(what < 3 && which < dd->num_sdma)) {
7987 sdma_engine_interrupt(&dd->per_sdma[which], 1ull << source);
7988 } else {
7989 /* should not happen */
7990 dd_dev_err(dd, "Invalid SDMA interrupt 0x%x\n", source);
7991 }
7992}
7993
7994/*
7995 * RX block receive available interrupt. Source is < 160.
7996 */
7997static void is_rcv_avail_int(struct hfi1_devdata *dd, unsigned int source)
7998{
7999 struct hfi1_ctxtdata *rcd;
8000 char *err_detail;
8001
8002 if (likely(source < dd->num_rcv_contexts)) {
8003 rcd = dd->rcd[source];
8004 if (rcd) {
8005 if (source < dd->first_user_ctxt)
Dean Luickf4f30031c2015-10-26 10:28:44 -04008006 rcd->do_interrupt(rcd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008007 else
8008 handle_user_interrupt(rcd);
8009 return; /* OK */
8010 }
8011 /* received an interrupt, but no rcd */
8012 err_detail = "dataless";
8013 } else {
8014 /* received an interrupt, but are not using that context */
8015 err_detail = "out of range";
8016 }
8017 dd_dev_err(dd, "unexpected %s receive available context interrupt %u\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008018 err_detail, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008019}
8020
8021/*
8022 * RX block receive urgent interrupt. Source is < 160.
8023 */
8024static void is_rcv_urgent_int(struct hfi1_devdata *dd, unsigned int source)
8025{
8026 struct hfi1_ctxtdata *rcd;
8027 char *err_detail;
8028
8029 if (likely(source < dd->num_rcv_contexts)) {
8030 rcd = dd->rcd[source];
8031 if (rcd) {
8032 /* only pay attention to user urgent interrupts */
8033 if (source >= dd->first_user_ctxt)
8034 handle_user_interrupt(rcd);
8035 return; /* OK */
8036 }
8037 /* received an interrupt, but no rcd */
8038 err_detail = "dataless";
8039 } else {
8040 /* received an interrupt, but are not using that context */
8041 err_detail = "out of range";
8042 }
8043 dd_dev_err(dd, "unexpected %s receive urgent context interrupt %u\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008044 err_detail, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008045}
8046
8047/*
8048 * Reserved range interrupt. Should not be called in normal operation.
8049 */
8050static void is_reserved_int(struct hfi1_devdata *dd, unsigned int source)
8051{
8052 char name[64];
8053
8054 dd_dev_err(dd, "unexpected %s interrupt\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008055 is_reserved_name(name, sizeof(name), source));
Mike Marciniszyn77241052015-07-30 15:17:43 -04008056}
8057
8058static const struct is_table is_table[] = {
Jubin John4d114fd2016-02-14 20:21:43 -08008059/*
8060 * start end
8061 * name func interrupt func
8062 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04008063{ IS_GENERAL_ERR_START, IS_GENERAL_ERR_END,
8064 is_misc_err_name, is_misc_err_int },
8065{ IS_SDMAENG_ERR_START, IS_SDMAENG_ERR_END,
8066 is_sdma_eng_err_name, is_sdma_eng_err_int },
8067{ IS_SENDCTXT_ERR_START, IS_SENDCTXT_ERR_END,
8068 is_sendctxt_err_name, is_sendctxt_err_int },
8069{ IS_SDMA_START, IS_SDMA_END,
8070 is_sdma_eng_name, is_sdma_eng_int },
8071{ IS_VARIOUS_START, IS_VARIOUS_END,
8072 is_various_name, is_various_int },
8073{ IS_DC_START, IS_DC_END,
8074 is_dc_name, is_dc_int },
8075{ IS_RCVAVAIL_START, IS_RCVAVAIL_END,
8076 is_rcv_avail_name, is_rcv_avail_int },
8077{ IS_RCVURGENT_START, IS_RCVURGENT_END,
8078 is_rcv_urgent_name, is_rcv_urgent_int },
8079{ IS_SENDCREDIT_START, IS_SENDCREDIT_END,
8080 is_send_credit_name, is_send_credit_int},
8081{ IS_RESERVED_START, IS_RESERVED_END,
8082 is_reserved_name, is_reserved_int},
8083};
8084
8085/*
8086 * Interrupt source interrupt - called when the given source has an interrupt.
8087 * Source is a bit index into an array of 64-bit integers.
8088 */
8089static void is_interrupt(struct hfi1_devdata *dd, unsigned int source)
8090{
8091 const struct is_table *entry;
8092
8093 /* avoids a double compare by walking the table in-order */
8094 for (entry = &is_table[0]; entry->is_name; entry++) {
8095 if (source < entry->end) {
8096 trace_hfi1_interrupt(dd, entry, source);
8097 entry->is_int(dd, source - entry->start);
8098 return;
8099 }
8100 }
8101 /* fell off the end */
8102 dd_dev_err(dd, "invalid interrupt source %u\n", source);
8103}
8104
8105/*
8106 * General interrupt handler. This is able to correctly handle
8107 * all interrupts in case INTx is used.
8108 */
8109static irqreturn_t general_interrupt(int irq, void *data)
8110{
8111 struct hfi1_devdata *dd = data;
8112 u64 regs[CCE_NUM_INT_CSRS];
8113 u32 bit;
8114 int i;
8115
8116 this_cpu_inc(*dd->int_counter);
8117
8118 /* phase 1: scan and clear all handled interrupts */
8119 for (i = 0; i < CCE_NUM_INT_CSRS; i++) {
8120 if (dd->gi_mask[i] == 0) {
8121 regs[i] = 0; /* used later */
8122 continue;
8123 }
8124 regs[i] = read_csr(dd, CCE_INT_STATUS + (8 * i)) &
8125 dd->gi_mask[i];
8126 /* only clear if anything is set */
8127 if (regs[i])
8128 write_csr(dd, CCE_INT_CLEAR + (8 * i), regs[i]);
8129 }
8130
8131 /* phase 2: call the appropriate handler */
8132 for_each_set_bit(bit, (unsigned long *)&regs[0],
Jubin John17fb4f22016-02-14 20:21:52 -08008133 CCE_NUM_INT_CSRS * 64) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04008134 is_interrupt(dd, bit);
8135 }
8136
8137 return IRQ_HANDLED;
8138}
8139
8140static irqreturn_t sdma_interrupt(int irq, void *data)
8141{
8142 struct sdma_engine *sde = data;
8143 struct hfi1_devdata *dd = sde->dd;
8144 u64 status;
8145
8146#ifdef CONFIG_SDMA_VERBOSITY
8147 dd_dev_err(dd, "CONFIG SDMA(%u) %s:%d %s()\n", sde->this_idx,
8148 slashstrip(__FILE__), __LINE__, __func__);
8149 sdma_dumpstate(sde);
8150#endif
8151
8152 this_cpu_inc(*dd->int_counter);
8153
8154 /* This read_csr is really bad in the hot path */
8155 status = read_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008156 CCE_INT_STATUS + (8 * (IS_SDMA_START / 64)))
8157 & sde->imask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008158 if (likely(status)) {
8159 /* clear the interrupt(s) */
8160 write_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008161 CCE_INT_CLEAR + (8 * (IS_SDMA_START / 64)),
8162 status);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008163
8164 /* handle the interrupt(s) */
8165 sdma_engine_interrupt(sde, status);
8166 } else
8167 dd_dev_err(dd, "SDMA engine %u interrupt, but no status bits set\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008168 sde->this_idx);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008169
8170 return IRQ_HANDLED;
8171}
8172
8173/*
Dean Luickecd42f82016-02-03 14:35:14 -08008174 * Clear the receive interrupt. Use a read of the interrupt clear CSR
8175 * to insure that the write completed. This does NOT guarantee that
8176 * queued DMA writes to memory from the chip are pushed.
Dean Luickf4f30031c2015-10-26 10:28:44 -04008177 */
8178static inline void clear_recv_intr(struct hfi1_ctxtdata *rcd)
8179{
8180 struct hfi1_devdata *dd = rcd->dd;
8181 u32 addr = CCE_INT_CLEAR + (8 * rcd->ireg);
8182
8183 mmiowb(); /* make sure everything before is written */
8184 write_csr(dd, addr, rcd->imask);
8185 /* force the above write on the chip and get a value back */
8186 (void)read_csr(dd, addr);
8187}
8188
8189/* force the receive interrupt */
Jim Snowfb9036d2016-01-11 18:32:21 -05008190void force_recv_intr(struct hfi1_ctxtdata *rcd)
Dean Luickf4f30031c2015-10-26 10:28:44 -04008191{
8192 write_csr(rcd->dd, CCE_INT_FORCE + (8 * rcd->ireg), rcd->imask);
8193}
8194
Dean Luickecd42f82016-02-03 14:35:14 -08008195/*
8196 * Return non-zero if a packet is present.
8197 *
8198 * This routine is called when rechecking for packets after the RcvAvail
8199 * interrupt has been cleared down. First, do a quick check of memory for
8200 * a packet present. If not found, use an expensive CSR read of the context
8201 * tail to determine the actual tail. The CSR read is necessary because there
8202 * is no method to push pending DMAs to memory other than an interrupt and we
8203 * are trying to determine if we need to force an interrupt.
8204 */
Dean Luickf4f30031c2015-10-26 10:28:44 -04008205static inline int check_packet_present(struct hfi1_ctxtdata *rcd)
8206{
Dean Luickecd42f82016-02-03 14:35:14 -08008207 u32 tail;
8208 int present;
Dean Luickf4f30031c2015-10-26 10:28:44 -04008209
Dean Luickecd42f82016-02-03 14:35:14 -08008210 if (!HFI1_CAP_IS_KSET(DMA_RTAIL))
8211 present = (rcd->seq_cnt ==
8212 rhf_rcv_seq(rhf_to_cpu(get_rhf_addr(rcd))));
8213 else /* is RDMA rtail */
8214 present = (rcd->head != get_rcvhdrtail(rcd));
8215
8216 if (present)
8217 return 1;
8218
8219 /* fall back to a CSR read, correct indpendent of DMA_RTAIL */
8220 tail = (u32)read_uctxt_csr(rcd->dd, rcd->ctxt, RCV_HDR_TAIL);
8221 return rcd->head != tail;
Dean Luickf4f30031c2015-10-26 10:28:44 -04008222}
8223
8224/*
8225 * Receive packet IRQ handler. This routine expects to be on its own IRQ.
8226 * This routine will try to handle packets immediately (latency), but if
8227 * it finds too many, it will invoke the thread handler (bandwitdh). The
Jubin John16733b82016-02-14 20:20:58 -08008228 * chip receive interrupt is *not* cleared down until this or the thread (if
Dean Luickf4f30031c2015-10-26 10:28:44 -04008229 * invoked) is finished. The intent is to avoid extra interrupts while we
8230 * are processing packets anyway.
Mike Marciniszyn77241052015-07-30 15:17:43 -04008231 */
8232static irqreturn_t receive_context_interrupt(int irq, void *data)
8233{
8234 struct hfi1_ctxtdata *rcd = data;
8235 struct hfi1_devdata *dd = rcd->dd;
Dean Luickf4f30031c2015-10-26 10:28:44 -04008236 int disposition;
8237 int present;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008238
8239 trace_hfi1_receive_interrupt(dd, rcd->ctxt);
8240 this_cpu_inc(*dd->int_counter);
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -08008241 aspm_ctx_disable(rcd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008242
Dean Luickf4f30031c2015-10-26 10:28:44 -04008243 /* receive interrupt remains blocked while processing packets */
8244 disposition = rcd->do_interrupt(rcd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008245
Dean Luickf4f30031c2015-10-26 10:28:44 -04008246 /*
8247 * Too many packets were seen while processing packets in this
8248 * IRQ handler. Invoke the handler thread. The receive interrupt
8249 * remains blocked.
8250 */
8251 if (disposition == RCV_PKT_LIMIT)
8252 return IRQ_WAKE_THREAD;
8253
8254 /*
8255 * The packet processor detected no more packets. Clear the receive
8256 * interrupt and recheck for a packet packet that may have arrived
8257 * after the previous check and interrupt clear. If a packet arrived,
8258 * force another interrupt.
8259 */
8260 clear_recv_intr(rcd);
8261 present = check_packet_present(rcd);
8262 if (present)
8263 force_recv_intr(rcd);
8264
8265 return IRQ_HANDLED;
8266}
8267
8268/*
8269 * Receive packet thread handler. This expects to be invoked with the
8270 * receive interrupt still blocked.
8271 */
8272static irqreturn_t receive_context_thread(int irq, void *data)
8273{
8274 struct hfi1_ctxtdata *rcd = data;
8275 int present;
8276
8277 /* receive interrupt is still blocked from the IRQ handler */
8278 (void)rcd->do_interrupt(rcd, 1);
8279
8280 /*
8281 * The packet processor will only return if it detected no more
8282 * packets. Hold IRQs here so we can safely clear the interrupt and
8283 * recheck for a packet that may have arrived after the previous
8284 * check and the interrupt clear. If a packet arrived, force another
8285 * interrupt.
8286 */
8287 local_irq_disable();
8288 clear_recv_intr(rcd);
8289 present = check_packet_present(rcd);
8290 if (present)
8291 force_recv_intr(rcd);
8292 local_irq_enable();
Mike Marciniszyn77241052015-07-30 15:17:43 -04008293
8294 return IRQ_HANDLED;
8295}
8296
8297/* ========================================================================= */
8298
8299u32 read_physical_state(struct hfi1_devdata *dd)
8300{
8301 u64 reg;
8302
8303 reg = read_csr(dd, DC_DC8051_STS_CUR_STATE);
8304 return (reg >> DC_DC8051_STS_CUR_STATE_PORT_SHIFT)
8305 & DC_DC8051_STS_CUR_STATE_PORT_MASK;
8306}
8307
Jim Snowfb9036d2016-01-11 18:32:21 -05008308u32 read_logical_state(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008309{
8310 u64 reg;
8311
8312 reg = read_csr(dd, DCC_CFG_PORT_CONFIG);
8313 return (reg >> DCC_CFG_PORT_CONFIG_LINK_STATE_SHIFT)
8314 & DCC_CFG_PORT_CONFIG_LINK_STATE_MASK;
8315}
8316
8317static void set_logical_state(struct hfi1_devdata *dd, u32 chip_lstate)
8318{
8319 u64 reg;
8320
8321 reg = read_csr(dd, DCC_CFG_PORT_CONFIG);
8322 /* clear current state, set new state */
8323 reg &= ~DCC_CFG_PORT_CONFIG_LINK_STATE_SMASK;
8324 reg |= (u64)chip_lstate << DCC_CFG_PORT_CONFIG_LINK_STATE_SHIFT;
8325 write_csr(dd, DCC_CFG_PORT_CONFIG, reg);
8326}
8327
8328/*
8329 * Use the 8051 to read a LCB CSR.
8330 */
8331static int read_lcb_via_8051(struct hfi1_devdata *dd, u32 addr, u64 *data)
8332{
8333 u32 regno;
8334 int ret;
8335
8336 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR) {
8337 if (acquire_lcb_access(dd, 0) == 0) {
8338 *data = read_csr(dd, addr);
8339 release_lcb_access(dd, 0);
8340 return 0;
8341 }
8342 return -EBUSY;
8343 }
8344
8345 /* register is an index of LCB registers: (offset - base) / 8 */
8346 regno = (addr - DC_LCB_CFG_RUN) >> 3;
8347 ret = do_8051_command(dd, HCMD_READ_LCB_CSR, regno, data);
8348 if (ret != HCMD_SUCCESS)
8349 return -EBUSY;
8350 return 0;
8351}
8352
8353/*
8354 * Read an LCB CSR. Access may not be in host control, so check.
8355 * Return 0 on success, -EBUSY on failure.
8356 */
8357int read_lcb_csr(struct hfi1_devdata *dd, u32 addr, u64 *data)
8358{
8359 struct hfi1_pportdata *ppd = dd->pport;
8360
8361 /* if up, go through the 8051 for the value */
8362 if (ppd->host_link_state & HLS_UP)
8363 return read_lcb_via_8051(dd, addr, data);
8364 /* if going up or down, no access */
8365 if (ppd->host_link_state & (HLS_GOING_UP | HLS_GOING_OFFLINE))
8366 return -EBUSY;
8367 /* otherwise, host has access */
8368 *data = read_csr(dd, addr);
8369 return 0;
8370}
8371
8372/*
8373 * Use the 8051 to write a LCB CSR.
8374 */
8375static int write_lcb_via_8051(struct hfi1_devdata *dd, u32 addr, u64 data)
8376{
Dean Luick3bf40d62015-11-06 20:07:04 -05008377 u32 regno;
8378 int ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008379
Dean Luick3bf40d62015-11-06 20:07:04 -05008380 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR ||
8381 (dd->dc8051_ver < dc8051_ver(0, 20))) {
8382 if (acquire_lcb_access(dd, 0) == 0) {
8383 write_csr(dd, addr, data);
8384 release_lcb_access(dd, 0);
8385 return 0;
8386 }
8387 return -EBUSY;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008388 }
Dean Luick3bf40d62015-11-06 20:07:04 -05008389
8390 /* register is an index of LCB registers: (offset - base) / 8 */
8391 regno = (addr - DC_LCB_CFG_RUN) >> 3;
8392 ret = do_8051_command(dd, HCMD_WRITE_LCB_CSR, regno, &data);
8393 if (ret != HCMD_SUCCESS)
8394 return -EBUSY;
8395 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008396}
8397
8398/*
8399 * Write an LCB CSR. Access may not be in host control, so check.
8400 * Return 0 on success, -EBUSY on failure.
8401 */
8402int write_lcb_csr(struct hfi1_devdata *dd, u32 addr, u64 data)
8403{
8404 struct hfi1_pportdata *ppd = dd->pport;
8405
8406 /* if up, go through the 8051 for the value */
8407 if (ppd->host_link_state & HLS_UP)
8408 return write_lcb_via_8051(dd, addr, data);
8409 /* if going up or down, no access */
8410 if (ppd->host_link_state & (HLS_GOING_UP | HLS_GOING_OFFLINE))
8411 return -EBUSY;
8412 /* otherwise, host has access */
8413 write_csr(dd, addr, data);
8414 return 0;
8415}
8416
8417/*
8418 * Returns:
8419 * < 0 = Linux error, not able to get access
8420 * > 0 = 8051 command RETURN_CODE
8421 */
8422static int do_8051_command(
8423 struct hfi1_devdata *dd,
8424 u32 type,
8425 u64 in_data,
8426 u64 *out_data)
8427{
8428 u64 reg, completed;
8429 int return_code;
8430 unsigned long flags;
8431 unsigned long timeout;
8432
8433 hfi1_cdbg(DC8051, "type %d, data 0x%012llx", type, in_data);
8434
8435 /*
8436 * Alternative to holding the lock for a long time:
8437 * - keep busy wait - have other users bounce off
8438 */
8439 spin_lock_irqsave(&dd->dc8051_lock, flags);
8440
8441 /* We can't send any commands to the 8051 if it's in reset */
8442 if (dd->dc_shutdown) {
8443 return_code = -ENODEV;
8444 goto fail;
8445 }
8446
8447 /*
8448 * If an 8051 host command timed out previously, then the 8051 is
8449 * stuck.
8450 *
8451 * On first timeout, attempt to reset and restart the entire DC
8452 * block (including 8051). (Is this too big of a hammer?)
8453 *
8454 * If the 8051 times out a second time, the reset did not bring it
8455 * back to healthy life. In that case, fail any subsequent commands.
8456 */
8457 if (dd->dc8051_timed_out) {
8458 if (dd->dc8051_timed_out > 1) {
8459 dd_dev_err(dd,
8460 "Previous 8051 host command timed out, skipping command %u\n",
8461 type);
8462 return_code = -ENXIO;
8463 goto fail;
8464 }
8465 spin_unlock_irqrestore(&dd->dc8051_lock, flags);
8466 dc_shutdown(dd);
8467 dc_start(dd);
8468 spin_lock_irqsave(&dd->dc8051_lock, flags);
8469 }
8470
8471 /*
8472 * If there is no timeout, then the 8051 command interface is
8473 * waiting for a command.
8474 */
8475
8476 /*
Dean Luick3bf40d62015-11-06 20:07:04 -05008477 * When writing a LCB CSR, out_data contains the full value to
8478 * to be written, while in_data contains the relative LCB
8479 * address in 7:0. Do the work here, rather than the caller,
8480 * of distrubting the write data to where it needs to go:
8481 *
8482 * Write data
8483 * 39:00 -> in_data[47:8]
8484 * 47:40 -> DC8051_CFG_EXT_DEV_0.RETURN_CODE
8485 * 63:48 -> DC8051_CFG_EXT_DEV_0.RSP_DATA
8486 */
8487 if (type == HCMD_WRITE_LCB_CSR) {
8488 in_data |= ((*out_data) & 0xffffffffffull) << 8;
8489 reg = ((((*out_data) >> 40) & 0xff) <<
8490 DC_DC8051_CFG_EXT_DEV_0_RETURN_CODE_SHIFT)
8491 | ((((*out_data) >> 48) & 0xffff) <<
8492 DC_DC8051_CFG_EXT_DEV_0_RSP_DATA_SHIFT);
8493 write_csr(dd, DC_DC8051_CFG_EXT_DEV_0, reg);
8494 }
8495
8496 /*
Mike Marciniszyn77241052015-07-30 15:17:43 -04008497 * Do two writes: the first to stabilize the type and req_data, the
8498 * second to activate.
8499 */
8500 reg = ((u64)type & DC_DC8051_CFG_HOST_CMD_0_REQ_TYPE_MASK)
8501 << DC_DC8051_CFG_HOST_CMD_0_REQ_TYPE_SHIFT
8502 | (in_data & DC_DC8051_CFG_HOST_CMD_0_REQ_DATA_MASK)
8503 << DC_DC8051_CFG_HOST_CMD_0_REQ_DATA_SHIFT;
8504 write_csr(dd, DC_DC8051_CFG_HOST_CMD_0, reg);
8505 reg |= DC_DC8051_CFG_HOST_CMD_0_REQ_NEW_SMASK;
8506 write_csr(dd, DC_DC8051_CFG_HOST_CMD_0, reg);
8507
8508 /* wait for completion, alternate: interrupt */
8509 timeout = jiffies + msecs_to_jiffies(DC8051_COMMAND_TIMEOUT);
8510 while (1) {
8511 reg = read_csr(dd, DC_DC8051_CFG_HOST_CMD_1);
8512 completed = reg & DC_DC8051_CFG_HOST_CMD_1_COMPLETED_SMASK;
8513 if (completed)
8514 break;
8515 if (time_after(jiffies, timeout)) {
8516 dd->dc8051_timed_out++;
8517 dd_dev_err(dd, "8051 host command %u timeout\n", type);
8518 if (out_data)
8519 *out_data = 0;
8520 return_code = -ETIMEDOUT;
8521 goto fail;
8522 }
8523 udelay(2);
8524 }
8525
8526 if (out_data) {
8527 *out_data = (reg >> DC_DC8051_CFG_HOST_CMD_1_RSP_DATA_SHIFT)
8528 & DC_DC8051_CFG_HOST_CMD_1_RSP_DATA_MASK;
8529 if (type == HCMD_READ_LCB_CSR) {
8530 /* top 16 bits are in a different register */
8531 *out_data |= (read_csr(dd, DC_DC8051_CFG_EXT_DEV_1)
8532 & DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_SMASK)
8533 << (48
8534 - DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_SHIFT);
8535 }
8536 }
8537 return_code = (reg >> DC_DC8051_CFG_HOST_CMD_1_RETURN_CODE_SHIFT)
8538 & DC_DC8051_CFG_HOST_CMD_1_RETURN_CODE_MASK;
8539 dd->dc8051_timed_out = 0;
8540 /*
8541 * Clear command for next user.
8542 */
8543 write_csr(dd, DC_DC8051_CFG_HOST_CMD_0, 0);
8544
8545fail:
8546 spin_unlock_irqrestore(&dd->dc8051_lock, flags);
8547
8548 return return_code;
8549}
8550
8551static int set_physical_link_state(struct hfi1_devdata *dd, u64 state)
8552{
8553 return do_8051_command(dd, HCMD_CHANGE_PHY_STATE, state, NULL);
8554}
8555
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08008556int load_8051_config(struct hfi1_devdata *dd, u8 field_id,
8557 u8 lane_id, u32 config_data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008558{
8559 u64 data;
8560 int ret;
8561
8562 data = (u64)field_id << LOAD_DATA_FIELD_ID_SHIFT
8563 | (u64)lane_id << LOAD_DATA_LANE_ID_SHIFT
8564 | (u64)config_data << LOAD_DATA_DATA_SHIFT;
8565 ret = do_8051_command(dd, HCMD_LOAD_CONFIG_DATA, data, NULL);
8566 if (ret != HCMD_SUCCESS) {
8567 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008568 "load 8051 config: field id %d, lane %d, err %d\n",
8569 (int)field_id, (int)lane_id, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008570 }
8571 return ret;
8572}
8573
8574/*
8575 * Read the 8051 firmware "registers". Use the RAM directly. Always
8576 * set the result, even on error.
8577 * Return 0 on success, -errno on failure
8578 */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08008579int read_8051_config(struct hfi1_devdata *dd, u8 field_id, u8 lane_id,
8580 u32 *result)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008581{
8582 u64 big_data;
8583 u32 addr;
8584 int ret;
8585
8586 /* address start depends on the lane_id */
8587 if (lane_id < 4)
8588 addr = (4 * NUM_GENERAL_FIELDS)
8589 + (lane_id * 4 * NUM_LANE_FIELDS);
8590 else
8591 addr = 0;
8592 addr += field_id * 4;
8593
8594 /* read is in 8-byte chunks, hardware will truncate the address down */
8595 ret = read_8051_data(dd, addr, 8, &big_data);
8596
8597 if (ret == 0) {
8598 /* extract the 4 bytes we want */
8599 if (addr & 0x4)
8600 *result = (u32)(big_data >> 32);
8601 else
8602 *result = (u32)big_data;
8603 } else {
8604 *result = 0;
8605 dd_dev_err(dd, "%s: direct read failed, lane %d, field %d!\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008606 __func__, lane_id, field_id);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008607 }
8608
8609 return ret;
8610}
8611
8612static int write_vc_local_phy(struct hfi1_devdata *dd, u8 power_management,
8613 u8 continuous)
8614{
8615 u32 frame;
8616
8617 frame = continuous << CONTINIOUS_REMOTE_UPDATE_SUPPORT_SHIFT
8618 | power_management << POWER_MANAGEMENT_SHIFT;
8619 return load_8051_config(dd, VERIFY_CAP_LOCAL_PHY,
8620 GENERAL_CONFIG, frame);
8621}
8622
8623static int write_vc_local_fabric(struct hfi1_devdata *dd, u8 vau, u8 z, u8 vcu,
8624 u16 vl15buf, u8 crc_sizes)
8625{
8626 u32 frame;
8627
8628 frame = (u32)vau << VAU_SHIFT
8629 | (u32)z << Z_SHIFT
8630 | (u32)vcu << VCU_SHIFT
8631 | (u32)vl15buf << VL15BUF_SHIFT
8632 | (u32)crc_sizes << CRC_SIZES_SHIFT;
8633 return load_8051_config(dd, VERIFY_CAP_LOCAL_FABRIC,
8634 GENERAL_CONFIG, frame);
8635}
8636
8637static void read_vc_local_link_width(struct hfi1_devdata *dd, u8 *misc_bits,
8638 u8 *flag_bits, u16 *link_widths)
8639{
8640 u32 frame;
8641
8642 read_8051_config(dd, VERIFY_CAP_LOCAL_LINK_WIDTH, GENERAL_CONFIG,
Jubin John17fb4f22016-02-14 20:21:52 -08008643 &frame);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008644 *misc_bits = (frame >> MISC_CONFIG_BITS_SHIFT) & MISC_CONFIG_BITS_MASK;
8645 *flag_bits = (frame >> LOCAL_FLAG_BITS_SHIFT) & LOCAL_FLAG_BITS_MASK;
8646 *link_widths = (frame >> LINK_WIDTH_SHIFT) & LINK_WIDTH_MASK;
8647}
8648
8649static int write_vc_local_link_width(struct hfi1_devdata *dd,
8650 u8 misc_bits,
8651 u8 flag_bits,
8652 u16 link_widths)
8653{
8654 u32 frame;
8655
8656 frame = (u32)misc_bits << MISC_CONFIG_BITS_SHIFT
8657 | (u32)flag_bits << LOCAL_FLAG_BITS_SHIFT
8658 | (u32)link_widths << LINK_WIDTH_SHIFT;
8659 return load_8051_config(dd, VERIFY_CAP_LOCAL_LINK_WIDTH, GENERAL_CONFIG,
8660 frame);
8661}
8662
8663static int write_local_device_id(struct hfi1_devdata *dd, u16 device_id,
8664 u8 device_rev)
8665{
8666 u32 frame;
8667
8668 frame = ((u32)device_id << LOCAL_DEVICE_ID_SHIFT)
8669 | ((u32)device_rev << LOCAL_DEVICE_REV_SHIFT);
8670 return load_8051_config(dd, LOCAL_DEVICE_ID, GENERAL_CONFIG, frame);
8671}
8672
8673static void read_remote_device_id(struct hfi1_devdata *dd, u16 *device_id,
8674 u8 *device_rev)
8675{
8676 u32 frame;
8677
8678 read_8051_config(dd, REMOTE_DEVICE_ID, GENERAL_CONFIG, &frame);
8679 *device_id = (frame >> REMOTE_DEVICE_ID_SHIFT) & REMOTE_DEVICE_ID_MASK;
8680 *device_rev = (frame >> REMOTE_DEVICE_REV_SHIFT)
8681 & REMOTE_DEVICE_REV_MASK;
8682}
8683
8684void read_misc_status(struct hfi1_devdata *dd, u8 *ver_a, u8 *ver_b)
8685{
8686 u32 frame;
8687
8688 read_8051_config(dd, MISC_STATUS, GENERAL_CONFIG, &frame);
8689 *ver_a = (frame >> STS_FM_VERSION_A_SHIFT) & STS_FM_VERSION_A_MASK;
8690 *ver_b = (frame >> STS_FM_VERSION_B_SHIFT) & STS_FM_VERSION_B_MASK;
8691}
8692
8693static void read_vc_remote_phy(struct hfi1_devdata *dd, u8 *power_management,
8694 u8 *continuous)
8695{
8696 u32 frame;
8697
8698 read_8051_config(dd, VERIFY_CAP_REMOTE_PHY, GENERAL_CONFIG, &frame);
8699 *power_management = (frame >> POWER_MANAGEMENT_SHIFT)
8700 & POWER_MANAGEMENT_MASK;
8701 *continuous = (frame >> CONTINIOUS_REMOTE_UPDATE_SUPPORT_SHIFT)
8702 & CONTINIOUS_REMOTE_UPDATE_SUPPORT_MASK;
8703}
8704
8705static void read_vc_remote_fabric(struct hfi1_devdata *dd, u8 *vau, u8 *z,
8706 u8 *vcu, u16 *vl15buf, u8 *crc_sizes)
8707{
8708 u32 frame;
8709
8710 read_8051_config(dd, VERIFY_CAP_REMOTE_FABRIC, GENERAL_CONFIG, &frame);
8711 *vau = (frame >> VAU_SHIFT) & VAU_MASK;
8712 *z = (frame >> Z_SHIFT) & Z_MASK;
8713 *vcu = (frame >> VCU_SHIFT) & VCU_MASK;
8714 *vl15buf = (frame >> VL15BUF_SHIFT) & VL15BUF_MASK;
8715 *crc_sizes = (frame >> CRC_SIZES_SHIFT) & CRC_SIZES_MASK;
8716}
8717
8718static void read_vc_remote_link_width(struct hfi1_devdata *dd,
8719 u8 *remote_tx_rate,
8720 u16 *link_widths)
8721{
8722 u32 frame;
8723
8724 read_8051_config(dd, VERIFY_CAP_REMOTE_LINK_WIDTH, GENERAL_CONFIG,
Jubin John17fb4f22016-02-14 20:21:52 -08008725 &frame);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008726 *remote_tx_rate = (frame >> REMOTE_TX_RATE_SHIFT)
8727 & REMOTE_TX_RATE_MASK;
8728 *link_widths = (frame >> LINK_WIDTH_SHIFT) & LINK_WIDTH_MASK;
8729}
8730
8731static void read_local_lni(struct hfi1_devdata *dd, u8 *enable_lane_rx)
8732{
8733 u32 frame;
8734
8735 read_8051_config(dd, LOCAL_LNI_INFO, GENERAL_CONFIG, &frame);
8736 *enable_lane_rx = (frame >> ENABLE_LANE_RX_SHIFT) & ENABLE_LANE_RX_MASK;
8737}
8738
8739static void read_mgmt_allowed(struct hfi1_devdata *dd, u8 *mgmt_allowed)
8740{
8741 u32 frame;
8742
8743 read_8051_config(dd, REMOTE_LNI_INFO, GENERAL_CONFIG, &frame);
8744 *mgmt_allowed = (frame >> MGMT_ALLOWED_SHIFT) & MGMT_ALLOWED_MASK;
8745}
8746
8747static void read_last_local_state(struct hfi1_devdata *dd, u32 *lls)
8748{
8749 read_8051_config(dd, LAST_LOCAL_STATE_COMPLETE, GENERAL_CONFIG, lls);
8750}
8751
8752static void read_last_remote_state(struct hfi1_devdata *dd, u32 *lrs)
8753{
8754 read_8051_config(dd, LAST_REMOTE_STATE_COMPLETE, GENERAL_CONFIG, lrs);
8755}
8756
8757void hfi1_read_link_quality(struct hfi1_devdata *dd, u8 *link_quality)
8758{
8759 u32 frame;
8760 int ret;
8761
8762 *link_quality = 0;
8763 if (dd->pport->host_link_state & HLS_UP) {
8764 ret = read_8051_config(dd, LINK_QUALITY_INFO, GENERAL_CONFIG,
Jubin John17fb4f22016-02-14 20:21:52 -08008765 &frame);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008766 if (ret == 0)
8767 *link_quality = (frame >> LINK_QUALITY_SHIFT)
8768 & LINK_QUALITY_MASK;
8769 }
8770}
8771
8772static void read_planned_down_reason_code(struct hfi1_devdata *dd, u8 *pdrrc)
8773{
8774 u32 frame;
8775
8776 read_8051_config(dd, LINK_QUALITY_INFO, GENERAL_CONFIG, &frame);
8777 *pdrrc = (frame >> DOWN_REMOTE_REASON_SHIFT) & DOWN_REMOTE_REASON_MASK;
8778}
8779
Dean Luickfeb831d2016-04-14 08:31:36 -07008780static void read_link_down_reason(struct hfi1_devdata *dd, u8 *ldr)
8781{
8782 u32 frame;
8783
8784 read_8051_config(dd, LINK_DOWN_REASON, GENERAL_CONFIG, &frame);
8785 *ldr = (frame & 0xff);
8786}
8787
Mike Marciniszyn77241052015-07-30 15:17:43 -04008788static int read_tx_settings(struct hfi1_devdata *dd,
8789 u8 *enable_lane_tx,
8790 u8 *tx_polarity_inversion,
8791 u8 *rx_polarity_inversion,
8792 u8 *max_rate)
8793{
8794 u32 frame;
8795 int ret;
8796
8797 ret = read_8051_config(dd, TX_SETTINGS, GENERAL_CONFIG, &frame);
8798 *enable_lane_tx = (frame >> ENABLE_LANE_TX_SHIFT)
8799 & ENABLE_LANE_TX_MASK;
8800 *tx_polarity_inversion = (frame >> TX_POLARITY_INVERSION_SHIFT)
8801 & TX_POLARITY_INVERSION_MASK;
8802 *rx_polarity_inversion = (frame >> RX_POLARITY_INVERSION_SHIFT)
8803 & RX_POLARITY_INVERSION_MASK;
8804 *max_rate = (frame >> MAX_RATE_SHIFT) & MAX_RATE_MASK;
8805 return ret;
8806}
8807
8808static int write_tx_settings(struct hfi1_devdata *dd,
8809 u8 enable_lane_tx,
8810 u8 tx_polarity_inversion,
8811 u8 rx_polarity_inversion,
8812 u8 max_rate)
8813{
8814 u32 frame;
8815
8816 /* no need to mask, all variable sizes match field widths */
8817 frame = enable_lane_tx << ENABLE_LANE_TX_SHIFT
8818 | tx_polarity_inversion << TX_POLARITY_INVERSION_SHIFT
8819 | rx_polarity_inversion << RX_POLARITY_INVERSION_SHIFT
8820 | max_rate << MAX_RATE_SHIFT;
8821 return load_8051_config(dd, TX_SETTINGS, GENERAL_CONFIG, frame);
8822}
8823
Mike Marciniszyn77241052015-07-30 15:17:43 -04008824/*
8825 * Read an idle LCB message.
8826 *
8827 * Returns 0 on success, -EINVAL on error
8828 */
8829static int read_idle_message(struct hfi1_devdata *dd, u64 type, u64 *data_out)
8830{
8831 int ret;
8832
Jubin John17fb4f22016-02-14 20:21:52 -08008833 ret = do_8051_command(dd, HCMD_READ_LCB_IDLE_MSG, type, data_out);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008834 if (ret != HCMD_SUCCESS) {
8835 dd_dev_err(dd, "read idle message: type %d, err %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008836 (u32)type, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008837 return -EINVAL;
8838 }
8839 dd_dev_info(dd, "%s: read idle message 0x%llx\n", __func__, *data_out);
8840 /* return only the payload as we already know the type */
8841 *data_out >>= IDLE_PAYLOAD_SHIFT;
8842 return 0;
8843}
8844
8845/*
8846 * Read an idle SMA message. To be done in response to a notification from
8847 * the 8051.
8848 *
8849 * Returns 0 on success, -EINVAL on error
8850 */
8851static int read_idle_sma(struct hfi1_devdata *dd, u64 *data)
8852{
Jubin John17fb4f22016-02-14 20:21:52 -08008853 return read_idle_message(dd, (u64)IDLE_SMA << IDLE_MSG_TYPE_SHIFT,
8854 data);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008855}
8856
8857/*
8858 * Send an idle LCB message.
8859 *
8860 * Returns 0 on success, -EINVAL on error
8861 */
8862static int send_idle_message(struct hfi1_devdata *dd, u64 data)
8863{
8864 int ret;
8865
8866 dd_dev_info(dd, "%s: sending idle message 0x%llx\n", __func__, data);
8867 ret = do_8051_command(dd, HCMD_SEND_LCB_IDLE_MSG, data, NULL);
8868 if (ret != HCMD_SUCCESS) {
8869 dd_dev_err(dd, "send idle message: data 0x%llx, err %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008870 data, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008871 return -EINVAL;
8872 }
8873 return 0;
8874}
8875
8876/*
8877 * Send an idle SMA message.
8878 *
8879 * Returns 0 on success, -EINVAL on error
8880 */
8881int send_idle_sma(struct hfi1_devdata *dd, u64 message)
8882{
8883 u64 data;
8884
Jubin John17fb4f22016-02-14 20:21:52 -08008885 data = ((message & IDLE_PAYLOAD_MASK) << IDLE_PAYLOAD_SHIFT) |
8886 ((u64)IDLE_SMA << IDLE_MSG_TYPE_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008887 return send_idle_message(dd, data);
8888}
8889
8890/*
8891 * Initialize the LCB then do a quick link up. This may or may not be
8892 * in loopback.
8893 *
8894 * return 0 on success, -errno on error
8895 */
8896static int do_quick_linkup(struct hfi1_devdata *dd)
8897{
8898 u64 reg;
8899 unsigned long timeout;
8900 int ret;
8901
8902 lcb_shutdown(dd, 0);
8903
8904 if (loopback) {
8905 /* LCB_CFG_LOOPBACK.VAL = 2 */
8906 /* LCB_CFG_LANE_WIDTH.VAL = 0 */
8907 write_csr(dd, DC_LCB_CFG_LOOPBACK,
Jubin John17fb4f22016-02-14 20:21:52 -08008908 IB_PACKET_TYPE << DC_LCB_CFG_LOOPBACK_VAL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008909 write_csr(dd, DC_LCB_CFG_LANE_WIDTH, 0);
8910 }
8911
8912 /* start the LCBs */
8913 /* LCB_CFG_TX_FIFOS_RESET.VAL = 0 */
8914 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0);
8915
8916 /* simulator only loopback steps */
8917 if (loopback && dd->icode == ICODE_FUNCTIONAL_SIMULATOR) {
8918 /* LCB_CFG_RUN.EN = 1 */
8919 write_csr(dd, DC_LCB_CFG_RUN,
Jubin John17fb4f22016-02-14 20:21:52 -08008920 1ull << DC_LCB_CFG_RUN_EN_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008921
8922 /* watch LCB_STS_LINK_TRANSFER_ACTIVE */
8923 timeout = jiffies + msecs_to_jiffies(10);
8924 while (1) {
Jubin John17fb4f22016-02-14 20:21:52 -08008925 reg = read_csr(dd, DC_LCB_STS_LINK_TRANSFER_ACTIVE);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008926 if (reg)
8927 break;
8928 if (time_after(jiffies, timeout)) {
8929 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008930 "timeout waiting for LINK_TRANSFER_ACTIVE\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04008931 return -ETIMEDOUT;
8932 }
8933 udelay(2);
8934 }
8935
8936 write_csr(dd, DC_LCB_CFG_ALLOW_LINK_UP,
Jubin John17fb4f22016-02-14 20:21:52 -08008937 1ull << DC_LCB_CFG_ALLOW_LINK_UP_VAL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008938 }
8939
8940 if (!loopback) {
8941 /*
8942 * When doing quick linkup and not in loopback, both
8943 * sides must be done with LCB set-up before either
8944 * starts the quick linkup. Put a delay here so that
8945 * both sides can be started and have a chance to be
8946 * done with LCB set up before resuming.
8947 */
8948 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008949 "Pausing for peer to be finished with LCB set up\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04008950 msleep(5000);
Jubin John17fb4f22016-02-14 20:21:52 -08008951 dd_dev_err(dd, "Continuing with quick linkup\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04008952 }
8953
8954 write_csr(dd, DC_LCB_ERR_EN, 0); /* mask LCB errors */
8955 set_8051_lcb_access(dd);
8956
8957 /*
8958 * State "quick" LinkUp request sets the physical link state to
8959 * LinkUp without a verify capability sequence.
8960 * This state is in simulator v37 and later.
8961 */
8962 ret = set_physical_link_state(dd, PLS_QUICK_LINKUP);
8963 if (ret != HCMD_SUCCESS) {
8964 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008965 "%s: set physical link state to quick LinkUp failed with return %d\n",
8966 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008967
8968 set_host_lcb_access(dd);
8969 write_csr(dd, DC_LCB_ERR_EN, ~0ull); /* watch LCB errors */
8970
8971 if (ret >= 0)
8972 ret = -EINVAL;
8973 return ret;
8974 }
8975
8976 return 0; /* success */
8977}
8978
8979/*
8980 * Set the SerDes to internal loopback mode.
8981 * Returns 0 on success, -errno on error.
8982 */
8983static int set_serdes_loopback_mode(struct hfi1_devdata *dd)
8984{
8985 int ret;
8986
8987 ret = set_physical_link_state(dd, PLS_INTERNAL_SERDES_LOOPBACK);
8988 if (ret == HCMD_SUCCESS)
8989 return 0;
8990 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008991 "Set physical link state to SerDes Loopback failed with return %d\n",
8992 ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008993 if (ret >= 0)
8994 ret = -EINVAL;
8995 return ret;
8996}
8997
8998/*
8999 * Do all special steps to set up loopback.
9000 */
9001static int init_loopback(struct hfi1_devdata *dd)
9002{
9003 dd_dev_info(dd, "Entering loopback mode\n");
9004
9005 /* all loopbacks should disable self GUID check */
9006 write_csr(dd, DC_DC8051_CFG_MODE,
Jubin John17fb4f22016-02-14 20:21:52 -08009007 (read_csr(dd, DC_DC8051_CFG_MODE) | DISABLE_SELF_GUID_CHECK));
Mike Marciniszyn77241052015-07-30 15:17:43 -04009008
9009 /*
9010 * The simulator has only one loopback option - LCB. Switch
9011 * to that option, which includes quick link up.
9012 *
9013 * Accept all valid loopback values.
9014 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08009015 if ((dd->icode == ICODE_FUNCTIONAL_SIMULATOR) &&
9016 (loopback == LOOPBACK_SERDES || loopback == LOOPBACK_LCB ||
9017 loopback == LOOPBACK_CABLE)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04009018 loopback = LOOPBACK_LCB;
9019 quick_linkup = 1;
9020 return 0;
9021 }
9022
9023 /* handle serdes loopback */
9024 if (loopback == LOOPBACK_SERDES) {
9025 /* internal serdes loopack needs quick linkup on RTL */
9026 if (dd->icode == ICODE_RTL_SILICON)
9027 quick_linkup = 1;
9028 return set_serdes_loopback_mode(dd);
9029 }
9030
9031 /* LCB loopback - handled at poll time */
9032 if (loopback == LOOPBACK_LCB) {
9033 quick_linkup = 1; /* LCB is always quick linkup */
9034
9035 /* not supported in emulation due to emulation RTL changes */
9036 if (dd->icode == ICODE_FPGA_EMULATION) {
9037 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009038 "LCB loopback not supported in emulation\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04009039 return -EINVAL;
9040 }
9041 return 0;
9042 }
9043
9044 /* external cable loopback requires no extra steps */
9045 if (loopback == LOOPBACK_CABLE)
9046 return 0;
9047
9048 dd_dev_err(dd, "Invalid loopback mode %d\n", loopback);
9049 return -EINVAL;
9050}
9051
9052/*
9053 * Translate from the OPA_LINK_WIDTH handed to us by the FM to bits
9054 * used in the Verify Capability link width attribute.
9055 */
9056static u16 opa_to_vc_link_widths(u16 opa_widths)
9057{
9058 int i;
9059 u16 result = 0;
9060
9061 static const struct link_bits {
9062 u16 from;
9063 u16 to;
9064 } opa_link_xlate[] = {
Jubin John8638b772016-02-14 20:19:24 -08009065 { OPA_LINK_WIDTH_1X, 1 << (1 - 1) },
9066 { OPA_LINK_WIDTH_2X, 1 << (2 - 1) },
9067 { OPA_LINK_WIDTH_3X, 1 << (3 - 1) },
9068 { OPA_LINK_WIDTH_4X, 1 << (4 - 1) },
Mike Marciniszyn77241052015-07-30 15:17:43 -04009069 };
9070
9071 for (i = 0; i < ARRAY_SIZE(opa_link_xlate); i++) {
9072 if (opa_widths & opa_link_xlate[i].from)
9073 result |= opa_link_xlate[i].to;
9074 }
9075 return result;
9076}
9077
9078/*
9079 * Set link attributes before moving to polling.
9080 */
9081static int set_local_link_attributes(struct hfi1_pportdata *ppd)
9082{
9083 struct hfi1_devdata *dd = ppd->dd;
9084 u8 enable_lane_tx;
9085 u8 tx_polarity_inversion;
9086 u8 rx_polarity_inversion;
9087 int ret;
9088
9089 /* reset our fabric serdes to clear any lingering problems */
9090 fabric_serdes_reset(dd);
9091
9092 /* set the local tx rate - need to read-modify-write */
9093 ret = read_tx_settings(dd, &enable_lane_tx, &tx_polarity_inversion,
Jubin John17fb4f22016-02-14 20:21:52 -08009094 &rx_polarity_inversion, &ppd->local_tx_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009095 if (ret)
9096 goto set_local_link_attributes_fail;
9097
9098 if (dd->dc8051_ver < dc8051_ver(0, 20)) {
9099 /* set the tx rate to the fastest enabled */
9100 if (ppd->link_speed_enabled & OPA_LINK_SPEED_25G)
9101 ppd->local_tx_rate = 1;
9102 else
9103 ppd->local_tx_rate = 0;
9104 } else {
9105 /* set the tx rate to all enabled */
9106 ppd->local_tx_rate = 0;
9107 if (ppd->link_speed_enabled & OPA_LINK_SPEED_25G)
9108 ppd->local_tx_rate |= 2;
9109 if (ppd->link_speed_enabled & OPA_LINK_SPEED_12_5G)
9110 ppd->local_tx_rate |= 1;
9111 }
Easwar Hariharanfebffe22015-10-26 10:28:36 -04009112
9113 enable_lane_tx = 0xF; /* enable all four lanes */
Mike Marciniszyn77241052015-07-30 15:17:43 -04009114 ret = write_tx_settings(dd, enable_lane_tx, tx_polarity_inversion,
Jubin John17fb4f22016-02-14 20:21:52 -08009115 rx_polarity_inversion, ppd->local_tx_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009116 if (ret != HCMD_SUCCESS)
9117 goto set_local_link_attributes_fail;
9118
9119 /*
9120 * DC supports continuous updates.
9121 */
Jubin John17fb4f22016-02-14 20:21:52 -08009122 ret = write_vc_local_phy(dd,
9123 0 /* no power management */,
9124 1 /* continuous updates */);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009125 if (ret != HCMD_SUCCESS)
9126 goto set_local_link_attributes_fail;
9127
9128 /* z=1 in the next call: AU of 0 is not supported by the hardware */
9129 ret = write_vc_local_fabric(dd, dd->vau, 1, dd->vcu, dd->vl15_init,
9130 ppd->port_crc_mode_enabled);
9131 if (ret != HCMD_SUCCESS)
9132 goto set_local_link_attributes_fail;
9133
9134 ret = write_vc_local_link_width(dd, 0, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08009135 opa_to_vc_link_widths(
9136 ppd->link_width_enabled));
Mike Marciniszyn77241052015-07-30 15:17:43 -04009137 if (ret != HCMD_SUCCESS)
9138 goto set_local_link_attributes_fail;
9139
9140 /* let peer know who we are */
9141 ret = write_local_device_id(dd, dd->pcidev->device, dd->minrev);
9142 if (ret == HCMD_SUCCESS)
9143 return 0;
9144
9145set_local_link_attributes_fail:
9146 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009147 "Failed to set local link attributes, return 0x%x\n",
9148 ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009149 return ret;
9150}
9151
9152/*
Easwar Hariharan623bba22016-04-12 11:25:57 -07009153 * Call this to start the link.
9154 * Do not do anything if the link is disabled.
9155 * Returns 0 if link is disabled, moved to polling, or the driver is not ready.
Mike Marciniszyn77241052015-07-30 15:17:43 -04009156 */
9157int start_link(struct hfi1_pportdata *ppd)
9158{
Dean Luick0db9dec2016-09-06 04:35:20 -07009159 /*
9160 * Tune the SerDes to a ballpark setting for optimal signal and bit
9161 * error rate. Needs to be done before starting the link.
9162 */
9163 tune_serdes(ppd);
9164
Mike Marciniszyn77241052015-07-30 15:17:43 -04009165 if (!ppd->link_enabled) {
9166 dd_dev_info(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009167 "%s: stopping link start because link is disabled\n",
9168 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009169 return 0;
9170 }
9171 if (!ppd->driver_link_ready) {
9172 dd_dev_info(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009173 "%s: stopping link start because driver is not ready\n",
9174 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009175 return 0;
9176 }
9177
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07009178 /*
9179 * FULL_MGMT_P_KEY is cleared from the pkey table, so that the
9180 * pkey table can be configured properly if the HFI unit is connected
9181 * to switch port with MgmtAllowed=NO
9182 */
9183 clear_full_mgmt_pkey(ppd);
9184
Easwar Hariharan623bba22016-04-12 11:25:57 -07009185 return set_link_state(ppd, HLS_DN_POLL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009186}
9187
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009188static void wait_for_qsfp_init(struct hfi1_pportdata *ppd)
9189{
9190 struct hfi1_devdata *dd = ppd->dd;
9191 u64 mask;
9192 unsigned long timeout;
9193
9194 /*
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009195 * Some QSFP cables have a quirk that asserts the IntN line as a side
9196 * effect of power up on plug-in. We ignore this false positive
9197 * interrupt until the module has finished powering up by waiting for
9198 * a minimum timeout of the module inrush initialization time of
9199 * 500 ms (SFF 8679 Table 5-6) to ensure the voltage rails in the
9200 * module have stabilized.
9201 */
9202 msleep(500);
9203
9204 /*
9205 * Check for QSFP interrupt for t_init (SFF 8679 Table 8-1)
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009206 */
9207 timeout = jiffies + msecs_to_jiffies(2000);
9208 while (1) {
9209 mask = read_csr(dd, dd->hfi1_id ?
9210 ASIC_QSFP2_IN : ASIC_QSFP1_IN);
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009211 if (!(mask & QSFP_HFI0_INT_N))
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009212 break;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009213 if (time_after(jiffies, timeout)) {
9214 dd_dev_info(dd, "%s: No IntN detected, reset complete\n",
9215 __func__);
9216 break;
9217 }
9218 udelay(2);
9219 }
9220}
9221
9222static void set_qsfp_int_n(struct hfi1_pportdata *ppd, u8 enable)
9223{
9224 struct hfi1_devdata *dd = ppd->dd;
9225 u64 mask;
9226
9227 mask = read_csr(dd, dd->hfi1_id ? ASIC_QSFP2_MASK : ASIC_QSFP1_MASK);
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009228 if (enable) {
9229 /*
9230 * Clear the status register to avoid an immediate interrupt
9231 * when we re-enable the IntN pin
9232 */
9233 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_CLEAR : ASIC_QSFP1_CLEAR,
9234 QSFP_HFI0_INT_N);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009235 mask |= (u64)QSFP_HFI0_INT_N;
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009236 } else {
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009237 mask &= ~(u64)QSFP_HFI0_INT_N;
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009238 }
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009239 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_MASK : ASIC_QSFP1_MASK, mask);
9240}
9241
9242void reset_qsfp(struct hfi1_pportdata *ppd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009243{
9244 struct hfi1_devdata *dd = ppd->dd;
9245 u64 mask, qsfp_mask;
9246
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009247 /* Disable INT_N from triggering QSFP interrupts */
9248 set_qsfp_int_n(ppd, 0);
9249
9250 /* Reset the QSFP */
Mike Marciniszyn77241052015-07-30 15:17:43 -04009251 mask = (u64)QSFP_HFI0_RESET_N;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009252
9253 qsfp_mask = read_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009254 dd->hfi1_id ? ASIC_QSFP2_OUT : ASIC_QSFP1_OUT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009255 qsfp_mask &= ~mask;
9256 write_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009257 dd->hfi1_id ? ASIC_QSFP2_OUT : ASIC_QSFP1_OUT, qsfp_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009258
9259 udelay(10);
9260
9261 qsfp_mask |= mask;
9262 write_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009263 dd->hfi1_id ? ASIC_QSFP2_OUT : ASIC_QSFP1_OUT, qsfp_mask);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009264
9265 wait_for_qsfp_init(ppd);
9266
9267 /*
9268 * Allow INT_N to trigger the QSFP interrupt to watch
9269 * for alarms and warnings
9270 */
9271 set_qsfp_int_n(ppd, 1);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009272}
9273
9274static int handle_qsfp_error_conditions(struct hfi1_pportdata *ppd,
9275 u8 *qsfp_interrupt_status)
9276{
9277 struct hfi1_devdata *dd = ppd->dd;
9278
9279 if ((qsfp_interrupt_status[0] & QSFP_HIGH_TEMP_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009280 (qsfp_interrupt_status[0] & QSFP_HIGH_TEMP_WARNING))
9281 dd_dev_info(dd, "%s: QSFP cable on fire\n",
9282 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009283
9284 if ((qsfp_interrupt_status[0] & QSFP_LOW_TEMP_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009285 (qsfp_interrupt_status[0] & QSFP_LOW_TEMP_WARNING))
9286 dd_dev_info(dd, "%s: QSFP cable temperature too low\n",
9287 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009288
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07009289 /*
9290 * The remaining alarms/warnings don't matter if the link is down.
9291 */
9292 if (ppd->host_link_state & HLS_DOWN)
9293 return 0;
9294
Mike Marciniszyn77241052015-07-30 15:17:43 -04009295 if ((qsfp_interrupt_status[1] & QSFP_HIGH_VCC_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009296 (qsfp_interrupt_status[1] & QSFP_HIGH_VCC_WARNING))
9297 dd_dev_info(dd, "%s: QSFP supply voltage too high\n",
9298 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009299
9300 if ((qsfp_interrupt_status[1] & QSFP_LOW_VCC_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009301 (qsfp_interrupt_status[1] & QSFP_LOW_VCC_WARNING))
9302 dd_dev_info(dd, "%s: QSFP supply voltage too low\n",
9303 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009304
9305 /* Byte 2 is vendor specific */
9306
9307 if ((qsfp_interrupt_status[3] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009308 (qsfp_interrupt_status[3] & QSFP_HIGH_POWER_WARNING))
9309 dd_dev_info(dd, "%s: Cable RX channel 1/2 power too high\n",
9310 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009311
9312 if ((qsfp_interrupt_status[3] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009313 (qsfp_interrupt_status[3] & QSFP_LOW_POWER_WARNING))
9314 dd_dev_info(dd, "%s: Cable RX channel 1/2 power too low\n",
9315 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009316
9317 if ((qsfp_interrupt_status[4] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009318 (qsfp_interrupt_status[4] & QSFP_HIGH_POWER_WARNING))
9319 dd_dev_info(dd, "%s: Cable RX channel 3/4 power too high\n",
9320 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009321
9322 if ((qsfp_interrupt_status[4] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009323 (qsfp_interrupt_status[4] & QSFP_LOW_POWER_WARNING))
9324 dd_dev_info(dd, "%s: Cable RX channel 3/4 power too low\n",
9325 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009326
9327 if ((qsfp_interrupt_status[5] & QSFP_HIGH_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009328 (qsfp_interrupt_status[5] & QSFP_HIGH_BIAS_WARNING))
9329 dd_dev_info(dd, "%s: Cable TX channel 1/2 bias too high\n",
9330 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009331
9332 if ((qsfp_interrupt_status[5] & QSFP_LOW_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009333 (qsfp_interrupt_status[5] & QSFP_LOW_BIAS_WARNING))
9334 dd_dev_info(dd, "%s: Cable TX channel 1/2 bias too low\n",
9335 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009336
9337 if ((qsfp_interrupt_status[6] & QSFP_HIGH_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009338 (qsfp_interrupt_status[6] & QSFP_HIGH_BIAS_WARNING))
9339 dd_dev_info(dd, "%s: Cable TX channel 3/4 bias too high\n",
9340 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009341
9342 if ((qsfp_interrupt_status[6] & QSFP_LOW_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009343 (qsfp_interrupt_status[6] & QSFP_LOW_BIAS_WARNING))
9344 dd_dev_info(dd, "%s: Cable TX channel 3/4 bias too low\n",
9345 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009346
9347 if ((qsfp_interrupt_status[7] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009348 (qsfp_interrupt_status[7] & QSFP_HIGH_POWER_WARNING))
9349 dd_dev_info(dd, "%s: Cable TX channel 1/2 power too high\n",
9350 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009351
9352 if ((qsfp_interrupt_status[7] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009353 (qsfp_interrupt_status[7] & QSFP_LOW_POWER_WARNING))
9354 dd_dev_info(dd, "%s: Cable TX channel 1/2 power too low\n",
9355 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009356
9357 if ((qsfp_interrupt_status[8] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009358 (qsfp_interrupt_status[8] & QSFP_HIGH_POWER_WARNING))
9359 dd_dev_info(dd, "%s: Cable TX channel 3/4 power too high\n",
9360 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009361
9362 if ((qsfp_interrupt_status[8] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009363 (qsfp_interrupt_status[8] & QSFP_LOW_POWER_WARNING))
9364 dd_dev_info(dd, "%s: Cable TX channel 3/4 power too low\n",
9365 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009366
9367 /* Bytes 9-10 and 11-12 are reserved */
9368 /* Bytes 13-15 are vendor specific */
9369
9370 return 0;
9371}
9372
Easwar Hariharan623bba22016-04-12 11:25:57 -07009373/* This routine will only be scheduled if the QSFP module present is asserted */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009374void qsfp_event(struct work_struct *work)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009375{
9376 struct qsfp_data *qd;
9377 struct hfi1_pportdata *ppd;
9378 struct hfi1_devdata *dd;
9379
9380 qd = container_of(work, struct qsfp_data, qsfp_work);
9381 ppd = qd->ppd;
9382 dd = ppd->dd;
9383
9384 /* Sanity check */
9385 if (!qsfp_mod_present(ppd))
9386 return;
9387
9388 /*
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07009389 * Turn DC back on after cable has been re-inserted. Up until
9390 * now, the DC has been in reset to save power.
Mike Marciniszyn77241052015-07-30 15:17:43 -04009391 */
9392 dc_start(dd);
9393
9394 if (qd->cache_refresh_required) {
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009395 set_qsfp_int_n(ppd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009396
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009397 wait_for_qsfp_init(ppd);
9398
9399 /*
9400 * Allow INT_N to trigger the QSFP interrupt to watch
9401 * for alarms and warnings
Mike Marciniszyn77241052015-07-30 15:17:43 -04009402 */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009403 set_qsfp_int_n(ppd, 1);
9404
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009405 start_link(ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009406 }
9407
9408 if (qd->check_interrupt_flags) {
9409 u8 qsfp_interrupt_status[16] = {0,};
9410
Dean Luick765a6fa2016-03-05 08:50:06 -08009411 if (one_qsfp_read(ppd, dd->hfi1_id, 6,
9412 &qsfp_interrupt_status[0], 16) != 16) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04009413 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009414 "%s: Failed to read status of QSFP module\n",
9415 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009416 } else {
9417 unsigned long flags;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009418
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009419 handle_qsfp_error_conditions(
9420 ppd, qsfp_interrupt_status);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009421 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
9422 ppd->qsfp_info.check_interrupt_flags = 0;
9423 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock,
Jubin John17fb4f22016-02-14 20:21:52 -08009424 flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009425 }
9426 }
9427}
9428
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009429static void init_qsfp_int(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009430{
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009431 struct hfi1_pportdata *ppd = dd->pport;
9432 u64 qsfp_mask, cce_int_mask;
9433 const int qsfp1_int_smask = QSFP1_INT % 64;
9434 const int qsfp2_int_smask = QSFP2_INT % 64;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009435
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009436 /*
9437 * disable QSFP1 interrupts for HFI1, QSFP2 interrupts for HFI0
9438 * Qsfp1Int and Qsfp2Int are adjacent bits in the same CSR,
9439 * therefore just one of QSFP1_INT/QSFP2_INT can be used to find
9440 * the index of the appropriate CSR in the CCEIntMask CSR array
9441 */
9442 cce_int_mask = read_csr(dd, CCE_INT_MASK +
9443 (8 * (QSFP1_INT / 64)));
9444 if (dd->hfi1_id) {
9445 cce_int_mask &= ~((u64)1 << qsfp1_int_smask);
9446 write_csr(dd, CCE_INT_MASK + (8 * (QSFP1_INT / 64)),
9447 cce_int_mask);
9448 } else {
9449 cce_int_mask &= ~((u64)1 << qsfp2_int_smask);
9450 write_csr(dd, CCE_INT_MASK + (8 * (QSFP2_INT / 64)),
9451 cce_int_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009452 }
9453
Mike Marciniszyn77241052015-07-30 15:17:43 -04009454 qsfp_mask = (u64)(QSFP_HFI0_INT_N | QSFP_HFI0_MODPRST_N);
9455 /* Clear current status to avoid spurious interrupts */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009456 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_CLEAR : ASIC_QSFP1_CLEAR,
9457 qsfp_mask);
9458 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_MASK : ASIC_QSFP1_MASK,
9459 qsfp_mask);
9460
9461 set_qsfp_int_n(ppd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009462
9463 /* Handle active low nature of INT_N and MODPRST_N pins */
9464 if (qsfp_mod_present(ppd))
9465 qsfp_mask &= ~(u64)QSFP_HFI0_MODPRST_N;
9466 write_csr(dd,
9467 dd->hfi1_id ? ASIC_QSFP2_INVERT : ASIC_QSFP1_INVERT,
9468 qsfp_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009469}
9470
Dean Luickbbdeb332015-12-01 15:38:15 -05009471/*
9472 * Do a one-time initialize of the LCB block.
9473 */
9474static void init_lcb(struct hfi1_devdata *dd)
9475{
Dean Luicka59329d2016-02-03 14:32:31 -08009476 /* simulator does not correctly handle LCB cclk loopback, skip */
9477 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR)
9478 return;
9479
Dean Luickbbdeb332015-12-01 15:38:15 -05009480 /* the DC has been reset earlier in the driver load */
9481
9482 /* set LCB for cclk loopback on the port */
9483 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0x01);
9484 write_csr(dd, DC_LCB_CFG_LANE_WIDTH, 0x00);
9485 write_csr(dd, DC_LCB_CFG_REINIT_AS_SLAVE, 0x00);
9486 write_csr(dd, DC_LCB_CFG_CNT_FOR_SKIP_STALL, 0x110);
9487 write_csr(dd, DC_LCB_CFG_CLK_CNTR, 0x08);
9488 write_csr(dd, DC_LCB_CFG_LOOPBACK, 0x02);
9489 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0x00);
9490}
9491
Dean Luick673b9752016-08-31 07:24:33 -07009492/*
9493 * Perform a test read on the QSFP. Return 0 on success, -ERRNO
9494 * on error.
9495 */
9496static int test_qsfp_read(struct hfi1_pportdata *ppd)
9497{
9498 int ret;
9499 u8 status;
9500
9501 /* report success if not a QSFP */
9502 if (ppd->port_type != PORT_TYPE_QSFP)
9503 return 0;
9504
9505 /* read byte 2, the status byte */
9506 ret = one_qsfp_read(ppd, ppd->dd->hfi1_id, 2, &status, 1);
9507 if (ret < 0)
9508 return ret;
9509 if (ret != 1)
9510 return -EIO;
9511
9512 return 0; /* success */
9513}
9514
9515/*
9516 * Values for QSFP retry.
9517 *
9518 * Give up after 10s (20 x 500ms). The overall timeout was empirically
9519 * arrived at from experience on a large cluster.
9520 */
9521#define MAX_QSFP_RETRIES 20
9522#define QSFP_RETRY_WAIT 500 /* msec */
9523
9524/*
9525 * Try a QSFP read. If it fails, schedule a retry for later.
9526 * Called on first link activation after driver load.
9527 */
9528static void try_start_link(struct hfi1_pportdata *ppd)
9529{
9530 if (test_qsfp_read(ppd)) {
9531 /* read failed */
9532 if (ppd->qsfp_retry_count >= MAX_QSFP_RETRIES) {
9533 dd_dev_err(ppd->dd, "QSFP not responding, giving up\n");
9534 return;
9535 }
9536 dd_dev_info(ppd->dd,
9537 "QSFP not responding, waiting and retrying %d\n",
9538 (int)ppd->qsfp_retry_count);
9539 ppd->qsfp_retry_count++;
9540 queue_delayed_work(ppd->hfi1_wq, &ppd->start_link_work,
9541 msecs_to_jiffies(QSFP_RETRY_WAIT));
9542 return;
9543 }
9544 ppd->qsfp_retry_count = 0;
9545
Dean Luick673b9752016-08-31 07:24:33 -07009546 start_link(ppd);
9547}
9548
9549/*
9550 * Workqueue function to start the link after a delay.
9551 */
9552void handle_start_link(struct work_struct *work)
9553{
9554 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
9555 start_link_work.work);
9556 try_start_link(ppd);
9557}
9558
Mike Marciniszyn77241052015-07-30 15:17:43 -04009559int bringup_serdes(struct hfi1_pportdata *ppd)
9560{
9561 struct hfi1_devdata *dd = ppd->dd;
9562 u64 guid;
9563 int ret;
9564
9565 if (HFI1_CAP_IS_KSET(EXTENDED_PSN))
9566 add_rcvctrl(dd, RCV_CTRL_RCV_EXTENDED_PSN_ENABLE_SMASK);
9567
9568 guid = ppd->guid;
9569 if (!guid) {
9570 if (dd->base_guid)
9571 guid = dd->base_guid + ppd->port - 1;
9572 ppd->guid = guid;
9573 }
9574
Mike Marciniszyn77241052015-07-30 15:17:43 -04009575 /* Set linkinit_reason on power up per OPA spec */
9576 ppd->linkinit_reason = OPA_LINKINIT_REASON_LINKUP;
9577
Dean Luickbbdeb332015-12-01 15:38:15 -05009578 /* one-time init of the LCB */
9579 init_lcb(dd);
9580
Mike Marciniszyn77241052015-07-30 15:17:43 -04009581 if (loopback) {
9582 ret = init_loopback(dd);
9583 if (ret < 0)
9584 return ret;
9585 }
9586
Easwar Hariharan9775a992016-05-12 10:22:39 -07009587 get_port_type(ppd);
9588 if (ppd->port_type == PORT_TYPE_QSFP) {
9589 set_qsfp_int_n(ppd, 0);
9590 wait_for_qsfp_init(ppd);
9591 set_qsfp_int_n(ppd, 1);
9592 }
9593
Dean Luick673b9752016-08-31 07:24:33 -07009594 try_start_link(ppd);
9595 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009596}
9597
9598void hfi1_quiet_serdes(struct hfi1_pportdata *ppd)
9599{
9600 struct hfi1_devdata *dd = ppd->dd;
9601
9602 /*
9603 * Shut down the link and keep it down. First turn off that the
9604 * driver wants to allow the link to be up (driver_link_ready).
9605 * Then make sure the link is not automatically restarted
9606 * (link_enabled). Cancel any pending restart. And finally
9607 * go offline.
9608 */
9609 ppd->driver_link_ready = 0;
9610 ppd->link_enabled = 0;
9611
Dean Luick673b9752016-08-31 07:24:33 -07009612 ppd->qsfp_retry_count = MAX_QSFP_RETRIES; /* prevent more retries */
9613 flush_delayed_work(&ppd->start_link_work);
9614 cancel_delayed_work_sync(&ppd->start_link_work);
9615
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009616 ppd->offline_disabled_reason =
9617 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_SMA_DISABLED);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009618 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_SMA_DISABLED, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08009619 OPA_LINKDOWN_REASON_SMA_DISABLED);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009620 set_link_state(ppd, HLS_DN_OFFLINE);
9621
9622 /* disable the port */
9623 clear_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
9624}
9625
9626static inline int init_cpu_counters(struct hfi1_devdata *dd)
9627{
9628 struct hfi1_pportdata *ppd;
9629 int i;
9630
9631 ppd = (struct hfi1_pportdata *)(dd + 1);
9632 for (i = 0; i < dd->num_pports; i++, ppd++) {
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08009633 ppd->ibport_data.rvp.rc_acks = NULL;
9634 ppd->ibport_data.rvp.rc_qacks = NULL;
9635 ppd->ibport_data.rvp.rc_acks = alloc_percpu(u64);
9636 ppd->ibport_data.rvp.rc_qacks = alloc_percpu(u64);
9637 ppd->ibport_data.rvp.rc_delayed_comp = alloc_percpu(u64);
9638 if (!ppd->ibport_data.rvp.rc_acks ||
9639 !ppd->ibport_data.rvp.rc_delayed_comp ||
9640 !ppd->ibport_data.rvp.rc_qacks)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009641 return -ENOMEM;
9642 }
9643
9644 return 0;
9645}
9646
9647static const char * const pt_names[] = {
9648 "expected",
9649 "eager",
9650 "invalid"
9651};
9652
9653static const char *pt_name(u32 type)
9654{
9655 return type >= ARRAY_SIZE(pt_names) ? "unknown" : pt_names[type];
9656}
9657
9658/*
9659 * index is the index into the receive array
9660 */
9661void hfi1_put_tid(struct hfi1_devdata *dd, u32 index,
9662 u32 type, unsigned long pa, u16 order)
9663{
9664 u64 reg;
9665 void __iomem *base = (dd->rcvarray_wc ? dd->rcvarray_wc :
9666 (dd->kregbase + RCV_ARRAY));
9667
9668 if (!(dd->flags & HFI1_PRESENT))
9669 goto done;
9670
9671 if (type == PT_INVALID) {
9672 pa = 0;
9673 } else if (type > PT_INVALID) {
9674 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009675 "unexpected receive array type %u for index %u, not handled\n",
9676 type, index);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009677 goto done;
9678 }
9679
9680 hfi1_cdbg(TID, "type %s, index 0x%x, pa 0x%lx, bsize 0x%lx",
9681 pt_name(type), index, pa, (unsigned long)order);
9682
9683#define RT_ADDR_SHIFT 12 /* 4KB kernel address boundary */
9684 reg = RCV_ARRAY_RT_WRITE_ENABLE_SMASK
9685 | (u64)order << RCV_ARRAY_RT_BUF_SIZE_SHIFT
9686 | ((pa >> RT_ADDR_SHIFT) & RCV_ARRAY_RT_ADDR_MASK)
9687 << RCV_ARRAY_RT_ADDR_SHIFT;
9688 writeq(reg, base + (index * 8));
9689
9690 if (type == PT_EAGER)
9691 /*
9692 * Eager entries are written one-by-one so we have to push them
9693 * after we write the entry.
9694 */
9695 flush_wc();
9696done:
9697 return;
9698}
9699
9700void hfi1_clear_tids(struct hfi1_ctxtdata *rcd)
9701{
9702 struct hfi1_devdata *dd = rcd->dd;
9703 u32 i;
9704
9705 /* this could be optimized */
9706 for (i = rcd->eager_base; i < rcd->eager_base +
9707 rcd->egrbufs.alloced; i++)
9708 hfi1_put_tid(dd, i, PT_INVALID, 0, 0);
9709
9710 for (i = rcd->expected_base;
9711 i < rcd->expected_base + rcd->expected_count; i++)
9712 hfi1_put_tid(dd, i, PT_INVALID, 0, 0);
9713}
9714
Mike Marciniszyn261a4352016-09-06 04:35:05 -07009715struct ib_header *hfi1_get_msgheader(
9716 struct hfi1_devdata *dd, __le32 *rhf_addr)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009717{
9718 u32 offset = rhf_hdrq_offset(rhf_to_cpu(rhf_addr));
9719
Mike Marciniszyn261a4352016-09-06 04:35:05 -07009720 return (struct ib_header *)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009721 (rhf_addr - dd->rhf_offset + offset);
9722}
9723
9724static const char * const ib_cfg_name_strings[] = {
9725 "HFI1_IB_CFG_LIDLMC",
9726 "HFI1_IB_CFG_LWID_DG_ENB",
9727 "HFI1_IB_CFG_LWID_ENB",
9728 "HFI1_IB_CFG_LWID",
9729 "HFI1_IB_CFG_SPD_ENB",
9730 "HFI1_IB_CFG_SPD",
9731 "HFI1_IB_CFG_RXPOL_ENB",
9732 "HFI1_IB_CFG_LREV_ENB",
9733 "HFI1_IB_CFG_LINKLATENCY",
9734 "HFI1_IB_CFG_HRTBT",
9735 "HFI1_IB_CFG_OP_VLS",
9736 "HFI1_IB_CFG_VL_HIGH_CAP",
9737 "HFI1_IB_CFG_VL_LOW_CAP",
9738 "HFI1_IB_CFG_OVERRUN_THRESH",
9739 "HFI1_IB_CFG_PHYERR_THRESH",
9740 "HFI1_IB_CFG_LINKDEFAULT",
9741 "HFI1_IB_CFG_PKEYS",
9742 "HFI1_IB_CFG_MTU",
9743 "HFI1_IB_CFG_LSTATE",
9744 "HFI1_IB_CFG_VL_HIGH_LIMIT",
9745 "HFI1_IB_CFG_PMA_TICKS",
9746 "HFI1_IB_CFG_PORT"
9747};
9748
9749static const char *ib_cfg_name(int which)
9750{
9751 if (which < 0 || which >= ARRAY_SIZE(ib_cfg_name_strings))
9752 return "invalid";
9753 return ib_cfg_name_strings[which];
9754}
9755
9756int hfi1_get_ib_cfg(struct hfi1_pportdata *ppd, int which)
9757{
9758 struct hfi1_devdata *dd = ppd->dd;
9759 int val = 0;
9760
9761 switch (which) {
9762 case HFI1_IB_CFG_LWID_ENB: /* allowed Link-width */
9763 val = ppd->link_width_enabled;
9764 break;
9765 case HFI1_IB_CFG_LWID: /* currently active Link-width */
9766 val = ppd->link_width_active;
9767 break;
9768 case HFI1_IB_CFG_SPD_ENB: /* allowed Link speeds */
9769 val = ppd->link_speed_enabled;
9770 break;
9771 case HFI1_IB_CFG_SPD: /* current Link speed */
9772 val = ppd->link_speed_active;
9773 break;
9774
9775 case HFI1_IB_CFG_RXPOL_ENB: /* Auto-RX-polarity enable */
9776 case HFI1_IB_CFG_LREV_ENB: /* Auto-Lane-reversal enable */
9777 case HFI1_IB_CFG_LINKLATENCY:
9778 goto unimplemented;
9779
9780 case HFI1_IB_CFG_OP_VLS:
9781 val = ppd->vls_operational;
9782 break;
9783 case HFI1_IB_CFG_VL_HIGH_CAP: /* VL arb high priority table size */
9784 val = VL_ARB_HIGH_PRIO_TABLE_SIZE;
9785 break;
9786 case HFI1_IB_CFG_VL_LOW_CAP: /* VL arb low priority table size */
9787 val = VL_ARB_LOW_PRIO_TABLE_SIZE;
9788 break;
9789 case HFI1_IB_CFG_OVERRUN_THRESH: /* IB overrun threshold */
9790 val = ppd->overrun_threshold;
9791 break;
9792 case HFI1_IB_CFG_PHYERR_THRESH: /* IB PHY error threshold */
9793 val = ppd->phy_error_threshold;
9794 break;
9795 case HFI1_IB_CFG_LINKDEFAULT: /* IB link default (sleep/poll) */
9796 val = dd->link_default;
9797 break;
9798
9799 case HFI1_IB_CFG_HRTBT: /* Heartbeat off/enable/auto */
9800 case HFI1_IB_CFG_PMA_TICKS:
9801 default:
9802unimplemented:
9803 if (HFI1_CAP_IS_KSET(PRINT_UNIMPL))
9804 dd_dev_info(
9805 dd,
9806 "%s: which %s: not implemented\n",
9807 __func__,
9808 ib_cfg_name(which));
9809 break;
9810 }
9811
9812 return val;
9813}
9814
9815/*
9816 * The largest MAD packet size.
9817 */
9818#define MAX_MAD_PACKET 2048
9819
9820/*
9821 * Return the maximum header bytes that can go on the _wire_
9822 * for this device. This count includes the ICRC which is
9823 * not part of the packet held in memory but it is appended
9824 * by the HW.
9825 * This is dependent on the device's receive header entry size.
9826 * HFI allows this to be set per-receive context, but the
9827 * driver presently enforces a global value.
9828 */
9829u32 lrh_max_header_bytes(struct hfi1_devdata *dd)
9830{
9831 /*
9832 * The maximum non-payload (MTU) bytes in LRH.PktLen are
9833 * the Receive Header Entry Size minus the PBC (or RHF) size
9834 * plus one DW for the ICRC appended by HW.
9835 *
9836 * dd->rcd[0].rcvhdrqentsize is in DW.
9837 * We use rcd[0] as all context will have the same value. Also,
9838 * the first kernel context would have been allocated by now so
9839 * we are guaranteed a valid value.
9840 */
9841 return (dd->rcd[0]->rcvhdrqentsize - 2/*PBC/RHF*/ + 1/*ICRC*/) << 2;
9842}
9843
9844/*
9845 * Set Send Length
9846 * @ppd - per port data
9847 *
9848 * Set the MTU by limiting how many DWs may be sent. The SendLenCheck*
9849 * registers compare against LRH.PktLen, so use the max bytes included
9850 * in the LRH.
9851 *
9852 * This routine changes all VL values except VL15, which it maintains at
9853 * the same value.
9854 */
9855static void set_send_length(struct hfi1_pportdata *ppd)
9856{
9857 struct hfi1_devdata *dd = ppd->dd;
Harish Chegondi6cc6ad22015-12-01 15:38:24 -05009858 u32 max_hb = lrh_max_header_bytes(dd), dcmtu;
9859 u32 maxvlmtu = dd->vld[15].mtu;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009860 u64 len1 = 0, len2 = (((dd->vld[15].mtu + max_hb) >> 2)
9861 & SEND_LEN_CHECK1_LEN_VL15_MASK) <<
9862 SEND_LEN_CHECK1_LEN_VL15_SHIFT;
Jubin Johnb4ba6632016-06-09 07:51:08 -07009863 int i, j;
Jianxin Xiong44306f12016-04-12 11:30:28 -07009864 u32 thres;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009865
9866 for (i = 0; i < ppd->vls_supported; i++) {
9867 if (dd->vld[i].mtu > maxvlmtu)
9868 maxvlmtu = dd->vld[i].mtu;
9869 if (i <= 3)
9870 len1 |= (((dd->vld[i].mtu + max_hb) >> 2)
9871 & SEND_LEN_CHECK0_LEN_VL0_MASK) <<
9872 ((i % 4) * SEND_LEN_CHECK0_LEN_VL1_SHIFT);
9873 else
9874 len2 |= (((dd->vld[i].mtu + max_hb) >> 2)
9875 & SEND_LEN_CHECK1_LEN_VL4_MASK) <<
9876 ((i % 4) * SEND_LEN_CHECK1_LEN_VL5_SHIFT);
9877 }
9878 write_csr(dd, SEND_LEN_CHECK0, len1);
9879 write_csr(dd, SEND_LEN_CHECK1, len2);
9880 /* adjust kernel credit return thresholds based on new MTUs */
9881 /* all kernel receive contexts have the same hdrqentsize */
9882 for (i = 0; i < ppd->vls_supported; i++) {
Jianxin Xiong44306f12016-04-12 11:30:28 -07009883 thres = min(sc_percent_to_threshold(dd->vld[i].sc, 50),
9884 sc_mtu_to_threshold(dd->vld[i].sc,
9885 dd->vld[i].mtu,
Jubin John17fb4f22016-02-14 20:21:52 -08009886 dd->rcd[0]->rcvhdrqentsize));
Jubin Johnb4ba6632016-06-09 07:51:08 -07009887 for (j = 0; j < INIT_SC_PER_VL; j++)
9888 sc_set_cr_threshold(
9889 pio_select_send_context_vl(dd, j, i),
9890 thres);
Jianxin Xiong44306f12016-04-12 11:30:28 -07009891 }
9892 thres = min(sc_percent_to_threshold(dd->vld[15].sc, 50),
9893 sc_mtu_to_threshold(dd->vld[15].sc,
9894 dd->vld[15].mtu,
9895 dd->rcd[0]->rcvhdrqentsize));
9896 sc_set_cr_threshold(dd->vld[15].sc, thres);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009897
9898 /* Adjust maximum MTU for the port in DC */
9899 dcmtu = maxvlmtu == 10240 ? DCC_CFG_PORT_MTU_CAP_10240 :
9900 (ilog2(maxvlmtu >> 8) + 1);
9901 len1 = read_csr(ppd->dd, DCC_CFG_PORT_CONFIG);
9902 len1 &= ~DCC_CFG_PORT_CONFIG_MTU_CAP_SMASK;
9903 len1 |= ((u64)dcmtu & DCC_CFG_PORT_CONFIG_MTU_CAP_MASK) <<
9904 DCC_CFG_PORT_CONFIG_MTU_CAP_SHIFT;
9905 write_csr(ppd->dd, DCC_CFG_PORT_CONFIG, len1);
9906}
9907
9908static void set_lidlmc(struct hfi1_pportdata *ppd)
9909{
9910 int i;
9911 u64 sreg = 0;
9912 struct hfi1_devdata *dd = ppd->dd;
9913 u32 mask = ~((1U << ppd->lmc) - 1);
9914 u64 c1 = read_csr(ppd->dd, DCC_CFG_PORT_CONFIG1);
9915
9916 if (dd->hfi1_snoop.mode_flag)
9917 dd_dev_info(dd, "Set lid/lmc while snooping");
9918
9919 c1 &= ~(DCC_CFG_PORT_CONFIG1_TARGET_DLID_SMASK
9920 | DCC_CFG_PORT_CONFIG1_DLID_MASK_SMASK);
9921 c1 |= ((ppd->lid & DCC_CFG_PORT_CONFIG1_TARGET_DLID_MASK)
Jubin John8638b772016-02-14 20:19:24 -08009922 << DCC_CFG_PORT_CONFIG1_TARGET_DLID_SHIFT) |
Mike Marciniszyn77241052015-07-30 15:17:43 -04009923 ((mask & DCC_CFG_PORT_CONFIG1_DLID_MASK_MASK)
9924 << DCC_CFG_PORT_CONFIG1_DLID_MASK_SHIFT);
9925 write_csr(ppd->dd, DCC_CFG_PORT_CONFIG1, c1);
9926
9927 /*
9928 * Iterate over all the send contexts and set their SLID check
9929 */
9930 sreg = ((mask & SEND_CTXT_CHECK_SLID_MASK_MASK) <<
9931 SEND_CTXT_CHECK_SLID_MASK_SHIFT) |
9932 (((ppd->lid & mask) & SEND_CTXT_CHECK_SLID_VALUE_MASK) <<
9933 SEND_CTXT_CHECK_SLID_VALUE_SHIFT);
9934
9935 for (i = 0; i < dd->chip_send_contexts; i++) {
9936 hfi1_cdbg(LINKVERB, "SendContext[%d].SLID_CHECK = 0x%x",
9937 i, (u32)sreg);
9938 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_SLID, sreg);
9939 }
9940
9941 /* Now we have to do the same thing for the sdma engines */
9942 sdma_update_lmc(dd, mask, ppd->lid);
9943}
9944
9945static int wait_phy_linkstate(struct hfi1_devdata *dd, u32 state, u32 msecs)
9946{
9947 unsigned long timeout;
9948 u32 curr_state;
9949
9950 timeout = jiffies + msecs_to_jiffies(msecs);
9951 while (1) {
9952 curr_state = read_physical_state(dd);
9953 if (curr_state == state)
9954 break;
9955 if (time_after(jiffies, timeout)) {
9956 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009957 "timeout waiting for phy link state 0x%x, current state is 0x%x\n",
9958 state, curr_state);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009959 return -ETIMEDOUT;
9960 }
9961 usleep_range(1950, 2050); /* sleep 2ms-ish */
9962 }
9963
9964 return 0;
9965}
9966
Dean Luick6854c692016-07-25 13:38:56 -07009967static const char *state_completed_string(u32 completed)
9968{
9969 static const char * const state_completed[] = {
9970 "EstablishComm",
9971 "OptimizeEQ",
9972 "VerifyCap"
9973 };
9974
9975 if (completed < ARRAY_SIZE(state_completed))
9976 return state_completed[completed];
9977
9978 return "unknown";
9979}
9980
9981static const char all_lanes_dead_timeout_expired[] =
9982 "All lanes were inactive – was the interconnect media removed?";
9983static const char tx_out_of_policy[] =
9984 "Passing lanes on local port do not meet the local link width policy";
9985static const char no_state_complete[] =
9986 "State timeout occurred before link partner completed the state";
9987static const char * const state_complete_reasons[] = {
9988 [0x00] = "Reason unknown",
9989 [0x01] = "Link was halted by driver, refer to LinkDownReason",
9990 [0x02] = "Link partner reported failure",
9991 [0x10] = "Unable to achieve frame sync on any lane",
9992 [0x11] =
9993 "Unable to find a common bit rate with the link partner",
9994 [0x12] =
9995 "Unable to achieve frame sync on sufficient lanes to meet the local link width policy",
9996 [0x13] =
9997 "Unable to identify preset equalization on sufficient lanes to meet the local link width policy",
9998 [0x14] = no_state_complete,
9999 [0x15] =
10000 "State timeout occurred before link partner identified equalization presets",
10001 [0x16] =
10002 "Link partner completed the EstablishComm state, but the passing lanes do not meet the local link width policy",
10003 [0x17] = tx_out_of_policy,
10004 [0x20] = all_lanes_dead_timeout_expired,
10005 [0x21] =
10006 "Unable to achieve acceptable BER on sufficient lanes to meet the local link width policy",
10007 [0x22] = no_state_complete,
10008 [0x23] =
10009 "Link partner completed the OptimizeEq state, but the passing lanes do not meet the local link width policy",
10010 [0x24] = tx_out_of_policy,
10011 [0x30] = all_lanes_dead_timeout_expired,
10012 [0x31] =
10013 "State timeout occurred waiting for host to process received frames",
10014 [0x32] = no_state_complete,
10015 [0x33] =
10016 "Link partner completed the VerifyCap state, but the passing lanes do not meet the local link width policy",
10017 [0x34] = tx_out_of_policy,
10018};
10019
10020static const char *state_complete_reason_code_string(struct hfi1_pportdata *ppd,
10021 u32 code)
10022{
10023 const char *str = NULL;
10024
10025 if (code < ARRAY_SIZE(state_complete_reasons))
10026 str = state_complete_reasons[code];
10027
10028 if (str)
10029 return str;
10030 return "Reserved";
10031}
10032
10033/* describe the given last state complete frame */
10034static void decode_state_complete(struct hfi1_pportdata *ppd, u32 frame,
10035 const char *prefix)
10036{
10037 struct hfi1_devdata *dd = ppd->dd;
10038 u32 success;
10039 u32 state;
10040 u32 reason;
10041 u32 lanes;
10042
10043 /*
10044 * Decode frame:
10045 * [ 0: 0] - success
10046 * [ 3: 1] - state
10047 * [ 7: 4] - next state timeout
10048 * [15: 8] - reason code
10049 * [31:16] - lanes
10050 */
10051 success = frame & 0x1;
10052 state = (frame >> 1) & 0x7;
10053 reason = (frame >> 8) & 0xff;
10054 lanes = (frame >> 16) & 0xffff;
10055
10056 dd_dev_err(dd, "Last %s LNI state complete frame 0x%08x:\n",
10057 prefix, frame);
10058 dd_dev_err(dd, " last reported state state: %s (0x%x)\n",
10059 state_completed_string(state), state);
10060 dd_dev_err(dd, " state successfully completed: %s\n",
10061 success ? "yes" : "no");
10062 dd_dev_err(dd, " fail reason 0x%x: %s\n",
10063 reason, state_complete_reason_code_string(ppd, reason));
10064 dd_dev_err(dd, " passing lane mask: 0x%x", lanes);
10065}
10066
10067/*
10068 * Read the last state complete frames and explain them. This routine
10069 * expects to be called if the link went down during link negotiation
10070 * and initialization (LNI). That is, anywhere between polling and link up.
10071 */
10072static void check_lni_states(struct hfi1_pportdata *ppd)
10073{
10074 u32 last_local_state;
10075 u32 last_remote_state;
10076
10077 read_last_local_state(ppd->dd, &last_local_state);
10078 read_last_remote_state(ppd->dd, &last_remote_state);
10079
10080 /*
10081 * Don't report anything if there is nothing to report. A value of
10082 * 0 means the link was taken down while polling and there was no
10083 * training in-process.
10084 */
10085 if (last_local_state == 0 && last_remote_state == 0)
10086 return;
10087
10088 decode_state_complete(ppd, last_local_state, "transmitted");
10089 decode_state_complete(ppd, last_remote_state, "received");
10090}
10091
Mike Marciniszyn77241052015-07-30 15:17:43 -040010092/*
10093 * Helper for set_link_state(). Do not call except from that routine.
10094 * Expects ppd->hls_mutex to be held.
10095 *
10096 * @rem_reason value to be sent to the neighbor
10097 *
10098 * LinkDownReasons only set if transition succeeds.
10099 */
10100static int goto_offline(struct hfi1_pportdata *ppd, u8 rem_reason)
10101{
10102 struct hfi1_devdata *dd = ppd->dd;
10103 u32 pstate, previous_state;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010104 int ret;
10105 int do_transition;
10106 int do_wait;
10107
10108 previous_state = ppd->host_link_state;
10109 ppd->host_link_state = HLS_GOING_OFFLINE;
10110 pstate = read_physical_state(dd);
10111 if (pstate == PLS_OFFLINE) {
10112 do_transition = 0; /* in right state */
10113 do_wait = 0; /* ...no need to wait */
10114 } else if ((pstate & 0xff) == PLS_OFFLINE) {
10115 do_transition = 0; /* in an offline transient state */
10116 do_wait = 1; /* ...wait for it to settle */
10117 } else {
10118 do_transition = 1; /* need to move to offline */
10119 do_wait = 1; /* ...will need to wait */
10120 }
10121
10122 if (do_transition) {
10123 ret = set_physical_link_state(dd,
Harish Chegondibf640092016-03-05 08:49:29 -080010124 (rem_reason << 8) | PLS_OFFLINE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010125
10126 if (ret != HCMD_SUCCESS) {
10127 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010128 "Failed to transition to Offline link state, return %d\n",
10129 ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010130 return -EINVAL;
10131 }
Bryan Morgana9c05e32016-02-03 14:30:49 -080010132 if (ppd->offline_disabled_reason ==
10133 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE))
Mike Marciniszyn77241052015-07-30 15:17:43 -040010134 ppd->offline_disabled_reason =
Bryan Morgana9c05e32016-02-03 14:30:49 -080010135 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_TRANSIENT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010136 }
10137
10138 if (do_wait) {
10139 /* it can take a while for the link to go down */
Dean Luickdc060242015-10-26 10:28:29 -040010140 ret = wait_phy_linkstate(dd, PLS_OFFLINE, 10000);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010141 if (ret < 0)
10142 return ret;
10143 }
10144
10145 /* make sure the logical state is also down */
10146 wait_logical_linkstate(ppd, IB_PORT_DOWN, 1000);
10147
10148 /*
10149 * Now in charge of LCB - must be after the physical state is
10150 * offline.quiet and before host_link_state is changed.
10151 */
10152 set_host_lcb_access(dd);
10153 write_csr(dd, DC_LCB_ERR_EN, ~0ull); /* watch LCB errors */
10154 ppd->host_link_state = HLS_LINK_COOLDOWN; /* LCB access allowed */
10155
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080010156 if (ppd->port_type == PORT_TYPE_QSFP &&
10157 ppd->qsfp_info.limiting_active &&
10158 qsfp_mod_present(ppd)) {
Dean Luick765a6fa2016-03-05 08:50:06 -080010159 int ret;
10160
10161 ret = acquire_chip_resource(dd, qsfp_resource(dd), QSFP_WAIT);
10162 if (ret == 0) {
10163 set_qsfp_tx(ppd, 0);
10164 release_chip_resource(dd, qsfp_resource(dd));
10165 } else {
10166 /* not fatal, but should warn */
10167 dd_dev_err(dd,
10168 "Unable to acquire lock to turn off QSFP TX\n");
10169 }
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080010170 }
10171
Mike Marciniszyn77241052015-07-30 15:17:43 -040010172 /*
10173 * The LNI has a mandatory wait time after the physical state
10174 * moves to Offline.Quiet. The wait time may be different
10175 * depending on how the link went down. The 8051 firmware
10176 * will observe the needed wait time and only move to ready
10177 * when that is completed. The largest of the quiet timeouts
Dean Luick05087f3b2015-12-01 15:38:16 -050010178 * is 6s, so wait that long and then at least 0.5s more for
10179 * other transitions, and another 0.5s for a buffer.
Mike Marciniszyn77241052015-07-30 15:17:43 -040010180 */
Dean Luick05087f3b2015-12-01 15:38:16 -050010181 ret = wait_fm_ready(dd, 7000);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010182 if (ret) {
10183 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010184 "After going offline, timed out waiting for the 8051 to become ready to accept host requests\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -040010185 /* state is really offline, so make it so */
10186 ppd->host_link_state = HLS_DN_OFFLINE;
10187 return ret;
10188 }
10189
10190 /*
10191 * The state is now offline and the 8051 is ready to accept host
10192 * requests.
10193 * - change our state
10194 * - notify others if we were previously in a linkup state
10195 */
10196 ppd->host_link_state = HLS_DN_OFFLINE;
10197 if (previous_state & HLS_UP) {
10198 /* went down while link was up */
10199 handle_linkup_change(dd, 0);
10200 } else if (previous_state
10201 & (HLS_DN_POLL | HLS_VERIFY_CAP | HLS_GOING_UP)) {
10202 /* went down while attempting link up */
Dean Luick6854c692016-07-25 13:38:56 -070010203 check_lni_states(ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010204 }
10205
10206 /* the active link width (downgrade) is 0 on link down */
10207 ppd->link_width_active = 0;
10208 ppd->link_width_downgrade_tx_active = 0;
10209 ppd->link_width_downgrade_rx_active = 0;
10210 ppd->current_egress_rate = 0;
10211 return 0;
10212}
10213
10214/* return the link state name */
10215static const char *link_state_name(u32 state)
10216{
10217 const char *name;
10218 int n = ilog2(state);
10219 static const char * const names[] = {
10220 [__HLS_UP_INIT_BP] = "INIT",
10221 [__HLS_UP_ARMED_BP] = "ARMED",
10222 [__HLS_UP_ACTIVE_BP] = "ACTIVE",
10223 [__HLS_DN_DOWNDEF_BP] = "DOWNDEF",
10224 [__HLS_DN_POLL_BP] = "POLL",
10225 [__HLS_DN_DISABLE_BP] = "DISABLE",
10226 [__HLS_DN_OFFLINE_BP] = "OFFLINE",
10227 [__HLS_VERIFY_CAP_BP] = "VERIFY_CAP",
10228 [__HLS_GOING_UP_BP] = "GOING_UP",
10229 [__HLS_GOING_OFFLINE_BP] = "GOING_OFFLINE",
10230 [__HLS_LINK_COOLDOWN_BP] = "LINK_COOLDOWN"
10231 };
10232
10233 name = n < ARRAY_SIZE(names) ? names[n] : NULL;
10234 return name ? name : "unknown";
10235}
10236
10237/* return the link state reason name */
10238static const char *link_state_reason_name(struct hfi1_pportdata *ppd, u32 state)
10239{
10240 if (state == HLS_UP_INIT) {
10241 switch (ppd->linkinit_reason) {
10242 case OPA_LINKINIT_REASON_LINKUP:
10243 return "(LINKUP)";
10244 case OPA_LINKINIT_REASON_FLAPPING:
10245 return "(FLAPPING)";
10246 case OPA_LINKINIT_OUTSIDE_POLICY:
10247 return "(OUTSIDE_POLICY)";
10248 case OPA_LINKINIT_QUARANTINED:
10249 return "(QUARANTINED)";
10250 case OPA_LINKINIT_INSUFIC_CAPABILITY:
10251 return "(INSUFIC_CAPABILITY)";
10252 default:
10253 break;
10254 }
10255 }
10256 return "";
10257}
10258
10259/*
10260 * driver_physical_state - convert the driver's notion of a port's
10261 * state (an HLS_*) into a physical state (a {IB,OPA}_PORTPHYSSTATE_*).
10262 * Return -1 (converted to a u32) to indicate error.
10263 */
10264u32 driver_physical_state(struct hfi1_pportdata *ppd)
10265{
10266 switch (ppd->host_link_state) {
10267 case HLS_UP_INIT:
10268 case HLS_UP_ARMED:
10269 case HLS_UP_ACTIVE:
10270 return IB_PORTPHYSSTATE_LINKUP;
10271 case HLS_DN_POLL:
10272 return IB_PORTPHYSSTATE_POLLING;
10273 case HLS_DN_DISABLE:
10274 return IB_PORTPHYSSTATE_DISABLED;
10275 case HLS_DN_OFFLINE:
10276 return OPA_PORTPHYSSTATE_OFFLINE;
10277 case HLS_VERIFY_CAP:
10278 return IB_PORTPHYSSTATE_POLLING;
10279 case HLS_GOING_UP:
10280 return IB_PORTPHYSSTATE_POLLING;
10281 case HLS_GOING_OFFLINE:
10282 return OPA_PORTPHYSSTATE_OFFLINE;
10283 case HLS_LINK_COOLDOWN:
10284 return OPA_PORTPHYSSTATE_OFFLINE;
10285 case HLS_DN_DOWNDEF:
10286 default:
10287 dd_dev_err(ppd->dd, "invalid host_link_state 0x%x\n",
10288 ppd->host_link_state);
10289 return -1;
10290 }
10291}
10292
10293/*
10294 * driver_logical_state - convert the driver's notion of a port's
10295 * state (an HLS_*) into a logical state (a IB_PORT_*). Return -1
10296 * (converted to a u32) to indicate error.
10297 */
10298u32 driver_logical_state(struct hfi1_pportdata *ppd)
10299{
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -070010300 if (ppd->host_link_state && (ppd->host_link_state & HLS_DOWN))
Mike Marciniszyn77241052015-07-30 15:17:43 -040010301 return IB_PORT_DOWN;
10302
10303 switch (ppd->host_link_state & HLS_UP) {
10304 case HLS_UP_INIT:
10305 return IB_PORT_INIT;
10306 case HLS_UP_ARMED:
10307 return IB_PORT_ARMED;
10308 case HLS_UP_ACTIVE:
10309 return IB_PORT_ACTIVE;
10310 default:
10311 dd_dev_err(ppd->dd, "invalid host_link_state 0x%x\n",
10312 ppd->host_link_state);
10313 return -1;
10314 }
10315}
10316
10317void set_link_down_reason(struct hfi1_pportdata *ppd, u8 lcl_reason,
10318 u8 neigh_reason, u8 rem_reason)
10319{
10320 if (ppd->local_link_down_reason.latest == 0 &&
10321 ppd->neigh_link_down_reason.latest == 0) {
10322 ppd->local_link_down_reason.latest = lcl_reason;
10323 ppd->neigh_link_down_reason.latest = neigh_reason;
10324 ppd->remote_link_down_reason = rem_reason;
10325 }
10326}
10327
10328/*
10329 * Change the physical and/or logical link state.
10330 *
10331 * Do not call this routine while inside an interrupt. It contains
10332 * calls to routines that can take multiple seconds to finish.
10333 *
10334 * Returns 0 on success, -errno on failure.
10335 */
10336int set_link_state(struct hfi1_pportdata *ppd, u32 state)
10337{
10338 struct hfi1_devdata *dd = ppd->dd;
10339 struct ib_event event = {.device = NULL};
10340 int ret1, ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010341 int orig_new_state, poll_bounce;
10342
10343 mutex_lock(&ppd->hls_lock);
10344
10345 orig_new_state = state;
10346 if (state == HLS_DN_DOWNDEF)
10347 state = dd->link_default;
10348
10349 /* interpret poll -> poll as a link bounce */
Jubin Johnd0d236e2016-02-14 20:20:15 -080010350 poll_bounce = ppd->host_link_state == HLS_DN_POLL &&
10351 state == HLS_DN_POLL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010352
10353 dd_dev_info(dd, "%s: current %s, new %s %s%s\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -080010354 link_state_name(ppd->host_link_state),
10355 link_state_name(orig_new_state),
10356 poll_bounce ? "(bounce) " : "",
10357 link_state_reason_name(ppd, state));
Mike Marciniszyn77241052015-07-30 15:17:43 -040010358
Mike Marciniszyn77241052015-07-30 15:17:43 -040010359 /*
10360 * If we're going to a (HLS_*) link state that implies the logical
10361 * link state is neither of (IB_PORT_ARMED, IB_PORT_ACTIVE), then
10362 * reset is_sm_config_started to 0.
10363 */
10364 if (!(state & (HLS_UP_ARMED | HLS_UP_ACTIVE)))
10365 ppd->is_sm_config_started = 0;
10366
10367 /*
10368 * Do nothing if the states match. Let a poll to poll link bounce
10369 * go through.
10370 */
10371 if (ppd->host_link_state == state && !poll_bounce)
10372 goto done;
10373
10374 switch (state) {
10375 case HLS_UP_INIT:
Jubin Johnd0d236e2016-02-14 20:20:15 -080010376 if (ppd->host_link_state == HLS_DN_POLL &&
10377 (quick_linkup || dd->icode == ICODE_FUNCTIONAL_SIMULATOR)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010378 /*
10379 * Quick link up jumps from polling to here.
10380 *
10381 * Whether in normal or loopback mode, the
10382 * simulator jumps from polling to link up.
10383 * Accept that here.
10384 */
Jubin John17fb4f22016-02-14 20:21:52 -080010385 /* OK */
Mike Marciniszyn77241052015-07-30 15:17:43 -040010386 } else if (ppd->host_link_state != HLS_GOING_UP) {
10387 goto unexpected;
10388 }
10389
10390 ppd->host_link_state = HLS_UP_INIT;
10391 ret = wait_logical_linkstate(ppd, IB_PORT_INIT, 1000);
10392 if (ret) {
10393 /* logical state didn't change, stay at going_up */
10394 ppd->host_link_state = HLS_GOING_UP;
10395 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010396 "%s: logical state did not change to INIT\n",
10397 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010398 } else {
10399 /* clear old transient LINKINIT_REASON code */
10400 if (ppd->linkinit_reason >= OPA_LINKINIT_REASON_CLEAR)
10401 ppd->linkinit_reason =
10402 OPA_LINKINIT_REASON_LINKUP;
10403
10404 /* enable the port */
10405 add_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
10406
10407 handle_linkup_change(dd, 1);
10408 }
10409 break;
10410 case HLS_UP_ARMED:
10411 if (ppd->host_link_state != HLS_UP_INIT)
10412 goto unexpected;
10413
10414 ppd->host_link_state = HLS_UP_ARMED;
10415 set_logical_state(dd, LSTATE_ARMED);
10416 ret = wait_logical_linkstate(ppd, IB_PORT_ARMED, 1000);
10417 if (ret) {
10418 /* logical state didn't change, stay at init */
10419 ppd->host_link_state = HLS_UP_INIT;
10420 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010421 "%s: logical state did not change to ARMED\n",
10422 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010423 }
10424 /*
10425 * The simulator does not currently implement SMA messages,
10426 * so neighbor_normal is not set. Set it here when we first
10427 * move to Armed.
10428 */
10429 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR)
10430 ppd->neighbor_normal = 1;
10431 break;
10432 case HLS_UP_ACTIVE:
10433 if (ppd->host_link_state != HLS_UP_ARMED)
10434 goto unexpected;
10435
10436 ppd->host_link_state = HLS_UP_ACTIVE;
10437 set_logical_state(dd, LSTATE_ACTIVE);
10438 ret = wait_logical_linkstate(ppd, IB_PORT_ACTIVE, 1000);
10439 if (ret) {
10440 /* logical state didn't change, stay at armed */
10441 ppd->host_link_state = HLS_UP_ARMED;
10442 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010443 "%s: logical state did not change to ACTIVE\n",
10444 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010445 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010446 /* tell all engines to go running */
10447 sdma_all_running(dd);
10448
10449 /* Signal the IB layer that the port has went active */
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -080010450 event.device = &dd->verbs_dev.rdi.ibdev;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010451 event.element.port_num = ppd->port;
10452 event.event = IB_EVENT_PORT_ACTIVE;
10453 }
10454 break;
10455 case HLS_DN_POLL:
10456 if ((ppd->host_link_state == HLS_DN_DISABLE ||
10457 ppd->host_link_state == HLS_DN_OFFLINE) &&
10458 dd->dc_shutdown)
10459 dc_start(dd);
10460 /* Hand LED control to the DC */
10461 write_csr(dd, DCC_CFG_LED_CNTRL, 0);
10462
10463 if (ppd->host_link_state != HLS_DN_OFFLINE) {
10464 u8 tmp = ppd->link_enabled;
10465
10466 ret = goto_offline(ppd, ppd->remote_link_down_reason);
10467 if (ret) {
10468 ppd->link_enabled = tmp;
10469 break;
10470 }
10471 ppd->remote_link_down_reason = 0;
10472
10473 if (ppd->driver_link_ready)
10474 ppd->link_enabled = 1;
10475 }
10476
Jim Snowfb9036d2016-01-11 18:32:21 -050010477 set_all_slowpath(ppd->dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010478 ret = set_local_link_attributes(ppd);
10479 if (ret)
10480 break;
10481
10482 ppd->port_error_action = 0;
10483 ppd->host_link_state = HLS_DN_POLL;
10484
10485 if (quick_linkup) {
10486 /* quick linkup does not go into polling */
10487 ret = do_quick_linkup(dd);
10488 } else {
10489 ret1 = set_physical_link_state(dd, PLS_POLLING);
10490 if (ret1 != HCMD_SUCCESS) {
10491 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010492 "Failed to transition to Polling link state, return 0x%x\n",
10493 ret1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010494 ret = -EINVAL;
10495 }
10496 }
Bryan Morgana9c05e32016-02-03 14:30:49 -080010497 ppd->offline_disabled_reason =
10498 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010499 /*
10500 * If an error occurred above, go back to offline. The
10501 * caller may reschedule another attempt.
10502 */
10503 if (ret)
10504 goto_offline(ppd, 0);
10505 break;
10506 case HLS_DN_DISABLE:
10507 /* link is disabled */
10508 ppd->link_enabled = 0;
10509
10510 /* allow any state to transition to disabled */
10511
10512 /* must transition to offline first */
10513 if (ppd->host_link_state != HLS_DN_OFFLINE) {
10514 ret = goto_offline(ppd, ppd->remote_link_down_reason);
10515 if (ret)
10516 break;
10517 ppd->remote_link_down_reason = 0;
10518 }
10519
10520 ret1 = set_physical_link_state(dd, PLS_DISABLED);
10521 if (ret1 != HCMD_SUCCESS) {
10522 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010523 "Failed to transition to Disabled link state, return 0x%x\n",
10524 ret1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010525 ret = -EINVAL;
10526 break;
10527 }
10528 ppd->host_link_state = HLS_DN_DISABLE;
10529 dc_shutdown(dd);
10530 break;
10531 case HLS_DN_OFFLINE:
10532 if (ppd->host_link_state == HLS_DN_DISABLE)
10533 dc_start(dd);
10534
10535 /* allow any state to transition to offline */
10536 ret = goto_offline(ppd, ppd->remote_link_down_reason);
10537 if (!ret)
10538 ppd->remote_link_down_reason = 0;
10539 break;
10540 case HLS_VERIFY_CAP:
10541 if (ppd->host_link_state != HLS_DN_POLL)
10542 goto unexpected;
10543 ppd->host_link_state = HLS_VERIFY_CAP;
10544 break;
10545 case HLS_GOING_UP:
10546 if (ppd->host_link_state != HLS_VERIFY_CAP)
10547 goto unexpected;
10548
10549 ret1 = set_physical_link_state(dd, PLS_LINKUP);
10550 if (ret1 != HCMD_SUCCESS) {
10551 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010552 "Failed to transition to link up state, return 0x%x\n",
10553 ret1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010554 ret = -EINVAL;
10555 break;
10556 }
10557 ppd->host_link_state = HLS_GOING_UP;
10558 break;
10559
10560 case HLS_GOING_OFFLINE: /* transient within goto_offline() */
10561 case HLS_LINK_COOLDOWN: /* transient within goto_offline() */
10562 default:
10563 dd_dev_info(dd, "%s: state 0x%x: not supported\n",
Jubin John17fb4f22016-02-14 20:21:52 -080010564 __func__, state);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010565 ret = -EINVAL;
10566 break;
10567 }
10568
Mike Marciniszyn77241052015-07-30 15:17:43 -040010569 goto done;
10570
10571unexpected:
10572 dd_dev_err(dd, "%s: unexpected state transition from %s to %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -080010573 __func__, link_state_name(ppd->host_link_state),
10574 link_state_name(state));
Mike Marciniszyn77241052015-07-30 15:17:43 -040010575 ret = -EINVAL;
10576
10577done:
10578 mutex_unlock(&ppd->hls_lock);
10579
10580 if (event.device)
10581 ib_dispatch_event(&event);
10582
10583 return ret;
10584}
10585
10586int hfi1_set_ib_cfg(struct hfi1_pportdata *ppd, int which, u32 val)
10587{
10588 u64 reg;
10589 int ret = 0;
10590
10591 switch (which) {
10592 case HFI1_IB_CFG_LIDLMC:
10593 set_lidlmc(ppd);
10594 break;
10595 case HFI1_IB_CFG_VL_HIGH_LIMIT:
10596 /*
10597 * The VL Arbitrator high limit is sent in units of 4k
10598 * bytes, while HFI stores it in units of 64 bytes.
10599 */
Jubin John8638b772016-02-14 20:19:24 -080010600 val *= 4096 / 64;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010601 reg = ((u64)val & SEND_HIGH_PRIORITY_LIMIT_LIMIT_MASK)
10602 << SEND_HIGH_PRIORITY_LIMIT_LIMIT_SHIFT;
10603 write_csr(ppd->dd, SEND_HIGH_PRIORITY_LIMIT, reg);
10604 break;
10605 case HFI1_IB_CFG_LINKDEFAULT: /* IB link default (sleep/poll) */
10606 /* HFI only supports POLL as the default link down state */
10607 if (val != HLS_DN_POLL)
10608 ret = -EINVAL;
10609 break;
10610 case HFI1_IB_CFG_OP_VLS:
10611 if (ppd->vls_operational != val) {
10612 ppd->vls_operational = val;
10613 if (!ppd->port)
10614 ret = -EINVAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010615 }
10616 break;
10617 /*
10618 * For link width, link width downgrade, and speed enable, always AND
10619 * the setting with what is actually supported. This has two benefits.
10620 * First, enabled can't have unsupported values, no matter what the
10621 * SM or FM might want. Second, the ALL_SUPPORTED wildcards that mean
10622 * "fill in with your supported value" have all the bits in the
10623 * field set, so simply ANDing with supported has the desired result.
10624 */
10625 case HFI1_IB_CFG_LWID_ENB: /* set allowed Link-width */
10626 ppd->link_width_enabled = val & ppd->link_width_supported;
10627 break;
10628 case HFI1_IB_CFG_LWID_DG_ENB: /* set allowed link width downgrade */
10629 ppd->link_width_downgrade_enabled =
10630 val & ppd->link_width_downgrade_supported;
10631 break;
10632 case HFI1_IB_CFG_SPD_ENB: /* allowed Link speeds */
10633 ppd->link_speed_enabled = val & ppd->link_speed_supported;
10634 break;
10635 case HFI1_IB_CFG_OVERRUN_THRESH: /* IB overrun threshold */
10636 /*
10637 * HFI does not follow IB specs, save this value
10638 * so we can report it, if asked.
10639 */
10640 ppd->overrun_threshold = val;
10641 break;
10642 case HFI1_IB_CFG_PHYERR_THRESH: /* IB PHY error threshold */
10643 /*
10644 * HFI does not follow IB specs, save this value
10645 * so we can report it, if asked.
10646 */
10647 ppd->phy_error_threshold = val;
10648 break;
10649
10650 case HFI1_IB_CFG_MTU:
10651 set_send_length(ppd);
10652 break;
10653
10654 case HFI1_IB_CFG_PKEYS:
10655 if (HFI1_CAP_IS_KSET(PKEY_CHECK))
10656 set_partition_keys(ppd);
10657 break;
10658
10659 default:
10660 if (HFI1_CAP_IS_KSET(PRINT_UNIMPL))
10661 dd_dev_info(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010662 "%s: which %s, val 0x%x: not implemented\n",
10663 __func__, ib_cfg_name(which), val);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010664 break;
10665 }
10666 return ret;
10667}
10668
10669/* begin functions related to vl arbitration table caching */
10670static void init_vl_arb_caches(struct hfi1_pportdata *ppd)
10671{
10672 int i;
10673
10674 BUILD_BUG_ON(VL_ARB_TABLE_SIZE !=
10675 VL_ARB_LOW_PRIO_TABLE_SIZE);
10676 BUILD_BUG_ON(VL_ARB_TABLE_SIZE !=
10677 VL_ARB_HIGH_PRIO_TABLE_SIZE);
10678
10679 /*
10680 * Note that we always return values directly from the
10681 * 'vl_arb_cache' (and do no CSR reads) in response to a
10682 * 'Get(VLArbTable)'. This is obviously correct after a
10683 * 'Set(VLArbTable)', since the cache will then be up to
10684 * date. But it's also correct prior to any 'Set(VLArbTable)'
10685 * since then both the cache, and the relevant h/w registers
10686 * will be zeroed.
10687 */
10688
10689 for (i = 0; i < MAX_PRIO_TABLE; i++)
10690 spin_lock_init(&ppd->vl_arb_cache[i].lock);
10691}
10692
10693/*
10694 * vl_arb_lock_cache
10695 *
10696 * All other vl_arb_* functions should be called only after locking
10697 * the cache.
10698 */
10699static inline struct vl_arb_cache *
10700vl_arb_lock_cache(struct hfi1_pportdata *ppd, int idx)
10701{
10702 if (idx != LO_PRIO_TABLE && idx != HI_PRIO_TABLE)
10703 return NULL;
10704 spin_lock(&ppd->vl_arb_cache[idx].lock);
10705 return &ppd->vl_arb_cache[idx];
10706}
10707
10708static inline void vl_arb_unlock_cache(struct hfi1_pportdata *ppd, int idx)
10709{
10710 spin_unlock(&ppd->vl_arb_cache[idx].lock);
10711}
10712
10713static void vl_arb_get_cache(struct vl_arb_cache *cache,
10714 struct ib_vl_weight_elem *vl)
10715{
10716 memcpy(vl, cache->table, VL_ARB_TABLE_SIZE * sizeof(*vl));
10717}
10718
10719static void vl_arb_set_cache(struct vl_arb_cache *cache,
10720 struct ib_vl_weight_elem *vl)
10721{
10722 memcpy(cache->table, vl, VL_ARB_TABLE_SIZE * sizeof(*vl));
10723}
10724
10725static int vl_arb_match_cache(struct vl_arb_cache *cache,
10726 struct ib_vl_weight_elem *vl)
10727{
10728 return !memcmp(cache->table, vl, VL_ARB_TABLE_SIZE * sizeof(*vl));
10729}
Jubin Johnf4d507c2016-02-14 20:20:25 -080010730
Mike Marciniszyn77241052015-07-30 15:17:43 -040010731/* end functions related to vl arbitration table caching */
10732
10733static int set_vl_weights(struct hfi1_pportdata *ppd, u32 target,
10734 u32 size, struct ib_vl_weight_elem *vl)
10735{
10736 struct hfi1_devdata *dd = ppd->dd;
10737 u64 reg;
10738 unsigned int i, is_up = 0;
10739 int drain, ret = 0;
10740
10741 mutex_lock(&ppd->hls_lock);
10742
10743 if (ppd->host_link_state & HLS_UP)
10744 is_up = 1;
10745
10746 drain = !is_ax(dd) && is_up;
10747
10748 if (drain)
10749 /*
10750 * Before adjusting VL arbitration weights, empty per-VL
10751 * FIFOs, otherwise a packet whose VL weight is being
10752 * set to 0 could get stuck in a FIFO with no chance to
10753 * egress.
10754 */
10755 ret = stop_drain_data_vls(dd);
10756
10757 if (ret) {
10758 dd_dev_err(
10759 dd,
10760 "%s: cannot stop/drain VLs - refusing to change VL arbitration weights\n",
10761 __func__);
10762 goto err;
10763 }
10764
10765 for (i = 0; i < size; i++, vl++) {
10766 /*
10767 * NOTE: The low priority shift and mask are used here, but
10768 * they are the same for both the low and high registers.
10769 */
10770 reg = (((u64)vl->vl & SEND_LOW_PRIORITY_LIST_VL_MASK)
10771 << SEND_LOW_PRIORITY_LIST_VL_SHIFT)
10772 | (((u64)vl->weight
10773 & SEND_LOW_PRIORITY_LIST_WEIGHT_MASK)
10774 << SEND_LOW_PRIORITY_LIST_WEIGHT_SHIFT);
10775 write_csr(dd, target + (i * 8), reg);
10776 }
10777 pio_send_control(dd, PSC_GLOBAL_VLARB_ENABLE);
10778
10779 if (drain)
10780 open_fill_data_vls(dd); /* reopen all VLs */
10781
10782err:
10783 mutex_unlock(&ppd->hls_lock);
10784
10785 return ret;
10786}
10787
10788/*
10789 * Read one credit merge VL register.
10790 */
10791static void read_one_cm_vl(struct hfi1_devdata *dd, u32 csr,
10792 struct vl_limit *vll)
10793{
10794 u64 reg = read_csr(dd, csr);
10795
10796 vll->dedicated = cpu_to_be16(
10797 (reg >> SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_SHIFT)
10798 & SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_MASK);
10799 vll->shared = cpu_to_be16(
10800 (reg >> SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_SHIFT)
10801 & SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_MASK);
10802}
10803
10804/*
10805 * Read the current credit merge limits.
10806 */
10807static int get_buffer_control(struct hfi1_devdata *dd,
10808 struct buffer_control *bc, u16 *overall_limit)
10809{
10810 u64 reg;
10811 int i;
10812
10813 /* not all entries are filled in */
10814 memset(bc, 0, sizeof(*bc));
10815
10816 /* OPA and HFI have a 1-1 mapping */
10817 for (i = 0; i < TXE_NUM_DATA_VL; i++)
Jubin John8638b772016-02-14 20:19:24 -080010818 read_one_cm_vl(dd, SEND_CM_CREDIT_VL + (8 * i), &bc->vl[i]);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010819
10820 /* NOTE: assumes that VL* and VL15 CSRs are bit-wise identical */
10821 read_one_cm_vl(dd, SEND_CM_CREDIT_VL15, &bc->vl[15]);
10822
10823 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
10824 bc->overall_shared_limit = cpu_to_be16(
10825 (reg >> SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SHIFT)
10826 & SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_MASK);
10827 if (overall_limit)
10828 *overall_limit = (reg
10829 >> SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SHIFT)
10830 & SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_MASK;
10831 return sizeof(struct buffer_control);
10832}
10833
10834static int get_sc2vlnt(struct hfi1_devdata *dd, struct sc2vlnt *dp)
10835{
10836 u64 reg;
10837 int i;
10838
10839 /* each register contains 16 SC->VLnt mappings, 4 bits each */
10840 reg = read_csr(dd, DCC_CFG_SC_VL_TABLE_15_0);
10841 for (i = 0; i < sizeof(u64); i++) {
10842 u8 byte = *(((u8 *)&reg) + i);
10843
10844 dp->vlnt[2 * i] = byte & 0xf;
10845 dp->vlnt[(2 * i) + 1] = (byte & 0xf0) >> 4;
10846 }
10847
10848 reg = read_csr(dd, DCC_CFG_SC_VL_TABLE_31_16);
10849 for (i = 0; i < sizeof(u64); i++) {
10850 u8 byte = *(((u8 *)&reg) + i);
10851
10852 dp->vlnt[16 + (2 * i)] = byte & 0xf;
10853 dp->vlnt[16 + (2 * i) + 1] = (byte & 0xf0) >> 4;
10854 }
10855 return sizeof(struct sc2vlnt);
10856}
10857
10858static void get_vlarb_preempt(struct hfi1_devdata *dd, u32 nelems,
10859 struct ib_vl_weight_elem *vl)
10860{
10861 unsigned int i;
10862
10863 for (i = 0; i < nelems; i++, vl++) {
10864 vl->vl = 0xf;
10865 vl->weight = 0;
10866 }
10867}
10868
10869static void set_sc2vlnt(struct hfi1_devdata *dd, struct sc2vlnt *dp)
10870{
10871 write_csr(dd, DCC_CFG_SC_VL_TABLE_15_0,
Jubin John17fb4f22016-02-14 20:21:52 -080010872 DC_SC_VL_VAL(15_0,
10873 0, dp->vlnt[0] & 0xf,
10874 1, dp->vlnt[1] & 0xf,
10875 2, dp->vlnt[2] & 0xf,
10876 3, dp->vlnt[3] & 0xf,
10877 4, dp->vlnt[4] & 0xf,
10878 5, dp->vlnt[5] & 0xf,
10879 6, dp->vlnt[6] & 0xf,
10880 7, dp->vlnt[7] & 0xf,
10881 8, dp->vlnt[8] & 0xf,
10882 9, dp->vlnt[9] & 0xf,
10883 10, dp->vlnt[10] & 0xf,
10884 11, dp->vlnt[11] & 0xf,
10885 12, dp->vlnt[12] & 0xf,
10886 13, dp->vlnt[13] & 0xf,
10887 14, dp->vlnt[14] & 0xf,
10888 15, dp->vlnt[15] & 0xf));
Mike Marciniszyn77241052015-07-30 15:17:43 -040010889 write_csr(dd, DCC_CFG_SC_VL_TABLE_31_16,
Jubin John17fb4f22016-02-14 20:21:52 -080010890 DC_SC_VL_VAL(31_16,
10891 16, dp->vlnt[16] & 0xf,
10892 17, dp->vlnt[17] & 0xf,
10893 18, dp->vlnt[18] & 0xf,
10894 19, dp->vlnt[19] & 0xf,
10895 20, dp->vlnt[20] & 0xf,
10896 21, dp->vlnt[21] & 0xf,
10897 22, dp->vlnt[22] & 0xf,
10898 23, dp->vlnt[23] & 0xf,
10899 24, dp->vlnt[24] & 0xf,
10900 25, dp->vlnt[25] & 0xf,
10901 26, dp->vlnt[26] & 0xf,
10902 27, dp->vlnt[27] & 0xf,
10903 28, dp->vlnt[28] & 0xf,
10904 29, dp->vlnt[29] & 0xf,
10905 30, dp->vlnt[30] & 0xf,
10906 31, dp->vlnt[31] & 0xf));
Mike Marciniszyn77241052015-07-30 15:17:43 -040010907}
10908
10909static void nonzero_msg(struct hfi1_devdata *dd, int idx, const char *what,
10910 u16 limit)
10911{
10912 if (limit != 0)
10913 dd_dev_info(dd, "Invalid %s limit %d on VL %d, ignoring\n",
Jubin John17fb4f22016-02-14 20:21:52 -080010914 what, (int)limit, idx);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010915}
10916
10917/* change only the shared limit portion of SendCmGLobalCredit */
10918static void set_global_shared(struct hfi1_devdata *dd, u16 limit)
10919{
10920 u64 reg;
10921
10922 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
10923 reg &= ~SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SMASK;
10924 reg |= (u64)limit << SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SHIFT;
10925 write_csr(dd, SEND_CM_GLOBAL_CREDIT, reg);
10926}
10927
10928/* change only the total credit limit portion of SendCmGLobalCredit */
10929static void set_global_limit(struct hfi1_devdata *dd, u16 limit)
10930{
10931 u64 reg;
10932
10933 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
10934 reg &= ~SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SMASK;
10935 reg |= (u64)limit << SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SHIFT;
10936 write_csr(dd, SEND_CM_GLOBAL_CREDIT, reg);
10937}
10938
10939/* set the given per-VL shared limit */
10940static void set_vl_shared(struct hfi1_devdata *dd, int vl, u16 limit)
10941{
10942 u64 reg;
10943 u32 addr;
10944
10945 if (vl < TXE_NUM_DATA_VL)
10946 addr = SEND_CM_CREDIT_VL + (8 * vl);
10947 else
10948 addr = SEND_CM_CREDIT_VL15;
10949
10950 reg = read_csr(dd, addr);
10951 reg &= ~SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_SMASK;
10952 reg |= (u64)limit << SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_SHIFT;
10953 write_csr(dd, addr, reg);
10954}
10955
10956/* set the given per-VL dedicated limit */
10957static void set_vl_dedicated(struct hfi1_devdata *dd, int vl, u16 limit)
10958{
10959 u64 reg;
10960 u32 addr;
10961
10962 if (vl < TXE_NUM_DATA_VL)
10963 addr = SEND_CM_CREDIT_VL + (8 * vl);
10964 else
10965 addr = SEND_CM_CREDIT_VL15;
10966
10967 reg = read_csr(dd, addr);
10968 reg &= ~SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_SMASK;
10969 reg |= (u64)limit << SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_SHIFT;
10970 write_csr(dd, addr, reg);
10971}
10972
10973/* spin until the given per-VL status mask bits clear */
10974static void wait_for_vl_status_clear(struct hfi1_devdata *dd, u64 mask,
10975 const char *which)
10976{
10977 unsigned long timeout;
10978 u64 reg;
10979
10980 timeout = jiffies + msecs_to_jiffies(VL_STATUS_CLEAR_TIMEOUT);
10981 while (1) {
10982 reg = read_csr(dd, SEND_CM_CREDIT_USED_STATUS) & mask;
10983
10984 if (reg == 0)
10985 return; /* success */
10986 if (time_after(jiffies, timeout))
10987 break; /* timed out */
10988 udelay(1);
10989 }
10990
10991 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010992 "%s credit change status not clearing after %dms, mask 0x%llx, not clear 0x%llx\n",
10993 which, VL_STATUS_CLEAR_TIMEOUT, mask, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010994 /*
10995 * If this occurs, it is likely there was a credit loss on the link.
10996 * The only recovery from that is a link bounce.
10997 */
10998 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010999 "Continuing anyway. A credit loss may occur. Suggest a link bounce\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -040011000}
11001
11002/*
11003 * The number of credits on the VLs may be changed while everything
11004 * is "live", but the following algorithm must be followed due to
11005 * how the hardware is actually implemented. In particular,
11006 * Return_Credit_Status[] is the only correct status check.
11007 *
11008 * if (reducing Global_Shared_Credit_Limit or any shared limit changing)
11009 * set Global_Shared_Credit_Limit = 0
11010 * use_all_vl = 1
11011 * mask0 = all VLs that are changing either dedicated or shared limits
11012 * set Shared_Limit[mask0] = 0
11013 * spin until Return_Credit_Status[use_all_vl ? all VL : mask0] == 0
11014 * if (changing any dedicated limit)
11015 * mask1 = all VLs that are lowering dedicated limits
11016 * lower Dedicated_Limit[mask1]
11017 * spin until Return_Credit_Status[mask1] == 0
11018 * raise Dedicated_Limits
11019 * raise Shared_Limits
11020 * raise Global_Shared_Credit_Limit
11021 *
11022 * lower = if the new limit is lower, set the limit to the new value
11023 * raise = if the new limit is higher than the current value (may be changed
11024 * earlier in the algorithm), set the new limit to the new value
11025 */
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011026int set_buffer_control(struct hfi1_pportdata *ppd,
11027 struct buffer_control *new_bc)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011028{
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011029 struct hfi1_devdata *dd = ppd->dd;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011030 u64 changing_mask, ld_mask, stat_mask;
11031 int change_count;
11032 int i, use_all_mask;
11033 int this_shared_changing;
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011034 int vl_count = 0, ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011035 /*
11036 * A0: add the variable any_shared_limit_changing below and in the
11037 * algorithm above. If removing A0 support, it can be removed.
11038 */
11039 int any_shared_limit_changing;
11040 struct buffer_control cur_bc;
11041 u8 changing[OPA_MAX_VLS];
11042 u8 lowering_dedicated[OPA_MAX_VLS];
11043 u16 cur_total;
11044 u32 new_total = 0;
11045 const u64 all_mask =
11046 SEND_CM_CREDIT_USED_STATUS_VL0_RETURN_CREDIT_STATUS_SMASK
11047 | SEND_CM_CREDIT_USED_STATUS_VL1_RETURN_CREDIT_STATUS_SMASK
11048 | SEND_CM_CREDIT_USED_STATUS_VL2_RETURN_CREDIT_STATUS_SMASK
11049 | SEND_CM_CREDIT_USED_STATUS_VL3_RETURN_CREDIT_STATUS_SMASK
11050 | SEND_CM_CREDIT_USED_STATUS_VL4_RETURN_CREDIT_STATUS_SMASK
11051 | SEND_CM_CREDIT_USED_STATUS_VL5_RETURN_CREDIT_STATUS_SMASK
11052 | SEND_CM_CREDIT_USED_STATUS_VL6_RETURN_CREDIT_STATUS_SMASK
11053 | SEND_CM_CREDIT_USED_STATUS_VL7_RETURN_CREDIT_STATUS_SMASK
11054 | SEND_CM_CREDIT_USED_STATUS_VL15_RETURN_CREDIT_STATUS_SMASK;
11055
11056#define valid_vl(idx) ((idx) < TXE_NUM_DATA_VL || (idx) == 15)
11057#define NUM_USABLE_VLS 16 /* look at VL15 and less */
11058
Mike Marciniszyn77241052015-07-30 15:17:43 -040011059 /* find the new total credits, do sanity check on unused VLs */
11060 for (i = 0; i < OPA_MAX_VLS; i++) {
11061 if (valid_vl(i)) {
11062 new_total += be16_to_cpu(new_bc->vl[i].dedicated);
11063 continue;
11064 }
11065 nonzero_msg(dd, i, "dedicated",
Jubin John17fb4f22016-02-14 20:21:52 -080011066 be16_to_cpu(new_bc->vl[i].dedicated));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011067 nonzero_msg(dd, i, "shared",
Jubin John17fb4f22016-02-14 20:21:52 -080011068 be16_to_cpu(new_bc->vl[i].shared));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011069 new_bc->vl[i].dedicated = 0;
11070 new_bc->vl[i].shared = 0;
11071 }
11072 new_total += be16_to_cpu(new_bc->overall_shared_limit);
Dean Luickbff14bb2015-12-17 19:24:13 -050011073
Mike Marciniszyn77241052015-07-30 15:17:43 -040011074 /* fetch the current values */
11075 get_buffer_control(dd, &cur_bc, &cur_total);
11076
11077 /*
11078 * Create the masks we will use.
11079 */
11080 memset(changing, 0, sizeof(changing));
11081 memset(lowering_dedicated, 0, sizeof(lowering_dedicated));
Jubin John4d114fd2016-02-14 20:21:43 -080011082 /*
11083 * NOTE: Assumes that the individual VL bits are adjacent and in
11084 * increasing order
11085 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040011086 stat_mask =
11087 SEND_CM_CREDIT_USED_STATUS_VL0_RETURN_CREDIT_STATUS_SMASK;
11088 changing_mask = 0;
11089 ld_mask = 0;
11090 change_count = 0;
11091 any_shared_limit_changing = 0;
11092 for (i = 0; i < NUM_USABLE_VLS; i++, stat_mask <<= 1) {
11093 if (!valid_vl(i))
11094 continue;
11095 this_shared_changing = new_bc->vl[i].shared
11096 != cur_bc.vl[i].shared;
11097 if (this_shared_changing)
11098 any_shared_limit_changing = 1;
Jubin Johnd0d236e2016-02-14 20:20:15 -080011099 if (new_bc->vl[i].dedicated != cur_bc.vl[i].dedicated ||
11100 this_shared_changing) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011101 changing[i] = 1;
11102 changing_mask |= stat_mask;
11103 change_count++;
11104 }
11105 if (be16_to_cpu(new_bc->vl[i].dedicated) <
11106 be16_to_cpu(cur_bc.vl[i].dedicated)) {
11107 lowering_dedicated[i] = 1;
11108 ld_mask |= stat_mask;
11109 }
11110 }
11111
11112 /* bracket the credit change with a total adjustment */
11113 if (new_total > cur_total)
11114 set_global_limit(dd, new_total);
11115
11116 /*
11117 * Start the credit change algorithm.
11118 */
11119 use_all_mask = 0;
11120 if ((be16_to_cpu(new_bc->overall_shared_limit) <
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050011121 be16_to_cpu(cur_bc.overall_shared_limit)) ||
11122 (is_ax(dd) && any_shared_limit_changing)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011123 set_global_shared(dd, 0);
11124 cur_bc.overall_shared_limit = 0;
11125 use_all_mask = 1;
11126 }
11127
11128 for (i = 0; i < NUM_USABLE_VLS; i++) {
11129 if (!valid_vl(i))
11130 continue;
11131
11132 if (changing[i]) {
11133 set_vl_shared(dd, i, 0);
11134 cur_bc.vl[i].shared = 0;
11135 }
11136 }
11137
11138 wait_for_vl_status_clear(dd, use_all_mask ? all_mask : changing_mask,
Jubin John17fb4f22016-02-14 20:21:52 -080011139 "shared");
Mike Marciniszyn77241052015-07-30 15:17:43 -040011140
11141 if (change_count > 0) {
11142 for (i = 0; i < NUM_USABLE_VLS; i++) {
11143 if (!valid_vl(i))
11144 continue;
11145
11146 if (lowering_dedicated[i]) {
11147 set_vl_dedicated(dd, i,
Jubin John17fb4f22016-02-14 20:21:52 -080011148 be16_to_cpu(new_bc->
11149 vl[i].dedicated));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011150 cur_bc.vl[i].dedicated =
11151 new_bc->vl[i].dedicated;
11152 }
11153 }
11154
11155 wait_for_vl_status_clear(dd, ld_mask, "dedicated");
11156
11157 /* now raise all dedicated that are going up */
11158 for (i = 0; i < NUM_USABLE_VLS; i++) {
11159 if (!valid_vl(i))
11160 continue;
11161
11162 if (be16_to_cpu(new_bc->vl[i].dedicated) >
11163 be16_to_cpu(cur_bc.vl[i].dedicated))
11164 set_vl_dedicated(dd, i,
Jubin John17fb4f22016-02-14 20:21:52 -080011165 be16_to_cpu(new_bc->
11166 vl[i].dedicated));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011167 }
11168 }
11169
11170 /* next raise all shared that are going up */
11171 for (i = 0; i < NUM_USABLE_VLS; i++) {
11172 if (!valid_vl(i))
11173 continue;
11174
11175 if (be16_to_cpu(new_bc->vl[i].shared) >
11176 be16_to_cpu(cur_bc.vl[i].shared))
11177 set_vl_shared(dd, i, be16_to_cpu(new_bc->vl[i].shared));
11178 }
11179
11180 /* finally raise the global shared */
11181 if (be16_to_cpu(new_bc->overall_shared_limit) >
Jubin John17fb4f22016-02-14 20:21:52 -080011182 be16_to_cpu(cur_bc.overall_shared_limit))
Mike Marciniszyn77241052015-07-30 15:17:43 -040011183 set_global_shared(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080011184 be16_to_cpu(new_bc->overall_shared_limit));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011185
11186 /* bracket the credit change with a total adjustment */
11187 if (new_total < cur_total)
11188 set_global_limit(dd, new_total);
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011189
11190 /*
11191 * Determine the actual number of operational VLS using the number of
11192 * dedicated and shared credits for each VL.
11193 */
11194 if (change_count > 0) {
11195 for (i = 0; i < TXE_NUM_DATA_VL; i++)
11196 if (be16_to_cpu(new_bc->vl[i].dedicated) > 0 ||
11197 be16_to_cpu(new_bc->vl[i].shared) > 0)
11198 vl_count++;
11199 ppd->actual_vls_operational = vl_count;
11200 ret = sdma_map_init(dd, ppd->port - 1, vl_count ?
11201 ppd->actual_vls_operational :
11202 ppd->vls_operational,
11203 NULL);
11204 if (ret == 0)
11205 ret = pio_map_init(dd, ppd->port - 1, vl_count ?
11206 ppd->actual_vls_operational :
11207 ppd->vls_operational, NULL);
11208 if (ret)
11209 return ret;
11210 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040011211 return 0;
11212}
11213
11214/*
11215 * Read the given fabric manager table. Return the size of the
11216 * table (in bytes) on success, and a negative error code on
11217 * failure.
11218 */
11219int fm_get_table(struct hfi1_pportdata *ppd, int which, void *t)
11220
11221{
11222 int size;
11223 struct vl_arb_cache *vlc;
11224
11225 switch (which) {
11226 case FM_TBL_VL_HIGH_ARB:
11227 size = 256;
11228 /*
11229 * OPA specifies 128 elements (of 2 bytes each), though
11230 * HFI supports only 16 elements in h/w.
11231 */
11232 vlc = vl_arb_lock_cache(ppd, HI_PRIO_TABLE);
11233 vl_arb_get_cache(vlc, t);
11234 vl_arb_unlock_cache(ppd, HI_PRIO_TABLE);
11235 break;
11236 case FM_TBL_VL_LOW_ARB:
11237 size = 256;
11238 /*
11239 * OPA specifies 128 elements (of 2 bytes each), though
11240 * HFI supports only 16 elements in h/w.
11241 */
11242 vlc = vl_arb_lock_cache(ppd, LO_PRIO_TABLE);
11243 vl_arb_get_cache(vlc, t);
11244 vl_arb_unlock_cache(ppd, LO_PRIO_TABLE);
11245 break;
11246 case FM_TBL_BUFFER_CONTROL:
11247 size = get_buffer_control(ppd->dd, t, NULL);
11248 break;
11249 case FM_TBL_SC2VLNT:
11250 size = get_sc2vlnt(ppd->dd, t);
11251 break;
11252 case FM_TBL_VL_PREEMPT_ELEMS:
11253 size = 256;
11254 /* OPA specifies 128 elements, of 2 bytes each */
11255 get_vlarb_preempt(ppd->dd, OPA_MAX_VLS, t);
11256 break;
11257 case FM_TBL_VL_PREEMPT_MATRIX:
11258 size = 256;
11259 /*
11260 * OPA specifies that this is the same size as the VL
11261 * arbitration tables (i.e., 256 bytes).
11262 */
11263 break;
11264 default:
11265 return -EINVAL;
11266 }
11267 return size;
11268}
11269
11270/*
11271 * Write the given fabric manager table.
11272 */
11273int fm_set_table(struct hfi1_pportdata *ppd, int which, void *t)
11274{
11275 int ret = 0;
11276 struct vl_arb_cache *vlc;
11277
11278 switch (which) {
11279 case FM_TBL_VL_HIGH_ARB:
11280 vlc = vl_arb_lock_cache(ppd, HI_PRIO_TABLE);
11281 if (vl_arb_match_cache(vlc, t)) {
11282 vl_arb_unlock_cache(ppd, HI_PRIO_TABLE);
11283 break;
11284 }
11285 vl_arb_set_cache(vlc, t);
11286 vl_arb_unlock_cache(ppd, HI_PRIO_TABLE);
11287 ret = set_vl_weights(ppd, SEND_HIGH_PRIORITY_LIST,
11288 VL_ARB_HIGH_PRIO_TABLE_SIZE, t);
11289 break;
11290 case FM_TBL_VL_LOW_ARB:
11291 vlc = vl_arb_lock_cache(ppd, LO_PRIO_TABLE);
11292 if (vl_arb_match_cache(vlc, t)) {
11293 vl_arb_unlock_cache(ppd, LO_PRIO_TABLE);
11294 break;
11295 }
11296 vl_arb_set_cache(vlc, t);
11297 vl_arb_unlock_cache(ppd, LO_PRIO_TABLE);
11298 ret = set_vl_weights(ppd, SEND_LOW_PRIORITY_LIST,
11299 VL_ARB_LOW_PRIO_TABLE_SIZE, t);
11300 break;
11301 case FM_TBL_BUFFER_CONTROL:
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011302 ret = set_buffer_control(ppd, t);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011303 break;
11304 case FM_TBL_SC2VLNT:
11305 set_sc2vlnt(ppd->dd, t);
11306 break;
11307 default:
11308 ret = -EINVAL;
11309 }
11310 return ret;
11311}
11312
11313/*
11314 * Disable all data VLs.
11315 *
11316 * Return 0 if disabled, non-zero if the VLs cannot be disabled.
11317 */
11318static int disable_data_vls(struct hfi1_devdata *dd)
11319{
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050011320 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -040011321 return 1;
11322
11323 pio_send_control(dd, PSC_DATA_VL_DISABLE);
11324
11325 return 0;
11326}
11327
11328/*
11329 * open_fill_data_vls() - the counterpart to stop_drain_data_vls().
11330 * Just re-enables all data VLs (the "fill" part happens
11331 * automatically - the name was chosen for symmetry with
11332 * stop_drain_data_vls()).
11333 *
11334 * Return 0 if successful, non-zero if the VLs cannot be enabled.
11335 */
11336int open_fill_data_vls(struct hfi1_devdata *dd)
11337{
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050011338 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -040011339 return 1;
11340
11341 pio_send_control(dd, PSC_DATA_VL_ENABLE);
11342
11343 return 0;
11344}
11345
11346/*
11347 * drain_data_vls() - assumes that disable_data_vls() has been called,
11348 * wait for occupancy (of per-VL FIFOs) for all contexts, and SDMA
11349 * engines to drop to 0.
11350 */
11351static void drain_data_vls(struct hfi1_devdata *dd)
11352{
11353 sc_wait(dd);
11354 sdma_wait(dd);
11355 pause_for_credit_return(dd);
11356}
11357
11358/*
11359 * stop_drain_data_vls() - disable, then drain all per-VL fifos.
11360 *
11361 * Use open_fill_data_vls() to resume using data VLs. This pair is
11362 * meant to be used like this:
11363 *
11364 * stop_drain_data_vls(dd);
11365 * // do things with per-VL resources
11366 * open_fill_data_vls(dd);
11367 */
11368int stop_drain_data_vls(struct hfi1_devdata *dd)
11369{
11370 int ret;
11371
11372 ret = disable_data_vls(dd);
11373 if (ret == 0)
11374 drain_data_vls(dd);
11375
11376 return ret;
11377}
11378
11379/*
11380 * Convert a nanosecond time to a cclock count. No matter how slow
11381 * the cclock, a non-zero ns will always have a non-zero result.
11382 */
11383u32 ns_to_cclock(struct hfi1_devdata *dd, u32 ns)
11384{
11385 u32 cclocks;
11386
11387 if (dd->icode == ICODE_FPGA_EMULATION)
11388 cclocks = (ns * 1000) / FPGA_CCLOCK_PS;
11389 else /* simulation pretends to be ASIC */
11390 cclocks = (ns * 1000) / ASIC_CCLOCK_PS;
11391 if (ns && !cclocks) /* if ns nonzero, must be at least 1 */
11392 cclocks = 1;
11393 return cclocks;
11394}
11395
11396/*
11397 * Convert a cclock count to nanoseconds. Not matter how slow
11398 * the cclock, a non-zero cclocks will always have a non-zero result.
11399 */
11400u32 cclock_to_ns(struct hfi1_devdata *dd, u32 cclocks)
11401{
11402 u32 ns;
11403
11404 if (dd->icode == ICODE_FPGA_EMULATION)
11405 ns = (cclocks * FPGA_CCLOCK_PS) / 1000;
11406 else /* simulation pretends to be ASIC */
11407 ns = (cclocks * ASIC_CCLOCK_PS) / 1000;
11408 if (cclocks && !ns)
11409 ns = 1;
11410 return ns;
11411}
11412
11413/*
11414 * Dynamically adjust the receive interrupt timeout for a context based on
11415 * incoming packet rate.
11416 *
11417 * NOTE: Dynamic adjustment does not allow rcv_intr_count to be zero.
11418 */
11419static void adjust_rcv_timeout(struct hfi1_ctxtdata *rcd, u32 npkts)
11420{
11421 struct hfi1_devdata *dd = rcd->dd;
11422 u32 timeout = rcd->rcvavail_timeout;
11423
11424 /*
11425 * This algorithm doubles or halves the timeout depending on whether
11426 * the number of packets received in this interrupt were less than or
11427 * greater equal the interrupt count.
11428 *
11429 * The calculations below do not allow a steady state to be achieved.
11430 * Only at the endpoints it is possible to have an unchanging
11431 * timeout.
11432 */
11433 if (npkts < rcv_intr_count) {
11434 /*
11435 * Not enough packets arrived before the timeout, adjust
11436 * timeout downward.
11437 */
11438 if (timeout < 2) /* already at minimum? */
11439 return;
11440 timeout >>= 1;
11441 } else {
11442 /*
11443 * More than enough packets arrived before the timeout, adjust
11444 * timeout upward.
11445 */
11446 if (timeout >= dd->rcv_intr_timeout_csr) /* already at max? */
11447 return;
11448 timeout = min(timeout << 1, dd->rcv_intr_timeout_csr);
11449 }
11450
11451 rcd->rcvavail_timeout = timeout;
Jubin John4d114fd2016-02-14 20:21:43 -080011452 /*
11453 * timeout cannot be larger than rcv_intr_timeout_csr which has already
11454 * been verified to be in range
11455 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040011456 write_kctxt_csr(dd, rcd->ctxt, RCV_AVAIL_TIME_OUT,
Jubin John17fb4f22016-02-14 20:21:52 -080011457 (u64)timeout <<
11458 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011459}
11460
11461void update_usrhead(struct hfi1_ctxtdata *rcd, u32 hd, u32 updegr, u32 egrhd,
11462 u32 intr_adjust, u32 npkts)
11463{
11464 struct hfi1_devdata *dd = rcd->dd;
11465 u64 reg;
11466 u32 ctxt = rcd->ctxt;
11467
11468 /*
11469 * Need to write timeout register before updating RcvHdrHead to ensure
11470 * that a new value is used when the HW decides to restart counting.
11471 */
11472 if (intr_adjust)
11473 adjust_rcv_timeout(rcd, npkts);
11474 if (updegr) {
11475 reg = (egrhd & RCV_EGR_INDEX_HEAD_HEAD_MASK)
11476 << RCV_EGR_INDEX_HEAD_HEAD_SHIFT;
11477 write_uctxt_csr(dd, ctxt, RCV_EGR_INDEX_HEAD, reg);
11478 }
11479 mmiowb();
11480 reg = ((u64)rcv_intr_count << RCV_HDR_HEAD_COUNTER_SHIFT) |
11481 (((u64)hd & RCV_HDR_HEAD_HEAD_MASK)
11482 << RCV_HDR_HEAD_HEAD_SHIFT);
11483 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, reg);
11484 mmiowb();
11485}
11486
11487u32 hdrqempty(struct hfi1_ctxtdata *rcd)
11488{
11489 u32 head, tail;
11490
11491 head = (read_uctxt_csr(rcd->dd, rcd->ctxt, RCV_HDR_HEAD)
11492 & RCV_HDR_HEAD_HEAD_SMASK) >> RCV_HDR_HEAD_HEAD_SHIFT;
11493
11494 if (rcd->rcvhdrtail_kvaddr)
11495 tail = get_rcvhdrtail(rcd);
11496 else
11497 tail = read_uctxt_csr(rcd->dd, rcd->ctxt, RCV_HDR_TAIL);
11498
11499 return head == tail;
11500}
11501
11502/*
11503 * Context Control and Receive Array encoding for buffer size:
11504 * 0x0 invalid
11505 * 0x1 4 KB
11506 * 0x2 8 KB
11507 * 0x3 16 KB
11508 * 0x4 32 KB
11509 * 0x5 64 KB
11510 * 0x6 128 KB
11511 * 0x7 256 KB
11512 * 0x8 512 KB (Receive Array only)
11513 * 0x9 1 MB (Receive Array only)
11514 * 0xa 2 MB (Receive Array only)
11515 *
11516 * 0xB-0xF - reserved (Receive Array only)
11517 *
11518 *
11519 * This routine assumes that the value has already been sanity checked.
11520 */
11521static u32 encoded_size(u32 size)
11522{
11523 switch (size) {
Jubin John8638b772016-02-14 20:19:24 -080011524 case 4 * 1024: return 0x1;
11525 case 8 * 1024: return 0x2;
11526 case 16 * 1024: return 0x3;
11527 case 32 * 1024: return 0x4;
11528 case 64 * 1024: return 0x5;
11529 case 128 * 1024: return 0x6;
11530 case 256 * 1024: return 0x7;
11531 case 512 * 1024: return 0x8;
11532 case 1 * 1024 * 1024: return 0x9;
11533 case 2 * 1024 * 1024: return 0xa;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011534 }
11535 return 0x1; /* if invalid, go with the minimum size */
11536}
11537
11538void hfi1_rcvctrl(struct hfi1_devdata *dd, unsigned int op, int ctxt)
11539{
11540 struct hfi1_ctxtdata *rcd;
11541 u64 rcvctrl, reg;
11542 int did_enable = 0;
11543
11544 rcd = dd->rcd[ctxt];
11545 if (!rcd)
11546 return;
11547
11548 hfi1_cdbg(RCVCTRL, "ctxt %d op 0x%x", ctxt, op);
11549
11550 rcvctrl = read_kctxt_csr(dd, ctxt, RCV_CTXT_CTRL);
11551 /* if the context already enabled, don't do the extra steps */
Jubin Johnd0d236e2016-02-14 20:20:15 -080011552 if ((op & HFI1_RCVCTRL_CTXT_ENB) &&
11553 !(rcvctrl & RCV_CTXT_CTRL_ENABLE_SMASK)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011554 /* reset the tail and hdr addresses, and sequence count */
11555 write_kctxt_csr(dd, ctxt, RCV_HDR_ADDR,
11556 rcd->rcvhdrq_phys);
11557 if (HFI1_CAP_KGET_MASK(rcd->flags, DMA_RTAIL))
11558 write_kctxt_csr(dd, ctxt, RCV_HDR_TAIL_ADDR,
11559 rcd->rcvhdrqtailaddr_phys);
11560 rcd->seq_cnt = 1;
11561
11562 /* reset the cached receive header queue head value */
11563 rcd->head = 0;
11564
11565 /*
11566 * Zero the receive header queue so we don't get false
11567 * positives when checking the sequence number. The
11568 * sequence numbers could land exactly on the same spot.
11569 * E.g. a rcd restart before the receive header wrapped.
11570 */
11571 memset(rcd->rcvhdrq, 0, rcd->rcvhdrq_size);
11572
11573 /* starting timeout */
11574 rcd->rcvavail_timeout = dd->rcv_intr_timeout_csr;
11575
11576 /* enable the context */
11577 rcvctrl |= RCV_CTXT_CTRL_ENABLE_SMASK;
11578
11579 /* clean the egr buffer size first */
11580 rcvctrl &= ~RCV_CTXT_CTRL_EGR_BUF_SIZE_SMASK;
11581 rcvctrl |= ((u64)encoded_size(rcd->egrbufs.rcvtid_size)
11582 & RCV_CTXT_CTRL_EGR_BUF_SIZE_MASK)
11583 << RCV_CTXT_CTRL_EGR_BUF_SIZE_SHIFT;
11584
11585 /* zero RcvHdrHead - set RcvHdrHead.Counter after enable */
11586 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, 0);
11587 did_enable = 1;
11588
11589 /* zero RcvEgrIndexHead */
11590 write_uctxt_csr(dd, ctxt, RCV_EGR_INDEX_HEAD, 0);
11591
11592 /* set eager count and base index */
11593 reg = (((u64)(rcd->egrbufs.alloced >> RCV_SHIFT)
11594 & RCV_EGR_CTRL_EGR_CNT_MASK)
11595 << RCV_EGR_CTRL_EGR_CNT_SHIFT) |
11596 (((rcd->eager_base >> RCV_SHIFT)
11597 & RCV_EGR_CTRL_EGR_BASE_INDEX_MASK)
11598 << RCV_EGR_CTRL_EGR_BASE_INDEX_SHIFT);
11599 write_kctxt_csr(dd, ctxt, RCV_EGR_CTRL, reg);
11600
11601 /*
11602 * Set TID (expected) count and base index.
11603 * rcd->expected_count is set to individual RcvArray entries,
11604 * not pairs, and the CSR takes a pair-count in groups of
11605 * four, so divide by 8.
11606 */
11607 reg = (((rcd->expected_count >> RCV_SHIFT)
11608 & RCV_TID_CTRL_TID_PAIR_CNT_MASK)
11609 << RCV_TID_CTRL_TID_PAIR_CNT_SHIFT) |
11610 (((rcd->expected_base >> RCV_SHIFT)
11611 & RCV_TID_CTRL_TID_BASE_INDEX_MASK)
11612 << RCV_TID_CTRL_TID_BASE_INDEX_SHIFT);
11613 write_kctxt_csr(dd, ctxt, RCV_TID_CTRL, reg);
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050011614 if (ctxt == HFI1_CTRL_CTXT)
11615 write_csr(dd, RCV_VL15, HFI1_CTRL_CTXT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011616 }
11617 if (op & HFI1_RCVCTRL_CTXT_DIS) {
11618 write_csr(dd, RCV_VL15, 0);
Mark F. Brown46b010d2015-11-09 19:18:20 -050011619 /*
11620 * When receive context is being disabled turn on tail
11621 * update with a dummy tail address and then disable
11622 * receive context.
11623 */
11624 if (dd->rcvhdrtail_dummy_physaddr) {
11625 write_kctxt_csr(dd, ctxt, RCV_HDR_TAIL_ADDR,
11626 dd->rcvhdrtail_dummy_physaddr);
Mitko Haralanov566c1572016-02-03 14:32:49 -080011627 /* Enabling RcvCtxtCtrl.TailUpd is intentional. */
Mark F. Brown46b010d2015-11-09 19:18:20 -050011628 rcvctrl |= RCV_CTXT_CTRL_TAIL_UPD_SMASK;
11629 }
11630
Mike Marciniszyn77241052015-07-30 15:17:43 -040011631 rcvctrl &= ~RCV_CTXT_CTRL_ENABLE_SMASK;
11632 }
11633 if (op & HFI1_RCVCTRL_INTRAVAIL_ENB)
11634 rcvctrl |= RCV_CTXT_CTRL_INTR_AVAIL_SMASK;
11635 if (op & HFI1_RCVCTRL_INTRAVAIL_DIS)
11636 rcvctrl &= ~RCV_CTXT_CTRL_INTR_AVAIL_SMASK;
11637 if (op & HFI1_RCVCTRL_TAILUPD_ENB && rcd->rcvhdrqtailaddr_phys)
11638 rcvctrl |= RCV_CTXT_CTRL_TAIL_UPD_SMASK;
Mitko Haralanov566c1572016-02-03 14:32:49 -080011639 if (op & HFI1_RCVCTRL_TAILUPD_DIS) {
11640 /* See comment on RcvCtxtCtrl.TailUpd above */
11641 if (!(op & HFI1_RCVCTRL_CTXT_DIS))
11642 rcvctrl &= ~RCV_CTXT_CTRL_TAIL_UPD_SMASK;
11643 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040011644 if (op & HFI1_RCVCTRL_TIDFLOW_ENB)
11645 rcvctrl |= RCV_CTXT_CTRL_TID_FLOW_ENABLE_SMASK;
11646 if (op & HFI1_RCVCTRL_TIDFLOW_DIS)
11647 rcvctrl &= ~RCV_CTXT_CTRL_TID_FLOW_ENABLE_SMASK;
11648 if (op & HFI1_RCVCTRL_ONE_PKT_EGR_ENB) {
Jubin John4d114fd2016-02-14 20:21:43 -080011649 /*
11650 * In one-packet-per-eager mode, the size comes from
11651 * the RcvArray entry.
11652 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040011653 rcvctrl &= ~RCV_CTXT_CTRL_EGR_BUF_SIZE_SMASK;
11654 rcvctrl |= RCV_CTXT_CTRL_ONE_PACKET_PER_EGR_BUFFER_SMASK;
11655 }
11656 if (op & HFI1_RCVCTRL_ONE_PKT_EGR_DIS)
11657 rcvctrl &= ~RCV_CTXT_CTRL_ONE_PACKET_PER_EGR_BUFFER_SMASK;
11658 if (op & HFI1_RCVCTRL_NO_RHQ_DROP_ENB)
11659 rcvctrl |= RCV_CTXT_CTRL_DONT_DROP_RHQ_FULL_SMASK;
11660 if (op & HFI1_RCVCTRL_NO_RHQ_DROP_DIS)
11661 rcvctrl &= ~RCV_CTXT_CTRL_DONT_DROP_RHQ_FULL_SMASK;
11662 if (op & HFI1_RCVCTRL_NO_EGR_DROP_ENB)
11663 rcvctrl |= RCV_CTXT_CTRL_DONT_DROP_EGR_FULL_SMASK;
11664 if (op & HFI1_RCVCTRL_NO_EGR_DROP_DIS)
11665 rcvctrl &= ~RCV_CTXT_CTRL_DONT_DROP_EGR_FULL_SMASK;
11666 rcd->rcvctrl = rcvctrl;
11667 hfi1_cdbg(RCVCTRL, "ctxt %d rcvctrl 0x%llx\n", ctxt, rcvctrl);
11668 write_kctxt_csr(dd, ctxt, RCV_CTXT_CTRL, rcd->rcvctrl);
11669
11670 /* work around sticky RcvCtxtStatus.BlockedRHQFull */
Jubin Johnd0d236e2016-02-14 20:20:15 -080011671 if (did_enable &&
11672 (rcvctrl & RCV_CTXT_CTRL_DONT_DROP_RHQ_FULL_SMASK)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011673 reg = read_kctxt_csr(dd, ctxt, RCV_CTXT_STATUS);
11674 if (reg != 0) {
11675 dd_dev_info(dd, "ctxt %d status %lld (blocked)\n",
Jubin John17fb4f22016-02-14 20:21:52 -080011676 ctxt, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011677 read_uctxt_csr(dd, ctxt, RCV_HDR_HEAD);
11678 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, 0x10);
11679 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, 0x00);
11680 read_uctxt_csr(dd, ctxt, RCV_HDR_HEAD);
11681 reg = read_kctxt_csr(dd, ctxt, RCV_CTXT_STATUS);
11682 dd_dev_info(dd, "ctxt %d status %lld (%s blocked)\n",
Jubin John17fb4f22016-02-14 20:21:52 -080011683 ctxt, reg, reg == 0 ? "not" : "still");
Mike Marciniszyn77241052015-07-30 15:17:43 -040011684 }
11685 }
11686
11687 if (did_enable) {
11688 /*
11689 * The interrupt timeout and count must be set after
11690 * the context is enabled to take effect.
11691 */
11692 /* set interrupt timeout */
11693 write_kctxt_csr(dd, ctxt, RCV_AVAIL_TIME_OUT,
Jubin John17fb4f22016-02-14 20:21:52 -080011694 (u64)rcd->rcvavail_timeout <<
Mike Marciniszyn77241052015-07-30 15:17:43 -040011695 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_SHIFT);
11696
11697 /* set RcvHdrHead.Counter, zero RcvHdrHead.Head (again) */
11698 reg = (u64)rcv_intr_count << RCV_HDR_HEAD_COUNTER_SHIFT;
11699 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, reg);
11700 }
11701
11702 if (op & (HFI1_RCVCTRL_TAILUPD_DIS | HFI1_RCVCTRL_CTXT_DIS))
11703 /*
11704 * If the context has been disabled and the Tail Update has
Mark F. Brown46b010d2015-11-09 19:18:20 -050011705 * been cleared, set the RCV_HDR_TAIL_ADDR CSR to dummy address
11706 * so it doesn't contain an address that is invalid.
Mike Marciniszyn77241052015-07-30 15:17:43 -040011707 */
Mark F. Brown46b010d2015-11-09 19:18:20 -050011708 write_kctxt_csr(dd, ctxt, RCV_HDR_TAIL_ADDR,
11709 dd->rcvhdrtail_dummy_physaddr);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011710}
11711
Dean Luick582e05c2016-02-18 11:13:01 -080011712u32 hfi1_read_cntrs(struct hfi1_devdata *dd, char **namep, u64 **cntrp)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011713{
11714 int ret;
11715 u64 val = 0;
11716
11717 if (namep) {
11718 ret = dd->cntrnameslen;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011719 *namep = dd->cntrnames;
11720 } else {
11721 const struct cntr_entry *entry;
11722 int i, j;
11723
11724 ret = (dd->ndevcntrs) * sizeof(u64);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011725
11726 /* Get the start of the block of counters */
11727 *cntrp = dd->cntrs;
11728
11729 /*
11730 * Now go and fill in each counter in the block.
11731 */
11732 for (i = 0; i < DEV_CNTR_LAST; i++) {
11733 entry = &dev_cntrs[i];
11734 hfi1_cdbg(CNTR, "reading %s", entry->name);
11735 if (entry->flags & CNTR_DISABLED) {
11736 /* Nothing */
11737 hfi1_cdbg(CNTR, "\tDisabled\n");
11738 } else {
11739 if (entry->flags & CNTR_VL) {
11740 hfi1_cdbg(CNTR, "\tPer VL\n");
11741 for (j = 0; j < C_VL_COUNT; j++) {
11742 val = entry->rw_cntr(entry,
11743 dd, j,
11744 CNTR_MODE_R,
11745 0);
11746 hfi1_cdbg(
11747 CNTR,
11748 "\t\tRead 0x%llx for %d\n",
11749 val, j);
11750 dd->cntrs[entry->offset + j] =
11751 val;
11752 }
Vennila Megavannana699c6c2016-01-11 18:30:56 -050011753 } else if (entry->flags & CNTR_SDMA) {
11754 hfi1_cdbg(CNTR,
11755 "\t Per SDMA Engine\n");
11756 for (j = 0; j < dd->chip_sdma_engines;
11757 j++) {
11758 val =
11759 entry->rw_cntr(entry, dd, j,
11760 CNTR_MODE_R, 0);
11761 hfi1_cdbg(CNTR,
11762 "\t\tRead 0x%llx for %d\n",
11763 val, j);
11764 dd->cntrs[entry->offset + j] =
11765 val;
11766 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040011767 } else {
11768 val = entry->rw_cntr(entry, dd,
11769 CNTR_INVALID_VL,
11770 CNTR_MODE_R, 0);
11771 dd->cntrs[entry->offset] = val;
11772 hfi1_cdbg(CNTR, "\tRead 0x%llx", val);
11773 }
11774 }
11775 }
11776 }
11777 return ret;
11778}
11779
11780/*
11781 * Used by sysfs to create files for hfi stats to read
11782 */
Dean Luick582e05c2016-02-18 11:13:01 -080011783u32 hfi1_read_portcntrs(struct hfi1_pportdata *ppd, char **namep, u64 **cntrp)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011784{
11785 int ret;
11786 u64 val = 0;
11787
11788 if (namep) {
Dean Luick582e05c2016-02-18 11:13:01 -080011789 ret = ppd->dd->portcntrnameslen;
11790 *namep = ppd->dd->portcntrnames;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011791 } else {
11792 const struct cntr_entry *entry;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011793 int i, j;
11794
Dean Luick582e05c2016-02-18 11:13:01 -080011795 ret = ppd->dd->nportcntrs * sizeof(u64);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011796 *cntrp = ppd->cntrs;
11797
11798 for (i = 0; i < PORT_CNTR_LAST; i++) {
11799 entry = &port_cntrs[i];
11800 hfi1_cdbg(CNTR, "reading %s", entry->name);
11801 if (entry->flags & CNTR_DISABLED) {
11802 /* Nothing */
11803 hfi1_cdbg(CNTR, "\tDisabled\n");
11804 continue;
11805 }
11806
11807 if (entry->flags & CNTR_VL) {
11808 hfi1_cdbg(CNTR, "\tPer VL");
11809 for (j = 0; j < C_VL_COUNT; j++) {
11810 val = entry->rw_cntr(entry, ppd, j,
11811 CNTR_MODE_R,
11812 0);
11813 hfi1_cdbg(
11814 CNTR,
11815 "\t\tRead 0x%llx for %d",
11816 val, j);
11817 ppd->cntrs[entry->offset + j] = val;
11818 }
11819 } else {
11820 val = entry->rw_cntr(entry, ppd,
11821 CNTR_INVALID_VL,
11822 CNTR_MODE_R,
11823 0);
11824 ppd->cntrs[entry->offset] = val;
11825 hfi1_cdbg(CNTR, "\tRead 0x%llx", val);
11826 }
11827 }
11828 }
11829 return ret;
11830}
11831
11832static void free_cntrs(struct hfi1_devdata *dd)
11833{
11834 struct hfi1_pportdata *ppd;
11835 int i;
11836
11837 if (dd->synth_stats_timer.data)
11838 del_timer_sync(&dd->synth_stats_timer);
11839 dd->synth_stats_timer.data = 0;
11840 ppd = (struct hfi1_pportdata *)(dd + 1);
11841 for (i = 0; i < dd->num_pports; i++, ppd++) {
11842 kfree(ppd->cntrs);
11843 kfree(ppd->scntrs);
Dennis Dalessandro4eb06882016-01-19 14:42:39 -080011844 free_percpu(ppd->ibport_data.rvp.rc_acks);
11845 free_percpu(ppd->ibport_data.rvp.rc_qacks);
11846 free_percpu(ppd->ibport_data.rvp.rc_delayed_comp);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011847 ppd->cntrs = NULL;
11848 ppd->scntrs = NULL;
Dennis Dalessandro4eb06882016-01-19 14:42:39 -080011849 ppd->ibport_data.rvp.rc_acks = NULL;
11850 ppd->ibport_data.rvp.rc_qacks = NULL;
11851 ppd->ibport_data.rvp.rc_delayed_comp = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011852 }
11853 kfree(dd->portcntrnames);
11854 dd->portcntrnames = NULL;
11855 kfree(dd->cntrs);
11856 dd->cntrs = NULL;
11857 kfree(dd->scntrs);
11858 dd->scntrs = NULL;
11859 kfree(dd->cntrnames);
11860 dd->cntrnames = NULL;
11861}
11862
Mike Marciniszyn77241052015-07-30 15:17:43 -040011863static u64 read_dev_port_cntr(struct hfi1_devdata *dd, struct cntr_entry *entry,
11864 u64 *psval, void *context, int vl)
11865{
11866 u64 val;
11867 u64 sval = *psval;
11868
11869 if (entry->flags & CNTR_DISABLED) {
11870 dd_dev_err(dd, "Counter %s not enabled", entry->name);
11871 return 0;
11872 }
11873
11874 hfi1_cdbg(CNTR, "cntr: %s vl %d psval 0x%llx", entry->name, vl, *psval);
11875
11876 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_R, 0);
11877
11878 /* If its a synthetic counter there is more work we need to do */
11879 if (entry->flags & CNTR_SYNTH) {
11880 if (sval == CNTR_MAX) {
11881 /* No need to read already saturated */
11882 return CNTR_MAX;
11883 }
11884
11885 if (entry->flags & CNTR_32BIT) {
11886 /* 32bit counters can wrap multiple times */
11887 u64 upper = sval >> 32;
11888 u64 lower = (sval << 32) >> 32;
11889
11890 if (lower > val) { /* hw wrapped */
11891 if (upper == CNTR_32BIT_MAX)
11892 val = CNTR_MAX;
11893 else
11894 upper++;
11895 }
11896
11897 if (val != CNTR_MAX)
11898 val = (upper << 32) | val;
11899
11900 } else {
11901 /* If we rolled we are saturated */
11902 if ((val < sval) || (val > CNTR_MAX))
11903 val = CNTR_MAX;
11904 }
11905 }
11906
11907 *psval = val;
11908
11909 hfi1_cdbg(CNTR, "\tNew val=0x%llx", val);
11910
11911 return val;
11912}
11913
11914static u64 write_dev_port_cntr(struct hfi1_devdata *dd,
11915 struct cntr_entry *entry,
11916 u64 *psval, void *context, int vl, u64 data)
11917{
11918 u64 val;
11919
11920 if (entry->flags & CNTR_DISABLED) {
11921 dd_dev_err(dd, "Counter %s not enabled", entry->name);
11922 return 0;
11923 }
11924
11925 hfi1_cdbg(CNTR, "cntr: %s vl %d psval 0x%llx", entry->name, vl, *psval);
11926
11927 if (entry->flags & CNTR_SYNTH) {
11928 *psval = data;
11929 if (entry->flags & CNTR_32BIT) {
11930 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_W,
11931 (data << 32) >> 32);
11932 val = data; /* return the full 64bit value */
11933 } else {
11934 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_W,
11935 data);
11936 }
11937 } else {
11938 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_W, data);
11939 }
11940
11941 *psval = val;
11942
11943 hfi1_cdbg(CNTR, "\tNew val=0x%llx", val);
11944
11945 return val;
11946}
11947
11948u64 read_dev_cntr(struct hfi1_devdata *dd, int index, int vl)
11949{
11950 struct cntr_entry *entry;
11951 u64 *sval;
11952
11953 entry = &dev_cntrs[index];
11954 sval = dd->scntrs + entry->offset;
11955
11956 if (vl != CNTR_INVALID_VL)
11957 sval += vl;
11958
11959 return read_dev_port_cntr(dd, entry, sval, dd, vl);
11960}
11961
11962u64 write_dev_cntr(struct hfi1_devdata *dd, int index, int vl, u64 data)
11963{
11964 struct cntr_entry *entry;
11965 u64 *sval;
11966
11967 entry = &dev_cntrs[index];
11968 sval = dd->scntrs + entry->offset;
11969
11970 if (vl != CNTR_INVALID_VL)
11971 sval += vl;
11972
11973 return write_dev_port_cntr(dd, entry, sval, dd, vl, data);
11974}
11975
11976u64 read_port_cntr(struct hfi1_pportdata *ppd, int index, int vl)
11977{
11978 struct cntr_entry *entry;
11979 u64 *sval;
11980
11981 entry = &port_cntrs[index];
11982 sval = ppd->scntrs + entry->offset;
11983
11984 if (vl != CNTR_INVALID_VL)
11985 sval += vl;
11986
11987 if ((index >= C_RCV_HDR_OVF_FIRST + ppd->dd->num_rcv_contexts) &&
11988 (index <= C_RCV_HDR_OVF_LAST)) {
11989 /* We do not want to bother for disabled contexts */
11990 return 0;
11991 }
11992
11993 return read_dev_port_cntr(ppd->dd, entry, sval, ppd, vl);
11994}
11995
11996u64 write_port_cntr(struct hfi1_pportdata *ppd, int index, int vl, u64 data)
11997{
11998 struct cntr_entry *entry;
11999 u64 *sval;
12000
12001 entry = &port_cntrs[index];
12002 sval = ppd->scntrs + entry->offset;
12003
12004 if (vl != CNTR_INVALID_VL)
12005 sval += vl;
12006
12007 if ((index >= C_RCV_HDR_OVF_FIRST + ppd->dd->num_rcv_contexts) &&
12008 (index <= C_RCV_HDR_OVF_LAST)) {
12009 /* We do not want to bother for disabled contexts */
12010 return 0;
12011 }
12012
12013 return write_dev_port_cntr(ppd->dd, entry, sval, ppd, vl, data);
12014}
12015
12016static void update_synth_timer(unsigned long opaque)
12017{
12018 u64 cur_tx;
12019 u64 cur_rx;
12020 u64 total_flits;
12021 u8 update = 0;
12022 int i, j, vl;
12023 struct hfi1_pportdata *ppd;
12024 struct cntr_entry *entry;
12025
12026 struct hfi1_devdata *dd = (struct hfi1_devdata *)opaque;
12027
12028 /*
12029 * Rather than keep beating on the CSRs pick a minimal set that we can
12030 * check to watch for potential roll over. We can do this by looking at
12031 * the number of flits sent/recv. If the total flits exceeds 32bits then
12032 * we have to iterate all the counters and update.
12033 */
12034 entry = &dev_cntrs[C_DC_RCV_FLITS];
12035 cur_rx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL, CNTR_MODE_R, 0);
12036
12037 entry = &dev_cntrs[C_DC_XMIT_FLITS];
12038 cur_tx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL, CNTR_MODE_R, 0);
12039
12040 hfi1_cdbg(
12041 CNTR,
12042 "[%d] curr tx=0x%llx rx=0x%llx :: last tx=0x%llx rx=0x%llx\n",
12043 dd->unit, cur_tx, cur_rx, dd->last_tx, dd->last_rx);
12044
12045 if ((cur_tx < dd->last_tx) || (cur_rx < dd->last_rx)) {
12046 /*
12047 * May not be strictly necessary to update but it won't hurt and
12048 * simplifies the logic here.
12049 */
12050 update = 1;
12051 hfi1_cdbg(CNTR, "[%d] Tripwire counter rolled, updating",
12052 dd->unit);
12053 } else {
12054 total_flits = (cur_tx - dd->last_tx) + (cur_rx - dd->last_rx);
12055 hfi1_cdbg(CNTR,
12056 "[%d] total flits 0x%llx limit 0x%llx\n", dd->unit,
12057 total_flits, (u64)CNTR_32BIT_MAX);
12058 if (total_flits >= CNTR_32BIT_MAX) {
12059 hfi1_cdbg(CNTR, "[%d] 32bit limit hit, updating",
12060 dd->unit);
12061 update = 1;
12062 }
12063 }
12064
12065 if (update) {
12066 hfi1_cdbg(CNTR, "[%d] Updating dd and ppd counters", dd->unit);
12067 for (i = 0; i < DEV_CNTR_LAST; i++) {
12068 entry = &dev_cntrs[i];
12069 if (entry->flags & CNTR_VL) {
12070 for (vl = 0; vl < C_VL_COUNT; vl++)
12071 read_dev_cntr(dd, i, vl);
12072 } else {
12073 read_dev_cntr(dd, i, CNTR_INVALID_VL);
12074 }
12075 }
12076 ppd = (struct hfi1_pportdata *)(dd + 1);
12077 for (i = 0; i < dd->num_pports; i++, ppd++) {
12078 for (j = 0; j < PORT_CNTR_LAST; j++) {
12079 entry = &port_cntrs[j];
12080 if (entry->flags & CNTR_VL) {
12081 for (vl = 0; vl < C_VL_COUNT; vl++)
12082 read_port_cntr(ppd, j, vl);
12083 } else {
12084 read_port_cntr(ppd, j, CNTR_INVALID_VL);
12085 }
12086 }
12087 }
12088
12089 /*
12090 * We want the value in the register. The goal is to keep track
12091 * of the number of "ticks" not the counter value. In other
12092 * words if the register rolls we want to notice it and go ahead
12093 * and force an update.
12094 */
12095 entry = &dev_cntrs[C_DC_XMIT_FLITS];
12096 dd->last_tx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL,
12097 CNTR_MODE_R, 0);
12098
12099 entry = &dev_cntrs[C_DC_RCV_FLITS];
12100 dd->last_rx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL,
12101 CNTR_MODE_R, 0);
12102
12103 hfi1_cdbg(CNTR, "[%d] setting last tx/rx to 0x%llx 0x%llx",
12104 dd->unit, dd->last_tx, dd->last_rx);
12105
12106 } else {
12107 hfi1_cdbg(CNTR, "[%d] No update necessary", dd->unit);
12108 }
12109
Bart Van Assche48a0cc132016-06-03 12:09:56 -070012110 mod_timer(&dd->synth_stats_timer, jiffies + HZ * SYNTH_CNT_TIME);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012111}
12112
12113#define C_MAX_NAME 13 /* 12 chars + one for /0 */
12114static int init_cntrs(struct hfi1_devdata *dd)
12115{
Dean Luickc024c552016-01-11 18:30:57 -050012116 int i, rcv_ctxts, j;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012117 size_t sz;
12118 char *p;
12119 char name[C_MAX_NAME];
12120 struct hfi1_pportdata *ppd;
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012121 const char *bit_type_32 = ",32";
12122 const int bit_type_32_sz = strlen(bit_type_32);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012123
12124 /* set up the stats timer; the add_timer is done at the end */
Muhammad Falak R Wani24523a92015-10-25 16:13:23 +053012125 setup_timer(&dd->synth_stats_timer, update_synth_timer,
12126 (unsigned long)dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012127
12128 /***********************/
12129 /* per device counters */
12130 /***********************/
12131
12132 /* size names and determine how many we have*/
12133 dd->ndevcntrs = 0;
12134 sz = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012135
12136 for (i = 0; i < DEV_CNTR_LAST; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012137 if (dev_cntrs[i].flags & CNTR_DISABLED) {
12138 hfi1_dbg_early("\tSkipping %s\n", dev_cntrs[i].name);
12139 continue;
12140 }
12141
12142 if (dev_cntrs[i].flags & CNTR_VL) {
Dean Luickc024c552016-01-11 18:30:57 -050012143 dev_cntrs[i].offset = dd->ndevcntrs;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012144 for (j = 0; j < C_VL_COUNT; j++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012145 snprintf(name, C_MAX_NAME, "%s%d",
Jubin John17fb4f22016-02-14 20:21:52 -080012146 dev_cntrs[i].name, vl_from_idx(j));
Mike Marciniszyn77241052015-07-30 15:17:43 -040012147 sz += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012148 /* Add ",32" for 32-bit counters */
12149 if (dev_cntrs[i].flags & CNTR_32BIT)
12150 sz += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012151 sz++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012152 dd->ndevcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012153 }
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012154 } else if (dev_cntrs[i].flags & CNTR_SDMA) {
Dean Luickc024c552016-01-11 18:30:57 -050012155 dev_cntrs[i].offset = dd->ndevcntrs;
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012156 for (j = 0; j < dd->chip_sdma_engines; j++) {
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012157 snprintf(name, C_MAX_NAME, "%s%d",
12158 dev_cntrs[i].name, j);
12159 sz += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012160 /* Add ",32" for 32-bit counters */
12161 if (dev_cntrs[i].flags & CNTR_32BIT)
12162 sz += bit_type_32_sz;
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012163 sz++;
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012164 dd->ndevcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012165 }
12166 } else {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012167 /* +1 for newline. */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012168 sz += strlen(dev_cntrs[i].name) + 1;
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012169 /* Add ",32" for 32-bit counters */
12170 if (dev_cntrs[i].flags & CNTR_32BIT)
12171 sz += bit_type_32_sz;
Dean Luickc024c552016-01-11 18:30:57 -050012172 dev_cntrs[i].offset = dd->ndevcntrs;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012173 dd->ndevcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012174 }
12175 }
12176
12177 /* allocate space for the counter values */
Dean Luickc024c552016-01-11 18:30:57 -050012178 dd->cntrs = kcalloc(dd->ndevcntrs, sizeof(u64), GFP_KERNEL);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012179 if (!dd->cntrs)
12180 goto bail;
12181
Dean Luickc024c552016-01-11 18:30:57 -050012182 dd->scntrs = kcalloc(dd->ndevcntrs, sizeof(u64), GFP_KERNEL);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012183 if (!dd->scntrs)
12184 goto bail;
12185
Mike Marciniszyn77241052015-07-30 15:17:43 -040012186 /* allocate space for the counter names */
12187 dd->cntrnameslen = sz;
12188 dd->cntrnames = kmalloc(sz, GFP_KERNEL);
12189 if (!dd->cntrnames)
12190 goto bail;
12191
12192 /* fill in the names */
Dean Luickc024c552016-01-11 18:30:57 -050012193 for (p = dd->cntrnames, i = 0; i < DEV_CNTR_LAST; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012194 if (dev_cntrs[i].flags & CNTR_DISABLED) {
12195 /* Nothing */
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012196 } else if (dev_cntrs[i].flags & CNTR_VL) {
12197 for (j = 0; j < C_VL_COUNT; j++) {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012198 snprintf(name, C_MAX_NAME, "%s%d",
12199 dev_cntrs[i].name,
12200 vl_from_idx(j));
12201 memcpy(p, name, strlen(name));
12202 p += strlen(name);
12203
12204 /* Counter is 32 bits */
12205 if (dev_cntrs[i].flags & CNTR_32BIT) {
12206 memcpy(p, bit_type_32, bit_type_32_sz);
12207 p += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012208 }
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012209
Mike Marciniszyn77241052015-07-30 15:17:43 -040012210 *p++ = '\n';
12211 }
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012212 } else if (dev_cntrs[i].flags & CNTR_SDMA) {
12213 for (j = 0; j < dd->chip_sdma_engines; j++) {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012214 snprintf(name, C_MAX_NAME, "%s%d",
12215 dev_cntrs[i].name, j);
12216 memcpy(p, name, strlen(name));
12217 p += strlen(name);
12218
12219 /* Counter is 32 bits */
12220 if (dev_cntrs[i].flags & CNTR_32BIT) {
12221 memcpy(p, bit_type_32, bit_type_32_sz);
12222 p += bit_type_32_sz;
12223 }
12224
12225 *p++ = '\n';
12226 }
12227 } else {
12228 memcpy(p, dev_cntrs[i].name, strlen(dev_cntrs[i].name));
12229 p += strlen(dev_cntrs[i].name);
12230
12231 /* Counter is 32 bits */
12232 if (dev_cntrs[i].flags & CNTR_32BIT) {
12233 memcpy(p, bit_type_32, bit_type_32_sz);
12234 p += bit_type_32_sz;
12235 }
12236
12237 *p++ = '\n';
Mike Marciniszyn77241052015-07-30 15:17:43 -040012238 }
12239 }
12240
12241 /*********************/
12242 /* per port counters */
12243 /*********************/
12244
12245 /*
12246 * Go through the counters for the overflows and disable the ones we
12247 * don't need. This varies based on platform so we need to do it
12248 * dynamically here.
12249 */
12250 rcv_ctxts = dd->num_rcv_contexts;
12251 for (i = C_RCV_HDR_OVF_FIRST + rcv_ctxts;
12252 i <= C_RCV_HDR_OVF_LAST; i++) {
12253 port_cntrs[i].flags |= CNTR_DISABLED;
12254 }
12255
12256 /* size port counter names and determine how many we have*/
12257 sz = 0;
12258 dd->nportcntrs = 0;
12259 for (i = 0; i < PORT_CNTR_LAST; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012260 if (port_cntrs[i].flags & CNTR_DISABLED) {
12261 hfi1_dbg_early("\tSkipping %s\n", port_cntrs[i].name);
12262 continue;
12263 }
12264
12265 if (port_cntrs[i].flags & CNTR_VL) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012266 port_cntrs[i].offset = dd->nportcntrs;
12267 for (j = 0; j < C_VL_COUNT; j++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012268 snprintf(name, C_MAX_NAME, "%s%d",
Jubin John17fb4f22016-02-14 20:21:52 -080012269 port_cntrs[i].name, vl_from_idx(j));
Mike Marciniszyn77241052015-07-30 15:17:43 -040012270 sz += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012271 /* Add ",32" for 32-bit counters */
12272 if (port_cntrs[i].flags & CNTR_32BIT)
12273 sz += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012274 sz++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012275 dd->nportcntrs++;
12276 }
12277 } else {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012278 /* +1 for newline */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012279 sz += strlen(port_cntrs[i].name) + 1;
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012280 /* Add ",32" for 32-bit counters */
12281 if (port_cntrs[i].flags & CNTR_32BIT)
12282 sz += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012283 port_cntrs[i].offset = dd->nportcntrs;
12284 dd->nportcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012285 }
12286 }
12287
12288 /* allocate space for the counter names */
12289 dd->portcntrnameslen = sz;
12290 dd->portcntrnames = kmalloc(sz, GFP_KERNEL);
12291 if (!dd->portcntrnames)
12292 goto bail;
12293
12294 /* fill in port cntr names */
12295 for (p = dd->portcntrnames, i = 0; i < PORT_CNTR_LAST; i++) {
12296 if (port_cntrs[i].flags & CNTR_DISABLED)
12297 continue;
12298
12299 if (port_cntrs[i].flags & CNTR_VL) {
12300 for (j = 0; j < C_VL_COUNT; j++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012301 snprintf(name, C_MAX_NAME, "%s%d",
Jubin John17fb4f22016-02-14 20:21:52 -080012302 port_cntrs[i].name, vl_from_idx(j));
Mike Marciniszyn77241052015-07-30 15:17:43 -040012303 memcpy(p, name, strlen(name));
12304 p += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012305
12306 /* Counter is 32 bits */
12307 if (port_cntrs[i].flags & CNTR_32BIT) {
12308 memcpy(p, bit_type_32, bit_type_32_sz);
12309 p += bit_type_32_sz;
12310 }
12311
Mike Marciniszyn77241052015-07-30 15:17:43 -040012312 *p++ = '\n';
12313 }
12314 } else {
12315 memcpy(p, port_cntrs[i].name,
12316 strlen(port_cntrs[i].name));
12317 p += strlen(port_cntrs[i].name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012318
12319 /* Counter is 32 bits */
12320 if (port_cntrs[i].flags & CNTR_32BIT) {
12321 memcpy(p, bit_type_32, bit_type_32_sz);
12322 p += bit_type_32_sz;
12323 }
12324
Mike Marciniszyn77241052015-07-30 15:17:43 -040012325 *p++ = '\n';
12326 }
12327 }
12328
12329 /* allocate per port storage for counter values */
12330 ppd = (struct hfi1_pportdata *)(dd + 1);
12331 for (i = 0; i < dd->num_pports; i++, ppd++) {
12332 ppd->cntrs = kcalloc(dd->nportcntrs, sizeof(u64), GFP_KERNEL);
12333 if (!ppd->cntrs)
12334 goto bail;
12335
12336 ppd->scntrs = kcalloc(dd->nportcntrs, sizeof(u64), GFP_KERNEL);
12337 if (!ppd->scntrs)
12338 goto bail;
12339 }
12340
12341 /* CPU counters need to be allocated and zeroed */
12342 if (init_cpu_counters(dd))
12343 goto bail;
12344
12345 mod_timer(&dd->synth_stats_timer, jiffies + HZ * SYNTH_CNT_TIME);
12346 return 0;
12347bail:
12348 free_cntrs(dd);
12349 return -ENOMEM;
12350}
12351
Mike Marciniszyn77241052015-07-30 15:17:43 -040012352static u32 chip_to_opa_lstate(struct hfi1_devdata *dd, u32 chip_lstate)
12353{
12354 switch (chip_lstate) {
12355 default:
12356 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080012357 "Unknown logical state 0x%x, reporting IB_PORT_DOWN\n",
12358 chip_lstate);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012359 /* fall through */
12360 case LSTATE_DOWN:
12361 return IB_PORT_DOWN;
12362 case LSTATE_INIT:
12363 return IB_PORT_INIT;
12364 case LSTATE_ARMED:
12365 return IB_PORT_ARMED;
12366 case LSTATE_ACTIVE:
12367 return IB_PORT_ACTIVE;
12368 }
12369}
12370
12371u32 chip_to_opa_pstate(struct hfi1_devdata *dd, u32 chip_pstate)
12372{
12373 /* look at the HFI meta-states only */
12374 switch (chip_pstate & 0xf0) {
12375 default:
12376 dd_dev_err(dd, "Unexpected chip physical state of 0x%x\n",
Jubin John17fb4f22016-02-14 20:21:52 -080012377 chip_pstate);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012378 /* fall through */
12379 case PLS_DISABLED:
12380 return IB_PORTPHYSSTATE_DISABLED;
12381 case PLS_OFFLINE:
12382 return OPA_PORTPHYSSTATE_OFFLINE;
12383 case PLS_POLLING:
12384 return IB_PORTPHYSSTATE_POLLING;
12385 case PLS_CONFIGPHY:
12386 return IB_PORTPHYSSTATE_TRAINING;
12387 case PLS_LINKUP:
12388 return IB_PORTPHYSSTATE_LINKUP;
12389 case PLS_PHYTEST:
12390 return IB_PORTPHYSSTATE_PHY_TEST;
12391 }
12392}
12393
12394/* return the OPA port logical state name */
12395const char *opa_lstate_name(u32 lstate)
12396{
12397 static const char * const port_logical_names[] = {
12398 "PORT_NOP",
12399 "PORT_DOWN",
12400 "PORT_INIT",
12401 "PORT_ARMED",
12402 "PORT_ACTIVE",
12403 "PORT_ACTIVE_DEFER",
12404 };
12405 if (lstate < ARRAY_SIZE(port_logical_names))
12406 return port_logical_names[lstate];
12407 return "unknown";
12408}
12409
12410/* return the OPA port physical state name */
12411const char *opa_pstate_name(u32 pstate)
12412{
12413 static const char * const port_physical_names[] = {
12414 "PHYS_NOP",
12415 "reserved1",
12416 "PHYS_POLL",
12417 "PHYS_DISABLED",
12418 "PHYS_TRAINING",
12419 "PHYS_LINKUP",
12420 "PHYS_LINK_ERR_RECOVER",
12421 "PHYS_PHY_TEST",
12422 "reserved8",
12423 "PHYS_OFFLINE",
12424 "PHYS_GANGED",
12425 "PHYS_TEST",
12426 };
12427 if (pstate < ARRAY_SIZE(port_physical_names))
12428 return port_physical_names[pstate];
12429 return "unknown";
12430}
12431
12432/*
12433 * Read the hardware link state and set the driver's cached value of it.
12434 * Return the (new) current value.
12435 */
12436u32 get_logical_state(struct hfi1_pportdata *ppd)
12437{
12438 u32 new_state;
12439
12440 new_state = chip_to_opa_lstate(ppd->dd, read_logical_state(ppd->dd));
12441 if (new_state != ppd->lstate) {
12442 dd_dev_info(ppd->dd, "logical state changed to %s (0x%x)\n",
Jubin John17fb4f22016-02-14 20:21:52 -080012443 opa_lstate_name(new_state), new_state);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012444 ppd->lstate = new_state;
12445 }
12446 /*
12447 * Set port status flags in the page mapped into userspace
12448 * memory. Do it here to ensure a reliable state - this is
12449 * the only function called by all state handling code.
12450 * Always set the flags due to the fact that the cache value
12451 * might have been changed explicitly outside of this
12452 * function.
12453 */
12454 if (ppd->statusp) {
12455 switch (ppd->lstate) {
12456 case IB_PORT_DOWN:
12457 case IB_PORT_INIT:
12458 *ppd->statusp &= ~(HFI1_STATUS_IB_CONF |
12459 HFI1_STATUS_IB_READY);
12460 break;
12461 case IB_PORT_ARMED:
12462 *ppd->statusp |= HFI1_STATUS_IB_CONF;
12463 break;
12464 case IB_PORT_ACTIVE:
12465 *ppd->statusp |= HFI1_STATUS_IB_READY;
12466 break;
12467 }
12468 }
12469 return ppd->lstate;
12470}
12471
12472/**
12473 * wait_logical_linkstate - wait for an IB link state change to occur
12474 * @ppd: port device
12475 * @state: the state to wait for
12476 * @msecs: the number of milliseconds to wait
12477 *
12478 * Wait up to msecs milliseconds for IB link state change to occur.
12479 * For now, take the easy polling route.
12480 * Returns 0 if state reached, otherwise -ETIMEDOUT.
12481 */
12482static int wait_logical_linkstate(struct hfi1_pportdata *ppd, u32 state,
12483 int msecs)
12484{
12485 unsigned long timeout;
12486
12487 timeout = jiffies + msecs_to_jiffies(msecs);
12488 while (1) {
12489 if (get_logical_state(ppd) == state)
12490 return 0;
12491 if (time_after(jiffies, timeout))
12492 break;
12493 msleep(20);
12494 }
12495 dd_dev_err(ppd->dd, "timeout waiting for link state 0x%x\n", state);
12496
12497 return -ETIMEDOUT;
12498}
12499
12500u8 hfi1_ibphys_portstate(struct hfi1_pportdata *ppd)
12501{
Mike Marciniszyn77241052015-07-30 15:17:43 -040012502 u32 pstate;
12503 u32 ib_pstate;
12504
12505 pstate = read_physical_state(ppd->dd);
12506 ib_pstate = chip_to_opa_pstate(ppd->dd, pstate);
Dean Luickf45c8dc2016-02-03 14:35:31 -080012507 if (ppd->last_pstate != ib_pstate) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012508 dd_dev_info(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -080012509 "%s: physical state changed to %s (0x%x), phy 0x%x\n",
12510 __func__, opa_pstate_name(ib_pstate), ib_pstate,
12511 pstate);
Dean Luickf45c8dc2016-02-03 14:35:31 -080012512 ppd->last_pstate = ib_pstate;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012513 }
12514 return ib_pstate;
12515}
12516
Mike Marciniszyn77241052015-07-30 15:17:43 -040012517#define CLEAR_STATIC_RATE_CONTROL_SMASK(r) \
12518(r &= ~SEND_CTXT_CHECK_ENABLE_DISALLOW_PBC_STATIC_RATE_CONTROL_SMASK)
12519
12520#define SET_STATIC_RATE_CONTROL_SMASK(r) \
12521(r |= SEND_CTXT_CHECK_ENABLE_DISALLOW_PBC_STATIC_RATE_CONTROL_SMASK)
12522
12523int hfi1_init_ctxt(struct send_context *sc)
12524{
Jubin Johnd125a6c2016-02-14 20:19:49 -080012525 if (sc) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012526 struct hfi1_devdata *dd = sc->dd;
12527 u64 reg;
12528 u8 set = (sc->type == SC_USER ?
12529 HFI1_CAP_IS_USET(STATIC_RATE_CTRL) :
12530 HFI1_CAP_IS_KSET(STATIC_RATE_CTRL));
12531 reg = read_kctxt_csr(dd, sc->hw_context,
12532 SEND_CTXT_CHECK_ENABLE);
12533 if (set)
12534 CLEAR_STATIC_RATE_CONTROL_SMASK(reg);
12535 else
12536 SET_STATIC_RATE_CONTROL_SMASK(reg);
12537 write_kctxt_csr(dd, sc->hw_context,
12538 SEND_CTXT_CHECK_ENABLE, reg);
12539 }
12540 return 0;
12541}
12542
12543int hfi1_tempsense_rd(struct hfi1_devdata *dd, struct hfi1_temp *temp)
12544{
12545 int ret = 0;
12546 u64 reg;
12547
12548 if (dd->icode != ICODE_RTL_SILICON) {
12549 if (HFI1_CAP_IS_KSET(PRINT_UNIMPL))
12550 dd_dev_info(dd, "%s: tempsense not supported by HW\n",
12551 __func__);
12552 return -EINVAL;
12553 }
12554 reg = read_csr(dd, ASIC_STS_THERM);
12555 temp->curr = ((reg >> ASIC_STS_THERM_CURR_TEMP_SHIFT) &
12556 ASIC_STS_THERM_CURR_TEMP_MASK);
12557 temp->lo_lim = ((reg >> ASIC_STS_THERM_LO_TEMP_SHIFT) &
12558 ASIC_STS_THERM_LO_TEMP_MASK);
12559 temp->hi_lim = ((reg >> ASIC_STS_THERM_HI_TEMP_SHIFT) &
12560 ASIC_STS_THERM_HI_TEMP_MASK);
12561 temp->crit_lim = ((reg >> ASIC_STS_THERM_CRIT_TEMP_SHIFT) &
12562 ASIC_STS_THERM_CRIT_TEMP_MASK);
12563 /* triggers is a 3-bit value - 1 bit per trigger. */
12564 temp->triggers = (u8)((reg >> ASIC_STS_THERM_LOW_SHIFT) & 0x7);
12565
12566 return ret;
12567}
12568
12569/* ========================================================================= */
12570
12571/*
12572 * Enable/disable chip from delivering interrupts.
12573 */
12574void set_intr_state(struct hfi1_devdata *dd, u32 enable)
12575{
12576 int i;
12577
12578 /*
12579 * In HFI, the mask needs to be 1 to allow interrupts.
12580 */
12581 if (enable) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012582 /* enable all interrupts */
12583 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080012584 write_csr(dd, CCE_INT_MASK + (8 * i), ~(u64)0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012585
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080012586 init_qsfp_int(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012587 } else {
12588 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080012589 write_csr(dd, CCE_INT_MASK + (8 * i), 0ull);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012590 }
12591}
12592
12593/*
12594 * Clear all interrupt sources on the chip.
12595 */
12596static void clear_all_interrupts(struct hfi1_devdata *dd)
12597{
12598 int i;
12599
12600 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080012601 write_csr(dd, CCE_INT_CLEAR + (8 * i), ~(u64)0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012602
12603 write_csr(dd, CCE_ERR_CLEAR, ~(u64)0);
12604 write_csr(dd, MISC_ERR_CLEAR, ~(u64)0);
12605 write_csr(dd, RCV_ERR_CLEAR, ~(u64)0);
12606 write_csr(dd, SEND_ERR_CLEAR, ~(u64)0);
12607 write_csr(dd, SEND_PIO_ERR_CLEAR, ~(u64)0);
12608 write_csr(dd, SEND_DMA_ERR_CLEAR, ~(u64)0);
12609 write_csr(dd, SEND_EGRESS_ERR_CLEAR, ~(u64)0);
12610 for (i = 0; i < dd->chip_send_contexts; i++)
12611 write_kctxt_csr(dd, i, SEND_CTXT_ERR_CLEAR, ~(u64)0);
12612 for (i = 0; i < dd->chip_sdma_engines; i++)
12613 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_CLEAR, ~(u64)0);
12614
12615 write_csr(dd, DCC_ERR_FLG_CLR, ~(u64)0);
12616 write_csr(dd, DC_LCB_ERR_CLR, ~(u64)0);
12617 write_csr(dd, DC_DC8051_ERR_CLR, ~(u64)0);
12618}
12619
12620/* Move to pcie.c? */
12621static void disable_intx(struct pci_dev *pdev)
12622{
12623 pci_intx(pdev, 0);
12624}
12625
12626static void clean_up_interrupts(struct hfi1_devdata *dd)
12627{
12628 int i;
12629
12630 /* remove irqs - must happen before disabling/turning off */
12631 if (dd->num_msix_entries) {
12632 /* MSI-X */
12633 struct hfi1_msix_entry *me = dd->msix_entries;
12634
12635 for (i = 0; i < dd->num_msix_entries; i++, me++) {
Jubin Johnd125a6c2016-02-14 20:19:49 -080012636 if (!me->arg) /* => no irq, no affinity */
Mitko Haralanov957558c2016-02-03 14:33:40 -080012637 continue;
12638 hfi1_put_irq_affinity(dd, &dd->msix_entries[i]);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012639 free_irq(me->msix.vector, me->arg);
12640 }
12641 } else {
12642 /* INTx */
12643 if (dd->requested_intx_irq) {
12644 free_irq(dd->pcidev->irq, dd);
12645 dd->requested_intx_irq = 0;
12646 }
12647 }
12648
12649 /* turn off interrupts */
12650 if (dd->num_msix_entries) {
12651 /* MSI-X */
Amitoj Kaur Chawla6e5b6132015-11-01 16:14:32 +053012652 pci_disable_msix(dd->pcidev);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012653 } else {
12654 /* INTx */
12655 disable_intx(dd->pcidev);
12656 }
12657
12658 /* clean structures */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012659 kfree(dd->msix_entries);
12660 dd->msix_entries = NULL;
12661 dd->num_msix_entries = 0;
12662}
12663
12664/*
12665 * Remap the interrupt source from the general handler to the given MSI-X
12666 * interrupt.
12667 */
12668static void remap_intr(struct hfi1_devdata *dd, int isrc, int msix_intr)
12669{
12670 u64 reg;
12671 int m, n;
12672
12673 /* clear from the handled mask of the general interrupt */
12674 m = isrc / 64;
12675 n = isrc % 64;
12676 dd->gi_mask[m] &= ~((u64)1 << n);
12677
12678 /* direct the chip source to the given MSI-X interrupt */
12679 m = isrc / 8;
12680 n = isrc % 8;
Jubin John8638b772016-02-14 20:19:24 -080012681 reg = read_csr(dd, CCE_INT_MAP + (8 * m));
12682 reg &= ~((u64)0xff << (8 * n));
12683 reg |= ((u64)msix_intr & 0xff) << (8 * n);
12684 write_csr(dd, CCE_INT_MAP + (8 * m), reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012685}
12686
12687static void remap_sdma_interrupts(struct hfi1_devdata *dd,
12688 int engine, int msix_intr)
12689{
12690 /*
12691 * SDMA engine interrupt sources grouped by type, rather than
12692 * engine. Per-engine interrupts are as follows:
12693 * SDMA
12694 * SDMAProgress
12695 * SDMAIdle
12696 */
Jubin John8638b772016-02-14 20:19:24 -080012697 remap_intr(dd, IS_SDMA_START + 0 * TXE_NUM_SDMA_ENGINES + engine,
Jubin John17fb4f22016-02-14 20:21:52 -080012698 msix_intr);
Jubin John8638b772016-02-14 20:19:24 -080012699 remap_intr(dd, IS_SDMA_START + 1 * TXE_NUM_SDMA_ENGINES + engine,
Jubin John17fb4f22016-02-14 20:21:52 -080012700 msix_intr);
Jubin John8638b772016-02-14 20:19:24 -080012701 remap_intr(dd, IS_SDMA_START + 2 * TXE_NUM_SDMA_ENGINES + engine,
Jubin John17fb4f22016-02-14 20:21:52 -080012702 msix_intr);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012703}
12704
Mike Marciniszyn77241052015-07-30 15:17:43 -040012705static int request_intx_irq(struct hfi1_devdata *dd)
12706{
12707 int ret;
12708
Jubin John98050712015-11-16 21:59:27 -050012709 snprintf(dd->intx_name, sizeof(dd->intx_name), DRIVER_NAME "_%d",
12710 dd->unit);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012711 ret = request_irq(dd->pcidev->irq, general_interrupt,
Jubin John17fb4f22016-02-14 20:21:52 -080012712 IRQF_SHARED, dd->intx_name, dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012713 if (ret)
12714 dd_dev_err(dd, "unable to request INTx interrupt, err %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -080012715 ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012716 else
12717 dd->requested_intx_irq = 1;
12718 return ret;
12719}
12720
12721static int request_msix_irqs(struct hfi1_devdata *dd)
12722{
Mike Marciniszyn77241052015-07-30 15:17:43 -040012723 int first_general, last_general;
12724 int first_sdma, last_sdma;
12725 int first_rx, last_rx;
Mitko Haralanov957558c2016-02-03 14:33:40 -080012726 int i, ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012727
12728 /* calculate the ranges we are going to use */
12729 first_general = 0;
Jubin Johnf3ff8182016-02-14 20:20:50 -080012730 last_general = first_general + 1;
12731 first_sdma = last_general;
12732 last_sdma = first_sdma + dd->num_sdma;
12733 first_rx = last_sdma;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012734 last_rx = first_rx + dd->n_krcv_queues;
12735
12736 /*
Mike Marciniszyn77241052015-07-30 15:17:43 -040012737 * Sanity check - the code expects all SDMA chip source
12738 * interrupts to be in the same CSR, starting at bit 0. Verify
12739 * that this is true by checking the bit location of the start.
12740 */
12741 BUILD_BUG_ON(IS_SDMA_START % 64);
12742
12743 for (i = 0; i < dd->num_msix_entries; i++) {
12744 struct hfi1_msix_entry *me = &dd->msix_entries[i];
12745 const char *err_info;
12746 irq_handler_t handler;
Dean Luickf4f30031c2015-10-26 10:28:44 -040012747 irq_handler_t thread = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012748 void *arg;
12749 int idx;
12750 struct hfi1_ctxtdata *rcd = NULL;
12751 struct sdma_engine *sde = NULL;
12752
12753 /* obtain the arguments to request_irq */
12754 if (first_general <= i && i < last_general) {
12755 idx = i - first_general;
12756 handler = general_interrupt;
12757 arg = dd;
12758 snprintf(me->name, sizeof(me->name),
Jubin John98050712015-11-16 21:59:27 -050012759 DRIVER_NAME "_%d", dd->unit);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012760 err_info = "general";
Mitko Haralanov957558c2016-02-03 14:33:40 -080012761 me->type = IRQ_GENERAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012762 } else if (first_sdma <= i && i < last_sdma) {
12763 idx = i - first_sdma;
12764 sde = &dd->per_sdma[idx];
12765 handler = sdma_interrupt;
12766 arg = sde;
12767 snprintf(me->name, sizeof(me->name),
Jubin John98050712015-11-16 21:59:27 -050012768 DRIVER_NAME "_%d sdma%d", dd->unit, idx);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012769 err_info = "sdma";
12770 remap_sdma_interrupts(dd, idx, i);
Mitko Haralanov957558c2016-02-03 14:33:40 -080012771 me->type = IRQ_SDMA;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012772 } else if (first_rx <= i && i < last_rx) {
12773 idx = i - first_rx;
12774 rcd = dd->rcd[idx];
12775 /* no interrupt if no rcd */
12776 if (!rcd)
12777 continue;
12778 /*
12779 * Set the interrupt register and mask for this
12780 * context's interrupt.
12781 */
Jubin John8638b772016-02-14 20:19:24 -080012782 rcd->ireg = (IS_RCVAVAIL_START + idx) / 64;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012783 rcd->imask = ((u64)1) <<
Jubin John8638b772016-02-14 20:19:24 -080012784 ((IS_RCVAVAIL_START + idx) % 64);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012785 handler = receive_context_interrupt;
Dean Luickf4f30031c2015-10-26 10:28:44 -040012786 thread = receive_context_thread;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012787 arg = rcd;
12788 snprintf(me->name, sizeof(me->name),
Jubin John98050712015-11-16 21:59:27 -050012789 DRIVER_NAME "_%d kctxt%d", dd->unit, idx);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012790 err_info = "receive context";
Amitoj Kaur Chawla66c09332015-11-01 16:18:18 +053012791 remap_intr(dd, IS_RCVAVAIL_START + idx, i);
Mitko Haralanov957558c2016-02-03 14:33:40 -080012792 me->type = IRQ_RCVCTXT;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012793 } else {
12794 /* not in our expected range - complain, then
Jubin John4d114fd2016-02-14 20:21:43 -080012795 * ignore it
12796 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012797 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080012798 "Unexpected extra MSI-X interrupt %d\n", i);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012799 continue;
12800 }
12801 /* no argument, no interrupt */
Jubin Johnd125a6c2016-02-14 20:19:49 -080012802 if (!arg)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012803 continue;
12804 /* make sure the name is terminated */
Jubin John8638b772016-02-14 20:19:24 -080012805 me->name[sizeof(me->name) - 1] = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012806
Dean Luickf4f30031c2015-10-26 10:28:44 -040012807 ret = request_threaded_irq(me->msix.vector, handler, thread, 0,
Jubin John17fb4f22016-02-14 20:21:52 -080012808 me->name, arg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012809 if (ret) {
12810 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080012811 "unable to allocate %s interrupt, vector %d, index %d, err %d\n",
12812 err_info, me->msix.vector, idx, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012813 return ret;
12814 }
12815 /*
12816 * assign arg after request_irq call, so it will be
12817 * cleaned up
12818 */
12819 me->arg = arg;
12820
Mitko Haralanov957558c2016-02-03 14:33:40 -080012821 ret = hfi1_get_irq_affinity(dd, me);
12822 if (ret)
12823 dd_dev_err(dd,
12824 "unable to pin IRQ %d\n", ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012825 }
12826
Mike Marciniszyn77241052015-07-30 15:17:43 -040012827 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012828}
12829
12830/*
12831 * Set the general handler to accept all interrupts, remap all
12832 * chip interrupts back to MSI-X 0.
12833 */
12834static void reset_interrupts(struct hfi1_devdata *dd)
12835{
12836 int i;
12837
12838 /* all interrupts handled by the general handler */
12839 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
12840 dd->gi_mask[i] = ~(u64)0;
12841
12842 /* all chip interrupts map to MSI-X 0 */
12843 for (i = 0; i < CCE_NUM_INT_MAP_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080012844 write_csr(dd, CCE_INT_MAP + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012845}
12846
12847static int set_up_interrupts(struct hfi1_devdata *dd)
12848{
12849 struct hfi1_msix_entry *entries;
12850 u32 total, request;
12851 int i, ret;
12852 int single_interrupt = 0; /* we expect to have all the interrupts */
12853
12854 /*
12855 * Interrupt count:
12856 * 1 general, "slow path" interrupt (includes the SDMA engines
12857 * slow source, SDMACleanupDone)
12858 * N interrupts - one per used SDMA engine
12859 * M interrupt - one per kernel receive context
12860 */
12861 total = 1 + dd->num_sdma + dd->n_krcv_queues;
12862
12863 entries = kcalloc(total, sizeof(*entries), GFP_KERNEL);
12864 if (!entries) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012865 ret = -ENOMEM;
12866 goto fail;
12867 }
12868 /* 1-1 MSI-X entry assignment */
12869 for (i = 0; i < total; i++)
12870 entries[i].msix.entry = i;
12871
12872 /* ask for MSI-X interrupts */
12873 request = total;
12874 request_msix(dd, &request, entries);
12875
12876 if (request == 0) {
12877 /* using INTx */
12878 /* dd->num_msix_entries already zero */
12879 kfree(entries);
12880 single_interrupt = 1;
12881 dd_dev_err(dd, "MSI-X failed, using INTx interrupts\n");
12882 } else {
12883 /* using MSI-X */
12884 dd->num_msix_entries = request;
12885 dd->msix_entries = entries;
12886
12887 if (request != total) {
12888 /* using MSI-X, with reduced interrupts */
12889 dd_dev_err(
12890 dd,
12891 "cannot handle reduced interrupt case, want %u, got %u\n",
12892 total, request);
12893 ret = -EINVAL;
12894 goto fail;
12895 }
12896 dd_dev_info(dd, "%u MSI-X interrupts allocated\n", total);
12897 }
12898
12899 /* mask all interrupts */
12900 set_intr_state(dd, 0);
12901 /* clear all pending interrupts */
12902 clear_all_interrupts(dd);
12903
12904 /* reset general handler mask, chip MSI-X mappings */
12905 reset_interrupts(dd);
12906
12907 if (single_interrupt)
12908 ret = request_intx_irq(dd);
12909 else
12910 ret = request_msix_irqs(dd);
12911 if (ret)
12912 goto fail;
12913
12914 return 0;
12915
12916fail:
12917 clean_up_interrupts(dd);
12918 return ret;
12919}
12920
12921/*
12922 * Set up context values in dd. Sets:
12923 *
12924 * num_rcv_contexts - number of contexts being used
12925 * n_krcv_queues - number of kernel contexts
12926 * first_user_ctxt - first non-kernel context in array of contexts
12927 * freectxts - number of free user contexts
12928 * num_send_contexts - number of PIO send contexts being used
12929 */
12930static int set_up_context_variables(struct hfi1_devdata *dd)
12931{
Harish Chegondi429b6a72016-08-31 07:24:40 -070012932 unsigned long num_kernel_contexts;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012933 int total_contexts;
12934 int ret;
12935 unsigned ngroups;
Dean Luick8f000f72016-04-12 11:32:06 -070012936 int qos_rmt_count;
12937 int user_rmt_reduced;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012938
12939 /*
Dean Luick33a9eb52016-04-12 10:50:22 -070012940 * Kernel receive contexts:
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050012941 * - Context 0 - control context (VL15/multicast/error)
Dean Luick33a9eb52016-04-12 10:50:22 -070012942 * - Context 1 - first kernel context
12943 * - Context 2 - second kernel context
12944 * ...
Mike Marciniszyn77241052015-07-30 15:17:43 -040012945 */
12946 if (n_krcvqs)
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050012947 /*
Dean Luick33a9eb52016-04-12 10:50:22 -070012948 * n_krcvqs is the sum of module parameter kernel receive
12949 * contexts, krcvqs[]. It does not include the control
12950 * context, so add that.
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050012951 */
Dean Luick33a9eb52016-04-12 10:50:22 -070012952 num_kernel_contexts = n_krcvqs + 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012953 else
Harish Chegondi8784ac02016-07-25 13:38:50 -070012954 num_kernel_contexts = DEFAULT_KRCVQS + 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012955 /*
12956 * Every kernel receive context needs an ACK send context.
12957 * one send context is allocated for each VL{0-7} and VL15
12958 */
12959 if (num_kernel_contexts > (dd->chip_send_contexts - num_vls - 1)) {
12960 dd_dev_err(dd,
Harish Chegondi429b6a72016-08-31 07:24:40 -070012961 "Reducing # kernel rcv contexts to: %d, from %lu\n",
Mike Marciniszyn77241052015-07-30 15:17:43 -040012962 (int)(dd->chip_send_contexts - num_vls - 1),
Harish Chegondi429b6a72016-08-31 07:24:40 -070012963 num_kernel_contexts);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012964 num_kernel_contexts = dd->chip_send_contexts - num_vls - 1;
12965 }
12966 /*
Jubin John0852d242016-04-12 11:30:08 -070012967 * User contexts:
12968 * - default to 1 user context per real (non-HT) CPU core if
12969 * num_user_contexts is negative
Mike Marciniszyn77241052015-07-30 15:17:43 -040012970 */
Sebastian Sanchez2ce6bf22015-12-11 08:44:48 -050012971 if (num_user_contexts < 0)
Jubin John0852d242016-04-12 11:30:08 -070012972 num_user_contexts =
Dennis Dalessandro41973442016-07-25 07:52:36 -070012973 cpumask_weight(&node_affinity.real_cpu_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012974
12975 total_contexts = num_kernel_contexts + num_user_contexts;
12976
12977 /*
12978 * Adjust the counts given a global max.
12979 */
12980 if (total_contexts > dd->chip_rcv_contexts) {
12981 dd_dev_err(dd,
12982 "Reducing # user receive contexts to: %d, from %d\n",
12983 (int)(dd->chip_rcv_contexts - num_kernel_contexts),
12984 (int)num_user_contexts);
12985 num_user_contexts = dd->chip_rcv_contexts - num_kernel_contexts;
12986 /* recalculate */
12987 total_contexts = num_kernel_contexts + num_user_contexts;
12988 }
12989
Dean Luick8f000f72016-04-12 11:32:06 -070012990 /* each user context requires an entry in the RMT */
12991 qos_rmt_count = qos_rmt_entries(dd, NULL, NULL);
12992 if (qos_rmt_count + num_user_contexts > NUM_MAP_ENTRIES) {
12993 user_rmt_reduced = NUM_MAP_ENTRIES - qos_rmt_count;
12994 dd_dev_err(dd,
12995 "RMT size is reducing the number of user receive contexts from %d to %d\n",
12996 (int)num_user_contexts,
12997 user_rmt_reduced);
12998 /* recalculate */
12999 num_user_contexts = user_rmt_reduced;
13000 total_contexts = num_kernel_contexts + num_user_contexts;
13001 }
13002
Mike Marciniszyn77241052015-07-30 15:17:43 -040013003 /* the first N are kernel contexts, the rest are user contexts */
13004 dd->num_rcv_contexts = total_contexts;
13005 dd->n_krcv_queues = num_kernel_contexts;
13006 dd->first_user_ctxt = num_kernel_contexts;
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -080013007 dd->num_user_contexts = num_user_contexts;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013008 dd->freectxts = num_user_contexts;
13009 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013010 "rcv contexts: chip %d, used %d (kernel %d, user %d)\n",
13011 (int)dd->chip_rcv_contexts,
13012 (int)dd->num_rcv_contexts,
13013 (int)dd->n_krcv_queues,
13014 (int)dd->num_rcv_contexts - dd->n_krcv_queues);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013015
13016 /*
13017 * Receive array allocation:
13018 * All RcvArray entries are divided into groups of 8. This
13019 * is required by the hardware and will speed up writes to
13020 * consecutive entries by using write-combining of the entire
13021 * cacheline.
13022 *
13023 * The number of groups are evenly divided among all contexts.
13024 * any left over groups will be given to the first N user
13025 * contexts.
13026 */
13027 dd->rcv_entries.group_size = RCV_INCREMENT;
13028 ngroups = dd->chip_rcv_array_count / dd->rcv_entries.group_size;
13029 dd->rcv_entries.ngroups = ngroups / dd->num_rcv_contexts;
13030 dd->rcv_entries.nctxt_extra = ngroups -
13031 (dd->num_rcv_contexts * dd->rcv_entries.ngroups);
13032 dd_dev_info(dd, "RcvArray groups %u, ctxts extra %u\n",
13033 dd->rcv_entries.ngroups,
13034 dd->rcv_entries.nctxt_extra);
13035 if (dd->rcv_entries.ngroups * dd->rcv_entries.group_size >
13036 MAX_EAGER_ENTRIES * 2) {
13037 dd->rcv_entries.ngroups = (MAX_EAGER_ENTRIES * 2) /
13038 dd->rcv_entries.group_size;
13039 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013040 "RcvArray group count too high, change to %u\n",
13041 dd->rcv_entries.ngroups);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013042 dd->rcv_entries.nctxt_extra = 0;
13043 }
13044 /*
13045 * PIO send contexts
13046 */
13047 ret = init_sc_pools_and_sizes(dd);
13048 if (ret >= 0) { /* success */
13049 dd->num_send_contexts = ret;
13050 dd_dev_info(
13051 dd,
Jianxin Xiong44306f12016-04-12 11:30:28 -070013052 "send contexts: chip %d, used %d (kernel %d, ack %d, user %d, vl15 %d)\n",
Mike Marciniszyn77241052015-07-30 15:17:43 -040013053 dd->chip_send_contexts,
13054 dd->num_send_contexts,
13055 dd->sc_sizes[SC_KERNEL].count,
13056 dd->sc_sizes[SC_ACK].count,
Jianxin Xiong44306f12016-04-12 11:30:28 -070013057 dd->sc_sizes[SC_USER].count,
13058 dd->sc_sizes[SC_VL15].count);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013059 ret = 0; /* success */
13060 }
13061
13062 return ret;
13063}
13064
13065/*
13066 * Set the device/port partition key table. The MAD code
13067 * will ensure that, at least, the partial management
13068 * partition key is present in the table.
13069 */
13070static void set_partition_keys(struct hfi1_pportdata *ppd)
13071{
13072 struct hfi1_devdata *dd = ppd->dd;
13073 u64 reg = 0;
13074 int i;
13075
13076 dd_dev_info(dd, "Setting partition keys\n");
13077 for (i = 0; i < hfi1_get_npkeys(dd); i++) {
13078 reg |= (ppd->pkeys[i] &
13079 RCV_PARTITION_KEY_PARTITION_KEY_A_MASK) <<
13080 ((i % 4) *
13081 RCV_PARTITION_KEY_PARTITION_KEY_B_SHIFT);
13082 /* Each register holds 4 PKey values. */
13083 if ((i % 4) == 3) {
13084 write_csr(dd, RCV_PARTITION_KEY +
13085 ((i - 3) * 2), reg);
13086 reg = 0;
13087 }
13088 }
13089
13090 /* Always enable HW pkeys check when pkeys table is set */
13091 add_rcvctrl(dd, RCV_CTRL_RCV_PARTITION_KEY_ENABLE_SMASK);
13092}
13093
13094/*
13095 * These CSRs and memories are uninitialized on reset and must be
13096 * written before reading to set the ECC/parity bits.
13097 *
13098 * NOTE: All user context CSRs that are not mmaped write-only
13099 * (e.g. the TID flows) must be initialized even if the driver never
13100 * reads them.
13101 */
13102static void write_uninitialized_csrs_and_memories(struct hfi1_devdata *dd)
13103{
13104 int i, j;
13105
13106 /* CceIntMap */
13107 for (i = 0; i < CCE_NUM_INT_MAP_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080013108 write_csr(dd, CCE_INT_MAP + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013109
13110 /* SendCtxtCreditReturnAddr */
13111 for (i = 0; i < dd->chip_send_contexts; i++)
13112 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_RETURN_ADDR, 0);
13113
13114 /* PIO Send buffers */
13115 /* SDMA Send buffers */
Jubin John4d114fd2016-02-14 20:21:43 -080013116 /*
13117 * These are not normally read, and (presently) have no method
13118 * to be read, so are not pre-initialized
13119 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013120
13121 /* RcvHdrAddr */
13122 /* RcvHdrTailAddr */
13123 /* RcvTidFlowTable */
13124 for (i = 0; i < dd->chip_rcv_contexts; i++) {
13125 write_kctxt_csr(dd, i, RCV_HDR_ADDR, 0);
13126 write_kctxt_csr(dd, i, RCV_HDR_TAIL_ADDR, 0);
13127 for (j = 0; j < RXE_NUM_TID_FLOWS; j++)
Jubin John8638b772016-02-14 20:19:24 -080013128 write_uctxt_csr(dd, i, RCV_TID_FLOW_TABLE + (8 * j), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013129 }
13130
13131 /* RcvArray */
13132 for (i = 0; i < dd->chip_rcv_array_count; i++)
Jubin John8638b772016-02-14 20:19:24 -080013133 write_csr(dd, RCV_ARRAY + (8 * i),
Jubin John17fb4f22016-02-14 20:21:52 -080013134 RCV_ARRAY_RT_WRITE_ENABLE_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013135
13136 /* RcvQPMapTable */
13137 for (i = 0; i < 32; i++)
13138 write_csr(dd, RCV_QP_MAP_TABLE + (8 * i), 0);
13139}
13140
13141/*
13142 * Use the ctrl_bits in CceCtrl to clear the status_bits in CceStatus.
13143 */
13144static void clear_cce_status(struct hfi1_devdata *dd, u64 status_bits,
13145 u64 ctrl_bits)
13146{
13147 unsigned long timeout;
13148 u64 reg;
13149
13150 /* is the condition present? */
13151 reg = read_csr(dd, CCE_STATUS);
13152 if ((reg & status_bits) == 0)
13153 return;
13154
13155 /* clear the condition */
13156 write_csr(dd, CCE_CTRL, ctrl_bits);
13157
13158 /* wait for the condition to clear */
13159 timeout = jiffies + msecs_to_jiffies(CCE_STATUS_TIMEOUT);
13160 while (1) {
13161 reg = read_csr(dd, CCE_STATUS);
13162 if ((reg & status_bits) == 0)
13163 return;
13164 if (time_after(jiffies, timeout)) {
13165 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013166 "Timeout waiting for CceStatus to clear bits 0x%llx, remaining 0x%llx\n",
13167 status_bits, reg & status_bits);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013168 return;
13169 }
13170 udelay(1);
13171 }
13172}
13173
13174/* set CCE CSRs to chip reset defaults */
13175static void reset_cce_csrs(struct hfi1_devdata *dd)
13176{
13177 int i;
13178
13179 /* CCE_REVISION read-only */
13180 /* CCE_REVISION2 read-only */
13181 /* CCE_CTRL - bits clear automatically */
13182 /* CCE_STATUS read-only, use CceCtrl to clear */
13183 clear_cce_status(dd, ALL_FROZE, CCE_CTRL_SPC_UNFREEZE_SMASK);
13184 clear_cce_status(dd, ALL_TXE_PAUSE, CCE_CTRL_TXE_RESUME_SMASK);
13185 clear_cce_status(dd, ALL_RXE_PAUSE, CCE_CTRL_RXE_RESUME_SMASK);
13186 for (i = 0; i < CCE_NUM_SCRATCH; i++)
13187 write_csr(dd, CCE_SCRATCH + (8 * i), 0);
13188 /* CCE_ERR_STATUS read-only */
13189 write_csr(dd, CCE_ERR_MASK, 0);
13190 write_csr(dd, CCE_ERR_CLEAR, ~0ull);
13191 /* CCE_ERR_FORCE leave alone */
13192 for (i = 0; i < CCE_NUM_32_BIT_COUNTERS; i++)
13193 write_csr(dd, CCE_COUNTER_ARRAY32 + (8 * i), 0);
13194 write_csr(dd, CCE_DC_CTRL, CCE_DC_CTRL_RESETCSR);
13195 /* CCE_PCIE_CTRL leave alone */
13196 for (i = 0; i < CCE_NUM_MSIX_VECTORS; i++) {
13197 write_csr(dd, CCE_MSIX_TABLE_LOWER + (8 * i), 0);
13198 write_csr(dd, CCE_MSIX_TABLE_UPPER + (8 * i),
Jubin John17fb4f22016-02-14 20:21:52 -080013199 CCE_MSIX_TABLE_UPPER_RESETCSR);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013200 }
13201 for (i = 0; i < CCE_NUM_MSIX_PBAS; i++) {
13202 /* CCE_MSIX_PBA read-only */
13203 write_csr(dd, CCE_MSIX_INT_GRANTED, ~0ull);
13204 write_csr(dd, CCE_MSIX_VEC_CLR_WITHOUT_INT, ~0ull);
13205 }
13206 for (i = 0; i < CCE_NUM_INT_MAP_CSRS; i++)
13207 write_csr(dd, CCE_INT_MAP, 0);
13208 for (i = 0; i < CCE_NUM_INT_CSRS; i++) {
13209 /* CCE_INT_STATUS read-only */
13210 write_csr(dd, CCE_INT_MASK + (8 * i), 0);
13211 write_csr(dd, CCE_INT_CLEAR + (8 * i), ~0ull);
13212 /* CCE_INT_FORCE leave alone */
13213 /* CCE_INT_BLOCKED read-only */
13214 }
13215 for (i = 0; i < CCE_NUM_32_BIT_INT_COUNTERS; i++)
13216 write_csr(dd, CCE_INT_COUNTER_ARRAY32 + (8 * i), 0);
13217}
13218
Mike Marciniszyn77241052015-07-30 15:17:43 -040013219/* set MISC CSRs to chip reset defaults */
13220static void reset_misc_csrs(struct hfi1_devdata *dd)
13221{
13222 int i;
13223
13224 for (i = 0; i < 32; i++) {
13225 write_csr(dd, MISC_CFG_RSA_R2 + (8 * i), 0);
13226 write_csr(dd, MISC_CFG_RSA_SIGNATURE + (8 * i), 0);
13227 write_csr(dd, MISC_CFG_RSA_MODULUS + (8 * i), 0);
13228 }
Jubin John4d114fd2016-02-14 20:21:43 -080013229 /*
13230 * MISC_CFG_SHA_PRELOAD leave alone - always reads 0 and can
13231 * only be written 128-byte chunks
13232 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013233 /* init RSA engine to clear lingering errors */
13234 write_csr(dd, MISC_CFG_RSA_CMD, 1);
13235 write_csr(dd, MISC_CFG_RSA_MU, 0);
13236 write_csr(dd, MISC_CFG_FW_CTRL, 0);
13237 /* MISC_STS_8051_DIGEST read-only */
13238 /* MISC_STS_SBM_DIGEST read-only */
13239 /* MISC_STS_PCIE_DIGEST read-only */
13240 /* MISC_STS_FAB_DIGEST read-only */
13241 /* MISC_ERR_STATUS read-only */
13242 write_csr(dd, MISC_ERR_MASK, 0);
13243 write_csr(dd, MISC_ERR_CLEAR, ~0ull);
13244 /* MISC_ERR_FORCE leave alone */
13245}
13246
13247/* set TXE CSRs to chip reset defaults */
13248static void reset_txe_csrs(struct hfi1_devdata *dd)
13249{
13250 int i;
13251
13252 /*
13253 * TXE Kernel CSRs
13254 */
13255 write_csr(dd, SEND_CTRL, 0);
13256 __cm_reset(dd, 0); /* reset CM internal state */
13257 /* SEND_CONTEXTS read-only */
13258 /* SEND_DMA_ENGINES read-only */
13259 /* SEND_PIO_MEM_SIZE read-only */
13260 /* SEND_DMA_MEM_SIZE read-only */
13261 write_csr(dd, SEND_HIGH_PRIORITY_LIMIT, 0);
13262 pio_reset_all(dd); /* SEND_PIO_INIT_CTXT */
13263 /* SEND_PIO_ERR_STATUS read-only */
13264 write_csr(dd, SEND_PIO_ERR_MASK, 0);
13265 write_csr(dd, SEND_PIO_ERR_CLEAR, ~0ull);
13266 /* SEND_PIO_ERR_FORCE leave alone */
13267 /* SEND_DMA_ERR_STATUS read-only */
13268 write_csr(dd, SEND_DMA_ERR_MASK, 0);
13269 write_csr(dd, SEND_DMA_ERR_CLEAR, ~0ull);
13270 /* SEND_DMA_ERR_FORCE leave alone */
13271 /* SEND_EGRESS_ERR_STATUS read-only */
13272 write_csr(dd, SEND_EGRESS_ERR_MASK, 0);
13273 write_csr(dd, SEND_EGRESS_ERR_CLEAR, ~0ull);
13274 /* SEND_EGRESS_ERR_FORCE leave alone */
13275 write_csr(dd, SEND_BTH_QP, 0);
13276 write_csr(dd, SEND_STATIC_RATE_CONTROL, 0);
13277 write_csr(dd, SEND_SC2VLT0, 0);
13278 write_csr(dd, SEND_SC2VLT1, 0);
13279 write_csr(dd, SEND_SC2VLT2, 0);
13280 write_csr(dd, SEND_SC2VLT3, 0);
13281 write_csr(dd, SEND_LEN_CHECK0, 0);
13282 write_csr(dd, SEND_LEN_CHECK1, 0);
13283 /* SEND_ERR_STATUS read-only */
13284 write_csr(dd, SEND_ERR_MASK, 0);
13285 write_csr(dd, SEND_ERR_CLEAR, ~0ull);
13286 /* SEND_ERR_FORCE read-only */
13287 for (i = 0; i < VL_ARB_LOW_PRIO_TABLE_SIZE; i++)
Jubin John8638b772016-02-14 20:19:24 -080013288 write_csr(dd, SEND_LOW_PRIORITY_LIST + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013289 for (i = 0; i < VL_ARB_HIGH_PRIO_TABLE_SIZE; i++)
Jubin John8638b772016-02-14 20:19:24 -080013290 write_csr(dd, SEND_HIGH_PRIORITY_LIST + (8 * i), 0);
13291 for (i = 0; i < dd->chip_send_contexts / NUM_CONTEXTS_PER_SET; i++)
13292 write_csr(dd, SEND_CONTEXT_SET_CTRL + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013293 for (i = 0; i < TXE_NUM_32_BIT_COUNTER; i++)
Jubin John8638b772016-02-14 20:19:24 -080013294 write_csr(dd, SEND_COUNTER_ARRAY32 + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013295 for (i = 0; i < TXE_NUM_64_BIT_COUNTER; i++)
Jubin John8638b772016-02-14 20:19:24 -080013296 write_csr(dd, SEND_COUNTER_ARRAY64 + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013297 write_csr(dd, SEND_CM_CTRL, SEND_CM_CTRL_RESETCSR);
Jubin John17fb4f22016-02-14 20:21:52 -080013298 write_csr(dd, SEND_CM_GLOBAL_CREDIT, SEND_CM_GLOBAL_CREDIT_RESETCSR);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013299 /* SEND_CM_CREDIT_USED_STATUS read-only */
13300 write_csr(dd, SEND_CM_TIMER_CTRL, 0);
13301 write_csr(dd, SEND_CM_LOCAL_AU_TABLE0_TO3, 0);
13302 write_csr(dd, SEND_CM_LOCAL_AU_TABLE4_TO7, 0);
13303 write_csr(dd, SEND_CM_REMOTE_AU_TABLE0_TO3, 0);
13304 write_csr(dd, SEND_CM_REMOTE_AU_TABLE4_TO7, 0);
13305 for (i = 0; i < TXE_NUM_DATA_VL; i++)
Jubin John8638b772016-02-14 20:19:24 -080013306 write_csr(dd, SEND_CM_CREDIT_VL + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013307 write_csr(dd, SEND_CM_CREDIT_VL15, 0);
13308 /* SEND_CM_CREDIT_USED_VL read-only */
13309 /* SEND_CM_CREDIT_USED_VL15 read-only */
13310 /* SEND_EGRESS_CTXT_STATUS read-only */
13311 /* SEND_EGRESS_SEND_DMA_STATUS read-only */
13312 write_csr(dd, SEND_EGRESS_ERR_INFO, ~0ull);
13313 /* SEND_EGRESS_ERR_INFO read-only */
13314 /* SEND_EGRESS_ERR_SOURCE read-only */
13315
13316 /*
13317 * TXE Per-Context CSRs
13318 */
13319 for (i = 0; i < dd->chip_send_contexts; i++) {
13320 write_kctxt_csr(dd, i, SEND_CTXT_CTRL, 0);
13321 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_CTRL, 0);
13322 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_RETURN_ADDR, 0);
13323 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_FORCE, 0);
13324 write_kctxt_csr(dd, i, SEND_CTXT_ERR_MASK, 0);
13325 write_kctxt_csr(dd, i, SEND_CTXT_ERR_CLEAR, ~0ull);
13326 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_ENABLE, 0);
13327 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_VL, 0);
13328 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_JOB_KEY, 0);
13329 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_PARTITION_KEY, 0);
13330 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_SLID, 0);
13331 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_OPCODE, 0);
13332 }
13333
13334 /*
13335 * TXE Per-SDMA CSRs
13336 */
13337 for (i = 0; i < dd->chip_sdma_engines; i++) {
13338 write_kctxt_csr(dd, i, SEND_DMA_CTRL, 0);
13339 /* SEND_DMA_STATUS read-only */
13340 write_kctxt_csr(dd, i, SEND_DMA_BASE_ADDR, 0);
13341 write_kctxt_csr(dd, i, SEND_DMA_LEN_GEN, 0);
13342 write_kctxt_csr(dd, i, SEND_DMA_TAIL, 0);
13343 /* SEND_DMA_HEAD read-only */
13344 write_kctxt_csr(dd, i, SEND_DMA_HEAD_ADDR, 0);
13345 write_kctxt_csr(dd, i, SEND_DMA_PRIORITY_THLD, 0);
13346 /* SEND_DMA_IDLE_CNT read-only */
13347 write_kctxt_csr(dd, i, SEND_DMA_RELOAD_CNT, 0);
13348 write_kctxt_csr(dd, i, SEND_DMA_DESC_CNT, 0);
13349 /* SEND_DMA_DESC_FETCHED_CNT read-only */
13350 /* SEND_DMA_ENG_ERR_STATUS read-only */
13351 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_MASK, 0);
13352 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_CLEAR, ~0ull);
13353 /* SEND_DMA_ENG_ERR_FORCE leave alone */
13354 write_kctxt_csr(dd, i, SEND_DMA_CHECK_ENABLE, 0);
13355 write_kctxt_csr(dd, i, SEND_DMA_CHECK_VL, 0);
13356 write_kctxt_csr(dd, i, SEND_DMA_CHECK_JOB_KEY, 0);
13357 write_kctxt_csr(dd, i, SEND_DMA_CHECK_PARTITION_KEY, 0);
13358 write_kctxt_csr(dd, i, SEND_DMA_CHECK_SLID, 0);
13359 write_kctxt_csr(dd, i, SEND_DMA_CHECK_OPCODE, 0);
13360 write_kctxt_csr(dd, i, SEND_DMA_MEMORY, 0);
13361 }
13362}
13363
13364/*
13365 * Expect on entry:
13366 * o Packet ingress is disabled, i.e. RcvCtrl.RcvPortEnable == 0
13367 */
13368static void init_rbufs(struct hfi1_devdata *dd)
13369{
13370 u64 reg;
13371 int count;
13372
13373 /*
13374 * Wait for DMA to stop: RxRbufPktPending and RxPktInProgress are
13375 * clear.
13376 */
13377 count = 0;
13378 while (1) {
13379 reg = read_csr(dd, RCV_STATUS);
13380 if ((reg & (RCV_STATUS_RX_RBUF_PKT_PENDING_SMASK
13381 | RCV_STATUS_RX_PKT_IN_PROGRESS_SMASK)) == 0)
13382 break;
13383 /*
13384 * Give up after 1ms - maximum wait time.
13385 *
13386 * RBuf size is 148KiB. Slowest possible is PCIe Gen1 x1 at
13387 * 250MB/s bandwidth. Lower rate to 66% for overhead to get:
13388 * 148 KB / (66% * 250MB/s) = 920us
13389 */
13390 if (count++ > 500) {
13391 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013392 "%s: in-progress DMA not clearing: RcvStatus 0x%llx, continuing\n",
13393 __func__, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013394 break;
13395 }
13396 udelay(2); /* do not busy-wait the CSR */
13397 }
13398
13399 /* start the init - expect RcvCtrl to be 0 */
13400 write_csr(dd, RCV_CTRL, RCV_CTRL_RX_RBUF_INIT_SMASK);
13401
13402 /*
13403 * Read to force the write of Rcvtrl.RxRbufInit. There is a brief
13404 * period after the write before RcvStatus.RxRbufInitDone is valid.
13405 * The delay in the first run through the loop below is sufficient and
13406 * required before the first read of RcvStatus.RxRbufInintDone.
13407 */
13408 read_csr(dd, RCV_CTRL);
13409
13410 /* wait for the init to finish */
13411 count = 0;
13412 while (1) {
13413 /* delay is required first time through - see above */
13414 udelay(2); /* do not busy-wait the CSR */
13415 reg = read_csr(dd, RCV_STATUS);
13416 if (reg & (RCV_STATUS_RX_RBUF_INIT_DONE_SMASK))
13417 break;
13418
13419 /* give up after 100us - slowest possible at 33MHz is 73us */
13420 if (count++ > 50) {
13421 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013422 "%s: RcvStatus.RxRbufInit not set, continuing\n",
13423 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013424 break;
13425 }
13426 }
13427}
13428
13429/* set RXE CSRs to chip reset defaults */
13430static void reset_rxe_csrs(struct hfi1_devdata *dd)
13431{
13432 int i, j;
13433
13434 /*
13435 * RXE Kernel CSRs
13436 */
13437 write_csr(dd, RCV_CTRL, 0);
13438 init_rbufs(dd);
13439 /* RCV_STATUS read-only */
13440 /* RCV_CONTEXTS read-only */
13441 /* RCV_ARRAY_CNT read-only */
13442 /* RCV_BUF_SIZE read-only */
13443 write_csr(dd, RCV_BTH_QP, 0);
13444 write_csr(dd, RCV_MULTICAST, 0);
13445 write_csr(dd, RCV_BYPASS, 0);
13446 write_csr(dd, RCV_VL15, 0);
13447 /* this is a clear-down */
13448 write_csr(dd, RCV_ERR_INFO,
Jubin John17fb4f22016-02-14 20:21:52 -080013449 RCV_ERR_INFO_RCV_EXCESS_BUFFER_OVERRUN_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013450 /* RCV_ERR_STATUS read-only */
13451 write_csr(dd, RCV_ERR_MASK, 0);
13452 write_csr(dd, RCV_ERR_CLEAR, ~0ull);
13453 /* RCV_ERR_FORCE leave alone */
13454 for (i = 0; i < 32; i++)
13455 write_csr(dd, RCV_QP_MAP_TABLE + (8 * i), 0);
13456 for (i = 0; i < 4; i++)
13457 write_csr(dd, RCV_PARTITION_KEY + (8 * i), 0);
13458 for (i = 0; i < RXE_NUM_32_BIT_COUNTERS; i++)
13459 write_csr(dd, RCV_COUNTER_ARRAY32 + (8 * i), 0);
13460 for (i = 0; i < RXE_NUM_64_BIT_COUNTERS; i++)
13461 write_csr(dd, RCV_COUNTER_ARRAY64 + (8 * i), 0);
13462 for (i = 0; i < RXE_NUM_RSM_INSTANCES; i++) {
13463 write_csr(dd, RCV_RSM_CFG + (8 * i), 0);
13464 write_csr(dd, RCV_RSM_SELECT + (8 * i), 0);
13465 write_csr(dd, RCV_RSM_MATCH + (8 * i), 0);
13466 }
13467 for (i = 0; i < 32; i++)
13468 write_csr(dd, RCV_RSM_MAP_TABLE + (8 * i), 0);
13469
13470 /*
13471 * RXE Kernel and User Per-Context CSRs
13472 */
13473 for (i = 0; i < dd->chip_rcv_contexts; i++) {
13474 /* kernel */
13475 write_kctxt_csr(dd, i, RCV_CTXT_CTRL, 0);
13476 /* RCV_CTXT_STATUS read-only */
13477 write_kctxt_csr(dd, i, RCV_EGR_CTRL, 0);
13478 write_kctxt_csr(dd, i, RCV_TID_CTRL, 0);
13479 write_kctxt_csr(dd, i, RCV_KEY_CTRL, 0);
13480 write_kctxt_csr(dd, i, RCV_HDR_ADDR, 0);
13481 write_kctxt_csr(dd, i, RCV_HDR_CNT, 0);
13482 write_kctxt_csr(dd, i, RCV_HDR_ENT_SIZE, 0);
13483 write_kctxt_csr(dd, i, RCV_HDR_SIZE, 0);
13484 write_kctxt_csr(dd, i, RCV_HDR_TAIL_ADDR, 0);
13485 write_kctxt_csr(dd, i, RCV_AVAIL_TIME_OUT, 0);
13486 write_kctxt_csr(dd, i, RCV_HDR_OVFL_CNT, 0);
13487
13488 /* user */
13489 /* RCV_HDR_TAIL read-only */
13490 write_uctxt_csr(dd, i, RCV_HDR_HEAD, 0);
13491 /* RCV_EGR_INDEX_TAIL read-only */
13492 write_uctxt_csr(dd, i, RCV_EGR_INDEX_HEAD, 0);
13493 /* RCV_EGR_OFFSET_TAIL read-only */
13494 for (j = 0; j < RXE_NUM_TID_FLOWS; j++) {
Jubin John17fb4f22016-02-14 20:21:52 -080013495 write_uctxt_csr(dd, i,
13496 RCV_TID_FLOW_TABLE + (8 * j), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013497 }
13498 }
13499}
13500
13501/*
13502 * Set sc2vl tables.
13503 *
13504 * They power on to zeros, so to avoid send context errors
13505 * they need to be set:
13506 *
13507 * SC 0-7 -> VL 0-7 (respectively)
13508 * SC 15 -> VL 15
13509 * otherwise
13510 * -> VL 0
13511 */
13512static void init_sc2vl_tables(struct hfi1_devdata *dd)
13513{
13514 int i;
13515 /* init per architecture spec, constrained by hardware capability */
13516
13517 /* HFI maps sent packets */
13518 write_csr(dd, SEND_SC2VLT0, SC2VL_VAL(
13519 0,
13520 0, 0, 1, 1,
13521 2, 2, 3, 3,
13522 4, 4, 5, 5,
13523 6, 6, 7, 7));
13524 write_csr(dd, SEND_SC2VLT1, SC2VL_VAL(
13525 1,
13526 8, 0, 9, 0,
13527 10, 0, 11, 0,
13528 12, 0, 13, 0,
13529 14, 0, 15, 15));
13530 write_csr(dd, SEND_SC2VLT2, SC2VL_VAL(
13531 2,
13532 16, 0, 17, 0,
13533 18, 0, 19, 0,
13534 20, 0, 21, 0,
13535 22, 0, 23, 0));
13536 write_csr(dd, SEND_SC2VLT3, SC2VL_VAL(
13537 3,
13538 24, 0, 25, 0,
13539 26, 0, 27, 0,
13540 28, 0, 29, 0,
13541 30, 0, 31, 0));
13542
13543 /* DC maps received packets */
13544 write_csr(dd, DCC_CFG_SC_VL_TABLE_15_0, DC_SC_VL_VAL(
13545 15_0,
13546 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7,
13547 8, 0, 9, 0, 10, 0, 11, 0, 12, 0, 13, 0, 14, 0, 15, 15));
13548 write_csr(dd, DCC_CFG_SC_VL_TABLE_31_16, DC_SC_VL_VAL(
13549 31_16,
13550 16, 0, 17, 0, 18, 0, 19, 0, 20, 0, 21, 0, 22, 0, 23, 0,
13551 24, 0, 25, 0, 26, 0, 27, 0, 28, 0, 29, 0, 30, 0, 31, 0));
13552
13553 /* initialize the cached sc2vl values consistently with h/w */
13554 for (i = 0; i < 32; i++) {
13555 if (i < 8 || i == 15)
13556 *((u8 *)(dd->sc2vl) + i) = (u8)i;
13557 else
13558 *((u8 *)(dd->sc2vl) + i) = 0;
13559 }
13560}
13561
13562/*
13563 * Read chip sizes and then reset parts to sane, disabled, values. We cannot
13564 * depend on the chip going through a power-on reset - a driver may be loaded
13565 * and unloaded many times.
13566 *
13567 * Do not write any CSR values to the chip in this routine - there may be
13568 * a reset following the (possible) FLR in this routine.
13569 *
13570 */
13571static void init_chip(struct hfi1_devdata *dd)
13572{
13573 int i;
13574
13575 /*
13576 * Put the HFI CSRs in a known state.
13577 * Combine this with a DC reset.
13578 *
13579 * Stop the device from doing anything while we do a
13580 * reset. We know there are no other active users of
13581 * the device since we are now in charge. Turn off
13582 * off all outbound and inbound traffic and make sure
13583 * the device does not generate any interrupts.
13584 */
13585
13586 /* disable send contexts and SDMA engines */
13587 write_csr(dd, SEND_CTRL, 0);
13588 for (i = 0; i < dd->chip_send_contexts; i++)
13589 write_kctxt_csr(dd, i, SEND_CTXT_CTRL, 0);
13590 for (i = 0; i < dd->chip_sdma_engines; i++)
13591 write_kctxt_csr(dd, i, SEND_DMA_CTRL, 0);
13592 /* disable port (turn off RXE inbound traffic) and contexts */
13593 write_csr(dd, RCV_CTRL, 0);
13594 for (i = 0; i < dd->chip_rcv_contexts; i++)
13595 write_csr(dd, RCV_CTXT_CTRL, 0);
13596 /* mask all interrupt sources */
13597 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080013598 write_csr(dd, CCE_INT_MASK + (8 * i), 0ull);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013599
13600 /*
13601 * DC Reset: do a full DC reset before the register clear.
13602 * A recommended length of time to hold is one CSR read,
13603 * so reread the CceDcCtrl. Then, hold the DC in reset
13604 * across the clear.
13605 */
13606 write_csr(dd, CCE_DC_CTRL, CCE_DC_CTRL_DC_RESET_SMASK);
Jubin John50e5dcb2016-02-14 20:19:41 -080013607 (void)read_csr(dd, CCE_DC_CTRL);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013608
13609 if (use_flr) {
13610 /*
13611 * A FLR will reset the SPC core and part of the PCIe.
13612 * The parts that need to be restored have already been
13613 * saved.
13614 */
13615 dd_dev_info(dd, "Resetting CSRs with FLR\n");
13616
13617 /* do the FLR, the DC reset will remain */
13618 hfi1_pcie_flr(dd);
13619
13620 /* restore command and BARs */
13621 restore_pci_variables(dd);
13622
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050013623 if (is_ax(dd)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013624 dd_dev_info(dd, "Resetting CSRs with FLR\n");
13625 hfi1_pcie_flr(dd);
13626 restore_pci_variables(dd);
13627 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040013628 } else {
13629 dd_dev_info(dd, "Resetting CSRs with writes\n");
13630 reset_cce_csrs(dd);
13631 reset_txe_csrs(dd);
13632 reset_rxe_csrs(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013633 reset_misc_csrs(dd);
13634 }
13635 /* clear the DC reset */
13636 write_csr(dd, CCE_DC_CTRL, 0);
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040013637
Mike Marciniszyn77241052015-07-30 15:17:43 -040013638 /* Set the LED off */
Sebastian Sanchez773d04512016-02-09 14:29:40 -080013639 setextled(dd, 0);
13640
Mike Marciniszyn77241052015-07-30 15:17:43 -040013641 /*
13642 * Clear the QSFP reset.
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050013643 * An FLR enforces a 0 on all out pins. The driver does not touch
Mike Marciniszyn77241052015-07-30 15:17:43 -040013644 * ASIC_QSFPn_OUT otherwise. This leaves RESET_N low and
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050013645 * anything plugged constantly in reset, if it pays attention
Mike Marciniszyn77241052015-07-30 15:17:43 -040013646 * to RESET_N.
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050013647 * Prime examples of this are optical cables. Set all pins high.
Mike Marciniszyn77241052015-07-30 15:17:43 -040013648 * I2CCLK and I2CDAT will change per direction, and INT_N and
13649 * MODPRS_N are input only and their value is ignored.
13650 */
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050013651 write_csr(dd, ASIC_QSFP1_OUT, 0x1f);
13652 write_csr(dd, ASIC_QSFP2_OUT, 0x1f);
Dean Luicka2ee27a2016-03-05 08:49:50 -080013653 init_chip_resources(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013654}
13655
13656static void init_early_variables(struct hfi1_devdata *dd)
13657{
13658 int i;
13659
13660 /* assign link credit variables */
13661 dd->vau = CM_VAU;
13662 dd->link_credits = CM_GLOBAL_CREDITS;
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050013663 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -040013664 dd->link_credits--;
13665 dd->vcu = cu_to_vcu(hfi1_cu);
13666 /* enough room for 8 MAD packets plus header - 17K */
13667 dd->vl15_init = (8 * (2048 + 128)) / vau_to_au(dd->vau);
13668 if (dd->vl15_init > dd->link_credits)
13669 dd->vl15_init = dd->link_credits;
13670
13671 write_uninitialized_csrs_and_memories(dd);
13672
13673 if (HFI1_CAP_IS_KSET(PKEY_CHECK))
13674 for (i = 0; i < dd->num_pports; i++) {
13675 struct hfi1_pportdata *ppd = &dd->pport[i];
13676
13677 set_partition_keys(ppd);
13678 }
13679 init_sc2vl_tables(dd);
13680}
13681
13682static void init_kdeth_qp(struct hfi1_devdata *dd)
13683{
13684 /* user changed the KDETH_QP */
13685 if (kdeth_qp != 0 && kdeth_qp >= 0xff) {
13686 /* out of range or illegal value */
13687 dd_dev_err(dd, "Invalid KDETH queue pair prefix, ignoring");
13688 kdeth_qp = 0;
13689 }
13690 if (kdeth_qp == 0) /* not set, or failed range check */
13691 kdeth_qp = DEFAULT_KDETH_QP;
13692
13693 write_csr(dd, SEND_BTH_QP,
Jubin John17fb4f22016-02-14 20:21:52 -080013694 (kdeth_qp & SEND_BTH_QP_KDETH_QP_MASK) <<
13695 SEND_BTH_QP_KDETH_QP_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013696
13697 write_csr(dd, RCV_BTH_QP,
Jubin John17fb4f22016-02-14 20:21:52 -080013698 (kdeth_qp & RCV_BTH_QP_KDETH_QP_MASK) <<
13699 RCV_BTH_QP_KDETH_QP_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013700}
13701
13702/**
13703 * init_qpmap_table
13704 * @dd - device data
13705 * @first_ctxt - first context
13706 * @last_ctxt - first context
13707 *
13708 * This return sets the qpn mapping table that
13709 * is indexed by qpn[8:1].
13710 *
13711 * The routine will round robin the 256 settings
13712 * from first_ctxt to last_ctxt.
13713 *
13714 * The first/last looks ahead to having specialized
13715 * receive contexts for mgmt and bypass. Normal
13716 * verbs traffic will assumed to be on a range
13717 * of receive contexts.
13718 */
13719static void init_qpmap_table(struct hfi1_devdata *dd,
13720 u32 first_ctxt,
13721 u32 last_ctxt)
13722{
13723 u64 reg = 0;
13724 u64 regno = RCV_QP_MAP_TABLE;
13725 int i;
13726 u64 ctxt = first_ctxt;
13727
Dean Luick60d585ad2016-04-12 10:50:35 -070013728 for (i = 0; i < 256; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013729 reg |= ctxt << (8 * (i % 8));
Mike Marciniszyn77241052015-07-30 15:17:43 -040013730 ctxt++;
13731 if (ctxt > last_ctxt)
13732 ctxt = first_ctxt;
Dean Luick60d585ad2016-04-12 10:50:35 -070013733 if (i % 8 == 7) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013734 write_csr(dd, regno, reg);
13735 reg = 0;
13736 regno += 8;
13737 }
13738 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040013739
13740 add_rcvctrl(dd, RCV_CTRL_RCV_QP_MAP_ENABLE_SMASK
13741 | RCV_CTRL_RCV_BYPASS_ENABLE_SMASK);
13742}
13743
Dean Luick372cc85a2016-04-12 11:30:51 -070013744struct rsm_map_table {
13745 u64 map[NUM_MAP_REGS];
13746 unsigned int used;
13747};
13748
Dean Luickb12349a2016-04-12 11:31:33 -070013749struct rsm_rule_data {
13750 u8 offset;
13751 u8 pkt_type;
13752 u32 field1_off;
13753 u32 field2_off;
13754 u32 index1_off;
13755 u32 index1_width;
13756 u32 index2_off;
13757 u32 index2_width;
13758 u32 mask1;
13759 u32 value1;
13760 u32 mask2;
13761 u32 value2;
13762};
13763
Dean Luick372cc85a2016-04-12 11:30:51 -070013764/*
13765 * Return an initialized RMT map table for users to fill in. OK if it
13766 * returns NULL, indicating no table.
13767 */
13768static struct rsm_map_table *alloc_rsm_map_table(struct hfi1_devdata *dd)
13769{
13770 struct rsm_map_table *rmt;
13771 u8 rxcontext = is_ax(dd) ? 0 : 0xff; /* 0 is default if a0 ver. */
13772
13773 rmt = kmalloc(sizeof(*rmt), GFP_KERNEL);
13774 if (rmt) {
13775 memset(rmt->map, rxcontext, sizeof(rmt->map));
13776 rmt->used = 0;
13777 }
13778
13779 return rmt;
13780}
13781
13782/*
13783 * Write the final RMT map table to the chip and free the table. OK if
13784 * table is NULL.
13785 */
13786static void complete_rsm_map_table(struct hfi1_devdata *dd,
13787 struct rsm_map_table *rmt)
13788{
13789 int i;
13790
13791 if (rmt) {
13792 /* write table to chip */
13793 for (i = 0; i < NUM_MAP_REGS; i++)
13794 write_csr(dd, RCV_RSM_MAP_TABLE + (8 * i), rmt->map[i]);
13795
13796 /* enable RSM */
13797 add_rcvctrl(dd, RCV_CTRL_RCV_RSM_ENABLE_SMASK);
13798 }
13799}
13800
Dean Luickb12349a2016-04-12 11:31:33 -070013801/*
13802 * Add a receive side mapping rule.
13803 */
13804static void add_rsm_rule(struct hfi1_devdata *dd, u8 rule_index,
13805 struct rsm_rule_data *rrd)
13806{
13807 write_csr(dd, RCV_RSM_CFG + (8 * rule_index),
13808 (u64)rrd->offset << RCV_RSM_CFG_OFFSET_SHIFT |
13809 1ull << rule_index | /* enable bit */
13810 (u64)rrd->pkt_type << RCV_RSM_CFG_PACKET_TYPE_SHIFT);
13811 write_csr(dd, RCV_RSM_SELECT + (8 * rule_index),
13812 (u64)rrd->field1_off << RCV_RSM_SELECT_FIELD1_OFFSET_SHIFT |
13813 (u64)rrd->field2_off << RCV_RSM_SELECT_FIELD2_OFFSET_SHIFT |
13814 (u64)rrd->index1_off << RCV_RSM_SELECT_INDEX1_OFFSET_SHIFT |
13815 (u64)rrd->index1_width << RCV_RSM_SELECT_INDEX1_WIDTH_SHIFT |
13816 (u64)rrd->index2_off << RCV_RSM_SELECT_INDEX2_OFFSET_SHIFT |
13817 (u64)rrd->index2_width << RCV_RSM_SELECT_INDEX2_WIDTH_SHIFT);
13818 write_csr(dd, RCV_RSM_MATCH + (8 * rule_index),
13819 (u64)rrd->mask1 << RCV_RSM_MATCH_MASK1_SHIFT |
13820 (u64)rrd->value1 << RCV_RSM_MATCH_VALUE1_SHIFT |
13821 (u64)rrd->mask2 << RCV_RSM_MATCH_MASK2_SHIFT |
13822 (u64)rrd->value2 << RCV_RSM_MATCH_VALUE2_SHIFT);
13823}
13824
Dean Luick4a818be2016-04-12 11:31:11 -070013825/* return the number of RSM map table entries that will be used for QOS */
13826static int qos_rmt_entries(struct hfi1_devdata *dd, unsigned int *mp,
13827 unsigned int *np)
13828{
13829 int i;
13830 unsigned int m, n;
13831 u8 max_by_vl = 0;
13832
13833 /* is QOS active at all? */
13834 if (dd->n_krcv_queues <= MIN_KERNEL_KCTXTS ||
13835 num_vls == 1 ||
13836 krcvqsset <= 1)
13837 goto no_qos;
13838
13839 /* determine bits for qpn */
13840 for (i = 0; i < min_t(unsigned int, num_vls, krcvqsset); i++)
13841 if (krcvqs[i] > max_by_vl)
13842 max_by_vl = krcvqs[i];
13843 if (max_by_vl > 32)
13844 goto no_qos;
13845 m = ilog2(__roundup_pow_of_two(max_by_vl));
13846
13847 /* determine bits for vl */
13848 n = ilog2(__roundup_pow_of_two(num_vls));
13849
13850 /* reject if too much is used */
13851 if ((m + n) > 7)
13852 goto no_qos;
13853
13854 if (mp)
13855 *mp = m;
13856 if (np)
13857 *np = n;
13858
13859 return 1 << (m + n);
13860
13861no_qos:
13862 if (mp)
13863 *mp = 0;
13864 if (np)
13865 *np = 0;
13866 return 0;
13867}
13868
Mike Marciniszyn77241052015-07-30 15:17:43 -040013869/**
13870 * init_qos - init RX qos
13871 * @dd - device data
Dean Luick372cc85a2016-04-12 11:30:51 -070013872 * @rmt - RSM map table
Mike Marciniszyn77241052015-07-30 15:17:43 -040013873 *
Dean Luick33a9eb52016-04-12 10:50:22 -070013874 * This routine initializes Rule 0 and the RSM map table to implement
13875 * quality of service (qos).
Mike Marciniszyn77241052015-07-30 15:17:43 -040013876 *
Dean Luick33a9eb52016-04-12 10:50:22 -070013877 * If all of the limit tests succeed, qos is applied based on the array
13878 * interpretation of krcvqs where entry 0 is VL0.
Mike Marciniszyn77241052015-07-30 15:17:43 -040013879 *
Dean Luick33a9eb52016-04-12 10:50:22 -070013880 * The number of vl bits (n) and the number of qpn bits (m) are computed to
13881 * feed both the RSM map table and the single rule.
Mike Marciniszyn77241052015-07-30 15:17:43 -040013882 */
Dean Luick372cc85a2016-04-12 11:30:51 -070013883static void init_qos(struct hfi1_devdata *dd, struct rsm_map_table *rmt)
Mike Marciniszyn77241052015-07-30 15:17:43 -040013884{
Dean Luickb12349a2016-04-12 11:31:33 -070013885 struct rsm_rule_data rrd;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013886 unsigned qpns_per_vl, ctxt, i, qpn, n = 1, m;
Dean Luick372cc85a2016-04-12 11:30:51 -070013887 unsigned int rmt_entries;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013888 u64 reg;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013889
Dean Luick4a818be2016-04-12 11:31:11 -070013890 if (!rmt)
Mike Marciniszyn77241052015-07-30 15:17:43 -040013891 goto bail;
Dean Luick4a818be2016-04-12 11:31:11 -070013892 rmt_entries = qos_rmt_entries(dd, &m, &n);
13893 if (rmt_entries == 0)
Mike Marciniszyn77241052015-07-30 15:17:43 -040013894 goto bail;
Dean Luick4a818be2016-04-12 11:31:11 -070013895 qpns_per_vl = 1 << m;
13896
Dean Luick372cc85a2016-04-12 11:30:51 -070013897 /* enough room in the map table? */
13898 rmt_entries = 1 << (m + n);
13899 if (rmt->used + rmt_entries >= NUM_MAP_ENTRIES)
Easwar Hariharan859bcad2015-12-10 11:13:38 -050013900 goto bail;
Dean Luick4a818be2016-04-12 11:31:11 -070013901
Dean Luick372cc85a2016-04-12 11:30:51 -070013902 /* add qos entries to the the RSM map table */
Dean Luick33a9eb52016-04-12 10:50:22 -070013903 for (i = 0, ctxt = FIRST_KERNEL_KCTXT; i < num_vls; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013904 unsigned tctxt;
13905
13906 for (qpn = 0, tctxt = ctxt;
13907 krcvqs[i] && qpn < qpns_per_vl; qpn++) {
13908 unsigned idx, regoff, regidx;
13909
Dean Luick372cc85a2016-04-12 11:30:51 -070013910 /* generate the index the hardware will produce */
13911 idx = rmt->used + ((qpn << n) ^ i);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013912 regoff = (idx % 8) * 8;
13913 regidx = idx / 8;
Dean Luick372cc85a2016-04-12 11:30:51 -070013914 /* replace default with context number */
13915 reg = rmt->map[regidx];
Mike Marciniszyn77241052015-07-30 15:17:43 -040013916 reg &= ~(RCV_RSM_MAP_TABLE_RCV_CONTEXT_A_MASK
13917 << regoff);
13918 reg |= (u64)(tctxt++) << regoff;
Dean Luick372cc85a2016-04-12 11:30:51 -070013919 rmt->map[regidx] = reg;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013920 if (tctxt == ctxt + krcvqs[i])
13921 tctxt = ctxt;
13922 }
13923 ctxt += krcvqs[i];
13924 }
Dean Luickb12349a2016-04-12 11:31:33 -070013925
13926 rrd.offset = rmt->used;
13927 rrd.pkt_type = 2;
13928 rrd.field1_off = LRH_BTH_MATCH_OFFSET;
13929 rrd.field2_off = LRH_SC_MATCH_OFFSET;
13930 rrd.index1_off = LRH_SC_SELECT_OFFSET;
13931 rrd.index1_width = n;
13932 rrd.index2_off = QPN_SELECT_OFFSET;
13933 rrd.index2_width = m + n;
13934 rrd.mask1 = LRH_BTH_MASK;
13935 rrd.value1 = LRH_BTH_VALUE;
13936 rrd.mask2 = LRH_SC_MASK;
13937 rrd.value2 = LRH_SC_VALUE;
13938
13939 /* add rule 0 */
13940 add_rsm_rule(dd, 0, &rrd);
13941
Dean Luick372cc85a2016-04-12 11:30:51 -070013942 /* mark RSM map entries as used */
13943 rmt->used += rmt_entries;
Dean Luick33a9eb52016-04-12 10:50:22 -070013944 /* map everything else to the mcast/err/vl15 context */
13945 init_qpmap_table(dd, HFI1_CTRL_CTXT, HFI1_CTRL_CTXT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013946 dd->qos_shift = n + 1;
13947 return;
13948bail:
13949 dd->qos_shift = 1;
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050013950 init_qpmap_table(dd, FIRST_KERNEL_KCTXT, dd->n_krcv_queues - 1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013951}
13952
Dean Luick8f000f72016-04-12 11:32:06 -070013953static void init_user_fecn_handling(struct hfi1_devdata *dd,
13954 struct rsm_map_table *rmt)
13955{
13956 struct rsm_rule_data rrd;
13957 u64 reg;
13958 int i, idx, regoff, regidx;
13959 u8 offset;
13960
13961 /* there needs to be enough room in the map table */
13962 if (rmt->used + dd->num_user_contexts >= NUM_MAP_ENTRIES) {
13963 dd_dev_err(dd, "User FECN handling disabled - too many user contexts allocated\n");
13964 return;
13965 }
13966
13967 /*
13968 * RSM will extract the destination context as an index into the
13969 * map table. The destination contexts are a sequential block
13970 * in the range first_user_ctxt...num_rcv_contexts-1 (inclusive).
13971 * Map entries are accessed as offset + extracted value. Adjust
13972 * the added offset so this sequence can be placed anywhere in
13973 * the table - as long as the entries themselves do not wrap.
13974 * There are only enough bits in offset for the table size, so
13975 * start with that to allow for a "negative" offset.
13976 */
13977 offset = (u8)(NUM_MAP_ENTRIES + (int)rmt->used -
13978 (int)dd->first_user_ctxt);
13979
13980 for (i = dd->first_user_ctxt, idx = rmt->used;
13981 i < dd->num_rcv_contexts; i++, idx++) {
13982 /* replace with identity mapping */
13983 regoff = (idx % 8) * 8;
13984 regidx = idx / 8;
13985 reg = rmt->map[regidx];
13986 reg &= ~(RCV_RSM_MAP_TABLE_RCV_CONTEXT_A_MASK << regoff);
13987 reg |= (u64)i << regoff;
13988 rmt->map[regidx] = reg;
13989 }
13990
13991 /*
13992 * For RSM intercept of Expected FECN packets:
13993 * o packet type 0 - expected
13994 * o match on F (bit 95), using select/match 1, and
13995 * o match on SH (bit 133), using select/match 2.
13996 *
13997 * Use index 1 to extract the 8-bit receive context from DestQP
13998 * (start at bit 64). Use that as the RSM map table index.
13999 */
14000 rrd.offset = offset;
14001 rrd.pkt_type = 0;
14002 rrd.field1_off = 95;
14003 rrd.field2_off = 133;
14004 rrd.index1_off = 64;
14005 rrd.index1_width = 8;
14006 rrd.index2_off = 0;
14007 rrd.index2_width = 0;
14008 rrd.mask1 = 1;
14009 rrd.value1 = 1;
14010 rrd.mask2 = 1;
14011 rrd.value2 = 1;
14012
14013 /* add rule 1 */
14014 add_rsm_rule(dd, 1, &rrd);
14015
14016 rmt->used += dd->num_user_contexts;
14017}
14018
Mike Marciniszyn77241052015-07-30 15:17:43 -040014019static void init_rxe(struct hfi1_devdata *dd)
14020{
Dean Luick372cc85a2016-04-12 11:30:51 -070014021 struct rsm_map_table *rmt;
14022
Mike Marciniszyn77241052015-07-30 15:17:43 -040014023 /* enable all receive errors */
14024 write_csr(dd, RCV_ERR_MASK, ~0ull);
Dean Luick372cc85a2016-04-12 11:30:51 -070014025
14026 rmt = alloc_rsm_map_table(dd);
14027 /* set up QOS, including the QPN map table */
14028 init_qos(dd, rmt);
Dean Luick8f000f72016-04-12 11:32:06 -070014029 init_user_fecn_handling(dd, rmt);
Dean Luick372cc85a2016-04-12 11:30:51 -070014030 complete_rsm_map_table(dd, rmt);
14031 kfree(rmt);
14032
Mike Marciniszyn77241052015-07-30 15:17:43 -040014033 /*
14034 * make sure RcvCtrl.RcvWcb <= PCIe Device Control
14035 * Register Max_Payload_Size (PCI_EXP_DEVCTL in Linux PCIe config
14036 * space, PciCfgCap2.MaxPayloadSize in HFI). There is only one
14037 * invalid configuration: RcvCtrl.RcvWcb set to its max of 256 and
14038 * Max_PayLoad_Size set to its minimum of 128.
14039 *
14040 * Presently, RcvCtrl.RcvWcb is not modified from its default of 0
14041 * (64 bytes). Max_Payload_Size is possibly modified upward in
14042 * tune_pcie_caps() which is called after this routine.
14043 */
14044}
14045
14046static void init_other(struct hfi1_devdata *dd)
14047{
14048 /* enable all CCE errors */
14049 write_csr(dd, CCE_ERR_MASK, ~0ull);
14050 /* enable *some* Misc errors */
14051 write_csr(dd, MISC_ERR_MASK, DRIVER_MISC_MASK);
14052 /* enable all DC errors, except LCB */
14053 write_csr(dd, DCC_ERR_FLG_EN, ~0ull);
14054 write_csr(dd, DC_DC8051_ERR_EN, ~0ull);
14055}
14056
14057/*
14058 * Fill out the given AU table using the given CU. A CU is defined in terms
14059 * AUs. The table is a an encoding: given the index, how many AUs does that
14060 * represent?
14061 *
14062 * NOTE: Assumes that the register layout is the same for the
14063 * local and remote tables.
14064 */
14065static void assign_cm_au_table(struct hfi1_devdata *dd, u32 cu,
14066 u32 csr0to3, u32 csr4to7)
14067{
14068 write_csr(dd, csr0to3,
Jubin John17fb4f22016-02-14 20:21:52 -080014069 0ull << SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE0_SHIFT |
14070 1ull << SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE1_SHIFT |
14071 2ull * cu <<
14072 SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE2_SHIFT |
14073 4ull * cu <<
14074 SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE3_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014075 write_csr(dd, csr4to7,
Jubin John17fb4f22016-02-14 20:21:52 -080014076 8ull * cu <<
14077 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE4_SHIFT |
14078 16ull * cu <<
14079 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE5_SHIFT |
14080 32ull * cu <<
14081 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE6_SHIFT |
14082 64ull * cu <<
14083 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE7_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014084}
14085
14086static void assign_local_cm_au_table(struct hfi1_devdata *dd, u8 vcu)
14087{
14088 assign_cm_au_table(dd, vcu_to_cu(vcu), SEND_CM_LOCAL_AU_TABLE0_TO3,
Jubin John17fb4f22016-02-14 20:21:52 -080014089 SEND_CM_LOCAL_AU_TABLE4_TO7);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014090}
14091
14092void assign_remote_cm_au_table(struct hfi1_devdata *dd, u8 vcu)
14093{
14094 assign_cm_au_table(dd, vcu_to_cu(vcu), SEND_CM_REMOTE_AU_TABLE0_TO3,
Jubin John17fb4f22016-02-14 20:21:52 -080014095 SEND_CM_REMOTE_AU_TABLE4_TO7);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014096}
14097
14098static void init_txe(struct hfi1_devdata *dd)
14099{
14100 int i;
14101
14102 /* enable all PIO, SDMA, general, and Egress errors */
14103 write_csr(dd, SEND_PIO_ERR_MASK, ~0ull);
14104 write_csr(dd, SEND_DMA_ERR_MASK, ~0ull);
14105 write_csr(dd, SEND_ERR_MASK, ~0ull);
14106 write_csr(dd, SEND_EGRESS_ERR_MASK, ~0ull);
14107
14108 /* enable all per-context and per-SDMA engine errors */
14109 for (i = 0; i < dd->chip_send_contexts; i++)
14110 write_kctxt_csr(dd, i, SEND_CTXT_ERR_MASK, ~0ull);
14111 for (i = 0; i < dd->chip_sdma_engines; i++)
14112 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_MASK, ~0ull);
14113
14114 /* set the local CU to AU mapping */
14115 assign_local_cm_au_table(dd, dd->vcu);
14116
14117 /*
14118 * Set reasonable default for Credit Return Timer
14119 * Don't set on Simulator - causes it to choke.
14120 */
14121 if (dd->icode != ICODE_FUNCTIONAL_SIMULATOR)
14122 write_csr(dd, SEND_CM_TIMER_CTRL, HFI1_CREDIT_RETURN_RATE);
14123}
14124
14125int hfi1_set_ctxt_jkey(struct hfi1_devdata *dd, unsigned ctxt, u16 jkey)
14126{
14127 struct hfi1_ctxtdata *rcd = dd->rcd[ctxt];
14128 unsigned sctxt;
14129 int ret = 0;
14130 u64 reg;
14131
14132 if (!rcd || !rcd->sc) {
14133 ret = -EINVAL;
14134 goto done;
14135 }
14136 sctxt = rcd->sc->hw_context;
14137 reg = SEND_CTXT_CHECK_JOB_KEY_MASK_SMASK | /* mask is always 1's */
14138 ((jkey & SEND_CTXT_CHECK_JOB_KEY_VALUE_MASK) <<
14139 SEND_CTXT_CHECK_JOB_KEY_VALUE_SHIFT);
14140 /* JOB_KEY_ALLOW_PERMISSIVE is not allowed by default */
14141 if (HFI1_CAP_KGET_MASK(rcd->flags, ALLOW_PERM_JKEY))
14142 reg |= SEND_CTXT_CHECK_JOB_KEY_ALLOW_PERMISSIVE_SMASK;
14143 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_JOB_KEY, reg);
14144 /*
14145 * Enable send-side J_KEY integrity check, unless this is A0 h/w
Mike Marciniszyn77241052015-07-30 15:17:43 -040014146 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050014147 if (!is_ax(dd)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014148 reg = read_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE);
14149 reg |= SEND_CTXT_CHECK_ENABLE_CHECK_JOB_KEY_SMASK;
14150 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE, reg);
14151 }
14152
14153 /* Enable J_KEY check on receive context. */
14154 reg = RCV_KEY_CTRL_JOB_KEY_ENABLE_SMASK |
14155 ((jkey & RCV_KEY_CTRL_JOB_KEY_VALUE_MASK) <<
14156 RCV_KEY_CTRL_JOB_KEY_VALUE_SHIFT);
14157 write_kctxt_csr(dd, ctxt, RCV_KEY_CTRL, reg);
14158done:
14159 return ret;
14160}
14161
14162int hfi1_clear_ctxt_jkey(struct hfi1_devdata *dd, unsigned ctxt)
14163{
14164 struct hfi1_ctxtdata *rcd = dd->rcd[ctxt];
14165 unsigned sctxt;
14166 int ret = 0;
14167 u64 reg;
14168
14169 if (!rcd || !rcd->sc) {
14170 ret = -EINVAL;
14171 goto done;
14172 }
14173 sctxt = rcd->sc->hw_context;
14174 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_JOB_KEY, 0);
14175 /*
14176 * Disable send-side J_KEY integrity check, unless this is A0 h/w.
14177 * This check would not have been enabled for A0 h/w, see
14178 * set_ctxt_jkey().
14179 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050014180 if (!is_ax(dd)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014181 reg = read_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE);
14182 reg &= ~SEND_CTXT_CHECK_ENABLE_CHECK_JOB_KEY_SMASK;
14183 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE, reg);
14184 }
14185 /* Turn off the J_KEY on the receive side */
14186 write_kctxt_csr(dd, ctxt, RCV_KEY_CTRL, 0);
14187done:
14188 return ret;
14189}
14190
14191int hfi1_set_ctxt_pkey(struct hfi1_devdata *dd, unsigned ctxt, u16 pkey)
14192{
14193 struct hfi1_ctxtdata *rcd;
14194 unsigned sctxt;
14195 int ret = 0;
14196 u64 reg;
14197
Jubin Johne4909742016-02-14 20:22:00 -080014198 if (ctxt < dd->num_rcv_contexts) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014199 rcd = dd->rcd[ctxt];
Jubin Johne4909742016-02-14 20:22:00 -080014200 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014201 ret = -EINVAL;
14202 goto done;
14203 }
14204 if (!rcd || !rcd->sc) {
14205 ret = -EINVAL;
14206 goto done;
14207 }
14208 sctxt = rcd->sc->hw_context;
14209 reg = ((u64)pkey & SEND_CTXT_CHECK_PARTITION_KEY_VALUE_MASK) <<
14210 SEND_CTXT_CHECK_PARTITION_KEY_VALUE_SHIFT;
14211 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_PARTITION_KEY, reg);
14212 reg = read_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE);
14213 reg |= SEND_CTXT_CHECK_ENABLE_CHECK_PARTITION_KEY_SMASK;
Sebastian Sancheze38d1e42016-04-12 11:22:21 -070014214 reg &= ~SEND_CTXT_CHECK_ENABLE_DISALLOW_KDETH_PACKETS_SMASK;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014215 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE, reg);
14216done:
14217 return ret;
14218}
14219
14220int hfi1_clear_ctxt_pkey(struct hfi1_devdata *dd, unsigned ctxt)
14221{
14222 struct hfi1_ctxtdata *rcd;
14223 unsigned sctxt;
14224 int ret = 0;
14225 u64 reg;
14226
Jubin Johne4909742016-02-14 20:22:00 -080014227 if (ctxt < dd->num_rcv_contexts) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014228 rcd = dd->rcd[ctxt];
Jubin Johne4909742016-02-14 20:22:00 -080014229 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014230 ret = -EINVAL;
14231 goto done;
14232 }
14233 if (!rcd || !rcd->sc) {
14234 ret = -EINVAL;
14235 goto done;
14236 }
14237 sctxt = rcd->sc->hw_context;
14238 reg = read_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE);
14239 reg &= ~SEND_CTXT_CHECK_ENABLE_CHECK_PARTITION_KEY_SMASK;
14240 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE, reg);
14241 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_PARTITION_KEY, 0);
14242done:
14243 return ret;
14244}
14245
14246/*
14247 * Start doing the clean up the the chip. Our clean up happens in multiple
14248 * stages and this is just the first.
14249 */
14250void hfi1_start_cleanup(struct hfi1_devdata *dd)
14251{
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -080014252 aspm_exit(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014253 free_cntrs(dd);
14254 free_rcverr(dd);
14255 clean_up_interrupts(dd);
Dean Luicka2ee27a2016-03-05 08:49:50 -080014256 finish_chip_resources(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014257}
14258
14259#define HFI_BASE_GUID(dev) \
14260 ((dev)->base_guid & ~(1ULL << GUID_HFI_INDEX_SHIFT))
14261
14262/*
Dean Luick78eb1292016-03-05 08:49:45 -080014263 * Information can be shared between the two HFIs on the same ASIC
14264 * in the same OS. This function finds the peer device and sets
14265 * up a shared structure.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014266 */
Dean Luick78eb1292016-03-05 08:49:45 -080014267static int init_asic_data(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014268{
14269 unsigned long flags;
14270 struct hfi1_devdata *tmp, *peer = NULL;
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014271 struct hfi1_asic_data *asic_data;
Dean Luick78eb1292016-03-05 08:49:45 -080014272 int ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014273
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014274 /* pre-allocate the asic structure in case we are the first device */
14275 asic_data = kzalloc(sizeof(*dd->asic_data), GFP_KERNEL);
14276 if (!asic_data)
14277 return -ENOMEM;
14278
Mike Marciniszyn77241052015-07-30 15:17:43 -040014279 spin_lock_irqsave(&hfi1_devs_lock, flags);
14280 /* Find our peer device */
14281 list_for_each_entry(tmp, &hfi1_dev_list, list) {
14282 if ((HFI_BASE_GUID(dd) == HFI_BASE_GUID(tmp)) &&
14283 dd->unit != tmp->unit) {
14284 peer = tmp;
14285 break;
14286 }
14287 }
14288
Dean Luick78eb1292016-03-05 08:49:45 -080014289 if (peer) {
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014290 /* use already allocated structure */
Dean Luick78eb1292016-03-05 08:49:45 -080014291 dd->asic_data = peer->asic_data;
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014292 kfree(asic_data);
Dean Luick78eb1292016-03-05 08:49:45 -080014293 } else {
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014294 dd->asic_data = asic_data;
Dean Luick78eb1292016-03-05 08:49:45 -080014295 mutex_init(&dd->asic_data->asic_resource_mutex);
14296 }
14297 dd->asic_data->dds[dd->hfi1_id] = dd; /* self back-pointer */
Mike Marciniszyn77241052015-07-30 15:17:43 -040014298 spin_unlock_irqrestore(&hfi1_devs_lock, flags);
Dean Luickdba715f2016-07-06 17:28:52 -040014299
14300 /* first one through - set up i2c devices */
14301 if (!peer)
14302 ret = set_up_i2c(dd, dd->asic_data);
14303
Dean Luick78eb1292016-03-05 08:49:45 -080014304 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014305}
14306
Dean Luick5d9157a2015-11-16 21:59:34 -050014307/*
14308 * Set dd->boardname. Use a generic name if a name is not returned from
14309 * EFI variable space.
14310 *
14311 * Return 0 on success, -ENOMEM if space could not be allocated.
14312 */
14313static int obtain_boardname(struct hfi1_devdata *dd)
14314{
14315 /* generic board description */
14316 const char generic[] =
14317 "Intel Omni-Path Host Fabric Interface Adapter 100 Series";
14318 unsigned long size;
14319 int ret;
14320
14321 ret = read_hfi1_efi_var(dd, "description", &size,
14322 (void **)&dd->boardname);
14323 if (ret) {
Dean Luick845f8762016-02-03 14:31:57 -080014324 dd_dev_info(dd, "Board description not found\n");
Dean Luick5d9157a2015-11-16 21:59:34 -050014325 /* use generic description */
14326 dd->boardname = kstrdup(generic, GFP_KERNEL);
14327 if (!dd->boardname)
14328 return -ENOMEM;
14329 }
14330 return 0;
14331}
14332
Kaike Wan24487dd2016-02-26 13:33:23 -080014333/*
14334 * Check the interrupt registers to make sure that they are mapped correctly.
14335 * It is intended to help user identify any mismapping by VMM when the driver
14336 * is running in a VM. This function should only be called before interrupt
14337 * is set up properly.
14338 *
14339 * Return 0 on success, -EINVAL on failure.
14340 */
14341static int check_int_registers(struct hfi1_devdata *dd)
14342{
14343 u64 reg;
14344 u64 all_bits = ~(u64)0;
14345 u64 mask;
14346
14347 /* Clear CceIntMask[0] to avoid raising any interrupts */
14348 mask = read_csr(dd, CCE_INT_MASK);
14349 write_csr(dd, CCE_INT_MASK, 0ull);
14350 reg = read_csr(dd, CCE_INT_MASK);
14351 if (reg)
14352 goto err_exit;
14353
14354 /* Clear all interrupt status bits */
14355 write_csr(dd, CCE_INT_CLEAR, all_bits);
14356 reg = read_csr(dd, CCE_INT_STATUS);
14357 if (reg)
14358 goto err_exit;
14359
14360 /* Set all interrupt status bits */
14361 write_csr(dd, CCE_INT_FORCE, all_bits);
14362 reg = read_csr(dd, CCE_INT_STATUS);
14363 if (reg != all_bits)
14364 goto err_exit;
14365
14366 /* Restore the interrupt mask */
14367 write_csr(dd, CCE_INT_CLEAR, all_bits);
14368 write_csr(dd, CCE_INT_MASK, mask);
14369
14370 return 0;
14371err_exit:
14372 write_csr(dd, CCE_INT_MASK, mask);
14373 dd_dev_err(dd, "Interrupt registers not properly mapped by VMM\n");
14374 return -EINVAL;
14375}
14376
Mike Marciniszyn77241052015-07-30 15:17:43 -040014377/**
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040014378 * Allocate and initialize the device structure for the hfi.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014379 * @dev: the pci_dev for hfi1_ib device
14380 * @ent: pci_device_id struct for this dev
14381 *
14382 * Also allocates, initializes, and returns the devdata struct for this
14383 * device instance
14384 *
14385 * This is global, and is called directly at init to set up the
14386 * chip-specific function pointers for later use.
14387 */
14388struct hfi1_devdata *hfi1_init_dd(struct pci_dev *pdev,
14389 const struct pci_device_id *ent)
14390{
14391 struct hfi1_devdata *dd;
14392 struct hfi1_pportdata *ppd;
14393 u64 reg;
14394 int i, ret;
14395 static const char * const inames[] = { /* implementation names */
14396 "RTL silicon",
14397 "RTL VCS simulation",
14398 "RTL FPGA emulation",
14399 "Functional simulator"
14400 };
Kaike Wan24487dd2016-02-26 13:33:23 -080014401 struct pci_dev *parent = pdev->bus->self;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014402
Jubin John17fb4f22016-02-14 20:21:52 -080014403 dd = hfi1_alloc_devdata(pdev, NUM_IB_PORTS *
14404 sizeof(struct hfi1_pportdata));
Mike Marciniszyn77241052015-07-30 15:17:43 -040014405 if (IS_ERR(dd))
14406 goto bail;
14407 ppd = dd->pport;
14408 for (i = 0; i < dd->num_pports; i++, ppd++) {
14409 int vl;
14410 /* init common fields */
14411 hfi1_init_pportdata(pdev, ppd, dd, 0, 1);
14412 /* DC supports 4 link widths */
14413 ppd->link_width_supported =
14414 OPA_LINK_WIDTH_1X | OPA_LINK_WIDTH_2X |
14415 OPA_LINK_WIDTH_3X | OPA_LINK_WIDTH_4X;
14416 ppd->link_width_downgrade_supported =
14417 ppd->link_width_supported;
14418 /* start out enabling only 4X */
14419 ppd->link_width_enabled = OPA_LINK_WIDTH_4X;
14420 ppd->link_width_downgrade_enabled =
14421 ppd->link_width_downgrade_supported;
14422 /* link width active is 0 when link is down */
14423 /* link width downgrade active is 0 when link is down */
14424
Jubin Johnd0d236e2016-02-14 20:20:15 -080014425 if (num_vls < HFI1_MIN_VLS_SUPPORTED ||
14426 num_vls > HFI1_MAX_VLS_SUPPORTED) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014427 hfi1_early_err(&pdev->dev,
14428 "Invalid num_vls %u, using %u VLs\n",
14429 num_vls, HFI1_MAX_VLS_SUPPORTED);
14430 num_vls = HFI1_MAX_VLS_SUPPORTED;
14431 }
14432 ppd->vls_supported = num_vls;
14433 ppd->vls_operational = ppd->vls_supported;
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080014434 ppd->actual_vls_operational = ppd->vls_supported;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014435 /* Set the default MTU. */
14436 for (vl = 0; vl < num_vls; vl++)
14437 dd->vld[vl].mtu = hfi1_max_mtu;
14438 dd->vld[15].mtu = MAX_MAD_PACKET;
14439 /*
14440 * Set the initial values to reasonable default, will be set
14441 * for real when link is up.
14442 */
14443 ppd->lstate = IB_PORT_DOWN;
14444 ppd->overrun_threshold = 0x4;
14445 ppd->phy_error_threshold = 0xf;
14446 ppd->port_crc_mode_enabled = link_crc_mask;
14447 /* initialize supported LTP CRC mode */
14448 ppd->port_ltp_crc_mode = cap_to_port_ltp(link_crc_mask) << 8;
14449 /* initialize enabled LTP CRC mode */
14450 ppd->port_ltp_crc_mode |= cap_to_port_ltp(link_crc_mask) << 4;
14451 /* start in offline */
14452 ppd->host_link_state = HLS_DN_OFFLINE;
14453 init_vl_arb_caches(ppd);
Dean Luickf45c8dc2016-02-03 14:35:31 -080014454 ppd->last_pstate = 0xff; /* invalid value */
Mike Marciniszyn77241052015-07-30 15:17:43 -040014455 }
14456
14457 dd->link_default = HLS_DN_POLL;
14458
14459 /*
14460 * Do remaining PCIe setup and save PCIe values in dd.
14461 * Any error printing is already done by the init code.
14462 * On return, we have the chip mapped.
14463 */
14464 ret = hfi1_pcie_ddinit(dd, pdev, ent);
14465 if (ret < 0)
14466 goto bail_free;
14467
14468 /* verify that reads actually work, save revision for reset check */
14469 dd->revision = read_csr(dd, CCE_REVISION);
14470 if (dd->revision == ~(u64)0) {
14471 dd_dev_err(dd, "cannot read chip CSRs\n");
14472 ret = -EINVAL;
14473 goto bail_cleanup;
14474 }
14475 dd->majrev = (dd->revision >> CCE_REVISION_CHIP_REV_MAJOR_SHIFT)
14476 & CCE_REVISION_CHIP_REV_MAJOR_MASK;
14477 dd->minrev = (dd->revision >> CCE_REVISION_CHIP_REV_MINOR_SHIFT)
14478 & CCE_REVISION_CHIP_REV_MINOR_MASK;
14479
Jubin John4d114fd2016-02-14 20:21:43 -080014480 /*
Kaike Wan24487dd2016-02-26 13:33:23 -080014481 * Check interrupt registers mapping if the driver has no access to
14482 * the upstream component. In this case, it is likely that the driver
14483 * is running in a VM.
14484 */
14485 if (!parent) {
14486 ret = check_int_registers(dd);
14487 if (ret)
14488 goto bail_cleanup;
14489 }
14490
14491 /*
Jubin John4d114fd2016-02-14 20:21:43 -080014492 * obtain the hardware ID - NOT related to unit, which is a
14493 * software enumeration
14494 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040014495 reg = read_csr(dd, CCE_REVISION2);
14496 dd->hfi1_id = (reg >> CCE_REVISION2_HFI_ID_SHIFT)
14497 & CCE_REVISION2_HFI_ID_MASK;
14498 /* the variable size will remove unwanted bits */
14499 dd->icode = reg >> CCE_REVISION2_IMPL_CODE_SHIFT;
14500 dd->irev = reg >> CCE_REVISION2_IMPL_REVISION_SHIFT;
14501 dd_dev_info(dd, "Implementation: %s, revision 0x%x\n",
Jubin John17fb4f22016-02-14 20:21:52 -080014502 dd->icode < ARRAY_SIZE(inames) ?
14503 inames[dd->icode] : "unknown", (int)dd->irev);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014504
14505 /* speeds the hardware can support */
14506 dd->pport->link_speed_supported = OPA_LINK_SPEED_25G;
14507 /* speeds allowed to run at */
14508 dd->pport->link_speed_enabled = dd->pport->link_speed_supported;
14509 /* give a reasonable active value, will be set on link up */
14510 dd->pport->link_speed_active = OPA_LINK_SPEED_25G;
14511
14512 dd->chip_rcv_contexts = read_csr(dd, RCV_CONTEXTS);
14513 dd->chip_send_contexts = read_csr(dd, SEND_CONTEXTS);
14514 dd->chip_sdma_engines = read_csr(dd, SEND_DMA_ENGINES);
14515 dd->chip_pio_mem_size = read_csr(dd, SEND_PIO_MEM_SIZE);
14516 dd->chip_sdma_mem_size = read_csr(dd, SEND_DMA_MEM_SIZE);
14517 /* fix up link widths for emulation _p */
14518 ppd = dd->pport;
14519 if (dd->icode == ICODE_FPGA_EMULATION && is_emulator_p(dd)) {
14520 ppd->link_width_supported =
14521 ppd->link_width_enabled =
14522 ppd->link_width_downgrade_supported =
14523 ppd->link_width_downgrade_enabled =
14524 OPA_LINK_WIDTH_1X;
14525 }
14526 /* insure num_vls isn't larger than number of sdma engines */
14527 if (HFI1_CAP_IS_KSET(SDMA) && num_vls > dd->chip_sdma_engines) {
14528 dd_dev_err(dd, "num_vls %u too large, using %u VLs\n",
Dean Luick11a59092015-12-01 15:38:18 -050014529 num_vls, dd->chip_sdma_engines);
14530 num_vls = dd->chip_sdma_engines;
14531 ppd->vls_supported = dd->chip_sdma_engines;
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080014532 ppd->vls_operational = ppd->vls_supported;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014533 }
14534
14535 /*
14536 * Convert the ns parameter to the 64 * cclocks used in the CSR.
14537 * Limit the max if larger than the field holds. If timeout is
14538 * non-zero, then the calculated field will be at least 1.
14539 *
14540 * Must be after icode is set up - the cclock rate depends
14541 * on knowing the hardware being used.
14542 */
14543 dd->rcv_intr_timeout_csr = ns_to_cclock(dd, rcv_intr_timeout) / 64;
14544 if (dd->rcv_intr_timeout_csr >
14545 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_MASK)
14546 dd->rcv_intr_timeout_csr =
14547 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_MASK;
14548 else if (dd->rcv_intr_timeout_csr == 0 && rcv_intr_timeout)
14549 dd->rcv_intr_timeout_csr = 1;
14550
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040014551 /* needs to be done before we look for the peer device */
14552 read_guid(dd);
14553
Dean Luick78eb1292016-03-05 08:49:45 -080014554 /* set up shared ASIC data with peer device */
14555 ret = init_asic_data(dd);
14556 if (ret)
14557 goto bail_cleanup;
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040014558
Mike Marciniszyn77241052015-07-30 15:17:43 -040014559 /* obtain chip sizes, reset chip CSRs */
14560 init_chip(dd);
14561
14562 /* read in the PCIe link speed information */
14563 ret = pcie_speeds(dd);
14564 if (ret)
14565 goto bail_cleanup;
14566
Easwar Hariharanc3838b32016-02-09 14:29:13 -080014567 /* Needs to be called before hfi1_firmware_init */
14568 get_platform_config(dd);
14569
Mike Marciniszyn77241052015-07-30 15:17:43 -040014570 /* read in firmware */
14571 ret = hfi1_firmware_init(dd);
14572 if (ret)
14573 goto bail_cleanup;
14574
14575 /*
14576 * In general, the PCIe Gen3 transition must occur after the
14577 * chip has been idled (so it won't initiate any PCIe transactions
14578 * e.g. an interrupt) and before the driver changes any registers
14579 * (the transition will reset the registers).
14580 *
14581 * In particular, place this call after:
14582 * - init_chip() - the chip will not initiate any PCIe transactions
14583 * - pcie_speeds() - reads the current link speed
14584 * - hfi1_firmware_init() - the needed firmware is ready to be
14585 * downloaded
14586 */
14587 ret = do_pcie_gen3_transition(dd);
14588 if (ret)
14589 goto bail_cleanup;
14590
14591 /* start setting dd values and adjusting CSRs */
14592 init_early_variables(dd);
14593
14594 parse_platform_config(dd);
14595
Dean Luick5d9157a2015-11-16 21:59:34 -050014596 ret = obtain_boardname(dd);
14597 if (ret)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014598 goto bail_cleanup;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014599
14600 snprintf(dd->boardversion, BOARD_VERS_MAX,
Dean Luick5d9157a2015-11-16 21:59:34 -050014601 "ChipABI %u.%u, ChipRev %u.%u, SW Compat %llu\n",
Mike Marciniszyn77241052015-07-30 15:17:43 -040014602 HFI1_CHIP_VERS_MAJ, HFI1_CHIP_VERS_MIN,
Mike Marciniszyn77241052015-07-30 15:17:43 -040014603 (u32)dd->majrev,
14604 (u32)dd->minrev,
14605 (dd->revision >> CCE_REVISION_SW_SHIFT)
14606 & CCE_REVISION_SW_MASK);
14607
14608 ret = set_up_context_variables(dd);
14609 if (ret)
14610 goto bail_cleanup;
14611
14612 /* set initial RXE CSRs */
14613 init_rxe(dd);
14614 /* set initial TXE CSRs */
14615 init_txe(dd);
14616 /* set initial non-RXE, non-TXE CSRs */
14617 init_other(dd);
14618 /* set up KDETH QP prefix in both RX and TX CSRs */
14619 init_kdeth_qp(dd);
14620
Dennis Dalessandro41973442016-07-25 07:52:36 -070014621 ret = hfi1_dev_affinity_init(dd);
14622 if (ret)
14623 goto bail_cleanup;
Mitko Haralanov957558c2016-02-03 14:33:40 -080014624
Mike Marciniszyn77241052015-07-30 15:17:43 -040014625 /* send contexts must be set up before receive contexts */
14626 ret = init_send_contexts(dd);
14627 if (ret)
14628 goto bail_cleanup;
14629
14630 ret = hfi1_create_ctxts(dd);
14631 if (ret)
14632 goto bail_cleanup;
14633
14634 dd->rcvhdrsize = DEFAULT_RCVHDRSIZE;
14635 /*
14636 * rcd[0] is guaranteed to be valid by this point. Also, all
14637 * context are using the same value, as per the module parameter.
14638 */
14639 dd->rhf_offset = dd->rcd[0]->rcvhdrqentsize - sizeof(u64) / sizeof(u32);
14640
14641 ret = init_pervl_scs(dd);
14642 if (ret)
14643 goto bail_cleanup;
14644
14645 /* sdma init */
14646 for (i = 0; i < dd->num_pports; ++i) {
14647 ret = sdma_init(dd, i);
14648 if (ret)
14649 goto bail_cleanup;
14650 }
14651
14652 /* use contexts created by hfi1_create_ctxts */
14653 ret = set_up_interrupts(dd);
14654 if (ret)
14655 goto bail_cleanup;
14656
14657 /* set up LCB access - must be after set_up_interrupts() */
14658 init_lcb_access(dd);
14659
Ira Weinyfc0b76c2016-07-27 21:09:40 -040014660 /*
14661 * Serial number is created from the base guid:
14662 * [27:24] = base guid [38:35]
14663 * [23: 0] = base guid [23: 0]
14664 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040014665 snprintf(dd->serial, SERIAL_MAX, "0x%08llx\n",
Ira Weinyfc0b76c2016-07-27 21:09:40 -040014666 (dd->base_guid & 0xFFFFFF) |
14667 ((dd->base_guid >> 11) & 0xF000000));
Mike Marciniszyn77241052015-07-30 15:17:43 -040014668
14669 dd->oui1 = dd->base_guid >> 56 & 0xFF;
14670 dd->oui2 = dd->base_guid >> 48 & 0xFF;
14671 dd->oui3 = dd->base_guid >> 40 & 0xFF;
14672
14673 ret = load_firmware(dd); /* asymmetric with dispose_firmware() */
14674 if (ret)
14675 goto bail_clear_intr;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014676
14677 thermal_init(dd);
14678
14679 ret = init_cntrs(dd);
14680 if (ret)
14681 goto bail_clear_intr;
14682
14683 ret = init_rcverr(dd);
14684 if (ret)
14685 goto bail_free_cntrs;
14686
14687 ret = eprom_init(dd);
14688 if (ret)
14689 goto bail_free_rcverr;
14690
14691 goto bail;
14692
14693bail_free_rcverr:
14694 free_rcverr(dd);
14695bail_free_cntrs:
14696 free_cntrs(dd);
14697bail_clear_intr:
14698 clean_up_interrupts(dd);
14699bail_cleanup:
14700 hfi1_pcie_ddcleanup(dd);
14701bail_free:
14702 hfi1_free_devdata(dd);
14703 dd = ERR_PTR(ret);
14704bail:
14705 return dd;
14706}
14707
14708static u16 delay_cycles(struct hfi1_pportdata *ppd, u32 desired_egress_rate,
14709 u32 dw_len)
14710{
14711 u32 delta_cycles;
14712 u32 current_egress_rate = ppd->current_egress_rate;
14713 /* rates here are in units of 10^6 bits/sec */
14714
14715 if (desired_egress_rate == -1)
14716 return 0; /* shouldn't happen */
14717
14718 if (desired_egress_rate >= current_egress_rate)
14719 return 0; /* we can't help go faster, only slower */
14720
14721 delta_cycles = egress_cycles(dw_len * 4, desired_egress_rate) -
14722 egress_cycles(dw_len * 4, current_egress_rate);
14723
14724 return (u16)delta_cycles;
14725}
14726
Mike Marciniszyn77241052015-07-30 15:17:43 -040014727/**
14728 * create_pbc - build a pbc for transmission
14729 * @flags: special case flags or-ed in built pbc
14730 * @srate: static rate
14731 * @vl: vl
14732 * @dwlen: dword length (header words + data words + pbc words)
14733 *
14734 * Create a PBC with the given flags, rate, VL, and length.
14735 *
14736 * NOTE: The PBC created will not insert any HCRC - all callers but one are
14737 * for verbs, which does not use this PSM feature. The lone other caller
14738 * is for the diagnostic interface which calls this if the user does not
14739 * supply their own PBC.
14740 */
14741u64 create_pbc(struct hfi1_pportdata *ppd, u64 flags, int srate_mbs, u32 vl,
14742 u32 dw_len)
14743{
14744 u64 pbc, delay = 0;
14745
14746 if (unlikely(srate_mbs))
14747 delay = delay_cycles(ppd, srate_mbs, dw_len);
14748
14749 pbc = flags
14750 | (delay << PBC_STATIC_RATE_CONTROL_COUNT_SHIFT)
14751 | ((u64)PBC_IHCRC_NONE << PBC_INSERT_HCRC_SHIFT)
14752 | (vl & PBC_VL_MASK) << PBC_VL_SHIFT
14753 | (dw_len & PBC_LENGTH_DWS_MASK)
14754 << PBC_LENGTH_DWS_SHIFT;
14755
14756 return pbc;
14757}
14758
14759#define SBUS_THERMAL 0x4f
14760#define SBUS_THERM_MONITOR_MODE 0x1
14761
14762#define THERM_FAILURE(dev, ret, reason) \
14763 dd_dev_err((dd), \
14764 "Thermal sensor initialization failed: %s (%d)\n", \
14765 (reason), (ret))
14766
14767/*
Jakub Pawlakcde10af2016-05-12 10:23:35 -070014768 * Initialize the thermal sensor.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014769 *
14770 * After initialization, enable polling of thermal sensor through
14771 * SBus interface. In order for this to work, the SBus Master
14772 * firmware has to be loaded due to the fact that the HW polling
14773 * logic uses SBus interrupts, which are not supported with
14774 * default firmware. Otherwise, no data will be returned through
14775 * the ASIC_STS_THERM CSR.
14776 */
14777static int thermal_init(struct hfi1_devdata *dd)
14778{
14779 int ret = 0;
14780
14781 if (dd->icode != ICODE_RTL_SILICON ||
Dean Luicka4536982016-03-05 08:50:11 -080014782 check_chip_resource(dd, CR_THERM_INIT, NULL))
Mike Marciniszyn77241052015-07-30 15:17:43 -040014783 return ret;
14784
Dean Luick576531f2016-03-05 08:50:01 -080014785 ret = acquire_chip_resource(dd, CR_SBUS, SBUS_TIMEOUT);
14786 if (ret) {
14787 THERM_FAILURE(dd, ret, "Acquire SBus");
14788 return ret;
14789 }
14790
Mike Marciniszyn77241052015-07-30 15:17:43 -040014791 dd_dev_info(dd, "Initializing thermal sensor\n");
Jareer Abdel-Qader4ef98982015-11-06 20:07:00 -050014792 /* Disable polling of thermal readings */
14793 write_csr(dd, ASIC_CFG_THERM_POLL_EN, 0x0);
14794 msleep(100);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014795 /* Thermal Sensor Initialization */
14796 /* Step 1: Reset the Thermal SBus Receiver */
14797 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x0,
14798 RESET_SBUS_RECEIVER, 0);
14799 if (ret) {
14800 THERM_FAILURE(dd, ret, "Bus Reset");
14801 goto done;
14802 }
14803 /* Step 2: Set Reset bit in Thermal block */
14804 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x0,
14805 WRITE_SBUS_RECEIVER, 0x1);
14806 if (ret) {
14807 THERM_FAILURE(dd, ret, "Therm Block Reset");
14808 goto done;
14809 }
14810 /* Step 3: Write clock divider value (100MHz -> 2MHz) */
14811 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x1,
14812 WRITE_SBUS_RECEIVER, 0x32);
14813 if (ret) {
14814 THERM_FAILURE(dd, ret, "Write Clock Div");
14815 goto done;
14816 }
14817 /* Step 4: Select temperature mode */
14818 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x3,
14819 WRITE_SBUS_RECEIVER,
14820 SBUS_THERM_MONITOR_MODE);
14821 if (ret) {
14822 THERM_FAILURE(dd, ret, "Write Mode Sel");
14823 goto done;
14824 }
14825 /* Step 5: De-assert block reset and start conversion */
14826 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x0,
14827 WRITE_SBUS_RECEIVER, 0x2);
14828 if (ret) {
14829 THERM_FAILURE(dd, ret, "Write Reset Deassert");
14830 goto done;
14831 }
14832 /* Step 5.1: Wait for first conversion (21.5ms per spec) */
14833 msleep(22);
14834
14835 /* Enable polling of thermal readings */
14836 write_csr(dd, ASIC_CFG_THERM_POLL_EN, 0x1);
Dean Luicka4536982016-03-05 08:50:11 -080014837
14838 /* Set initialized flag */
14839 ret = acquire_chip_resource(dd, CR_THERM_INIT, 0);
14840 if (ret)
14841 THERM_FAILURE(dd, ret, "Unable to set thermal init flag");
14842
Mike Marciniszyn77241052015-07-30 15:17:43 -040014843done:
Dean Luick576531f2016-03-05 08:50:01 -080014844 release_chip_resource(dd, CR_SBUS);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014845 return ret;
14846}
14847
14848static void handle_temp_err(struct hfi1_devdata *dd)
14849{
14850 struct hfi1_pportdata *ppd = &dd->pport[0];
14851 /*
14852 * Thermal Critical Interrupt
14853 * Put the device into forced freeze mode, take link down to
14854 * offline, and put DC into reset.
14855 */
14856 dd_dev_emerg(dd,
14857 "Critical temperature reached! Forcing device into freeze mode!\n");
14858 dd->flags |= HFI1_FORCED_FREEZE;
Jubin John8638b772016-02-14 20:19:24 -080014859 start_freeze_handling(ppd, FREEZE_SELF | FREEZE_ABORT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014860 /*
14861 * Shut DC down as much and as quickly as possible.
14862 *
14863 * Step 1: Take the link down to OFFLINE. This will cause the
14864 * 8051 to put the Serdes in reset. However, we don't want to
14865 * go through the entire link state machine since we want to
14866 * shutdown ASAP. Furthermore, this is not a graceful shutdown
14867 * but rather an attempt to save the chip.
14868 * Code below is almost the same as quiet_serdes() but avoids
14869 * all the extra work and the sleeps.
14870 */
14871 ppd->driver_link_ready = 0;
14872 ppd->link_enabled = 0;
Harish Chegondibf640092016-03-05 08:49:29 -080014873 set_physical_link_state(dd, (OPA_LINKDOWN_REASON_SMA_DISABLED << 8) |
14874 PLS_OFFLINE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014875 /*
14876 * Step 2: Shutdown LCB and 8051
14877 * After shutdown, do not restore DC_CFG_RESET value.
14878 */
14879 dc_shutdown(dd);
14880}