blob: b9d491c9071a44d565721892e430948f56eab3bc [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),
Dean Luick50921be2016-09-25 07:41:53 -0700974 FLAG_ENTRY0("Host Handshake Timeout", HOST_HANDSHAKE_TIMEOUT),
975 FLAG_ENTRY0("External Device Request Timeout",
976 EXTERNAL_DEVICE_REQ_TIMEOUT),
Mike Marciniszyn77241052015-07-30 15:17:43 -0400977};
978
979/*
980 * DC8051 Information Host Information flags
981 *
982 * Flags in DC8051_DBG_ERR_INFO_SET_BY_8051.HOST_MSG field.
983 */
984static struct flag_table dc8051_info_host_msg_flags[] = {
985 FLAG_ENTRY0("Host request done", 0x0001),
986 FLAG_ENTRY0("BC SMA message", 0x0002),
987 FLAG_ENTRY0("BC PWR_MGM message", 0x0004),
988 FLAG_ENTRY0("BC Unknown message (BCC)", 0x0008),
989 FLAG_ENTRY0("BC Unknown message (LCB)", 0x0010),
990 FLAG_ENTRY0("External device config request", 0x0020),
991 FLAG_ENTRY0("VerifyCap all frames received", 0x0040),
992 FLAG_ENTRY0("LinkUp achieved", 0x0080),
993 FLAG_ENTRY0("Link going down", 0x0100),
994};
995
Mike Marciniszyn77241052015-07-30 15:17:43 -0400996static u32 encoded_size(u32 size);
997static u32 chip_to_opa_lstate(struct hfi1_devdata *dd, u32 chip_lstate);
998static int set_physical_link_state(struct hfi1_devdata *dd, u64 state);
999static void read_vc_remote_phy(struct hfi1_devdata *dd, u8 *power_management,
1000 u8 *continuous);
1001static void read_vc_remote_fabric(struct hfi1_devdata *dd, u8 *vau, u8 *z,
1002 u8 *vcu, u16 *vl15buf, u8 *crc_sizes);
1003static void read_vc_remote_link_width(struct hfi1_devdata *dd,
1004 u8 *remote_tx_rate, u16 *link_widths);
1005static void read_vc_local_link_width(struct hfi1_devdata *dd, u8 *misc_bits,
1006 u8 *flag_bits, u16 *link_widths);
1007static void read_remote_device_id(struct hfi1_devdata *dd, u16 *device_id,
1008 u8 *device_rev);
1009static void read_mgmt_allowed(struct hfi1_devdata *dd, u8 *mgmt_allowed);
1010static void read_local_lni(struct hfi1_devdata *dd, u8 *enable_lane_rx);
1011static int read_tx_settings(struct hfi1_devdata *dd, u8 *enable_lane_tx,
1012 u8 *tx_polarity_inversion,
1013 u8 *rx_polarity_inversion, u8 *max_rate);
1014static void handle_sdma_eng_err(struct hfi1_devdata *dd,
1015 unsigned int context, u64 err_status);
1016static void handle_qsfp_int(struct hfi1_devdata *dd, u32 source, u64 reg);
1017static void handle_dcc_err(struct hfi1_devdata *dd,
1018 unsigned int context, u64 err_status);
1019static void handle_lcb_err(struct hfi1_devdata *dd,
1020 unsigned int context, u64 err_status);
1021static void handle_8051_interrupt(struct hfi1_devdata *dd, u32 unused, u64 reg);
1022static void handle_cce_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1023static void handle_rxe_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1024static void handle_misc_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1025static void handle_pio_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1026static void handle_sdma_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1027static void handle_egress_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1028static void handle_txe_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1029static void set_partition_keys(struct hfi1_pportdata *);
1030static const char *link_state_name(u32 state);
1031static const char *link_state_reason_name(struct hfi1_pportdata *ppd,
1032 u32 state);
1033static int do_8051_command(struct hfi1_devdata *dd, u32 type, u64 in_data,
1034 u64 *out_data);
1035static int read_idle_sma(struct hfi1_devdata *dd, u64 *data);
1036static int thermal_init(struct hfi1_devdata *dd);
1037
1038static int wait_logical_linkstate(struct hfi1_pportdata *ppd, u32 state,
1039 int msecs);
1040static void read_planned_down_reason_code(struct hfi1_devdata *dd, u8 *pdrrc);
Dean Luickfeb831d2016-04-14 08:31:36 -07001041static void read_link_down_reason(struct hfi1_devdata *dd, u8 *ldr);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001042static void handle_temp_err(struct hfi1_devdata *);
1043static void dc_shutdown(struct hfi1_devdata *);
1044static void dc_start(struct hfi1_devdata *);
Dean Luick8f000f72016-04-12 11:32:06 -07001045static int qos_rmt_entries(struct hfi1_devdata *dd, unsigned int *mp,
1046 unsigned int *np);
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07001047static void clear_full_mgmt_pkey(struct hfi1_pportdata *ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001048
1049/*
1050 * Error interrupt table entry. This is used as input to the interrupt
1051 * "clear down" routine used for all second tier error interrupt register.
1052 * Second tier interrupt registers have a single bit representing them
1053 * in the top-level CceIntStatus.
1054 */
1055struct err_reg_info {
1056 u32 status; /* status CSR offset */
1057 u32 clear; /* clear CSR offset */
1058 u32 mask; /* mask CSR offset */
1059 void (*handler)(struct hfi1_devdata *dd, u32 source, u64 reg);
1060 const char *desc;
1061};
1062
1063#define NUM_MISC_ERRS (IS_GENERAL_ERR_END - IS_GENERAL_ERR_START)
1064#define NUM_DC_ERRS (IS_DC_END - IS_DC_START)
1065#define NUM_VARIOUS (IS_VARIOUS_END - IS_VARIOUS_START)
1066
1067/*
1068 * Helpers for building HFI and DC error interrupt table entries. Different
1069 * helpers are needed because of inconsistent register names.
1070 */
1071#define EE(reg, handler, desc) \
1072 { reg##_STATUS, reg##_CLEAR, reg##_MASK, \
1073 handler, desc }
1074#define DC_EE1(reg, handler, desc) \
1075 { reg##_FLG, reg##_FLG_CLR, reg##_FLG_EN, handler, desc }
1076#define DC_EE2(reg, handler, desc) \
1077 { reg##_FLG, reg##_CLR, reg##_EN, handler, desc }
1078
1079/*
1080 * Table of the "misc" grouping of error interrupts. Each entry refers to
1081 * another register containing more information.
1082 */
1083static const struct err_reg_info misc_errs[NUM_MISC_ERRS] = {
1084/* 0*/ EE(CCE_ERR, handle_cce_err, "CceErr"),
1085/* 1*/ EE(RCV_ERR, handle_rxe_err, "RxeErr"),
1086/* 2*/ EE(MISC_ERR, handle_misc_err, "MiscErr"),
1087/* 3*/ { 0, 0, 0, NULL }, /* reserved */
1088/* 4*/ EE(SEND_PIO_ERR, handle_pio_err, "PioErr"),
1089/* 5*/ EE(SEND_DMA_ERR, handle_sdma_err, "SDmaErr"),
1090/* 6*/ EE(SEND_EGRESS_ERR, handle_egress_err, "EgressErr"),
1091/* 7*/ EE(SEND_ERR, handle_txe_err, "TxeErr")
1092 /* the rest are reserved */
1093};
1094
1095/*
1096 * Index into the Various section of the interrupt sources
1097 * corresponding to the Critical Temperature interrupt.
1098 */
1099#define TCRIT_INT_SOURCE 4
1100
1101/*
1102 * SDMA error interrupt entry - refers to another register containing more
1103 * information.
1104 */
1105static const struct err_reg_info sdma_eng_err =
1106 EE(SEND_DMA_ENG_ERR, handle_sdma_eng_err, "SDmaEngErr");
1107
1108static const struct err_reg_info various_err[NUM_VARIOUS] = {
1109/* 0*/ { 0, 0, 0, NULL }, /* PbcInt */
1110/* 1*/ { 0, 0, 0, NULL }, /* GpioAssertInt */
1111/* 2*/ EE(ASIC_QSFP1, handle_qsfp_int, "QSFP1"),
1112/* 3*/ EE(ASIC_QSFP2, handle_qsfp_int, "QSFP2"),
1113/* 4*/ { 0, 0, 0, NULL }, /* TCritInt */
1114 /* rest are reserved */
1115};
1116
1117/*
1118 * The DC encoding of mtu_cap for 10K MTU in the DCC_CFG_PORT_CONFIG
1119 * register can not be derived from the MTU value because 10K is not
1120 * a power of 2. Therefore, we need a constant. Everything else can
1121 * be calculated.
1122 */
1123#define DCC_CFG_PORT_MTU_CAP_10240 7
1124
1125/*
1126 * Table of the DC grouping of error interrupts. Each entry refers to
1127 * another register containing more information.
1128 */
1129static const struct err_reg_info dc_errs[NUM_DC_ERRS] = {
1130/* 0*/ DC_EE1(DCC_ERR, handle_dcc_err, "DCC Err"),
1131/* 1*/ DC_EE2(DC_LCB_ERR, handle_lcb_err, "LCB Err"),
1132/* 2*/ DC_EE2(DC_DC8051_ERR, handle_8051_interrupt, "DC8051 Interrupt"),
1133/* 3*/ /* dc_lbm_int - special, see is_dc_int() */
1134 /* the rest are reserved */
1135};
1136
1137struct cntr_entry {
1138 /*
1139 * counter name
1140 */
1141 char *name;
1142
1143 /*
1144 * csr to read for name (if applicable)
1145 */
1146 u64 csr;
1147
1148 /*
1149 * offset into dd or ppd to store the counter's value
1150 */
1151 int offset;
1152
1153 /*
1154 * flags
1155 */
1156 u8 flags;
1157
1158 /*
1159 * accessor for stat element, context either dd or ppd
1160 */
Jubin John17fb4f22016-02-14 20:21:52 -08001161 u64 (*rw_cntr)(const struct cntr_entry *, void *context, int vl,
1162 int mode, u64 data);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001163};
1164
1165#define C_RCV_HDR_OVF_FIRST C_RCV_HDR_OVF_0
1166#define C_RCV_HDR_OVF_LAST C_RCV_HDR_OVF_159
1167
1168#define CNTR_ELEM(name, csr, offset, flags, accessor) \
1169{ \
1170 name, \
1171 csr, \
1172 offset, \
1173 flags, \
1174 accessor \
1175}
1176
1177/* 32bit RXE */
1178#define RXE32_PORT_CNTR_ELEM(name, counter, flags) \
1179CNTR_ELEM(#name, \
1180 (counter * 8 + RCV_COUNTER_ARRAY32), \
1181 0, flags | CNTR_32BIT, \
1182 port_access_u32_csr)
1183
1184#define RXE32_DEV_CNTR_ELEM(name, counter, flags) \
1185CNTR_ELEM(#name, \
1186 (counter * 8 + RCV_COUNTER_ARRAY32), \
1187 0, flags | CNTR_32BIT, \
1188 dev_access_u32_csr)
1189
1190/* 64bit RXE */
1191#define RXE64_PORT_CNTR_ELEM(name, counter, flags) \
1192CNTR_ELEM(#name, \
1193 (counter * 8 + RCV_COUNTER_ARRAY64), \
1194 0, flags, \
1195 port_access_u64_csr)
1196
1197#define RXE64_DEV_CNTR_ELEM(name, counter, flags) \
1198CNTR_ELEM(#name, \
1199 (counter * 8 + RCV_COUNTER_ARRAY64), \
1200 0, flags, \
1201 dev_access_u64_csr)
1202
1203#define OVR_LBL(ctx) C_RCV_HDR_OVF_ ## ctx
1204#define OVR_ELM(ctx) \
1205CNTR_ELEM("RcvHdrOvr" #ctx, \
Jubin John8638b772016-02-14 20:19:24 -08001206 (RCV_HDR_OVFL_CNT + ctx * 0x100), \
Mike Marciniszyn77241052015-07-30 15:17:43 -04001207 0, CNTR_NORMAL, port_access_u64_csr)
1208
1209/* 32bit TXE */
1210#define TXE32_PORT_CNTR_ELEM(name, counter, flags) \
1211CNTR_ELEM(#name, \
1212 (counter * 8 + SEND_COUNTER_ARRAY32), \
1213 0, flags | CNTR_32BIT, \
1214 port_access_u32_csr)
1215
1216/* 64bit TXE */
1217#define TXE64_PORT_CNTR_ELEM(name, counter, flags) \
1218CNTR_ELEM(#name, \
1219 (counter * 8 + SEND_COUNTER_ARRAY64), \
1220 0, flags, \
1221 port_access_u64_csr)
1222
1223# define TX64_DEV_CNTR_ELEM(name, counter, flags) \
1224CNTR_ELEM(#name,\
1225 counter * 8 + SEND_COUNTER_ARRAY64, \
1226 0, \
1227 flags, \
1228 dev_access_u64_csr)
1229
1230/* CCE */
1231#define CCE_PERF_DEV_CNTR_ELEM(name, counter, flags) \
1232CNTR_ELEM(#name, \
1233 (counter * 8 + CCE_COUNTER_ARRAY32), \
1234 0, flags | CNTR_32BIT, \
1235 dev_access_u32_csr)
1236
1237#define CCE_INT_DEV_CNTR_ELEM(name, counter, flags) \
1238CNTR_ELEM(#name, \
1239 (counter * 8 + CCE_INT_COUNTER_ARRAY32), \
1240 0, flags | CNTR_32BIT, \
1241 dev_access_u32_csr)
1242
1243/* DC */
1244#define DC_PERF_CNTR(name, counter, flags) \
1245CNTR_ELEM(#name, \
1246 counter, \
1247 0, \
1248 flags, \
1249 dev_access_u64_csr)
1250
1251#define DC_PERF_CNTR_LCB(name, counter, flags) \
1252CNTR_ELEM(#name, \
1253 counter, \
1254 0, \
1255 flags, \
1256 dc_access_lcb_cntr)
1257
1258/* ibp counters */
1259#define SW_IBP_CNTR(name, cntr) \
1260CNTR_ELEM(#name, \
1261 0, \
1262 0, \
1263 CNTR_SYNTH, \
1264 access_ibp_##cntr)
1265
1266u64 read_csr(const struct hfi1_devdata *dd, u32 offset)
1267{
Mike Marciniszyn77241052015-07-30 15:17:43 -04001268 if (dd->flags & HFI1_PRESENT) {
Bhaktipriya Shridhar6d210ee2016-02-25 17:22:11 +05301269 return readq((void __iomem *)dd->kregbase + offset);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001270 }
1271 return -1;
1272}
1273
1274void write_csr(const struct hfi1_devdata *dd, u32 offset, u64 value)
1275{
1276 if (dd->flags & HFI1_PRESENT)
1277 writeq(value, (void __iomem *)dd->kregbase + offset);
1278}
1279
1280void __iomem *get_csr_addr(
1281 struct hfi1_devdata *dd,
1282 u32 offset)
1283{
1284 return (void __iomem *)dd->kregbase + offset;
1285}
1286
1287static inline u64 read_write_csr(const struct hfi1_devdata *dd, u32 csr,
1288 int mode, u64 value)
1289{
1290 u64 ret;
1291
Mike Marciniszyn77241052015-07-30 15:17:43 -04001292 if (mode == CNTR_MODE_R) {
1293 ret = read_csr(dd, csr);
1294 } else if (mode == CNTR_MODE_W) {
1295 write_csr(dd, csr, value);
1296 ret = value;
1297 } else {
1298 dd_dev_err(dd, "Invalid cntr register access mode");
1299 return 0;
1300 }
1301
1302 hfi1_cdbg(CNTR, "csr 0x%x val 0x%llx mode %d", csr, ret, mode);
1303 return ret;
1304}
1305
1306/* Dev Access */
1307static u64 dev_access_u32_csr(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001308 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001309{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301310 struct hfi1_devdata *dd = context;
Vennila Megavannana699c6c2016-01-11 18:30:56 -05001311 u64 csr = entry->csr;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001312
Vennila Megavannana699c6c2016-01-11 18:30:56 -05001313 if (entry->flags & CNTR_SDMA) {
1314 if (vl == CNTR_INVALID_VL)
1315 return 0;
1316 csr += 0x100 * vl;
1317 } else {
1318 if (vl != CNTR_INVALID_VL)
1319 return 0;
1320 }
1321 return read_write_csr(dd, csr, mode, data);
1322}
1323
1324static u64 access_sde_err_cnt(const struct cntr_entry *entry,
1325 void *context, int idx, int mode, u64 data)
1326{
1327 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1328
1329 if (dd->per_sdma && idx < dd->num_sdma)
1330 return dd->per_sdma[idx].err_cnt;
1331 return 0;
1332}
1333
1334static u64 access_sde_int_cnt(const struct cntr_entry *entry,
1335 void *context, int idx, int mode, u64 data)
1336{
1337 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1338
1339 if (dd->per_sdma && idx < dd->num_sdma)
1340 return dd->per_sdma[idx].sdma_int_cnt;
1341 return 0;
1342}
1343
1344static u64 access_sde_idle_int_cnt(const struct cntr_entry *entry,
1345 void *context, int idx, int mode, u64 data)
1346{
1347 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1348
1349 if (dd->per_sdma && idx < dd->num_sdma)
1350 return dd->per_sdma[idx].idle_int_cnt;
1351 return 0;
1352}
1353
1354static u64 access_sde_progress_int_cnt(const struct cntr_entry *entry,
1355 void *context, int idx, int mode,
1356 u64 data)
1357{
1358 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1359
1360 if (dd->per_sdma && idx < dd->num_sdma)
1361 return dd->per_sdma[idx].progress_int_cnt;
1362 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001363}
1364
1365static u64 dev_access_u64_csr(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001366 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001367{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301368 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001369
1370 u64 val = 0;
1371 u64 csr = entry->csr;
1372
1373 if (entry->flags & CNTR_VL) {
1374 if (vl == CNTR_INVALID_VL)
1375 return 0;
1376 csr += 8 * vl;
1377 } else {
1378 if (vl != CNTR_INVALID_VL)
1379 return 0;
1380 }
1381
1382 val = read_write_csr(dd, csr, mode, data);
1383 return val;
1384}
1385
1386static u64 dc_access_lcb_cntr(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001387 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001388{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301389 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001390 u32 csr = entry->csr;
1391 int ret = 0;
1392
1393 if (vl != CNTR_INVALID_VL)
1394 return 0;
1395 if (mode == CNTR_MODE_R)
1396 ret = read_lcb_csr(dd, csr, &data);
1397 else if (mode == CNTR_MODE_W)
1398 ret = write_lcb_csr(dd, csr, data);
1399
1400 if (ret) {
1401 dd_dev_err(dd, "Could not acquire LCB for counter 0x%x", csr);
1402 return 0;
1403 }
1404
1405 hfi1_cdbg(CNTR, "csr 0x%x val 0x%llx mode %d", csr, data, mode);
1406 return data;
1407}
1408
1409/* Port Access */
1410static u64 port_access_u32_csr(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001411 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001412{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301413 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001414
1415 if (vl != CNTR_INVALID_VL)
1416 return 0;
1417 return read_write_csr(ppd->dd, entry->csr, mode, data);
1418}
1419
1420static u64 port_access_u64_csr(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001421 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001422{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301423 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001424 u64 val;
1425 u64 csr = entry->csr;
1426
1427 if (entry->flags & CNTR_VL) {
1428 if (vl == CNTR_INVALID_VL)
1429 return 0;
1430 csr += 8 * vl;
1431 } else {
1432 if (vl != CNTR_INVALID_VL)
1433 return 0;
1434 }
1435 val = read_write_csr(ppd->dd, csr, mode, data);
1436 return val;
1437}
1438
1439/* Software defined */
1440static inline u64 read_write_sw(struct hfi1_devdata *dd, u64 *cntr, int mode,
1441 u64 data)
1442{
1443 u64 ret;
1444
1445 if (mode == CNTR_MODE_R) {
1446 ret = *cntr;
1447 } else if (mode == CNTR_MODE_W) {
1448 *cntr = data;
1449 ret = data;
1450 } else {
1451 dd_dev_err(dd, "Invalid cntr sw access mode");
1452 return 0;
1453 }
1454
1455 hfi1_cdbg(CNTR, "val 0x%llx mode %d", ret, mode);
1456
1457 return ret;
1458}
1459
1460static u64 access_sw_link_dn_cnt(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001461 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001462{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301463 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001464
1465 if (vl != CNTR_INVALID_VL)
1466 return 0;
1467 return read_write_sw(ppd->dd, &ppd->link_downed, mode, data);
1468}
1469
1470static u64 access_sw_link_up_cnt(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001471 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001472{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301473 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001474
1475 if (vl != CNTR_INVALID_VL)
1476 return 0;
1477 return read_write_sw(ppd->dd, &ppd->link_up, mode, data);
1478}
1479
Dean Luick6d014532015-12-01 15:38:23 -05001480static u64 access_sw_unknown_frame_cnt(const struct cntr_entry *entry,
1481 void *context, int vl, int mode,
1482 u64 data)
1483{
1484 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context;
1485
1486 if (vl != CNTR_INVALID_VL)
1487 return 0;
1488 return read_write_sw(ppd->dd, &ppd->unknown_frame_count, mode, data);
1489}
1490
Mike Marciniszyn77241052015-07-30 15:17:43 -04001491static u64 access_sw_xmit_discards(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001492 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001493{
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08001494 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context;
1495 u64 zero = 0;
1496 u64 *counter;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001497
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08001498 if (vl == CNTR_INVALID_VL)
1499 counter = &ppd->port_xmit_discards;
1500 else if (vl >= 0 && vl < C_VL_COUNT)
1501 counter = &ppd->port_xmit_discards_vl[vl];
1502 else
1503 counter = &zero;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001504
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08001505 return read_write_sw(ppd->dd, counter, mode, data);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001506}
1507
1508static u64 access_xmit_constraint_errs(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001509 void *context, int vl, int mode,
1510 u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001511{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301512 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001513
1514 if (vl != CNTR_INVALID_VL)
1515 return 0;
1516
1517 return read_write_sw(ppd->dd, &ppd->port_xmit_constraint_errors,
1518 mode, data);
1519}
1520
1521static u64 access_rcv_constraint_errs(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001522 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001523{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301524 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001525
1526 if (vl != CNTR_INVALID_VL)
1527 return 0;
1528
1529 return read_write_sw(ppd->dd, &ppd->port_rcv_constraint_errors,
1530 mode, data);
1531}
1532
1533u64 get_all_cpu_total(u64 __percpu *cntr)
1534{
1535 int cpu;
1536 u64 counter = 0;
1537
1538 for_each_possible_cpu(cpu)
1539 counter += *per_cpu_ptr(cntr, cpu);
1540 return counter;
1541}
1542
1543static u64 read_write_cpu(struct hfi1_devdata *dd, u64 *z_val,
1544 u64 __percpu *cntr,
1545 int vl, int mode, u64 data)
1546{
Mike Marciniszyn77241052015-07-30 15:17:43 -04001547 u64 ret = 0;
1548
1549 if (vl != CNTR_INVALID_VL)
1550 return 0;
1551
1552 if (mode == CNTR_MODE_R) {
1553 ret = get_all_cpu_total(cntr) - *z_val;
1554 } else if (mode == CNTR_MODE_W) {
1555 /* A write can only zero the counter */
1556 if (data == 0)
1557 *z_val = get_all_cpu_total(cntr);
1558 else
1559 dd_dev_err(dd, "Per CPU cntrs can only be zeroed");
1560 } else {
1561 dd_dev_err(dd, "Invalid cntr sw cpu access mode");
1562 return 0;
1563 }
1564
1565 return ret;
1566}
1567
1568static u64 access_sw_cpu_intr(const struct cntr_entry *entry,
1569 void *context, int vl, int mode, u64 data)
1570{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301571 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001572
1573 return read_write_cpu(dd, &dd->z_int_counter, dd->int_counter, vl,
1574 mode, data);
1575}
1576
1577static u64 access_sw_cpu_rcv_limit(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001578 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001579{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301580 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001581
1582 return read_write_cpu(dd, &dd->z_rcv_limit, dd->rcv_limit, vl,
1583 mode, data);
1584}
1585
1586static u64 access_sw_pio_wait(const struct cntr_entry *entry,
1587 void *context, int vl, int mode, u64 data)
1588{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301589 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001590
1591 return dd->verbs_dev.n_piowait;
1592}
1593
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001594static u64 access_sw_pio_drain(const struct cntr_entry *entry,
1595 void *context, int vl, int mode, u64 data)
1596{
1597 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1598
1599 return dd->verbs_dev.n_piodrain;
1600}
1601
Mike Marciniszyn77241052015-07-30 15:17:43 -04001602static u64 access_sw_vtx_wait(const struct cntr_entry *entry,
1603 void *context, int vl, int mode, u64 data)
1604{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301605 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001606
1607 return dd->verbs_dev.n_txwait;
1608}
1609
1610static u64 access_sw_kmem_wait(const struct cntr_entry *entry,
1611 void *context, int vl, int mode, u64 data)
1612{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301613 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001614
1615 return dd->verbs_dev.n_kmem_wait;
1616}
1617
Dean Luickb4219222015-10-26 10:28:35 -04001618static u64 access_sw_send_schedule(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001619 void *context, int vl, int mode, u64 data)
Dean Luickb4219222015-10-26 10:28:35 -04001620{
1621 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1622
Vennila Megavannan89abfc82016-02-03 14:34:07 -08001623 return read_write_cpu(dd, &dd->z_send_schedule, dd->send_schedule, vl,
1624 mode, data);
Dean Luickb4219222015-10-26 10:28:35 -04001625}
1626
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05001627/* Software counters for the error status bits within MISC_ERR_STATUS */
1628static u64 access_misc_pll_lock_fail_err_cnt(const struct cntr_entry *entry,
1629 void *context, int vl, int mode,
1630 u64 data)
1631{
1632 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1633
1634 return dd->misc_err_status_cnt[12];
1635}
1636
1637static u64 access_misc_mbist_fail_err_cnt(const struct cntr_entry *entry,
1638 void *context, int vl, int mode,
1639 u64 data)
1640{
1641 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1642
1643 return dd->misc_err_status_cnt[11];
1644}
1645
1646static u64 access_misc_invalid_eep_cmd_err_cnt(const struct cntr_entry *entry,
1647 void *context, int vl, int mode,
1648 u64 data)
1649{
1650 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1651
1652 return dd->misc_err_status_cnt[10];
1653}
1654
1655static u64 access_misc_efuse_done_parity_err_cnt(const struct cntr_entry *entry,
1656 void *context, int vl,
1657 int mode, u64 data)
1658{
1659 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1660
1661 return dd->misc_err_status_cnt[9];
1662}
1663
1664static u64 access_misc_efuse_write_err_cnt(const struct cntr_entry *entry,
1665 void *context, int vl, int mode,
1666 u64 data)
1667{
1668 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1669
1670 return dd->misc_err_status_cnt[8];
1671}
1672
1673static u64 access_misc_efuse_read_bad_addr_err_cnt(
1674 const struct cntr_entry *entry,
1675 void *context, int vl, int mode, u64 data)
1676{
1677 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1678
1679 return dd->misc_err_status_cnt[7];
1680}
1681
1682static u64 access_misc_efuse_csr_parity_err_cnt(const struct cntr_entry *entry,
1683 void *context, int vl,
1684 int mode, u64 data)
1685{
1686 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1687
1688 return dd->misc_err_status_cnt[6];
1689}
1690
1691static u64 access_misc_fw_auth_failed_err_cnt(const struct cntr_entry *entry,
1692 void *context, int vl, int mode,
1693 u64 data)
1694{
1695 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1696
1697 return dd->misc_err_status_cnt[5];
1698}
1699
1700static u64 access_misc_key_mismatch_err_cnt(const struct cntr_entry *entry,
1701 void *context, int vl, int mode,
1702 u64 data)
1703{
1704 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1705
1706 return dd->misc_err_status_cnt[4];
1707}
1708
1709static u64 access_misc_sbus_write_failed_err_cnt(const struct cntr_entry *entry,
1710 void *context, int vl,
1711 int mode, u64 data)
1712{
1713 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1714
1715 return dd->misc_err_status_cnt[3];
1716}
1717
1718static u64 access_misc_csr_write_bad_addr_err_cnt(
1719 const struct cntr_entry *entry,
1720 void *context, int vl, int mode, u64 data)
1721{
1722 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1723
1724 return dd->misc_err_status_cnt[2];
1725}
1726
1727static u64 access_misc_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
1728 void *context, int vl,
1729 int mode, u64 data)
1730{
1731 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1732
1733 return dd->misc_err_status_cnt[1];
1734}
1735
1736static u64 access_misc_csr_parity_err_cnt(const struct cntr_entry *entry,
1737 void *context, int vl, int mode,
1738 u64 data)
1739{
1740 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1741
1742 return dd->misc_err_status_cnt[0];
1743}
1744
1745/*
1746 * Software counter for the aggregate of
1747 * individual CceErrStatus counters
1748 */
1749static u64 access_sw_cce_err_status_aggregated_cnt(
1750 const struct cntr_entry *entry,
1751 void *context, int vl, int mode, u64 data)
1752{
1753 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1754
1755 return dd->sw_cce_err_status_aggregate;
1756}
1757
1758/*
1759 * Software counters corresponding to each of the
1760 * error status bits within CceErrStatus
1761 */
1762static u64 access_cce_msix_csr_parity_err_cnt(const struct cntr_entry *entry,
1763 void *context, int vl, int mode,
1764 u64 data)
1765{
1766 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1767
1768 return dd->cce_err_status_cnt[40];
1769}
1770
1771static u64 access_cce_int_map_unc_err_cnt(const struct cntr_entry *entry,
1772 void *context, int vl, int mode,
1773 u64 data)
1774{
1775 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1776
1777 return dd->cce_err_status_cnt[39];
1778}
1779
1780static u64 access_cce_int_map_cor_err_cnt(const struct cntr_entry *entry,
1781 void *context, int vl, int mode,
1782 u64 data)
1783{
1784 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1785
1786 return dd->cce_err_status_cnt[38];
1787}
1788
1789static u64 access_cce_msix_table_unc_err_cnt(const struct cntr_entry *entry,
1790 void *context, int vl, int mode,
1791 u64 data)
1792{
1793 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1794
1795 return dd->cce_err_status_cnt[37];
1796}
1797
1798static u64 access_cce_msix_table_cor_err_cnt(const struct cntr_entry *entry,
1799 void *context, int vl, int mode,
1800 u64 data)
1801{
1802 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1803
1804 return dd->cce_err_status_cnt[36];
1805}
1806
1807static u64 access_cce_rxdma_conv_fifo_parity_err_cnt(
1808 const struct cntr_entry *entry,
1809 void *context, int vl, int mode, u64 data)
1810{
1811 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1812
1813 return dd->cce_err_status_cnt[35];
1814}
1815
1816static u64 access_cce_rcpl_async_fifo_parity_err_cnt(
1817 const struct cntr_entry *entry,
1818 void *context, int vl, int mode, u64 data)
1819{
1820 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1821
1822 return dd->cce_err_status_cnt[34];
1823}
1824
1825static u64 access_cce_seg_write_bad_addr_err_cnt(const struct cntr_entry *entry,
1826 void *context, int vl,
1827 int mode, u64 data)
1828{
1829 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1830
1831 return dd->cce_err_status_cnt[33];
1832}
1833
1834static u64 access_cce_seg_read_bad_addr_err_cnt(const struct cntr_entry *entry,
1835 void *context, int vl, int mode,
1836 u64 data)
1837{
1838 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1839
1840 return dd->cce_err_status_cnt[32];
1841}
1842
1843static u64 access_la_triggered_cnt(const struct cntr_entry *entry,
1844 void *context, int vl, int mode, u64 data)
1845{
1846 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1847
1848 return dd->cce_err_status_cnt[31];
1849}
1850
1851static u64 access_cce_trgt_cpl_timeout_err_cnt(const struct cntr_entry *entry,
1852 void *context, int vl, int mode,
1853 u64 data)
1854{
1855 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1856
1857 return dd->cce_err_status_cnt[30];
1858}
1859
1860static u64 access_pcic_receive_parity_err_cnt(const struct cntr_entry *entry,
1861 void *context, int vl, int mode,
1862 u64 data)
1863{
1864 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1865
1866 return dd->cce_err_status_cnt[29];
1867}
1868
1869static u64 access_pcic_transmit_back_parity_err_cnt(
1870 const struct cntr_entry *entry,
1871 void *context, int vl, int mode, u64 data)
1872{
1873 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1874
1875 return dd->cce_err_status_cnt[28];
1876}
1877
1878static u64 access_pcic_transmit_front_parity_err_cnt(
1879 const struct cntr_entry *entry,
1880 void *context, int vl, int mode, u64 data)
1881{
1882 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1883
1884 return dd->cce_err_status_cnt[27];
1885}
1886
1887static u64 access_pcic_cpl_dat_q_unc_err_cnt(const struct cntr_entry *entry,
1888 void *context, int vl, int mode,
1889 u64 data)
1890{
1891 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1892
1893 return dd->cce_err_status_cnt[26];
1894}
1895
1896static u64 access_pcic_cpl_hd_q_unc_err_cnt(const struct cntr_entry *entry,
1897 void *context, int vl, int mode,
1898 u64 data)
1899{
1900 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1901
1902 return dd->cce_err_status_cnt[25];
1903}
1904
1905static u64 access_pcic_post_dat_q_unc_err_cnt(const struct cntr_entry *entry,
1906 void *context, int vl, int mode,
1907 u64 data)
1908{
1909 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1910
1911 return dd->cce_err_status_cnt[24];
1912}
1913
1914static u64 access_pcic_post_hd_q_unc_err_cnt(const struct cntr_entry *entry,
1915 void *context, int vl, int mode,
1916 u64 data)
1917{
1918 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1919
1920 return dd->cce_err_status_cnt[23];
1921}
1922
1923static u64 access_pcic_retry_sot_mem_unc_err_cnt(const struct cntr_entry *entry,
1924 void *context, int vl,
1925 int mode, u64 data)
1926{
1927 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1928
1929 return dd->cce_err_status_cnt[22];
1930}
1931
1932static u64 access_pcic_retry_mem_unc_err(const struct cntr_entry *entry,
1933 void *context, int vl, int mode,
1934 u64 data)
1935{
1936 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1937
1938 return dd->cce_err_status_cnt[21];
1939}
1940
1941static u64 access_pcic_n_post_dat_q_parity_err_cnt(
1942 const struct cntr_entry *entry,
1943 void *context, int vl, int mode, u64 data)
1944{
1945 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1946
1947 return dd->cce_err_status_cnt[20];
1948}
1949
1950static u64 access_pcic_n_post_h_q_parity_err_cnt(const struct cntr_entry *entry,
1951 void *context, int vl,
1952 int mode, u64 data)
1953{
1954 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1955
1956 return dd->cce_err_status_cnt[19];
1957}
1958
1959static u64 access_pcic_cpl_dat_q_cor_err_cnt(const struct cntr_entry *entry,
1960 void *context, int vl, int mode,
1961 u64 data)
1962{
1963 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1964
1965 return dd->cce_err_status_cnt[18];
1966}
1967
1968static u64 access_pcic_cpl_hd_q_cor_err_cnt(const struct cntr_entry *entry,
1969 void *context, int vl, int mode,
1970 u64 data)
1971{
1972 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1973
1974 return dd->cce_err_status_cnt[17];
1975}
1976
1977static u64 access_pcic_post_dat_q_cor_err_cnt(const struct cntr_entry *entry,
1978 void *context, int vl, int mode,
1979 u64 data)
1980{
1981 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1982
1983 return dd->cce_err_status_cnt[16];
1984}
1985
1986static u64 access_pcic_post_hd_q_cor_err_cnt(const struct cntr_entry *entry,
1987 void *context, int vl, int mode,
1988 u64 data)
1989{
1990 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1991
1992 return dd->cce_err_status_cnt[15];
1993}
1994
1995static u64 access_pcic_retry_sot_mem_cor_err_cnt(const struct cntr_entry *entry,
1996 void *context, int vl,
1997 int mode, u64 data)
1998{
1999 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2000
2001 return dd->cce_err_status_cnt[14];
2002}
2003
2004static u64 access_pcic_retry_mem_cor_err_cnt(const struct cntr_entry *entry,
2005 void *context, int vl, int mode,
2006 u64 data)
2007{
2008 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2009
2010 return dd->cce_err_status_cnt[13];
2011}
2012
2013static u64 access_cce_cli1_async_fifo_dbg_parity_err_cnt(
2014 const struct cntr_entry *entry,
2015 void *context, int vl, int mode, u64 data)
2016{
2017 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2018
2019 return dd->cce_err_status_cnt[12];
2020}
2021
2022static u64 access_cce_cli1_async_fifo_rxdma_parity_err_cnt(
2023 const struct cntr_entry *entry,
2024 void *context, int vl, int mode, u64 data)
2025{
2026 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2027
2028 return dd->cce_err_status_cnt[11];
2029}
2030
2031static u64 access_cce_cli1_async_fifo_sdma_hd_parity_err_cnt(
2032 const struct cntr_entry *entry,
2033 void *context, int vl, int mode, u64 data)
2034{
2035 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2036
2037 return dd->cce_err_status_cnt[10];
2038}
2039
2040static u64 access_cce_cl1_async_fifo_pio_crdt_parity_err_cnt(
2041 const struct cntr_entry *entry,
2042 void *context, int vl, int mode, u64 data)
2043{
2044 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2045
2046 return dd->cce_err_status_cnt[9];
2047}
2048
2049static u64 access_cce_cli2_async_fifo_parity_err_cnt(
2050 const struct cntr_entry *entry,
2051 void *context, int vl, int mode, u64 data)
2052{
2053 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2054
2055 return dd->cce_err_status_cnt[8];
2056}
2057
2058static u64 access_cce_csr_cfg_bus_parity_err_cnt(const struct cntr_entry *entry,
2059 void *context, int vl,
2060 int mode, u64 data)
2061{
2062 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2063
2064 return dd->cce_err_status_cnt[7];
2065}
2066
2067static u64 access_cce_cli0_async_fifo_parity_err_cnt(
2068 const struct cntr_entry *entry,
2069 void *context, int vl, int mode, u64 data)
2070{
2071 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2072
2073 return dd->cce_err_status_cnt[6];
2074}
2075
2076static u64 access_cce_rspd_data_parity_err_cnt(const struct cntr_entry *entry,
2077 void *context, int vl, int mode,
2078 u64 data)
2079{
2080 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2081
2082 return dd->cce_err_status_cnt[5];
2083}
2084
2085static u64 access_cce_trgt_access_err_cnt(const struct cntr_entry *entry,
2086 void *context, int vl, int mode,
2087 u64 data)
2088{
2089 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2090
2091 return dd->cce_err_status_cnt[4];
2092}
2093
2094static u64 access_cce_trgt_async_fifo_parity_err_cnt(
2095 const struct cntr_entry *entry,
2096 void *context, int vl, int mode, u64 data)
2097{
2098 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2099
2100 return dd->cce_err_status_cnt[3];
2101}
2102
2103static u64 access_cce_csr_write_bad_addr_err_cnt(const struct cntr_entry *entry,
2104 void *context, int vl,
2105 int mode, u64 data)
2106{
2107 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2108
2109 return dd->cce_err_status_cnt[2];
2110}
2111
2112static u64 access_cce_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
2113 void *context, int vl,
2114 int mode, u64 data)
2115{
2116 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2117
2118 return dd->cce_err_status_cnt[1];
2119}
2120
2121static u64 access_ccs_csr_parity_err_cnt(const struct cntr_entry *entry,
2122 void *context, int vl, int mode,
2123 u64 data)
2124{
2125 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2126
2127 return dd->cce_err_status_cnt[0];
2128}
2129
2130/*
2131 * Software counters corresponding to each of the
2132 * error status bits within RcvErrStatus
2133 */
2134static u64 access_rx_csr_parity_err_cnt(const struct cntr_entry *entry,
2135 void *context, int vl, int mode,
2136 u64 data)
2137{
2138 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2139
2140 return dd->rcv_err_status_cnt[63];
2141}
2142
2143static u64 access_rx_csr_write_bad_addr_err_cnt(const struct cntr_entry *entry,
2144 void *context, int vl,
2145 int mode, u64 data)
2146{
2147 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2148
2149 return dd->rcv_err_status_cnt[62];
2150}
2151
2152static u64 access_rx_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
2153 void *context, int vl, int mode,
2154 u64 data)
2155{
2156 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2157
2158 return dd->rcv_err_status_cnt[61];
2159}
2160
2161static u64 access_rx_dma_csr_unc_err_cnt(const struct cntr_entry *entry,
2162 void *context, int vl, int mode,
2163 u64 data)
2164{
2165 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2166
2167 return dd->rcv_err_status_cnt[60];
2168}
2169
2170static u64 access_rx_dma_dq_fsm_encoding_err_cnt(const struct cntr_entry *entry,
2171 void *context, int vl,
2172 int mode, u64 data)
2173{
2174 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2175
2176 return dd->rcv_err_status_cnt[59];
2177}
2178
2179static u64 access_rx_dma_eq_fsm_encoding_err_cnt(const struct cntr_entry *entry,
2180 void *context, int vl,
2181 int mode, u64 data)
2182{
2183 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2184
2185 return dd->rcv_err_status_cnt[58];
2186}
2187
2188static u64 access_rx_dma_csr_parity_err_cnt(const struct cntr_entry *entry,
2189 void *context, int vl, int mode,
2190 u64 data)
2191{
2192 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2193
2194 return dd->rcv_err_status_cnt[57];
2195}
2196
2197static u64 access_rx_rbuf_data_cor_err_cnt(const struct cntr_entry *entry,
2198 void *context, int vl, int mode,
2199 u64 data)
2200{
2201 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2202
2203 return dd->rcv_err_status_cnt[56];
2204}
2205
2206static u64 access_rx_rbuf_data_unc_err_cnt(const struct cntr_entry *entry,
2207 void *context, int vl, int mode,
2208 u64 data)
2209{
2210 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2211
2212 return dd->rcv_err_status_cnt[55];
2213}
2214
2215static u64 access_rx_dma_data_fifo_rd_cor_err_cnt(
2216 const struct cntr_entry *entry,
2217 void *context, int vl, int mode, u64 data)
2218{
2219 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2220
2221 return dd->rcv_err_status_cnt[54];
2222}
2223
2224static u64 access_rx_dma_data_fifo_rd_unc_err_cnt(
2225 const struct cntr_entry *entry,
2226 void *context, int vl, int mode, u64 data)
2227{
2228 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2229
2230 return dd->rcv_err_status_cnt[53];
2231}
2232
2233static u64 access_rx_dma_hdr_fifo_rd_cor_err_cnt(const struct cntr_entry *entry,
2234 void *context, int vl,
2235 int mode, u64 data)
2236{
2237 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2238
2239 return dd->rcv_err_status_cnt[52];
2240}
2241
2242static u64 access_rx_dma_hdr_fifo_rd_unc_err_cnt(const struct cntr_entry *entry,
2243 void *context, int vl,
2244 int mode, u64 data)
2245{
2246 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2247
2248 return dd->rcv_err_status_cnt[51];
2249}
2250
2251static u64 access_rx_rbuf_desc_part2_cor_err_cnt(const struct cntr_entry *entry,
2252 void *context, int vl,
2253 int mode, u64 data)
2254{
2255 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2256
2257 return dd->rcv_err_status_cnt[50];
2258}
2259
2260static u64 access_rx_rbuf_desc_part2_unc_err_cnt(const struct cntr_entry *entry,
2261 void *context, int vl,
2262 int mode, u64 data)
2263{
2264 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2265
2266 return dd->rcv_err_status_cnt[49];
2267}
2268
2269static u64 access_rx_rbuf_desc_part1_cor_err_cnt(const struct cntr_entry *entry,
2270 void *context, int vl,
2271 int mode, u64 data)
2272{
2273 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2274
2275 return dd->rcv_err_status_cnt[48];
2276}
2277
2278static u64 access_rx_rbuf_desc_part1_unc_err_cnt(const struct cntr_entry *entry,
2279 void *context, int vl,
2280 int mode, u64 data)
2281{
2282 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2283
2284 return dd->rcv_err_status_cnt[47];
2285}
2286
2287static u64 access_rx_hq_intr_fsm_err_cnt(const struct cntr_entry *entry,
2288 void *context, int vl, int mode,
2289 u64 data)
2290{
2291 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2292
2293 return dd->rcv_err_status_cnt[46];
2294}
2295
2296static u64 access_rx_hq_intr_csr_parity_err_cnt(
2297 const struct cntr_entry *entry,
2298 void *context, int vl, int mode, u64 data)
2299{
2300 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2301
2302 return dd->rcv_err_status_cnt[45];
2303}
2304
2305static u64 access_rx_lookup_csr_parity_err_cnt(
2306 const struct cntr_entry *entry,
2307 void *context, int vl, int mode, u64 data)
2308{
2309 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2310
2311 return dd->rcv_err_status_cnt[44];
2312}
2313
2314static u64 access_rx_lookup_rcv_array_cor_err_cnt(
2315 const struct cntr_entry *entry,
2316 void *context, int vl, int mode, u64 data)
2317{
2318 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2319
2320 return dd->rcv_err_status_cnt[43];
2321}
2322
2323static u64 access_rx_lookup_rcv_array_unc_err_cnt(
2324 const struct cntr_entry *entry,
2325 void *context, int vl, int mode, u64 data)
2326{
2327 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2328
2329 return dd->rcv_err_status_cnt[42];
2330}
2331
2332static u64 access_rx_lookup_des_part2_parity_err_cnt(
2333 const struct cntr_entry *entry,
2334 void *context, int vl, int mode, u64 data)
2335{
2336 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2337
2338 return dd->rcv_err_status_cnt[41];
2339}
2340
2341static u64 access_rx_lookup_des_part1_unc_cor_err_cnt(
2342 const struct cntr_entry *entry,
2343 void *context, int vl, int mode, u64 data)
2344{
2345 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2346
2347 return dd->rcv_err_status_cnt[40];
2348}
2349
2350static u64 access_rx_lookup_des_part1_unc_err_cnt(
2351 const struct cntr_entry *entry,
2352 void *context, int vl, int mode, u64 data)
2353{
2354 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2355
2356 return dd->rcv_err_status_cnt[39];
2357}
2358
2359static u64 access_rx_rbuf_next_free_buf_cor_err_cnt(
2360 const struct cntr_entry *entry,
2361 void *context, int vl, int mode, u64 data)
2362{
2363 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2364
2365 return dd->rcv_err_status_cnt[38];
2366}
2367
2368static u64 access_rx_rbuf_next_free_buf_unc_err_cnt(
2369 const struct cntr_entry *entry,
2370 void *context, int vl, int mode, u64 data)
2371{
2372 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2373
2374 return dd->rcv_err_status_cnt[37];
2375}
2376
2377static u64 access_rbuf_fl_init_wr_addr_parity_err_cnt(
2378 const struct cntr_entry *entry,
2379 void *context, int vl, int mode, u64 data)
2380{
2381 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2382
2383 return dd->rcv_err_status_cnt[36];
2384}
2385
2386static u64 access_rx_rbuf_fl_initdone_parity_err_cnt(
2387 const struct cntr_entry *entry,
2388 void *context, int vl, int mode, u64 data)
2389{
2390 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2391
2392 return dd->rcv_err_status_cnt[35];
2393}
2394
2395static u64 access_rx_rbuf_fl_write_addr_parity_err_cnt(
2396 const struct cntr_entry *entry,
2397 void *context, int vl, int mode, u64 data)
2398{
2399 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2400
2401 return dd->rcv_err_status_cnt[34];
2402}
2403
2404static u64 access_rx_rbuf_fl_rd_addr_parity_err_cnt(
2405 const struct cntr_entry *entry,
2406 void *context, int vl, int mode, u64 data)
2407{
2408 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2409
2410 return dd->rcv_err_status_cnt[33];
2411}
2412
2413static u64 access_rx_rbuf_empty_err_cnt(const struct cntr_entry *entry,
2414 void *context, int vl, int mode,
2415 u64 data)
2416{
2417 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2418
2419 return dd->rcv_err_status_cnt[32];
2420}
2421
2422static u64 access_rx_rbuf_full_err_cnt(const struct cntr_entry *entry,
2423 void *context, int vl, int mode,
2424 u64 data)
2425{
2426 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2427
2428 return dd->rcv_err_status_cnt[31];
2429}
2430
2431static u64 access_rbuf_bad_lookup_err_cnt(const struct cntr_entry *entry,
2432 void *context, int vl, int mode,
2433 u64 data)
2434{
2435 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2436
2437 return dd->rcv_err_status_cnt[30];
2438}
2439
2440static u64 access_rbuf_ctx_id_parity_err_cnt(const struct cntr_entry *entry,
2441 void *context, int vl, int mode,
2442 u64 data)
2443{
2444 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2445
2446 return dd->rcv_err_status_cnt[29];
2447}
2448
2449static u64 access_rbuf_csr_qeopdw_parity_err_cnt(const struct cntr_entry *entry,
2450 void *context, int vl,
2451 int mode, u64 data)
2452{
2453 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2454
2455 return dd->rcv_err_status_cnt[28];
2456}
2457
2458static u64 access_rx_rbuf_csr_q_num_of_pkt_parity_err_cnt(
2459 const struct cntr_entry *entry,
2460 void *context, int vl, int mode, u64 data)
2461{
2462 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2463
2464 return dd->rcv_err_status_cnt[27];
2465}
2466
2467static u64 access_rx_rbuf_csr_q_t1_ptr_parity_err_cnt(
2468 const struct cntr_entry *entry,
2469 void *context, int vl, int mode, u64 data)
2470{
2471 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2472
2473 return dd->rcv_err_status_cnt[26];
2474}
2475
2476static u64 access_rx_rbuf_csr_q_hd_ptr_parity_err_cnt(
2477 const struct cntr_entry *entry,
2478 void *context, int vl, int mode, u64 data)
2479{
2480 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2481
2482 return dd->rcv_err_status_cnt[25];
2483}
2484
2485static u64 access_rx_rbuf_csr_q_vld_bit_parity_err_cnt(
2486 const struct cntr_entry *entry,
2487 void *context, int vl, int mode, u64 data)
2488{
2489 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2490
2491 return dd->rcv_err_status_cnt[24];
2492}
2493
2494static u64 access_rx_rbuf_csr_q_next_buf_parity_err_cnt(
2495 const struct cntr_entry *entry,
2496 void *context, int vl, int mode, u64 data)
2497{
2498 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2499
2500 return dd->rcv_err_status_cnt[23];
2501}
2502
2503static u64 access_rx_rbuf_csr_q_ent_cnt_parity_err_cnt(
2504 const struct cntr_entry *entry,
2505 void *context, int vl, int mode, u64 data)
2506{
2507 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2508
2509 return dd->rcv_err_status_cnt[22];
2510}
2511
2512static u64 access_rx_rbuf_csr_q_head_buf_num_parity_err_cnt(
2513 const struct cntr_entry *entry,
2514 void *context, int vl, int mode, u64 data)
2515{
2516 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2517
2518 return dd->rcv_err_status_cnt[21];
2519}
2520
2521static u64 access_rx_rbuf_block_list_read_cor_err_cnt(
2522 const struct cntr_entry *entry,
2523 void *context, int vl, int mode, u64 data)
2524{
2525 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2526
2527 return dd->rcv_err_status_cnt[20];
2528}
2529
2530static u64 access_rx_rbuf_block_list_read_unc_err_cnt(
2531 const struct cntr_entry *entry,
2532 void *context, int vl, int mode, u64 data)
2533{
2534 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2535
2536 return dd->rcv_err_status_cnt[19];
2537}
2538
2539static u64 access_rx_rbuf_lookup_des_cor_err_cnt(const struct cntr_entry *entry,
2540 void *context, int vl,
2541 int mode, u64 data)
2542{
2543 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2544
2545 return dd->rcv_err_status_cnt[18];
2546}
2547
2548static u64 access_rx_rbuf_lookup_des_unc_err_cnt(const struct cntr_entry *entry,
2549 void *context, int vl,
2550 int mode, u64 data)
2551{
2552 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2553
2554 return dd->rcv_err_status_cnt[17];
2555}
2556
2557static u64 access_rx_rbuf_lookup_des_reg_unc_cor_err_cnt(
2558 const struct cntr_entry *entry,
2559 void *context, int vl, int mode, u64 data)
2560{
2561 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2562
2563 return dd->rcv_err_status_cnt[16];
2564}
2565
2566static u64 access_rx_rbuf_lookup_des_reg_unc_err_cnt(
2567 const struct cntr_entry *entry,
2568 void *context, int vl, int mode, u64 data)
2569{
2570 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2571
2572 return dd->rcv_err_status_cnt[15];
2573}
2574
2575static u64 access_rx_rbuf_free_list_cor_err_cnt(const struct cntr_entry *entry,
2576 void *context, int vl,
2577 int mode, u64 data)
2578{
2579 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2580
2581 return dd->rcv_err_status_cnt[14];
2582}
2583
2584static u64 access_rx_rbuf_free_list_unc_err_cnt(const struct cntr_entry *entry,
2585 void *context, int vl,
2586 int mode, u64 data)
2587{
2588 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2589
2590 return dd->rcv_err_status_cnt[13];
2591}
2592
2593static u64 access_rx_rcv_fsm_encoding_err_cnt(const struct cntr_entry *entry,
2594 void *context, int vl, int mode,
2595 u64 data)
2596{
2597 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2598
2599 return dd->rcv_err_status_cnt[12];
2600}
2601
2602static u64 access_rx_dma_flag_cor_err_cnt(const struct cntr_entry *entry,
2603 void *context, int vl, int mode,
2604 u64 data)
2605{
2606 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2607
2608 return dd->rcv_err_status_cnt[11];
2609}
2610
2611static u64 access_rx_dma_flag_unc_err_cnt(const struct cntr_entry *entry,
2612 void *context, int vl, int mode,
2613 u64 data)
2614{
2615 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2616
2617 return dd->rcv_err_status_cnt[10];
2618}
2619
2620static u64 access_rx_dc_sop_eop_parity_err_cnt(const struct cntr_entry *entry,
2621 void *context, int vl, int mode,
2622 u64 data)
2623{
2624 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2625
2626 return dd->rcv_err_status_cnt[9];
2627}
2628
2629static u64 access_rx_rcv_csr_parity_err_cnt(const struct cntr_entry *entry,
2630 void *context, int vl, int mode,
2631 u64 data)
2632{
2633 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2634
2635 return dd->rcv_err_status_cnt[8];
2636}
2637
2638static u64 access_rx_rcv_qp_map_table_cor_err_cnt(
2639 const struct cntr_entry *entry,
2640 void *context, int vl, int mode, u64 data)
2641{
2642 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2643
2644 return dd->rcv_err_status_cnt[7];
2645}
2646
2647static u64 access_rx_rcv_qp_map_table_unc_err_cnt(
2648 const struct cntr_entry *entry,
2649 void *context, int vl, int mode, u64 data)
2650{
2651 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2652
2653 return dd->rcv_err_status_cnt[6];
2654}
2655
2656static u64 access_rx_rcv_data_cor_err_cnt(const struct cntr_entry *entry,
2657 void *context, int vl, int mode,
2658 u64 data)
2659{
2660 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2661
2662 return dd->rcv_err_status_cnt[5];
2663}
2664
2665static u64 access_rx_rcv_data_unc_err_cnt(const struct cntr_entry *entry,
2666 void *context, int vl, int mode,
2667 u64 data)
2668{
2669 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2670
2671 return dd->rcv_err_status_cnt[4];
2672}
2673
2674static u64 access_rx_rcv_hdr_cor_err_cnt(const struct cntr_entry *entry,
2675 void *context, int vl, int mode,
2676 u64 data)
2677{
2678 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2679
2680 return dd->rcv_err_status_cnt[3];
2681}
2682
2683static u64 access_rx_rcv_hdr_unc_err_cnt(const struct cntr_entry *entry,
2684 void *context, int vl, int mode,
2685 u64 data)
2686{
2687 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2688
2689 return dd->rcv_err_status_cnt[2];
2690}
2691
2692static u64 access_rx_dc_intf_parity_err_cnt(const struct cntr_entry *entry,
2693 void *context, int vl, int mode,
2694 u64 data)
2695{
2696 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2697
2698 return dd->rcv_err_status_cnt[1];
2699}
2700
2701static u64 access_rx_dma_csr_cor_err_cnt(const struct cntr_entry *entry,
2702 void *context, int vl, int mode,
2703 u64 data)
2704{
2705 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2706
2707 return dd->rcv_err_status_cnt[0];
2708}
2709
2710/*
2711 * Software counters corresponding to each of the
2712 * error status bits within SendPioErrStatus
2713 */
2714static u64 access_pio_pec_sop_head_parity_err_cnt(
2715 const struct cntr_entry *entry,
2716 void *context, int vl, int mode, u64 data)
2717{
2718 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2719
2720 return dd->send_pio_err_status_cnt[35];
2721}
2722
2723static u64 access_pio_pcc_sop_head_parity_err_cnt(
2724 const struct cntr_entry *entry,
2725 void *context, int vl, int mode, u64 data)
2726{
2727 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2728
2729 return dd->send_pio_err_status_cnt[34];
2730}
2731
2732static u64 access_pio_last_returned_cnt_parity_err_cnt(
2733 const struct cntr_entry *entry,
2734 void *context, int vl, int mode, u64 data)
2735{
2736 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2737
2738 return dd->send_pio_err_status_cnt[33];
2739}
2740
2741static u64 access_pio_current_free_cnt_parity_err_cnt(
2742 const struct cntr_entry *entry,
2743 void *context, int vl, int mode, u64 data)
2744{
2745 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2746
2747 return dd->send_pio_err_status_cnt[32];
2748}
2749
2750static u64 access_pio_reserved_31_err_cnt(const struct cntr_entry *entry,
2751 void *context, int vl, int mode,
2752 u64 data)
2753{
2754 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2755
2756 return dd->send_pio_err_status_cnt[31];
2757}
2758
2759static u64 access_pio_reserved_30_err_cnt(const struct cntr_entry *entry,
2760 void *context, int vl, int mode,
2761 u64 data)
2762{
2763 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2764
2765 return dd->send_pio_err_status_cnt[30];
2766}
2767
2768static u64 access_pio_ppmc_sop_len_err_cnt(const struct cntr_entry *entry,
2769 void *context, int vl, int mode,
2770 u64 data)
2771{
2772 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2773
2774 return dd->send_pio_err_status_cnt[29];
2775}
2776
2777static u64 access_pio_ppmc_bqc_mem_parity_err_cnt(
2778 const struct cntr_entry *entry,
2779 void *context, int vl, int mode, u64 data)
2780{
2781 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2782
2783 return dd->send_pio_err_status_cnt[28];
2784}
2785
2786static u64 access_pio_vl_fifo_parity_err_cnt(const struct cntr_entry *entry,
2787 void *context, int vl, int mode,
2788 u64 data)
2789{
2790 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2791
2792 return dd->send_pio_err_status_cnt[27];
2793}
2794
2795static u64 access_pio_vlf_sop_parity_err_cnt(const struct cntr_entry *entry,
2796 void *context, int vl, int mode,
2797 u64 data)
2798{
2799 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2800
2801 return dd->send_pio_err_status_cnt[26];
2802}
2803
2804static u64 access_pio_vlf_v1_len_parity_err_cnt(const struct cntr_entry *entry,
2805 void *context, int vl,
2806 int mode, u64 data)
2807{
2808 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2809
2810 return dd->send_pio_err_status_cnt[25];
2811}
2812
2813static u64 access_pio_block_qw_count_parity_err_cnt(
2814 const struct cntr_entry *entry,
2815 void *context, int vl, int mode, u64 data)
2816{
2817 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2818
2819 return dd->send_pio_err_status_cnt[24];
2820}
2821
2822static u64 access_pio_write_qw_valid_parity_err_cnt(
2823 const struct cntr_entry *entry,
2824 void *context, int vl, int mode, u64 data)
2825{
2826 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2827
2828 return dd->send_pio_err_status_cnt[23];
2829}
2830
2831static u64 access_pio_state_machine_err_cnt(const struct cntr_entry *entry,
2832 void *context, int vl, int mode,
2833 u64 data)
2834{
2835 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2836
2837 return dd->send_pio_err_status_cnt[22];
2838}
2839
2840static u64 access_pio_write_data_parity_err_cnt(const struct cntr_entry *entry,
2841 void *context, int vl,
2842 int mode, u64 data)
2843{
2844 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2845
2846 return dd->send_pio_err_status_cnt[21];
2847}
2848
2849static u64 access_pio_host_addr_mem_cor_err_cnt(const struct cntr_entry *entry,
2850 void *context, int vl,
2851 int mode, u64 data)
2852{
2853 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2854
2855 return dd->send_pio_err_status_cnt[20];
2856}
2857
2858static u64 access_pio_host_addr_mem_unc_err_cnt(const struct cntr_entry *entry,
2859 void *context, int vl,
2860 int mode, u64 data)
2861{
2862 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2863
2864 return dd->send_pio_err_status_cnt[19];
2865}
2866
2867static u64 access_pio_pkt_evict_sm_or_arb_sm_err_cnt(
2868 const struct cntr_entry *entry,
2869 void *context, int vl, int mode, u64 data)
2870{
2871 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2872
2873 return dd->send_pio_err_status_cnt[18];
2874}
2875
2876static u64 access_pio_init_sm_in_err_cnt(const struct cntr_entry *entry,
2877 void *context, int vl, int mode,
2878 u64 data)
2879{
2880 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2881
2882 return dd->send_pio_err_status_cnt[17];
2883}
2884
2885static u64 access_pio_ppmc_pbl_fifo_err_cnt(const struct cntr_entry *entry,
2886 void *context, int vl, int mode,
2887 u64 data)
2888{
2889 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2890
2891 return dd->send_pio_err_status_cnt[16];
2892}
2893
2894static u64 access_pio_credit_ret_fifo_parity_err_cnt(
2895 const struct cntr_entry *entry,
2896 void *context, int vl, int mode, u64 data)
2897{
2898 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2899
2900 return dd->send_pio_err_status_cnt[15];
2901}
2902
2903static u64 access_pio_v1_len_mem_bank1_cor_err_cnt(
2904 const struct cntr_entry *entry,
2905 void *context, int vl, int mode, u64 data)
2906{
2907 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2908
2909 return dd->send_pio_err_status_cnt[14];
2910}
2911
2912static u64 access_pio_v1_len_mem_bank0_cor_err_cnt(
2913 const struct cntr_entry *entry,
2914 void *context, int vl, int mode, u64 data)
2915{
2916 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2917
2918 return dd->send_pio_err_status_cnt[13];
2919}
2920
2921static u64 access_pio_v1_len_mem_bank1_unc_err_cnt(
2922 const struct cntr_entry *entry,
2923 void *context, int vl, int mode, u64 data)
2924{
2925 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2926
2927 return dd->send_pio_err_status_cnt[12];
2928}
2929
2930static u64 access_pio_v1_len_mem_bank0_unc_err_cnt(
2931 const struct cntr_entry *entry,
2932 void *context, int vl, int mode, u64 data)
2933{
2934 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2935
2936 return dd->send_pio_err_status_cnt[11];
2937}
2938
2939static u64 access_pio_sm_pkt_reset_parity_err_cnt(
2940 const struct cntr_entry *entry,
2941 void *context, int vl, int mode, u64 data)
2942{
2943 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2944
2945 return dd->send_pio_err_status_cnt[10];
2946}
2947
2948static u64 access_pio_pkt_evict_fifo_parity_err_cnt(
2949 const struct cntr_entry *entry,
2950 void *context, int vl, int mode, u64 data)
2951{
2952 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2953
2954 return dd->send_pio_err_status_cnt[9];
2955}
2956
2957static u64 access_pio_sbrdctrl_crrel_fifo_parity_err_cnt(
2958 const struct cntr_entry *entry,
2959 void *context, int vl, int mode, u64 data)
2960{
2961 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2962
2963 return dd->send_pio_err_status_cnt[8];
2964}
2965
2966static u64 access_pio_sbrdctl_crrel_parity_err_cnt(
2967 const struct cntr_entry *entry,
2968 void *context, int vl, int mode, u64 data)
2969{
2970 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2971
2972 return dd->send_pio_err_status_cnt[7];
2973}
2974
2975static u64 access_pio_pec_fifo_parity_err_cnt(const struct cntr_entry *entry,
2976 void *context, int vl, int mode,
2977 u64 data)
2978{
2979 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2980
2981 return dd->send_pio_err_status_cnt[6];
2982}
2983
2984static u64 access_pio_pcc_fifo_parity_err_cnt(const struct cntr_entry *entry,
2985 void *context, int vl, int mode,
2986 u64 data)
2987{
2988 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2989
2990 return dd->send_pio_err_status_cnt[5];
2991}
2992
2993static u64 access_pio_sb_mem_fifo1_err_cnt(const struct cntr_entry *entry,
2994 void *context, int vl, int mode,
2995 u64 data)
2996{
2997 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2998
2999 return dd->send_pio_err_status_cnt[4];
3000}
3001
3002static u64 access_pio_sb_mem_fifo0_err_cnt(const struct cntr_entry *entry,
3003 void *context, int vl, int mode,
3004 u64 data)
3005{
3006 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3007
3008 return dd->send_pio_err_status_cnt[3];
3009}
3010
3011static u64 access_pio_csr_parity_err_cnt(const struct cntr_entry *entry,
3012 void *context, int vl, int mode,
3013 u64 data)
3014{
3015 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3016
3017 return dd->send_pio_err_status_cnt[2];
3018}
3019
3020static u64 access_pio_write_addr_parity_err_cnt(const struct cntr_entry *entry,
3021 void *context, int vl,
3022 int mode, u64 data)
3023{
3024 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3025
3026 return dd->send_pio_err_status_cnt[1];
3027}
3028
3029static u64 access_pio_write_bad_ctxt_err_cnt(const struct cntr_entry *entry,
3030 void *context, int vl, int mode,
3031 u64 data)
3032{
3033 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3034
3035 return dd->send_pio_err_status_cnt[0];
3036}
3037
3038/*
3039 * Software counters corresponding to each of the
3040 * error status bits within SendDmaErrStatus
3041 */
3042static u64 access_sdma_pcie_req_tracking_cor_err_cnt(
3043 const struct cntr_entry *entry,
3044 void *context, int vl, int mode, u64 data)
3045{
3046 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3047
3048 return dd->send_dma_err_status_cnt[3];
3049}
3050
3051static u64 access_sdma_pcie_req_tracking_unc_err_cnt(
3052 const struct cntr_entry *entry,
3053 void *context, int vl, int mode, u64 data)
3054{
3055 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3056
3057 return dd->send_dma_err_status_cnt[2];
3058}
3059
3060static u64 access_sdma_csr_parity_err_cnt(const struct cntr_entry *entry,
3061 void *context, int vl, int mode,
3062 u64 data)
3063{
3064 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3065
3066 return dd->send_dma_err_status_cnt[1];
3067}
3068
3069static u64 access_sdma_rpy_tag_err_cnt(const struct cntr_entry *entry,
3070 void *context, int vl, int mode,
3071 u64 data)
3072{
3073 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3074
3075 return dd->send_dma_err_status_cnt[0];
3076}
3077
3078/*
3079 * Software counters corresponding to each of the
3080 * error status bits within SendEgressErrStatus
3081 */
3082static u64 access_tx_read_pio_memory_csr_unc_err_cnt(
3083 const struct cntr_entry *entry,
3084 void *context, int vl, int mode, u64 data)
3085{
3086 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3087
3088 return dd->send_egress_err_status_cnt[63];
3089}
3090
3091static u64 access_tx_read_sdma_memory_csr_err_cnt(
3092 const struct cntr_entry *entry,
3093 void *context, int vl, int mode, u64 data)
3094{
3095 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3096
3097 return dd->send_egress_err_status_cnt[62];
3098}
3099
3100static u64 access_tx_egress_fifo_cor_err_cnt(const struct cntr_entry *entry,
3101 void *context, int vl, int mode,
3102 u64 data)
3103{
3104 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3105
3106 return dd->send_egress_err_status_cnt[61];
3107}
3108
3109static u64 access_tx_read_pio_memory_cor_err_cnt(const struct cntr_entry *entry,
3110 void *context, int vl,
3111 int mode, u64 data)
3112{
3113 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3114
3115 return dd->send_egress_err_status_cnt[60];
3116}
3117
3118static u64 access_tx_read_sdma_memory_cor_err_cnt(
3119 const struct cntr_entry *entry,
3120 void *context, int vl, int mode, u64 data)
3121{
3122 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3123
3124 return dd->send_egress_err_status_cnt[59];
3125}
3126
3127static u64 access_tx_sb_hdr_cor_err_cnt(const struct cntr_entry *entry,
3128 void *context, int vl, int mode,
3129 u64 data)
3130{
3131 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3132
3133 return dd->send_egress_err_status_cnt[58];
3134}
3135
3136static u64 access_tx_credit_overrun_err_cnt(const struct cntr_entry *entry,
3137 void *context, int vl, int mode,
3138 u64 data)
3139{
3140 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3141
3142 return dd->send_egress_err_status_cnt[57];
3143}
3144
3145static u64 access_tx_launch_fifo8_cor_err_cnt(const struct cntr_entry *entry,
3146 void *context, int vl, int mode,
3147 u64 data)
3148{
3149 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3150
3151 return dd->send_egress_err_status_cnt[56];
3152}
3153
3154static u64 access_tx_launch_fifo7_cor_err_cnt(const struct cntr_entry *entry,
3155 void *context, int vl, int mode,
3156 u64 data)
3157{
3158 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3159
3160 return dd->send_egress_err_status_cnt[55];
3161}
3162
3163static u64 access_tx_launch_fifo6_cor_err_cnt(const struct cntr_entry *entry,
3164 void *context, int vl, int mode,
3165 u64 data)
3166{
3167 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3168
3169 return dd->send_egress_err_status_cnt[54];
3170}
3171
3172static u64 access_tx_launch_fifo5_cor_err_cnt(const struct cntr_entry *entry,
3173 void *context, int vl, int mode,
3174 u64 data)
3175{
3176 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3177
3178 return dd->send_egress_err_status_cnt[53];
3179}
3180
3181static u64 access_tx_launch_fifo4_cor_err_cnt(const struct cntr_entry *entry,
3182 void *context, int vl, int mode,
3183 u64 data)
3184{
3185 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3186
3187 return dd->send_egress_err_status_cnt[52];
3188}
3189
3190static u64 access_tx_launch_fifo3_cor_err_cnt(const struct cntr_entry *entry,
3191 void *context, int vl, int mode,
3192 u64 data)
3193{
3194 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3195
3196 return dd->send_egress_err_status_cnt[51];
3197}
3198
3199static u64 access_tx_launch_fifo2_cor_err_cnt(const struct cntr_entry *entry,
3200 void *context, int vl, int mode,
3201 u64 data)
3202{
3203 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3204
3205 return dd->send_egress_err_status_cnt[50];
3206}
3207
3208static u64 access_tx_launch_fifo1_cor_err_cnt(const struct cntr_entry *entry,
3209 void *context, int vl, int mode,
3210 u64 data)
3211{
3212 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3213
3214 return dd->send_egress_err_status_cnt[49];
3215}
3216
3217static u64 access_tx_launch_fifo0_cor_err_cnt(const struct cntr_entry *entry,
3218 void *context, int vl, int mode,
3219 u64 data)
3220{
3221 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3222
3223 return dd->send_egress_err_status_cnt[48];
3224}
3225
3226static u64 access_tx_credit_return_vl_err_cnt(const struct cntr_entry *entry,
3227 void *context, int vl, int mode,
3228 u64 data)
3229{
3230 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3231
3232 return dd->send_egress_err_status_cnt[47];
3233}
3234
3235static u64 access_tx_hcrc_insertion_err_cnt(const struct cntr_entry *entry,
3236 void *context, int vl, int mode,
3237 u64 data)
3238{
3239 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3240
3241 return dd->send_egress_err_status_cnt[46];
3242}
3243
3244static u64 access_tx_egress_fifo_unc_err_cnt(const struct cntr_entry *entry,
3245 void *context, int vl, int mode,
3246 u64 data)
3247{
3248 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3249
3250 return dd->send_egress_err_status_cnt[45];
3251}
3252
3253static u64 access_tx_read_pio_memory_unc_err_cnt(const struct cntr_entry *entry,
3254 void *context, int vl,
3255 int mode, u64 data)
3256{
3257 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3258
3259 return dd->send_egress_err_status_cnt[44];
3260}
3261
3262static u64 access_tx_read_sdma_memory_unc_err_cnt(
3263 const struct cntr_entry *entry,
3264 void *context, int vl, int mode, u64 data)
3265{
3266 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3267
3268 return dd->send_egress_err_status_cnt[43];
3269}
3270
3271static u64 access_tx_sb_hdr_unc_err_cnt(const struct cntr_entry *entry,
3272 void *context, int vl, int mode,
3273 u64 data)
3274{
3275 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3276
3277 return dd->send_egress_err_status_cnt[42];
3278}
3279
3280static u64 access_tx_credit_return_partiy_err_cnt(
3281 const struct cntr_entry *entry,
3282 void *context, int vl, int mode, u64 data)
3283{
3284 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3285
3286 return dd->send_egress_err_status_cnt[41];
3287}
3288
3289static u64 access_tx_launch_fifo8_unc_or_parity_err_cnt(
3290 const struct cntr_entry *entry,
3291 void *context, int vl, int mode, u64 data)
3292{
3293 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3294
3295 return dd->send_egress_err_status_cnt[40];
3296}
3297
3298static u64 access_tx_launch_fifo7_unc_or_parity_err_cnt(
3299 const struct cntr_entry *entry,
3300 void *context, int vl, int mode, u64 data)
3301{
3302 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3303
3304 return dd->send_egress_err_status_cnt[39];
3305}
3306
3307static u64 access_tx_launch_fifo6_unc_or_parity_err_cnt(
3308 const struct cntr_entry *entry,
3309 void *context, int vl, int mode, u64 data)
3310{
3311 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3312
3313 return dd->send_egress_err_status_cnt[38];
3314}
3315
3316static u64 access_tx_launch_fifo5_unc_or_parity_err_cnt(
3317 const struct cntr_entry *entry,
3318 void *context, int vl, int mode, u64 data)
3319{
3320 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3321
3322 return dd->send_egress_err_status_cnt[37];
3323}
3324
3325static u64 access_tx_launch_fifo4_unc_or_parity_err_cnt(
3326 const struct cntr_entry *entry,
3327 void *context, int vl, int mode, u64 data)
3328{
3329 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3330
3331 return dd->send_egress_err_status_cnt[36];
3332}
3333
3334static u64 access_tx_launch_fifo3_unc_or_parity_err_cnt(
3335 const struct cntr_entry *entry,
3336 void *context, int vl, int mode, u64 data)
3337{
3338 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3339
3340 return dd->send_egress_err_status_cnt[35];
3341}
3342
3343static u64 access_tx_launch_fifo2_unc_or_parity_err_cnt(
3344 const struct cntr_entry *entry,
3345 void *context, int vl, int mode, u64 data)
3346{
3347 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3348
3349 return dd->send_egress_err_status_cnt[34];
3350}
3351
3352static u64 access_tx_launch_fifo1_unc_or_parity_err_cnt(
3353 const struct cntr_entry *entry,
3354 void *context, int vl, int mode, u64 data)
3355{
3356 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3357
3358 return dd->send_egress_err_status_cnt[33];
3359}
3360
3361static u64 access_tx_launch_fifo0_unc_or_parity_err_cnt(
3362 const struct cntr_entry *entry,
3363 void *context, int vl, int mode, u64 data)
3364{
3365 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3366
3367 return dd->send_egress_err_status_cnt[32];
3368}
3369
3370static u64 access_tx_sdma15_disallowed_packet_err_cnt(
3371 const struct cntr_entry *entry,
3372 void *context, int vl, int mode, u64 data)
3373{
3374 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3375
3376 return dd->send_egress_err_status_cnt[31];
3377}
3378
3379static u64 access_tx_sdma14_disallowed_packet_err_cnt(
3380 const struct cntr_entry *entry,
3381 void *context, int vl, int mode, u64 data)
3382{
3383 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3384
3385 return dd->send_egress_err_status_cnt[30];
3386}
3387
3388static u64 access_tx_sdma13_disallowed_packet_err_cnt(
3389 const struct cntr_entry *entry,
3390 void *context, int vl, int mode, u64 data)
3391{
3392 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3393
3394 return dd->send_egress_err_status_cnt[29];
3395}
3396
3397static u64 access_tx_sdma12_disallowed_packet_err_cnt(
3398 const struct cntr_entry *entry,
3399 void *context, int vl, int mode, u64 data)
3400{
3401 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3402
3403 return dd->send_egress_err_status_cnt[28];
3404}
3405
3406static u64 access_tx_sdma11_disallowed_packet_err_cnt(
3407 const struct cntr_entry *entry,
3408 void *context, int vl, int mode, u64 data)
3409{
3410 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3411
3412 return dd->send_egress_err_status_cnt[27];
3413}
3414
3415static u64 access_tx_sdma10_disallowed_packet_err_cnt(
3416 const struct cntr_entry *entry,
3417 void *context, int vl, int mode, u64 data)
3418{
3419 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3420
3421 return dd->send_egress_err_status_cnt[26];
3422}
3423
3424static u64 access_tx_sdma9_disallowed_packet_err_cnt(
3425 const struct cntr_entry *entry,
3426 void *context, int vl, int mode, u64 data)
3427{
3428 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3429
3430 return dd->send_egress_err_status_cnt[25];
3431}
3432
3433static u64 access_tx_sdma8_disallowed_packet_err_cnt(
3434 const struct cntr_entry *entry,
3435 void *context, int vl, int mode, u64 data)
3436{
3437 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3438
3439 return dd->send_egress_err_status_cnt[24];
3440}
3441
3442static u64 access_tx_sdma7_disallowed_packet_err_cnt(
3443 const struct cntr_entry *entry,
3444 void *context, int vl, int mode, u64 data)
3445{
3446 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3447
3448 return dd->send_egress_err_status_cnt[23];
3449}
3450
3451static u64 access_tx_sdma6_disallowed_packet_err_cnt(
3452 const struct cntr_entry *entry,
3453 void *context, int vl, int mode, u64 data)
3454{
3455 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3456
3457 return dd->send_egress_err_status_cnt[22];
3458}
3459
3460static u64 access_tx_sdma5_disallowed_packet_err_cnt(
3461 const struct cntr_entry *entry,
3462 void *context, int vl, int mode, u64 data)
3463{
3464 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3465
3466 return dd->send_egress_err_status_cnt[21];
3467}
3468
3469static u64 access_tx_sdma4_disallowed_packet_err_cnt(
3470 const struct cntr_entry *entry,
3471 void *context, int vl, int mode, u64 data)
3472{
3473 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3474
3475 return dd->send_egress_err_status_cnt[20];
3476}
3477
3478static u64 access_tx_sdma3_disallowed_packet_err_cnt(
3479 const struct cntr_entry *entry,
3480 void *context, int vl, int mode, u64 data)
3481{
3482 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3483
3484 return dd->send_egress_err_status_cnt[19];
3485}
3486
3487static u64 access_tx_sdma2_disallowed_packet_err_cnt(
3488 const struct cntr_entry *entry,
3489 void *context, int vl, int mode, u64 data)
3490{
3491 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3492
3493 return dd->send_egress_err_status_cnt[18];
3494}
3495
3496static u64 access_tx_sdma1_disallowed_packet_err_cnt(
3497 const struct cntr_entry *entry,
3498 void *context, int vl, int mode, u64 data)
3499{
3500 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3501
3502 return dd->send_egress_err_status_cnt[17];
3503}
3504
3505static u64 access_tx_sdma0_disallowed_packet_err_cnt(
3506 const struct cntr_entry *entry,
3507 void *context, int vl, int mode, u64 data)
3508{
3509 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3510
3511 return dd->send_egress_err_status_cnt[16];
3512}
3513
3514static u64 access_tx_config_parity_err_cnt(const struct cntr_entry *entry,
3515 void *context, int vl, int mode,
3516 u64 data)
3517{
3518 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3519
3520 return dd->send_egress_err_status_cnt[15];
3521}
3522
3523static u64 access_tx_sbrd_ctl_csr_parity_err_cnt(const struct cntr_entry *entry,
3524 void *context, int vl,
3525 int mode, u64 data)
3526{
3527 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3528
3529 return dd->send_egress_err_status_cnt[14];
3530}
3531
3532static u64 access_tx_launch_csr_parity_err_cnt(const struct cntr_entry *entry,
3533 void *context, int vl, int mode,
3534 u64 data)
3535{
3536 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3537
3538 return dd->send_egress_err_status_cnt[13];
3539}
3540
3541static u64 access_tx_illegal_vl_err_cnt(const struct cntr_entry *entry,
3542 void *context, int vl, int mode,
3543 u64 data)
3544{
3545 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3546
3547 return dd->send_egress_err_status_cnt[12];
3548}
3549
3550static u64 access_tx_sbrd_ctl_state_machine_parity_err_cnt(
3551 const struct cntr_entry *entry,
3552 void *context, int vl, int mode, u64 data)
3553{
3554 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3555
3556 return dd->send_egress_err_status_cnt[11];
3557}
3558
3559static u64 access_egress_reserved_10_err_cnt(const struct cntr_entry *entry,
3560 void *context, int vl, int mode,
3561 u64 data)
3562{
3563 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3564
3565 return dd->send_egress_err_status_cnt[10];
3566}
3567
3568static u64 access_egress_reserved_9_err_cnt(const struct cntr_entry *entry,
3569 void *context, int vl, int mode,
3570 u64 data)
3571{
3572 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3573
3574 return dd->send_egress_err_status_cnt[9];
3575}
3576
3577static u64 access_tx_sdma_launch_intf_parity_err_cnt(
3578 const struct cntr_entry *entry,
3579 void *context, int vl, int mode, u64 data)
3580{
3581 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3582
3583 return dd->send_egress_err_status_cnt[8];
3584}
3585
3586static u64 access_tx_pio_launch_intf_parity_err_cnt(
3587 const struct cntr_entry *entry,
3588 void *context, int vl, int mode, u64 data)
3589{
3590 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3591
3592 return dd->send_egress_err_status_cnt[7];
3593}
3594
3595static u64 access_egress_reserved_6_err_cnt(const struct cntr_entry *entry,
3596 void *context, int vl, int mode,
3597 u64 data)
3598{
3599 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3600
3601 return dd->send_egress_err_status_cnt[6];
3602}
3603
3604static u64 access_tx_incorrect_link_state_err_cnt(
3605 const struct cntr_entry *entry,
3606 void *context, int vl, int mode, u64 data)
3607{
3608 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3609
3610 return dd->send_egress_err_status_cnt[5];
3611}
3612
3613static u64 access_tx_linkdown_err_cnt(const struct cntr_entry *entry,
3614 void *context, int vl, int mode,
3615 u64 data)
3616{
3617 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3618
3619 return dd->send_egress_err_status_cnt[4];
3620}
3621
3622static u64 access_tx_egress_fifi_underrun_or_parity_err_cnt(
3623 const struct cntr_entry *entry,
3624 void *context, int vl, int mode, u64 data)
3625{
3626 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3627
3628 return dd->send_egress_err_status_cnt[3];
3629}
3630
3631static u64 access_egress_reserved_2_err_cnt(const struct cntr_entry *entry,
3632 void *context, int vl, int mode,
3633 u64 data)
3634{
3635 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3636
3637 return dd->send_egress_err_status_cnt[2];
3638}
3639
3640static u64 access_tx_pkt_integrity_mem_unc_err_cnt(
3641 const struct cntr_entry *entry,
3642 void *context, int vl, int mode, u64 data)
3643{
3644 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3645
3646 return dd->send_egress_err_status_cnt[1];
3647}
3648
3649static u64 access_tx_pkt_integrity_mem_cor_err_cnt(
3650 const struct cntr_entry *entry,
3651 void *context, int vl, int mode, u64 data)
3652{
3653 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3654
3655 return dd->send_egress_err_status_cnt[0];
3656}
3657
3658/*
3659 * Software counters corresponding to each of the
3660 * error status bits within SendErrStatus
3661 */
3662static u64 access_send_csr_write_bad_addr_err_cnt(
3663 const struct cntr_entry *entry,
3664 void *context, int vl, int mode, u64 data)
3665{
3666 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3667
3668 return dd->send_err_status_cnt[2];
3669}
3670
3671static u64 access_send_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
3672 void *context, int vl,
3673 int mode, u64 data)
3674{
3675 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3676
3677 return dd->send_err_status_cnt[1];
3678}
3679
3680static u64 access_send_csr_parity_cnt(const struct cntr_entry *entry,
3681 void *context, int vl, int mode,
3682 u64 data)
3683{
3684 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3685
3686 return dd->send_err_status_cnt[0];
3687}
3688
3689/*
3690 * Software counters corresponding to each of the
3691 * error status bits within SendCtxtErrStatus
3692 */
3693static u64 access_pio_write_out_of_bounds_err_cnt(
3694 const struct cntr_entry *entry,
3695 void *context, int vl, int mode, u64 data)
3696{
3697 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3698
3699 return dd->sw_ctxt_err_status_cnt[4];
3700}
3701
3702static u64 access_pio_write_overflow_err_cnt(const struct cntr_entry *entry,
3703 void *context, int vl, int mode,
3704 u64 data)
3705{
3706 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3707
3708 return dd->sw_ctxt_err_status_cnt[3];
3709}
3710
3711static u64 access_pio_write_crosses_boundary_err_cnt(
3712 const struct cntr_entry *entry,
3713 void *context, int vl, int mode, u64 data)
3714{
3715 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3716
3717 return dd->sw_ctxt_err_status_cnt[2];
3718}
3719
3720static u64 access_pio_disallowed_packet_err_cnt(const struct cntr_entry *entry,
3721 void *context, int vl,
3722 int mode, u64 data)
3723{
3724 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3725
3726 return dd->sw_ctxt_err_status_cnt[1];
3727}
3728
3729static u64 access_pio_inconsistent_sop_err_cnt(const struct cntr_entry *entry,
3730 void *context, int vl, int mode,
3731 u64 data)
3732{
3733 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3734
3735 return dd->sw_ctxt_err_status_cnt[0];
3736}
3737
3738/*
3739 * Software counters corresponding to each of the
3740 * error status bits within SendDmaEngErrStatus
3741 */
3742static u64 access_sdma_header_request_fifo_cor_err_cnt(
3743 const struct cntr_entry *entry,
3744 void *context, int vl, int mode, u64 data)
3745{
3746 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3747
3748 return dd->sw_send_dma_eng_err_status_cnt[23];
3749}
3750
3751static u64 access_sdma_header_storage_cor_err_cnt(
3752 const struct cntr_entry *entry,
3753 void *context, int vl, int mode, u64 data)
3754{
3755 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3756
3757 return dd->sw_send_dma_eng_err_status_cnt[22];
3758}
3759
3760static u64 access_sdma_packet_tracking_cor_err_cnt(
3761 const struct cntr_entry *entry,
3762 void *context, int vl, int mode, u64 data)
3763{
3764 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3765
3766 return dd->sw_send_dma_eng_err_status_cnt[21];
3767}
3768
3769static u64 access_sdma_assembly_cor_err_cnt(const struct cntr_entry *entry,
3770 void *context, int vl, int mode,
3771 u64 data)
3772{
3773 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3774
3775 return dd->sw_send_dma_eng_err_status_cnt[20];
3776}
3777
3778static u64 access_sdma_desc_table_cor_err_cnt(const struct cntr_entry *entry,
3779 void *context, int vl, int mode,
3780 u64 data)
3781{
3782 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3783
3784 return dd->sw_send_dma_eng_err_status_cnt[19];
3785}
3786
3787static u64 access_sdma_header_request_fifo_unc_err_cnt(
3788 const struct cntr_entry *entry,
3789 void *context, int vl, int mode, u64 data)
3790{
3791 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3792
3793 return dd->sw_send_dma_eng_err_status_cnt[18];
3794}
3795
3796static u64 access_sdma_header_storage_unc_err_cnt(
3797 const struct cntr_entry *entry,
3798 void *context, int vl, int mode, u64 data)
3799{
3800 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3801
3802 return dd->sw_send_dma_eng_err_status_cnt[17];
3803}
3804
3805static u64 access_sdma_packet_tracking_unc_err_cnt(
3806 const struct cntr_entry *entry,
3807 void *context, int vl, int mode, u64 data)
3808{
3809 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3810
3811 return dd->sw_send_dma_eng_err_status_cnt[16];
3812}
3813
3814static u64 access_sdma_assembly_unc_err_cnt(const struct cntr_entry *entry,
3815 void *context, int vl, int mode,
3816 u64 data)
3817{
3818 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3819
3820 return dd->sw_send_dma_eng_err_status_cnt[15];
3821}
3822
3823static u64 access_sdma_desc_table_unc_err_cnt(const struct cntr_entry *entry,
3824 void *context, int vl, int mode,
3825 u64 data)
3826{
3827 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3828
3829 return dd->sw_send_dma_eng_err_status_cnt[14];
3830}
3831
3832static u64 access_sdma_timeout_err_cnt(const struct cntr_entry *entry,
3833 void *context, int vl, int mode,
3834 u64 data)
3835{
3836 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3837
3838 return dd->sw_send_dma_eng_err_status_cnt[13];
3839}
3840
3841static u64 access_sdma_header_length_err_cnt(const struct cntr_entry *entry,
3842 void *context, int vl, int mode,
3843 u64 data)
3844{
3845 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3846
3847 return dd->sw_send_dma_eng_err_status_cnt[12];
3848}
3849
3850static u64 access_sdma_header_address_err_cnt(const struct cntr_entry *entry,
3851 void *context, int vl, int mode,
3852 u64 data)
3853{
3854 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3855
3856 return dd->sw_send_dma_eng_err_status_cnt[11];
3857}
3858
3859static u64 access_sdma_header_select_err_cnt(const struct cntr_entry *entry,
3860 void *context, int vl, int mode,
3861 u64 data)
3862{
3863 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3864
3865 return dd->sw_send_dma_eng_err_status_cnt[10];
3866}
3867
3868static u64 access_sdma_reserved_9_err_cnt(const struct cntr_entry *entry,
3869 void *context, int vl, int mode,
3870 u64 data)
3871{
3872 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3873
3874 return dd->sw_send_dma_eng_err_status_cnt[9];
3875}
3876
3877static u64 access_sdma_packet_desc_overflow_err_cnt(
3878 const struct cntr_entry *entry,
3879 void *context, int vl, int mode, u64 data)
3880{
3881 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3882
3883 return dd->sw_send_dma_eng_err_status_cnt[8];
3884}
3885
3886static u64 access_sdma_length_mismatch_err_cnt(const struct cntr_entry *entry,
3887 void *context, int vl,
3888 int mode, u64 data)
3889{
3890 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3891
3892 return dd->sw_send_dma_eng_err_status_cnt[7];
3893}
3894
3895static u64 access_sdma_halt_err_cnt(const struct cntr_entry *entry,
3896 void *context, int vl, int mode, u64 data)
3897{
3898 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3899
3900 return dd->sw_send_dma_eng_err_status_cnt[6];
3901}
3902
3903static u64 access_sdma_mem_read_err_cnt(const struct cntr_entry *entry,
3904 void *context, int vl, int mode,
3905 u64 data)
3906{
3907 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3908
3909 return dd->sw_send_dma_eng_err_status_cnt[5];
3910}
3911
3912static u64 access_sdma_first_desc_err_cnt(const struct cntr_entry *entry,
3913 void *context, int vl, int mode,
3914 u64 data)
3915{
3916 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3917
3918 return dd->sw_send_dma_eng_err_status_cnt[4];
3919}
3920
3921static u64 access_sdma_tail_out_of_bounds_err_cnt(
3922 const struct cntr_entry *entry,
3923 void *context, int vl, int mode, u64 data)
3924{
3925 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3926
3927 return dd->sw_send_dma_eng_err_status_cnt[3];
3928}
3929
3930static u64 access_sdma_too_long_err_cnt(const struct cntr_entry *entry,
3931 void *context, int vl, int mode,
3932 u64 data)
3933{
3934 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3935
3936 return dd->sw_send_dma_eng_err_status_cnt[2];
3937}
3938
3939static u64 access_sdma_gen_mismatch_err_cnt(const struct cntr_entry *entry,
3940 void *context, int vl, int mode,
3941 u64 data)
3942{
3943 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3944
3945 return dd->sw_send_dma_eng_err_status_cnt[1];
3946}
3947
3948static u64 access_sdma_wrong_dw_err_cnt(const struct cntr_entry *entry,
3949 void *context, int vl, int mode,
3950 u64 data)
3951{
3952 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3953
3954 return dd->sw_send_dma_eng_err_status_cnt[0];
3955}
3956
Jakub Pawlak2b719042016-07-01 16:01:22 -07003957static u64 access_dc_rcv_err_cnt(const struct cntr_entry *entry,
3958 void *context, int vl, int mode,
3959 u64 data)
3960{
3961 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3962
3963 u64 val = 0;
3964 u64 csr = entry->csr;
3965
3966 val = read_write_csr(dd, csr, mode, data);
3967 if (mode == CNTR_MODE_R) {
3968 val = val > CNTR_MAX - dd->sw_rcv_bypass_packet_errors ?
3969 CNTR_MAX : val + dd->sw_rcv_bypass_packet_errors;
3970 } else if (mode == CNTR_MODE_W) {
3971 dd->sw_rcv_bypass_packet_errors = 0;
3972 } else {
3973 dd_dev_err(dd, "Invalid cntr register access mode");
3974 return 0;
3975 }
3976 return val;
3977}
3978
Mike Marciniszyn77241052015-07-30 15:17:43 -04003979#define def_access_sw_cpu(cntr) \
3980static u64 access_sw_cpu_##cntr(const struct cntr_entry *entry, \
3981 void *context, int vl, int mode, u64 data) \
3982{ \
3983 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context; \
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08003984 return read_write_cpu(ppd->dd, &ppd->ibport_data.rvp.z_ ##cntr, \
3985 ppd->ibport_data.rvp.cntr, vl, \
Mike Marciniszyn77241052015-07-30 15:17:43 -04003986 mode, data); \
3987}
3988
3989def_access_sw_cpu(rc_acks);
3990def_access_sw_cpu(rc_qacks);
3991def_access_sw_cpu(rc_delayed_comp);
3992
3993#define def_access_ibp_counter(cntr) \
3994static u64 access_ibp_##cntr(const struct cntr_entry *entry, \
3995 void *context, int vl, int mode, u64 data) \
3996{ \
3997 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context; \
3998 \
3999 if (vl != CNTR_INVALID_VL) \
4000 return 0; \
4001 \
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08004002 return read_write_sw(ppd->dd, &ppd->ibport_data.rvp.n_ ##cntr, \
Mike Marciniszyn77241052015-07-30 15:17:43 -04004003 mode, data); \
4004}
4005
4006def_access_ibp_counter(loop_pkts);
4007def_access_ibp_counter(rc_resends);
4008def_access_ibp_counter(rnr_naks);
4009def_access_ibp_counter(other_naks);
4010def_access_ibp_counter(rc_timeouts);
4011def_access_ibp_counter(pkt_drops);
4012def_access_ibp_counter(dmawait);
4013def_access_ibp_counter(rc_seqnak);
4014def_access_ibp_counter(rc_dupreq);
4015def_access_ibp_counter(rdma_seq);
4016def_access_ibp_counter(unaligned);
4017def_access_ibp_counter(seq_naks);
4018
4019static struct cntr_entry dev_cntrs[DEV_CNTR_LAST] = {
4020[C_RCV_OVF] = RXE32_DEV_CNTR_ELEM(RcvOverflow, RCV_BUF_OVFL_CNT, CNTR_SYNTH),
4021[C_RX_TID_FULL] = RXE32_DEV_CNTR_ELEM(RxTIDFullEr, RCV_TID_FULL_ERR_CNT,
4022 CNTR_NORMAL),
4023[C_RX_TID_INVALID] = RXE32_DEV_CNTR_ELEM(RxTIDInvalid, RCV_TID_VALID_ERR_CNT,
4024 CNTR_NORMAL),
4025[C_RX_TID_FLGMS] = RXE32_DEV_CNTR_ELEM(RxTidFLGMs,
4026 RCV_TID_FLOW_GEN_MISMATCH_CNT,
4027 CNTR_NORMAL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004028[C_RX_CTX_EGRS] = RXE32_DEV_CNTR_ELEM(RxCtxEgrS, RCV_CONTEXT_EGR_STALL,
4029 CNTR_NORMAL),
4030[C_RCV_TID_FLSMS] = RXE32_DEV_CNTR_ELEM(RxTidFLSMs,
4031 RCV_TID_FLOW_SEQ_MISMATCH_CNT, CNTR_NORMAL),
4032[C_CCE_PCI_CR_ST] = CCE_PERF_DEV_CNTR_ELEM(CcePciCrSt,
4033 CCE_PCIE_POSTED_CRDT_STALL_CNT, CNTR_NORMAL),
4034[C_CCE_PCI_TR_ST] = CCE_PERF_DEV_CNTR_ELEM(CcePciTrSt, CCE_PCIE_TRGT_STALL_CNT,
4035 CNTR_NORMAL),
4036[C_CCE_PIO_WR_ST] = CCE_PERF_DEV_CNTR_ELEM(CcePioWrSt, CCE_PIO_WR_STALL_CNT,
4037 CNTR_NORMAL),
4038[C_CCE_ERR_INT] = CCE_INT_DEV_CNTR_ELEM(CceErrInt, CCE_ERR_INT_CNT,
4039 CNTR_NORMAL),
4040[C_CCE_SDMA_INT] = CCE_INT_DEV_CNTR_ELEM(CceSdmaInt, CCE_SDMA_INT_CNT,
4041 CNTR_NORMAL),
4042[C_CCE_MISC_INT] = CCE_INT_DEV_CNTR_ELEM(CceMiscInt, CCE_MISC_INT_CNT,
4043 CNTR_NORMAL),
4044[C_CCE_RCV_AV_INT] = CCE_INT_DEV_CNTR_ELEM(CceRcvAvInt, CCE_RCV_AVAIL_INT_CNT,
4045 CNTR_NORMAL),
4046[C_CCE_RCV_URG_INT] = CCE_INT_DEV_CNTR_ELEM(CceRcvUrgInt,
4047 CCE_RCV_URGENT_INT_CNT, CNTR_NORMAL),
4048[C_CCE_SEND_CR_INT] = CCE_INT_DEV_CNTR_ELEM(CceSndCrInt,
4049 CCE_SEND_CREDIT_INT_CNT, CNTR_NORMAL),
4050[C_DC_UNC_ERR] = DC_PERF_CNTR(DcUnctblErr, DCC_ERR_UNCORRECTABLE_CNT,
4051 CNTR_SYNTH),
Jakub Pawlak2b719042016-07-01 16:01:22 -07004052[C_DC_RCV_ERR] = CNTR_ELEM("DcRecvErr", DCC_ERR_PORTRCV_ERR_CNT, 0, CNTR_SYNTH,
4053 access_dc_rcv_err_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004054[C_DC_FM_CFG_ERR] = DC_PERF_CNTR(DcFmCfgErr, DCC_ERR_FMCONFIG_ERR_CNT,
4055 CNTR_SYNTH),
4056[C_DC_RMT_PHY_ERR] = DC_PERF_CNTR(DcRmtPhyErr, DCC_ERR_RCVREMOTE_PHY_ERR_CNT,
4057 CNTR_SYNTH),
4058[C_DC_DROPPED_PKT] = DC_PERF_CNTR(DcDroppedPkt, DCC_ERR_DROPPED_PKT_CNT,
4059 CNTR_SYNTH),
4060[C_DC_MC_XMIT_PKTS] = DC_PERF_CNTR(DcMcXmitPkts,
4061 DCC_PRF_PORT_XMIT_MULTICAST_CNT, CNTR_SYNTH),
4062[C_DC_MC_RCV_PKTS] = DC_PERF_CNTR(DcMcRcvPkts,
4063 DCC_PRF_PORT_RCV_MULTICAST_PKT_CNT,
4064 CNTR_SYNTH),
4065[C_DC_XMIT_CERR] = DC_PERF_CNTR(DcXmitCorr,
4066 DCC_PRF_PORT_XMIT_CORRECTABLE_CNT, CNTR_SYNTH),
4067[C_DC_RCV_CERR] = DC_PERF_CNTR(DcRcvCorrCnt, DCC_PRF_PORT_RCV_CORRECTABLE_CNT,
4068 CNTR_SYNTH),
4069[C_DC_RCV_FCC] = DC_PERF_CNTR(DcRxFCntl, DCC_PRF_RX_FLOW_CRTL_CNT,
4070 CNTR_SYNTH),
4071[C_DC_XMIT_FCC] = DC_PERF_CNTR(DcXmitFCntl, DCC_PRF_TX_FLOW_CRTL_CNT,
4072 CNTR_SYNTH),
4073[C_DC_XMIT_FLITS] = DC_PERF_CNTR(DcXmitFlits, DCC_PRF_PORT_XMIT_DATA_CNT,
4074 CNTR_SYNTH),
4075[C_DC_RCV_FLITS] = DC_PERF_CNTR(DcRcvFlits, DCC_PRF_PORT_RCV_DATA_CNT,
4076 CNTR_SYNTH),
4077[C_DC_XMIT_PKTS] = DC_PERF_CNTR(DcXmitPkts, DCC_PRF_PORT_XMIT_PKTS_CNT,
4078 CNTR_SYNTH),
4079[C_DC_RCV_PKTS] = DC_PERF_CNTR(DcRcvPkts, DCC_PRF_PORT_RCV_PKTS_CNT,
4080 CNTR_SYNTH),
4081[C_DC_RX_FLIT_VL] = DC_PERF_CNTR(DcRxFlitVl, DCC_PRF_PORT_VL_RCV_DATA_CNT,
4082 CNTR_SYNTH | CNTR_VL),
4083[C_DC_RX_PKT_VL] = DC_PERF_CNTR(DcRxPktVl, DCC_PRF_PORT_VL_RCV_PKTS_CNT,
4084 CNTR_SYNTH | CNTR_VL),
4085[C_DC_RCV_FCN] = DC_PERF_CNTR(DcRcvFcn, DCC_PRF_PORT_RCV_FECN_CNT, CNTR_SYNTH),
4086[C_DC_RCV_FCN_VL] = DC_PERF_CNTR(DcRcvFcnVl, DCC_PRF_PORT_VL_RCV_FECN_CNT,
4087 CNTR_SYNTH | CNTR_VL),
4088[C_DC_RCV_BCN] = DC_PERF_CNTR(DcRcvBcn, DCC_PRF_PORT_RCV_BECN_CNT, CNTR_SYNTH),
4089[C_DC_RCV_BCN_VL] = DC_PERF_CNTR(DcRcvBcnVl, DCC_PRF_PORT_VL_RCV_BECN_CNT,
4090 CNTR_SYNTH | CNTR_VL),
4091[C_DC_RCV_BBL] = DC_PERF_CNTR(DcRcvBbl, DCC_PRF_PORT_RCV_BUBBLE_CNT,
4092 CNTR_SYNTH),
4093[C_DC_RCV_BBL_VL] = DC_PERF_CNTR(DcRcvBblVl, DCC_PRF_PORT_VL_RCV_BUBBLE_CNT,
4094 CNTR_SYNTH | CNTR_VL),
4095[C_DC_MARK_FECN] = DC_PERF_CNTR(DcMarkFcn, DCC_PRF_PORT_MARK_FECN_CNT,
4096 CNTR_SYNTH),
4097[C_DC_MARK_FECN_VL] = DC_PERF_CNTR(DcMarkFcnVl, DCC_PRF_PORT_VL_MARK_FECN_CNT,
4098 CNTR_SYNTH | CNTR_VL),
4099[C_DC_TOTAL_CRC] =
4100 DC_PERF_CNTR_LCB(DcTotCrc, DC_LCB_ERR_INFO_TOTAL_CRC_ERR,
4101 CNTR_SYNTH),
4102[C_DC_CRC_LN0] = DC_PERF_CNTR_LCB(DcCrcLn0, DC_LCB_ERR_INFO_CRC_ERR_LN0,
4103 CNTR_SYNTH),
4104[C_DC_CRC_LN1] = DC_PERF_CNTR_LCB(DcCrcLn1, DC_LCB_ERR_INFO_CRC_ERR_LN1,
4105 CNTR_SYNTH),
4106[C_DC_CRC_LN2] = DC_PERF_CNTR_LCB(DcCrcLn2, DC_LCB_ERR_INFO_CRC_ERR_LN2,
4107 CNTR_SYNTH),
4108[C_DC_CRC_LN3] = DC_PERF_CNTR_LCB(DcCrcLn3, DC_LCB_ERR_INFO_CRC_ERR_LN3,
4109 CNTR_SYNTH),
4110[C_DC_CRC_MULT_LN] =
4111 DC_PERF_CNTR_LCB(DcMultLn, DC_LCB_ERR_INFO_CRC_ERR_MULTI_LN,
4112 CNTR_SYNTH),
4113[C_DC_TX_REPLAY] = DC_PERF_CNTR_LCB(DcTxReplay, DC_LCB_ERR_INFO_TX_REPLAY_CNT,
4114 CNTR_SYNTH),
4115[C_DC_RX_REPLAY] = DC_PERF_CNTR_LCB(DcRxReplay, DC_LCB_ERR_INFO_RX_REPLAY_CNT,
4116 CNTR_SYNTH),
4117[C_DC_SEQ_CRC_CNT] =
4118 DC_PERF_CNTR_LCB(DcLinkSeqCrc, DC_LCB_ERR_INFO_SEQ_CRC_CNT,
4119 CNTR_SYNTH),
4120[C_DC_ESC0_ONLY_CNT] =
4121 DC_PERF_CNTR_LCB(DcEsc0, DC_LCB_ERR_INFO_ESCAPE_0_ONLY_CNT,
4122 CNTR_SYNTH),
4123[C_DC_ESC0_PLUS1_CNT] =
4124 DC_PERF_CNTR_LCB(DcEsc1, DC_LCB_ERR_INFO_ESCAPE_0_PLUS1_CNT,
4125 CNTR_SYNTH),
4126[C_DC_ESC0_PLUS2_CNT] =
4127 DC_PERF_CNTR_LCB(DcEsc0Plus2, DC_LCB_ERR_INFO_ESCAPE_0_PLUS2_CNT,
4128 CNTR_SYNTH),
4129[C_DC_REINIT_FROM_PEER_CNT] =
4130 DC_PERF_CNTR_LCB(DcReinitPeer, DC_LCB_ERR_INFO_REINIT_FROM_PEER_CNT,
4131 CNTR_SYNTH),
4132[C_DC_SBE_CNT] = DC_PERF_CNTR_LCB(DcSbe, DC_LCB_ERR_INFO_SBE_CNT,
4133 CNTR_SYNTH),
4134[C_DC_MISC_FLG_CNT] =
4135 DC_PERF_CNTR_LCB(DcMiscFlg, DC_LCB_ERR_INFO_MISC_FLG_CNT,
4136 CNTR_SYNTH),
4137[C_DC_PRF_GOOD_LTP_CNT] =
4138 DC_PERF_CNTR_LCB(DcGoodLTP, DC_LCB_PRF_GOOD_LTP_CNT, CNTR_SYNTH),
4139[C_DC_PRF_ACCEPTED_LTP_CNT] =
4140 DC_PERF_CNTR_LCB(DcAccLTP, DC_LCB_PRF_ACCEPTED_LTP_CNT,
4141 CNTR_SYNTH),
4142[C_DC_PRF_RX_FLIT_CNT] =
4143 DC_PERF_CNTR_LCB(DcPrfRxFlit, DC_LCB_PRF_RX_FLIT_CNT, CNTR_SYNTH),
4144[C_DC_PRF_TX_FLIT_CNT] =
4145 DC_PERF_CNTR_LCB(DcPrfTxFlit, DC_LCB_PRF_TX_FLIT_CNT, CNTR_SYNTH),
4146[C_DC_PRF_CLK_CNTR] =
4147 DC_PERF_CNTR_LCB(DcPrfClk, DC_LCB_PRF_CLK_CNTR, CNTR_SYNTH),
4148[C_DC_PG_DBG_FLIT_CRDTS_CNT] =
4149 DC_PERF_CNTR_LCB(DcFltCrdts, DC_LCB_PG_DBG_FLIT_CRDTS_CNT, CNTR_SYNTH),
4150[C_DC_PG_STS_PAUSE_COMPLETE_CNT] =
4151 DC_PERF_CNTR_LCB(DcPauseComp, DC_LCB_PG_STS_PAUSE_COMPLETE_CNT,
4152 CNTR_SYNTH),
4153[C_DC_PG_STS_TX_SBE_CNT] =
4154 DC_PERF_CNTR_LCB(DcStsTxSbe, DC_LCB_PG_STS_TX_SBE_CNT, CNTR_SYNTH),
4155[C_DC_PG_STS_TX_MBE_CNT] =
4156 DC_PERF_CNTR_LCB(DcStsTxMbe, DC_LCB_PG_STS_TX_MBE_CNT,
4157 CNTR_SYNTH),
4158[C_SW_CPU_INTR] = CNTR_ELEM("Intr", 0, 0, CNTR_NORMAL,
4159 access_sw_cpu_intr),
4160[C_SW_CPU_RCV_LIM] = CNTR_ELEM("RcvLimit", 0, 0, CNTR_NORMAL,
4161 access_sw_cpu_rcv_limit),
4162[C_SW_VTX_WAIT] = CNTR_ELEM("vTxWait", 0, 0, CNTR_NORMAL,
4163 access_sw_vtx_wait),
4164[C_SW_PIO_WAIT] = CNTR_ELEM("PioWait", 0, 0, CNTR_NORMAL,
4165 access_sw_pio_wait),
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08004166[C_SW_PIO_DRAIN] = CNTR_ELEM("PioDrain", 0, 0, CNTR_NORMAL,
4167 access_sw_pio_drain),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004168[C_SW_KMEM_WAIT] = CNTR_ELEM("KmemWait", 0, 0, CNTR_NORMAL,
4169 access_sw_kmem_wait),
Dean Luickb4219222015-10-26 10:28:35 -04004170[C_SW_SEND_SCHED] = CNTR_ELEM("SendSched", 0, 0, CNTR_NORMAL,
4171 access_sw_send_schedule),
Vennila Megavannana699c6c2016-01-11 18:30:56 -05004172[C_SDMA_DESC_FETCHED_CNT] = CNTR_ELEM("SDEDscFdCn",
4173 SEND_DMA_DESC_FETCHED_CNT, 0,
4174 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4175 dev_access_u32_csr),
4176[C_SDMA_INT_CNT] = CNTR_ELEM("SDMAInt", 0, 0,
4177 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4178 access_sde_int_cnt),
4179[C_SDMA_ERR_CNT] = CNTR_ELEM("SDMAErrCt", 0, 0,
4180 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4181 access_sde_err_cnt),
4182[C_SDMA_IDLE_INT_CNT] = CNTR_ELEM("SDMAIdInt", 0, 0,
4183 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4184 access_sde_idle_int_cnt),
4185[C_SDMA_PROGRESS_INT_CNT] = CNTR_ELEM("SDMAPrIntCn", 0, 0,
4186 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4187 access_sde_progress_int_cnt),
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05004188/* MISC_ERR_STATUS */
4189[C_MISC_PLL_LOCK_FAIL_ERR] = CNTR_ELEM("MISC_PLL_LOCK_FAIL_ERR", 0, 0,
4190 CNTR_NORMAL,
4191 access_misc_pll_lock_fail_err_cnt),
4192[C_MISC_MBIST_FAIL_ERR] = CNTR_ELEM("MISC_MBIST_FAIL_ERR", 0, 0,
4193 CNTR_NORMAL,
4194 access_misc_mbist_fail_err_cnt),
4195[C_MISC_INVALID_EEP_CMD_ERR] = CNTR_ELEM("MISC_INVALID_EEP_CMD_ERR", 0, 0,
4196 CNTR_NORMAL,
4197 access_misc_invalid_eep_cmd_err_cnt),
4198[C_MISC_EFUSE_DONE_PARITY_ERR] = CNTR_ELEM("MISC_EFUSE_DONE_PARITY_ERR", 0, 0,
4199 CNTR_NORMAL,
4200 access_misc_efuse_done_parity_err_cnt),
4201[C_MISC_EFUSE_WRITE_ERR] = CNTR_ELEM("MISC_EFUSE_WRITE_ERR", 0, 0,
4202 CNTR_NORMAL,
4203 access_misc_efuse_write_err_cnt),
4204[C_MISC_EFUSE_READ_BAD_ADDR_ERR] = CNTR_ELEM("MISC_EFUSE_READ_BAD_ADDR_ERR", 0,
4205 0, CNTR_NORMAL,
4206 access_misc_efuse_read_bad_addr_err_cnt),
4207[C_MISC_EFUSE_CSR_PARITY_ERR] = CNTR_ELEM("MISC_EFUSE_CSR_PARITY_ERR", 0, 0,
4208 CNTR_NORMAL,
4209 access_misc_efuse_csr_parity_err_cnt),
4210[C_MISC_FW_AUTH_FAILED_ERR] = CNTR_ELEM("MISC_FW_AUTH_FAILED_ERR", 0, 0,
4211 CNTR_NORMAL,
4212 access_misc_fw_auth_failed_err_cnt),
4213[C_MISC_KEY_MISMATCH_ERR] = CNTR_ELEM("MISC_KEY_MISMATCH_ERR", 0, 0,
4214 CNTR_NORMAL,
4215 access_misc_key_mismatch_err_cnt),
4216[C_MISC_SBUS_WRITE_FAILED_ERR] = CNTR_ELEM("MISC_SBUS_WRITE_FAILED_ERR", 0, 0,
4217 CNTR_NORMAL,
4218 access_misc_sbus_write_failed_err_cnt),
4219[C_MISC_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("MISC_CSR_WRITE_BAD_ADDR_ERR", 0, 0,
4220 CNTR_NORMAL,
4221 access_misc_csr_write_bad_addr_err_cnt),
4222[C_MISC_CSR_READ_BAD_ADDR_ERR] = CNTR_ELEM("MISC_CSR_READ_BAD_ADDR_ERR", 0, 0,
4223 CNTR_NORMAL,
4224 access_misc_csr_read_bad_addr_err_cnt),
4225[C_MISC_CSR_PARITY_ERR] = CNTR_ELEM("MISC_CSR_PARITY_ERR", 0, 0,
4226 CNTR_NORMAL,
4227 access_misc_csr_parity_err_cnt),
4228/* CceErrStatus */
4229[C_CCE_ERR_STATUS_AGGREGATED_CNT] = CNTR_ELEM("CceErrStatusAggregatedCnt", 0, 0,
4230 CNTR_NORMAL,
4231 access_sw_cce_err_status_aggregated_cnt),
4232[C_CCE_MSIX_CSR_PARITY_ERR] = CNTR_ELEM("CceMsixCsrParityErr", 0, 0,
4233 CNTR_NORMAL,
4234 access_cce_msix_csr_parity_err_cnt),
4235[C_CCE_INT_MAP_UNC_ERR] = CNTR_ELEM("CceIntMapUncErr", 0, 0,
4236 CNTR_NORMAL,
4237 access_cce_int_map_unc_err_cnt),
4238[C_CCE_INT_MAP_COR_ERR] = CNTR_ELEM("CceIntMapCorErr", 0, 0,
4239 CNTR_NORMAL,
4240 access_cce_int_map_cor_err_cnt),
4241[C_CCE_MSIX_TABLE_UNC_ERR] = CNTR_ELEM("CceMsixTableUncErr", 0, 0,
4242 CNTR_NORMAL,
4243 access_cce_msix_table_unc_err_cnt),
4244[C_CCE_MSIX_TABLE_COR_ERR] = CNTR_ELEM("CceMsixTableCorErr", 0, 0,
4245 CNTR_NORMAL,
4246 access_cce_msix_table_cor_err_cnt),
4247[C_CCE_RXDMA_CONV_FIFO_PARITY_ERR] = CNTR_ELEM("CceRxdmaConvFifoParityErr", 0,
4248 0, CNTR_NORMAL,
4249 access_cce_rxdma_conv_fifo_parity_err_cnt),
4250[C_CCE_RCPL_ASYNC_FIFO_PARITY_ERR] = CNTR_ELEM("CceRcplAsyncFifoParityErr", 0,
4251 0, CNTR_NORMAL,
4252 access_cce_rcpl_async_fifo_parity_err_cnt),
4253[C_CCE_SEG_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("CceSegWriteBadAddrErr", 0, 0,
4254 CNTR_NORMAL,
4255 access_cce_seg_write_bad_addr_err_cnt),
4256[C_CCE_SEG_READ_BAD_ADDR_ERR] = CNTR_ELEM("CceSegReadBadAddrErr", 0, 0,
4257 CNTR_NORMAL,
4258 access_cce_seg_read_bad_addr_err_cnt),
4259[C_LA_TRIGGERED] = CNTR_ELEM("Cce LATriggered", 0, 0,
4260 CNTR_NORMAL,
4261 access_la_triggered_cnt),
4262[C_CCE_TRGT_CPL_TIMEOUT_ERR] = CNTR_ELEM("CceTrgtCplTimeoutErr", 0, 0,
4263 CNTR_NORMAL,
4264 access_cce_trgt_cpl_timeout_err_cnt),
4265[C_PCIC_RECEIVE_PARITY_ERR] = CNTR_ELEM("PcicReceiveParityErr", 0, 0,
4266 CNTR_NORMAL,
4267 access_pcic_receive_parity_err_cnt),
4268[C_PCIC_TRANSMIT_BACK_PARITY_ERR] = CNTR_ELEM("PcicTransmitBackParityErr", 0, 0,
4269 CNTR_NORMAL,
4270 access_pcic_transmit_back_parity_err_cnt),
4271[C_PCIC_TRANSMIT_FRONT_PARITY_ERR] = CNTR_ELEM("PcicTransmitFrontParityErr", 0,
4272 0, CNTR_NORMAL,
4273 access_pcic_transmit_front_parity_err_cnt),
4274[C_PCIC_CPL_DAT_Q_UNC_ERR] = CNTR_ELEM("PcicCplDatQUncErr", 0, 0,
4275 CNTR_NORMAL,
4276 access_pcic_cpl_dat_q_unc_err_cnt),
4277[C_PCIC_CPL_HD_Q_UNC_ERR] = CNTR_ELEM("PcicCplHdQUncErr", 0, 0,
4278 CNTR_NORMAL,
4279 access_pcic_cpl_hd_q_unc_err_cnt),
4280[C_PCIC_POST_DAT_Q_UNC_ERR] = CNTR_ELEM("PcicPostDatQUncErr", 0, 0,
4281 CNTR_NORMAL,
4282 access_pcic_post_dat_q_unc_err_cnt),
4283[C_PCIC_POST_HD_Q_UNC_ERR] = CNTR_ELEM("PcicPostHdQUncErr", 0, 0,
4284 CNTR_NORMAL,
4285 access_pcic_post_hd_q_unc_err_cnt),
4286[C_PCIC_RETRY_SOT_MEM_UNC_ERR] = CNTR_ELEM("PcicRetrySotMemUncErr", 0, 0,
4287 CNTR_NORMAL,
4288 access_pcic_retry_sot_mem_unc_err_cnt),
4289[C_PCIC_RETRY_MEM_UNC_ERR] = CNTR_ELEM("PcicRetryMemUncErr", 0, 0,
4290 CNTR_NORMAL,
4291 access_pcic_retry_mem_unc_err),
4292[C_PCIC_N_POST_DAT_Q_PARITY_ERR] = CNTR_ELEM("PcicNPostDatQParityErr", 0, 0,
4293 CNTR_NORMAL,
4294 access_pcic_n_post_dat_q_parity_err_cnt),
4295[C_PCIC_N_POST_H_Q_PARITY_ERR] = CNTR_ELEM("PcicNPostHQParityErr", 0, 0,
4296 CNTR_NORMAL,
4297 access_pcic_n_post_h_q_parity_err_cnt),
4298[C_PCIC_CPL_DAT_Q_COR_ERR] = CNTR_ELEM("PcicCplDatQCorErr", 0, 0,
4299 CNTR_NORMAL,
4300 access_pcic_cpl_dat_q_cor_err_cnt),
4301[C_PCIC_CPL_HD_Q_COR_ERR] = CNTR_ELEM("PcicCplHdQCorErr", 0, 0,
4302 CNTR_NORMAL,
4303 access_pcic_cpl_hd_q_cor_err_cnt),
4304[C_PCIC_POST_DAT_Q_COR_ERR] = CNTR_ELEM("PcicPostDatQCorErr", 0, 0,
4305 CNTR_NORMAL,
4306 access_pcic_post_dat_q_cor_err_cnt),
4307[C_PCIC_POST_HD_Q_COR_ERR] = CNTR_ELEM("PcicPostHdQCorErr", 0, 0,
4308 CNTR_NORMAL,
4309 access_pcic_post_hd_q_cor_err_cnt),
4310[C_PCIC_RETRY_SOT_MEM_COR_ERR] = CNTR_ELEM("PcicRetrySotMemCorErr", 0, 0,
4311 CNTR_NORMAL,
4312 access_pcic_retry_sot_mem_cor_err_cnt),
4313[C_PCIC_RETRY_MEM_COR_ERR] = CNTR_ELEM("PcicRetryMemCorErr", 0, 0,
4314 CNTR_NORMAL,
4315 access_pcic_retry_mem_cor_err_cnt),
4316[C_CCE_CLI1_ASYNC_FIFO_DBG_PARITY_ERR] = CNTR_ELEM(
4317 "CceCli1AsyncFifoDbgParityError", 0, 0,
4318 CNTR_NORMAL,
4319 access_cce_cli1_async_fifo_dbg_parity_err_cnt),
4320[C_CCE_CLI1_ASYNC_FIFO_RXDMA_PARITY_ERR] = CNTR_ELEM(
4321 "CceCli1AsyncFifoRxdmaParityError", 0, 0,
4322 CNTR_NORMAL,
4323 access_cce_cli1_async_fifo_rxdma_parity_err_cnt
4324 ),
4325[C_CCE_CLI1_ASYNC_FIFO_SDMA_HD_PARITY_ERR] = CNTR_ELEM(
4326 "CceCli1AsyncFifoSdmaHdParityErr", 0, 0,
4327 CNTR_NORMAL,
4328 access_cce_cli1_async_fifo_sdma_hd_parity_err_cnt),
4329[C_CCE_CLI1_ASYNC_FIFO_PIO_CRDT_PARITY_ERR] = CNTR_ELEM(
4330 "CceCli1AsyncFifoPioCrdtParityErr", 0, 0,
4331 CNTR_NORMAL,
4332 access_cce_cl1_async_fifo_pio_crdt_parity_err_cnt),
4333[C_CCE_CLI2_ASYNC_FIFO_PARITY_ERR] = CNTR_ELEM("CceCli2AsyncFifoParityErr", 0,
4334 0, CNTR_NORMAL,
4335 access_cce_cli2_async_fifo_parity_err_cnt),
4336[C_CCE_CSR_CFG_BUS_PARITY_ERR] = CNTR_ELEM("CceCsrCfgBusParityErr", 0, 0,
4337 CNTR_NORMAL,
4338 access_cce_csr_cfg_bus_parity_err_cnt),
4339[C_CCE_CLI0_ASYNC_FIFO_PARTIY_ERR] = CNTR_ELEM("CceCli0AsyncFifoParityErr", 0,
4340 0, CNTR_NORMAL,
4341 access_cce_cli0_async_fifo_parity_err_cnt),
4342[C_CCE_RSPD_DATA_PARITY_ERR] = CNTR_ELEM("CceRspdDataParityErr", 0, 0,
4343 CNTR_NORMAL,
4344 access_cce_rspd_data_parity_err_cnt),
4345[C_CCE_TRGT_ACCESS_ERR] = CNTR_ELEM("CceTrgtAccessErr", 0, 0,
4346 CNTR_NORMAL,
4347 access_cce_trgt_access_err_cnt),
4348[C_CCE_TRGT_ASYNC_FIFO_PARITY_ERR] = CNTR_ELEM("CceTrgtAsyncFifoParityErr", 0,
4349 0, CNTR_NORMAL,
4350 access_cce_trgt_async_fifo_parity_err_cnt),
4351[C_CCE_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("CceCsrWriteBadAddrErr", 0, 0,
4352 CNTR_NORMAL,
4353 access_cce_csr_write_bad_addr_err_cnt),
4354[C_CCE_CSR_READ_BAD_ADDR_ERR] = CNTR_ELEM("CceCsrReadBadAddrErr", 0, 0,
4355 CNTR_NORMAL,
4356 access_cce_csr_read_bad_addr_err_cnt),
4357[C_CCE_CSR_PARITY_ERR] = CNTR_ELEM("CceCsrParityErr", 0, 0,
4358 CNTR_NORMAL,
4359 access_ccs_csr_parity_err_cnt),
4360
4361/* RcvErrStatus */
4362[C_RX_CSR_PARITY_ERR] = CNTR_ELEM("RxCsrParityErr", 0, 0,
4363 CNTR_NORMAL,
4364 access_rx_csr_parity_err_cnt),
4365[C_RX_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("RxCsrWriteBadAddrErr", 0, 0,
4366 CNTR_NORMAL,
4367 access_rx_csr_write_bad_addr_err_cnt),
4368[C_RX_CSR_READ_BAD_ADDR_ERR] = CNTR_ELEM("RxCsrReadBadAddrErr", 0, 0,
4369 CNTR_NORMAL,
4370 access_rx_csr_read_bad_addr_err_cnt),
4371[C_RX_DMA_CSR_UNC_ERR] = CNTR_ELEM("RxDmaCsrUncErr", 0, 0,
4372 CNTR_NORMAL,
4373 access_rx_dma_csr_unc_err_cnt),
4374[C_RX_DMA_DQ_FSM_ENCODING_ERR] = CNTR_ELEM("RxDmaDqFsmEncodingErr", 0, 0,
4375 CNTR_NORMAL,
4376 access_rx_dma_dq_fsm_encoding_err_cnt),
4377[C_RX_DMA_EQ_FSM_ENCODING_ERR] = CNTR_ELEM("RxDmaEqFsmEncodingErr", 0, 0,
4378 CNTR_NORMAL,
4379 access_rx_dma_eq_fsm_encoding_err_cnt),
4380[C_RX_DMA_CSR_PARITY_ERR] = CNTR_ELEM("RxDmaCsrParityErr", 0, 0,
4381 CNTR_NORMAL,
4382 access_rx_dma_csr_parity_err_cnt),
4383[C_RX_RBUF_DATA_COR_ERR] = CNTR_ELEM("RxRbufDataCorErr", 0, 0,
4384 CNTR_NORMAL,
4385 access_rx_rbuf_data_cor_err_cnt),
4386[C_RX_RBUF_DATA_UNC_ERR] = CNTR_ELEM("RxRbufDataUncErr", 0, 0,
4387 CNTR_NORMAL,
4388 access_rx_rbuf_data_unc_err_cnt),
4389[C_RX_DMA_DATA_FIFO_RD_COR_ERR] = CNTR_ELEM("RxDmaDataFifoRdCorErr", 0, 0,
4390 CNTR_NORMAL,
4391 access_rx_dma_data_fifo_rd_cor_err_cnt),
4392[C_RX_DMA_DATA_FIFO_RD_UNC_ERR] = CNTR_ELEM("RxDmaDataFifoRdUncErr", 0, 0,
4393 CNTR_NORMAL,
4394 access_rx_dma_data_fifo_rd_unc_err_cnt),
4395[C_RX_DMA_HDR_FIFO_RD_COR_ERR] = CNTR_ELEM("RxDmaHdrFifoRdCorErr", 0, 0,
4396 CNTR_NORMAL,
4397 access_rx_dma_hdr_fifo_rd_cor_err_cnt),
4398[C_RX_DMA_HDR_FIFO_RD_UNC_ERR] = CNTR_ELEM("RxDmaHdrFifoRdUncErr", 0, 0,
4399 CNTR_NORMAL,
4400 access_rx_dma_hdr_fifo_rd_unc_err_cnt),
4401[C_RX_RBUF_DESC_PART2_COR_ERR] = CNTR_ELEM("RxRbufDescPart2CorErr", 0, 0,
4402 CNTR_NORMAL,
4403 access_rx_rbuf_desc_part2_cor_err_cnt),
4404[C_RX_RBUF_DESC_PART2_UNC_ERR] = CNTR_ELEM("RxRbufDescPart2UncErr", 0, 0,
4405 CNTR_NORMAL,
4406 access_rx_rbuf_desc_part2_unc_err_cnt),
4407[C_RX_RBUF_DESC_PART1_COR_ERR] = CNTR_ELEM("RxRbufDescPart1CorErr", 0, 0,
4408 CNTR_NORMAL,
4409 access_rx_rbuf_desc_part1_cor_err_cnt),
4410[C_RX_RBUF_DESC_PART1_UNC_ERR] = CNTR_ELEM("RxRbufDescPart1UncErr", 0, 0,
4411 CNTR_NORMAL,
4412 access_rx_rbuf_desc_part1_unc_err_cnt),
4413[C_RX_HQ_INTR_FSM_ERR] = CNTR_ELEM("RxHqIntrFsmErr", 0, 0,
4414 CNTR_NORMAL,
4415 access_rx_hq_intr_fsm_err_cnt),
4416[C_RX_HQ_INTR_CSR_PARITY_ERR] = CNTR_ELEM("RxHqIntrCsrParityErr", 0, 0,
4417 CNTR_NORMAL,
4418 access_rx_hq_intr_csr_parity_err_cnt),
4419[C_RX_LOOKUP_CSR_PARITY_ERR] = CNTR_ELEM("RxLookupCsrParityErr", 0, 0,
4420 CNTR_NORMAL,
4421 access_rx_lookup_csr_parity_err_cnt),
4422[C_RX_LOOKUP_RCV_ARRAY_COR_ERR] = CNTR_ELEM("RxLookupRcvArrayCorErr", 0, 0,
4423 CNTR_NORMAL,
4424 access_rx_lookup_rcv_array_cor_err_cnt),
4425[C_RX_LOOKUP_RCV_ARRAY_UNC_ERR] = CNTR_ELEM("RxLookupRcvArrayUncErr", 0, 0,
4426 CNTR_NORMAL,
4427 access_rx_lookup_rcv_array_unc_err_cnt),
4428[C_RX_LOOKUP_DES_PART2_PARITY_ERR] = CNTR_ELEM("RxLookupDesPart2ParityErr", 0,
4429 0, CNTR_NORMAL,
4430 access_rx_lookup_des_part2_parity_err_cnt),
4431[C_RX_LOOKUP_DES_PART1_UNC_COR_ERR] = CNTR_ELEM("RxLookupDesPart1UncCorErr", 0,
4432 0, CNTR_NORMAL,
4433 access_rx_lookup_des_part1_unc_cor_err_cnt),
4434[C_RX_LOOKUP_DES_PART1_UNC_ERR] = CNTR_ELEM("RxLookupDesPart1UncErr", 0, 0,
4435 CNTR_NORMAL,
4436 access_rx_lookup_des_part1_unc_err_cnt),
4437[C_RX_RBUF_NEXT_FREE_BUF_COR_ERR] = CNTR_ELEM("RxRbufNextFreeBufCorErr", 0, 0,
4438 CNTR_NORMAL,
4439 access_rx_rbuf_next_free_buf_cor_err_cnt),
4440[C_RX_RBUF_NEXT_FREE_BUF_UNC_ERR] = CNTR_ELEM("RxRbufNextFreeBufUncErr", 0, 0,
4441 CNTR_NORMAL,
4442 access_rx_rbuf_next_free_buf_unc_err_cnt),
4443[C_RX_RBUF_FL_INIT_WR_ADDR_PARITY_ERR] = CNTR_ELEM(
4444 "RxRbufFlInitWrAddrParityErr", 0, 0,
4445 CNTR_NORMAL,
4446 access_rbuf_fl_init_wr_addr_parity_err_cnt),
4447[C_RX_RBUF_FL_INITDONE_PARITY_ERR] = CNTR_ELEM("RxRbufFlInitdoneParityErr", 0,
4448 0, CNTR_NORMAL,
4449 access_rx_rbuf_fl_initdone_parity_err_cnt),
4450[C_RX_RBUF_FL_WRITE_ADDR_PARITY_ERR] = CNTR_ELEM("RxRbufFlWrAddrParityErr", 0,
4451 0, CNTR_NORMAL,
4452 access_rx_rbuf_fl_write_addr_parity_err_cnt),
4453[C_RX_RBUF_FL_RD_ADDR_PARITY_ERR] = CNTR_ELEM("RxRbufFlRdAddrParityErr", 0, 0,
4454 CNTR_NORMAL,
4455 access_rx_rbuf_fl_rd_addr_parity_err_cnt),
4456[C_RX_RBUF_EMPTY_ERR] = CNTR_ELEM("RxRbufEmptyErr", 0, 0,
4457 CNTR_NORMAL,
4458 access_rx_rbuf_empty_err_cnt),
4459[C_RX_RBUF_FULL_ERR] = CNTR_ELEM("RxRbufFullErr", 0, 0,
4460 CNTR_NORMAL,
4461 access_rx_rbuf_full_err_cnt),
4462[C_RX_RBUF_BAD_LOOKUP_ERR] = CNTR_ELEM("RxRBufBadLookupErr", 0, 0,
4463 CNTR_NORMAL,
4464 access_rbuf_bad_lookup_err_cnt),
4465[C_RX_RBUF_CTX_ID_PARITY_ERR] = CNTR_ELEM("RxRbufCtxIdParityErr", 0, 0,
4466 CNTR_NORMAL,
4467 access_rbuf_ctx_id_parity_err_cnt),
4468[C_RX_RBUF_CSR_QEOPDW_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQEOPDWParityErr", 0, 0,
4469 CNTR_NORMAL,
4470 access_rbuf_csr_qeopdw_parity_err_cnt),
4471[C_RX_RBUF_CSR_Q_NUM_OF_PKT_PARITY_ERR] = CNTR_ELEM(
4472 "RxRbufCsrQNumOfPktParityErr", 0, 0,
4473 CNTR_NORMAL,
4474 access_rx_rbuf_csr_q_num_of_pkt_parity_err_cnt),
4475[C_RX_RBUF_CSR_Q_T1_PTR_PARITY_ERR] = CNTR_ELEM(
4476 "RxRbufCsrQTlPtrParityErr", 0, 0,
4477 CNTR_NORMAL,
4478 access_rx_rbuf_csr_q_t1_ptr_parity_err_cnt),
4479[C_RX_RBUF_CSR_Q_HD_PTR_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQHdPtrParityErr", 0,
4480 0, CNTR_NORMAL,
4481 access_rx_rbuf_csr_q_hd_ptr_parity_err_cnt),
4482[C_RX_RBUF_CSR_Q_VLD_BIT_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQVldBitParityErr", 0,
4483 0, CNTR_NORMAL,
4484 access_rx_rbuf_csr_q_vld_bit_parity_err_cnt),
4485[C_RX_RBUF_CSR_Q_NEXT_BUF_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQNextBufParityErr",
4486 0, 0, CNTR_NORMAL,
4487 access_rx_rbuf_csr_q_next_buf_parity_err_cnt),
4488[C_RX_RBUF_CSR_Q_ENT_CNT_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQEntCntParityErr", 0,
4489 0, CNTR_NORMAL,
4490 access_rx_rbuf_csr_q_ent_cnt_parity_err_cnt),
4491[C_RX_RBUF_CSR_Q_HEAD_BUF_NUM_PARITY_ERR] = CNTR_ELEM(
4492 "RxRbufCsrQHeadBufNumParityErr", 0, 0,
4493 CNTR_NORMAL,
4494 access_rx_rbuf_csr_q_head_buf_num_parity_err_cnt),
4495[C_RX_RBUF_BLOCK_LIST_READ_COR_ERR] = CNTR_ELEM("RxRbufBlockListReadCorErr", 0,
4496 0, CNTR_NORMAL,
4497 access_rx_rbuf_block_list_read_cor_err_cnt),
4498[C_RX_RBUF_BLOCK_LIST_READ_UNC_ERR] = CNTR_ELEM("RxRbufBlockListReadUncErr", 0,
4499 0, CNTR_NORMAL,
4500 access_rx_rbuf_block_list_read_unc_err_cnt),
4501[C_RX_RBUF_LOOKUP_DES_COR_ERR] = CNTR_ELEM("RxRbufLookupDesCorErr", 0, 0,
4502 CNTR_NORMAL,
4503 access_rx_rbuf_lookup_des_cor_err_cnt),
4504[C_RX_RBUF_LOOKUP_DES_UNC_ERR] = CNTR_ELEM("RxRbufLookupDesUncErr", 0, 0,
4505 CNTR_NORMAL,
4506 access_rx_rbuf_lookup_des_unc_err_cnt),
4507[C_RX_RBUF_LOOKUP_DES_REG_UNC_COR_ERR] = CNTR_ELEM(
4508 "RxRbufLookupDesRegUncCorErr", 0, 0,
4509 CNTR_NORMAL,
4510 access_rx_rbuf_lookup_des_reg_unc_cor_err_cnt),
4511[C_RX_RBUF_LOOKUP_DES_REG_UNC_ERR] = CNTR_ELEM("RxRbufLookupDesRegUncErr", 0, 0,
4512 CNTR_NORMAL,
4513 access_rx_rbuf_lookup_des_reg_unc_err_cnt),
4514[C_RX_RBUF_FREE_LIST_COR_ERR] = CNTR_ELEM("RxRbufFreeListCorErr", 0, 0,
4515 CNTR_NORMAL,
4516 access_rx_rbuf_free_list_cor_err_cnt),
4517[C_RX_RBUF_FREE_LIST_UNC_ERR] = CNTR_ELEM("RxRbufFreeListUncErr", 0, 0,
4518 CNTR_NORMAL,
4519 access_rx_rbuf_free_list_unc_err_cnt),
4520[C_RX_RCV_FSM_ENCODING_ERR] = CNTR_ELEM("RxRcvFsmEncodingErr", 0, 0,
4521 CNTR_NORMAL,
4522 access_rx_rcv_fsm_encoding_err_cnt),
4523[C_RX_DMA_FLAG_COR_ERR] = CNTR_ELEM("RxDmaFlagCorErr", 0, 0,
4524 CNTR_NORMAL,
4525 access_rx_dma_flag_cor_err_cnt),
4526[C_RX_DMA_FLAG_UNC_ERR] = CNTR_ELEM("RxDmaFlagUncErr", 0, 0,
4527 CNTR_NORMAL,
4528 access_rx_dma_flag_unc_err_cnt),
4529[C_RX_DC_SOP_EOP_PARITY_ERR] = CNTR_ELEM("RxDcSopEopParityErr", 0, 0,
4530 CNTR_NORMAL,
4531 access_rx_dc_sop_eop_parity_err_cnt),
4532[C_RX_RCV_CSR_PARITY_ERR] = CNTR_ELEM("RxRcvCsrParityErr", 0, 0,
4533 CNTR_NORMAL,
4534 access_rx_rcv_csr_parity_err_cnt),
4535[C_RX_RCV_QP_MAP_TABLE_COR_ERR] = CNTR_ELEM("RxRcvQpMapTableCorErr", 0, 0,
4536 CNTR_NORMAL,
4537 access_rx_rcv_qp_map_table_cor_err_cnt),
4538[C_RX_RCV_QP_MAP_TABLE_UNC_ERR] = CNTR_ELEM("RxRcvQpMapTableUncErr", 0, 0,
4539 CNTR_NORMAL,
4540 access_rx_rcv_qp_map_table_unc_err_cnt),
4541[C_RX_RCV_DATA_COR_ERR] = CNTR_ELEM("RxRcvDataCorErr", 0, 0,
4542 CNTR_NORMAL,
4543 access_rx_rcv_data_cor_err_cnt),
4544[C_RX_RCV_DATA_UNC_ERR] = CNTR_ELEM("RxRcvDataUncErr", 0, 0,
4545 CNTR_NORMAL,
4546 access_rx_rcv_data_unc_err_cnt),
4547[C_RX_RCV_HDR_COR_ERR] = CNTR_ELEM("RxRcvHdrCorErr", 0, 0,
4548 CNTR_NORMAL,
4549 access_rx_rcv_hdr_cor_err_cnt),
4550[C_RX_RCV_HDR_UNC_ERR] = CNTR_ELEM("RxRcvHdrUncErr", 0, 0,
4551 CNTR_NORMAL,
4552 access_rx_rcv_hdr_unc_err_cnt),
4553[C_RX_DC_INTF_PARITY_ERR] = CNTR_ELEM("RxDcIntfParityErr", 0, 0,
4554 CNTR_NORMAL,
4555 access_rx_dc_intf_parity_err_cnt),
4556[C_RX_DMA_CSR_COR_ERR] = CNTR_ELEM("RxDmaCsrCorErr", 0, 0,
4557 CNTR_NORMAL,
4558 access_rx_dma_csr_cor_err_cnt),
4559/* SendPioErrStatus */
4560[C_PIO_PEC_SOP_HEAD_PARITY_ERR] = CNTR_ELEM("PioPecSopHeadParityErr", 0, 0,
4561 CNTR_NORMAL,
4562 access_pio_pec_sop_head_parity_err_cnt),
4563[C_PIO_PCC_SOP_HEAD_PARITY_ERR] = CNTR_ELEM("PioPccSopHeadParityErr", 0, 0,
4564 CNTR_NORMAL,
4565 access_pio_pcc_sop_head_parity_err_cnt),
4566[C_PIO_LAST_RETURNED_CNT_PARITY_ERR] = CNTR_ELEM("PioLastReturnedCntParityErr",
4567 0, 0, CNTR_NORMAL,
4568 access_pio_last_returned_cnt_parity_err_cnt),
4569[C_PIO_CURRENT_FREE_CNT_PARITY_ERR] = CNTR_ELEM("PioCurrentFreeCntParityErr", 0,
4570 0, CNTR_NORMAL,
4571 access_pio_current_free_cnt_parity_err_cnt),
4572[C_PIO_RSVD_31_ERR] = CNTR_ELEM("Pio Reserved 31", 0, 0,
4573 CNTR_NORMAL,
4574 access_pio_reserved_31_err_cnt),
4575[C_PIO_RSVD_30_ERR] = CNTR_ELEM("Pio Reserved 30", 0, 0,
4576 CNTR_NORMAL,
4577 access_pio_reserved_30_err_cnt),
4578[C_PIO_PPMC_SOP_LEN_ERR] = CNTR_ELEM("PioPpmcSopLenErr", 0, 0,
4579 CNTR_NORMAL,
4580 access_pio_ppmc_sop_len_err_cnt),
4581[C_PIO_PPMC_BQC_MEM_PARITY_ERR] = CNTR_ELEM("PioPpmcBqcMemParityErr", 0, 0,
4582 CNTR_NORMAL,
4583 access_pio_ppmc_bqc_mem_parity_err_cnt),
4584[C_PIO_VL_FIFO_PARITY_ERR] = CNTR_ELEM("PioVlFifoParityErr", 0, 0,
4585 CNTR_NORMAL,
4586 access_pio_vl_fifo_parity_err_cnt),
4587[C_PIO_VLF_SOP_PARITY_ERR] = CNTR_ELEM("PioVlfSopParityErr", 0, 0,
4588 CNTR_NORMAL,
4589 access_pio_vlf_sop_parity_err_cnt),
4590[C_PIO_VLF_V1_LEN_PARITY_ERR] = CNTR_ELEM("PioVlfVlLenParityErr", 0, 0,
4591 CNTR_NORMAL,
4592 access_pio_vlf_v1_len_parity_err_cnt),
4593[C_PIO_BLOCK_QW_COUNT_PARITY_ERR] = CNTR_ELEM("PioBlockQwCountParityErr", 0, 0,
4594 CNTR_NORMAL,
4595 access_pio_block_qw_count_parity_err_cnt),
4596[C_PIO_WRITE_QW_VALID_PARITY_ERR] = CNTR_ELEM("PioWriteQwValidParityErr", 0, 0,
4597 CNTR_NORMAL,
4598 access_pio_write_qw_valid_parity_err_cnt),
4599[C_PIO_STATE_MACHINE_ERR] = CNTR_ELEM("PioStateMachineErr", 0, 0,
4600 CNTR_NORMAL,
4601 access_pio_state_machine_err_cnt),
4602[C_PIO_WRITE_DATA_PARITY_ERR] = CNTR_ELEM("PioWriteDataParityErr", 0, 0,
4603 CNTR_NORMAL,
4604 access_pio_write_data_parity_err_cnt),
4605[C_PIO_HOST_ADDR_MEM_COR_ERR] = CNTR_ELEM("PioHostAddrMemCorErr", 0, 0,
4606 CNTR_NORMAL,
4607 access_pio_host_addr_mem_cor_err_cnt),
4608[C_PIO_HOST_ADDR_MEM_UNC_ERR] = CNTR_ELEM("PioHostAddrMemUncErr", 0, 0,
4609 CNTR_NORMAL,
4610 access_pio_host_addr_mem_unc_err_cnt),
4611[C_PIO_PKT_EVICT_SM_OR_ARM_SM_ERR] = CNTR_ELEM("PioPktEvictSmOrArbSmErr", 0, 0,
4612 CNTR_NORMAL,
4613 access_pio_pkt_evict_sm_or_arb_sm_err_cnt),
4614[C_PIO_INIT_SM_IN_ERR] = CNTR_ELEM("PioInitSmInErr", 0, 0,
4615 CNTR_NORMAL,
4616 access_pio_init_sm_in_err_cnt),
4617[C_PIO_PPMC_PBL_FIFO_ERR] = CNTR_ELEM("PioPpmcPblFifoErr", 0, 0,
4618 CNTR_NORMAL,
4619 access_pio_ppmc_pbl_fifo_err_cnt),
4620[C_PIO_CREDIT_RET_FIFO_PARITY_ERR] = CNTR_ELEM("PioCreditRetFifoParityErr", 0,
4621 0, CNTR_NORMAL,
4622 access_pio_credit_ret_fifo_parity_err_cnt),
4623[C_PIO_V1_LEN_MEM_BANK1_COR_ERR] = CNTR_ELEM("PioVlLenMemBank1CorErr", 0, 0,
4624 CNTR_NORMAL,
4625 access_pio_v1_len_mem_bank1_cor_err_cnt),
4626[C_PIO_V1_LEN_MEM_BANK0_COR_ERR] = CNTR_ELEM("PioVlLenMemBank0CorErr", 0, 0,
4627 CNTR_NORMAL,
4628 access_pio_v1_len_mem_bank0_cor_err_cnt),
4629[C_PIO_V1_LEN_MEM_BANK1_UNC_ERR] = CNTR_ELEM("PioVlLenMemBank1UncErr", 0, 0,
4630 CNTR_NORMAL,
4631 access_pio_v1_len_mem_bank1_unc_err_cnt),
4632[C_PIO_V1_LEN_MEM_BANK0_UNC_ERR] = CNTR_ELEM("PioVlLenMemBank0UncErr", 0, 0,
4633 CNTR_NORMAL,
4634 access_pio_v1_len_mem_bank0_unc_err_cnt),
4635[C_PIO_SM_PKT_RESET_PARITY_ERR] = CNTR_ELEM("PioSmPktResetParityErr", 0, 0,
4636 CNTR_NORMAL,
4637 access_pio_sm_pkt_reset_parity_err_cnt),
4638[C_PIO_PKT_EVICT_FIFO_PARITY_ERR] = CNTR_ELEM("PioPktEvictFifoParityErr", 0, 0,
4639 CNTR_NORMAL,
4640 access_pio_pkt_evict_fifo_parity_err_cnt),
4641[C_PIO_SBRDCTRL_CRREL_FIFO_PARITY_ERR] = CNTR_ELEM(
4642 "PioSbrdctrlCrrelFifoParityErr", 0, 0,
4643 CNTR_NORMAL,
4644 access_pio_sbrdctrl_crrel_fifo_parity_err_cnt),
4645[C_PIO_SBRDCTL_CRREL_PARITY_ERR] = CNTR_ELEM("PioSbrdctlCrrelParityErr", 0, 0,
4646 CNTR_NORMAL,
4647 access_pio_sbrdctl_crrel_parity_err_cnt),
4648[C_PIO_PEC_FIFO_PARITY_ERR] = CNTR_ELEM("PioPecFifoParityErr", 0, 0,
4649 CNTR_NORMAL,
4650 access_pio_pec_fifo_parity_err_cnt),
4651[C_PIO_PCC_FIFO_PARITY_ERR] = CNTR_ELEM("PioPccFifoParityErr", 0, 0,
4652 CNTR_NORMAL,
4653 access_pio_pcc_fifo_parity_err_cnt),
4654[C_PIO_SB_MEM_FIFO1_ERR] = CNTR_ELEM("PioSbMemFifo1Err", 0, 0,
4655 CNTR_NORMAL,
4656 access_pio_sb_mem_fifo1_err_cnt),
4657[C_PIO_SB_MEM_FIFO0_ERR] = CNTR_ELEM("PioSbMemFifo0Err", 0, 0,
4658 CNTR_NORMAL,
4659 access_pio_sb_mem_fifo0_err_cnt),
4660[C_PIO_CSR_PARITY_ERR] = CNTR_ELEM("PioCsrParityErr", 0, 0,
4661 CNTR_NORMAL,
4662 access_pio_csr_parity_err_cnt),
4663[C_PIO_WRITE_ADDR_PARITY_ERR] = CNTR_ELEM("PioWriteAddrParityErr", 0, 0,
4664 CNTR_NORMAL,
4665 access_pio_write_addr_parity_err_cnt),
4666[C_PIO_WRITE_BAD_CTXT_ERR] = CNTR_ELEM("PioWriteBadCtxtErr", 0, 0,
4667 CNTR_NORMAL,
4668 access_pio_write_bad_ctxt_err_cnt),
4669/* SendDmaErrStatus */
4670[C_SDMA_PCIE_REQ_TRACKING_COR_ERR] = CNTR_ELEM("SDmaPcieReqTrackingCorErr", 0,
4671 0, CNTR_NORMAL,
4672 access_sdma_pcie_req_tracking_cor_err_cnt),
4673[C_SDMA_PCIE_REQ_TRACKING_UNC_ERR] = CNTR_ELEM("SDmaPcieReqTrackingUncErr", 0,
4674 0, CNTR_NORMAL,
4675 access_sdma_pcie_req_tracking_unc_err_cnt),
4676[C_SDMA_CSR_PARITY_ERR] = CNTR_ELEM("SDmaCsrParityErr", 0, 0,
4677 CNTR_NORMAL,
4678 access_sdma_csr_parity_err_cnt),
4679[C_SDMA_RPY_TAG_ERR] = CNTR_ELEM("SDmaRpyTagErr", 0, 0,
4680 CNTR_NORMAL,
4681 access_sdma_rpy_tag_err_cnt),
4682/* SendEgressErrStatus */
4683[C_TX_READ_PIO_MEMORY_CSR_UNC_ERR] = CNTR_ELEM("TxReadPioMemoryCsrUncErr", 0, 0,
4684 CNTR_NORMAL,
4685 access_tx_read_pio_memory_csr_unc_err_cnt),
4686[C_TX_READ_SDMA_MEMORY_CSR_UNC_ERR] = CNTR_ELEM("TxReadSdmaMemoryCsrUncErr", 0,
4687 0, CNTR_NORMAL,
4688 access_tx_read_sdma_memory_csr_err_cnt),
4689[C_TX_EGRESS_FIFO_COR_ERR] = CNTR_ELEM("TxEgressFifoCorErr", 0, 0,
4690 CNTR_NORMAL,
4691 access_tx_egress_fifo_cor_err_cnt),
4692[C_TX_READ_PIO_MEMORY_COR_ERR] = CNTR_ELEM("TxReadPioMemoryCorErr", 0, 0,
4693 CNTR_NORMAL,
4694 access_tx_read_pio_memory_cor_err_cnt),
4695[C_TX_READ_SDMA_MEMORY_COR_ERR] = CNTR_ELEM("TxReadSdmaMemoryCorErr", 0, 0,
4696 CNTR_NORMAL,
4697 access_tx_read_sdma_memory_cor_err_cnt),
4698[C_TX_SB_HDR_COR_ERR] = CNTR_ELEM("TxSbHdrCorErr", 0, 0,
4699 CNTR_NORMAL,
4700 access_tx_sb_hdr_cor_err_cnt),
4701[C_TX_CREDIT_OVERRUN_ERR] = CNTR_ELEM("TxCreditOverrunErr", 0, 0,
4702 CNTR_NORMAL,
4703 access_tx_credit_overrun_err_cnt),
4704[C_TX_LAUNCH_FIFO8_COR_ERR] = CNTR_ELEM("TxLaunchFifo8CorErr", 0, 0,
4705 CNTR_NORMAL,
4706 access_tx_launch_fifo8_cor_err_cnt),
4707[C_TX_LAUNCH_FIFO7_COR_ERR] = CNTR_ELEM("TxLaunchFifo7CorErr", 0, 0,
4708 CNTR_NORMAL,
4709 access_tx_launch_fifo7_cor_err_cnt),
4710[C_TX_LAUNCH_FIFO6_COR_ERR] = CNTR_ELEM("TxLaunchFifo6CorErr", 0, 0,
4711 CNTR_NORMAL,
4712 access_tx_launch_fifo6_cor_err_cnt),
4713[C_TX_LAUNCH_FIFO5_COR_ERR] = CNTR_ELEM("TxLaunchFifo5CorErr", 0, 0,
4714 CNTR_NORMAL,
4715 access_tx_launch_fifo5_cor_err_cnt),
4716[C_TX_LAUNCH_FIFO4_COR_ERR] = CNTR_ELEM("TxLaunchFifo4CorErr", 0, 0,
4717 CNTR_NORMAL,
4718 access_tx_launch_fifo4_cor_err_cnt),
4719[C_TX_LAUNCH_FIFO3_COR_ERR] = CNTR_ELEM("TxLaunchFifo3CorErr", 0, 0,
4720 CNTR_NORMAL,
4721 access_tx_launch_fifo3_cor_err_cnt),
4722[C_TX_LAUNCH_FIFO2_COR_ERR] = CNTR_ELEM("TxLaunchFifo2CorErr", 0, 0,
4723 CNTR_NORMAL,
4724 access_tx_launch_fifo2_cor_err_cnt),
4725[C_TX_LAUNCH_FIFO1_COR_ERR] = CNTR_ELEM("TxLaunchFifo1CorErr", 0, 0,
4726 CNTR_NORMAL,
4727 access_tx_launch_fifo1_cor_err_cnt),
4728[C_TX_LAUNCH_FIFO0_COR_ERR] = CNTR_ELEM("TxLaunchFifo0CorErr", 0, 0,
4729 CNTR_NORMAL,
4730 access_tx_launch_fifo0_cor_err_cnt),
4731[C_TX_CREDIT_RETURN_VL_ERR] = CNTR_ELEM("TxCreditReturnVLErr", 0, 0,
4732 CNTR_NORMAL,
4733 access_tx_credit_return_vl_err_cnt),
4734[C_TX_HCRC_INSERTION_ERR] = CNTR_ELEM("TxHcrcInsertionErr", 0, 0,
4735 CNTR_NORMAL,
4736 access_tx_hcrc_insertion_err_cnt),
4737[C_TX_EGRESS_FIFI_UNC_ERR] = CNTR_ELEM("TxEgressFifoUncErr", 0, 0,
4738 CNTR_NORMAL,
4739 access_tx_egress_fifo_unc_err_cnt),
4740[C_TX_READ_PIO_MEMORY_UNC_ERR] = CNTR_ELEM("TxReadPioMemoryUncErr", 0, 0,
4741 CNTR_NORMAL,
4742 access_tx_read_pio_memory_unc_err_cnt),
4743[C_TX_READ_SDMA_MEMORY_UNC_ERR] = CNTR_ELEM("TxReadSdmaMemoryUncErr", 0, 0,
4744 CNTR_NORMAL,
4745 access_tx_read_sdma_memory_unc_err_cnt),
4746[C_TX_SB_HDR_UNC_ERR] = CNTR_ELEM("TxSbHdrUncErr", 0, 0,
4747 CNTR_NORMAL,
4748 access_tx_sb_hdr_unc_err_cnt),
4749[C_TX_CREDIT_RETURN_PARITY_ERR] = CNTR_ELEM("TxCreditReturnParityErr", 0, 0,
4750 CNTR_NORMAL,
4751 access_tx_credit_return_partiy_err_cnt),
4752[C_TX_LAUNCH_FIFO8_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo8UncOrParityErr",
4753 0, 0, CNTR_NORMAL,
4754 access_tx_launch_fifo8_unc_or_parity_err_cnt),
4755[C_TX_LAUNCH_FIFO7_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo7UncOrParityErr",
4756 0, 0, CNTR_NORMAL,
4757 access_tx_launch_fifo7_unc_or_parity_err_cnt),
4758[C_TX_LAUNCH_FIFO6_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo6UncOrParityErr",
4759 0, 0, CNTR_NORMAL,
4760 access_tx_launch_fifo6_unc_or_parity_err_cnt),
4761[C_TX_LAUNCH_FIFO5_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo5UncOrParityErr",
4762 0, 0, CNTR_NORMAL,
4763 access_tx_launch_fifo5_unc_or_parity_err_cnt),
4764[C_TX_LAUNCH_FIFO4_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo4UncOrParityErr",
4765 0, 0, CNTR_NORMAL,
4766 access_tx_launch_fifo4_unc_or_parity_err_cnt),
4767[C_TX_LAUNCH_FIFO3_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo3UncOrParityErr",
4768 0, 0, CNTR_NORMAL,
4769 access_tx_launch_fifo3_unc_or_parity_err_cnt),
4770[C_TX_LAUNCH_FIFO2_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo2UncOrParityErr",
4771 0, 0, CNTR_NORMAL,
4772 access_tx_launch_fifo2_unc_or_parity_err_cnt),
4773[C_TX_LAUNCH_FIFO1_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo1UncOrParityErr",
4774 0, 0, CNTR_NORMAL,
4775 access_tx_launch_fifo1_unc_or_parity_err_cnt),
4776[C_TX_LAUNCH_FIFO0_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo0UncOrParityErr",
4777 0, 0, CNTR_NORMAL,
4778 access_tx_launch_fifo0_unc_or_parity_err_cnt),
4779[C_TX_SDMA15_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma15DisallowedPacketErr",
4780 0, 0, CNTR_NORMAL,
4781 access_tx_sdma15_disallowed_packet_err_cnt),
4782[C_TX_SDMA14_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma14DisallowedPacketErr",
4783 0, 0, CNTR_NORMAL,
4784 access_tx_sdma14_disallowed_packet_err_cnt),
4785[C_TX_SDMA13_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma13DisallowedPacketErr",
4786 0, 0, CNTR_NORMAL,
4787 access_tx_sdma13_disallowed_packet_err_cnt),
4788[C_TX_SDMA12_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma12DisallowedPacketErr",
4789 0, 0, CNTR_NORMAL,
4790 access_tx_sdma12_disallowed_packet_err_cnt),
4791[C_TX_SDMA11_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma11DisallowedPacketErr",
4792 0, 0, CNTR_NORMAL,
4793 access_tx_sdma11_disallowed_packet_err_cnt),
4794[C_TX_SDMA10_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma10DisallowedPacketErr",
4795 0, 0, CNTR_NORMAL,
4796 access_tx_sdma10_disallowed_packet_err_cnt),
4797[C_TX_SDMA9_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma9DisallowedPacketErr",
4798 0, 0, CNTR_NORMAL,
4799 access_tx_sdma9_disallowed_packet_err_cnt),
4800[C_TX_SDMA8_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma8DisallowedPacketErr",
4801 0, 0, CNTR_NORMAL,
4802 access_tx_sdma8_disallowed_packet_err_cnt),
4803[C_TX_SDMA7_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma7DisallowedPacketErr",
4804 0, 0, CNTR_NORMAL,
4805 access_tx_sdma7_disallowed_packet_err_cnt),
4806[C_TX_SDMA6_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma6DisallowedPacketErr",
4807 0, 0, CNTR_NORMAL,
4808 access_tx_sdma6_disallowed_packet_err_cnt),
4809[C_TX_SDMA5_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma5DisallowedPacketErr",
4810 0, 0, CNTR_NORMAL,
4811 access_tx_sdma5_disallowed_packet_err_cnt),
4812[C_TX_SDMA4_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma4DisallowedPacketErr",
4813 0, 0, CNTR_NORMAL,
4814 access_tx_sdma4_disallowed_packet_err_cnt),
4815[C_TX_SDMA3_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma3DisallowedPacketErr",
4816 0, 0, CNTR_NORMAL,
4817 access_tx_sdma3_disallowed_packet_err_cnt),
4818[C_TX_SDMA2_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma2DisallowedPacketErr",
4819 0, 0, CNTR_NORMAL,
4820 access_tx_sdma2_disallowed_packet_err_cnt),
4821[C_TX_SDMA1_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma1DisallowedPacketErr",
4822 0, 0, CNTR_NORMAL,
4823 access_tx_sdma1_disallowed_packet_err_cnt),
4824[C_TX_SDMA0_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma0DisallowedPacketErr",
4825 0, 0, CNTR_NORMAL,
4826 access_tx_sdma0_disallowed_packet_err_cnt),
4827[C_TX_CONFIG_PARITY_ERR] = CNTR_ELEM("TxConfigParityErr", 0, 0,
4828 CNTR_NORMAL,
4829 access_tx_config_parity_err_cnt),
4830[C_TX_SBRD_CTL_CSR_PARITY_ERR] = CNTR_ELEM("TxSbrdCtlCsrParityErr", 0, 0,
4831 CNTR_NORMAL,
4832 access_tx_sbrd_ctl_csr_parity_err_cnt),
4833[C_TX_LAUNCH_CSR_PARITY_ERR] = CNTR_ELEM("TxLaunchCsrParityErr", 0, 0,
4834 CNTR_NORMAL,
4835 access_tx_launch_csr_parity_err_cnt),
4836[C_TX_ILLEGAL_CL_ERR] = CNTR_ELEM("TxIllegalVLErr", 0, 0,
4837 CNTR_NORMAL,
4838 access_tx_illegal_vl_err_cnt),
4839[C_TX_SBRD_CTL_STATE_MACHINE_PARITY_ERR] = CNTR_ELEM(
4840 "TxSbrdCtlStateMachineParityErr", 0, 0,
4841 CNTR_NORMAL,
4842 access_tx_sbrd_ctl_state_machine_parity_err_cnt),
4843[C_TX_RESERVED_10] = CNTR_ELEM("Tx Egress Reserved 10", 0, 0,
4844 CNTR_NORMAL,
4845 access_egress_reserved_10_err_cnt),
4846[C_TX_RESERVED_9] = CNTR_ELEM("Tx Egress Reserved 9", 0, 0,
4847 CNTR_NORMAL,
4848 access_egress_reserved_9_err_cnt),
4849[C_TX_SDMA_LAUNCH_INTF_PARITY_ERR] = CNTR_ELEM("TxSdmaLaunchIntfParityErr",
4850 0, 0, CNTR_NORMAL,
4851 access_tx_sdma_launch_intf_parity_err_cnt),
4852[C_TX_PIO_LAUNCH_INTF_PARITY_ERR] = CNTR_ELEM("TxPioLaunchIntfParityErr", 0, 0,
4853 CNTR_NORMAL,
4854 access_tx_pio_launch_intf_parity_err_cnt),
4855[C_TX_RESERVED_6] = CNTR_ELEM("Tx Egress Reserved 6", 0, 0,
4856 CNTR_NORMAL,
4857 access_egress_reserved_6_err_cnt),
4858[C_TX_INCORRECT_LINK_STATE_ERR] = CNTR_ELEM("TxIncorrectLinkStateErr", 0, 0,
4859 CNTR_NORMAL,
4860 access_tx_incorrect_link_state_err_cnt),
4861[C_TX_LINK_DOWN_ERR] = CNTR_ELEM("TxLinkdownErr", 0, 0,
4862 CNTR_NORMAL,
4863 access_tx_linkdown_err_cnt),
4864[C_TX_EGRESS_FIFO_UNDERRUN_OR_PARITY_ERR] = CNTR_ELEM(
4865 "EgressFifoUnderrunOrParityErr", 0, 0,
4866 CNTR_NORMAL,
4867 access_tx_egress_fifi_underrun_or_parity_err_cnt),
4868[C_TX_RESERVED_2] = CNTR_ELEM("Tx Egress Reserved 2", 0, 0,
4869 CNTR_NORMAL,
4870 access_egress_reserved_2_err_cnt),
4871[C_TX_PKT_INTEGRITY_MEM_UNC_ERR] = CNTR_ELEM("TxPktIntegrityMemUncErr", 0, 0,
4872 CNTR_NORMAL,
4873 access_tx_pkt_integrity_mem_unc_err_cnt),
4874[C_TX_PKT_INTEGRITY_MEM_COR_ERR] = CNTR_ELEM("TxPktIntegrityMemCorErr", 0, 0,
4875 CNTR_NORMAL,
4876 access_tx_pkt_integrity_mem_cor_err_cnt),
4877/* SendErrStatus */
4878[C_SEND_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("SendCsrWriteBadAddrErr", 0, 0,
4879 CNTR_NORMAL,
4880 access_send_csr_write_bad_addr_err_cnt),
4881[C_SEND_CSR_READ_BAD_ADD_ERR] = CNTR_ELEM("SendCsrReadBadAddrErr", 0, 0,
4882 CNTR_NORMAL,
4883 access_send_csr_read_bad_addr_err_cnt),
4884[C_SEND_CSR_PARITY_ERR] = CNTR_ELEM("SendCsrParityErr", 0, 0,
4885 CNTR_NORMAL,
4886 access_send_csr_parity_cnt),
4887/* SendCtxtErrStatus */
4888[C_PIO_WRITE_OUT_OF_BOUNDS_ERR] = CNTR_ELEM("PioWriteOutOfBoundsErr", 0, 0,
4889 CNTR_NORMAL,
4890 access_pio_write_out_of_bounds_err_cnt),
4891[C_PIO_WRITE_OVERFLOW_ERR] = CNTR_ELEM("PioWriteOverflowErr", 0, 0,
4892 CNTR_NORMAL,
4893 access_pio_write_overflow_err_cnt),
4894[C_PIO_WRITE_CROSSES_BOUNDARY_ERR] = CNTR_ELEM("PioWriteCrossesBoundaryErr",
4895 0, 0, CNTR_NORMAL,
4896 access_pio_write_crosses_boundary_err_cnt),
4897[C_PIO_DISALLOWED_PACKET_ERR] = CNTR_ELEM("PioDisallowedPacketErr", 0, 0,
4898 CNTR_NORMAL,
4899 access_pio_disallowed_packet_err_cnt),
4900[C_PIO_INCONSISTENT_SOP_ERR] = CNTR_ELEM("PioInconsistentSopErr", 0, 0,
4901 CNTR_NORMAL,
4902 access_pio_inconsistent_sop_err_cnt),
4903/* SendDmaEngErrStatus */
4904[C_SDMA_HEADER_REQUEST_FIFO_COR_ERR] = CNTR_ELEM("SDmaHeaderRequestFifoCorErr",
4905 0, 0, CNTR_NORMAL,
4906 access_sdma_header_request_fifo_cor_err_cnt),
4907[C_SDMA_HEADER_STORAGE_COR_ERR] = CNTR_ELEM("SDmaHeaderStorageCorErr", 0, 0,
4908 CNTR_NORMAL,
4909 access_sdma_header_storage_cor_err_cnt),
4910[C_SDMA_PACKET_TRACKING_COR_ERR] = CNTR_ELEM("SDmaPacketTrackingCorErr", 0, 0,
4911 CNTR_NORMAL,
4912 access_sdma_packet_tracking_cor_err_cnt),
4913[C_SDMA_ASSEMBLY_COR_ERR] = CNTR_ELEM("SDmaAssemblyCorErr", 0, 0,
4914 CNTR_NORMAL,
4915 access_sdma_assembly_cor_err_cnt),
4916[C_SDMA_DESC_TABLE_COR_ERR] = CNTR_ELEM("SDmaDescTableCorErr", 0, 0,
4917 CNTR_NORMAL,
4918 access_sdma_desc_table_cor_err_cnt),
4919[C_SDMA_HEADER_REQUEST_FIFO_UNC_ERR] = CNTR_ELEM("SDmaHeaderRequestFifoUncErr",
4920 0, 0, CNTR_NORMAL,
4921 access_sdma_header_request_fifo_unc_err_cnt),
4922[C_SDMA_HEADER_STORAGE_UNC_ERR] = CNTR_ELEM("SDmaHeaderStorageUncErr", 0, 0,
4923 CNTR_NORMAL,
4924 access_sdma_header_storage_unc_err_cnt),
4925[C_SDMA_PACKET_TRACKING_UNC_ERR] = CNTR_ELEM("SDmaPacketTrackingUncErr", 0, 0,
4926 CNTR_NORMAL,
4927 access_sdma_packet_tracking_unc_err_cnt),
4928[C_SDMA_ASSEMBLY_UNC_ERR] = CNTR_ELEM("SDmaAssemblyUncErr", 0, 0,
4929 CNTR_NORMAL,
4930 access_sdma_assembly_unc_err_cnt),
4931[C_SDMA_DESC_TABLE_UNC_ERR] = CNTR_ELEM("SDmaDescTableUncErr", 0, 0,
4932 CNTR_NORMAL,
4933 access_sdma_desc_table_unc_err_cnt),
4934[C_SDMA_TIMEOUT_ERR] = CNTR_ELEM("SDmaTimeoutErr", 0, 0,
4935 CNTR_NORMAL,
4936 access_sdma_timeout_err_cnt),
4937[C_SDMA_HEADER_LENGTH_ERR] = CNTR_ELEM("SDmaHeaderLengthErr", 0, 0,
4938 CNTR_NORMAL,
4939 access_sdma_header_length_err_cnt),
4940[C_SDMA_HEADER_ADDRESS_ERR] = CNTR_ELEM("SDmaHeaderAddressErr", 0, 0,
4941 CNTR_NORMAL,
4942 access_sdma_header_address_err_cnt),
4943[C_SDMA_HEADER_SELECT_ERR] = CNTR_ELEM("SDmaHeaderSelectErr", 0, 0,
4944 CNTR_NORMAL,
4945 access_sdma_header_select_err_cnt),
4946[C_SMDA_RESERVED_9] = CNTR_ELEM("SDma Reserved 9", 0, 0,
4947 CNTR_NORMAL,
4948 access_sdma_reserved_9_err_cnt),
4949[C_SDMA_PACKET_DESC_OVERFLOW_ERR] = CNTR_ELEM("SDmaPacketDescOverflowErr", 0, 0,
4950 CNTR_NORMAL,
4951 access_sdma_packet_desc_overflow_err_cnt),
4952[C_SDMA_LENGTH_MISMATCH_ERR] = CNTR_ELEM("SDmaLengthMismatchErr", 0, 0,
4953 CNTR_NORMAL,
4954 access_sdma_length_mismatch_err_cnt),
4955[C_SDMA_HALT_ERR] = CNTR_ELEM("SDmaHaltErr", 0, 0,
4956 CNTR_NORMAL,
4957 access_sdma_halt_err_cnt),
4958[C_SDMA_MEM_READ_ERR] = CNTR_ELEM("SDmaMemReadErr", 0, 0,
4959 CNTR_NORMAL,
4960 access_sdma_mem_read_err_cnt),
4961[C_SDMA_FIRST_DESC_ERR] = CNTR_ELEM("SDmaFirstDescErr", 0, 0,
4962 CNTR_NORMAL,
4963 access_sdma_first_desc_err_cnt),
4964[C_SDMA_TAIL_OUT_OF_BOUNDS_ERR] = CNTR_ELEM("SDmaTailOutOfBoundsErr", 0, 0,
4965 CNTR_NORMAL,
4966 access_sdma_tail_out_of_bounds_err_cnt),
4967[C_SDMA_TOO_LONG_ERR] = CNTR_ELEM("SDmaTooLongErr", 0, 0,
4968 CNTR_NORMAL,
4969 access_sdma_too_long_err_cnt),
4970[C_SDMA_GEN_MISMATCH_ERR] = CNTR_ELEM("SDmaGenMismatchErr", 0, 0,
4971 CNTR_NORMAL,
4972 access_sdma_gen_mismatch_err_cnt),
4973[C_SDMA_WRONG_DW_ERR] = CNTR_ELEM("SDmaWrongDwErr", 0, 0,
4974 CNTR_NORMAL,
4975 access_sdma_wrong_dw_err_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004976};
4977
4978static struct cntr_entry port_cntrs[PORT_CNTR_LAST] = {
4979[C_TX_UNSUP_VL] = TXE32_PORT_CNTR_ELEM(TxUnVLErr, SEND_UNSUP_VL_ERR_CNT,
4980 CNTR_NORMAL),
4981[C_TX_INVAL_LEN] = TXE32_PORT_CNTR_ELEM(TxInvalLen, SEND_LEN_ERR_CNT,
4982 CNTR_NORMAL),
4983[C_TX_MM_LEN_ERR] = TXE32_PORT_CNTR_ELEM(TxMMLenErr, SEND_MAX_MIN_LEN_ERR_CNT,
4984 CNTR_NORMAL),
4985[C_TX_UNDERRUN] = TXE32_PORT_CNTR_ELEM(TxUnderrun, SEND_UNDERRUN_CNT,
4986 CNTR_NORMAL),
4987[C_TX_FLOW_STALL] = TXE32_PORT_CNTR_ELEM(TxFlowStall, SEND_FLOW_STALL_CNT,
4988 CNTR_NORMAL),
4989[C_TX_DROPPED] = TXE32_PORT_CNTR_ELEM(TxDropped, SEND_DROPPED_PKT_CNT,
4990 CNTR_NORMAL),
4991[C_TX_HDR_ERR] = TXE32_PORT_CNTR_ELEM(TxHdrErr, SEND_HEADERS_ERR_CNT,
4992 CNTR_NORMAL),
4993[C_TX_PKT] = TXE64_PORT_CNTR_ELEM(TxPkt, SEND_DATA_PKT_CNT, CNTR_NORMAL),
4994[C_TX_WORDS] = TXE64_PORT_CNTR_ELEM(TxWords, SEND_DWORD_CNT, CNTR_NORMAL),
4995[C_TX_WAIT] = TXE64_PORT_CNTR_ELEM(TxWait, SEND_WAIT_CNT, CNTR_SYNTH),
4996[C_TX_FLIT_VL] = TXE64_PORT_CNTR_ELEM(TxFlitVL, SEND_DATA_VL0_CNT,
Jubin John17fb4f22016-02-14 20:21:52 -08004997 CNTR_SYNTH | CNTR_VL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004998[C_TX_PKT_VL] = TXE64_PORT_CNTR_ELEM(TxPktVL, SEND_DATA_PKT_VL0_CNT,
Jubin John17fb4f22016-02-14 20:21:52 -08004999 CNTR_SYNTH | CNTR_VL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005000[C_TX_WAIT_VL] = TXE64_PORT_CNTR_ELEM(TxWaitVL, SEND_WAIT_VL0_CNT,
Jubin John17fb4f22016-02-14 20:21:52 -08005001 CNTR_SYNTH | CNTR_VL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005002[C_RX_PKT] = RXE64_PORT_CNTR_ELEM(RxPkt, RCV_DATA_PKT_CNT, CNTR_NORMAL),
5003[C_RX_WORDS] = RXE64_PORT_CNTR_ELEM(RxWords, RCV_DWORD_CNT, CNTR_NORMAL),
5004[C_SW_LINK_DOWN] = CNTR_ELEM("SwLinkDown", 0, 0, CNTR_SYNTH | CNTR_32BIT,
Jubin John17fb4f22016-02-14 20:21:52 -08005005 access_sw_link_dn_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005006[C_SW_LINK_UP] = CNTR_ELEM("SwLinkUp", 0, 0, CNTR_SYNTH | CNTR_32BIT,
Jubin John17fb4f22016-02-14 20:21:52 -08005007 access_sw_link_up_cnt),
Dean Luick6d014532015-12-01 15:38:23 -05005008[C_SW_UNKNOWN_FRAME] = CNTR_ELEM("UnknownFrame", 0, 0, CNTR_NORMAL,
5009 access_sw_unknown_frame_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005010[C_SW_XMIT_DSCD] = CNTR_ELEM("XmitDscd", 0, 0, CNTR_SYNTH | CNTR_32BIT,
Jubin John17fb4f22016-02-14 20:21:52 -08005011 access_sw_xmit_discards),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005012[C_SW_XMIT_DSCD_VL] = CNTR_ELEM("XmitDscdVl", 0, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08005013 CNTR_SYNTH | CNTR_32BIT | CNTR_VL,
5014 access_sw_xmit_discards),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005015[C_SW_XMIT_CSTR_ERR] = CNTR_ELEM("XmitCstrErr", 0, 0, CNTR_SYNTH,
Jubin John17fb4f22016-02-14 20:21:52 -08005016 access_xmit_constraint_errs),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005017[C_SW_RCV_CSTR_ERR] = CNTR_ELEM("RcvCstrErr", 0, 0, CNTR_SYNTH,
Jubin John17fb4f22016-02-14 20:21:52 -08005018 access_rcv_constraint_errs),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005019[C_SW_IBP_LOOP_PKTS] = SW_IBP_CNTR(LoopPkts, loop_pkts),
5020[C_SW_IBP_RC_RESENDS] = SW_IBP_CNTR(RcResend, rc_resends),
5021[C_SW_IBP_RNR_NAKS] = SW_IBP_CNTR(RnrNak, rnr_naks),
5022[C_SW_IBP_OTHER_NAKS] = SW_IBP_CNTR(OtherNak, other_naks),
5023[C_SW_IBP_RC_TIMEOUTS] = SW_IBP_CNTR(RcTimeOut, rc_timeouts),
5024[C_SW_IBP_PKT_DROPS] = SW_IBP_CNTR(PktDrop, pkt_drops),
5025[C_SW_IBP_DMA_WAIT] = SW_IBP_CNTR(DmaWait, dmawait),
5026[C_SW_IBP_RC_SEQNAK] = SW_IBP_CNTR(RcSeqNak, rc_seqnak),
5027[C_SW_IBP_RC_DUPREQ] = SW_IBP_CNTR(RcDupRew, rc_dupreq),
5028[C_SW_IBP_RDMA_SEQ] = SW_IBP_CNTR(RdmaSeq, rdma_seq),
5029[C_SW_IBP_UNALIGNED] = SW_IBP_CNTR(Unaligned, unaligned),
5030[C_SW_IBP_SEQ_NAK] = SW_IBP_CNTR(SeqNak, seq_naks),
5031[C_SW_CPU_RC_ACKS] = CNTR_ELEM("RcAcks", 0, 0, CNTR_NORMAL,
5032 access_sw_cpu_rc_acks),
5033[C_SW_CPU_RC_QACKS] = CNTR_ELEM("RcQacks", 0, 0, CNTR_NORMAL,
Jubin John17fb4f22016-02-14 20:21:52 -08005034 access_sw_cpu_rc_qacks),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005035[C_SW_CPU_RC_DELAYED_COMP] = CNTR_ELEM("RcDelayComp", 0, 0, CNTR_NORMAL,
Jubin John17fb4f22016-02-14 20:21:52 -08005036 access_sw_cpu_rc_delayed_comp),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005037[OVR_LBL(0)] = OVR_ELM(0), [OVR_LBL(1)] = OVR_ELM(1),
5038[OVR_LBL(2)] = OVR_ELM(2), [OVR_LBL(3)] = OVR_ELM(3),
5039[OVR_LBL(4)] = OVR_ELM(4), [OVR_LBL(5)] = OVR_ELM(5),
5040[OVR_LBL(6)] = OVR_ELM(6), [OVR_LBL(7)] = OVR_ELM(7),
5041[OVR_LBL(8)] = OVR_ELM(8), [OVR_LBL(9)] = OVR_ELM(9),
5042[OVR_LBL(10)] = OVR_ELM(10), [OVR_LBL(11)] = OVR_ELM(11),
5043[OVR_LBL(12)] = OVR_ELM(12), [OVR_LBL(13)] = OVR_ELM(13),
5044[OVR_LBL(14)] = OVR_ELM(14), [OVR_LBL(15)] = OVR_ELM(15),
5045[OVR_LBL(16)] = OVR_ELM(16), [OVR_LBL(17)] = OVR_ELM(17),
5046[OVR_LBL(18)] = OVR_ELM(18), [OVR_LBL(19)] = OVR_ELM(19),
5047[OVR_LBL(20)] = OVR_ELM(20), [OVR_LBL(21)] = OVR_ELM(21),
5048[OVR_LBL(22)] = OVR_ELM(22), [OVR_LBL(23)] = OVR_ELM(23),
5049[OVR_LBL(24)] = OVR_ELM(24), [OVR_LBL(25)] = OVR_ELM(25),
5050[OVR_LBL(26)] = OVR_ELM(26), [OVR_LBL(27)] = OVR_ELM(27),
5051[OVR_LBL(28)] = OVR_ELM(28), [OVR_LBL(29)] = OVR_ELM(29),
5052[OVR_LBL(30)] = OVR_ELM(30), [OVR_LBL(31)] = OVR_ELM(31),
5053[OVR_LBL(32)] = OVR_ELM(32), [OVR_LBL(33)] = OVR_ELM(33),
5054[OVR_LBL(34)] = OVR_ELM(34), [OVR_LBL(35)] = OVR_ELM(35),
5055[OVR_LBL(36)] = OVR_ELM(36), [OVR_LBL(37)] = OVR_ELM(37),
5056[OVR_LBL(38)] = OVR_ELM(38), [OVR_LBL(39)] = OVR_ELM(39),
5057[OVR_LBL(40)] = OVR_ELM(40), [OVR_LBL(41)] = OVR_ELM(41),
5058[OVR_LBL(42)] = OVR_ELM(42), [OVR_LBL(43)] = OVR_ELM(43),
5059[OVR_LBL(44)] = OVR_ELM(44), [OVR_LBL(45)] = OVR_ELM(45),
5060[OVR_LBL(46)] = OVR_ELM(46), [OVR_LBL(47)] = OVR_ELM(47),
5061[OVR_LBL(48)] = OVR_ELM(48), [OVR_LBL(49)] = OVR_ELM(49),
5062[OVR_LBL(50)] = OVR_ELM(50), [OVR_LBL(51)] = OVR_ELM(51),
5063[OVR_LBL(52)] = OVR_ELM(52), [OVR_LBL(53)] = OVR_ELM(53),
5064[OVR_LBL(54)] = OVR_ELM(54), [OVR_LBL(55)] = OVR_ELM(55),
5065[OVR_LBL(56)] = OVR_ELM(56), [OVR_LBL(57)] = OVR_ELM(57),
5066[OVR_LBL(58)] = OVR_ELM(58), [OVR_LBL(59)] = OVR_ELM(59),
5067[OVR_LBL(60)] = OVR_ELM(60), [OVR_LBL(61)] = OVR_ELM(61),
5068[OVR_LBL(62)] = OVR_ELM(62), [OVR_LBL(63)] = OVR_ELM(63),
5069[OVR_LBL(64)] = OVR_ELM(64), [OVR_LBL(65)] = OVR_ELM(65),
5070[OVR_LBL(66)] = OVR_ELM(66), [OVR_LBL(67)] = OVR_ELM(67),
5071[OVR_LBL(68)] = OVR_ELM(68), [OVR_LBL(69)] = OVR_ELM(69),
5072[OVR_LBL(70)] = OVR_ELM(70), [OVR_LBL(71)] = OVR_ELM(71),
5073[OVR_LBL(72)] = OVR_ELM(72), [OVR_LBL(73)] = OVR_ELM(73),
5074[OVR_LBL(74)] = OVR_ELM(74), [OVR_LBL(75)] = OVR_ELM(75),
5075[OVR_LBL(76)] = OVR_ELM(76), [OVR_LBL(77)] = OVR_ELM(77),
5076[OVR_LBL(78)] = OVR_ELM(78), [OVR_LBL(79)] = OVR_ELM(79),
5077[OVR_LBL(80)] = OVR_ELM(80), [OVR_LBL(81)] = OVR_ELM(81),
5078[OVR_LBL(82)] = OVR_ELM(82), [OVR_LBL(83)] = OVR_ELM(83),
5079[OVR_LBL(84)] = OVR_ELM(84), [OVR_LBL(85)] = OVR_ELM(85),
5080[OVR_LBL(86)] = OVR_ELM(86), [OVR_LBL(87)] = OVR_ELM(87),
5081[OVR_LBL(88)] = OVR_ELM(88), [OVR_LBL(89)] = OVR_ELM(89),
5082[OVR_LBL(90)] = OVR_ELM(90), [OVR_LBL(91)] = OVR_ELM(91),
5083[OVR_LBL(92)] = OVR_ELM(92), [OVR_LBL(93)] = OVR_ELM(93),
5084[OVR_LBL(94)] = OVR_ELM(94), [OVR_LBL(95)] = OVR_ELM(95),
5085[OVR_LBL(96)] = OVR_ELM(96), [OVR_LBL(97)] = OVR_ELM(97),
5086[OVR_LBL(98)] = OVR_ELM(98), [OVR_LBL(99)] = OVR_ELM(99),
5087[OVR_LBL(100)] = OVR_ELM(100), [OVR_LBL(101)] = OVR_ELM(101),
5088[OVR_LBL(102)] = OVR_ELM(102), [OVR_LBL(103)] = OVR_ELM(103),
5089[OVR_LBL(104)] = OVR_ELM(104), [OVR_LBL(105)] = OVR_ELM(105),
5090[OVR_LBL(106)] = OVR_ELM(106), [OVR_LBL(107)] = OVR_ELM(107),
5091[OVR_LBL(108)] = OVR_ELM(108), [OVR_LBL(109)] = OVR_ELM(109),
5092[OVR_LBL(110)] = OVR_ELM(110), [OVR_LBL(111)] = OVR_ELM(111),
5093[OVR_LBL(112)] = OVR_ELM(112), [OVR_LBL(113)] = OVR_ELM(113),
5094[OVR_LBL(114)] = OVR_ELM(114), [OVR_LBL(115)] = OVR_ELM(115),
5095[OVR_LBL(116)] = OVR_ELM(116), [OVR_LBL(117)] = OVR_ELM(117),
5096[OVR_LBL(118)] = OVR_ELM(118), [OVR_LBL(119)] = OVR_ELM(119),
5097[OVR_LBL(120)] = OVR_ELM(120), [OVR_LBL(121)] = OVR_ELM(121),
5098[OVR_LBL(122)] = OVR_ELM(122), [OVR_LBL(123)] = OVR_ELM(123),
5099[OVR_LBL(124)] = OVR_ELM(124), [OVR_LBL(125)] = OVR_ELM(125),
5100[OVR_LBL(126)] = OVR_ELM(126), [OVR_LBL(127)] = OVR_ELM(127),
5101[OVR_LBL(128)] = OVR_ELM(128), [OVR_LBL(129)] = OVR_ELM(129),
5102[OVR_LBL(130)] = OVR_ELM(130), [OVR_LBL(131)] = OVR_ELM(131),
5103[OVR_LBL(132)] = OVR_ELM(132), [OVR_LBL(133)] = OVR_ELM(133),
5104[OVR_LBL(134)] = OVR_ELM(134), [OVR_LBL(135)] = OVR_ELM(135),
5105[OVR_LBL(136)] = OVR_ELM(136), [OVR_LBL(137)] = OVR_ELM(137),
5106[OVR_LBL(138)] = OVR_ELM(138), [OVR_LBL(139)] = OVR_ELM(139),
5107[OVR_LBL(140)] = OVR_ELM(140), [OVR_LBL(141)] = OVR_ELM(141),
5108[OVR_LBL(142)] = OVR_ELM(142), [OVR_LBL(143)] = OVR_ELM(143),
5109[OVR_LBL(144)] = OVR_ELM(144), [OVR_LBL(145)] = OVR_ELM(145),
5110[OVR_LBL(146)] = OVR_ELM(146), [OVR_LBL(147)] = OVR_ELM(147),
5111[OVR_LBL(148)] = OVR_ELM(148), [OVR_LBL(149)] = OVR_ELM(149),
5112[OVR_LBL(150)] = OVR_ELM(150), [OVR_LBL(151)] = OVR_ELM(151),
5113[OVR_LBL(152)] = OVR_ELM(152), [OVR_LBL(153)] = OVR_ELM(153),
5114[OVR_LBL(154)] = OVR_ELM(154), [OVR_LBL(155)] = OVR_ELM(155),
5115[OVR_LBL(156)] = OVR_ELM(156), [OVR_LBL(157)] = OVR_ELM(157),
5116[OVR_LBL(158)] = OVR_ELM(158), [OVR_LBL(159)] = OVR_ELM(159),
5117};
5118
5119/* ======================================================================== */
5120
Mike Marciniszyn77241052015-07-30 15:17:43 -04005121/* return true if this is chip revision revision a */
5122int is_ax(struct hfi1_devdata *dd)
5123{
5124 u8 chip_rev_minor =
5125 dd->revision >> CCE_REVISION_CHIP_REV_MINOR_SHIFT
5126 & CCE_REVISION_CHIP_REV_MINOR_MASK;
5127 return (chip_rev_minor & 0xf0) == 0;
5128}
5129
5130/* return true if this is chip revision revision b */
5131int is_bx(struct hfi1_devdata *dd)
5132{
5133 u8 chip_rev_minor =
5134 dd->revision >> CCE_REVISION_CHIP_REV_MINOR_SHIFT
5135 & CCE_REVISION_CHIP_REV_MINOR_MASK;
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05005136 return (chip_rev_minor & 0xF0) == 0x10;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005137}
5138
5139/*
5140 * Append string s to buffer buf. Arguments curp and len are the current
5141 * position and remaining length, respectively.
5142 *
5143 * return 0 on success, 1 on out of room
5144 */
5145static int append_str(char *buf, char **curp, int *lenp, const char *s)
5146{
5147 char *p = *curp;
5148 int len = *lenp;
5149 int result = 0; /* success */
5150 char c;
5151
5152 /* add a comma, if first in the buffer */
5153 if (p != buf) {
5154 if (len == 0) {
5155 result = 1; /* out of room */
5156 goto done;
5157 }
5158 *p++ = ',';
5159 len--;
5160 }
5161
5162 /* copy the string */
5163 while ((c = *s++) != 0) {
5164 if (len == 0) {
5165 result = 1; /* out of room */
5166 goto done;
5167 }
5168 *p++ = c;
5169 len--;
5170 }
5171
5172done:
5173 /* write return values */
5174 *curp = p;
5175 *lenp = len;
5176
5177 return result;
5178}
5179
5180/*
5181 * Using the given flag table, print a comma separated string into
5182 * the buffer. End in '*' if the buffer is too short.
5183 */
5184static char *flag_string(char *buf, int buf_len, u64 flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005185 struct flag_table *table, int table_size)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005186{
5187 char extra[32];
5188 char *p = buf;
5189 int len = buf_len;
5190 int no_room = 0;
5191 int i;
5192
5193 /* make sure there is at least 2 so we can form "*" */
5194 if (len < 2)
5195 return "";
5196
5197 len--; /* leave room for a nul */
5198 for (i = 0; i < table_size; i++) {
5199 if (flags & table[i].flag) {
5200 no_room = append_str(buf, &p, &len, table[i].str);
5201 if (no_room)
5202 break;
5203 flags &= ~table[i].flag;
5204 }
5205 }
5206
5207 /* any undocumented bits left? */
5208 if (!no_room && flags) {
5209 snprintf(extra, sizeof(extra), "bits 0x%llx", flags);
5210 no_room = append_str(buf, &p, &len, extra);
5211 }
5212
5213 /* add * if ran out of room */
5214 if (no_room) {
5215 /* may need to back up to add space for a '*' */
5216 if (len == 0)
5217 --p;
5218 *p++ = '*';
5219 }
5220
5221 /* add final nul - space already allocated above */
5222 *p = 0;
5223 return buf;
5224}
5225
5226/* first 8 CCE error interrupt source names */
5227static const char * const cce_misc_names[] = {
5228 "CceErrInt", /* 0 */
5229 "RxeErrInt", /* 1 */
5230 "MiscErrInt", /* 2 */
5231 "Reserved3", /* 3 */
5232 "PioErrInt", /* 4 */
5233 "SDmaErrInt", /* 5 */
5234 "EgressErrInt", /* 6 */
5235 "TxeErrInt" /* 7 */
5236};
5237
5238/*
5239 * Return the miscellaneous error interrupt name.
5240 */
5241static char *is_misc_err_name(char *buf, size_t bsize, unsigned int source)
5242{
5243 if (source < ARRAY_SIZE(cce_misc_names))
5244 strncpy(buf, cce_misc_names[source], bsize);
5245 else
Jubin John17fb4f22016-02-14 20:21:52 -08005246 snprintf(buf, bsize, "Reserved%u",
5247 source + IS_GENERAL_ERR_START);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005248
5249 return buf;
5250}
5251
5252/*
5253 * Return the SDMA engine error interrupt name.
5254 */
5255static char *is_sdma_eng_err_name(char *buf, size_t bsize, unsigned int source)
5256{
5257 snprintf(buf, bsize, "SDmaEngErrInt%u", source);
5258 return buf;
5259}
5260
5261/*
5262 * Return the send context error interrupt name.
5263 */
5264static char *is_sendctxt_err_name(char *buf, size_t bsize, unsigned int source)
5265{
5266 snprintf(buf, bsize, "SendCtxtErrInt%u", source);
5267 return buf;
5268}
5269
5270static const char * const various_names[] = {
5271 "PbcInt",
5272 "GpioAssertInt",
5273 "Qsfp1Int",
5274 "Qsfp2Int",
5275 "TCritInt"
5276};
5277
5278/*
5279 * Return the various interrupt name.
5280 */
5281static char *is_various_name(char *buf, size_t bsize, unsigned int source)
5282{
5283 if (source < ARRAY_SIZE(various_names))
5284 strncpy(buf, various_names[source], bsize);
5285 else
Jubin John8638b772016-02-14 20:19:24 -08005286 snprintf(buf, bsize, "Reserved%u", source + IS_VARIOUS_START);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005287 return buf;
5288}
5289
5290/*
5291 * Return the DC interrupt name.
5292 */
5293static char *is_dc_name(char *buf, size_t bsize, unsigned int source)
5294{
5295 static const char * const dc_int_names[] = {
5296 "common",
5297 "lcb",
5298 "8051",
5299 "lbm" /* local block merge */
5300 };
5301
5302 if (source < ARRAY_SIZE(dc_int_names))
5303 snprintf(buf, bsize, "dc_%s_int", dc_int_names[source]);
5304 else
5305 snprintf(buf, bsize, "DCInt%u", source);
5306 return buf;
5307}
5308
5309static const char * const sdma_int_names[] = {
5310 "SDmaInt",
5311 "SdmaIdleInt",
5312 "SdmaProgressInt",
5313};
5314
5315/*
5316 * Return the SDMA engine interrupt name.
5317 */
5318static char *is_sdma_eng_name(char *buf, size_t bsize, unsigned int source)
5319{
5320 /* what interrupt */
5321 unsigned int what = source / TXE_NUM_SDMA_ENGINES;
5322 /* which engine */
5323 unsigned int which = source % TXE_NUM_SDMA_ENGINES;
5324
5325 if (likely(what < 3))
5326 snprintf(buf, bsize, "%s%u", sdma_int_names[what], which);
5327 else
5328 snprintf(buf, bsize, "Invalid SDMA interrupt %u", source);
5329 return buf;
5330}
5331
5332/*
5333 * Return the receive available interrupt name.
5334 */
5335static char *is_rcv_avail_name(char *buf, size_t bsize, unsigned int source)
5336{
5337 snprintf(buf, bsize, "RcvAvailInt%u", source);
5338 return buf;
5339}
5340
5341/*
5342 * Return the receive urgent interrupt name.
5343 */
5344static char *is_rcv_urgent_name(char *buf, size_t bsize, unsigned int source)
5345{
5346 snprintf(buf, bsize, "RcvUrgentInt%u", source);
5347 return buf;
5348}
5349
5350/*
5351 * Return the send credit interrupt name.
5352 */
5353static char *is_send_credit_name(char *buf, size_t bsize, unsigned int source)
5354{
5355 snprintf(buf, bsize, "SendCreditInt%u", source);
5356 return buf;
5357}
5358
5359/*
5360 * Return the reserved interrupt name.
5361 */
5362static char *is_reserved_name(char *buf, size_t bsize, unsigned int source)
5363{
5364 snprintf(buf, bsize, "Reserved%u", source + IS_RESERVED_START);
5365 return buf;
5366}
5367
5368static char *cce_err_status_string(char *buf, int buf_len, u64 flags)
5369{
5370 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005371 cce_err_status_flags,
5372 ARRAY_SIZE(cce_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005373}
5374
5375static char *rxe_err_status_string(char *buf, int buf_len, u64 flags)
5376{
5377 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005378 rxe_err_status_flags,
5379 ARRAY_SIZE(rxe_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005380}
5381
5382static char *misc_err_status_string(char *buf, int buf_len, u64 flags)
5383{
5384 return flag_string(buf, buf_len, flags, misc_err_status_flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005385 ARRAY_SIZE(misc_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005386}
5387
5388static char *pio_err_status_string(char *buf, int buf_len, u64 flags)
5389{
5390 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005391 pio_err_status_flags,
5392 ARRAY_SIZE(pio_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005393}
5394
5395static char *sdma_err_status_string(char *buf, int buf_len, u64 flags)
5396{
5397 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005398 sdma_err_status_flags,
5399 ARRAY_SIZE(sdma_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005400}
5401
5402static char *egress_err_status_string(char *buf, int buf_len, u64 flags)
5403{
5404 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005405 egress_err_status_flags,
5406 ARRAY_SIZE(egress_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005407}
5408
5409static char *egress_err_info_string(char *buf, int buf_len, u64 flags)
5410{
5411 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005412 egress_err_info_flags,
5413 ARRAY_SIZE(egress_err_info_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005414}
5415
5416static char *send_err_status_string(char *buf, int buf_len, u64 flags)
5417{
5418 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005419 send_err_status_flags,
5420 ARRAY_SIZE(send_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005421}
5422
5423static void handle_cce_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5424{
5425 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005426 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005427
5428 /*
5429 * For most these errors, there is nothing that can be done except
5430 * report or record it.
5431 */
5432 dd_dev_info(dd, "CCE Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005433 cce_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005434
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05005435 if ((reg & CCE_ERR_STATUS_CCE_CLI2_ASYNC_FIFO_PARITY_ERR_SMASK) &&
5436 is_ax(dd) && (dd->icode != ICODE_FUNCTIONAL_SIMULATOR)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04005437 /* this error requires a manual drop into SPC freeze mode */
5438 /* then a fix up */
5439 start_freeze_handling(dd->pport, FREEZE_SELF);
5440 }
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005441
5442 for (i = 0; i < NUM_CCE_ERR_STATUS_COUNTERS; i++) {
5443 if (reg & (1ull << i)) {
5444 incr_cntr64(&dd->cce_err_status_cnt[i]);
5445 /* maintain a counter over all cce_err_status errors */
5446 incr_cntr64(&dd->sw_cce_err_status_aggregate);
5447 }
5448 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005449}
5450
5451/*
5452 * Check counters for receive errors that do not have an interrupt
5453 * associated with them.
5454 */
5455#define RCVERR_CHECK_TIME 10
5456static void update_rcverr_timer(unsigned long opaque)
5457{
5458 struct hfi1_devdata *dd = (struct hfi1_devdata *)opaque;
5459 struct hfi1_pportdata *ppd = dd->pport;
5460 u32 cur_ovfl_cnt = read_dev_cntr(dd, C_RCV_OVF, CNTR_INVALID_VL);
5461
5462 if (dd->rcv_ovfl_cnt < cur_ovfl_cnt &&
Jubin John17fb4f22016-02-14 20:21:52 -08005463 ppd->port_error_action & OPA_PI_MASK_EX_BUFFER_OVERRUN) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04005464 dd_dev_info(dd, "%s: PortErrorAction bounce\n", __func__);
Jubin John17fb4f22016-02-14 20:21:52 -08005465 set_link_down_reason(
5466 ppd, OPA_LINKDOWN_REASON_EXCESSIVE_BUFFER_OVERRUN, 0,
5467 OPA_LINKDOWN_REASON_EXCESSIVE_BUFFER_OVERRUN);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005468 queue_work(ppd->hfi1_wq, &ppd->link_bounce_work);
5469 }
Jubin John50e5dcb2016-02-14 20:19:41 -08005470 dd->rcv_ovfl_cnt = (u32)cur_ovfl_cnt;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005471
5472 mod_timer(&dd->rcverr_timer, jiffies + HZ * RCVERR_CHECK_TIME);
5473}
5474
5475static int init_rcverr(struct hfi1_devdata *dd)
5476{
Muhammad Falak R Wani24523a92015-10-25 16:13:23 +05305477 setup_timer(&dd->rcverr_timer, update_rcverr_timer, (unsigned long)dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005478 /* Assume the hardware counter has been reset */
5479 dd->rcv_ovfl_cnt = 0;
5480 return mod_timer(&dd->rcverr_timer, jiffies + HZ * RCVERR_CHECK_TIME);
5481}
5482
5483static void free_rcverr(struct hfi1_devdata *dd)
5484{
5485 if (dd->rcverr_timer.data)
5486 del_timer_sync(&dd->rcverr_timer);
5487 dd->rcverr_timer.data = 0;
5488}
5489
5490static void handle_rxe_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5491{
5492 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005493 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005494
5495 dd_dev_info(dd, "Receive Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005496 rxe_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005497
5498 if (reg & ALL_RXE_FREEZE_ERR) {
5499 int flags = 0;
5500
5501 /*
5502 * Freeze mode recovery is disabled for the errors
5503 * in RXE_FREEZE_ABORT_MASK
5504 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05005505 if (is_ax(dd) && (reg & RXE_FREEZE_ABORT_MASK))
Mike Marciniszyn77241052015-07-30 15:17:43 -04005506 flags = FREEZE_ABORT;
5507
5508 start_freeze_handling(dd->pport, flags);
5509 }
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005510
5511 for (i = 0; i < NUM_RCV_ERR_STATUS_COUNTERS; i++) {
5512 if (reg & (1ull << i))
5513 incr_cntr64(&dd->rcv_err_status_cnt[i]);
5514 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005515}
5516
5517static void handle_misc_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5518{
5519 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005520 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005521
5522 dd_dev_info(dd, "Misc Error: %s",
Jubin John17fb4f22016-02-14 20:21:52 -08005523 misc_err_status_string(buf, sizeof(buf), reg));
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005524 for (i = 0; i < NUM_MISC_ERR_STATUS_COUNTERS; i++) {
5525 if (reg & (1ull << i))
5526 incr_cntr64(&dd->misc_err_status_cnt[i]);
5527 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005528}
5529
5530static void handle_pio_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5531{
5532 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005533 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005534
5535 dd_dev_info(dd, "PIO Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005536 pio_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005537
5538 if (reg & ALL_PIO_FREEZE_ERR)
5539 start_freeze_handling(dd->pport, 0);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005540
5541 for (i = 0; i < NUM_SEND_PIO_ERR_STATUS_COUNTERS; i++) {
5542 if (reg & (1ull << i))
5543 incr_cntr64(&dd->send_pio_err_status_cnt[i]);
5544 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005545}
5546
5547static void handle_sdma_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5548{
5549 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005550 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005551
5552 dd_dev_info(dd, "SDMA Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005553 sdma_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005554
5555 if (reg & ALL_SDMA_FREEZE_ERR)
5556 start_freeze_handling(dd->pport, 0);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005557
5558 for (i = 0; i < NUM_SEND_DMA_ERR_STATUS_COUNTERS; i++) {
5559 if (reg & (1ull << i))
5560 incr_cntr64(&dd->send_dma_err_status_cnt[i]);
5561 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005562}
5563
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005564static inline void __count_port_discards(struct hfi1_pportdata *ppd)
5565{
5566 incr_cntr64(&ppd->port_xmit_discards);
5567}
5568
Mike Marciniszyn77241052015-07-30 15:17:43 -04005569static void count_port_inactive(struct hfi1_devdata *dd)
5570{
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005571 __count_port_discards(dd->pport);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005572}
5573
5574/*
5575 * We have had a "disallowed packet" error during egress. Determine the
5576 * integrity check which failed, and update relevant error counter, etc.
5577 *
5578 * Note that the SEND_EGRESS_ERR_INFO register has only a single
5579 * bit of state per integrity check, and so we can miss the reason for an
5580 * egress error if more than one packet fails the same integrity check
5581 * since we cleared the corresponding bit in SEND_EGRESS_ERR_INFO.
5582 */
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005583static void handle_send_egress_err_info(struct hfi1_devdata *dd,
5584 int vl)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005585{
5586 struct hfi1_pportdata *ppd = dd->pport;
5587 u64 src = read_csr(dd, SEND_EGRESS_ERR_SOURCE); /* read first */
5588 u64 info = read_csr(dd, SEND_EGRESS_ERR_INFO);
5589 char buf[96];
5590
5591 /* clear down all observed info as quickly as possible after read */
5592 write_csr(dd, SEND_EGRESS_ERR_INFO, info);
5593
5594 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08005595 "Egress Error Info: 0x%llx, %s Egress Error Src 0x%llx\n",
5596 info, egress_err_info_string(buf, sizeof(buf), info), src);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005597
5598 /* Eventually add other counters for each bit */
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005599 if (info & PORT_DISCARD_EGRESS_ERRS) {
5600 int weight, i;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005601
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005602 /*
Dean Luick4c9e7aa2016-02-18 11:12:08 -08005603 * Count all applicable bits as individual errors and
5604 * attribute them to the packet that triggered this handler.
5605 * This may not be completely accurate due to limitations
5606 * on the available hardware error information. There is
5607 * a single information register and any number of error
5608 * packets may have occurred and contributed to it before
5609 * this routine is called. This means that:
5610 * a) If multiple packets with the same error occur before
5611 * this routine is called, earlier packets are missed.
5612 * There is only a single bit for each error type.
5613 * b) Errors may not be attributed to the correct VL.
5614 * The driver is attributing all bits in the info register
5615 * to the packet that triggered this call, but bits
5616 * could be an accumulation of different packets with
5617 * different VLs.
5618 * c) A single error packet may have multiple counts attached
5619 * to it. There is no way for the driver to know if
5620 * multiple bits set in the info register are due to a
5621 * single packet or multiple packets. The driver assumes
5622 * multiple packets.
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005623 */
Dean Luick4c9e7aa2016-02-18 11:12:08 -08005624 weight = hweight64(info & PORT_DISCARD_EGRESS_ERRS);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005625 for (i = 0; i < weight; i++) {
5626 __count_port_discards(ppd);
5627 if (vl >= 0 && vl < TXE_NUM_DATA_VL)
5628 incr_cntr64(&ppd->port_xmit_discards_vl[vl]);
5629 else if (vl == 15)
5630 incr_cntr64(&ppd->port_xmit_discards_vl
5631 [C_VL_15]);
5632 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005633 }
5634}
5635
5636/*
5637 * Input value is a bit position within the SEND_EGRESS_ERR_STATUS
5638 * register. Does it represent a 'port inactive' error?
5639 */
5640static inline int port_inactive_err(u64 posn)
5641{
5642 return (posn >= SEES(TX_LINKDOWN) &&
5643 posn <= SEES(TX_INCORRECT_LINK_STATE));
5644}
5645
5646/*
5647 * Input value is a bit position within the SEND_EGRESS_ERR_STATUS
5648 * register. Does it represent a 'disallowed packet' error?
5649 */
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005650static inline int disallowed_pkt_err(int posn)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005651{
5652 return (posn >= SEES(TX_SDMA0_DISALLOWED_PACKET) &&
5653 posn <= SEES(TX_SDMA15_DISALLOWED_PACKET));
5654}
5655
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005656/*
5657 * Input value is a bit position of one of the SDMA engine disallowed
5658 * packet errors. Return which engine. Use of this must be guarded by
5659 * disallowed_pkt_err().
5660 */
5661static inline int disallowed_pkt_engine(int posn)
5662{
5663 return posn - SEES(TX_SDMA0_DISALLOWED_PACKET);
5664}
5665
5666/*
5667 * Translate an SDMA engine to a VL. Return -1 if the tranlation cannot
5668 * be done.
5669 */
5670static int engine_to_vl(struct hfi1_devdata *dd, int engine)
5671{
5672 struct sdma_vl_map *m;
5673 int vl;
5674
5675 /* range check */
5676 if (engine < 0 || engine >= TXE_NUM_SDMA_ENGINES)
5677 return -1;
5678
5679 rcu_read_lock();
5680 m = rcu_dereference(dd->sdma_map);
5681 vl = m->engine_to_vl[engine];
5682 rcu_read_unlock();
5683
5684 return vl;
5685}
5686
5687/*
5688 * Translate the send context (sofware index) into a VL. Return -1 if the
5689 * translation cannot be done.
5690 */
5691static int sc_to_vl(struct hfi1_devdata *dd, int sw_index)
5692{
5693 struct send_context_info *sci;
5694 struct send_context *sc;
5695 int i;
5696
5697 sci = &dd->send_contexts[sw_index];
5698
5699 /* there is no information for user (PSM) and ack contexts */
Jianxin Xiong44306f12016-04-12 11:30:28 -07005700 if ((sci->type != SC_KERNEL) && (sci->type != SC_VL15))
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005701 return -1;
5702
5703 sc = sci->sc;
5704 if (!sc)
5705 return -1;
5706 if (dd->vld[15].sc == sc)
5707 return 15;
5708 for (i = 0; i < num_vls; i++)
5709 if (dd->vld[i].sc == sc)
5710 return i;
5711
5712 return -1;
5713}
5714
Mike Marciniszyn77241052015-07-30 15:17:43 -04005715static void handle_egress_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5716{
5717 u64 reg_copy = reg, handled = 0;
5718 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005719 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005720
5721 if (reg & ALL_TXE_EGRESS_FREEZE_ERR)
5722 start_freeze_handling(dd->pport, 0);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005723 else if (is_ax(dd) &&
5724 (reg & SEND_EGRESS_ERR_STATUS_TX_CREDIT_RETURN_VL_ERR_SMASK) &&
5725 (dd->icode != ICODE_FUNCTIONAL_SIMULATOR))
Mike Marciniszyn77241052015-07-30 15:17:43 -04005726 start_freeze_handling(dd->pport, 0);
5727
5728 while (reg_copy) {
5729 int posn = fls64(reg_copy);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005730 /* fls64() returns a 1-based offset, we want it zero based */
Mike Marciniszyn77241052015-07-30 15:17:43 -04005731 int shift = posn - 1;
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005732 u64 mask = 1ULL << shift;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005733
5734 if (port_inactive_err(shift)) {
5735 count_port_inactive(dd);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005736 handled |= mask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005737 } else if (disallowed_pkt_err(shift)) {
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005738 int vl = engine_to_vl(dd, disallowed_pkt_engine(shift));
5739
5740 handle_send_egress_err_info(dd, vl);
5741 handled |= mask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005742 }
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005743 reg_copy &= ~mask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005744 }
5745
5746 reg &= ~handled;
5747
5748 if (reg)
5749 dd_dev_info(dd, "Egress Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005750 egress_err_status_string(buf, sizeof(buf), reg));
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005751
5752 for (i = 0; i < NUM_SEND_EGRESS_ERR_STATUS_COUNTERS; i++) {
5753 if (reg & (1ull << i))
5754 incr_cntr64(&dd->send_egress_err_status_cnt[i]);
5755 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005756}
5757
5758static void handle_txe_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5759{
5760 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005761 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005762
5763 dd_dev_info(dd, "Send Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005764 send_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005765
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005766 for (i = 0; i < NUM_SEND_ERR_STATUS_COUNTERS; i++) {
5767 if (reg & (1ull << i))
5768 incr_cntr64(&dd->send_err_status_cnt[i]);
5769 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005770}
5771
5772/*
5773 * The maximum number of times the error clear down will loop before
5774 * blocking a repeating error. This value is arbitrary.
5775 */
5776#define MAX_CLEAR_COUNT 20
5777
5778/*
5779 * Clear and handle an error register. All error interrupts are funneled
5780 * through here to have a central location to correctly handle single-
5781 * or multi-shot errors.
5782 *
5783 * For non per-context registers, call this routine with a context value
5784 * of 0 so the per-context offset is zero.
5785 *
5786 * If the handler loops too many times, assume that something is wrong
5787 * and can't be fixed, so mask the error bits.
5788 */
5789static void interrupt_clear_down(struct hfi1_devdata *dd,
5790 u32 context,
5791 const struct err_reg_info *eri)
5792{
5793 u64 reg;
5794 u32 count;
5795
5796 /* read in a loop until no more errors are seen */
5797 count = 0;
5798 while (1) {
5799 reg = read_kctxt_csr(dd, context, eri->status);
5800 if (reg == 0)
5801 break;
5802 write_kctxt_csr(dd, context, eri->clear, reg);
5803 if (likely(eri->handler))
5804 eri->handler(dd, context, reg);
5805 count++;
5806 if (count > MAX_CLEAR_COUNT) {
5807 u64 mask;
5808
5809 dd_dev_err(dd, "Repeating %s bits 0x%llx - masking\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005810 eri->desc, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005811 /*
5812 * Read-modify-write so any other masked bits
5813 * remain masked.
5814 */
5815 mask = read_kctxt_csr(dd, context, eri->mask);
5816 mask &= ~reg;
5817 write_kctxt_csr(dd, context, eri->mask, mask);
5818 break;
5819 }
5820 }
5821}
5822
5823/*
5824 * CCE block "misc" interrupt. Source is < 16.
5825 */
5826static void is_misc_err_int(struct hfi1_devdata *dd, unsigned int source)
5827{
5828 const struct err_reg_info *eri = &misc_errs[source];
5829
5830 if (eri->handler) {
5831 interrupt_clear_down(dd, 0, eri);
5832 } else {
5833 dd_dev_err(dd, "Unexpected misc interrupt (%u) - reserved\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005834 source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005835 }
5836}
5837
5838static char *send_context_err_status_string(char *buf, int buf_len, u64 flags)
5839{
5840 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005841 sc_err_status_flags,
5842 ARRAY_SIZE(sc_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005843}
5844
5845/*
5846 * Send context error interrupt. Source (hw_context) is < 160.
5847 *
5848 * All send context errors cause the send context to halt. The normal
5849 * clear-down mechanism cannot be used because we cannot clear the
5850 * error bits until several other long-running items are done first.
5851 * This is OK because with the context halted, nothing else is going
5852 * to happen on it anyway.
5853 */
5854static void is_sendctxt_err_int(struct hfi1_devdata *dd,
5855 unsigned int hw_context)
5856{
5857 struct send_context_info *sci;
5858 struct send_context *sc;
5859 char flags[96];
5860 u64 status;
5861 u32 sw_index;
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005862 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005863
5864 sw_index = dd->hw_to_sw[hw_context];
5865 if (sw_index >= dd->num_send_contexts) {
5866 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08005867 "out of range sw index %u for send context %u\n",
5868 sw_index, hw_context);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005869 return;
5870 }
5871 sci = &dd->send_contexts[sw_index];
5872 sc = sci->sc;
5873 if (!sc) {
5874 dd_dev_err(dd, "%s: context %u(%u): no sc?\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -08005875 sw_index, hw_context);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005876 return;
5877 }
5878
5879 /* tell the software that a halt has begun */
5880 sc_stop(sc, SCF_HALTED);
5881
5882 status = read_kctxt_csr(dd, hw_context, SEND_CTXT_ERR_STATUS);
5883
5884 dd_dev_info(dd, "Send Context %u(%u) Error: %s\n", sw_index, hw_context,
Jubin John17fb4f22016-02-14 20:21:52 -08005885 send_context_err_status_string(flags, sizeof(flags),
5886 status));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005887
5888 if (status & SEND_CTXT_ERR_STATUS_PIO_DISALLOWED_PACKET_ERR_SMASK)
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005889 handle_send_egress_err_info(dd, sc_to_vl(dd, sw_index));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005890
5891 /*
5892 * Automatically restart halted kernel contexts out of interrupt
5893 * context. User contexts must ask the driver to restart the context.
5894 */
5895 if (sc->type != SC_USER)
5896 queue_work(dd->pport->hfi1_wq, &sc->halt_work);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005897
5898 /*
5899 * Update the counters for the corresponding status bits.
5900 * Note that these particular counters are aggregated over all
5901 * 160 contexts.
5902 */
5903 for (i = 0; i < NUM_SEND_CTXT_ERR_STATUS_COUNTERS; i++) {
5904 if (status & (1ull << i))
5905 incr_cntr64(&dd->sw_ctxt_err_status_cnt[i]);
5906 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005907}
5908
5909static void handle_sdma_eng_err(struct hfi1_devdata *dd,
5910 unsigned int source, u64 status)
5911{
5912 struct sdma_engine *sde;
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005913 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005914
5915 sde = &dd->per_sdma[source];
5916#ifdef CONFIG_SDMA_VERBOSITY
5917 dd_dev_err(sde->dd, "CONFIG SDMA(%u) %s:%d %s()\n", sde->this_idx,
5918 slashstrip(__FILE__), __LINE__, __func__);
5919 dd_dev_err(sde->dd, "CONFIG SDMA(%u) source: %u status 0x%llx\n",
5920 sde->this_idx, source, (unsigned long long)status);
5921#endif
Vennila Megavannana699c6c2016-01-11 18:30:56 -05005922 sde->err_cnt++;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005923 sdma_engine_error(sde, status);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005924
5925 /*
5926 * Update the counters for the corresponding status bits.
5927 * Note that these particular counters are aggregated over
5928 * all 16 DMA engines.
5929 */
5930 for (i = 0; i < NUM_SEND_DMA_ENG_ERR_STATUS_COUNTERS; i++) {
5931 if (status & (1ull << i))
5932 incr_cntr64(&dd->sw_send_dma_eng_err_status_cnt[i]);
5933 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005934}
5935
5936/*
5937 * CCE block SDMA error interrupt. Source is < 16.
5938 */
5939static void is_sdma_eng_err_int(struct hfi1_devdata *dd, unsigned int source)
5940{
5941#ifdef CONFIG_SDMA_VERBOSITY
5942 struct sdma_engine *sde = &dd->per_sdma[source];
5943
5944 dd_dev_err(dd, "CONFIG SDMA(%u) %s:%d %s()\n", sde->this_idx,
5945 slashstrip(__FILE__), __LINE__, __func__);
5946 dd_dev_err(dd, "CONFIG SDMA(%u) source: %u\n", sde->this_idx,
5947 source);
5948 sdma_dumpstate(sde);
5949#endif
5950 interrupt_clear_down(dd, source, &sdma_eng_err);
5951}
5952
5953/*
5954 * CCE block "various" interrupt. Source is < 8.
5955 */
5956static void is_various_int(struct hfi1_devdata *dd, unsigned int source)
5957{
5958 const struct err_reg_info *eri = &various_err[source];
5959
5960 /*
5961 * TCritInt cannot go through interrupt_clear_down()
5962 * because it is not a second tier interrupt. The handler
5963 * should be called directly.
5964 */
5965 if (source == TCRIT_INT_SOURCE)
5966 handle_temp_err(dd);
5967 else if (eri->handler)
5968 interrupt_clear_down(dd, 0, eri);
5969 else
5970 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08005971 "%s: Unimplemented/reserved interrupt %d\n",
5972 __func__, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005973}
5974
5975static void handle_qsfp_int(struct hfi1_devdata *dd, u32 src_ctx, u64 reg)
5976{
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08005977 /* src_ctx is always zero */
Mike Marciniszyn77241052015-07-30 15:17:43 -04005978 struct hfi1_pportdata *ppd = dd->pport;
5979 unsigned long flags;
5980 u64 qsfp_int_mgmt = (u64)(QSFP_HFI0_INT_N | QSFP_HFI0_MODPRST_N);
5981
5982 if (reg & QSFP_HFI0_MODPRST_N) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04005983 if (!qsfp_mod_present(ppd)) {
Easwar Hariharane8aa2842016-02-18 11:12:16 -08005984 dd_dev_info(dd, "%s: QSFP module removed\n",
5985 __func__);
5986
Mike Marciniszyn77241052015-07-30 15:17:43 -04005987 ppd->driver_link_ready = 0;
5988 /*
5989 * Cable removed, reset all our information about the
5990 * cache and cable capabilities
5991 */
5992
5993 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
5994 /*
5995 * We don't set cache_refresh_required here as we expect
5996 * an interrupt when a cable is inserted
5997 */
5998 ppd->qsfp_info.cache_valid = 0;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08005999 ppd->qsfp_info.reset_needed = 0;
6000 ppd->qsfp_info.limiting_active = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006001 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock,
Jubin John17fb4f22016-02-14 20:21:52 -08006002 flags);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006003 /* Invert the ModPresent pin now to detect plug-in */
6004 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_INVERT :
6005 ASIC_QSFP1_INVERT, qsfp_int_mgmt);
Bryan Morgana9c05e32016-02-03 14:30:49 -08006006
6007 if ((ppd->offline_disabled_reason >
6008 HFI1_ODR_MASK(
Easwar Hariharane1bf0d52016-02-03 14:36:58 -08006009 OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED)) ||
Bryan Morgana9c05e32016-02-03 14:30:49 -08006010 (ppd->offline_disabled_reason ==
6011 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE)))
6012 ppd->offline_disabled_reason =
6013 HFI1_ODR_MASK(
Easwar Hariharane1bf0d52016-02-03 14:36:58 -08006014 OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED);
Bryan Morgana9c05e32016-02-03 14:30:49 -08006015
Mike Marciniszyn77241052015-07-30 15:17:43 -04006016 if (ppd->host_link_state == HLS_DN_POLL) {
6017 /*
6018 * The link is still in POLL. This means
6019 * that the normal link down processing
6020 * will not happen. We have to do it here
6021 * before turning the DC off.
6022 */
6023 queue_work(ppd->hfi1_wq, &ppd->link_down_work);
6024 }
6025 } else {
Easwar Hariharane8aa2842016-02-18 11:12:16 -08006026 dd_dev_info(dd, "%s: QSFP module inserted\n",
6027 __func__);
6028
Mike Marciniszyn77241052015-07-30 15:17:43 -04006029 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
6030 ppd->qsfp_info.cache_valid = 0;
6031 ppd->qsfp_info.cache_refresh_required = 1;
6032 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock,
Jubin John17fb4f22016-02-14 20:21:52 -08006033 flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006034
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006035 /*
6036 * Stop inversion of ModPresent pin to detect
6037 * removal of the cable
6038 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006039 qsfp_int_mgmt &= ~(u64)QSFP_HFI0_MODPRST_N;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006040 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_INVERT :
6041 ASIC_QSFP1_INVERT, qsfp_int_mgmt);
6042
6043 ppd->offline_disabled_reason =
6044 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_TRANSIENT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006045 }
6046 }
6047
6048 if (reg & QSFP_HFI0_INT_N) {
Easwar Hariharane8aa2842016-02-18 11:12:16 -08006049 dd_dev_info(dd, "%s: Interrupt received from QSFP module\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006050 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006051 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
6052 ppd->qsfp_info.check_interrupt_flags = 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006053 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock, flags);
6054 }
6055
6056 /* Schedule the QSFP work only if there is a cable attached. */
6057 if (qsfp_mod_present(ppd))
6058 queue_work(ppd->hfi1_wq, &ppd->qsfp_info.qsfp_work);
6059}
6060
6061static int request_host_lcb_access(struct hfi1_devdata *dd)
6062{
6063 int ret;
6064
6065 ret = do_8051_command(dd, HCMD_MISC,
Jubin John17fb4f22016-02-14 20:21:52 -08006066 (u64)HCMD_MISC_REQUEST_LCB_ACCESS <<
6067 LOAD_DATA_FIELD_ID_SHIFT, NULL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006068 if (ret != HCMD_SUCCESS) {
6069 dd_dev_err(dd, "%s: command failed with error %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006070 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006071 }
6072 return ret == HCMD_SUCCESS ? 0 : -EBUSY;
6073}
6074
6075static int request_8051_lcb_access(struct hfi1_devdata *dd)
6076{
6077 int ret;
6078
6079 ret = do_8051_command(dd, HCMD_MISC,
Jubin John17fb4f22016-02-14 20:21:52 -08006080 (u64)HCMD_MISC_GRANT_LCB_ACCESS <<
6081 LOAD_DATA_FIELD_ID_SHIFT, NULL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006082 if (ret != HCMD_SUCCESS) {
6083 dd_dev_err(dd, "%s: command failed with error %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006084 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006085 }
6086 return ret == HCMD_SUCCESS ? 0 : -EBUSY;
6087}
6088
6089/*
6090 * Set the LCB selector - allow host access. The DCC selector always
6091 * points to the host.
6092 */
6093static inline void set_host_lcb_access(struct hfi1_devdata *dd)
6094{
6095 write_csr(dd, DC_DC8051_CFG_CSR_ACCESS_SEL,
Jubin John17fb4f22016-02-14 20:21:52 -08006096 DC_DC8051_CFG_CSR_ACCESS_SEL_DCC_SMASK |
6097 DC_DC8051_CFG_CSR_ACCESS_SEL_LCB_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006098}
6099
6100/*
6101 * Clear the LCB selector - allow 8051 access. The DCC selector always
6102 * points to the host.
6103 */
6104static inline void set_8051_lcb_access(struct hfi1_devdata *dd)
6105{
6106 write_csr(dd, DC_DC8051_CFG_CSR_ACCESS_SEL,
Jubin John17fb4f22016-02-14 20:21:52 -08006107 DC_DC8051_CFG_CSR_ACCESS_SEL_DCC_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006108}
6109
6110/*
6111 * Acquire LCB access from the 8051. If the host already has access,
6112 * just increment a counter. Otherwise, inform the 8051 that the
6113 * host is taking access.
6114 *
6115 * Returns:
6116 * 0 on success
6117 * -EBUSY if the 8051 has control and cannot be disturbed
6118 * -errno if unable to acquire access from the 8051
6119 */
6120int acquire_lcb_access(struct hfi1_devdata *dd, int sleep_ok)
6121{
6122 struct hfi1_pportdata *ppd = dd->pport;
6123 int ret = 0;
6124
6125 /*
6126 * Use the host link state lock so the operation of this routine
6127 * { link state check, selector change, count increment } can occur
6128 * as a unit against a link state change. Otherwise there is a
6129 * race between the state change and the count increment.
6130 */
6131 if (sleep_ok) {
6132 mutex_lock(&ppd->hls_lock);
6133 } else {
Dan Carpenter951842b2015-09-16 09:22:51 +03006134 while (!mutex_trylock(&ppd->hls_lock))
Mike Marciniszyn77241052015-07-30 15:17:43 -04006135 udelay(1);
6136 }
6137
6138 /* this access is valid only when the link is up */
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07006139 if (ppd->host_link_state & HLS_DOWN) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006140 dd_dev_info(dd, "%s: link state %s not up\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006141 __func__, link_state_name(ppd->host_link_state));
Mike Marciniszyn77241052015-07-30 15:17:43 -04006142 ret = -EBUSY;
6143 goto done;
6144 }
6145
6146 if (dd->lcb_access_count == 0) {
6147 ret = request_host_lcb_access(dd);
6148 if (ret) {
6149 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006150 "%s: unable to acquire LCB access, err %d\n",
6151 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006152 goto done;
6153 }
6154 set_host_lcb_access(dd);
6155 }
6156 dd->lcb_access_count++;
6157done:
6158 mutex_unlock(&ppd->hls_lock);
6159 return ret;
6160}
6161
6162/*
6163 * Release LCB access by decrementing the use count. If the count is moving
6164 * from 1 to 0, inform 8051 that it has control back.
6165 *
6166 * Returns:
6167 * 0 on success
6168 * -errno if unable to release access to the 8051
6169 */
6170int release_lcb_access(struct hfi1_devdata *dd, int sleep_ok)
6171{
6172 int ret = 0;
6173
6174 /*
6175 * Use the host link state lock because the acquire needed it.
6176 * Here, we only need to keep { selector change, count decrement }
6177 * as a unit.
6178 */
6179 if (sleep_ok) {
6180 mutex_lock(&dd->pport->hls_lock);
6181 } else {
Dan Carpenter951842b2015-09-16 09:22:51 +03006182 while (!mutex_trylock(&dd->pport->hls_lock))
Mike Marciniszyn77241052015-07-30 15:17:43 -04006183 udelay(1);
6184 }
6185
6186 if (dd->lcb_access_count == 0) {
6187 dd_dev_err(dd, "%s: LCB access count is zero. Skipping.\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006188 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006189 goto done;
6190 }
6191
6192 if (dd->lcb_access_count == 1) {
6193 set_8051_lcb_access(dd);
6194 ret = request_8051_lcb_access(dd);
6195 if (ret) {
6196 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006197 "%s: unable to release LCB access, err %d\n",
6198 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006199 /* restore host access if the grant didn't work */
6200 set_host_lcb_access(dd);
6201 goto done;
6202 }
6203 }
6204 dd->lcb_access_count--;
6205done:
6206 mutex_unlock(&dd->pport->hls_lock);
6207 return ret;
6208}
6209
6210/*
6211 * Initialize LCB access variables and state. Called during driver load,
6212 * after most of the initialization is finished.
6213 *
6214 * The DC default is LCB access on for the host. The driver defaults to
6215 * leaving access to the 8051. Assign access now - this constrains the call
6216 * to this routine to be after all LCB set-up is done. In particular, after
6217 * hf1_init_dd() -> set_up_interrupts() -> clear_all_interrupts()
6218 */
6219static void init_lcb_access(struct hfi1_devdata *dd)
6220{
6221 dd->lcb_access_count = 0;
6222}
6223
6224/*
6225 * Write a response back to a 8051 request.
6226 */
6227static void hreq_response(struct hfi1_devdata *dd, u8 return_code, u16 rsp_data)
6228{
6229 write_csr(dd, DC_DC8051_CFG_EXT_DEV_0,
Jubin John17fb4f22016-02-14 20:21:52 -08006230 DC_DC8051_CFG_EXT_DEV_0_COMPLETED_SMASK |
6231 (u64)return_code <<
6232 DC_DC8051_CFG_EXT_DEV_0_RETURN_CODE_SHIFT |
6233 (u64)rsp_data << DC_DC8051_CFG_EXT_DEV_0_RSP_DATA_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006234}
6235
6236/*
Easwar Hariharancbac3862016-02-03 14:31:31 -08006237 * Handle host requests from the 8051.
Mike Marciniszyn77241052015-07-30 15:17:43 -04006238 */
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07006239static void handle_8051_request(struct hfi1_pportdata *ppd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006240{
Easwar Hariharancbac3862016-02-03 14:31:31 -08006241 struct hfi1_devdata *dd = ppd->dd;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006242 u64 reg;
Easwar Hariharancbac3862016-02-03 14:31:31 -08006243 u16 data = 0;
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07006244 u8 type;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006245
6246 reg = read_csr(dd, DC_DC8051_CFG_EXT_DEV_1);
6247 if ((reg & DC_DC8051_CFG_EXT_DEV_1_REQ_NEW_SMASK) == 0)
6248 return; /* no request */
6249
6250 /* zero out COMPLETED so the response is seen */
6251 write_csr(dd, DC_DC8051_CFG_EXT_DEV_0, 0);
6252
6253 /* extract request details */
6254 type = (reg >> DC_DC8051_CFG_EXT_DEV_1_REQ_TYPE_SHIFT)
6255 & DC_DC8051_CFG_EXT_DEV_1_REQ_TYPE_MASK;
6256 data = (reg >> DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_SHIFT)
6257 & DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_MASK;
6258
6259 switch (type) {
6260 case HREQ_LOAD_CONFIG:
6261 case HREQ_SAVE_CONFIG:
6262 case HREQ_READ_CONFIG:
6263 case HREQ_SET_TX_EQ_ABS:
6264 case HREQ_SET_TX_EQ_REL:
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07006265 case HREQ_ENABLE:
Mike Marciniszyn77241052015-07-30 15:17:43 -04006266 dd_dev_info(dd, "8051 request: request 0x%x not supported\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006267 type);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006268 hreq_response(dd, HREQ_NOT_SUPPORTED, 0);
6269 break;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006270 case HREQ_CONFIG_DONE:
6271 hreq_response(dd, HREQ_SUCCESS, 0);
6272 break;
6273
6274 case HREQ_INTERFACE_TEST:
6275 hreq_response(dd, HREQ_SUCCESS, data);
6276 break;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006277 default:
6278 dd_dev_err(dd, "8051 request: unknown request 0x%x\n", type);
6279 hreq_response(dd, HREQ_NOT_SUPPORTED, 0);
6280 break;
6281 }
6282}
6283
6284static void write_global_credit(struct hfi1_devdata *dd,
6285 u8 vau, u16 total, u16 shared)
6286{
6287 write_csr(dd, SEND_CM_GLOBAL_CREDIT,
Jubin John17fb4f22016-02-14 20:21:52 -08006288 ((u64)total <<
6289 SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SHIFT) |
6290 ((u64)shared <<
6291 SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SHIFT) |
6292 ((u64)vau << SEND_CM_GLOBAL_CREDIT_AU_SHIFT));
Mike Marciniszyn77241052015-07-30 15:17:43 -04006293}
6294
6295/*
6296 * Set up initial VL15 credits of the remote. Assumes the rest of
6297 * the CM credit registers are zero from a previous global or credit reset .
6298 */
6299void set_up_vl15(struct hfi1_devdata *dd, u8 vau, u16 vl15buf)
6300{
6301 /* leave shared count at zero for both global and VL15 */
6302 write_global_credit(dd, vau, vl15buf, 0);
6303
Dennis Dalessandroeacc8302016-10-17 04:19:52 -07006304 write_csr(dd, SEND_CM_CREDIT_VL15, (u64)vl15buf
6305 << SEND_CM_CREDIT_VL15_DEDICATED_LIMIT_VL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006306}
6307
6308/*
6309 * Zero all credit details from the previous connection and
6310 * reset the CM manager's internal counters.
6311 */
6312void reset_link_credits(struct hfi1_devdata *dd)
6313{
6314 int i;
6315
6316 /* remove all previous VL credit limits */
6317 for (i = 0; i < TXE_NUM_DATA_VL; i++)
Jubin John8638b772016-02-14 20:19:24 -08006318 write_csr(dd, SEND_CM_CREDIT_VL + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006319 write_csr(dd, SEND_CM_CREDIT_VL15, 0);
6320 write_global_credit(dd, 0, 0, 0);
6321 /* reset the CM block */
6322 pio_send_control(dd, PSC_CM_RESET);
6323}
6324
6325/* convert a vCU to a CU */
6326static u32 vcu_to_cu(u8 vcu)
6327{
6328 return 1 << vcu;
6329}
6330
6331/* convert a CU to a vCU */
6332static u8 cu_to_vcu(u32 cu)
6333{
6334 return ilog2(cu);
6335}
6336
6337/* convert a vAU to an AU */
6338static u32 vau_to_au(u8 vau)
6339{
6340 return 8 * (1 << vau);
6341}
6342
6343static void set_linkup_defaults(struct hfi1_pportdata *ppd)
6344{
6345 ppd->sm_trap_qp = 0x0;
6346 ppd->sa_qp = 0x1;
6347}
6348
6349/*
6350 * Graceful LCB shutdown. This leaves the LCB FIFOs in reset.
6351 */
6352static void lcb_shutdown(struct hfi1_devdata *dd, int abort)
6353{
6354 u64 reg;
6355
6356 /* clear lcb run: LCB_CFG_RUN.EN = 0 */
6357 write_csr(dd, DC_LCB_CFG_RUN, 0);
6358 /* set tx fifo reset: LCB_CFG_TX_FIFOS_RESET.VAL = 1 */
6359 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET,
Jubin John17fb4f22016-02-14 20:21:52 -08006360 1ull << DC_LCB_CFG_TX_FIFOS_RESET_VAL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006361 /* set dcc reset csr: DCC_CFG_RESET.{reset_lcb,reset_rx_fpe} = 1 */
6362 dd->lcb_err_en = read_csr(dd, DC_LCB_ERR_EN);
6363 reg = read_csr(dd, DCC_CFG_RESET);
Jubin John17fb4f22016-02-14 20:21:52 -08006364 write_csr(dd, DCC_CFG_RESET, reg |
6365 (1ull << DCC_CFG_RESET_RESET_LCB_SHIFT) |
6366 (1ull << DCC_CFG_RESET_RESET_RX_FPE_SHIFT));
Jubin John50e5dcb2016-02-14 20:19:41 -08006367 (void)read_csr(dd, DCC_CFG_RESET); /* make sure the write completed */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006368 if (!abort) {
6369 udelay(1); /* must hold for the longer of 16cclks or 20ns */
6370 write_csr(dd, DCC_CFG_RESET, reg);
6371 write_csr(dd, DC_LCB_ERR_EN, dd->lcb_err_en);
6372 }
6373}
6374
6375/*
6376 * This routine should be called after the link has been transitioned to
6377 * OFFLINE (OFFLINE state has the side effect of putting the SerDes into
6378 * reset).
6379 *
6380 * The expectation is that the caller of this routine would have taken
6381 * care of properly transitioning the link into the correct state.
6382 */
6383static void dc_shutdown(struct hfi1_devdata *dd)
6384{
6385 unsigned long flags;
6386
6387 spin_lock_irqsave(&dd->dc8051_lock, flags);
6388 if (dd->dc_shutdown) {
6389 spin_unlock_irqrestore(&dd->dc8051_lock, flags);
6390 return;
6391 }
6392 dd->dc_shutdown = 1;
6393 spin_unlock_irqrestore(&dd->dc8051_lock, flags);
6394 /* Shutdown the LCB */
6395 lcb_shutdown(dd, 1);
Jubin John4d114fd2016-02-14 20:21:43 -08006396 /*
6397 * Going to OFFLINE would have causes the 8051 to put the
Mike Marciniszyn77241052015-07-30 15:17:43 -04006398 * SerDes into reset already. Just need to shut down the 8051,
Jubin John4d114fd2016-02-14 20:21:43 -08006399 * itself.
6400 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006401 write_csr(dd, DC_DC8051_CFG_RST, 0x1);
6402}
6403
Jubin John4d114fd2016-02-14 20:21:43 -08006404/*
6405 * Calling this after the DC has been brought out of reset should not
6406 * do any damage.
6407 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006408static void dc_start(struct hfi1_devdata *dd)
6409{
6410 unsigned long flags;
6411 int ret;
6412
6413 spin_lock_irqsave(&dd->dc8051_lock, flags);
6414 if (!dd->dc_shutdown)
6415 goto done;
6416 spin_unlock_irqrestore(&dd->dc8051_lock, flags);
6417 /* Take the 8051 out of reset */
6418 write_csr(dd, DC_DC8051_CFG_RST, 0ull);
6419 /* Wait until 8051 is ready */
6420 ret = wait_fm_ready(dd, TIMEOUT_8051_START);
6421 if (ret) {
6422 dd_dev_err(dd, "%s: timeout starting 8051 firmware\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006423 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006424 }
6425 /* Take away reset for LCB and RX FPE (set in lcb_shutdown). */
6426 write_csr(dd, DCC_CFG_RESET, 0x10);
6427 /* lcb_shutdown() with abort=1 does not restore these */
6428 write_csr(dd, DC_LCB_ERR_EN, dd->lcb_err_en);
6429 spin_lock_irqsave(&dd->dc8051_lock, flags);
6430 dd->dc_shutdown = 0;
6431done:
6432 spin_unlock_irqrestore(&dd->dc8051_lock, flags);
6433}
6434
6435/*
6436 * These LCB adjustments are for the Aurora SerDes core in the FPGA.
6437 */
6438static void adjust_lcb_for_fpga_serdes(struct hfi1_devdata *dd)
6439{
6440 u64 rx_radr, tx_radr;
6441 u32 version;
6442
6443 if (dd->icode != ICODE_FPGA_EMULATION)
6444 return;
6445
6446 /*
6447 * These LCB defaults on emulator _s are good, nothing to do here:
6448 * LCB_CFG_TX_FIFOS_RADR
6449 * LCB_CFG_RX_FIFOS_RADR
6450 * LCB_CFG_LN_DCLK
6451 * LCB_CFG_IGNORE_LOST_RCLK
6452 */
6453 if (is_emulator_s(dd))
6454 return;
6455 /* else this is _p */
6456
6457 version = emulator_rev(dd);
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05006458 if (!is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -04006459 version = 0x2d; /* all B0 use 0x2d or higher settings */
6460
6461 if (version <= 0x12) {
6462 /* release 0x12 and below */
6463
6464 /*
6465 * LCB_CFG_RX_FIFOS_RADR.RST_VAL = 0x9
6466 * LCB_CFG_RX_FIFOS_RADR.OK_TO_JUMP_VAL = 0x9
6467 * LCB_CFG_RX_FIFOS_RADR.DO_NOT_JUMP_VAL = 0xa
6468 */
6469 rx_radr =
6470 0xaull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6471 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6472 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6473 /*
6474 * LCB_CFG_TX_FIFOS_RADR.ON_REINIT = 0 (default)
6475 * LCB_CFG_TX_FIFOS_RADR.RST_VAL = 6
6476 */
6477 tx_radr = 6ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6478 } else if (version <= 0x18) {
6479 /* release 0x13 up to 0x18 */
6480 /* LCB_CFG_RX_FIFOS_RADR = 0x988 */
6481 rx_radr =
6482 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6483 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6484 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6485 tx_radr = 7ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6486 } else if (version == 0x19) {
6487 /* release 0x19 */
6488 /* LCB_CFG_RX_FIFOS_RADR = 0xa99 */
6489 rx_radr =
6490 0xAull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6491 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6492 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6493 tx_radr = 3ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6494 } else if (version == 0x1a) {
6495 /* release 0x1a */
6496 /* LCB_CFG_RX_FIFOS_RADR = 0x988 */
6497 rx_radr =
6498 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6499 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6500 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6501 tx_radr = 7ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6502 write_csr(dd, DC_LCB_CFG_LN_DCLK, 1ull);
6503 } else {
6504 /* release 0x1b and higher */
6505 /* LCB_CFG_RX_FIFOS_RADR = 0x877 */
6506 rx_radr =
6507 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6508 | 0x7ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6509 | 0x7ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6510 tx_radr = 3ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6511 }
6512
6513 write_csr(dd, DC_LCB_CFG_RX_FIFOS_RADR, rx_radr);
6514 /* LCB_CFG_IGNORE_LOST_RCLK.EN = 1 */
6515 write_csr(dd, DC_LCB_CFG_IGNORE_LOST_RCLK,
Jubin John17fb4f22016-02-14 20:21:52 -08006516 DC_LCB_CFG_IGNORE_LOST_RCLK_EN_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006517 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RADR, tx_radr);
6518}
6519
6520/*
6521 * Handle a SMA idle message
6522 *
6523 * This is a work-queue function outside of the interrupt.
6524 */
6525void handle_sma_message(struct work_struct *work)
6526{
6527 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
6528 sma_message_work);
6529 struct hfi1_devdata *dd = ppd->dd;
6530 u64 msg;
6531 int ret;
6532
Jubin John4d114fd2016-02-14 20:21:43 -08006533 /*
6534 * msg is bytes 1-4 of the 40-bit idle message - the command code
6535 * is stripped off
6536 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006537 ret = read_idle_sma(dd, &msg);
6538 if (ret)
6539 return;
6540 dd_dev_info(dd, "%s: SMA message 0x%llx\n", __func__, msg);
6541 /*
6542 * React to the SMA message. Byte[1] (0 for us) is the command.
6543 */
6544 switch (msg & 0xff) {
6545 case SMA_IDLE_ARM:
6546 /*
6547 * See OPAv1 table 9-14 - HFI and External Switch Ports Key
6548 * State Transitions
6549 *
6550 * Only expected in INIT or ARMED, discard otherwise.
6551 */
6552 if (ppd->host_link_state & (HLS_UP_INIT | HLS_UP_ARMED))
6553 ppd->neighbor_normal = 1;
6554 break;
6555 case SMA_IDLE_ACTIVE:
6556 /*
6557 * See OPAv1 table 9-14 - HFI and External Switch Ports Key
6558 * State Transitions
6559 *
6560 * Can activate the node. Discard otherwise.
6561 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08006562 if (ppd->host_link_state == HLS_UP_ARMED &&
6563 ppd->is_active_optimize_enabled) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006564 ppd->neighbor_normal = 1;
6565 ret = set_link_state(ppd, HLS_UP_ACTIVE);
6566 if (ret)
6567 dd_dev_err(
6568 dd,
6569 "%s: received Active SMA idle message, couldn't set link to Active\n",
6570 __func__);
6571 }
6572 break;
6573 default:
6574 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006575 "%s: received unexpected SMA idle message 0x%llx\n",
6576 __func__, msg);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006577 break;
6578 }
6579}
6580
6581static void adjust_rcvctrl(struct hfi1_devdata *dd, u64 add, u64 clear)
6582{
6583 u64 rcvctrl;
6584 unsigned long flags;
6585
6586 spin_lock_irqsave(&dd->rcvctrl_lock, flags);
6587 rcvctrl = read_csr(dd, RCV_CTRL);
6588 rcvctrl |= add;
6589 rcvctrl &= ~clear;
6590 write_csr(dd, RCV_CTRL, rcvctrl);
6591 spin_unlock_irqrestore(&dd->rcvctrl_lock, flags);
6592}
6593
6594static inline void add_rcvctrl(struct hfi1_devdata *dd, u64 add)
6595{
6596 adjust_rcvctrl(dd, add, 0);
6597}
6598
6599static inline void clear_rcvctrl(struct hfi1_devdata *dd, u64 clear)
6600{
6601 adjust_rcvctrl(dd, 0, clear);
6602}
6603
6604/*
6605 * Called from all interrupt handlers to start handling an SPC freeze.
6606 */
6607void start_freeze_handling(struct hfi1_pportdata *ppd, int flags)
6608{
6609 struct hfi1_devdata *dd = ppd->dd;
6610 struct send_context *sc;
6611 int i;
6612
6613 if (flags & FREEZE_SELF)
6614 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_FREEZE_SMASK);
6615
6616 /* enter frozen mode */
6617 dd->flags |= HFI1_FROZEN;
6618
6619 /* notify all SDMA engines that they are going into a freeze */
6620 sdma_freeze_notify(dd, !!(flags & FREEZE_LINK_DOWN));
6621
6622 /* do halt pre-handling on all enabled send contexts */
6623 for (i = 0; i < dd->num_send_contexts; i++) {
6624 sc = dd->send_contexts[i].sc;
6625 if (sc && (sc->flags & SCF_ENABLED))
6626 sc_stop(sc, SCF_FROZEN | SCF_HALTED);
6627 }
6628
6629 /* Send context are frozen. Notify user space */
6630 hfi1_set_uevent_bits(ppd, _HFI1_EVENT_FROZEN_BIT);
6631
6632 if (flags & FREEZE_ABORT) {
6633 dd_dev_err(dd,
6634 "Aborted freeze recovery. Please REBOOT system\n");
6635 return;
6636 }
6637 /* queue non-interrupt handler */
6638 queue_work(ppd->hfi1_wq, &ppd->freeze_work);
6639}
6640
6641/*
6642 * Wait until all 4 sub-blocks indicate that they have frozen or unfrozen,
6643 * depending on the "freeze" parameter.
6644 *
6645 * No need to return an error if it times out, our only option
6646 * is to proceed anyway.
6647 */
6648static void wait_for_freeze_status(struct hfi1_devdata *dd, int freeze)
6649{
6650 unsigned long timeout;
6651 u64 reg;
6652
6653 timeout = jiffies + msecs_to_jiffies(FREEZE_STATUS_TIMEOUT);
6654 while (1) {
6655 reg = read_csr(dd, CCE_STATUS);
6656 if (freeze) {
6657 /* waiting until all indicators are set */
6658 if ((reg & ALL_FROZE) == ALL_FROZE)
6659 return; /* all done */
6660 } else {
6661 /* waiting until all indicators are clear */
6662 if ((reg & ALL_FROZE) == 0)
6663 return; /* all done */
6664 }
6665
6666 if (time_after(jiffies, timeout)) {
6667 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006668 "Time out waiting for SPC %sfreeze, bits 0x%llx, expecting 0x%llx, continuing",
6669 freeze ? "" : "un", reg & ALL_FROZE,
6670 freeze ? ALL_FROZE : 0ull);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006671 return;
6672 }
6673 usleep_range(80, 120);
6674 }
6675}
6676
6677/*
6678 * Do all freeze handling for the RXE block.
6679 */
6680static void rxe_freeze(struct hfi1_devdata *dd)
6681{
6682 int i;
6683
6684 /* disable port */
6685 clear_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
6686
6687 /* disable all receive contexts */
6688 for (i = 0; i < dd->num_rcv_contexts; i++)
6689 hfi1_rcvctrl(dd, HFI1_RCVCTRL_CTXT_DIS, i);
6690}
6691
6692/*
6693 * Unfreeze handling for the RXE block - kernel contexts only.
6694 * This will also enable the port. User contexts will do unfreeze
6695 * handling on a per-context basis as they call into the driver.
6696 *
6697 */
6698static void rxe_kernel_unfreeze(struct hfi1_devdata *dd)
6699{
Mitko Haralanov566c1572016-02-03 14:32:49 -08006700 u32 rcvmask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006701 int i;
6702
6703 /* enable all kernel contexts */
Mitko Haralanov566c1572016-02-03 14:32:49 -08006704 for (i = 0; i < dd->n_krcv_queues; i++) {
6705 rcvmask = HFI1_RCVCTRL_CTXT_ENB;
6706 /* HFI1_RCVCTRL_TAILUPD_[ENB|DIS] needs to be set explicitly */
6707 rcvmask |= HFI1_CAP_KGET_MASK(dd->rcd[i]->flags, DMA_RTAIL) ?
6708 HFI1_RCVCTRL_TAILUPD_ENB : HFI1_RCVCTRL_TAILUPD_DIS;
6709 hfi1_rcvctrl(dd, rcvmask, i);
6710 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04006711
6712 /* enable port */
6713 add_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
6714}
6715
6716/*
6717 * Non-interrupt SPC freeze handling.
6718 *
6719 * This is a work-queue function outside of the triggering interrupt.
6720 */
6721void handle_freeze(struct work_struct *work)
6722{
6723 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
6724 freeze_work);
6725 struct hfi1_devdata *dd = ppd->dd;
6726
6727 /* wait for freeze indicators on all affected blocks */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006728 wait_for_freeze_status(dd, 1);
6729
6730 /* SPC is now frozen */
6731
6732 /* do send PIO freeze steps */
6733 pio_freeze(dd);
6734
6735 /* do send DMA freeze steps */
6736 sdma_freeze(dd);
6737
6738 /* do send egress freeze steps - nothing to do */
6739
6740 /* do receive freeze steps */
6741 rxe_freeze(dd);
6742
6743 /*
6744 * Unfreeze the hardware - clear the freeze, wait for each
6745 * block's frozen bit to clear, then clear the frozen flag.
6746 */
6747 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_UNFREEZE_SMASK);
6748 wait_for_freeze_status(dd, 0);
6749
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05006750 if (is_ax(dd)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006751 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_FREEZE_SMASK);
6752 wait_for_freeze_status(dd, 1);
6753 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_UNFREEZE_SMASK);
6754 wait_for_freeze_status(dd, 0);
6755 }
6756
6757 /* do send PIO unfreeze steps for kernel contexts */
6758 pio_kernel_unfreeze(dd);
6759
6760 /* do send DMA unfreeze steps */
6761 sdma_unfreeze(dd);
6762
6763 /* do send egress unfreeze steps - nothing to do */
6764
6765 /* do receive unfreeze steps for kernel contexts */
6766 rxe_kernel_unfreeze(dd);
6767
6768 /*
6769 * The unfreeze procedure touches global device registers when
6770 * it disables and re-enables RXE. Mark the device unfrozen
6771 * after all that is done so other parts of the driver waiting
6772 * for the device to unfreeze don't do things out of order.
6773 *
6774 * The above implies that the meaning of HFI1_FROZEN flag is
6775 * "Device has gone into freeze mode and freeze mode handling
6776 * is still in progress."
6777 *
6778 * The flag will be removed when freeze mode processing has
6779 * completed.
6780 */
6781 dd->flags &= ~HFI1_FROZEN;
6782 wake_up(&dd->event_queue);
6783
6784 /* no longer frozen */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006785}
6786
6787/*
6788 * Handle a link up interrupt from the 8051.
6789 *
6790 * This is a work-queue function outside of the interrupt.
6791 */
6792void handle_link_up(struct work_struct *work)
6793{
6794 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
Jubin John17fb4f22016-02-14 20:21:52 -08006795 link_up_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006796 set_link_state(ppd, HLS_UP_INIT);
6797
6798 /* cache the read of DC_LCB_STS_ROUND_TRIP_LTP_CNT */
6799 read_ltp_rtt(ppd->dd);
6800 /*
6801 * OPA specifies that certain counters are cleared on a transition
6802 * to link up, so do that.
6803 */
6804 clear_linkup_counters(ppd->dd);
6805 /*
6806 * And (re)set link up default values.
6807 */
6808 set_linkup_defaults(ppd);
6809
6810 /* enforce link speed enabled */
6811 if ((ppd->link_speed_active & ppd->link_speed_enabled) == 0) {
6812 /* oops - current speed is not enabled, bounce */
6813 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006814 "Link speed active 0x%x is outside enabled 0x%x, downing link\n",
6815 ppd->link_speed_active, ppd->link_speed_enabled);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006816 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_SPEED_POLICY, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08006817 OPA_LINKDOWN_REASON_SPEED_POLICY);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006818 set_link_state(ppd, HLS_DN_OFFLINE);
6819 start_link(ppd);
6820 }
6821}
6822
Jubin John4d114fd2016-02-14 20:21:43 -08006823/*
6824 * Several pieces of LNI information were cached for SMA in ppd.
6825 * Reset these on link down
6826 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006827static void reset_neighbor_info(struct hfi1_pportdata *ppd)
6828{
6829 ppd->neighbor_guid = 0;
6830 ppd->neighbor_port_number = 0;
6831 ppd->neighbor_type = 0;
6832 ppd->neighbor_fm_security = 0;
6833}
6834
Dean Luickfeb831d2016-04-14 08:31:36 -07006835static const char * const link_down_reason_strs[] = {
6836 [OPA_LINKDOWN_REASON_NONE] = "None",
6837 [OPA_LINKDOWN_REASON_RCV_ERROR_0] = "Recive error 0",
6838 [OPA_LINKDOWN_REASON_BAD_PKT_LEN] = "Bad packet length",
6839 [OPA_LINKDOWN_REASON_PKT_TOO_LONG] = "Packet too long",
6840 [OPA_LINKDOWN_REASON_PKT_TOO_SHORT] = "Packet too short",
6841 [OPA_LINKDOWN_REASON_BAD_SLID] = "Bad SLID",
6842 [OPA_LINKDOWN_REASON_BAD_DLID] = "Bad DLID",
6843 [OPA_LINKDOWN_REASON_BAD_L2] = "Bad L2",
6844 [OPA_LINKDOWN_REASON_BAD_SC] = "Bad SC",
6845 [OPA_LINKDOWN_REASON_RCV_ERROR_8] = "Receive error 8",
6846 [OPA_LINKDOWN_REASON_BAD_MID_TAIL] = "Bad mid tail",
6847 [OPA_LINKDOWN_REASON_RCV_ERROR_10] = "Receive error 10",
6848 [OPA_LINKDOWN_REASON_PREEMPT_ERROR] = "Preempt error",
6849 [OPA_LINKDOWN_REASON_PREEMPT_VL15] = "Preempt vl15",
6850 [OPA_LINKDOWN_REASON_BAD_VL_MARKER] = "Bad VL marker",
6851 [OPA_LINKDOWN_REASON_RCV_ERROR_14] = "Receive error 14",
6852 [OPA_LINKDOWN_REASON_RCV_ERROR_15] = "Receive error 15",
6853 [OPA_LINKDOWN_REASON_BAD_HEAD_DIST] = "Bad head distance",
6854 [OPA_LINKDOWN_REASON_BAD_TAIL_DIST] = "Bad tail distance",
6855 [OPA_LINKDOWN_REASON_BAD_CTRL_DIST] = "Bad control distance",
6856 [OPA_LINKDOWN_REASON_BAD_CREDIT_ACK] = "Bad credit ack",
6857 [OPA_LINKDOWN_REASON_UNSUPPORTED_VL_MARKER] = "Unsupported VL marker",
6858 [OPA_LINKDOWN_REASON_BAD_PREEMPT] = "Bad preempt",
6859 [OPA_LINKDOWN_REASON_BAD_CONTROL_FLIT] = "Bad control flit",
6860 [OPA_LINKDOWN_REASON_EXCEED_MULTICAST_LIMIT] = "Exceed multicast limit",
6861 [OPA_LINKDOWN_REASON_RCV_ERROR_24] = "Receive error 24",
6862 [OPA_LINKDOWN_REASON_RCV_ERROR_25] = "Receive error 25",
6863 [OPA_LINKDOWN_REASON_RCV_ERROR_26] = "Receive error 26",
6864 [OPA_LINKDOWN_REASON_RCV_ERROR_27] = "Receive error 27",
6865 [OPA_LINKDOWN_REASON_RCV_ERROR_28] = "Receive error 28",
6866 [OPA_LINKDOWN_REASON_RCV_ERROR_29] = "Receive error 29",
6867 [OPA_LINKDOWN_REASON_RCV_ERROR_30] = "Receive error 30",
6868 [OPA_LINKDOWN_REASON_EXCESSIVE_BUFFER_OVERRUN] =
6869 "Excessive buffer overrun",
6870 [OPA_LINKDOWN_REASON_UNKNOWN] = "Unknown",
6871 [OPA_LINKDOWN_REASON_REBOOT] = "Reboot",
6872 [OPA_LINKDOWN_REASON_NEIGHBOR_UNKNOWN] = "Neighbor unknown",
6873 [OPA_LINKDOWN_REASON_FM_BOUNCE] = "FM bounce",
6874 [OPA_LINKDOWN_REASON_SPEED_POLICY] = "Speed policy",
6875 [OPA_LINKDOWN_REASON_WIDTH_POLICY] = "Width policy",
6876 [OPA_LINKDOWN_REASON_DISCONNECTED] = "Disconnected",
6877 [OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED] =
6878 "Local media not installed",
6879 [OPA_LINKDOWN_REASON_NOT_INSTALLED] = "Not installed",
6880 [OPA_LINKDOWN_REASON_CHASSIS_CONFIG] = "Chassis config",
6881 [OPA_LINKDOWN_REASON_END_TO_END_NOT_INSTALLED] =
6882 "End to end not installed",
6883 [OPA_LINKDOWN_REASON_POWER_POLICY] = "Power policy",
6884 [OPA_LINKDOWN_REASON_LINKSPEED_POLICY] = "Link speed policy",
6885 [OPA_LINKDOWN_REASON_LINKWIDTH_POLICY] = "Link width policy",
6886 [OPA_LINKDOWN_REASON_SWITCH_MGMT] = "Switch management",
6887 [OPA_LINKDOWN_REASON_SMA_DISABLED] = "SMA disabled",
6888 [OPA_LINKDOWN_REASON_TRANSIENT] = "Transient"
6889};
6890
6891/* return the neighbor link down reason string */
6892static const char *link_down_reason_str(u8 reason)
6893{
6894 const char *str = NULL;
6895
6896 if (reason < ARRAY_SIZE(link_down_reason_strs))
6897 str = link_down_reason_strs[reason];
6898 if (!str)
6899 str = "(invalid)";
6900
6901 return str;
6902}
6903
Mike Marciniszyn77241052015-07-30 15:17:43 -04006904/*
6905 * Handle a link down interrupt from the 8051.
6906 *
6907 * This is a work-queue function outside of the interrupt.
6908 */
6909void handle_link_down(struct work_struct *work)
6910{
6911 u8 lcl_reason, neigh_reason = 0;
Dean Luickfeb831d2016-04-14 08:31:36 -07006912 u8 link_down_reason;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006913 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
Dean Luickfeb831d2016-04-14 08:31:36 -07006914 link_down_work);
6915 int was_up;
6916 static const char ldr_str[] = "Link down reason: ";
Mike Marciniszyn77241052015-07-30 15:17:43 -04006917
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006918 if ((ppd->host_link_state &
6919 (HLS_DN_POLL | HLS_VERIFY_CAP | HLS_GOING_UP)) &&
6920 ppd->port_type == PORT_TYPE_FIXED)
6921 ppd->offline_disabled_reason =
6922 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NOT_INSTALLED);
6923
6924 /* Go offline first, then deal with reading/writing through 8051 */
Dean Luickfeb831d2016-04-14 08:31:36 -07006925 was_up = !!(ppd->host_link_state & HLS_UP);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006926 set_link_state(ppd, HLS_DN_OFFLINE);
6927
Dean Luickfeb831d2016-04-14 08:31:36 -07006928 if (was_up) {
6929 lcl_reason = 0;
6930 /* link down reason is only valid if the link was up */
6931 read_link_down_reason(ppd->dd, &link_down_reason);
6932 switch (link_down_reason) {
6933 case LDR_LINK_TRANSFER_ACTIVE_LOW:
6934 /* the link went down, no idle message reason */
6935 dd_dev_info(ppd->dd, "%sUnexpected link down\n",
6936 ldr_str);
6937 break;
6938 case LDR_RECEIVED_LINKDOWN_IDLE_MSG:
6939 /*
6940 * The neighbor reason is only valid if an idle message
6941 * was received for it.
6942 */
6943 read_planned_down_reason_code(ppd->dd, &neigh_reason);
6944 dd_dev_info(ppd->dd,
6945 "%sNeighbor link down message %d, %s\n",
6946 ldr_str, neigh_reason,
6947 link_down_reason_str(neigh_reason));
6948 break;
6949 case LDR_RECEIVED_HOST_OFFLINE_REQ:
6950 dd_dev_info(ppd->dd,
6951 "%sHost requested link to go offline\n",
6952 ldr_str);
6953 break;
6954 default:
6955 dd_dev_info(ppd->dd, "%sUnknown reason 0x%x\n",
6956 ldr_str, link_down_reason);
6957 break;
6958 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04006959
Dean Luickfeb831d2016-04-14 08:31:36 -07006960 /*
6961 * If no reason, assume peer-initiated but missed
6962 * LinkGoingDown idle flits.
6963 */
6964 if (neigh_reason == 0)
6965 lcl_reason = OPA_LINKDOWN_REASON_NEIGHBOR_UNKNOWN;
6966 } else {
6967 /* went down while polling or going up */
6968 lcl_reason = OPA_LINKDOWN_REASON_TRANSIENT;
6969 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04006970
6971 set_link_down_reason(ppd, lcl_reason, neigh_reason, 0);
6972
Dean Luick015e91f2016-04-14 08:31:42 -07006973 /* inform the SMA when the link transitions from up to down */
6974 if (was_up && ppd->local_link_down_reason.sma == 0 &&
6975 ppd->neigh_link_down_reason.sma == 0) {
6976 ppd->local_link_down_reason.sma =
6977 ppd->local_link_down_reason.latest;
6978 ppd->neigh_link_down_reason.sma =
6979 ppd->neigh_link_down_reason.latest;
6980 }
6981
Mike Marciniszyn77241052015-07-30 15:17:43 -04006982 reset_neighbor_info(ppd);
6983
6984 /* disable the port */
6985 clear_rcvctrl(ppd->dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
6986
Jubin John4d114fd2016-02-14 20:21:43 -08006987 /*
6988 * If there is no cable attached, turn the DC off. Otherwise,
6989 * start the link bring up.
6990 */
Dean Luick0db9dec2016-09-06 04:35:20 -07006991 if (ppd->port_type == PORT_TYPE_QSFP && !qsfp_mod_present(ppd))
Mike Marciniszyn77241052015-07-30 15:17:43 -04006992 dc_shutdown(ppd->dd);
Dean Luick0db9dec2016-09-06 04:35:20 -07006993 else
Mike Marciniszyn77241052015-07-30 15:17:43 -04006994 start_link(ppd);
6995}
6996
6997void handle_link_bounce(struct work_struct *work)
6998{
6999 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
7000 link_bounce_work);
7001
7002 /*
7003 * Only do something if the link is currently up.
7004 */
7005 if (ppd->host_link_state & HLS_UP) {
7006 set_link_state(ppd, HLS_DN_OFFLINE);
7007 start_link(ppd);
7008 } else {
7009 dd_dev_info(ppd->dd, "%s: link not up (%s), nothing to do\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007010 __func__, link_state_name(ppd->host_link_state));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007011 }
7012}
7013
7014/*
7015 * Mask conversion: Capability exchange to Port LTP. The capability
7016 * exchange has an implicit 16b CRC that is mandatory.
7017 */
7018static int cap_to_port_ltp(int cap)
7019{
7020 int port_ltp = PORT_LTP_CRC_MODE_16; /* this mode is mandatory */
7021
7022 if (cap & CAP_CRC_14B)
7023 port_ltp |= PORT_LTP_CRC_MODE_14;
7024 if (cap & CAP_CRC_48B)
7025 port_ltp |= PORT_LTP_CRC_MODE_48;
7026 if (cap & CAP_CRC_12B_16B_PER_LANE)
7027 port_ltp |= PORT_LTP_CRC_MODE_PER_LANE;
7028
7029 return port_ltp;
7030}
7031
7032/*
7033 * Convert an OPA Port LTP mask to capability mask
7034 */
7035int port_ltp_to_cap(int port_ltp)
7036{
7037 int cap_mask = 0;
7038
7039 if (port_ltp & PORT_LTP_CRC_MODE_14)
7040 cap_mask |= CAP_CRC_14B;
7041 if (port_ltp & PORT_LTP_CRC_MODE_48)
7042 cap_mask |= CAP_CRC_48B;
7043 if (port_ltp & PORT_LTP_CRC_MODE_PER_LANE)
7044 cap_mask |= CAP_CRC_12B_16B_PER_LANE;
7045
7046 return cap_mask;
7047}
7048
7049/*
7050 * Convert a single DC LCB CRC mode to an OPA Port LTP mask.
7051 */
7052static int lcb_to_port_ltp(int lcb_crc)
7053{
7054 int port_ltp = 0;
7055
7056 if (lcb_crc == LCB_CRC_12B_16B_PER_LANE)
7057 port_ltp = PORT_LTP_CRC_MODE_PER_LANE;
7058 else if (lcb_crc == LCB_CRC_48B)
7059 port_ltp = PORT_LTP_CRC_MODE_48;
7060 else if (lcb_crc == LCB_CRC_14B)
7061 port_ltp = PORT_LTP_CRC_MODE_14;
7062 else
7063 port_ltp = PORT_LTP_CRC_MODE_16;
7064
7065 return port_ltp;
7066}
7067
7068/*
7069 * Our neighbor has indicated that we are allowed to act as a fabric
7070 * manager, so place the full management partition key in the second
7071 * (0-based) pkey array position (see OPAv1, section 20.2.2.6.8). Note
7072 * that we should already have the limited management partition key in
7073 * array element 1, and also that the port is not yet up when
7074 * add_full_mgmt_pkey() is invoked.
7075 */
7076static void add_full_mgmt_pkey(struct hfi1_pportdata *ppd)
7077{
7078 struct hfi1_devdata *dd = ppd->dd;
7079
Dean Luick87645222015-12-01 15:38:21 -05007080 /* Sanity check - ppd->pkeys[2] should be 0, or already initalized */
7081 if (!((ppd->pkeys[2] == 0) || (ppd->pkeys[2] == FULL_MGMT_P_KEY)))
7082 dd_dev_warn(dd, "%s pkey[2] already set to 0x%x, resetting it to 0x%x\n",
7083 __func__, ppd->pkeys[2], FULL_MGMT_P_KEY);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007084 ppd->pkeys[2] = FULL_MGMT_P_KEY;
7085 (void)hfi1_set_ib_cfg(ppd, HFI1_IB_CFG_PKEYS, 0);
Sebastian Sanchez34d351f2016-06-09 07:52:03 -07007086 hfi1_event_pkey_change(ppd->dd, ppd->port);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007087}
7088
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07007089static void clear_full_mgmt_pkey(struct hfi1_pportdata *ppd)
Sebastian Sanchezce8b2fd2016-05-24 12:50:47 -07007090{
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07007091 if (ppd->pkeys[2] != 0) {
7092 ppd->pkeys[2] = 0;
7093 (void)hfi1_set_ib_cfg(ppd, HFI1_IB_CFG_PKEYS, 0);
Sebastian Sanchez34d351f2016-06-09 07:52:03 -07007094 hfi1_event_pkey_change(ppd->dd, ppd->port);
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07007095 }
Sebastian Sanchezce8b2fd2016-05-24 12:50:47 -07007096}
7097
Mike Marciniszyn77241052015-07-30 15:17:43 -04007098/*
7099 * Convert the given link width to the OPA link width bitmask.
7100 */
7101static u16 link_width_to_bits(struct hfi1_devdata *dd, u16 width)
7102{
7103 switch (width) {
7104 case 0:
7105 /*
7106 * Simulator and quick linkup do not set the width.
7107 * Just set it to 4x without complaint.
7108 */
7109 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR || quick_linkup)
7110 return OPA_LINK_WIDTH_4X;
7111 return 0; /* no lanes up */
7112 case 1: return OPA_LINK_WIDTH_1X;
7113 case 2: return OPA_LINK_WIDTH_2X;
7114 case 3: return OPA_LINK_WIDTH_3X;
7115 default:
7116 dd_dev_info(dd, "%s: invalid width %d, using 4\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007117 __func__, width);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007118 /* fall through */
7119 case 4: return OPA_LINK_WIDTH_4X;
7120 }
7121}
7122
7123/*
7124 * Do a population count on the bottom nibble.
7125 */
7126static const u8 bit_counts[16] = {
7127 0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4
7128};
Jubin Johnf4d507c2016-02-14 20:20:25 -08007129
Mike Marciniszyn77241052015-07-30 15:17:43 -04007130static inline u8 nibble_to_count(u8 nibble)
7131{
7132 return bit_counts[nibble & 0xf];
7133}
7134
7135/*
7136 * Read the active lane information from the 8051 registers and return
7137 * their widths.
7138 *
7139 * Active lane information is found in these 8051 registers:
7140 * enable_lane_tx
7141 * enable_lane_rx
7142 */
7143static void get_link_widths(struct hfi1_devdata *dd, u16 *tx_width,
7144 u16 *rx_width)
7145{
7146 u16 tx, rx;
7147 u8 enable_lane_rx;
7148 u8 enable_lane_tx;
7149 u8 tx_polarity_inversion;
7150 u8 rx_polarity_inversion;
7151 u8 max_rate;
7152
7153 /* read the active lanes */
7154 read_tx_settings(dd, &enable_lane_tx, &tx_polarity_inversion,
Jubin John17fb4f22016-02-14 20:21:52 -08007155 &rx_polarity_inversion, &max_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007156 read_local_lni(dd, &enable_lane_rx);
7157
7158 /* convert to counts */
7159 tx = nibble_to_count(enable_lane_tx);
7160 rx = nibble_to_count(enable_lane_rx);
7161
7162 /*
7163 * Set link_speed_active here, overriding what was set in
7164 * handle_verify_cap(). The ASIC 8051 firmware does not correctly
7165 * set the max_rate field in handle_verify_cap until v0.19.
7166 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08007167 if ((dd->icode == ICODE_RTL_SILICON) &&
7168 (dd->dc8051_ver < dc8051_ver(0, 19))) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007169 /* max_rate: 0 = 12.5G, 1 = 25G */
7170 switch (max_rate) {
7171 case 0:
7172 dd->pport[0].link_speed_active = OPA_LINK_SPEED_12_5G;
7173 break;
7174 default:
7175 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007176 "%s: unexpected max rate %d, using 25Gb\n",
7177 __func__, (int)max_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007178 /* fall through */
7179 case 1:
7180 dd->pport[0].link_speed_active = OPA_LINK_SPEED_25G;
7181 break;
7182 }
7183 }
7184
7185 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007186 "Fabric active lanes (width): tx 0x%x (%d), rx 0x%x (%d)\n",
7187 enable_lane_tx, tx, enable_lane_rx, rx);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007188 *tx_width = link_width_to_bits(dd, tx);
7189 *rx_width = link_width_to_bits(dd, rx);
7190}
7191
7192/*
7193 * Read verify_cap_local_fm_link_width[1] to obtain the link widths.
7194 * Valid after the end of VerifyCap and during LinkUp. Does not change
7195 * after link up. I.e. look elsewhere for downgrade information.
7196 *
7197 * Bits are:
7198 * + bits [7:4] contain the number of active transmitters
7199 * + bits [3:0] contain the number of active receivers
7200 * These are numbers 1 through 4 and can be different values if the
7201 * link is asymmetric.
7202 *
7203 * verify_cap_local_fm_link_width[0] retains its original value.
7204 */
7205static void get_linkup_widths(struct hfi1_devdata *dd, u16 *tx_width,
7206 u16 *rx_width)
7207{
7208 u16 widths, tx, rx;
7209 u8 misc_bits, local_flags;
7210 u16 active_tx, active_rx;
7211
7212 read_vc_local_link_width(dd, &misc_bits, &local_flags, &widths);
7213 tx = widths >> 12;
7214 rx = (widths >> 8) & 0xf;
7215
7216 *tx_width = link_width_to_bits(dd, tx);
7217 *rx_width = link_width_to_bits(dd, rx);
7218
7219 /* print the active widths */
7220 get_link_widths(dd, &active_tx, &active_rx);
7221}
7222
7223/*
7224 * Set ppd->link_width_active and ppd->link_width_downgrade_active using
7225 * hardware information when the link first comes up.
7226 *
7227 * The link width is not available until after VerifyCap.AllFramesReceived
7228 * (the trigger for handle_verify_cap), so this is outside that routine
7229 * and should be called when the 8051 signals linkup.
7230 */
7231void get_linkup_link_widths(struct hfi1_pportdata *ppd)
7232{
7233 u16 tx_width, rx_width;
7234
7235 /* get end-of-LNI link widths */
7236 get_linkup_widths(ppd->dd, &tx_width, &rx_width);
7237
7238 /* use tx_width as the link is supposed to be symmetric on link up */
7239 ppd->link_width_active = tx_width;
7240 /* link width downgrade active (LWD.A) starts out matching LW.A */
7241 ppd->link_width_downgrade_tx_active = ppd->link_width_active;
7242 ppd->link_width_downgrade_rx_active = ppd->link_width_active;
7243 /* per OPA spec, on link up LWD.E resets to LWD.S */
7244 ppd->link_width_downgrade_enabled = ppd->link_width_downgrade_supported;
7245 /* cache the active egress rate (units {10^6 bits/sec]) */
7246 ppd->current_egress_rate = active_egress_rate(ppd);
7247}
7248
7249/*
7250 * Handle a verify capabilities interrupt from the 8051.
7251 *
7252 * This is a work-queue function outside of the interrupt.
7253 */
7254void handle_verify_cap(struct work_struct *work)
7255{
7256 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
7257 link_vc_work);
7258 struct hfi1_devdata *dd = ppd->dd;
7259 u64 reg;
7260 u8 power_management;
7261 u8 continious;
7262 u8 vcu;
7263 u8 vau;
7264 u8 z;
7265 u16 vl15buf;
7266 u16 link_widths;
7267 u16 crc_mask;
7268 u16 crc_val;
7269 u16 device_id;
7270 u16 active_tx, active_rx;
7271 u8 partner_supported_crc;
7272 u8 remote_tx_rate;
7273 u8 device_rev;
7274
7275 set_link_state(ppd, HLS_VERIFY_CAP);
7276
7277 lcb_shutdown(dd, 0);
7278 adjust_lcb_for_fpga_serdes(dd);
7279
7280 /*
7281 * These are now valid:
7282 * remote VerifyCap fields in the general LNI config
7283 * CSR DC8051_STS_REMOTE_GUID
7284 * CSR DC8051_STS_REMOTE_NODE_TYPE
7285 * CSR DC8051_STS_REMOTE_FM_SECURITY
7286 * CSR DC8051_STS_REMOTE_PORT_NO
7287 */
7288
7289 read_vc_remote_phy(dd, &power_management, &continious);
Jubin John17fb4f22016-02-14 20:21:52 -08007290 read_vc_remote_fabric(dd, &vau, &z, &vcu, &vl15buf,
7291 &partner_supported_crc);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007292 read_vc_remote_link_width(dd, &remote_tx_rate, &link_widths);
7293 read_remote_device_id(dd, &device_id, &device_rev);
7294 /*
7295 * And the 'MgmtAllowed' information, which is exchanged during
7296 * LNI, is also be available at this point.
7297 */
7298 read_mgmt_allowed(dd, &ppd->mgmt_allowed);
7299 /* print the active widths */
7300 get_link_widths(dd, &active_tx, &active_rx);
7301 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007302 "Peer PHY: power management 0x%x, continuous updates 0x%x\n",
7303 (int)power_management, (int)continious);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007304 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007305 "Peer Fabric: vAU %d, Z %d, vCU %d, vl15 credits 0x%x, CRC sizes 0x%x\n",
7306 (int)vau, (int)z, (int)vcu, (int)vl15buf,
7307 (int)partner_supported_crc);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007308 dd_dev_info(dd, "Peer Link Width: tx rate 0x%x, widths 0x%x\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007309 (u32)remote_tx_rate, (u32)link_widths);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007310 dd_dev_info(dd, "Peer Device ID: 0x%04x, Revision 0x%02x\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007311 (u32)device_id, (u32)device_rev);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007312 /*
7313 * The peer vAU value just read is the peer receiver value. HFI does
7314 * not support a transmit vAU of 0 (AU == 8). We advertised that
7315 * with Z=1 in the fabric capabilities sent to the peer. The peer
7316 * will see our Z=1, and, if it advertised a vAU of 0, will move its
7317 * receive to vAU of 1 (AU == 16). Do the same here. We do not care
7318 * about the peer Z value - our sent vAU is 3 (hardwired) and is not
7319 * subject to the Z value exception.
7320 */
7321 if (vau == 0)
7322 vau = 1;
7323 set_up_vl15(dd, vau, vl15buf);
7324
7325 /* set up the LCB CRC mode */
7326 crc_mask = ppd->port_crc_mode_enabled & partner_supported_crc;
7327
7328 /* order is important: use the lowest bit in common */
7329 if (crc_mask & CAP_CRC_14B)
7330 crc_val = LCB_CRC_14B;
7331 else if (crc_mask & CAP_CRC_48B)
7332 crc_val = LCB_CRC_48B;
7333 else if (crc_mask & CAP_CRC_12B_16B_PER_LANE)
7334 crc_val = LCB_CRC_12B_16B_PER_LANE;
7335 else
7336 crc_val = LCB_CRC_16B;
7337
7338 dd_dev_info(dd, "Final LCB CRC mode: %d\n", (int)crc_val);
7339 write_csr(dd, DC_LCB_CFG_CRC_MODE,
7340 (u64)crc_val << DC_LCB_CFG_CRC_MODE_TX_VAL_SHIFT);
7341
7342 /* set (14b only) or clear sideband credit */
7343 reg = read_csr(dd, SEND_CM_CTRL);
7344 if (crc_val == LCB_CRC_14B && crc_14b_sideband) {
7345 write_csr(dd, SEND_CM_CTRL,
Jubin John17fb4f22016-02-14 20:21:52 -08007346 reg | SEND_CM_CTRL_FORCE_CREDIT_MODE_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007347 } else {
7348 write_csr(dd, SEND_CM_CTRL,
Jubin John17fb4f22016-02-14 20:21:52 -08007349 reg & ~SEND_CM_CTRL_FORCE_CREDIT_MODE_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007350 }
7351
7352 ppd->link_speed_active = 0; /* invalid value */
7353 if (dd->dc8051_ver < dc8051_ver(0, 20)) {
7354 /* remote_tx_rate: 0 = 12.5G, 1 = 25G */
7355 switch (remote_tx_rate) {
7356 case 0:
7357 ppd->link_speed_active = OPA_LINK_SPEED_12_5G;
7358 break;
7359 case 1:
7360 ppd->link_speed_active = OPA_LINK_SPEED_25G;
7361 break;
7362 }
7363 } else {
7364 /* actual rate is highest bit of the ANDed rates */
7365 u8 rate = remote_tx_rate & ppd->local_tx_rate;
7366
7367 if (rate & 2)
7368 ppd->link_speed_active = OPA_LINK_SPEED_25G;
7369 else if (rate & 1)
7370 ppd->link_speed_active = OPA_LINK_SPEED_12_5G;
7371 }
7372 if (ppd->link_speed_active == 0) {
7373 dd_dev_err(dd, "%s: unexpected remote tx rate %d, using 25Gb\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007374 __func__, (int)remote_tx_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007375 ppd->link_speed_active = OPA_LINK_SPEED_25G;
7376 }
7377
7378 /*
7379 * Cache the values of the supported, enabled, and active
7380 * LTP CRC modes to return in 'portinfo' queries. But the bit
7381 * flags that are returned in the portinfo query differ from
7382 * what's in the link_crc_mask, crc_sizes, and crc_val
7383 * variables. Convert these here.
7384 */
7385 ppd->port_ltp_crc_mode = cap_to_port_ltp(link_crc_mask) << 8;
7386 /* supported crc modes */
7387 ppd->port_ltp_crc_mode |=
7388 cap_to_port_ltp(ppd->port_crc_mode_enabled) << 4;
7389 /* enabled crc modes */
7390 ppd->port_ltp_crc_mode |= lcb_to_port_ltp(crc_val);
7391 /* active crc mode */
7392
7393 /* set up the remote credit return table */
7394 assign_remote_cm_au_table(dd, vcu);
7395
7396 /*
7397 * The LCB is reset on entry to handle_verify_cap(), so this must
7398 * be applied on every link up.
7399 *
7400 * Adjust LCB error kill enable to kill the link if
7401 * these RBUF errors are seen:
7402 * REPLAY_BUF_MBE_SMASK
7403 * FLIT_INPUT_BUF_MBE_SMASK
7404 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05007405 if (is_ax(dd)) { /* fixed in B0 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04007406 reg = read_csr(dd, DC_LCB_CFG_LINK_KILL_EN);
7407 reg |= DC_LCB_CFG_LINK_KILL_EN_REPLAY_BUF_MBE_SMASK
7408 | DC_LCB_CFG_LINK_KILL_EN_FLIT_INPUT_BUF_MBE_SMASK;
7409 write_csr(dd, DC_LCB_CFG_LINK_KILL_EN, reg);
7410 }
7411
7412 /* pull LCB fifos out of reset - all fifo clocks must be stable */
7413 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0);
7414
7415 /* give 8051 access to the LCB CSRs */
7416 write_csr(dd, DC_LCB_ERR_EN, 0); /* mask LCB errors */
7417 set_8051_lcb_access(dd);
7418
7419 ppd->neighbor_guid =
7420 read_csr(dd, DC_DC8051_STS_REMOTE_GUID);
7421 ppd->neighbor_port_number = read_csr(dd, DC_DC8051_STS_REMOTE_PORT_NO) &
7422 DC_DC8051_STS_REMOTE_PORT_NO_VAL_SMASK;
7423 ppd->neighbor_type =
7424 read_csr(dd, DC_DC8051_STS_REMOTE_NODE_TYPE) &
7425 DC_DC8051_STS_REMOTE_NODE_TYPE_VAL_MASK;
7426 ppd->neighbor_fm_security =
7427 read_csr(dd, DC_DC8051_STS_REMOTE_FM_SECURITY) &
7428 DC_DC8051_STS_LOCAL_FM_SECURITY_DISABLED_MASK;
7429 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007430 "Neighbor Guid: %llx Neighbor type %d MgmtAllowed %d FM security bypass %d\n",
7431 ppd->neighbor_guid, ppd->neighbor_type,
7432 ppd->mgmt_allowed, ppd->neighbor_fm_security);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007433 if (ppd->mgmt_allowed)
7434 add_full_mgmt_pkey(ppd);
7435
7436 /* tell the 8051 to go to LinkUp */
7437 set_link_state(ppd, HLS_GOING_UP);
7438}
7439
7440/*
7441 * Apply the link width downgrade enabled policy against the current active
7442 * link widths.
7443 *
7444 * Called when the enabled policy changes or the active link widths change.
7445 */
7446void apply_link_downgrade_policy(struct hfi1_pportdata *ppd, int refresh_widths)
7447{
Mike Marciniszyn77241052015-07-30 15:17:43 -04007448 int do_bounce = 0;
Dean Luick323fd782015-11-16 21:59:24 -05007449 int tries;
7450 u16 lwde;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007451 u16 tx, rx;
7452
Dean Luick323fd782015-11-16 21:59:24 -05007453 /* use the hls lock to avoid a race with actual link up */
7454 tries = 0;
7455retry:
Mike Marciniszyn77241052015-07-30 15:17:43 -04007456 mutex_lock(&ppd->hls_lock);
7457 /* only apply if the link is up */
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07007458 if (ppd->host_link_state & HLS_DOWN) {
Dean Luick323fd782015-11-16 21:59:24 -05007459 /* still going up..wait and retry */
7460 if (ppd->host_link_state & HLS_GOING_UP) {
7461 if (++tries < 1000) {
7462 mutex_unlock(&ppd->hls_lock);
7463 usleep_range(100, 120); /* arbitrary */
7464 goto retry;
7465 }
7466 dd_dev_err(ppd->dd,
7467 "%s: giving up waiting for link state change\n",
7468 __func__);
7469 }
7470 goto done;
7471 }
7472
7473 lwde = ppd->link_width_downgrade_enabled;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007474
7475 if (refresh_widths) {
7476 get_link_widths(ppd->dd, &tx, &rx);
7477 ppd->link_width_downgrade_tx_active = tx;
7478 ppd->link_width_downgrade_rx_active = rx;
7479 }
7480
Dean Luickf9b56352016-04-14 08:31:30 -07007481 if (ppd->link_width_downgrade_tx_active == 0 ||
7482 ppd->link_width_downgrade_rx_active == 0) {
7483 /* the 8051 reported a dead link as a downgrade */
7484 dd_dev_err(ppd->dd, "Link downgrade is really a link down, ignoring\n");
7485 } else if (lwde == 0) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007486 /* downgrade is disabled */
7487
7488 /* bounce if not at starting active width */
7489 if ((ppd->link_width_active !=
Jubin John17fb4f22016-02-14 20:21:52 -08007490 ppd->link_width_downgrade_tx_active) ||
7491 (ppd->link_width_active !=
7492 ppd->link_width_downgrade_rx_active)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007493 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007494 "Link downgrade is disabled and link has downgraded, downing link\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04007495 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007496 " original 0x%x, tx active 0x%x, rx active 0x%x\n",
7497 ppd->link_width_active,
7498 ppd->link_width_downgrade_tx_active,
7499 ppd->link_width_downgrade_rx_active);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007500 do_bounce = 1;
7501 }
Jubin Johnd0d236e2016-02-14 20:20:15 -08007502 } else if ((lwde & ppd->link_width_downgrade_tx_active) == 0 ||
7503 (lwde & ppd->link_width_downgrade_rx_active) == 0) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007504 /* Tx or Rx is outside the enabled policy */
7505 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007506 "Link is outside of downgrade allowed, downing link\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04007507 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007508 " enabled 0x%x, tx active 0x%x, rx active 0x%x\n",
7509 lwde, ppd->link_width_downgrade_tx_active,
7510 ppd->link_width_downgrade_rx_active);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007511 do_bounce = 1;
7512 }
7513
Dean Luick323fd782015-11-16 21:59:24 -05007514done:
7515 mutex_unlock(&ppd->hls_lock);
7516
Mike Marciniszyn77241052015-07-30 15:17:43 -04007517 if (do_bounce) {
7518 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_WIDTH_POLICY, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08007519 OPA_LINKDOWN_REASON_WIDTH_POLICY);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007520 set_link_state(ppd, HLS_DN_OFFLINE);
7521 start_link(ppd);
7522 }
7523}
7524
7525/*
7526 * Handle a link downgrade interrupt from the 8051.
7527 *
7528 * This is a work-queue function outside of the interrupt.
7529 */
7530void handle_link_downgrade(struct work_struct *work)
7531{
7532 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
7533 link_downgrade_work);
7534
7535 dd_dev_info(ppd->dd, "8051: Link width downgrade\n");
7536 apply_link_downgrade_policy(ppd, 1);
7537}
7538
7539static char *dcc_err_string(char *buf, int buf_len, u64 flags)
7540{
7541 return flag_string(buf, buf_len, flags, dcc_err_flags,
7542 ARRAY_SIZE(dcc_err_flags));
7543}
7544
7545static char *lcb_err_string(char *buf, int buf_len, u64 flags)
7546{
7547 return flag_string(buf, buf_len, flags, lcb_err_flags,
7548 ARRAY_SIZE(lcb_err_flags));
7549}
7550
7551static char *dc8051_err_string(char *buf, int buf_len, u64 flags)
7552{
7553 return flag_string(buf, buf_len, flags, dc8051_err_flags,
7554 ARRAY_SIZE(dc8051_err_flags));
7555}
7556
7557static char *dc8051_info_err_string(char *buf, int buf_len, u64 flags)
7558{
7559 return flag_string(buf, buf_len, flags, dc8051_info_err_flags,
7560 ARRAY_SIZE(dc8051_info_err_flags));
7561}
7562
7563static char *dc8051_info_host_msg_string(char *buf, int buf_len, u64 flags)
7564{
7565 return flag_string(buf, buf_len, flags, dc8051_info_host_msg_flags,
7566 ARRAY_SIZE(dc8051_info_host_msg_flags));
7567}
7568
7569static void handle_8051_interrupt(struct hfi1_devdata *dd, u32 unused, u64 reg)
7570{
7571 struct hfi1_pportdata *ppd = dd->pport;
7572 u64 info, err, host_msg;
7573 int queue_link_down = 0;
7574 char buf[96];
7575
7576 /* look at the flags */
7577 if (reg & DC_DC8051_ERR_FLG_SET_BY_8051_SMASK) {
7578 /* 8051 information set by firmware */
7579 /* read DC8051_DBG_ERR_INFO_SET_BY_8051 for details */
7580 info = read_csr(dd, DC_DC8051_DBG_ERR_INFO_SET_BY_8051);
7581 err = (info >> DC_DC8051_DBG_ERR_INFO_SET_BY_8051_ERROR_SHIFT)
7582 & DC_DC8051_DBG_ERR_INFO_SET_BY_8051_ERROR_MASK;
7583 host_msg = (info >>
7584 DC_DC8051_DBG_ERR_INFO_SET_BY_8051_HOST_MSG_SHIFT)
7585 & DC_DC8051_DBG_ERR_INFO_SET_BY_8051_HOST_MSG_MASK;
7586
7587 /*
7588 * Handle error flags.
7589 */
7590 if (err & FAILED_LNI) {
7591 /*
7592 * LNI error indications are cleared by the 8051
7593 * only when starting polling. Only pay attention
7594 * to them when in the states that occur during
7595 * LNI.
7596 */
7597 if (ppd->host_link_state
7598 & (HLS_DN_POLL | HLS_VERIFY_CAP | HLS_GOING_UP)) {
7599 queue_link_down = 1;
7600 dd_dev_info(dd, "Link error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007601 dc8051_info_err_string(buf,
7602 sizeof(buf),
7603 err &
7604 FAILED_LNI));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007605 }
7606 err &= ~(u64)FAILED_LNI;
7607 }
Dean Luick6d014532015-12-01 15:38:23 -05007608 /* unknown frames can happen durning LNI, just count */
7609 if (err & UNKNOWN_FRAME) {
7610 ppd->unknown_frame_count++;
7611 err &= ~(u64)UNKNOWN_FRAME;
7612 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04007613 if (err) {
7614 /* report remaining errors, but do not do anything */
7615 dd_dev_err(dd, "8051 info error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007616 dc8051_info_err_string(buf, sizeof(buf),
7617 err));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007618 }
7619
7620 /*
7621 * Handle host message flags.
7622 */
7623 if (host_msg & HOST_REQ_DONE) {
7624 /*
7625 * Presently, the driver does a busy wait for
7626 * host requests to complete. This is only an
7627 * informational message.
7628 * NOTE: The 8051 clears the host message
7629 * information *on the next 8051 command*.
7630 * Therefore, when linkup is achieved,
7631 * this flag will still be set.
7632 */
7633 host_msg &= ~(u64)HOST_REQ_DONE;
7634 }
7635 if (host_msg & BC_SMA_MSG) {
7636 queue_work(ppd->hfi1_wq, &ppd->sma_message_work);
7637 host_msg &= ~(u64)BC_SMA_MSG;
7638 }
7639 if (host_msg & LINKUP_ACHIEVED) {
7640 dd_dev_info(dd, "8051: Link up\n");
7641 queue_work(ppd->hfi1_wq, &ppd->link_up_work);
7642 host_msg &= ~(u64)LINKUP_ACHIEVED;
7643 }
7644 if (host_msg & EXT_DEVICE_CFG_REQ) {
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07007645 handle_8051_request(ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007646 host_msg &= ~(u64)EXT_DEVICE_CFG_REQ;
7647 }
7648 if (host_msg & VERIFY_CAP_FRAME) {
7649 queue_work(ppd->hfi1_wq, &ppd->link_vc_work);
7650 host_msg &= ~(u64)VERIFY_CAP_FRAME;
7651 }
7652 if (host_msg & LINK_GOING_DOWN) {
7653 const char *extra = "";
7654 /* no downgrade action needed if going down */
7655 if (host_msg & LINK_WIDTH_DOWNGRADED) {
7656 host_msg &= ~(u64)LINK_WIDTH_DOWNGRADED;
7657 extra = " (ignoring downgrade)";
7658 }
7659 dd_dev_info(dd, "8051: Link down%s\n", extra);
7660 queue_link_down = 1;
7661 host_msg &= ~(u64)LINK_GOING_DOWN;
7662 }
7663 if (host_msg & LINK_WIDTH_DOWNGRADED) {
7664 queue_work(ppd->hfi1_wq, &ppd->link_downgrade_work);
7665 host_msg &= ~(u64)LINK_WIDTH_DOWNGRADED;
7666 }
7667 if (host_msg) {
7668 /* report remaining messages, but do not do anything */
7669 dd_dev_info(dd, "8051 info host message: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007670 dc8051_info_host_msg_string(buf,
7671 sizeof(buf),
7672 host_msg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007673 }
7674
7675 reg &= ~DC_DC8051_ERR_FLG_SET_BY_8051_SMASK;
7676 }
7677 if (reg & DC_DC8051_ERR_FLG_LOST_8051_HEART_BEAT_SMASK) {
7678 /*
7679 * Lost the 8051 heartbeat. If this happens, we
7680 * receive constant interrupts about it. Disable
7681 * the interrupt after the first.
7682 */
7683 dd_dev_err(dd, "Lost 8051 heartbeat\n");
7684 write_csr(dd, DC_DC8051_ERR_EN,
Jubin John17fb4f22016-02-14 20:21:52 -08007685 read_csr(dd, DC_DC8051_ERR_EN) &
7686 ~DC_DC8051_ERR_EN_LOST_8051_HEART_BEAT_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007687
7688 reg &= ~DC_DC8051_ERR_FLG_LOST_8051_HEART_BEAT_SMASK;
7689 }
7690 if (reg) {
7691 /* report the error, but do not do anything */
7692 dd_dev_err(dd, "8051 error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007693 dc8051_err_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007694 }
7695
7696 if (queue_link_down) {
Jubin John4d114fd2016-02-14 20:21:43 -08007697 /*
7698 * if the link is already going down or disabled, do not
7699 * queue another
7700 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08007701 if ((ppd->host_link_state &
7702 (HLS_GOING_OFFLINE | HLS_LINK_COOLDOWN)) ||
7703 ppd->link_enabled == 0) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007704 dd_dev_info(dd, "%s: not queuing link down\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007705 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007706 } else {
7707 queue_work(ppd->hfi1_wq, &ppd->link_down_work);
7708 }
7709 }
7710}
7711
7712static const char * const fm_config_txt[] = {
7713[0] =
7714 "BadHeadDist: Distance violation between two head flits",
7715[1] =
7716 "BadTailDist: Distance violation between two tail flits",
7717[2] =
7718 "BadCtrlDist: Distance violation between two credit control flits",
7719[3] =
7720 "BadCrdAck: Credits return for unsupported VL",
7721[4] =
7722 "UnsupportedVLMarker: Received VL Marker",
7723[5] =
7724 "BadPreempt: Exceeded the preemption nesting level",
7725[6] =
7726 "BadControlFlit: Received unsupported control flit",
7727/* no 7 */
7728[8] =
7729 "UnsupportedVLMarker: Received VL Marker for unconfigured or disabled VL",
7730};
7731
7732static const char * const port_rcv_txt[] = {
7733[1] =
7734 "BadPktLen: Illegal PktLen",
7735[2] =
7736 "PktLenTooLong: Packet longer than PktLen",
7737[3] =
7738 "PktLenTooShort: Packet shorter than PktLen",
7739[4] =
7740 "BadSLID: Illegal SLID (0, using multicast as SLID, does not include security validation of SLID)",
7741[5] =
7742 "BadDLID: Illegal DLID (0, doesn't match HFI)",
7743[6] =
7744 "BadL2: Illegal L2 opcode",
7745[7] =
7746 "BadSC: Unsupported SC",
7747[9] =
7748 "BadRC: Illegal RC",
7749[11] =
7750 "PreemptError: Preempting with same VL",
7751[12] =
7752 "PreemptVL15: Preempting a VL15 packet",
7753};
7754
7755#define OPA_LDR_FMCONFIG_OFFSET 16
7756#define OPA_LDR_PORTRCV_OFFSET 0
7757static void handle_dcc_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
7758{
7759 u64 info, hdr0, hdr1;
7760 const char *extra;
7761 char buf[96];
7762 struct hfi1_pportdata *ppd = dd->pport;
7763 u8 lcl_reason = 0;
7764 int do_bounce = 0;
7765
7766 if (reg & DCC_ERR_FLG_UNCORRECTABLE_ERR_SMASK) {
7767 if (!(dd->err_info_uncorrectable & OPA_EI_STATUS_SMASK)) {
7768 info = read_csr(dd, DCC_ERR_INFO_UNCORRECTABLE);
7769 dd->err_info_uncorrectable = info & OPA_EI_CODE_SMASK;
7770 /* set status bit */
7771 dd->err_info_uncorrectable |= OPA_EI_STATUS_SMASK;
7772 }
7773 reg &= ~DCC_ERR_FLG_UNCORRECTABLE_ERR_SMASK;
7774 }
7775
7776 if (reg & DCC_ERR_FLG_LINK_ERR_SMASK) {
7777 struct hfi1_pportdata *ppd = dd->pport;
7778 /* this counter saturates at (2^32) - 1 */
7779 if (ppd->link_downed < (u32)UINT_MAX)
7780 ppd->link_downed++;
7781 reg &= ~DCC_ERR_FLG_LINK_ERR_SMASK;
7782 }
7783
7784 if (reg & DCC_ERR_FLG_FMCONFIG_ERR_SMASK) {
7785 u8 reason_valid = 1;
7786
7787 info = read_csr(dd, DCC_ERR_INFO_FMCONFIG);
7788 if (!(dd->err_info_fmconfig & OPA_EI_STATUS_SMASK)) {
7789 dd->err_info_fmconfig = info & OPA_EI_CODE_SMASK;
7790 /* set status bit */
7791 dd->err_info_fmconfig |= OPA_EI_STATUS_SMASK;
7792 }
7793 switch (info) {
7794 case 0:
7795 case 1:
7796 case 2:
7797 case 3:
7798 case 4:
7799 case 5:
7800 case 6:
7801 extra = fm_config_txt[info];
7802 break;
7803 case 8:
7804 extra = fm_config_txt[info];
7805 if (ppd->port_error_action &
7806 OPA_PI_MASK_FM_CFG_UNSUPPORTED_VL_MARKER) {
7807 do_bounce = 1;
7808 /*
7809 * lcl_reason cannot be derived from info
7810 * for this error
7811 */
7812 lcl_reason =
7813 OPA_LINKDOWN_REASON_UNSUPPORTED_VL_MARKER;
7814 }
7815 break;
7816 default:
7817 reason_valid = 0;
7818 snprintf(buf, sizeof(buf), "reserved%lld", info);
7819 extra = buf;
7820 break;
7821 }
7822
7823 if (reason_valid && !do_bounce) {
7824 do_bounce = ppd->port_error_action &
7825 (1 << (OPA_LDR_FMCONFIG_OFFSET + info));
7826 lcl_reason = info + OPA_LINKDOWN_REASON_BAD_HEAD_DIST;
7827 }
7828
7829 /* just report this */
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08007830 dd_dev_info_ratelimited(dd, "DCC Error: fmconfig error: %s\n",
7831 extra);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007832 reg &= ~DCC_ERR_FLG_FMCONFIG_ERR_SMASK;
7833 }
7834
7835 if (reg & DCC_ERR_FLG_RCVPORT_ERR_SMASK) {
7836 u8 reason_valid = 1;
7837
7838 info = read_csr(dd, DCC_ERR_INFO_PORTRCV);
7839 hdr0 = read_csr(dd, DCC_ERR_INFO_PORTRCV_HDR0);
7840 hdr1 = read_csr(dd, DCC_ERR_INFO_PORTRCV_HDR1);
7841 if (!(dd->err_info_rcvport.status_and_code &
7842 OPA_EI_STATUS_SMASK)) {
7843 dd->err_info_rcvport.status_and_code =
7844 info & OPA_EI_CODE_SMASK;
7845 /* set status bit */
7846 dd->err_info_rcvport.status_and_code |=
7847 OPA_EI_STATUS_SMASK;
Jubin John4d114fd2016-02-14 20:21:43 -08007848 /*
7849 * save first 2 flits in the packet that caused
7850 * the error
7851 */
Bart Van Assche48a0cc132016-06-03 12:09:56 -07007852 dd->err_info_rcvport.packet_flit1 = hdr0;
7853 dd->err_info_rcvport.packet_flit2 = hdr1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007854 }
7855 switch (info) {
7856 case 1:
7857 case 2:
7858 case 3:
7859 case 4:
7860 case 5:
7861 case 6:
7862 case 7:
7863 case 9:
7864 case 11:
7865 case 12:
7866 extra = port_rcv_txt[info];
7867 break;
7868 default:
7869 reason_valid = 0;
7870 snprintf(buf, sizeof(buf), "reserved%lld", info);
7871 extra = buf;
7872 break;
7873 }
7874
7875 if (reason_valid && !do_bounce) {
7876 do_bounce = ppd->port_error_action &
7877 (1 << (OPA_LDR_PORTRCV_OFFSET + info));
7878 lcl_reason = info + OPA_LINKDOWN_REASON_RCV_ERROR_0;
7879 }
7880
7881 /* just report this */
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08007882 dd_dev_info_ratelimited(dd, "DCC Error: PortRcv error: %s\n"
7883 " hdr0 0x%llx, hdr1 0x%llx\n",
7884 extra, hdr0, hdr1);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007885
7886 reg &= ~DCC_ERR_FLG_RCVPORT_ERR_SMASK;
7887 }
7888
7889 if (reg & DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_UC_SMASK) {
7890 /* informative only */
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08007891 dd_dev_info_ratelimited(dd, "8051 access to LCB blocked\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04007892 reg &= ~DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_UC_SMASK;
7893 }
7894 if (reg & DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_HOST_SMASK) {
7895 /* informative only */
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08007896 dd_dev_info_ratelimited(dd, "host access to LCB blocked\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04007897 reg &= ~DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_HOST_SMASK;
7898 }
7899
7900 /* report any remaining errors */
7901 if (reg)
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08007902 dd_dev_info_ratelimited(dd, "DCC Error: %s\n",
7903 dcc_err_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007904
7905 if (lcl_reason == 0)
7906 lcl_reason = OPA_LINKDOWN_REASON_UNKNOWN;
7907
7908 if (do_bounce) {
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08007909 dd_dev_info_ratelimited(dd, "%s: PortErrorAction bounce\n",
7910 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007911 set_link_down_reason(ppd, lcl_reason, 0, lcl_reason);
7912 queue_work(ppd->hfi1_wq, &ppd->link_bounce_work);
7913 }
7914}
7915
7916static void handle_lcb_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
7917{
7918 char buf[96];
7919
7920 dd_dev_info(dd, "LCB Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007921 lcb_err_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007922}
7923
7924/*
7925 * CCE block DC interrupt. Source is < 8.
7926 */
7927static void is_dc_int(struct hfi1_devdata *dd, unsigned int source)
7928{
7929 const struct err_reg_info *eri = &dc_errs[source];
7930
7931 if (eri->handler) {
7932 interrupt_clear_down(dd, 0, eri);
7933 } else if (source == 3 /* dc_lbm_int */) {
7934 /*
7935 * This indicates that a parity error has occurred on the
7936 * address/control lines presented to the LBM. The error
7937 * is a single pulse, there is no associated error flag,
7938 * and it is non-maskable. This is because if a parity
7939 * error occurs on the request the request is dropped.
7940 * This should never occur, but it is nice to know if it
7941 * ever does.
7942 */
7943 dd_dev_err(dd, "Parity error in DC LBM block\n");
7944 } else {
7945 dd_dev_err(dd, "Invalid DC interrupt %u\n", source);
7946 }
7947}
7948
7949/*
7950 * TX block send credit interrupt. Source is < 160.
7951 */
7952static void is_send_credit_int(struct hfi1_devdata *dd, unsigned int source)
7953{
7954 sc_group_release_update(dd, source);
7955}
7956
7957/*
7958 * TX block SDMA interrupt. Source is < 48.
7959 *
7960 * SDMA interrupts are grouped by type:
7961 *
7962 * 0 - N-1 = SDma
7963 * N - 2N-1 = SDmaProgress
7964 * 2N - 3N-1 = SDmaIdle
7965 */
7966static void is_sdma_eng_int(struct hfi1_devdata *dd, unsigned int source)
7967{
7968 /* what interrupt */
7969 unsigned int what = source / TXE_NUM_SDMA_ENGINES;
7970 /* which engine */
7971 unsigned int which = source % TXE_NUM_SDMA_ENGINES;
7972
7973#ifdef CONFIG_SDMA_VERBOSITY
7974 dd_dev_err(dd, "CONFIG SDMA(%u) %s:%d %s()\n", which,
7975 slashstrip(__FILE__), __LINE__, __func__);
7976 sdma_dumpstate(&dd->per_sdma[which]);
7977#endif
7978
7979 if (likely(what < 3 && which < dd->num_sdma)) {
7980 sdma_engine_interrupt(&dd->per_sdma[which], 1ull << source);
7981 } else {
7982 /* should not happen */
7983 dd_dev_err(dd, "Invalid SDMA interrupt 0x%x\n", source);
7984 }
7985}
7986
7987/*
7988 * RX block receive available interrupt. Source is < 160.
7989 */
7990static void is_rcv_avail_int(struct hfi1_devdata *dd, unsigned int source)
7991{
7992 struct hfi1_ctxtdata *rcd;
7993 char *err_detail;
7994
7995 if (likely(source < dd->num_rcv_contexts)) {
7996 rcd = dd->rcd[source];
7997 if (rcd) {
7998 if (source < dd->first_user_ctxt)
Dean Luickf4f30031c2015-10-26 10:28:44 -04007999 rcd->do_interrupt(rcd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008000 else
8001 handle_user_interrupt(rcd);
8002 return; /* OK */
8003 }
8004 /* received an interrupt, but no rcd */
8005 err_detail = "dataless";
8006 } else {
8007 /* received an interrupt, but are not using that context */
8008 err_detail = "out of range";
8009 }
8010 dd_dev_err(dd, "unexpected %s receive available context interrupt %u\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008011 err_detail, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008012}
8013
8014/*
8015 * RX block receive urgent interrupt. Source is < 160.
8016 */
8017static void is_rcv_urgent_int(struct hfi1_devdata *dd, unsigned int source)
8018{
8019 struct hfi1_ctxtdata *rcd;
8020 char *err_detail;
8021
8022 if (likely(source < dd->num_rcv_contexts)) {
8023 rcd = dd->rcd[source];
8024 if (rcd) {
8025 /* only pay attention to user urgent interrupts */
8026 if (source >= dd->first_user_ctxt)
8027 handle_user_interrupt(rcd);
8028 return; /* OK */
8029 }
8030 /* received an interrupt, but no rcd */
8031 err_detail = "dataless";
8032 } else {
8033 /* received an interrupt, but are not using that context */
8034 err_detail = "out of range";
8035 }
8036 dd_dev_err(dd, "unexpected %s receive urgent context interrupt %u\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008037 err_detail, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008038}
8039
8040/*
8041 * Reserved range interrupt. Should not be called in normal operation.
8042 */
8043static void is_reserved_int(struct hfi1_devdata *dd, unsigned int source)
8044{
8045 char name[64];
8046
8047 dd_dev_err(dd, "unexpected %s interrupt\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008048 is_reserved_name(name, sizeof(name), source));
Mike Marciniszyn77241052015-07-30 15:17:43 -04008049}
8050
8051static const struct is_table is_table[] = {
Jubin John4d114fd2016-02-14 20:21:43 -08008052/*
8053 * start end
8054 * name func interrupt func
8055 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04008056{ IS_GENERAL_ERR_START, IS_GENERAL_ERR_END,
8057 is_misc_err_name, is_misc_err_int },
8058{ IS_SDMAENG_ERR_START, IS_SDMAENG_ERR_END,
8059 is_sdma_eng_err_name, is_sdma_eng_err_int },
8060{ IS_SENDCTXT_ERR_START, IS_SENDCTXT_ERR_END,
8061 is_sendctxt_err_name, is_sendctxt_err_int },
8062{ IS_SDMA_START, IS_SDMA_END,
8063 is_sdma_eng_name, is_sdma_eng_int },
8064{ IS_VARIOUS_START, IS_VARIOUS_END,
8065 is_various_name, is_various_int },
8066{ IS_DC_START, IS_DC_END,
8067 is_dc_name, is_dc_int },
8068{ IS_RCVAVAIL_START, IS_RCVAVAIL_END,
8069 is_rcv_avail_name, is_rcv_avail_int },
8070{ IS_RCVURGENT_START, IS_RCVURGENT_END,
8071 is_rcv_urgent_name, is_rcv_urgent_int },
8072{ IS_SENDCREDIT_START, IS_SENDCREDIT_END,
8073 is_send_credit_name, is_send_credit_int},
8074{ IS_RESERVED_START, IS_RESERVED_END,
8075 is_reserved_name, is_reserved_int},
8076};
8077
8078/*
8079 * Interrupt source interrupt - called when the given source has an interrupt.
8080 * Source is a bit index into an array of 64-bit integers.
8081 */
8082static void is_interrupt(struct hfi1_devdata *dd, unsigned int source)
8083{
8084 const struct is_table *entry;
8085
8086 /* avoids a double compare by walking the table in-order */
8087 for (entry = &is_table[0]; entry->is_name; entry++) {
8088 if (source < entry->end) {
8089 trace_hfi1_interrupt(dd, entry, source);
8090 entry->is_int(dd, source - entry->start);
8091 return;
8092 }
8093 }
8094 /* fell off the end */
8095 dd_dev_err(dd, "invalid interrupt source %u\n", source);
8096}
8097
8098/*
8099 * General interrupt handler. This is able to correctly handle
8100 * all interrupts in case INTx is used.
8101 */
8102static irqreturn_t general_interrupt(int irq, void *data)
8103{
8104 struct hfi1_devdata *dd = data;
8105 u64 regs[CCE_NUM_INT_CSRS];
8106 u32 bit;
8107 int i;
8108
8109 this_cpu_inc(*dd->int_counter);
8110
8111 /* phase 1: scan and clear all handled interrupts */
8112 for (i = 0; i < CCE_NUM_INT_CSRS; i++) {
8113 if (dd->gi_mask[i] == 0) {
8114 regs[i] = 0; /* used later */
8115 continue;
8116 }
8117 regs[i] = read_csr(dd, CCE_INT_STATUS + (8 * i)) &
8118 dd->gi_mask[i];
8119 /* only clear if anything is set */
8120 if (regs[i])
8121 write_csr(dd, CCE_INT_CLEAR + (8 * i), regs[i]);
8122 }
8123
8124 /* phase 2: call the appropriate handler */
8125 for_each_set_bit(bit, (unsigned long *)&regs[0],
Jubin John17fb4f22016-02-14 20:21:52 -08008126 CCE_NUM_INT_CSRS * 64) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04008127 is_interrupt(dd, bit);
8128 }
8129
8130 return IRQ_HANDLED;
8131}
8132
8133static irqreturn_t sdma_interrupt(int irq, void *data)
8134{
8135 struct sdma_engine *sde = data;
8136 struct hfi1_devdata *dd = sde->dd;
8137 u64 status;
8138
8139#ifdef CONFIG_SDMA_VERBOSITY
8140 dd_dev_err(dd, "CONFIG SDMA(%u) %s:%d %s()\n", sde->this_idx,
8141 slashstrip(__FILE__), __LINE__, __func__);
8142 sdma_dumpstate(sde);
8143#endif
8144
8145 this_cpu_inc(*dd->int_counter);
8146
8147 /* This read_csr is really bad in the hot path */
8148 status = read_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008149 CCE_INT_STATUS + (8 * (IS_SDMA_START / 64)))
8150 & sde->imask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008151 if (likely(status)) {
8152 /* clear the interrupt(s) */
8153 write_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008154 CCE_INT_CLEAR + (8 * (IS_SDMA_START / 64)),
8155 status);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008156
8157 /* handle the interrupt(s) */
8158 sdma_engine_interrupt(sde, status);
8159 } else
8160 dd_dev_err(dd, "SDMA engine %u interrupt, but no status bits set\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008161 sde->this_idx);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008162
8163 return IRQ_HANDLED;
8164}
8165
8166/*
Dean Luickecd42f82016-02-03 14:35:14 -08008167 * Clear the receive interrupt. Use a read of the interrupt clear CSR
8168 * to insure that the write completed. This does NOT guarantee that
8169 * queued DMA writes to memory from the chip are pushed.
Dean Luickf4f30031c2015-10-26 10:28:44 -04008170 */
8171static inline void clear_recv_intr(struct hfi1_ctxtdata *rcd)
8172{
8173 struct hfi1_devdata *dd = rcd->dd;
8174 u32 addr = CCE_INT_CLEAR + (8 * rcd->ireg);
8175
8176 mmiowb(); /* make sure everything before is written */
8177 write_csr(dd, addr, rcd->imask);
8178 /* force the above write on the chip and get a value back */
8179 (void)read_csr(dd, addr);
8180}
8181
8182/* force the receive interrupt */
Jim Snowfb9036d2016-01-11 18:32:21 -05008183void force_recv_intr(struct hfi1_ctxtdata *rcd)
Dean Luickf4f30031c2015-10-26 10:28:44 -04008184{
8185 write_csr(rcd->dd, CCE_INT_FORCE + (8 * rcd->ireg), rcd->imask);
8186}
8187
Dean Luickecd42f82016-02-03 14:35:14 -08008188/*
8189 * Return non-zero if a packet is present.
8190 *
8191 * This routine is called when rechecking for packets after the RcvAvail
8192 * interrupt has been cleared down. First, do a quick check of memory for
8193 * a packet present. If not found, use an expensive CSR read of the context
8194 * tail to determine the actual tail. The CSR read is necessary because there
8195 * is no method to push pending DMAs to memory other than an interrupt and we
8196 * are trying to determine if we need to force an interrupt.
8197 */
Dean Luickf4f30031c2015-10-26 10:28:44 -04008198static inline int check_packet_present(struct hfi1_ctxtdata *rcd)
8199{
Dean Luickecd42f82016-02-03 14:35:14 -08008200 u32 tail;
8201 int present;
Dean Luickf4f30031c2015-10-26 10:28:44 -04008202
Dean Luickecd42f82016-02-03 14:35:14 -08008203 if (!HFI1_CAP_IS_KSET(DMA_RTAIL))
8204 present = (rcd->seq_cnt ==
8205 rhf_rcv_seq(rhf_to_cpu(get_rhf_addr(rcd))));
8206 else /* is RDMA rtail */
8207 present = (rcd->head != get_rcvhdrtail(rcd));
8208
8209 if (present)
8210 return 1;
8211
8212 /* fall back to a CSR read, correct indpendent of DMA_RTAIL */
8213 tail = (u32)read_uctxt_csr(rcd->dd, rcd->ctxt, RCV_HDR_TAIL);
8214 return rcd->head != tail;
Dean Luickf4f30031c2015-10-26 10:28:44 -04008215}
8216
8217/*
8218 * Receive packet IRQ handler. This routine expects to be on its own IRQ.
8219 * This routine will try to handle packets immediately (latency), but if
8220 * it finds too many, it will invoke the thread handler (bandwitdh). The
Jubin John16733b82016-02-14 20:20:58 -08008221 * chip receive interrupt is *not* cleared down until this or the thread (if
Dean Luickf4f30031c2015-10-26 10:28:44 -04008222 * invoked) is finished. The intent is to avoid extra interrupts while we
8223 * are processing packets anyway.
Mike Marciniszyn77241052015-07-30 15:17:43 -04008224 */
8225static irqreturn_t receive_context_interrupt(int irq, void *data)
8226{
8227 struct hfi1_ctxtdata *rcd = data;
8228 struct hfi1_devdata *dd = rcd->dd;
Dean Luickf4f30031c2015-10-26 10:28:44 -04008229 int disposition;
8230 int present;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008231
8232 trace_hfi1_receive_interrupt(dd, rcd->ctxt);
8233 this_cpu_inc(*dd->int_counter);
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -08008234 aspm_ctx_disable(rcd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008235
Dean Luickf4f30031c2015-10-26 10:28:44 -04008236 /* receive interrupt remains blocked while processing packets */
8237 disposition = rcd->do_interrupt(rcd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008238
Dean Luickf4f30031c2015-10-26 10:28:44 -04008239 /*
8240 * Too many packets were seen while processing packets in this
8241 * IRQ handler. Invoke the handler thread. The receive interrupt
8242 * remains blocked.
8243 */
8244 if (disposition == RCV_PKT_LIMIT)
8245 return IRQ_WAKE_THREAD;
8246
8247 /*
8248 * The packet processor detected no more packets. Clear the receive
8249 * interrupt and recheck for a packet packet that may have arrived
8250 * after the previous check and interrupt clear. If a packet arrived,
8251 * force another interrupt.
8252 */
8253 clear_recv_intr(rcd);
8254 present = check_packet_present(rcd);
8255 if (present)
8256 force_recv_intr(rcd);
8257
8258 return IRQ_HANDLED;
8259}
8260
8261/*
8262 * Receive packet thread handler. This expects to be invoked with the
8263 * receive interrupt still blocked.
8264 */
8265static irqreturn_t receive_context_thread(int irq, void *data)
8266{
8267 struct hfi1_ctxtdata *rcd = data;
8268 int present;
8269
8270 /* receive interrupt is still blocked from the IRQ handler */
8271 (void)rcd->do_interrupt(rcd, 1);
8272
8273 /*
8274 * The packet processor will only return if it detected no more
8275 * packets. Hold IRQs here so we can safely clear the interrupt and
8276 * recheck for a packet that may have arrived after the previous
8277 * check and the interrupt clear. If a packet arrived, force another
8278 * interrupt.
8279 */
8280 local_irq_disable();
8281 clear_recv_intr(rcd);
8282 present = check_packet_present(rcd);
8283 if (present)
8284 force_recv_intr(rcd);
8285 local_irq_enable();
Mike Marciniszyn77241052015-07-30 15:17:43 -04008286
8287 return IRQ_HANDLED;
8288}
8289
8290/* ========================================================================= */
8291
8292u32 read_physical_state(struct hfi1_devdata *dd)
8293{
8294 u64 reg;
8295
8296 reg = read_csr(dd, DC_DC8051_STS_CUR_STATE);
8297 return (reg >> DC_DC8051_STS_CUR_STATE_PORT_SHIFT)
8298 & DC_DC8051_STS_CUR_STATE_PORT_MASK;
8299}
8300
Jim Snowfb9036d2016-01-11 18:32:21 -05008301u32 read_logical_state(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008302{
8303 u64 reg;
8304
8305 reg = read_csr(dd, DCC_CFG_PORT_CONFIG);
8306 return (reg >> DCC_CFG_PORT_CONFIG_LINK_STATE_SHIFT)
8307 & DCC_CFG_PORT_CONFIG_LINK_STATE_MASK;
8308}
8309
8310static void set_logical_state(struct hfi1_devdata *dd, u32 chip_lstate)
8311{
8312 u64 reg;
8313
8314 reg = read_csr(dd, DCC_CFG_PORT_CONFIG);
8315 /* clear current state, set new state */
8316 reg &= ~DCC_CFG_PORT_CONFIG_LINK_STATE_SMASK;
8317 reg |= (u64)chip_lstate << DCC_CFG_PORT_CONFIG_LINK_STATE_SHIFT;
8318 write_csr(dd, DCC_CFG_PORT_CONFIG, reg);
8319}
8320
8321/*
8322 * Use the 8051 to read a LCB CSR.
8323 */
8324static int read_lcb_via_8051(struct hfi1_devdata *dd, u32 addr, u64 *data)
8325{
8326 u32 regno;
8327 int ret;
8328
8329 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR) {
8330 if (acquire_lcb_access(dd, 0) == 0) {
8331 *data = read_csr(dd, addr);
8332 release_lcb_access(dd, 0);
8333 return 0;
8334 }
8335 return -EBUSY;
8336 }
8337
8338 /* register is an index of LCB registers: (offset - base) / 8 */
8339 regno = (addr - DC_LCB_CFG_RUN) >> 3;
8340 ret = do_8051_command(dd, HCMD_READ_LCB_CSR, regno, data);
8341 if (ret != HCMD_SUCCESS)
8342 return -EBUSY;
8343 return 0;
8344}
8345
8346/*
8347 * Read an LCB CSR. Access may not be in host control, so check.
8348 * Return 0 on success, -EBUSY on failure.
8349 */
8350int read_lcb_csr(struct hfi1_devdata *dd, u32 addr, u64 *data)
8351{
8352 struct hfi1_pportdata *ppd = dd->pport;
8353
8354 /* if up, go through the 8051 for the value */
8355 if (ppd->host_link_state & HLS_UP)
8356 return read_lcb_via_8051(dd, addr, data);
8357 /* if going up or down, no access */
8358 if (ppd->host_link_state & (HLS_GOING_UP | HLS_GOING_OFFLINE))
8359 return -EBUSY;
8360 /* otherwise, host has access */
8361 *data = read_csr(dd, addr);
8362 return 0;
8363}
8364
8365/*
8366 * Use the 8051 to write a LCB CSR.
8367 */
8368static int write_lcb_via_8051(struct hfi1_devdata *dd, u32 addr, u64 data)
8369{
Dean Luick3bf40d62015-11-06 20:07:04 -05008370 u32 regno;
8371 int ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008372
Dean Luick3bf40d62015-11-06 20:07:04 -05008373 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR ||
8374 (dd->dc8051_ver < dc8051_ver(0, 20))) {
8375 if (acquire_lcb_access(dd, 0) == 0) {
8376 write_csr(dd, addr, data);
8377 release_lcb_access(dd, 0);
8378 return 0;
8379 }
8380 return -EBUSY;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008381 }
Dean Luick3bf40d62015-11-06 20:07:04 -05008382
8383 /* register is an index of LCB registers: (offset - base) / 8 */
8384 regno = (addr - DC_LCB_CFG_RUN) >> 3;
8385 ret = do_8051_command(dd, HCMD_WRITE_LCB_CSR, regno, &data);
8386 if (ret != HCMD_SUCCESS)
8387 return -EBUSY;
8388 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008389}
8390
8391/*
8392 * Write an LCB CSR. Access may not be in host control, so check.
8393 * Return 0 on success, -EBUSY on failure.
8394 */
8395int write_lcb_csr(struct hfi1_devdata *dd, u32 addr, u64 data)
8396{
8397 struct hfi1_pportdata *ppd = dd->pport;
8398
8399 /* if up, go through the 8051 for the value */
8400 if (ppd->host_link_state & HLS_UP)
8401 return write_lcb_via_8051(dd, addr, data);
8402 /* if going up or down, no access */
8403 if (ppd->host_link_state & (HLS_GOING_UP | HLS_GOING_OFFLINE))
8404 return -EBUSY;
8405 /* otherwise, host has access */
8406 write_csr(dd, addr, data);
8407 return 0;
8408}
8409
8410/*
8411 * Returns:
8412 * < 0 = Linux error, not able to get access
8413 * > 0 = 8051 command RETURN_CODE
8414 */
8415static int do_8051_command(
8416 struct hfi1_devdata *dd,
8417 u32 type,
8418 u64 in_data,
8419 u64 *out_data)
8420{
8421 u64 reg, completed;
8422 int return_code;
8423 unsigned long flags;
8424 unsigned long timeout;
8425
8426 hfi1_cdbg(DC8051, "type %d, data 0x%012llx", type, in_data);
8427
8428 /*
8429 * Alternative to holding the lock for a long time:
8430 * - keep busy wait - have other users bounce off
8431 */
8432 spin_lock_irqsave(&dd->dc8051_lock, flags);
8433
8434 /* We can't send any commands to the 8051 if it's in reset */
8435 if (dd->dc_shutdown) {
8436 return_code = -ENODEV;
8437 goto fail;
8438 }
8439
8440 /*
8441 * If an 8051 host command timed out previously, then the 8051 is
8442 * stuck.
8443 *
8444 * On first timeout, attempt to reset and restart the entire DC
8445 * block (including 8051). (Is this too big of a hammer?)
8446 *
8447 * If the 8051 times out a second time, the reset did not bring it
8448 * back to healthy life. In that case, fail any subsequent commands.
8449 */
8450 if (dd->dc8051_timed_out) {
8451 if (dd->dc8051_timed_out > 1) {
8452 dd_dev_err(dd,
8453 "Previous 8051 host command timed out, skipping command %u\n",
8454 type);
8455 return_code = -ENXIO;
8456 goto fail;
8457 }
8458 spin_unlock_irqrestore(&dd->dc8051_lock, flags);
8459 dc_shutdown(dd);
8460 dc_start(dd);
8461 spin_lock_irqsave(&dd->dc8051_lock, flags);
8462 }
8463
8464 /*
8465 * If there is no timeout, then the 8051 command interface is
8466 * waiting for a command.
8467 */
8468
8469 /*
Dean Luick3bf40d62015-11-06 20:07:04 -05008470 * When writing a LCB CSR, out_data contains the full value to
8471 * to be written, while in_data contains the relative LCB
8472 * address in 7:0. Do the work here, rather than the caller,
8473 * of distrubting the write data to where it needs to go:
8474 *
8475 * Write data
8476 * 39:00 -> in_data[47:8]
8477 * 47:40 -> DC8051_CFG_EXT_DEV_0.RETURN_CODE
8478 * 63:48 -> DC8051_CFG_EXT_DEV_0.RSP_DATA
8479 */
8480 if (type == HCMD_WRITE_LCB_CSR) {
8481 in_data |= ((*out_data) & 0xffffffffffull) << 8;
Dean Luick00801672016-12-07 19:33:40 -08008482 /* must preserve COMPLETED - it is tied to hardware */
8483 reg = read_csr(dd, DC_DC8051_CFG_EXT_DEV_0);
8484 reg &= DC_DC8051_CFG_EXT_DEV_0_COMPLETED_SMASK;
8485 reg |= ((((*out_data) >> 40) & 0xff) <<
Dean Luick3bf40d62015-11-06 20:07:04 -05008486 DC_DC8051_CFG_EXT_DEV_0_RETURN_CODE_SHIFT)
8487 | ((((*out_data) >> 48) & 0xffff) <<
8488 DC_DC8051_CFG_EXT_DEV_0_RSP_DATA_SHIFT);
8489 write_csr(dd, DC_DC8051_CFG_EXT_DEV_0, reg);
8490 }
8491
8492 /*
Mike Marciniszyn77241052015-07-30 15:17:43 -04008493 * Do two writes: the first to stabilize the type and req_data, the
8494 * second to activate.
8495 */
8496 reg = ((u64)type & DC_DC8051_CFG_HOST_CMD_0_REQ_TYPE_MASK)
8497 << DC_DC8051_CFG_HOST_CMD_0_REQ_TYPE_SHIFT
8498 | (in_data & DC_DC8051_CFG_HOST_CMD_0_REQ_DATA_MASK)
8499 << DC_DC8051_CFG_HOST_CMD_0_REQ_DATA_SHIFT;
8500 write_csr(dd, DC_DC8051_CFG_HOST_CMD_0, reg);
8501 reg |= DC_DC8051_CFG_HOST_CMD_0_REQ_NEW_SMASK;
8502 write_csr(dd, DC_DC8051_CFG_HOST_CMD_0, reg);
8503
8504 /* wait for completion, alternate: interrupt */
8505 timeout = jiffies + msecs_to_jiffies(DC8051_COMMAND_TIMEOUT);
8506 while (1) {
8507 reg = read_csr(dd, DC_DC8051_CFG_HOST_CMD_1);
8508 completed = reg & DC_DC8051_CFG_HOST_CMD_1_COMPLETED_SMASK;
8509 if (completed)
8510 break;
8511 if (time_after(jiffies, timeout)) {
8512 dd->dc8051_timed_out++;
8513 dd_dev_err(dd, "8051 host command %u timeout\n", type);
8514 if (out_data)
8515 *out_data = 0;
8516 return_code = -ETIMEDOUT;
8517 goto fail;
8518 }
8519 udelay(2);
8520 }
8521
8522 if (out_data) {
8523 *out_data = (reg >> DC_DC8051_CFG_HOST_CMD_1_RSP_DATA_SHIFT)
8524 & DC_DC8051_CFG_HOST_CMD_1_RSP_DATA_MASK;
8525 if (type == HCMD_READ_LCB_CSR) {
8526 /* top 16 bits are in a different register */
8527 *out_data |= (read_csr(dd, DC_DC8051_CFG_EXT_DEV_1)
8528 & DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_SMASK)
8529 << (48
8530 - DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_SHIFT);
8531 }
8532 }
8533 return_code = (reg >> DC_DC8051_CFG_HOST_CMD_1_RETURN_CODE_SHIFT)
8534 & DC_DC8051_CFG_HOST_CMD_1_RETURN_CODE_MASK;
8535 dd->dc8051_timed_out = 0;
8536 /*
8537 * Clear command for next user.
8538 */
8539 write_csr(dd, DC_DC8051_CFG_HOST_CMD_0, 0);
8540
8541fail:
8542 spin_unlock_irqrestore(&dd->dc8051_lock, flags);
8543
8544 return return_code;
8545}
8546
8547static int set_physical_link_state(struct hfi1_devdata *dd, u64 state)
8548{
8549 return do_8051_command(dd, HCMD_CHANGE_PHY_STATE, state, NULL);
8550}
8551
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08008552int load_8051_config(struct hfi1_devdata *dd, u8 field_id,
8553 u8 lane_id, u32 config_data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008554{
8555 u64 data;
8556 int ret;
8557
8558 data = (u64)field_id << LOAD_DATA_FIELD_ID_SHIFT
8559 | (u64)lane_id << LOAD_DATA_LANE_ID_SHIFT
8560 | (u64)config_data << LOAD_DATA_DATA_SHIFT;
8561 ret = do_8051_command(dd, HCMD_LOAD_CONFIG_DATA, data, NULL);
8562 if (ret != HCMD_SUCCESS) {
8563 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008564 "load 8051 config: field id %d, lane %d, err %d\n",
8565 (int)field_id, (int)lane_id, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008566 }
8567 return ret;
8568}
8569
8570/*
8571 * Read the 8051 firmware "registers". Use the RAM directly. Always
8572 * set the result, even on error.
8573 * Return 0 on success, -errno on failure
8574 */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08008575int read_8051_config(struct hfi1_devdata *dd, u8 field_id, u8 lane_id,
8576 u32 *result)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008577{
8578 u64 big_data;
8579 u32 addr;
8580 int ret;
8581
8582 /* address start depends on the lane_id */
8583 if (lane_id < 4)
8584 addr = (4 * NUM_GENERAL_FIELDS)
8585 + (lane_id * 4 * NUM_LANE_FIELDS);
8586 else
8587 addr = 0;
8588 addr += field_id * 4;
8589
8590 /* read is in 8-byte chunks, hardware will truncate the address down */
8591 ret = read_8051_data(dd, addr, 8, &big_data);
8592
8593 if (ret == 0) {
8594 /* extract the 4 bytes we want */
8595 if (addr & 0x4)
8596 *result = (u32)(big_data >> 32);
8597 else
8598 *result = (u32)big_data;
8599 } else {
8600 *result = 0;
8601 dd_dev_err(dd, "%s: direct read failed, lane %d, field %d!\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008602 __func__, lane_id, field_id);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008603 }
8604
8605 return ret;
8606}
8607
8608static int write_vc_local_phy(struct hfi1_devdata *dd, u8 power_management,
8609 u8 continuous)
8610{
8611 u32 frame;
8612
8613 frame = continuous << CONTINIOUS_REMOTE_UPDATE_SUPPORT_SHIFT
8614 | power_management << POWER_MANAGEMENT_SHIFT;
8615 return load_8051_config(dd, VERIFY_CAP_LOCAL_PHY,
8616 GENERAL_CONFIG, frame);
8617}
8618
8619static int write_vc_local_fabric(struct hfi1_devdata *dd, u8 vau, u8 z, u8 vcu,
8620 u16 vl15buf, u8 crc_sizes)
8621{
8622 u32 frame;
8623
8624 frame = (u32)vau << VAU_SHIFT
8625 | (u32)z << Z_SHIFT
8626 | (u32)vcu << VCU_SHIFT
8627 | (u32)vl15buf << VL15BUF_SHIFT
8628 | (u32)crc_sizes << CRC_SIZES_SHIFT;
8629 return load_8051_config(dd, VERIFY_CAP_LOCAL_FABRIC,
8630 GENERAL_CONFIG, frame);
8631}
8632
8633static void read_vc_local_link_width(struct hfi1_devdata *dd, u8 *misc_bits,
8634 u8 *flag_bits, u16 *link_widths)
8635{
8636 u32 frame;
8637
8638 read_8051_config(dd, VERIFY_CAP_LOCAL_LINK_WIDTH, GENERAL_CONFIG,
Jubin John17fb4f22016-02-14 20:21:52 -08008639 &frame);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008640 *misc_bits = (frame >> MISC_CONFIG_BITS_SHIFT) & MISC_CONFIG_BITS_MASK;
8641 *flag_bits = (frame >> LOCAL_FLAG_BITS_SHIFT) & LOCAL_FLAG_BITS_MASK;
8642 *link_widths = (frame >> LINK_WIDTH_SHIFT) & LINK_WIDTH_MASK;
8643}
8644
8645static int write_vc_local_link_width(struct hfi1_devdata *dd,
8646 u8 misc_bits,
8647 u8 flag_bits,
8648 u16 link_widths)
8649{
8650 u32 frame;
8651
8652 frame = (u32)misc_bits << MISC_CONFIG_BITS_SHIFT
8653 | (u32)flag_bits << LOCAL_FLAG_BITS_SHIFT
8654 | (u32)link_widths << LINK_WIDTH_SHIFT;
8655 return load_8051_config(dd, VERIFY_CAP_LOCAL_LINK_WIDTH, GENERAL_CONFIG,
8656 frame);
8657}
8658
8659static int write_local_device_id(struct hfi1_devdata *dd, u16 device_id,
8660 u8 device_rev)
8661{
8662 u32 frame;
8663
8664 frame = ((u32)device_id << LOCAL_DEVICE_ID_SHIFT)
8665 | ((u32)device_rev << LOCAL_DEVICE_REV_SHIFT);
8666 return load_8051_config(dd, LOCAL_DEVICE_ID, GENERAL_CONFIG, frame);
8667}
8668
8669static void read_remote_device_id(struct hfi1_devdata *dd, u16 *device_id,
8670 u8 *device_rev)
8671{
8672 u32 frame;
8673
8674 read_8051_config(dd, REMOTE_DEVICE_ID, GENERAL_CONFIG, &frame);
8675 *device_id = (frame >> REMOTE_DEVICE_ID_SHIFT) & REMOTE_DEVICE_ID_MASK;
8676 *device_rev = (frame >> REMOTE_DEVICE_REV_SHIFT)
8677 & REMOTE_DEVICE_REV_MASK;
8678}
8679
8680void read_misc_status(struct hfi1_devdata *dd, u8 *ver_a, u8 *ver_b)
8681{
8682 u32 frame;
8683
8684 read_8051_config(dd, MISC_STATUS, GENERAL_CONFIG, &frame);
8685 *ver_a = (frame >> STS_FM_VERSION_A_SHIFT) & STS_FM_VERSION_A_MASK;
8686 *ver_b = (frame >> STS_FM_VERSION_B_SHIFT) & STS_FM_VERSION_B_MASK;
8687}
8688
8689static void read_vc_remote_phy(struct hfi1_devdata *dd, u8 *power_management,
8690 u8 *continuous)
8691{
8692 u32 frame;
8693
8694 read_8051_config(dd, VERIFY_CAP_REMOTE_PHY, GENERAL_CONFIG, &frame);
8695 *power_management = (frame >> POWER_MANAGEMENT_SHIFT)
8696 & POWER_MANAGEMENT_MASK;
8697 *continuous = (frame >> CONTINIOUS_REMOTE_UPDATE_SUPPORT_SHIFT)
8698 & CONTINIOUS_REMOTE_UPDATE_SUPPORT_MASK;
8699}
8700
8701static void read_vc_remote_fabric(struct hfi1_devdata *dd, u8 *vau, u8 *z,
8702 u8 *vcu, u16 *vl15buf, u8 *crc_sizes)
8703{
8704 u32 frame;
8705
8706 read_8051_config(dd, VERIFY_CAP_REMOTE_FABRIC, GENERAL_CONFIG, &frame);
8707 *vau = (frame >> VAU_SHIFT) & VAU_MASK;
8708 *z = (frame >> Z_SHIFT) & Z_MASK;
8709 *vcu = (frame >> VCU_SHIFT) & VCU_MASK;
8710 *vl15buf = (frame >> VL15BUF_SHIFT) & VL15BUF_MASK;
8711 *crc_sizes = (frame >> CRC_SIZES_SHIFT) & CRC_SIZES_MASK;
8712}
8713
8714static void read_vc_remote_link_width(struct hfi1_devdata *dd,
8715 u8 *remote_tx_rate,
8716 u16 *link_widths)
8717{
8718 u32 frame;
8719
8720 read_8051_config(dd, VERIFY_CAP_REMOTE_LINK_WIDTH, GENERAL_CONFIG,
Jubin John17fb4f22016-02-14 20:21:52 -08008721 &frame);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008722 *remote_tx_rate = (frame >> REMOTE_TX_RATE_SHIFT)
8723 & REMOTE_TX_RATE_MASK;
8724 *link_widths = (frame >> LINK_WIDTH_SHIFT) & LINK_WIDTH_MASK;
8725}
8726
8727static void read_local_lni(struct hfi1_devdata *dd, u8 *enable_lane_rx)
8728{
8729 u32 frame;
8730
8731 read_8051_config(dd, LOCAL_LNI_INFO, GENERAL_CONFIG, &frame);
8732 *enable_lane_rx = (frame >> ENABLE_LANE_RX_SHIFT) & ENABLE_LANE_RX_MASK;
8733}
8734
8735static void read_mgmt_allowed(struct hfi1_devdata *dd, u8 *mgmt_allowed)
8736{
8737 u32 frame;
8738
8739 read_8051_config(dd, REMOTE_LNI_INFO, GENERAL_CONFIG, &frame);
8740 *mgmt_allowed = (frame >> MGMT_ALLOWED_SHIFT) & MGMT_ALLOWED_MASK;
8741}
8742
8743static void read_last_local_state(struct hfi1_devdata *dd, u32 *lls)
8744{
8745 read_8051_config(dd, LAST_LOCAL_STATE_COMPLETE, GENERAL_CONFIG, lls);
8746}
8747
8748static void read_last_remote_state(struct hfi1_devdata *dd, u32 *lrs)
8749{
8750 read_8051_config(dd, LAST_REMOTE_STATE_COMPLETE, GENERAL_CONFIG, lrs);
8751}
8752
8753void hfi1_read_link_quality(struct hfi1_devdata *dd, u8 *link_quality)
8754{
8755 u32 frame;
8756 int ret;
8757
8758 *link_quality = 0;
8759 if (dd->pport->host_link_state & HLS_UP) {
8760 ret = read_8051_config(dd, LINK_QUALITY_INFO, GENERAL_CONFIG,
Jubin John17fb4f22016-02-14 20:21:52 -08008761 &frame);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008762 if (ret == 0)
8763 *link_quality = (frame >> LINK_QUALITY_SHIFT)
8764 & LINK_QUALITY_MASK;
8765 }
8766}
8767
8768static void read_planned_down_reason_code(struct hfi1_devdata *dd, u8 *pdrrc)
8769{
8770 u32 frame;
8771
8772 read_8051_config(dd, LINK_QUALITY_INFO, GENERAL_CONFIG, &frame);
8773 *pdrrc = (frame >> DOWN_REMOTE_REASON_SHIFT) & DOWN_REMOTE_REASON_MASK;
8774}
8775
Dean Luickfeb831d2016-04-14 08:31:36 -07008776static void read_link_down_reason(struct hfi1_devdata *dd, u8 *ldr)
8777{
8778 u32 frame;
8779
8780 read_8051_config(dd, LINK_DOWN_REASON, GENERAL_CONFIG, &frame);
8781 *ldr = (frame & 0xff);
8782}
8783
Mike Marciniszyn77241052015-07-30 15:17:43 -04008784static int read_tx_settings(struct hfi1_devdata *dd,
8785 u8 *enable_lane_tx,
8786 u8 *tx_polarity_inversion,
8787 u8 *rx_polarity_inversion,
8788 u8 *max_rate)
8789{
8790 u32 frame;
8791 int ret;
8792
8793 ret = read_8051_config(dd, TX_SETTINGS, GENERAL_CONFIG, &frame);
8794 *enable_lane_tx = (frame >> ENABLE_LANE_TX_SHIFT)
8795 & ENABLE_LANE_TX_MASK;
8796 *tx_polarity_inversion = (frame >> TX_POLARITY_INVERSION_SHIFT)
8797 & TX_POLARITY_INVERSION_MASK;
8798 *rx_polarity_inversion = (frame >> RX_POLARITY_INVERSION_SHIFT)
8799 & RX_POLARITY_INVERSION_MASK;
8800 *max_rate = (frame >> MAX_RATE_SHIFT) & MAX_RATE_MASK;
8801 return ret;
8802}
8803
8804static int write_tx_settings(struct hfi1_devdata *dd,
8805 u8 enable_lane_tx,
8806 u8 tx_polarity_inversion,
8807 u8 rx_polarity_inversion,
8808 u8 max_rate)
8809{
8810 u32 frame;
8811
8812 /* no need to mask, all variable sizes match field widths */
8813 frame = enable_lane_tx << ENABLE_LANE_TX_SHIFT
8814 | tx_polarity_inversion << TX_POLARITY_INVERSION_SHIFT
8815 | rx_polarity_inversion << RX_POLARITY_INVERSION_SHIFT
8816 | max_rate << MAX_RATE_SHIFT;
8817 return load_8051_config(dd, TX_SETTINGS, GENERAL_CONFIG, frame);
8818}
8819
Mike Marciniszyn77241052015-07-30 15:17:43 -04008820/*
8821 * Read an idle LCB message.
8822 *
8823 * Returns 0 on success, -EINVAL on error
8824 */
8825static int read_idle_message(struct hfi1_devdata *dd, u64 type, u64 *data_out)
8826{
8827 int ret;
8828
Jubin John17fb4f22016-02-14 20:21:52 -08008829 ret = do_8051_command(dd, HCMD_READ_LCB_IDLE_MSG, type, data_out);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008830 if (ret != HCMD_SUCCESS) {
8831 dd_dev_err(dd, "read idle message: type %d, err %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008832 (u32)type, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008833 return -EINVAL;
8834 }
8835 dd_dev_info(dd, "%s: read idle message 0x%llx\n", __func__, *data_out);
8836 /* return only the payload as we already know the type */
8837 *data_out >>= IDLE_PAYLOAD_SHIFT;
8838 return 0;
8839}
8840
8841/*
8842 * Read an idle SMA message. To be done in response to a notification from
8843 * the 8051.
8844 *
8845 * Returns 0 on success, -EINVAL on error
8846 */
8847static int read_idle_sma(struct hfi1_devdata *dd, u64 *data)
8848{
Jubin John17fb4f22016-02-14 20:21:52 -08008849 return read_idle_message(dd, (u64)IDLE_SMA << IDLE_MSG_TYPE_SHIFT,
8850 data);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008851}
8852
8853/*
8854 * Send an idle LCB message.
8855 *
8856 * Returns 0 on success, -EINVAL on error
8857 */
8858static int send_idle_message(struct hfi1_devdata *dd, u64 data)
8859{
8860 int ret;
8861
8862 dd_dev_info(dd, "%s: sending idle message 0x%llx\n", __func__, data);
8863 ret = do_8051_command(dd, HCMD_SEND_LCB_IDLE_MSG, data, NULL);
8864 if (ret != HCMD_SUCCESS) {
8865 dd_dev_err(dd, "send idle message: data 0x%llx, err %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008866 data, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008867 return -EINVAL;
8868 }
8869 return 0;
8870}
8871
8872/*
8873 * Send an idle SMA message.
8874 *
8875 * Returns 0 on success, -EINVAL on error
8876 */
8877int send_idle_sma(struct hfi1_devdata *dd, u64 message)
8878{
8879 u64 data;
8880
Jubin John17fb4f22016-02-14 20:21:52 -08008881 data = ((message & IDLE_PAYLOAD_MASK) << IDLE_PAYLOAD_SHIFT) |
8882 ((u64)IDLE_SMA << IDLE_MSG_TYPE_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008883 return send_idle_message(dd, data);
8884}
8885
8886/*
8887 * Initialize the LCB then do a quick link up. This may or may not be
8888 * in loopback.
8889 *
8890 * return 0 on success, -errno on error
8891 */
8892static int do_quick_linkup(struct hfi1_devdata *dd)
8893{
8894 u64 reg;
8895 unsigned long timeout;
8896 int ret;
8897
8898 lcb_shutdown(dd, 0);
8899
8900 if (loopback) {
8901 /* LCB_CFG_LOOPBACK.VAL = 2 */
8902 /* LCB_CFG_LANE_WIDTH.VAL = 0 */
8903 write_csr(dd, DC_LCB_CFG_LOOPBACK,
Jubin John17fb4f22016-02-14 20:21:52 -08008904 IB_PACKET_TYPE << DC_LCB_CFG_LOOPBACK_VAL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008905 write_csr(dd, DC_LCB_CFG_LANE_WIDTH, 0);
8906 }
8907
8908 /* start the LCBs */
8909 /* LCB_CFG_TX_FIFOS_RESET.VAL = 0 */
8910 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0);
8911
8912 /* simulator only loopback steps */
8913 if (loopback && dd->icode == ICODE_FUNCTIONAL_SIMULATOR) {
8914 /* LCB_CFG_RUN.EN = 1 */
8915 write_csr(dd, DC_LCB_CFG_RUN,
Jubin John17fb4f22016-02-14 20:21:52 -08008916 1ull << DC_LCB_CFG_RUN_EN_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008917
8918 /* watch LCB_STS_LINK_TRANSFER_ACTIVE */
8919 timeout = jiffies + msecs_to_jiffies(10);
8920 while (1) {
Jubin John17fb4f22016-02-14 20:21:52 -08008921 reg = read_csr(dd, DC_LCB_STS_LINK_TRANSFER_ACTIVE);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008922 if (reg)
8923 break;
8924 if (time_after(jiffies, timeout)) {
8925 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008926 "timeout waiting for LINK_TRANSFER_ACTIVE\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04008927 return -ETIMEDOUT;
8928 }
8929 udelay(2);
8930 }
8931
8932 write_csr(dd, DC_LCB_CFG_ALLOW_LINK_UP,
Jubin John17fb4f22016-02-14 20:21:52 -08008933 1ull << DC_LCB_CFG_ALLOW_LINK_UP_VAL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008934 }
8935
8936 if (!loopback) {
8937 /*
8938 * When doing quick linkup and not in loopback, both
8939 * sides must be done with LCB set-up before either
8940 * starts the quick linkup. Put a delay here so that
8941 * both sides can be started and have a chance to be
8942 * done with LCB set up before resuming.
8943 */
8944 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008945 "Pausing for peer to be finished with LCB set up\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04008946 msleep(5000);
Jubin John17fb4f22016-02-14 20:21:52 -08008947 dd_dev_err(dd, "Continuing with quick linkup\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04008948 }
8949
8950 write_csr(dd, DC_LCB_ERR_EN, 0); /* mask LCB errors */
8951 set_8051_lcb_access(dd);
8952
8953 /*
8954 * State "quick" LinkUp request sets the physical link state to
8955 * LinkUp without a verify capability sequence.
8956 * This state is in simulator v37 and later.
8957 */
8958 ret = set_physical_link_state(dd, PLS_QUICK_LINKUP);
8959 if (ret != HCMD_SUCCESS) {
8960 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008961 "%s: set physical link state to quick LinkUp failed with return %d\n",
8962 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008963
8964 set_host_lcb_access(dd);
8965 write_csr(dd, DC_LCB_ERR_EN, ~0ull); /* watch LCB errors */
8966
8967 if (ret >= 0)
8968 ret = -EINVAL;
8969 return ret;
8970 }
8971
8972 return 0; /* success */
8973}
8974
8975/*
8976 * Set the SerDes to internal loopback mode.
8977 * Returns 0 on success, -errno on error.
8978 */
8979static int set_serdes_loopback_mode(struct hfi1_devdata *dd)
8980{
8981 int ret;
8982
8983 ret = set_physical_link_state(dd, PLS_INTERNAL_SERDES_LOOPBACK);
8984 if (ret == HCMD_SUCCESS)
8985 return 0;
8986 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008987 "Set physical link state to SerDes Loopback failed with return %d\n",
8988 ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008989 if (ret >= 0)
8990 ret = -EINVAL;
8991 return ret;
8992}
8993
8994/*
8995 * Do all special steps to set up loopback.
8996 */
8997static int init_loopback(struct hfi1_devdata *dd)
8998{
8999 dd_dev_info(dd, "Entering loopback mode\n");
9000
9001 /* all loopbacks should disable self GUID check */
9002 write_csr(dd, DC_DC8051_CFG_MODE,
Jubin John17fb4f22016-02-14 20:21:52 -08009003 (read_csr(dd, DC_DC8051_CFG_MODE) | DISABLE_SELF_GUID_CHECK));
Mike Marciniszyn77241052015-07-30 15:17:43 -04009004
9005 /*
9006 * The simulator has only one loopback option - LCB. Switch
9007 * to that option, which includes quick link up.
9008 *
9009 * Accept all valid loopback values.
9010 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08009011 if ((dd->icode == ICODE_FUNCTIONAL_SIMULATOR) &&
9012 (loopback == LOOPBACK_SERDES || loopback == LOOPBACK_LCB ||
9013 loopback == LOOPBACK_CABLE)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04009014 loopback = LOOPBACK_LCB;
9015 quick_linkup = 1;
9016 return 0;
9017 }
9018
9019 /* handle serdes loopback */
9020 if (loopback == LOOPBACK_SERDES) {
9021 /* internal serdes loopack needs quick linkup on RTL */
9022 if (dd->icode == ICODE_RTL_SILICON)
9023 quick_linkup = 1;
9024 return set_serdes_loopback_mode(dd);
9025 }
9026
9027 /* LCB loopback - handled at poll time */
9028 if (loopback == LOOPBACK_LCB) {
9029 quick_linkup = 1; /* LCB is always quick linkup */
9030
9031 /* not supported in emulation due to emulation RTL changes */
9032 if (dd->icode == ICODE_FPGA_EMULATION) {
9033 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009034 "LCB loopback not supported in emulation\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04009035 return -EINVAL;
9036 }
9037 return 0;
9038 }
9039
9040 /* external cable loopback requires no extra steps */
9041 if (loopback == LOOPBACK_CABLE)
9042 return 0;
9043
9044 dd_dev_err(dd, "Invalid loopback mode %d\n", loopback);
9045 return -EINVAL;
9046}
9047
9048/*
9049 * Translate from the OPA_LINK_WIDTH handed to us by the FM to bits
9050 * used in the Verify Capability link width attribute.
9051 */
9052static u16 opa_to_vc_link_widths(u16 opa_widths)
9053{
9054 int i;
9055 u16 result = 0;
9056
9057 static const struct link_bits {
9058 u16 from;
9059 u16 to;
9060 } opa_link_xlate[] = {
Jubin John8638b772016-02-14 20:19:24 -08009061 { OPA_LINK_WIDTH_1X, 1 << (1 - 1) },
9062 { OPA_LINK_WIDTH_2X, 1 << (2 - 1) },
9063 { OPA_LINK_WIDTH_3X, 1 << (3 - 1) },
9064 { OPA_LINK_WIDTH_4X, 1 << (4 - 1) },
Mike Marciniszyn77241052015-07-30 15:17:43 -04009065 };
9066
9067 for (i = 0; i < ARRAY_SIZE(opa_link_xlate); i++) {
9068 if (opa_widths & opa_link_xlate[i].from)
9069 result |= opa_link_xlate[i].to;
9070 }
9071 return result;
9072}
9073
9074/*
9075 * Set link attributes before moving to polling.
9076 */
9077static int set_local_link_attributes(struct hfi1_pportdata *ppd)
9078{
9079 struct hfi1_devdata *dd = ppd->dd;
9080 u8 enable_lane_tx;
9081 u8 tx_polarity_inversion;
9082 u8 rx_polarity_inversion;
9083 int ret;
9084
9085 /* reset our fabric serdes to clear any lingering problems */
9086 fabric_serdes_reset(dd);
9087
9088 /* set the local tx rate - need to read-modify-write */
9089 ret = read_tx_settings(dd, &enable_lane_tx, &tx_polarity_inversion,
Jubin John17fb4f22016-02-14 20:21:52 -08009090 &rx_polarity_inversion, &ppd->local_tx_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009091 if (ret)
9092 goto set_local_link_attributes_fail;
9093
9094 if (dd->dc8051_ver < dc8051_ver(0, 20)) {
9095 /* set the tx rate to the fastest enabled */
9096 if (ppd->link_speed_enabled & OPA_LINK_SPEED_25G)
9097 ppd->local_tx_rate = 1;
9098 else
9099 ppd->local_tx_rate = 0;
9100 } else {
9101 /* set the tx rate to all enabled */
9102 ppd->local_tx_rate = 0;
9103 if (ppd->link_speed_enabled & OPA_LINK_SPEED_25G)
9104 ppd->local_tx_rate |= 2;
9105 if (ppd->link_speed_enabled & OPA_LINK_SPEED_12_5G)
9106 ppd->local_tx_rate |= 1;
9107 }
Easwar Hariharanfebffe22015-10-26 10:28:36 -04009108
9109 enable_lane_tx = 0xF; /* enable all four lanes */
Mike Marciniszyn77241052015-07-30 15:17:43 -04009110 ret = write_tx_settings(dd, enable_lane_tx, tx_polarity_inversion,
Jubin John17fb4f22016-02-14 20:21:52 -08009111 rx_polarity_inversion, ppd->local_tx_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009112 if (ret != HCMD_SUCCESS)
9113 goto set_local_link_attributes_fail;
9114
9115 /*
9116 * DC supports continuous updates.
9117 */
Jubin John17fb4f22016-02-14 20:21:52 -08009118 ret = write_vc_local_phy(dd,
9119 0 /* no power management */,
9120 1 /* continuous updates */);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009121 if (ret != HCMD_SUCCESS)
9122 goto set_local_link_attributes_fail;
9123
9124 /* z=1 in the next call: AU of 0 is not supported by the hardware */
9125 ret = write_vc_local_fabric(dd, dd->vau, 1, dd->vcu, dd->vl15_init,
9126 ppd->port_crc_mode_enabled);
9127 if (ret != HCMD_SUCCESS)
9128 goto set_local_link_attributes_fail;
9129
9130 ret = write_vc_local_link_width(dd, 0, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08009131 opa_to_vc_link_widths(
9132 ppd->link_width_enabled));
Mike Marciniszyn77241052015-07-30 15:17:43 -04009133 if (ret != HCMD_SUCCESS)
9134 goto set_local_link_attributes_fail;
9135
9136 /* let peer know who we are */
9137 ret = write_local_device_id(dd, dd->pcidev->device, dd->minrev);
9138 if (ret == HCMD_SUCCESS)
9139 return 0;
9140
9141set_local_link_attributes_fail:
9142 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009143 "Failed to set local link attributes, return 0x%x\n",
9144 ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009145 return ret;
9146}
9147
9148/*
Easwar Hariharan623bba22016-04-12 11:25:57 -07009149 * Call this to start the link.
9150 * Do not do anything if the link is disabled.
9151 * Returns 0 if link is disabled, moved to polling, or the driver is not ready.
Mike Marciniszyn77241052015-07-30 15:17:43 -04009152 */
9153int start_link(struct hfi1_pportdata *ppd)
9154{
Dean Luick0db9dec2016-09-06 04:35:20 -07009155 /*
9156 * Tune the SerDes to a ballpark setting for optimal signal and bit
9157 * error rate. Needs to be done before starting the link.
9158 */
9159 tune_serdes(ppd);
9160
Mike Marciniszyn77241052015-07-30 15:17:43 -04009161 if (!ppd->link_enabled) {
9162 dd_dev_info(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009163 "%s: stopping link start because link is disabled\n",
9164 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009165 return 0;
9166 }
9167 if (!ppd->driver_link_ready) {
9168 dd_dev_info(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009169 "%s: stopping link start because driver is not ready\n",
9170 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009171 return 0;
9172 }
9173
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07009174 /*
9175 * FULL_MGMT_P_KEY is cleared from the pkey table, so that the
9176 * pkey table can be configured properly if the HFI unit is connected
9177 * to switch port with MgmtAllowed=NO
9178 */
9179 clear_full_mgmt_pkey(ppd);
9180
Easwar Hariharan623bba22016-04-12 11:25:57 -07009181 return set_link_state(ppd, HLS_DN_POLL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009182}
9183
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009184static void wait_for_qsfp_init(struct hfi1_pportdata *ppd)
9185{
9186 struct hfi1_devdata *dd = ppd->dd;
9187 u64 mask;
9188 unsigned long timeout;
9189
9190 /*
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009191 * Some QSFP cables have a quirk that asserts the IntN line as a side
9192 * effect of power up on plug-in. We ignore this false positive
9193 * interrupt until the module has finished powering up by waiting for
9194 * a minimum timeout of the module inrush initialization time of
9195 * 500 ms (SFF 8679 Table 5-6) to ensure the voltage rails in the
9196 * module have stabilized.
9197 */
9198 msleep(500);
9199
9200 /*
9201 * Check for QSFP interrupt for t_init (SFF 8679 Table 8-1)
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009202 */
9203 timeout = jiffies + msecs_to_jiffies(2000);
9204 while (1) {
9205 mask = read_csr(dd, dd->hfi1_id ?
9206 ASIC_QSFP2_IN : ASIC_QSFP1_IN);
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009207 if (!(mask & QSFP_HFI0_INT_N))
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009208 break;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009209 if (time_after(jiffies, timeout)) {
9210 dd_dev_info(dd, "%s: No IntN detected, reset complete\n",
9211 __func__);
9212 break;
9213 }
9214 udelay(2);
9215 }
9216}
9217
9218static void set_qsfp_int_n(struct hfi1_pportdata *ppd, u8 enable)
9219{
9220 struct hfi1_devdata *dd = ppd->dd;
9221 u64 mask;
9222
9223 mask = read_csr(dd, dd->hfi1_id ? ASIC_QSFP2_MASK : ASIC_QSFP1_MASK);
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009224 if (enable) {
9225 /*
9226 * Clear the status register to avoid an immediate interrupt
9227 * when we re-enable the IntN pin
9228 */
9229 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_CLEAR : ASIC_QSFP1_CLEAR,
9230 QSFP_HFI0_INT_N);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009231 mask |= (u64)QSFP_HFI0_INT_N;
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009232 } else {
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009233 mask &= ~(u64)QSFP_HFI0_INT_N;
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009234 }
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009235 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_MASK : ASIC_QSFP1_MASK, mask);
9236}
9237
9238void reset_qsfp(struct hfi1_pportdata *ppd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009239{
9240 struct hfi1_devdata *dd = ppd->dd;
9241 u64 mask, qsfp_mask;
9242
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009243 /* Disable INT_N from triggering QSFP interrupts */
9244 set_qsfp_int_n(ppd, 0);
9245
9246 /* Reset the QSFP */
Mike Marciniszyn77241052015-07-30 15:17:43 -04009247 mask = (u64)QSFP_HFI0_RESET_N;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009248
9249 qsfp_mask = read_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009250 dd->hfi1_id ? ASIC_QSFP2_OUT : ASIC_QSFP1_OUT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009251 qsfp_mask &= ~mask;
9252 write_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009253 dd->hfi1_id ? ASIC_QSFP2_OUT : ASIC_QSFP1_OUT, qsfp_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009254
9255 udelay(10);
9256
9257 qsfp_mask |= mask;
9258 write_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009259 dd->hfi1_id ? ASIC_QSFP2_OUT : ASIC_QSFP1_OUT, qsfp_mask);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009260
9261 wait_for_qsfp_init(ppd);
9262
9263 /*
9264 * Allow INT_N to trigger the QSFP interrupt to watch
9265 * for alarms and warnings
9266 */
9267 set_qsfp_int_n(ppd, 1);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009268}
9269
9270static int handle_qsfp_error_conditions(struct hfi1_pportdata *ppd,
9271 u8 *qsfp_interrupt_status)
9272{
9273 struct hfi1_devdata *dd = ppd->dd;
9274
9275 if ((qsfp_interrupt_status[0] & QSFP_HIGH_TEMP_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009276 (qsfp_interrupt_status[0] & QSFP_HIGH_TEMP_WARNING))
9277 dd_dev_info(dd, "%s: QSFP cable on fire\n",
9278 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009279
9280 if ((qsfp_interrupt_status[0] & QSFP_LOW_TEMP_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009281 (qsfp_interrupt_status[0] & QSFP_LOW_TEMP_WARNING))
9282 dd_dev_info(dd, "%s: QSFP cable temperature too low\n",
9283 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009284
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07009285 /*
9286 * The remaining alarms/warnings don't matter if the link is down.
9287 */
9288 if (ppd->host_link_state & HLS_DOWN)
9289 return 0;
9290
Mike Marciniszyn77241052015-07-30 15:17:43 -04009291 if ((qsfp_interrupt_status[1] & QSFP_HIGH_VCC_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009292 (qsfp_interrupt_status[1] & QSFP_HIGH_VCC_WARNING))
9293 dd_dev_info(dd, "%s: QSFP supply voltage too high\n",
9294 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009295
9296 if ((qsfp_interrupt_status[1] & QSFP_LOW_VCC_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009297 (qsfp_interrupt_status[1] & QSFP_LOW_VCC_WARNING))
9298 dd_dev_info(dd, "%s: QSFP supply voltage too low\n",
9299 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009300
9301 /* Byte 2 is vendor specific */
9302
9303 if ((qsfp_interrupt_status[3] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009304 (qsfp_interrupt_status[3] & QSFP_HIGH_POWER_WARNING))
9305 dd_dev_info(dd, "%s: Cable RX channel 1/2 power too high\n",
9306 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009307
9308 if ((qsfp_interrupt_status[3] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009309 (qsfp_interrupt_status[3] & QSFP_LOW_POWER_WARNING))
9310 dd_dev_info(dd, "%s: Cable RX channel 1/2 power too low\n",
9311 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009312
9313 if ((qsfp_interrupt_status[4] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009314 (qsfp_interrupt_status[4] & QSFP_HIGH_POWER_WARNING))
9315 dd_dev_info(dd, "%s: Cable RX channel 3/4 power too high\n",
9316 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009317
9318 if ((qsfp_interrupt_status[4] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009319 (qsfp_interrupt_status[4] & QSFP_LOW_POWER_WARNING))
9320 dd_dev_info(dd, "%s: Cable RX channel 3/4 power too low\n",
9321 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009322
9323 if ((qsfp_interrupt_status[5] & QSFP_HIGH_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009324 (qsfp_interrupt_status[5] & QSFP_HIGH_BIAS_WARNING))
9325 dd_dev_info(dd, "%s: Cable TX channel 1/2 bias too high\n",
9326 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009327
9328 if ((qsfp_interrupt_status[5] & QSFP_LOW_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009329 (qsfp_interrupt_status[5] & QSFP_LOW_BIAS_WARNING))
9330 dd_dev_info(dd, "%s: Cable TX channel 1/2 bias too low\n",
9331 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009332
9333 if ((qsfp_interrupt_status[6] & QSFP_HIGH_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009334 (qsfp_interrupt_status[6] & QSFP_HIGH_BIAS_WARNING))
9335 dd_dev_info(dd, "%s: Cable TX channel 3/4 bias too high\n",
9336 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009337
9338 if ((qsfp_interrupt_status[6] & QSFP_LOW_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009339 (qsfp_interrupt_status[6] & QSFP_LOW_BIAS_WARNING))
9340 dd_dev_info(dd, "%s: Cable TX channel 3/4 bias too low\n",
9341 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009342
9343 if ((qsfp_interrupt_status[7] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009344 (qsfp_interrupt_status[7] & QSFP_HIGH_POWER_WARNING))
9345 dd_dev_info(dd, "%s: Cable TX channel 1/2 power too high\n",
9346 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009347
9348 if ((qsfp_interrupt_status[7] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009349 (qsfp_interrupt_status[7] & QSFP_LOW_POWER_WARNING))
9350 dd_dev_info(dd, "%s: Cable TX channel 1/2 power too low\n",
9351 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009352
9353 if ((qsfp_interrupt_status[8] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009354 (qsfp_interrupt_status[8] & QSFP_HIGH_POWER_WARNING))
9355 dd_dev_info(dd, "%s: Cable TX channel 3/4 power too high\n",
9356 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009357
9358 if ((qsfp_interrupt_status[8] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009359 (qsfp_interrupt_status[8] & QSFP_LOW_POWER_WARNING))
9360 dd_dev_info(dd, "%s: Cable TX channel 3/4 power too low\n",
9361 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009362
9363 /* Bytes 9-10 and 11-12 are reserved */
9364 /* Bytes 13-15 are vendor specific */
9365
9366 return 0;
9367}
9368
Easwar Hariharan623bba22016-04-12 11:25:57 -07009369/* This routine will only be scheduled if the QSFP module present is asserted */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009370void qsfp_event(struct work_struct *work)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009371{
9372 struct qsfp_data *qd;
9373 struct hfi1_pportdata *ppd;
9374 struct hfi1_devdata *dd;
9375
9376 qd = container_of(work, struct qsfp_data, qsfp_work);
9377 ppd = qd->ppd;
9378 dd = ppd->dd;
9379
9380 /* Sanity check */
9381 if (!qsfp_mod_present(ppd))
9382 return;
9383
9384 /*
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07009385 * Turn DC back on after cable has been re-inserted. Up until
9386 * now, the DC has been in reset to save power.
Mike Marciniszyn77241052015-07-30 15:17:43 -04009387 */
9388 dc_start(dd);
9389
9390 if (qd->cache_refresh_required) {
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009391 set_qsfp_int_n(ppd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009392
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009393 wait_for_qsfp_init(ppd);
9394
9395 /*
9396 * Allow INT_N to trigger the QSFP interrupt to watch
9397 * for alarms and warnings
Mike Marciniszyn77241052015-07-30 15:17:43 -04009398 */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009399 set_qsfp_int_n(ppd, 1);
9400
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009401 start_link(ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009402 }
9403
9404 if (qd->check_interrupt_flags) {
9405 u8 qsfp_interrupt_status[16] = {0,};
9406
Dean Luick765a6fa2016-03-05 08:50:06 -08009407 if (one_qsfp_read(ppd, dd->hfi1_id, 6,
9408 &qsfp_interrupt_status[0], 16) != 16) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04009409 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009410 "%s: Failed to read status of QSFP module\n",
9411 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009412 } else {
9413 unsigned long flags;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009414
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009415 handle_qsfp_error_conditions(
9416 ppd, qsfp_interrupt_status);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009417 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
9418 ppd->qsfp_info.check_interrupt_flags = 0;
9419 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock,
Jubin John17fb4f22016-02-14 20:21:52 -08009420 flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009421 }
9422 }
9423}
9424
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009425static void init_qsfp_int(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009426{
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009427 struct hfi1_pportdata *ppd = dd->pport;
9428 u64 qsfp_mask, cce_int_mask;
9429 const int qsfp1_int_smask = QSFP1_INT % 64;
9430 const int qsfp2_int_smask = QSFP2_INT % 64;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009431
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009432 /*
9433 * disable QSFP1 interrupts for HFI1, QSFP2 interrupts for HFI0
9434 * Qsfp1Int and Qsfp2Int are adjacent bits in the same CSR,
9435 * therefore just one of QSFP1_INT/QSFP2_INT can be used to find
9436 * the index of the appropriate CSR in the CCEIntMask CSR array
9437 */
9438 cce_int_mask = read_csr(dd, CCE_INT_MASK +
9439 (8 * (QSFP1_INT / 64)));
9440 if (dd->hfi1_id) {
9441 cce_int_mask &= ~((u64)1 << qsfp1_int_smask);
9442 write_csr(dd, CCE_INT_MASK + (8 * (QSFP1_INT / 64)),
9443 cce_int_mask);
9444 } else {
9445 cce_int_mask &= ~((u64)1 << qsfp2_int_smask);
9446 write_csr(dd, CCE_INT_MASK + (8 * (QSFP2_INT / 64)),
9447 cce_int_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009448 }
9449
Mike Marciniszyn77241052015-07-30 15:17:43 -04009450 qsfp_mask = (u64)(QSFP_HFI0_INT_N | QSFP_HFI0_MODPRST_N);
9451 /* Clear current status to avoid spurious interrupts */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009452 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_CLEAR : ASIC_QSFP1_CLEAR,
9453 qsfp_mask);
9454 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_MASK : ASIC_QSFP1_MASK,
9455 qsfp_mask);
9456
9457 set_qsfp_int_n(ppd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009458
9459 /* Handle active low nature of INT_N and MODPRST_N pins */
9460 if (qsfp_mod_present(ppd))
9461 qsfp_mask &= ~(u64)QSFP_HFI0_MODPRST_N;
9462 write_csr(dd,
9463 dd->hfi1_id ? ASIC_QSFP2_INVERT : ASIC_QSFP1_INVERT,
9464 qsfp_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009465}
9466
Dean Luickbbdeb332015-12-01 15:38:15 -05009467/*
9468 * Do a one-time initialize of the LCB block.
9469 */
9470static void init_lcb(struct hfi1_devdata *dd)
9471{
Dean Luicka59329d2016-02-03 14:32:31 -08009472 /* simulator does not correctly handle LCB cclk loopback, skip */
9473 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR)
9474 return;
9475
Dean Luickbbdeb332015-12-01 15:38:15 -05009476 /* the DC has been reset earlier in the driver load */
9477
9478 /* set LCB for cclk loopback on the port */
9479 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0x01);
9480 write_csr(dd, DC_LCB_CFG_LANE_WIDTH, 0x00);
9481 write_csr(dd, DC_LCB_CFG_REINIT_AS_SLAVE, 0x00);
9482 write_csr(dd, DC_LCB_CFG_CNT_FOR_SKIP_STALL, 0x110);
9483 write_csr(dd, DC_LCB_CFG_CLK_CNTR, 0x08);
9484 write_csr(dd, DC_LCB_CFG_LOOPBACK, 0x02);
9485 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0x00);
9486}
9487
Dean Luick673b9752016-08-31 07:24:33 -07009488/*
9489 * Perform a test read on the QSFP. Return 0 on success, -ERRNO
9490 * on error.
9491 */
9492static int test_qsfp_read(struct hfi1_pportdata *ppd)
9493{
9494 int ret;
9495 u8 status;
9496
9497 /* report success if not a QSFP */
9498 if (ppd->port_type != PORT_TYPE_QSFP)
9499 return 0;
9500
9501 /* read byte 2, the status byte */
9502 ret = one_qsfp_read(ppd, ppd->dd->hfi1_id, 2, &status, 1);
9503 if (ret < 0)
9504 return ret;
9505 if (ret != 1)
9506 return -EIO;
9507
9508 return 0; /* success */
9509}
9510
9511/*
9512 * Values for QSFP retry.
9513 *
9514 * Give up after 10s (20 x 500ms). The overall timeout was empirically
9515 * arrived at from experience on a large cluster.
9516 */
9517#define MAX_QSFP_RETRIES 20
9518#define QSFP_RETRY_WAIT 500 /* msec */
9519
9520/*
9521 * Try a QSFP read. If it fails, schedule a retry for later.
9522 * Called on first link activation after driver load.
9523 */
9524static void try_start_link(struct hfi1_pportdata *ppd)
9525{
9526 if (test_qsfp_read(ppd)) {
9527 /* read failed */
9528 if (ppd->qsfp_retry_count >= MAX_QSFP_RETRIES) {
9529 dd_dev_err(ppd->dd, "QSFP not responding, giving up\n");
9530 return;
9531 }
9532 dd_dev_info(ppd->dd,
9533 "QSFP not responding, waiting and retrying %d\n",
9534 (int)ppd->qsfp_retry_count);
9535 ppd->qsfp_retry_count++;
9536 queue_delayed_work(ppd->hfi1_wq, &ppd->start_link_work,
9537 msecs_to_jiffies(QSFP_RETRY_WAIT));
9538 return;
9539 }
9540 ppd->qsfp_retry_count = 0;
9541
Dean Luick673b9752016-08-31 07:24:33 -07009542 start_link(ppd);
9543}
9544
9545/*
9546 * Workqueue function to start the link after a delay.
9547 */
9548void handle_start_link(struct work_struct *work)
9549{
9550 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
9551 start_link_work.work);
9552 try_start_link(ppd);
9553}
9554
Mike Marciniszyn77241052015-07-30 15:17:43 -04009555int bringup_serdes(struct hfi1_pportdata *ppd)
9556{
9557 struct hfi1_devdata *dd = ppd->dd;
9558 u64 guid;
9559 int ret;
9560
9561 if (HFI1_CAP_IS_KSET(EXTENDED_PSN))
9562 add_rcvctrl(dd, RCV_CTRL_RCV_EXTENDED_PSN_ENABLE_SMASK);
9563
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07009564 guid = ppd->guids[HFI1_PORT_GUID_INDEX];
Mike Marciniszyn77241052015-07-30 15:17:43 -04009565 if (!guid) {
9566 if (dd->base_guid)
9567 guid = dd->base_guid + ppd->port - 1;
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07009568 ppd->guids[HFI1_PORT_GUID_INDEX] = guid;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009569 }
9570
Mike Marciniszyn77241052015-07-30 15:17:43 -04009571 /* Set linkinit_reason on power up per OPA spec */
9572 ppd->linkinit_reason = OPA_LINKINIT_REASON_LINKUP;
9573
Dean Luickbbdeb332015-12-01 15:38:15 -05009574 /* one-time init of the LCB */
9575 init_lcb(dd);
9576
Mike Marciniszyn77241052015-07-30 15:17:43 -04009577 if (loopback) {
9578 ret = init_loopback(dd);
9579 if (ret < 0)
9580 return ret;
9581 }
9582
Easwar Hariharan9775a992016-05-12 10:22:39 -07009583 get_port_type(ppd);
9584 if (ppd->port_type == PORT_TYPE_QSFP) {
9585 set_qsfp_int_n(ppd, 0);
9586 wait_for_qsfp_init(ppd);
9587 set_qsfp_int_n(ppd, 1);
9588 }
9589
Dean Luick673b9752016-08-31 07:24:33 -07009590 try_start_link(ppd);
9591 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009592}
9593
9594void hfi1_quiet_serdes(struct hfi1_pportdata *ppd)
9595{
9596 struct hfi1_devdata *dd = ppd->dd;
9597
9598 /*
9599 * Shut down the link and keep it down. First turn off that the
9600 * driver wants to allow the link to be up (driver_link_ready).
9601 * Then make sure the link is not automatically restarted
9602 * (link_enabled). Cancel any pending restart. And finally
9603 * go offline.
9604 */
9605 ppd->driver_link_ready = 0;
9606 ppd->link_enabled = 0;
9607
Dean Luick673b9752016-08-31 07:24:33 -07009608 ppd->qsfp_retry_count = MAX_QSFP_RETRIES; /* prevent more retries */
9609 flush_delayed_work(&ppd->start_link_work);
9610 cancel_delayed_work_sync(&ppd->start_link_work);
9611
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009612 ppd->offline_disabled_reason =
9613 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_SMA_DISABLED);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009614 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_SMA_DISABLED, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08009615 OPA_LINKDOWN_REASON_SMA_DISABLED);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009616 set_link_state(ppd, HLS_DN_OFFLINE);
9617
9618 /* disable the port */
9619 clear_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
9620}
9621
9622static inline int init_cpu_counters(struct hfi1_devdata *dd)
9623{
9624 struct hfi1_pportdata *ppd;
9625 int i;
9626
9627 ppd = (struct hfi1_pportdata *)(dd + 1);
9628 for (i = 0; i < dd->num_pports; i++, ppd++) {
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08009629 ppd->ibport_data.rvp.rc_acks = NULL;
9630 ppd->ibport_data.rvp.rc_qacks = NULL;
9631 ppd->ibport_data.rvp.rc_acks = alloc_percpu(u64);
9632 ppd->ibport_data.rvp.rc_qacks = alloc_percpu(u64);
9633 ppd->ibport_data.rvp.rc_delayed_comp = alloc_percpu(u64);
9634 if (!ppd->ibport_data.rvp.rc_acks ||
9635 !ppd->ibport_data.rvp.rc_delayed_comp ||
9636 !ppd->ibport_data.rvp.rc_qacks)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009637 return -ENOMEM;
9638 }
9639
9640 return 0;
9641}
9642
9643static const char * const pt_names[] = {
9644 "expected",
9645 "eager",
9646 "invalid"
9647};
9648
9649static const char *pt_name(u32 type)
9650{
9651 return type >= ARRAY_SIZE(pt_names) ? "unknown" : pt_names[type];
9652}
9653
9654/*
9655 * index is the index into the receive array
9656 */
9657void hfi1_put_tid(struct hfi1_devdata *dd, u32 index,
9658 u32 type, unsigned long pa, u16 order)
9659{
9660 u64 reg;
9661 void __iomem *base = (dd->rcvarray_wc ? dd->rcvarray_wc :
9662 (dd->kregbase + RCV_ARRAY));
9663
9664 if (!(dd->flags & HFI1_PRESENT))
9665 goto done;
9666
9667 if (type == PT_INVALID) {
9668 pa = 0;
9669 } else if (type > PT_INVALID) {
9670 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009671 "unexpected receive array type %u for index %u, not handled\n",
9672 type, index);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009673 goto done;
9674 }
9675
9676 hfi1_cdbg(TID, "type %s, index 0x%x, pa 0x%lx, bsize 0x%lx",
9677 pt_name(type), index, pa, (unsigned long)order);
9678
9679#define RT_ADDR_SHIFT 12 /* 4KB kernel address boundary */
9680 reg = RCV_ARRAY_RT_WRITE_ENABLE_SMASK
9681 | (u64)order << RCV_ARRAY_RT_BUF_SIZE_SHIFT
9682 | ((pa >> RT_ADDR_SHIFT) & RCV_ARRAY_RT_ADDR_MASK)
9683 << RCV_ARRAY_RT_ADDR_SHIFT;
9684 writeq(reg, base + (index * 8));
9685
9686 if (type == PT_EAGER)
9687 /*
9688 * Eager entries are written one-by-one so we have to push them
9689 * after we write the entry.
9690 */
9691 flush_wc();
9692done:
9693 return;
9694}
9695
9696void hfi1_clear_tids(struct hfi1_ctxtdata *rcd)
9697{
9698 struct hfi1_devdata *dd = rcd->dd;
9699 u32 i;
9700
9701 /* this could be optimized */
9702 for (i = rcd->eager_base; i < rcd->eager_base +
9703 rcd->egrbufs.alloced; i++)
9704 hfi1_put_tid(dd, i, PT_INVALID, 0, 0);
9705
9706 for (i = rcd->expected_base;
9707 i < rcd->expected_base + rcd->expected_count; i++)
9708 hfi1_put_tid(dd, i, PT_INVALID, 0, 0);
9709}
9710
Mike Marciniszyn261a4352016-09-06 04:35:05 -07009711struct ib_header *hfi1_get_msgheader(
9712 struct hfi1_devdata *dd, __le32 *rhf_addr)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009713{
9714 u32 offset = rhf_hdrq_offset(rhf_to_cpu(rhf_addr));
9715
Mike Marciniszyn261a4352016-09-06 04:35:05 -07009716 return (struct ib_header *)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009717 (rhf_addr - dd->rhf_offset + offset);
9718}
9719
9720static const char * const ib_cfg_name_strings[] = {
9721 "HFI1_IB_CFG_LIDLMC",
9722 "HFI1_IB_CFG_LWID_DG_ENB",
9723 "HFI1_IB_CFG_LWID_ENB",
9724 "HFI1_IB_CFG_LWID",
9725 "HFI1_IB_CFG_SPD_ENB",
9726 "HFI1_IB_CFG_SPD",
9727 "HFI1_IB_CFG_RXPOL_ENB",
9728 "HFI1_IB_CFG_LREV_ENB",
9729 "HFI1_IB_CFG_LINKLATENCY",
9730 "HFI1_IB_CFG_HRTBT",
9731 "HFI1_IB_CFG_OP_VLS",
9732 "HFI1_IB_CFG_VL_HIGH_CAP",
9733 "HFI1_IB_CFG_VL_LOW_CAP",
9734 "HFI1_IB_CFG_OVERRUN_THRESH",
9735 "HFI1_IB_CFG_PHYERR_THRESH",
9736 "HFI1_IB_CFG_LINKDEFAULT",
9737 "HFI1_IB_CFG_PKEYS",
9738 "HFI1_IB_CFG_MTU",
9739 "HFI1_IB_CFG_LSTATE",
9740 "HFI1_IB_CFG_VL_HIGH_LIMIT",
9741 "HFI1_IB_CFG_PMA_TICKS",
9742 "HFI1_IB_CFG_PORT"
9743};
9744
9745static const char *ib_cfg_name(int which)
9746{
9747 if (which < 0 || which >= ARRAY_SIZE(ib_cfg_name_strings))
9748 return "invalid";
9749 return ib_cfg_name_strings[which];
9750}
9751
9752int hfi1_get_ib_cfg(struct hfi1_pportdata *ppd, int which)
9753{
9754 struct hfi1_devdata *dd = ppd->dd;
9755 int val = 0;
9756
9757 switch (which) {
9758 case HFI1_IB_CFG_LWID_ENB: /* allowed Link-width */
9759 val = ppd->link_width_enabled;
9760 break;
9761 case HFI1_IB_CFG_LWID: /* currently active Link-width */
9762 val = ppd->link_width_active;
9763 break;
9764 case HFI1_IB_CFG_SPD_ENB: /* allowed Link speeds */
9765 val = ppd->link_speed_enabled;
9766 break;
9767 case HFI1_IB_CFG_SPD: /* current Link speed */
9768 val = ppd->link_speed_active;
9769 break;
9770
9771 case HFI1_IB_CFG_RXPOL_ENB: /* Auto-RX-polarity enable */
9772 case HFI1_IB_CFG_LREV_ENB: /* Auto-Lane-reversal enable */
9773 case HFI1_IB_CFG_LINKLATENCY:
9774 goto unimplemented;
9775
9776 case HFI1_IB_CFG_OP_VLS:
9777 val = ppd->vls_operational;
9778 break;
9779 case HFI1_IB_CFG_VL_HIGH_CAP: /* VL arb high priority table size */
9780 val = VL_ARB_HIGH_PRIO_TABLE_SIZE;
9781 break;
9782 case HFI1_IB_CFG_VL_LOW_CAP: /* VL arb low priority table size */
9783 val = VL_ARB_LOW_PRIO_TABLE_SIZE;
9784 break;
9785 case HFI1_IB_CFG_OVERRUN_THRESH: /* IB overrun threshold */
9786 val = ppd->overrun_threshold;
9787 break;
9788 case HFI1_IB_CFG_PHYERR_THRESH: /* IB PHY error threshold */
9789 val = ppd->phy_error_threshold;
9790 break;
9791 case HFI1_IB_CFG_LINKDEFAULT: /* IB link default (sleep/poll) */
9792 val = dd->link_default;
9793 break;
9794
9795 case HFI1_IB_CFG_HRTBT: /* Heartbeat off/enable/auto */
9796 case HFI1_IB_CFG_PMA_TICKS:
9797 default:
9798unimplemented:
9799 if (HFI1_CAP_IS_KSET(PRINT_UNIMPL))
9800 dd_dev_info(
9801 dd,
9802 "%s: which %s: not implemented\n",
9803 __func__,
9804 ib_cfg_name(which));
9805 break;
9806 }
9807
9808 return val;
9809}
9810
9811/*
9812 * The largest MAD packet size.
9813 */
9814#define MAX_MAD_PACKET 2048
9815
9816/*
9817 * Return the maximum header bytes that can go on the _wire_
9818 * for this device. This count includes the ICRC which is
9819 * not part of the packet held in memory but it is appended
9820 * by the HW.
9821 * This is dependent on the device's receive header entry size.
9822 * HFI allows this to be set per-receive context, but the
9823 * driver presently enforces a global value.
9824 */
9825u32 lrh_max_header_bytes(struct hfi1_devdata *dd)
9826{
9827 /*
9828 * The maximum non-payload (MTU) bytes in LRH.PktLen are
9829 * the Receive Header Entry Size minus the PBC (or RHF) size
9830 * plus one DW for the ICRC appended by HW.
9831 *
9832 * dd->rcd[0].rcvhdrqentsize is in DW.
9833 * We use rcd[0] as all context will have the same value. Also,
9834 * the first kernel context would have been allocated by now so
9835 * we are guaranteed a valid value.
9836 */
9837 return (dd->rcd[0]->rcvhdrqentsize - 2/*PBC/RHF*/ + 1/*ICRC*/) << 2;
9838}
9839
9840/*
9841 * Set Send Length
9842 * @ppd - per port data
9843 *
9844 * Set the MTU by limiting how many DWs may be sent. The SendLenCheck*
9845 * registers compare against LRH.PktLen, so use the max bytes included
9846 * in the LRH.
9847 *
9848 * This routine changes all VL values except VL15, which it maintains at
9849 * the same value.
9850 */
9851static void set_send_length(struct hfi1_pportdata *ppd)
9852{
9853 struct hfi1_devdata *dd = ppd->dd;
Harish Chegondi6cc6ad22015-12-01 15:38:24 -05009854 u32 max_hb = lrh_max_header_bytes(dd), dcmtu;
9855 u32 maxvlmtu = dd->vld[15].mtu;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009856 u64 len1 = 0, len2 = (((dd->vld[15].mtu + max_hb) >> 2)
9857 & SEND_LEN_CHECK1_LEN_VL15_MASK) <<
9858 SEND_LEN_CHECK1_LEN_VL15_SHIFT;
Jubin Johnb4ba6632016-06-09 07:51:08 -07009859 int i, j;
Jianxin Xiong44306f12016-04-12 11:30:28 -07009860 u32 thres;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009861
9862 for (i = 0; i < ppd->vls_supported; i++) {
9863 if (dd->vld[i].mtu > maxvlmtu)
9864 maxvlmtu = dd->vld[i].mtu;
9865 if (i <= 3)
9866 len1 |= (((dd->vld[i].mtu + max_hb) >> 2)
9867 & SEND_LEN_CHECK0_LEN_VL0_MASK) <<
9868 ((i % 4) * SEND_LEN_CHECK0_LEN_VL1_SHIFT);
9869 else
9870 len2 |= (((dd->vld[i].mtu + max_hb) >> 2)
9871 & SEND_LEN_CHECK1_LEN_VL4_MASK) <<
9872 ((i % 4) * SEND_LEN_CHECK1_LEN_VL5_SHIFT);
9873 }
9874 write_csr(dd, SEND_LEN_CHECK0, len1);
9875 write_csr(dd, SEND_LEN_CHECK1, len2);
9876 /* adjust kernel credit return thresholds based on new MTUs */
9877 /* all kernel receive contexts have the same hdrqentsize */
9878 for (i = 0; i < ppd->vls_supported; i++) {
Jianxin Xiong44306f12016-04-12 11:30:28 -07009879 thres = min(sc_percent_to_threshold(dd->vld[i].sc, 50),
9880 sc_mtu_to_threshold(dd->vld[i].sc,
9881 dd->vld[i].mtu,
Jubin John17fb4f22016-02-14 20:21:52 -08009882 dd->rcd[0]->rcvhdrqentsize));
Jubin Johnb4ba6632016-06-09 07:51:08 -07009883 for (j = 0; j < INIT_SC_PER_VL; j++)
9884 sc_set_cr_threshold(
9885 pio_select_send_context_vl(dd, j, i),
9886 thres);
Jianxin Xiong44306f12016-04-12 11:30:28 -07009887 }
9888 thres = min(sc_percent_to_threshold(dd->vld[15].sc, 50),
9889 sc_mtu_to_threshold(dd->vld[15].sc,
9890 dd->vld[15].mtu,
9891 dd->rcd[0]->rcvhdrqentsize));
9892 sc_set_cr_threshold(dd->vld[15].sc, thres);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009893
9894 /* Adjust maximum MTU for the port in DC */
9895 dcmtu = maxvlmtu == 10240 ? DCC_CFG_PORT_MTU_CAP_10240 :
9896 (ilog2(maxvlmtu >> 8) + 1);
9897 len1 = read_csr(ppd->dd, DCC_CFG_PORT_CONFIG);
9898 len1 &= ~DCC_CFG_PORT_CONFIG_MTU_CAP_SMASK;
9899 len1 |= ((u64)dcmtu & DCC_CFG_PORT_CONFIG_MTU_CAP_MASK) <<
9900 DCC_CFG_PORT_CONFIG_MTU_CAP_SHIFT;
9901 write_csr(ppd->dd, DCC_CFG_PORT_CONFIG, len1);
9902}
9903
9904static void set_lidlmc(struct hfi1_pportdata *ppd)
9905{
9906 int i;
9907 u64 sreg = 0;
9908 struct hfi1_devdata *dd = ppd->dd;
9909 u32 mask = ~((1U << ppd->lmc) - 1);
9910 u64 c1 = read_csr(ppd->dd, DCC_CFG_PORT_CONFIG1);
9911
Mike Marciniszyn77241052015-07-30 15:17:43 -04009912 c1 &= ~(DCC_CFG_PORT_CONFIG1_TARGET_DLID_SMASK
9913 | DCC_CFG_PORT_CONFIG1_DLID_MASK_SMASK);
9914 c1 |= ((ppd->lid & DCC_CFG_PORT_CONFIG1_TARGET_DLID_MASK)
Jubin John8638b772016-02-14 20:19:24 -08009915 << DCC_CFG_PORT_CONFIG1_TARGET_DLID_SHIFT) |
Mike Marciniszyn77241052015-07-30 15:17:43 -04009916 ((mask & DCC_CFG_PORT_CONFIG1_DLID_MASK_MASK)
9917 << DCC_CFG_PORT_CONFIG1_DLID_MASK_SHIFT);
9918 write_csr(ppd->dd, DCC_CFG_PORT_CONFIG1, c1);
9919
9920 /*
9921 * Iterate over all the send contexts and set their SLID check
9922 */
9923 sreg = ((mask & SEND_CTXT_CHECK_SLID_MASK_MASK) <<
9924 SEND_CTXT_CHECK_SLID_MASK_SHIFT) |
9925 (((ppd->lid & mask) & SEND_CTXT_CHECK_SLID_VALUE_MASK) <<
9926 SEND_CTXT_CHECK_SLID_VALUE_SHIFT);
9927
9928 for (i = 0; i < dd->chip_send_contexts; i++) {
9929 hfi1_cdbg(LINKVERB, "SendContext[%d].SLID_CHECK = 0x%x",
9930 i, (u32)sreg);
9931 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_SLID, sreg);
9932 }
9933
9934 /* Now we have to do the same thing for the sdma engines */
9935 sdma_update_lmc(dd, mask, ppd->lid);
9936}
9937
9938static int wait_phy_linkstate(struct hfi1_devdata *dd, u32 state, u32 msecs)
9939{
9940 unsigned long timeout;
9941 u32 curr_state;
9942
9943 timeout = jiffies + msecs_to_jiffies(msecs);
9944 while (1) {
9945 curr_state = read_physical_state(dd);
9946 if (curr_state == state)
9947 break;
9948 if (time_after(jiffies, timeout)) {
9949 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009950 "timeout waiting for phy link state 0x%x, current state is 0x%x\n",
9951 state, curr_state);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009952 return -ETIMEDOUT;
9953 }
9954 usleep_range(1950, 2050); /* sleep 2ms-ish */
9955 }
9956
9957 return 0;
9958}
9959
Dean Luick6854c692016-07-25 13:38:56 -07009960static const char *state_completed_string(u32 completed)
9961{
9962 static const char * const state_completed[] = {
9963 "EstablishComm",
9964 "OptimizeEQ",
9965 "VerifyCap"
9966 };
9967
9968 if (completed < ARRAY_SIZE(state_completed))
9969 return state_completed[completed];
9970
9971 return "unknown";
9972}
9973
9974static const char all_lanes_dead_timeout_expired[] =
9975 "All lanes were inactive – was the interconnect media removed?";
9976static const char tx_out_of_policy[] =
9977 "Passing lanes on local port do not meet the local link width policy";
9978static const char no_state_complete[] =
9979 "State timeout occurred before link partner completed the state";
9980static const char * const state_complete_reasons[] = {
9981 [0x00] = "Reason unknown",
9982 [0x01] = "Link was halted by driver, refer to LinkDownReason",
9983 [0x02] = "Link partner reported failure",
9984 [0x10] = "Unable to achieve frame sync on any lane",
9985 [0x11] =
9986 "Unable to find a common bit rate with the link partner",
9987 [0x12] =
9988 "Unable to achieve frame sync on sufficient lanes to meet the local link width policy",
9989 [0x13] =
9990 "Unable to identify preset equalization on sufficient lanes to meet the local link width policy",
9991 [0x14] = no_state_complete,
9992 [0x15] =
9993 "State timeout occurred before link partner identified equalization presets",
9994 [0x16] =
9995 "Link partner completed the EstablishComm state, but the passing lanes do not meet the local link width policy",
9996 [0x17] = tx_out_of_policy,
9997 [0x20] = all_lanes_dead_timeout_expired,
9998 [0x21] =
9999 "Unable to achieve acceptable BER on sufficient lanes to meet the local link width policy",
10000 [0x22] = no_state_complete,
10001 [0x23] =
10002 "Link partner completed the OptimizeEq state, but the passing lanes do not meet the local link width policy",
10003 [0x24] = tx_out_of_policy,
10004 [0x30] = all_lanes_dead_timeout_expired,
10005 [0x31] =
10006 "State timeout occurred waiting for host to process received frames",
10007 [0x32] = no_state_complete,
10008 [0x33] =
10009 "Link partner completed the VerifyCap state, but the passing lanes do not meet the local link width policy",
10010 [0x34] = tx_out_of_policy,
10011};
10012
10013static const char *state_complete_reason_code_string(struct hfi1_pportdata *ppd,
10014 u32 code)
10015{
10016 const char *str = NULL;
10017
10018 if (code < ARRAY_SIZE(state_complete_reasons))
10019 str = state_complete_reasons[code];
10020
10021 if (str)
10022 return str;
10023 return "Reserved";
10024}
10025
10026/* describe the given last state complete frame */
10027static void decode_state_complete(struct hfi1_pportdata *ppd, u32 frame,
10028 const char *prefix)
10029{
10030 struct hfi1_devdata *dd = ppd->dd;
10031 u32 success;
10032 u32 state;
10033 u32 reason;
10034 u32 lanes;
10035
10036 /*
10037 * Decode frame:
10038 * [ 0: 0] - success
10039 * [ 3: 1] - state
10040 * [ 7: 4] - next state timeout
10041 * [15: 8] - reason code
10042 * [31:16] - lanes
10043 */
10044 success = frame & 0x1;
10045 state = (frame >> 1) & 0x7;
10046 reason = (frame >> 8) & 0xff;
10047 lanes = (frame >> 16) & 0xffff;
10048
10049 dd_dev_err(dd, "Last %s LNI state complete frame 0x%08x:\n",
10050 prefix, frame);
10051 dd_dev_err(dd, " last reported state state: %s (0x%x)\n",
10052 state_completed_string(state), state);
10053 dd_dev_err(dd, " state successfully completed: %s\n",
10054 success ? "yes" : "no");
10055 dd_dev_err(dd, " fail reason 0x%x: %s\n",
10056 reason, state_complete_reason_code_string(ppd, reason));
10057 dd_dev_err(dd, " passing lane mask: 0x%x", lanes);
10058}
10059
10060/*
10061 * Read the last state complete frames and explain them. This routine
10062 * expects to be called if the link went down during link negotiation
10063 * and initialization (LNI). That is, anywhere between polling and link up.
10064 */
10065static void check_lni_states(struct hfi1_pportdata *ppd)
10066{
10067 u32 last_local_state;
10068 u32 last_remote_state;
10069
10070 read_last_local_state(ppd->dd, &last_local_state);
10071 read_last_remote_state(ppd->dd, &last_remote_state);
10072
10073 /*
10074 * Don't report anything if there is nothing to report. A value of
10075 * 0 means the link was taken down while polling and there was no
10076 * training in-process.
10077 */
10078 if (last_local_state == 0 && last_remote_state == 0)
10079 return;
10080
10081 decode_state_complete(ppd, last_local_state, "transmitted");
10082 decode_state_complete(ppd, last_remote_state, "received");
10083}
10084
Mike Marciniszyn77241052015-07-30 15:17:43 -040010085/*
10086 * Helper for set_link_state(). Do not call except from that routine.
10087 * Expects ppd->hls_mutex to be held.
10088 *
10089 * @rem_reason value to be sent to the neighbor
10090 *
10091 * LinkDownReasons only set if transition succeeds.
10092 */
10093static int goto_offline(struct hfi1_pportdata *ppd, u8 rem_reason)
10094{
10095 struct hfi1_devdata *dd = ppd->dd;
10096 u32 pstate, previous_state;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010097 int ret;
10098 int do_transition;
10099 int do_wait;
10100
10101 previous_state = ppd->host_link_state;
10102 ppd->host_link_state = HLS_GOING_OFFLINE;
10103 pstate = read_physical_state(dd);
10104 if (pstate == PLS_OFFLINE) {
10105 do_transition = 0; /* in right state */
10106 do_wait = 0; /* ...no need to wait */
10107 } else if ((pstate & 0xff) == PLS_OFFLINE) {
10108 do_transition = 0; /* in an offline transient state */
10109 do_wait = 1; /* ...wait for it to settle */
10110 } else {
10111 do_transition = 1; /* need to move to offline */
10112 do_wait = 1; /* ...will need to wait */
10113 }
10114
10115 if (do_transition) {
10116 ret = set_physical_link_state(dd,
Harish Chegondibf640092016-03-05 08:49:29 -080010117 (rem_reason << 8) | PLS_OFFLINE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010118
10119 if (ret != HCMD_SUCCESS) {
10120 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010121 "Failed to transition to Offline link state, return %d\n",
10122 ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010123 return -EINVAL;
10124 }
Bryan Morgana9c05e32016-02-03 14:30:49 -080010125 if (ppd->offline_disabled_reason ==
10126 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE))
Mike Marciniszyn77241052015-07-30 15:17:43 -040010127 ppd->offline_disabled_reason =
Bryan Morgana9c05e32016-02-03 14:30:49 -080010128 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_TRANSIENT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010129 }
10130
10131 if (do_wait) {
10132 /* it can take a while for the link to go down */
Dean Luickdc060242015-10-26 10:28:29 -040010133 ret = wait_phy_linkstate(dd, PLS_OFFLINE, 10000);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010134 if (ret < 0)
10135 return ret;
10136 }
10137
10138 /* make sure the logical state is also down */
10139 wait_logical_linkstate(ppd, IB_PORT_DOWN, 1000);
10140
10141 /*
10142 * Now in charge of LCB - must be after the physical state is
10143 * offline.quiet and before host_link_state is changed.
10144 */
10145 set_host_lcb_access(dd);
10146 write_csr(dd, DC_LCB_ERR_EN, ~0ull); /* watch LCB errors */
10147 ppd->host_link_state = HLS_LINK_COOLDOWN; /* LCB access allowed */
10148
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080010149 if (ppd->port_type == PORT_TYPE_QSFP &&
10150 ppd->qsfp_info.limiting_active &&
10151 qsfp_mod_present(ppd)) {
Dean Luick765a6fa2016-03-05 08:50:06 -080010152 int ret;
10153
10154 ret = acquire_chip_resource(dd, qsfp_resource(dd), QSFP_WAIT);
10155 if (ret == 0) {
10156 set_qsfp_tx(ppd, 0);
10157 release_chip_resource(dd, qsfp_resource(dd));
10158 } else {
10159 /* not fatal, but should warn */
10160 dd_dev_err(dd,
10161 "Unable to acquire lock to turn off QSFP TX\n");
10162 }
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080010163 }
10164
Mike Marciniszyn77241052015-07-30 15:17:43 -040010165 /*
10166 * The LNI has a mandatory wait time after the physical state
10167 * moves to Offline.Quiet. The wait time may be different
10168 * depending on how the link went down. The 8051 firmware
10169 * will observe the needed wait time and only move to ready
10170 * when that is completed. The largest of the quiet timeouts
Dean Luick05087f3b2015-12-01 15:38:16 -050010171 * is 6s, so wait that long and then at least 0.5s more for
10172 * other transitions, and another 0.5s for a buffer.
Mike Marciniszyn77241052015-07-30 15:17:43 -040010173 */
Dean Luick05087f3b2015-12-01 15:38:16 -050010174 ret = wait_fm_ready(dd, 7000);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010175 if (ret) {
10176 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010177 "After going offline, timed out waiting for the 8051 to become ready to accept host requests\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -040010178 /* state is really offline, so make it so */
10179 ppd->host_link_state = HLS_DN_OFFLINE;
10180 return ret;
10181 }
10182
10183 /*
10184 * The state is now offline and the 8051 is ready to accept host
10185 * requests.
10186 * - change our state
10187 * - notify others if we were previously in a linkup state
10188 */
10189 ppd->host_link_state = HLS_DN_OFFLINE;
10190 if (previous_state & HLS_UP) {
10191 /* went down while link was up */
10192 handle_linkup_change(dd, 0);
10193 } else if (previous_state
10194 & (HLS_DN_POLL | HLS_VERIFY_CAP | HLS_GOING_UP)) {
10195 /* went down while attempting link up */
Dean Luick6854c692016-07-25 13:38:56 -070010196 check_lni_states(ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010197 }
10198
10199 /* the active link width (downgrade) is 0 on link down */
10200 ppd->link_width_active = 0;
10201 ppd->link_width_downgrade_tx_active = 0;
10202 ppd->link_width_downgrade_rx_active = 0;
10203 ppd->current_egress_rate = 0;
10204 return 0;
10205}
10206
10207/* return the link state name */
10208static const char *link_state_name(u32 state)
10209{
10210 const char *name;
10211 int n = ilog2(state);
10212 static const char * const names[] = {
10213 [__HLS_UP_INIT_BP] = "INIT",
10214 [__HLS_UP_ARMED_BP] = "ARMED",
10215 [__HLS_UP_ACTIVE_BP] = "ACTIVE",
10216 [__HLS_DN_DOWNDEF_BP] = "DOWNDEF",
10217 [__HLS_DN_POLL_BP] = "POLL",
10218 [__HLS_DN_DISABLE_BP] = "DISABLE",
10219 [__HLS_DN_OFFLINE_BP] = "OFFLINE",
10220 [__HLS_VERIFY_CAP_BP] = "VERIFY_CAP",
10221 [__HLS_GOING_UP_BP] = "GOING_UP",
10222 [__HLS_GOING_OFFLINE_BP] = "GOING_OFFLINE",
10223 [__HLS_LINK_COOLDOWN_BP] = "LINK_COOLDOWN"
10224 };
10225
10226 name = n < ARRAY_SIZE(names) ? names[n] : NULL;
10227 return name ? name : "unknown";
10228}
10229
10230/* return the link state reason name */
10231static const char *link_state_reason_name(struct hfi1_pportdata *ppd, u32 state)
10232{
10233 if (state == HLS_UP_INIT) {
10234 switch (ppd->linkinit_reason) {
10235 case OPA_LINKINIT_REASON_LINKUP:
10236 return "(LINKUP)";
10237 case OPA_LINKINIT_REASON_FLAPPING:
10238 return "(FLAPPING)";
10239 case OPA_LINKINIT_OUTSIDE_POLICY:
10240 return "(OUTSIDE_POLICY)";
10241 case OPA_LINKINIT_QUARANTINED:
10242 return "(QUARANTINED)";
10243 case OPA_LINKINIT_INSUFIC_CAPABILITY:
10244 return "(INSUFIC_CAPABILITY)";
10245 default:
10246 break;
10247 }
10248 }
10249 return "";
10250}
10251
10252/*
10253 * driver_physical_state - convert the driver's notion of a port's
10254 * state (an HLS_*) into a physical state (a {IB,OPA}_PORTPHYSSTATE_*).
10255 * Return -1 (converted to a u32) to indicate error.
10256 */
10257u32 driver_physical_state(struct hfi1_pportdata *ppd)
10258{
10259 switch (ppd->host_link_state) {
10260 case HLS_UP_INIT:
10261 case HLS_UP_ARMED:
10262 case HLS_UP_ACTIVE:
10263 return IB_PORTPHYSSTATE_LINKUP;
10264 case HLS_DN_POLL:
10265 return IB_PORTPHYSSTATE_POLLING;
10266 case HLS_DN_DISABLE:
10267 return IB_PORTPHYSSTATE_DISABLED;
10268 case HLS_DN_OFFLINE:
10269 return OPA_PORTPHYSSTATE_OFFLINE;
10270 case HLS_VERIFY_CAP:
10271 return IB_PORTPHYSSTATE_POLLING;
10272 case HLS_GOING_UP:
10273 return IB_PORTPHYSSTATE_POLLING;
10274 case HLS_GOING_OFFLINE:
10275 return OPA_PORTPHYSSTATE_OFFLINE;
10276 case HLS_LINK_COOLDOWN:
10277 return OPA_PORTPHYSSTATE_OFFLINE;
10278 case HLS_DN_DOWNDEF:
10279 default:
10280 dd_dev_err(ppd->dd, "invalid host_link_state 0x%x\n",
10281 ppd->host_link_state);
10282 return -1;
10283 }
10284}
10285
10286/*
10287 * driver_logical_state - convert the driver's notion of a port's
10288 * state (an HLS_*) into a logical state (a IB_PORT_*). Return -1
10289 * (converted to a u32) to indicate error.
10290 */
10291u32 driver_logical_state(struct hfi1_pportdata *ppd)
10292{
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -070010293 if (ppd->host_link_state && (ppd->host_link_state & HLS_DOWN))
Mike Marciniszyn77241052015-07-30 15:17:43 -040010294 return IB_PORT_DOWN;
10295
10296 switch (ppd->host_link_state & HLS_UP) {
10297 case HLS_UP_INIT:
10298 return IB_PORT_INIT;
10299 case HLS_UP_ARMED:
10300 return IB_PORT_ARMED;
10301 case HLS_UP_ACTIVE:
10302 return IB_PORT_ACTIVE;
10303 default:
10304 dd_dev_err(ppd->dd, "invalid host_link_state 0x%x\n",
10305 ppd->host_link_state);
10306 return -1;
10307 }
10308}
10309
10310void set_link_down_reason(struct hfi1_pportdata *ppd, u8 lcl_reason,
10311 u8 neigh_reason, u8 rem_reason)
10312{
10313 if (ppd->local_link_down_reason.latest == 0 &&
10314 ppd->neigh_link_down_reason.latest == 0) {
10315 ppd->local_link_down_reason.latest = lcl_reason;
10316 ppd->neigh_link_down_reason.latest = neigh_reason;
10317 ppd->remote_link_down_reason = rem_reason;
10318 }
10319}
10320
10321/*
10322 * Change the physical and/or logical link state.
10323 *
10324 * Do not call this routine while inside an interrupt. It contains
10325 * calls to routines that can take multiple seconds to finish.
10326 *
10327 * Returns 0 on success, -errno on failure.
10328 */
10329int set_link_state(struct hfi1_pportdata *ppd, u32 state)
10330{
10331 struct hfi1_devdata *dd = ppd->dd;
10332 struct ib_event event = {.device = NULL};
10333 int ret1, ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010334 int orig_new_state, poll_bounce;
10335
10336 mutex_lock(&ppd->hls_lock);
10337
10338 orig_new_state = state;
10339 if (state == HLS_DN_DOWNDEF)
10340 state = dd->link_default;
10341
10342 /* interpret poll -> poll as a link bounce */
Jubin Johnd0d236e2016-02-14 20:20:15 -080010343 poll_bounce = ppd->host_link_state == HLS_DN_POLL &&
10344 state == HLS_DN_POLL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010345
10346 dd_dev_info(dd, "%s: current %s, new %s %s%s\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -080010347 link_state_name(ppd->host_link_state),
10348 link_state_name(orig_new_state),
10349 poll_bounce ? "(bounce) " : "",
10350 link_state_reason_name(ppd, state));
Mike Marciniszyn77241052015-07-30 15:17:43 -040010351
Mike Marciniszyn77241052015-07-30 15:17:43 -040010352 /*
10353 * If we're going to a (HLS_*) link state that implies the logical
10354 * link state is neither of (IB_PORT_ARMED, IB_PORT_ACTIVE), then
10355 * reset is_sm_config_started to 0.
10356 */
10357 if (!(state & (HLS_UP_ARMED | HLS_UP_ACTIVE)))
10358 ppd->is_sm_config_started = 0;
10359
10360 /*
10361 * Do nothing if the states match. Let a poll to poll link bounce
10362 * go through.
10363 */
10364 if (ppd->host_link_state == state && !poll_bounce)
10365 goto done;
10366
10367 switch (state) {
10368 case HLS_UP_INIT:
Jubin Johnd0d236e2016-02-14 20:20:15 -080010369 if (ppd->host_link_state == HLS_DN_POLL &&
10370 (quick_linkup || dd->icode == ICODE_FUNCTIONAL_SIMULATOR)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010371 /*
10372 * Quick link up jumps from polling to here.
10373 *
10374 * Whether in normal or loopback mode, the
10375 * simulator jumps from polling to link up.
10376 * Accept that here.
10377 */
Jubin John17fb4f22016-02-14 20:21:52 -080010378 /* OK */
Mike Marciniszyn77241052015-07-30 15:17:43 -040010379 } else if (ppd->host_link_state != HLS_GOING_UP) {
10380 goto unexpected;
10381 }
10382
10383 ppd->host_link_state = HLS_UP_INIT;
10384 ret = wait_logical_linkstate(ppd, IB_PORT_INIT, 1000);
10385 if (ret) {
10386 /* logical state didn't change, stay at going_up */
10387 ppd->host_link_state = HLS_GOING_UP;
10388 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010389 "%s: logical state did not change to INIT\n",
10390 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010391 } else {
10392 /* clear old transient LINKINIT_REASON code */
10393 if (ppd->linkinit_reason >= OPA_LINKINIT_REASON_CLEAR)
10394 ppd->linkinit_reason =
10395 OPA_LINKINIT_REASON_LINKUP;
10396
10397 /* enable the port */
10398 add_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
10399
10400 handle_linkup_change(dd, 1);
10401 }
10402 break;
10403 case HLS_UP_ARMED:
10404 if (ppd->host_link_state != HLS_UP_INIT)
10405 goto unexpected;
10406
10407 ppd->host_link_state = HLS_UP_ARMED;
10408 set_logical_state(dd, LSTATE_ARMED);
10409 ret = wait_logical_linkstate(ppd, IB_PORT_ARMED, 1000);
10410 if (ret) {
10411 /* logical state didn't change, stay at init */
10412 ppd->host_link_state = HLS_UP_INIT;
10413 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010414 "%s: logical state did not change to ARMED\n",
10415 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010416 }
10417 /*
10418 * The simulator does not currently implement SMA messages,
10419 * so neighbor_normal is not set. Set it here when we first
10420 * move to Armed.
10421 */
10422 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR)
10423 ppd->neighbor_normal = 1;
10424 break;
10425 case HLS_UP_ACTIVE:
10426 if (ppd->host_link_state != HLS_UP_ARMED)
10427 goto unexpected;
10428
10429 ppd->host_link_state = HLS_UP_ACTIVE;
10430 set_logical_state(dd, LSTATE_ACTIVE);
10431 ret = wait_logical_linkstate(ppd, IB_PORT_ACTIVE, 1000);
10432 if (ret) {
10433 /* logical state didn't change, stay at armed */
10434 ppd->host_link_state = HLS_UP_ARMED;
10435 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010436 "%s: logical state did not change to ACTIVE\n",
10437 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010438 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010439 /* tell all engines to go running */
10440 sdma_all_running(dd);
10441
10442 /* Signal the IB layer that the port has went active */
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -080010443 event.device = &dd->verbs_dev.rdi.ibdev;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010444 event.element.port_num = ppd->port;
10445 event.event = IB_EVENT_PORT_ACTIVE;
10446 }
10447 break;
10448 case HLS_DN_POLL:
10449 if ((ppd->host_link_state == HLS_DN_DISABLE ||
10450 ppd->host_link_state == HLS_DN_OFFLINE) &&
10451 dd->dc_shutdown)
10452 dc_start(dd);
10453 /* Hand LED control to the DC */
10454 write_csr(dd, DCC_CFG_LED_CNTRL, 0);
10455
10456 if (ppd->host_link_state != HLS_DN_OFFLINE) {
10457 u8 tmp = ppd->link_enabled;
10458
10459 ret = goto_offline(ppd, ppd->remote_link_down_reason);
10460 if (ret) {
10461 ppd->link_enabled = tmp;
10462 break;
10463 }
10464 ppd->remote_link_down_reason = 0;
10465
10466 if (ppd->driver_link_ready)
10467 ppd->link_enabled = 1;
10468 }
10469
Jim Snowfb9036d2016-01-11 18:32:21 -050010470 set_all_slowpath(ppd->dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010471 ret = set_local_link_attributes(ppd);
10472 if (ret)
10473 break;
10474
10475 ppd->port_error_action = 0;
10476 ppd->host_link_state = HLS_DN_POLL;
10477
10478 if (quick_linkup) {
10479 /* quick linkup does not go into polling */
10480 ret = do_quick_linkup(dd);
10481 } else {
10482 ret1 = set_physical_link_state(dd, PLS_POLLING);
10483 if (ret1 != HCMD_SUCCESS) {
10484 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010485 "Failed to transition to Polling link state, return 0x%x\n",
10486 ret1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010487 ret = -EINVAL;
10488 }
10489 }
Bryan Morgana9c05e32016-02-03 14:30:49 -080010490 ppd->offline_disabled_reason =
10491 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010492 /*
10493 * If an error occurred above, go back to offline. The
10494 * caller may reschedule another attempt.
10495 */
10496 if (ret)
10497 goto_offline(ppd, 0);
10498 break;
10499 case HLS_DN_DISABLE:
10500 /* link is disabled */
10501 ppd->link_enabled = 0;
10502
10503 /* allow any state to transition to disabled */
10504
10505 /* must transition to offline first */
10506 if (ppd->host_link_state != HLS_DN_OFFLINE) {
10507 ret = goto_offline(ppd, ppd->remote_link_down_reason);
10508 if (ret)
10509 break;
10510 ppd->remote_link_down_reason = 0;
10511 }
10512
10513 ret1 = set_physical_link_state(dd, PLS_DISABLED);
10514 if (ret1 != HCMD_SUCCESS) {
10515 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010516 "Failed to transition to Disabled link state, return 0x%x\n",
10517 ret1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010518 ret = -EINVAL;
10519 break;
10520 }
10521 ppd->host_link_state = HLS_DN_DISABLE;
10522 dc_shutdown(dd);
10523 break;
10524 case HLS_DN_OFFLINE:
10525 if (ppd->host_link_state == HLS_DN_DISABLE)
10526 dc_start(dd);
10527
10528 /* allow any state to transition to offline */
10529 ret = goto_offline(ppd, ppd->remote_link_down_reason);
10530 if (!ret)
10531 ppd->remote_link_down_reason = 0;
10532 break;
10533 case HLS_VERIFY_CAP:
10534 if (ppd->host_link_state != HLS_DN_POLL)
10535 goto unexpected;
10536 ppd->host_link_state = HLS_VERIFY_CAP;
10537 break;
10538 case HLS_GOING_UP:
10539 if (ppd->host_link_state != HLS_VERIFY_CAP)
10540 goto unexpected;
10541
10542 ret1 = set_physical_link_state(dd, PLS_LINKUP);
10543 if (ret1 != HCMD_SUCCESS) {
10544 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010545 "Failed to transition to link up state, return 0x%x\n",
10546 ret1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010547 ret = -EINVAL;
10548 break;
10549 }
10550 ppd->host_link_state = HLS_GOING_UP;
10551 break;
10552
10553 case HLS_GOING_OFFLINE: /* transient within goto_offline() */
10554 case HLS_LINK_COOLDOWN: /* transient within goto_offline() */
10555 default:
10556 dd_dev_info(dd, "%s: state 0x%x: not supported\n",
Jubin John17fb4f22016-02-14 20:21:52 -080010557 __func__, state);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010558 ret = -EINVAL;
10559 break;
10560 }
10561
Mike Marciniszyn77241052015-07-30 15:17:43 -040010562 goto done;
10563
10564unexpected:
10565 dd_dev_err(dd, "%s: unexpected state transition from %s to %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -080010566 __func__, link_state_name(ppd->host_link_state),
10567 link_state_name(state));
Mike Marciniszyn77241052015-07-30 15:17:43 -040010568 ret = -EINVAL;
10569
10570done:
10571 mutex_unlock(&ppd->hls_lock);
10572
10573 if (event.device)
10574 ib_dispatch_event(&event);
10575
10576 return ret;
10577}
10578
10579int hfi1_set_ib_cfg(struct hfi1_pportdata *ppd, int which, u32 val)
10580{
10581 u64 reg;
10582 int ret = 0;
10583
10584 switch (which) {
10585 case HFI1_IB_CFG_LIDLMC:
10586 set_lidlmc(ppd);
10587 break;
10588 case HFI1_IB_CFG_VL_HIGH_LIMIT:
10589 /*
10590 * The VL Arbitrator high limit is sent in units of 4k
10591 * bytes, while HFI stores it in units of 64 bytes.
10592 */
Jubin John8638b772016-02-14 20:19:24 -080010593 val *= 4096 / 64;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010594 reg = ((u64)val & SEND_HIGH_PRIORITY_LIMIT_LIMIT_MASK)
10595 << SEND_HIGH_PRIORITY_LIMIT_LIMIT_SHIFT;
10596 write_csr(ppd->dd, SEND_HIGH_PRIORITY_LIMIT, reg);
10597 break;
10598 case HFI1_IB_CFG_LINKDEFAULT: /* IB link default (sleep/poll) */
10599 /* HFI only supports POLL as the default link down state */
10600 if (val != HLS_DN_POLL)
10601 ret = -EINVAL;
10602 break;
10603 case HFI1_IB_CFG_OP_VLS:
10604 if (ppd->vls_operational != val) {
10605 ppd->vls_operational = val;
10606 if (!ppd->port)
10607 ret = -EINVAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010608 }
10609 break;
10610 /*
10611 * For link width, link width downgrade, and speed enable, always AND
10612 * the setting with what is actually supported. This has two benefits.
10613 * First, enabled can't have unsupported values, no matter what the
10614 * SM or FM might want. Second, the ALL_SUPPORTED wildcards that mean
10615 * "fill in with your supported value" have all the bits in the
10616 * field set, so simply ANDing with supported has the desired result.
10617 */
10618 case HFI1_IB_CFG_LWID_ENB: /* set allowed Link-width */
10619 ppd->link_width_enabled = val & ppd->link_width_supported;
10620 break;
10621 case HFI1_IB_CFG_LWID_DG_ENB: /* set allowed link width downgrade */
10622 ppd->link_width_downgrade_enabled =
10623 val & ppd->link_width_downgrade_supported;
10624 break;
10625 case HFI1_IB_CFG_SPD_ENB: /* allowed Link speeds */
10626 ppd->link_speed_enabled = val & ppd->link_speed_supported;
10627 break;
10628 case HFI1_IB_CFG_OVERRUN_THRESH: /* IB overrun threshold */
10629 /*
10630 * HFI does not follow IB specs, save this value
10631 * so we can report it, if asked.
10632 */
10633 ppd->overrun_threshold = val;
10634 break;
10635 case HFI1_IB_CFG_PHYERR_THRESH: /* IB PHY error threshold */
10636 /*
10637 * HFI does not follow IB specs, save this value
10638 * so we can report it, if asked.
10639 */
10640 ppd->phy_error_threshold = val;
10641 break;
10642
10643 case HFI1_IB_CFG_MTU:
10644 set_send_length(ppd);
10645 break;
10646
10647 case HFI1_IB_CFG_PKEYS:
10648 if (HFI1_CAP_IS_KSET(PKEY_CHECK))
10649 set_partition_keys(ppd);
10650 break;
10651
10652 default:
10653 if (HFI1_CAP_IS_KSET(PRINT_UNIMPL))
10654 dd_dev_info(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010655 "%s: which %s, val 0x%x: not implemented\n",
10656 __func__, ib_cfg_name(which), val);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010657 break;
10658 }
10659 return ret;
10660}
10661
10662/* begin functions related to vl arbitration table caching */
10663static void init_vl_arb_caches(struct hfi1_pportdata *ppd)
10664{
10665 int i;
10666
10667 BUILD_BUG_ON(VL_ARB_TABLE_SIZE !=
10668 VL_ARB_LOW_PRIO_TABLE_SIZE);
10669 BUILD_BUG_ON(VL_ARB_TABLE_SIZE !=
10670 VL_ARB_HIGH_PRIO_TABLE_SIZE);
10671
10672 /*
10673 * Note that we always return values directly from the
10674 * 'vl_arb_cache' (and do no CSR reads) in response to a
10675 * 'Get(VLArbTable)'. This is obviously correct after a
10676 * 'Set(VLArbTable)', since the cache will then be up to
10677 * date. But it's also correct prior to any 'Set(VLArbTable)'
10678 * since then both the cache, and the relevant h/w registers
10679 * will be zeroed.
10680 */
10681
10682 for (i = 0; i < MAX_PRIO_TABLE; i++)
10683 spin_lock_init(&ppd->vl_arb_cache[i].lock);
10684}
10685
10686/*
10687 * vl_arb_lock_cache
10688 *
10689 * All other vl_arb_* functions should be called only after locking
10690 * the cache.
10691 */
10692static inline struct vl_arb_cache *
10693vl_arb_lock_cache(struct hfi1_pportdata *ppd, int idx)
10694{
10695 if (idx != LO_PRIO_TABLE && idx != HI_PRIO_TABLE)
10696 return NULL;
10697 spin_lock(&ppd->vl_arb_cache[idx].lock);
10698 return &ppd->vl_arb_cache[idx];
10699}
10700
10701static inline void vl_arb_unlock_cache(struct hfi1_pportdata *ppd, int idx)
10702{
10703 spin_unlock(&ppd->vl_arb_cache[idx].lock);
10704}
10705
10706static void vl_arb_get_cache(struct vl_arb_cache *cache,
10707 struct ib_vl_weight_elem *vl)
10708{
10709 memcpy(vl, cache->table, VL_ARB_TABLE_SIZE * sizeof(*vl));
10710}
10711
10712static void vl_arb_set_cache(struct vl_arb_cache *cache,
10713 struct ib_vl_weight_elem *vl)
10714{
10715 memcpy(cache->table, vl, VL_ARB_TABLE_SIZE * sizeof(*vl));
10716}
10717
10718static int vl_arb_match_cache(struct vl_arb_cache *cache,
10719 struct ib_vl_weight_elem *vl)
10720{
10721 return !memcmp(cache->table, vl, VL_ARB_TABLE_SIZE * sizeof(*vl));
10722}
Jubin Johnf4d507c2016-02-14 20:20:25 -080010723
Mike Marciniszyn77241052015-07-30 15:17:43 -040010724/* end functions related to vl arbitration table caching */
10725
10726static int set_vl_weights(struct hfi1_pportdata *ppd, u32 target,
10727 u32 size, struct ib_vl_weight_elem *vl)
10728{
10729 struct hfi1_devdata *dd = ppd->dd;
10730 u64 reg;
10731 unsigned int i, is_up = 0;
10732 int drain, ret = 0;
10733
10734 mutex_lock(&ppd->hls_lock);
10735
10736 if (ppd->host_link_state & HLS_UP)
10737 is_up = 1;
10738
10739 drain = !is_ax(dd) && is_up;
10740
10741 if (drain)
10742 /*
10743 * Before adjusting VL arbitration weights, empty per-VL
10744 * FIFOs, otherwise a packet whose VL weight is being
10745 * set to 0 could get stuck in a FIFO with no chance to
10746 * egress.
10747 */
10748 ret = stop_drain_data_vls(dd);
10749
10750 if (ret) {
10751 dd_dev_err(
10752 dd,
10753 "%s: cannot stop/drain VLs - refusing to change VL arbitration weights\n",
10754 __func__);
10755 goto err;
10756 }
10757
10758 for (i = 0; i < size; i++, vl++) {
10759 /*
10760 * NOTE: The low priority shift and mask are used here, but
10761 * they are the same for both the low and high registers.
10762 */
10763 reg = (((u64)vl->vl & SEND_LOW_PRIORITY_LIST_VL_MASK)
10764 << SEND_LOW_PRIORITY_LIST_VL_SHIFT)
10765 | (((u64)vl->weight
10766 & SEND_LOW_PRIORITY_LIST_WEIGHT_MASK)
10767 << SEND_LOW_PRIORITY_LIST_WEIGHT_SHIFT);
10768 write_csr(dd, target + (i * 8), reg);
10769 }
10770 pio_send_control(dd, PSC_GLOBAL_VLARB_ENABLE);
10771
10772 if (drain)
10773 open_fill_data_vls(dd); /* reopen all VLs */
10774
10775err:
10776 mutex_unlock(&ppd->hls_lock);
10777
10778 return ret;
10779}
10780
10781/*
10782 * Read one credit merge VL register.
10783 */
10784static void read_one_cm_vl(struct hfi1_devdata *dd, u32 csr,
10785 struct vl_limit *vll)
10786{
10787 u64 reg = read_csr(dd, csr);
10788
10789 vll->dedicated = cpu_to_be16(
10790 (reg >> SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_SHIFT)
10791 & SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_MASK);
10792 vll->shared = cpu_to_be16(
10793 (reg >> SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_SHIFT)
10794 & SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_MASK);
10795}
10796
10797/*
10798 * Read the current credit merge limits.
10799 */
10800static int get_buffer_control(struct hfi1_devdata *dd,
10801 struct buffer_control *bc, u16 *overall_limit)
10802{
10803 u64 reg;
10804 int i;
10805
10806 /* not all entries are filled in */
10807 memset(bc, 0, sizeof(*bc));
10808
10809 /* OPA and HFI have a 1-1 mapping */
10810 for (i = 0; i < TXE_NUM_DATA_VL; i++)
Jubin John8638b772016-02-14 20:19:24 -080010811 read_one_cm_vl(dd, SEND_CM_CREDIT_VL + (8 * i), &bc->vl[i]);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010812
10813 /* NOTE: assumes that VL* and VL15 CSRs are bit-wise identical */
10814 read_one_cm_vl(dd, SEND_CM_CREDIT_VL15, &bc->vl[15]);
10815
10816 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
10817 bc->overall_shared_limit = cpu_to_be16(
10818 (reg >> SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SHIFT)
10819 & SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_MASK);
10820 if (overall_limit)
10821 *overall_limit = (reg
10822 >> SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SHIFT)
10823 & SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_MASK;
10824 return sizeof(struct buffer_control);
10825}
10826
10827static int get_sc2vlnt(struct hfi1_devdata *dd, struct sc2vlnt *dp)
10828{
10829 u64 reg;
10830 int i;
10831
10832 /* each register contains 16 SC->VLnt mappings, 4 bits each */
10833 reg = read_csr(dd, DCC_CFG_SC_VL_TABLE_15_0);
10834 for (i = 0; i < sizeof(u64); i++) {
10835 u8 byte = *(((u8 *)&reg) + i);
10836
10837 dp->vlnt[2 * i] = byte & 0xf;
10838 dp->vlnt[(2 * i) + 1] = (byte & 0xf0) >> 4;
10839 }
10840
10841 reg = read_csr(dd, DCC_CFG_SC_VL_TABLE_31_16);
10842 for (i = 0; i < sizeof(u64); i++) {
10843 u8 byte = *(((u8 *)&reg) + i);
10844
10845 dp->vlnt[16 + (2 * i)] = byte & 0xf;
10846 dp->vlnt[16 + (2 * i) + 1] = (byte & 0xf0) >> 4;
10847 }
10848 return sizeof(struct sc2vlnt);
10849}
10850
10851static void get_vlarb_preempt(struct hfi1_devdata *dd, u32 nelems,
10852 struct ib_vl_weight_elem *vl)
10853{
10854 unsigned int i;
10855
10856 for (i = 0; i < nelems; i++, vl++) {
10857 vl->vl = 0xf;
10858 vl->weight = 0;
10859 }
10860}
10861
10862static void set_sc2vlnt(struct hfi1_devdata *dd, struct sc2vlnt *dp)
10863{
10864 write_csr(dd, DCC_CFG_SC_VL_TABLE_15_0,
Jubin John17fb4f22016-02-14 20:21:52 -080010865 DC_SC_VL_VAL(15_0,
10866 0, dp->vlnt[0] & 0xf,
10867 1, dp->vlnt[1] & 0xf,
10868 2, dp->vlnt[2] & 0xf,
10869 3, dp->vlnt[3] & 0xf,
10870 4, dp->vlnt[4] & 0xf,
10871 5, dp->vlnt[5] & 0xf,
10872 6, dp->vlnt[6] & 0xf,
10873 7, dp->vlnt[7] & 0xf,
10874 8, dp->vlnt[8] & 0xf,
10875 9, dp->vlnt[9] & 0xf,
10876 10, dp->vlnt[10] & 0xf,
10877 11, dp->vlnt[11] & 0xf,
10878 12, dp->vlnt[12] & 0xf,
10879 13, dp->vlnt[13] & 0xf,
10880 14, dp->vlnt[14] & 0xf,
10881 15, dp->vlnt[15] & 0xf));
Mike Marciniszyn77241052015-07-30 15:17:43 -040010882 write_csr(dd, DCC_CFG_SC_VL_TABLE_31_16,
Jubin John17fb4f22016-02-14 20:21:52 -080010883 DC_SC_VL_VAL(31_16,
10884 16, dp->vlnt[16] & 0xf,
10885 17, dp->vlnt[17] & 0xf,
10886 18, dp->vlnt[18] & 0xf,
10887 19, dp->vlnt[19] & 0xf,
10888 20, dp->vlnt[20] & 0xf,
10889 21, dp->vlnt[21] & 0xf,
10890 22, dp->vlnt[22] & 0xf,
10891 23, dp->vlnt[23] & 0xf,
10892 24, dp->vlnt[24] & 0xf,
10893 25, dp->vlnt[25] & 0xf,
10894 26, dp->vlnt[26] & 0xf,
10895 27, dp->vlnt[27] & 0xf,
10896 28, dp->vlnt[28] & 0xf,
10897 29, dp->vlnt[29] & 0xf,
10898 30, dp->vlnt[30] & 0xf,
10899 31, dp->vlnt[31] & 0xf));
Mike Marciniszyn77241052015-07-30 15:17:43 -040010900}
10901
10902static void nonzero_msg(struct hfi1_devdata *dd, int idx, const char *what,
10903 u16 limit)
10904{
10905 if (limit != 0)
10906 dd_dev_info(dd, "Invalid %s limit %d on VL %d, ignoring\n",
Jubin John17fb4f22016-02-14 20:21:52 -080010907 what, (int)limit, idx);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010908}
10909
10910/* change only the shared limit portion of SendCmGLobalCredit */
10911static void set_global_shared(struct hfi1_devdata *dd, u16 limit)
10912{
10913 u64 reg;
10914
10915 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
10916 reg &= ~SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SMASK;
10917 reg |= (u64)limit << SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SHIFT;
10918 write_csr(dd, SEND_CM_GLOBAL_CREDIT, reg);
10919}
10920
10921/* change only the total credit limit portion of SendCmGLobalCredit */
10922static void set_global_limit(struct hfi1_devdata *dd, u16 limit)
10923{
10924 u64 reg;
10925
10926 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
10927 reg &= ~SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SMASK;
10928 reg |= (u64)limit << SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SHIFT;
10929 write_csr(dd, SEND_CM_GLOBAL_CREDIT, reg);
10930}
10931
10932/* set the given per-VL shared limit */
10933static void set_vl_shared(struct hfi1_devdata *dd, int vl, u16 limit)
10934{
10935 u64 reg;
10936 u32 addr;
10937
10938 if (vl < TXE_NUM_DATA_VL)
10939 addr = SEND_CM_CREDIT_VL + (8 * vl);
10940 else
10941 addr = SEND_CM_CREDIT_VL15;
10942
10943 reg = read_csr(dd, addr);
10944 reg &= ~SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_SMASK;
10945 reg |= (u64)limit << SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_SHIFT;
10946 write_csr(dd, addr, reg);
10947}
10948
10949/* set the given per-VL dedicated limit */
10950static void set_vl_dedicated(struct hfi1_devdata *dd, int vl, u16 limit)
10951{
10952 u64 reg;
10953 u32 addr;
10954
10955 if (vl < TXE_NUM_DATA_VL)
10956 addr = SEND_CM_CREDIT_VL + (8 * vl);
10957 else
10958 addr = SEND_CM_CREDIT_VL15;
10959
10960 reg = read_csr(dd, addr);
10961 reg &= ~SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_SMASK;
10962 reg |= (u64)limit << SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_SHIFT;
10963 write_csr(dd, addr, reg);
10964}
10965
10966/* spin until the given per-VL status mask bits clear */
10967static void wait_for_vl_status_clear(struct hfi1_devdata *dd, u64 mask,
10968 const char *which)
10969{
10970 unsigned long timeout;
10971 u64 reg;
10972
10973 timeout = jiffies + msecs_to_jiffies(VL_STATUS_CLEAR_TIMEOUT);
10974 while (1) {
10975 reg = read_csr(dd, SEND_CM_CREDIT_USED_STATUS) & mask;
10976
10977 if (reg == 0)
10978 return; /* success */
10979 if (time_after(jiffies, timeout))
10980 break; /* timed out */
10981 udelay(1);
10982 }
10983
10984 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010985 "%s credit change status not clearing after %dms, mask 0x%llx, not clear 0x%llx\n",
10986 which, VL_STATUS_CLEAR_TIMEOUT, mask, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010987 /*
10988 * If this occurs, it is likely there was a credit loss on the link.
10989 * The only recovery from that is a link bounce.
10990 */
10991 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010992 "Continuing anyway. A credit loss may occur. Suggest a link bounce\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -040010993}
10994
10995/*
10996 * The number of credits on the VLs may be changed while everything
10997 * is "live", but the following algorithm must be followed due to
10998 * how the hardware is actually implemented. In particular,
10999 * Return_Credit_Status[] is the only correct status check.
11000 *
11001 * if (reducing Global_Shared_Credit_Limit or any shared limit changing)
11002 * set Global_Shared_Credit_Limit = 0
11003 * use_all_vl = 1
11004 * mask0 = all VLs that are changing either dedicated or shared limits
11005 * set Shared_Limit[mask0] = 0
11006 * spin until Return_Credit_Status[use_all_vl ? all VL : mask0] == 0
11007 * if (changing any dedicated limit)
11008 * mask1 = all VLs that are lowering dedicated limits
11009 * lower Dedicated_Limit[mask1]
11010 * spin until Return_Credit_Status[mask1] == 0
11011 * raise Dedicated_Limits
11012 * raise Shared_Limits
11013 * raise Global_Shared_Credit_Limit
11014 *
11015 * lower = if the new limit is lower, set the limit to the new value
11016 * raise = if the new limit is higher than the current value (may be changed
11017 * earlier in the algorithm), set the new limit to the new value
11018 */
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011019int set_buffer_control(struct hfi1_pportdata *ppd,
11020 struct buffer_control *new_bc)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011021{
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011022 struct hfi1_devdata *dd = ppd->dd;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011023 u64 changing_mask, ld_mask, stat_mask;
11024 int change_count;
11025 int i, use_all_mask;
11026 int this_shared_changing;
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011027 int vl_count = 0, ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011028 /*
11029 * A0: add the variable any_shared_limit_changing below and in the
11030 * algorithm above. If removing A0 support, it can be removed.
11031 */
11032 int any_shared_limit_changing;
11033 struct buffer_control cur_bc;
11034 u8 changing[OPA_MAX_VLS];
11035 u8 lowering_dedicated[OPA_MAX_VLS];
11036 u16 cur_total;
11037 u32 new_total = 0;
11038 const u64 all_mask =
11039 SEND_CM_CREDIT_USED_STATUS_VL0_RETURN_CREDIT_STATUS_SMASK
11040 | SEND_CM_CREDIT_USED_STATUS_VL1_RETURN_CREDIT_STATUS_SMASK
11041 | SEND_CM_CREDIT_USED_STATUS_VL2_RETURN_CREDIT_STATUS_SMASK
11042 | SEND_CM_CREDIT_USED_STATUS_VL3_RETURN_CREDIT_STATUS_SMASK
11043 | SEND_CM_CREDIT_USED_STATUS_VL4_RETURN_CREDIT_STATUS_SMASK
11044 | SEND_CM_CREDIT_USED_STATUS_VL5_RETURN_CREDIT_STATUS_SMASK
11045 | SEND_CM_CREDIT_USED_STATUS_VL6_RETURN_CREDIT_STATUS_SMASK
11046 | SEND_CM_CREDIT_USED_STATUS_VL7_RETURN_CREDIT_STATUS_SMASK
11047 | SEND_CM_CREDIT_USED_STATUS_VL15_RETURN_CREDIT_STATUS_SMASK;
11048
11049#define valid_vl(idx) ((idx) < TXE_NUM_DATA_VL || (idx) == 15)
11050#define NUM_USABLE_VLS 16 /* look at VL15 and less */
11051
Mike Marciniszyn77241052015-07-30 15:17:43 -040011052 /* find the new total credits, do sanity check on unused VLs */
11053 for (i = 0; i < OPA_MAX_VLS; i++) {
11054 if (valid_vl(i)) {
11055 new_total += be16_to_cpu(new_bc->vl[i].dedicated);
11056 continue;
11057 }
11058 nonzero_msg(dd, i, "dedicated",
Jubin John17fb4f22016-02-14 20:21:52 -080011059 be16_to_cpu(new_bc->vl[i].dedicated));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011060 nonzero_msg(dd, i, "shared",
Jubin John17fb4f22016-02-14 20:21:52 -080011061 be16_to_cpu(new_bc->vl[i].shared));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011062 new_bc->vl[i].dedicated = 0;
11063 new_bc->vl[i].shared = 0;
11064 }
11065 new_total += be16_to_cpu(new_bc->overall_shared_limit);
Dean Luickbff14bb2015-12-17 19:24:13 -050011066
Mike Marciniszyn77241052015-07-30 15:17:43 -040011067 /* fetch the current values */
11068 get_buffer_control(dd, &cur_bc, &cur_total);
11069
11070 /*
11071 * Create the masks we will use.
11072 */
11073 memset(changing, 0, sizeof(changing));
11074 memset(lowering_dedicated, 0, sizeof(lowering_dedicated));
Jubin John4d114fd2016-02-14 20:21:43 -080011075 /*
11076 * NOTE: Assumes that the individual VL bits are adjacent and in
11077 * increasing order
11078 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040011079 stat_mask =
11080 SEND_CM_CREDIT_USED_STATUS_VL0_RETURN_CREDIT_STATUS_SMASK;
11081 changing_mask = 0;
11082 ld_mask = 0;
11083 change_count = 0;
11084 any_shared_limit_changing = 0;
11085 for (i = 0; i < NUM_USABLE_VLS; i++, stat_mask <<= 1) {
11086 if (!valid_vl(i))
11087 continue;
11088 this_shared_changing = new_bc->vl[i].shared
11089 != cur_bc.vl[i].shared;
11090 if (this_shared_changing)
11091 any_shared_limit_changing = 1;
Jubin Johnd0d236e2016-02-14 20:20:15 -080011092 if (new_bc->vl[i].dedicated != cur_bc.vl[i].dedicated ||
11093 this_shared_changing) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011094 changing[i] = 1;
11095 changing_mask |= stat_mask;
11096 change_count++;
11097 }
11098 if (be16_to_cpu(new_bc->vl[i].dedicated) <
11099 be16_to_cpu(cur_bc.vl[i].dedicated)) {
11100 lowering_dedicated[i] = 1;
11101 ld_mask |= stat_mask;
11102 }
11103 }
11104
11105 /* bracket the credit change with a total adjustment */
11106 if (new_total > cur_total)
11107 set_global_limit(dd, new_total);
11108
11109 /*
11110 * Start the credit change algorithm.
11111 */
11112 use_all_mask = 0;
11113 if ((be16_to_cpu(new_bc->overall_shared_limit) <
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050011114 be16_to_cpu(cur_bc.overall_shared_limit)) ||
11115 (is_ax(dd) && any_shared_limit_changing)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011116 set_global_shared(dd, 0);
11117 cur_bc.overall_shared_limit = 0;
11118 use_all_mask = 1;
11119 }
11120
11121 for (i = 0; i < NUM_USABLE_VLS; i++) {
11122 if (!valid_vl(i))
11123 continue;
11124
11125 if (changing[i]) {
11126 set_vl_shared(dd, i, 0);
11127 cur_bc.vl[i].shared = 0;
11128 }
11129 }
11130
11131 wait_for_vl_status_clear(dd, use_all_mask ? all_mask : changing_mask,
Jubin John17fb4f22016-02-14 20:21:52 -080011132 "shared");
Mike Marciniszyn77241052015-07-30 15:17:43 -040011133
11134 if (change_count > 0) {
11135 for (i = 0; i < NUM_USABLE_VLS; i++) {
11136 if (!valid_vl(i))
11137 continue;
11138
11139 if (lowering_dedicated[i]) {
11140 set_vl_dedicated(dd, i,
Jubin John17fb4f22016-02-14 20:21:52 -080011141 be16_to_cpu(new_bc->
11142 vl[i].dedicated));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011143 cur_bc.vl[i].dedicated =
11144 new_bc->vl[i].dedicated;
11145 }
11146 }
11147
11148 wait_for_vl_status_clear(dd, ld_mask, "dedicated");
11149
11150 /* now raise all dedicated that are going up */
11151 for (i = 0; i < NUM_USABLE_VLS; i++) {
11152 if (!valid_vl(i))
11153 continue;
11154
11155 if (be16_to_cpu(new_bc->vl[i].dedicated) >
11156 be16_to_cpu(cur_bc.vl[i].dedicated))
11157 set_vl_dedicated(dd, i,
Jubin John17fb4f22016-02-14 20:21:52 -080011158 be16_to_cpu(new_bc->
11159 vl[i].dedicated));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011160 }
11161 }
11162
11163 /* next raise all shared that are going up */
11164 for (i = 0; i < NUM_USABLE_VLS; i++) {
11165 if (!valid_vl(i))
11166 continue;
11167
11168 if (be16_to_cpu(new_bc->vl[i].shared) >
11169 be16_to_cpu(cur_bc.vl[i].shared))
11170 set_vl_shared(dd, i, be16_to_cpu(new_bc->vl[i].shared));
11171 }
11172
11173 /* finally raise the global shared */
11174 if (be16_to_cpu(new_bc->overall_shared_limit) >
Jubin John17fb4f22016-02-14 20:21:52 -080011175 be16_to_cpu(cur_bc.overall_shared_limit))
Mike Marciniszyn77241052015-07-30 15:17:43 -040011176 set_global_shared(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080011177 be16_to_cpu(new_bc->overall_shared_limit));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011178
11179 /* bracket the credit change with a total adjustment */
11180 if (new_total < cur_total)
11181 set_global_limit(dd, new_total);
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011182
11183 /*
11184 * Determine the actual number of operational VLS using the number of
11185 * dedicated and shared credits for each VL.
11186 */
11187 if (change_count > 0) {
11188 for (i = 0; i < TXE_NUM_DATA_VL; i++)
11189 if (be16_to_cpu(new_bc->vl[i].dedicated) > 0 ||
11190 be16_to_cpu(new_bc->vl[i].shared) > 0)
11191 vl_count++;
11192 ppd->actual_vls_operational = vl_count;
11193 ret = sdma_map_init(dd, ppd->port - 1, vl_count ?
11194 ppd->actual_vls_operational :
11195 ppd->vls_operational,
11196 NULL);
11197 if (ret == 0)
11198 ret = pio_map_init(dd, ppd->port - 1, vl_count ?
11199 ppd->actual_vls_operational :
11200 ppd->vls_operational, NULL);
11201 if (ret)
11202 return ret;
11203 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040011204 return 0;
11205}
11206
11207/*
11208 * Read the given fabric manager table. Return the size of the
11209 * table (in bytes) on success, and a negative error code on
11210 * failure.
11211 */
11212int fm_get_table(struct hfi1_pportdata *ppd, int which, void *t)
11213
11214{
11215 int size;
11216 struct vl_arb_cache *vlc;
11217
11218 switch (which) {
11219 case FM_TBL_VL_HIGH_ARB:
11220 size = 256;
11221 /*
11222 * OPA specifies 128 elements (of 2 bytes each), though
11223 * HFI supports only 16 elements in h/w.
11224 */
11225 vlc = vl_arb_lock_cache(ppd, HI_PRIO_TABLE);
11226 vl_arb_get_cache(vlc, t);
11227 vl_arb_unlock_cache(ppd, HI_PRIO_TABLE);
11228 break;
11229 case FM_TBL_VL_LOW_ARB:
11230 size = 256;
11231 /*
11232 * OPA specifies 128 elements (of 2 bytes each), though
11233 * HFI supports only 16 elements in h/w.
11234 */
11235 vlc = vl_arb_lock_cache(ppd, LO_PRIO_TABLE);
11236 vl_arb_get_cache(vlc, t);
11237 vl_arb_unlock_cache(ppd, LO_PRIO_TABLE);
11238 break;
11239 case FM_TBL_BUFFER_CONTROL:
11240 size = get_buffer_control(ppd->dd, t, NULL);
11241 break;
11242 case FM_TBL_SC2VLNT:
11243 size = get_sc2vlnt(ppd->dd, t);
11244 break;
11245 case FM_TBL_VL_PREEMPT_ELEMS:
11246 size = 256;
11247 /* OPA specifies 128 elements, of 2 bytes each */
11248 get_vlarb_preempt(ppd->dd, OPA_MAX_VLS, t);
11249 break;
11250 case FM_TBL_VL_PREEMPT_MATRIX:
11251 size = 256;
11252 /*
11253 * OPA specifies that this is the same size as the VL
11254 * arbitration tables (i.e., 256 bytes).
11255 */
11256 break;
11257 default:
11258 return -EINVAL;
11259 }
11260 return size;
11261}
11262
11263/*
11264 * Write the given fabric manager table.
11265 */
11266int fm_set_table(struct hfi1_pportdata *ppd, int which, void *t)
11267{
11268 int ret = 0;
11269 struct vl_arb_cache *vlc;
11270
11271 switch (which) {
11272 case FM_TBL_VL_HIGH_ARB:
11273 vlc = vl_arb_lock_cache(ppd, HI_PRIO_TABLE);
11274 if (vl_arb_match_cache(vlc, t)) {
11275 vl_arb_unlock_cache(ppd, HI_PRIO_TABLE);
11276 break;
11277 }
11278 vl_arb_set_cache(vlc, t);
11279 vl_arb_unlock_cache(ppd, HI_PRIO_TABLE);
11280 ret = set_vl_weights(ppd, SEND_HIGH_PRIORITY_LIST,
11281 VL_ARB_HIGH_PRIO_TABLE_SIZE, t);
11282 break;
11283 case FM_TBL_VL_LOW_ARB:
11284 vlc = vl_arb_lock_cache(ppd, LO_PRIO_TABLE);
11285 if (vl_arb_match_cache(vlc, t)) {
11286 vl_arb_unlock_cache(ppd, LO_PRIO_TABLE);
11287 break;
11288 }
11289 vl_arb_set_cache(vlc, t);
11290 vl_arb_unlock_cache(ppd, LO_PRIO_TABLE);
11291 ret = set_vl_weights(ppd, SEND_LOW_PRIORITY_LIST,
11292 VL_ARB_LOW_PRIO_TABLE_SIZE, t);
11293 break;
11294 case FM_TBL_BUFFER_CONTROL:
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011295 ret = set_buffer_control(ppd, t);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011296 break;
11297 case FM_TBL_SC2VLNT:
11298 set_sc2vlnt(ppd->dd, t);
11299 break;
11300 default:
11301 ret = -EINVAL;
11302 }
11303 return ret;
11304}
11305
11306/*
11307 * Disable all data VLs.
11308 *
11309 * Return 0 if disabled, non-zero if the VLs cannot be disabled.
11310 */
11311static int disable_data_vls(struct hfi1_devdata *dd)
11312{
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050011313 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -040011314 return 1;
11315
11316 pio_send_control(dd, PSC_DATA_VL_DISABLE);
11317
11318 return 0;
11319}
11320
11321/*
11322 * open_fill_data_vls() - the counterpart to stop_drain_data_vls().
11323 * Just re-enables all data VLs (the "fill" part happens
11324 * automatically - the name was chosen for symmetry with
11325 * stop_drain_data_vls()).
11326 *
11327 * Return 0 if successful, non-zero if the VLs cannot be enabled.
11328 */
11329int open_fill_data_vls(struct hfi1_devdata *dd)
11330{
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050011331 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -040011332 return 1;
11333
11334 pio_send_control(dd, PSC_DATA_VL_ENABLE);
11335
11336 return 0;
11337}
11338
11339/*
11340 * drain_data_vls() - assumes that disable_data_vls() has been called,
11341 * wait for occupancy (of per-VL FIFOs) for all contexts, and SDMA
11342 * engines to drop to 0.
11343 */
11344static void drain_data_vls(struct hfi1_devdata *dd)
11345{
11346 sc_wait(dd);
11347 sdma_wait(dd);
11348 pause_for_credit_return(dd);
11349}
11350
11351/*
11352 * stop_drain_data_vls() - disable, then drain all per-VL fifos.
11353 *
11354 * Use open_fill_data_vls() to resume using data VLs. This pair is
11355 * meant to be used like this:
11356 *
11357 * stop_drain_data_vls(dd);
11358 * // do things with per-VL resources
11359 * open_fill_data_vls(dd);
11360 */
11361int stop_drain_data_vls(struct hfi1_devdata *dd)
11362{
11363 int ret;
11364
11365 ret = disable_data_vls(dd);
11366 if (ret == 0)
11367 drain_data_vls(dd);
11368
11369 return ret;
11370}
11371
11372/*
11373 * Convert a nanosecond time to a cclock count. No matter how slow
11374 * the cclock, a non-zero ns will always have a non-zero result.
11375 */
11376u32 ns_to_cclock(struct hfi1_devdata *dd, u32 ns)
11377{
11378 u32 cclocks;
11379
11380 if (dd->icode == ICODE_FPGA_EMULATION)
11381 cclocks = (ns * 1000) / FPGA_CCLOCK_PS;
11382 else /* simulation pretends to be ASIC */
11383 cclocks = (ns * 1000) / ASIC_CCLOCK_PS;
11384 if (ns && !cclocks) /* if ns nonzero, must be at least 1 */
11385 cclocks = 1;
11386 return cclocks;
11387}
11388
11389/*
11390 * Convert a cclock count to nanoseconds. Not matter how slow
11391 * the cclock, a non-zero cclocks will always have a non-zero result.
11392 */
11393u32 cclock_to_ns(struct hfi1_devdata *dd, u32 cclocks)
11394{
11395 u32 ns;
11396
11397 if (dd->icode == ICODE_FPGA_EMULATION)
11398 ns = (cclocks * FPGA_CCLOCK_PS) / 1000;
11399 else /* simulation pretends to be ASIC */
11400 ns = (cclocks * ASIC_CCLOCK_PS) / 1000;
11401 if (cclocks && !ns)
11402 ns = 1;
11403 return ns;
11404}
11405
11406/*
11407 * Dynamically adjust the receive interrupt timeout for a context based on
11408 * incoming packet rate.
11409 *
11410 * NOTE: Dynamic adjustment does not allow rcv_intr_count to be zero.
11411 */
11412static void adjust_rcv_timeout(struct hfi1_ctxtdata *rcd, u32 npkts)
11413{
11414 struct hfi1_devdata *dd = rcd->dd;
11415 u32 timeout = rcd->rcvavail_timeout;
11416
11417 /*
11418 * This algorithm doubles or halves the timeout depending on whether
11419 * the number of packets received in this interrupt were less than or
11420 * greater equal the interrupt count.
11421 *
11422 * The calculations below do not allow a steady state to be achieved.
11423 * Only at the endpoints it is possible to have an unchanging
11424 * timeout.
11425 */
11426 if (npkts < rcv_intr_count) {
11427 /*
11428 * Not enough packets arrived before the timeout, adjust
11429 * timeout downward.
11430 */
11431 if (timeout < 2) /* already at minimum? */
11432 return;
11433 timeout >>= 1;
11434 } else {
11435 /*
11436 * More than enough packets arrived before the timeout, adjust
11437 * timeout upward.
11438 */
11439 if (timeout >= dd->rcv_intr_timeout_csr) /* already at max? */
11440 return;
11441 timeout = min(timeout << 1, dd->rcv_intr_timeout_csr);
11442 }
11443
11444 rcd->rcvavail_timeout = timeout;
Jubin John4d114fd2016-02-14 20:21:43 -080011445 /*
11446 * timeout cannot be larger than rcv_intr_timeout_csr which has already
11447 * been verified to be in range
11448 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040011449 write_kctxt_csr(dd, rcd->ctxt, RCV_AVAIL_TIME_OUT,
Jubin John17fb4f22016-02-14 20:21:52 -080011450 (u64)timeout <<
11451 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011452}
11453
11454void update_usrhead(struct hfi1_ctxtdata *rcd, u32 hd, u32 updegr, u32 egrhd,
11455 u32 intr_adjust, u32 npkts)
11456{
11457 struct hfi1_devdata *dd = rcd->dd;
11458 u64 reg;
11459 u32 ctxt = rcd->ctxt;
11460
11461 /*
11462 * Need to write timeout register before updating RcvHdrHead to ensure
11463 * that a new value is used when the HW decides to restart counting.
11464 */
11465 if (intr_adjust)
11466 adjust_rcv_timeout(rcd, npkts);
11467 if (updegr) {
11468 reg = (egrhd & RCV_EGR_INDEX_HEAD_HEAD_MASK)
11469 << RCV_EGR_INDEX_HEAD_HEAD_SHIFT;
11470 write_uctxt_csr(dd, ctxt, RCV_EGR_INDEX_HEAD, reg);
11471 }
11472 mmiowb();
11473 reg = ((u64)rcv_intr_count << RCV_HDR_HEAD_COUNTER_SHIFT) |
11474 (((u64)hd & RCV_HDR_HEAD_HEAD_MASK)
11475 << RCV_HDR_HEAD_HEAD_SHIFT);
11476 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, reg);
11477 mmiowb();
11478}
11479
11480u32 hdrqempty(struct hfi1_ctxtdata *rcd)
11481{
11482 u32 head, tail;
11483
11484 head = (read_uctxt_csr(rcd->dd, rcd->ctxt, RCV_HDR_HEAD)
11485 & RCV_HDR_HEAD_HEAD_SMASK) >> RCV_HDR_HEAD_HEAD_SHIFT;
11486
11487 if (rcd->rcvhdrtail_kvaddr)
11488 tail = get_rcvhdrtail(rcd);
11489 else
11490 tail = read_uctxt_csr(rcd->dd, rcd->ctxt, RCV_HDR_TAIL);
11491
11492 return head == tail;
11493}
11494
11495/*
11496 * Context Control and Receive Array encoding for buffer size:
11497 * 0x0 invalid
11498 * 0x1 4 KB
11499 * 0x2 8 KB
11500 * 0x3 16 KB
11501 * 0x4 32 KB
11502 * 0x5 64 KB
11503 * 0x6 128 KB
11504 * 0x7 256 KB
11505 * 0x8 512 KB (Receive Array only)
11506 * 0x9 1 MB (Receive Array only)
11507 * 0xa 2 MB (Receive Array only)
11508 *
11509 * 0xB-0xF - reserved (Receive Array only)
11510 *
11511 *
11512 * This routine assumes that the value has already been sanity checked.
11513 */
11514static u32 encoded_size(u32 size)
11515{
11516 switch (size) {
Jubin John8638b772016-02-14 20:19:24 -080011517 case 4 * 1024: return 0x1;
11518 case 8 * 1024: return 0x2;
11519 case 16 * 1024: return 0x3;
11520 case 32 * 1024: return 0x4;
11521 case 64 * 1024: return 0x5;
11522 case 128 * 1024: return 0x6;
11523 case 256 * 1024: return 0x7;
11524 case 512 * 1024: return 0x8;
11525 case 1 * 1024 * 1024: return 0x9;
11526 case 2 * 1024 * 1024: return 0xa;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011527 }
11528 return 0x1; /* if invalid, go with the minimum size */
11529}
11530
11531void hfi1_rcvctrl(struct hfi1_devdata *dd, unsigned int op, int ctxt)
11532{
11533 struct hfi1_ctxtdata *rcd;
11534 u64 rcvctrl, reg;
11535 int did_enable = 0;
11536
11537 rcd = dd->rcd[ctxt];
11538 if (!rcd)
11539 return;
11540
11541 hfi1_cdbg(RCVCTRL, "ctxt %d op 0x%x", ctxt, op);
11542
11543 rcvctrl = read_kctxt_csr(dd, ctxt, RCV_CTXT_CTRL);
11544 /* if the context already enabled, don't do the extra steps */
Jubin Johnd0d236e2016-02-14 20:20:15 -080011545 if ((op & HFI1_RCVCTRL_CTXT_ENB) &&
11546 !(rcvctrl & RCV_CTXT_CTRL_ENABLE_SMASK)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011547 /* reset the tail and hdr addresses, and sequence count */
11548 write_kctxt_csr(dd, ctxt, RCV_HDR_ADDR,
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011549 rcd->rcvhdrq_dma);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011550 if (HFI1_CAP_KGET_MASK(rcd->flags, DMA_RTAIL))
11551 write_kctxt_csr(dd, ctxt, RCV_HDR_TAIL_ADDR,
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011552 rcd->rcvhdrqtailaddr_dma);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011553 rcd->seq_cnt = 1;
11554
11555 /* reset the cached receive header queue head value */
11556 rcd->head = 0;
11557
11558 /*
11559 * Zero the receive header queue so we don't get false
11560 * positives when checking the sequence number. The
11561 * sequence numbers could land exactly on the same spot.
11562 * E.g. a rcd restart before the receive header wrapped.
11563 */
11564 memset(rcd->rcvhdrq, 0, rcd->rcvhdrq_size);
11565
11566 /* starting timeout */
11567 rcd->rcvavail_timeout = dd->rcv_intr_timeout_csr;
11568
11569 /* enable the context */
11570 rcvctrl |= RCV_CTXT_CTRL_ENABLE_SMASK;
11571
11572 /* clean the egr buffer size first */
11573 rcvctrl &= ~RCV_CTXT_CTRL_EGR_BUF_SIZE_SMASK;
11574 rcvctrl |= ((u64)encoded_size(rcd->egrbufs.rcvtid_size)
11575 & RCV_CTXT_CTRL_EGR_BUF_SIZE_MASK)
11576 << RCV_CTXT_CTRL_EGR_BUF_SIZE_SHIFT;
11577
11578 /* zero RcvHdrHead - set RcvHdrHead.Counter after enable */
11579 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, 0);
11580 did_enable = 1;
11581
11582 /* zero RcvEgrIndexHead */
11583 write_uctxt_csr(dd, ctxt, RCV_EGR_INDEX_HEAD, 0);
11584
11585 /* set eager count and base index */
11586 reg = (((u64)(rcd->egrbufs.alloced >> RCV_SHIFT)
11587 & RCV_EGR_CTRL_EGR_CNT_MASK)
11588 << RCV_EGR_CTRL_EGR_CNT_SHIFT) |
11589 (((rcd->eager_base >> RCV_SHIFT)
11590 & RCV_EGR_CTRL_EGR_BASE_INDEX_MASK)
11591 << RCV_EGR_CTRL_EGR_BASE_INDEX_SHIFT);
11592 write_kctxt_csr(dd, ctxt, RCV_EGR_CTRL, reg);
11593
11594 /*
11595 * Set TID (expected) count and base index.
11596 * rcd->expected_count is set to individual RcvArray entries,
11597 * not pairs, and the CSR takes a pair-count in groups of
11598 * four, so divide by 8.
11599 */
11600 reg = (((rcd->expected_count >> RCV_SHIFT)
11601 & RCV_TID_CTRL_TID_PAIR_CNT_MASK)
11602 << RCV_TID_CTRL_TID_PAIR_CNT_SHIFT) |
11603 (((rcd->expected_base >> RCV_SHIFT)
11604 & RCV_TID_CTRL_TID_BASE_INDEX_MASK)
11605 << RCV_TID_CTRL_TID_BASE_INDEX_SHIFT);
11606 write_kctxt_csr(dd, ctxt, RCV_TID_CTRL, reg);
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050011607 if (ctxt == HFI1_CTRL_CTXT)
11608 write_csr(dd, RCV_VL15, HFI1_CTRL_CTXT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011609 }
11610 if (op & HFI1_RCVCTRL_CTXT_DIS) {
11611 write_csr(dd, RCV_VL15, 0);
Mark F. Brown46b010d2015-11-09 19:18:20 -050011612 /*
11613 * When receive context is being disabled turn on tail
11614 * update with a dummy tail address and then disable
11615 * receive context.
11616 */
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011617 if (dd->rcvhdrtail_dummy_dma) {
Mark F. Brown46b010d2015-11-09 19:18:20 -050011618 write_kctxt_csr(dd, ctxt, RCV_HDR_TAIL_ADDR,
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011619 dd->rcvhdrtail_dummy_dma);
Mitko Haralanov566c1572016-02-03 14:32:49 -080011620 /* Enabling RcvCtxtCtrl.TailUpd is intentional. */
Mark F. Brown46b010d2015-11-09 19:18:20 -050011621 rcvctrl |= RCV_CTXT_CTRL_TAIL_UPD_SMASK;
11622 }
11623
Mike Marciniszyn77241052015-07-30 15:17:43 -040011624 rcvctrl &= ~RCV_CTXT_CTRL_ENABLE_SMASK;
11625 }
11626 if (op & HFI1_RCVCTRL_INTRAVAIL_ENB)
11627 rcvctrl |= RCV_CTXT_CTRL_INTR_AVAIL_SMASK;
11628 if (op & HFI1_RCVCTRL_INTRAVAIL_DIS)
11629 rcvctrl &= ~RCV_CTXT_CTRL_INTR_AVAIL_SMASK;
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011630 if (op & HFI1_RCVCTRL_TAILUPD_ENB && rcd->rcvhdrqtailaddr_dma)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011631 rcvctrl |= RCV_CTXT_CTRL_TAIL_UPD_SMASK;
Mitko Haralanov566c1572016-02-03 14:32:49 -080011632 if (op & HFI1_RCVCTRL_TAILUPD_DIS) {
11633 /* See comment on RcvCtxtCtrl.TailUpd above */
11634 if (!(op & HFI1_RCVCTRL_CTXT_DIS))
11635 rcvctrl &= ~RCV_CTXT_CTRL_TAIL_UPD_SMASK;
11636 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040011637 if (op & HFI1_RCVCTRL_TIDFLOW_ENB)
11638 rcvctrl |= RCV_CTXT_CTRL_TID_FLOW_ENABLE_SMASK;
11639 if (op & HFI1_RCVCTRL_TIDFLOW_DIS)
11640 rcvctrl &= ~RCV_CTXT_CTRL_TID_FLOW_ENABLE_SMASK;
11641 if (op & HFI1_RCVCTRL_ONE_PKT_EGR_ENB) {
Jubin John4d114fd2016-02-14 20:21:43 -080011642 /*
11643 * In one-packet-per-eager mode, the size comes from
11644 * the RcvArray entry.
11645 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040011646 rcvctrl &= ~RCV_CTXT_CTRL_EGR_BUF_SIZE_SMASK;
11647 rcvctrl |= RCV_CTXT_CTRL_ONE_PACKET_PER_EGR_BUFFER_SMASK;
11648 }
11649 if (op & HFI1_RCVCTRL_ONE_PKT_EGR_DIS)
11650 rcvctrl &= ~RCV_CTXT_CTRL_ONE_PACKET_PER_EGR_BUFFER_SMASK;
11651 if (op & HFI1_RCVCTRL_NO_RHQ_DROP_ENB)
11652 rcvctrl |= RCV_CTXT_CTRL_DONT_DROP_RHQ_FULL_SMASK;
11653 if (op & HFI1_RCVCTRL_NO_RHQ_DROP_DIS)
11654 rcvctrl &= ~RCV_CTXT_CTRL_DONT_DROP_RHQ_FULL_SMASK;
11655 if (op & HFI1_RCVCTRL_NO_EGR_DROP_ENB)
11656 rcvctrl |= RCV_CTXT_CTRL_DONT_DROP_EGR_FULL_SMASK;
11657 if (op & HFI1_RCVCTRL_NO_EGR_DROP_DIS)
11658 rcvctrl &= ~RCV_CTXT_CTRL_DONT_DROP_EGR_FULL_SMASK;
11659 rcd->rcvctrl = rcvctrl;
11660 hfi1_cdbg(RCVCTRL, "ctxt %d rcvctrl 0x%llx\n", ctxt, rcvctrl);
11661 write_kctxt_csr(dd, ctxt, RCV_CTXT_CTRL, rcd->rcvctrl);
11662
11663 /* work around sticky RcvCtxtStatus.BlockedRHQFull */
Jubin Johnd0d236e2016-02-14 20:20:15 -080011664 if (did_enable &&
11665 (rcvctrl & RCV_CTXT_CTRL_DONT_DROP_RHQ_FULL_SMASK)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011666 reg = read_kctxt_csr(dd, ctxt, RCV_CTXT_STATUS);
11667 if (reg != 0) {
11668 dd_dev_info(dd, "ctxt %d status %lld (blocked)\n",
Jubin John17fb4f22016-02-14 20:21:52 -080011669 ctxt, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011670 read_uctxt_csr(dd, ctxt, RCV_HDR_HEAD);
11671 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, 0x10);
11672 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, 0x00);
11673 read_uctxt_csr(dd, ctxt, RCV_HDR_HEAD);
11674 reg = read_kctxt_csr(dd, ctxt, RCV_CTXT_STATUS);
11675 dd_dev_info(dd, "ctxt %d status %lld (%s blocked)\n",
Jubin John17fb4f22016-02-14 20:21:52 -080011676 ctxt, reg, reg == 0 ? "not" : "still");
Mike Marciniszyn77241052015-07-30 15:17:43 -040011677 }
11678 }
11679
11680 if (did_enable) {
11681 /*
11682 * The interrupt timeout and count must be set after
11683 * the context is enabled to take effect.
11684 */
11685 /* set interrupt timeout */
11686 write_kctxt_csr(dd, ctxt, RCV_AVAIL_TIME_OUT,
Jubin John17fb4f22016-02-14 20:21:52 -080011687 (u64)rcd->rcvavail_timeout <<
Mike Marciniszyn77241052015-07-30 15:17:43 -040011688 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_SHIFT);
11689
11690 /* set RcvHdrHead.Counter, zero RcvHdrHead.Head (again) */
11691 reg = (u64)rcv_intr_count << RCV_HDR_HEAD_COUNTER_SHIFT;
11692 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, reg);
11693 }
11694
11695 if (op & (HFI1_RCVCTRL_TAILUPD_DIS | HFI1_RCVCTRL_CTXT_DIS))
11696 /*
11697 * If the context has been disabled and the Tail Update has
Mark F. Brown46b010d2015-11-09 19:18:20 -050011698 * been cleared, set the RCV_HDR_TAIL_ADDR CSR to dummy address
11699 * so it doesn't contain an address that is invalid.
Mike Marciniszyn77241052015-07-30 15:17:43 -040011700 */
Mark F. Brown46b010d2015-11-09 19:18:20 -050011701 write_kctxt_csr(dd, ctxt, RCV_HDR_TAIL_ADDR,
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011702 dd->rcvhdrtail_dummy_dma);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011703}
11704
Dean Luick582e05c2016-02-18 11:13:01 -080011705u32 hfi1_read_cntrs(struct hfi1_devdata *dd, char **namep, u64 **cntrp)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011706{
11707 int ret;
11708 u64 val = 0;
11709
11710 if (namep) {
11711 ret = dd->cntrnameslen;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011712 *namep = dd->cntrnames;
11713 } else {
11714 const struct cntr_entry *entry;
11715 int i, j;
11716
11717 ret = (dd->ndevcntrs) * sizeof(u64);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011718
11719 /* Get the start of the block of counters */
11720 *cntrp = dd->cntrs;
11721
11722 /*
11723 * Now go and fill in each counter in the block.
11724 */
11725 for (i = 0; i < DEV_CNTR_LAST; i++) {
11726 entry = &dev_cntrs[i];
11727 hfi1_cdbg(CNTR, "reading %s", entry->name);
11728 if (entry->flags & CNTR_DISABLED) {
11729 /* Nothing */
11730 hfi1_cdbg(CNTR, "\tDisabled\n");
11731 } else {
11732 if (entry->flags & CNTR_VL) {
11733 hfi1_cdbg(CNTR, "\tPer VL\n");
11734 for (j = 0; j < C_VL_COUNT; j++) {
11735 val = entry->rw_cntr(entry,
11736 dd, j,
11737 CNTR_MODE_R,
11738 0);
11739 hfi1_cdbg(
11740 CNTR,
11741 "\t\tRead 0x%llx for %d\n",
11742 val, j);
11743 dd->cntrs[entry->offset + j] =
11744 val;
11745 }
Vennila Megavannana699c6c2016-01-11 18:30:56 -050011746 } else if (entry->flags & CNTR_SDMA) {
11747 hfi1_cdbg(CNTR,
11748 "\t Per SDMA Engine\n");
11749 for (j = 0; j < dd->chip_sdma_engines;
11750 j++) {
11751 val =
11752 entry->rw_cntr(entry, dd, j,
11753 CNTR_MODE_R, 0);
11754 hfi1_cdbg(CNTR,
11755 "\t\tRead 0x%llx for %d\n",
11756 val, j);
11757 dd->cntrs[entry->offset + j] =
11758 val;
11759 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040011760 } else {
11761 val = entry->rw_cntr(entry, dd,
11762 CNTR_INVALID_VL,
11763 CNTR_MODE_R, 0);
11764 dd->cntrs[entry->offset] = val;
11765 hfi1_cdbg(CNTR, "\tRead 0x%llx", val);
11766 }
11767 }
11768 }
11769 }
11770 return ret;
11771}
11772
11773/*
11774 * Used by sysfs to create files for hfi stats to read
11775 */
Dean Luick582e05c2016-02-18 11:13:01 -080011776u32 hfi1_read_portcntrs(struct hfi1_pportdata *ppd, char **namep, u64 **cntrp)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011777{
11778 int ret;
11779 u64 val = 0;
11780
11781 if (namep) {
Dean Luick582e05c2016-02-18 11:13:01 -080011782 ret = ppd->dd->portcntrnameslen;
11783 *namep = ppd->dd->portcntrnames;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011784 } else {
11785 const struct cntr_entry *entry;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011786 int i, j;
11787
Dean Luick582e05c2016-02-18 11:13:01 -080011788 ret = ppd->dd->nportcntrs * sizeof(u64);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011789 *cntrp = ppd->cntrs;
11790
11791 for (i = 0; i < PORT_CNTR_LAST; i++) {
11792 entry = &port_cntrs[i];
11793 hfi1_cdbg(CNTR, "reading %s", entry->name);
11794 if (entry->flags & CNTR_DISABLED) {
11795 /* Nothing */
11796 hfi1_cdbg(CNTR, "\tDisabled\n");
11797 continue;
11798 }
11799
11800 if (entry->flags & CNTR_VL) {
11801 hfi1_cdbg(CNTR, "\tPer VL");
11802 for (j = 0; j < C_VL_COUNT; j++) {
11803 val = entry->rw_cntr(entry, ppd, j,
11804 CNTR_MODE_R,
11805 0);
11806 hfi1_cdbg(
11807 CNTR,
11808 "\t\tRead 0x%llx for %d",
11809 val, j);
11810 ppd->cntrs[entry->offset + j] = val;
11811 }
11812 } else {
11813 val = entry->rw_cntr(entry, ppd,
11814 CNTR_INVALID_VL,
11815 CNTR_MODE_R,
11816 0);
11817 ppd->cntrs[entry->offset] = val;
11818 hfi1_cdbg(CNTR, "\tRead 0x%llx", val);
11819 }
11820 }
11821 }
11822 return ret;
11823}
11824
11825static void free_cntrs(struct hfi1_devdata *dd)
11826{
11827 struct hfi1_pportdata *ppd;
11828 int i;
11829
11830 if (dd->synth_stats_timer.data)
11831 del_timer_sync(&dd->synth_stats_timer);
11832 dd->synth_stats_timer.data = 0;
11833 ppd = (struct hfi1_pportdata *)(dd + 1);
11834 for (i = 0; i < dd->num_pports; i++, ppd++) {
11835 kfree(ppd->cntrs);
11836 kfree(ppd->scntrs);
Dennis Dalessandro4eb06882016-01-19 14:42:39 -080011837 free_percpu(ppd->ibport_data.rvp.rc_acks);
11838 free_percpu(ppd->ibport_data.rvp.rc_qacks);
11839 free_percpu(ppd->ibport_data.rvp.rc_delayed_comp);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011840 ppd->cntrs = NULL;
11841 ppd->scntrs = NULL;
Dennis Dalessandro4eb06882016-01-19 14:42:39 -080011842 ppd->ibport_data.rvp.rc_acks = NULL;
11843 ppd->ibport_data.rvp.rc_qacks = NULL;
11844 ppd->ibport_data.rvp.rc_delayed_comp = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011845 }
11846 kfree(dd->portcntrnames);
11847 dd->portcntrnames = NULL;
11848 kfree(dd->cntrs);
11849 dd->cntrs = NULL;
11850 kfree(dd->scntrs);
11851 dd->scntrs = NULL;
11852 kfree(dd->cntrnames);
11853 dd->cntrnames = NULL;
11854}
11855
Mike Marciniszyn77241052015-07-30 15:17:43 -040011856static u64 read_dev_port_cntr(struct hfi1_devdata *dd, struct cntr_entry *entry,
11857 u64 *psval, void *context, int vl)
11858{
11859 u64 val;
11860 u64 sval = *psval;
11861
11862 if (entry->flags & CNTR_DISABLED) {
11863 dd_dev_err(dd, "Counter %s not enabled", entry->name);
11864 return 0;
11865 }
11866
11867 hfi1_cdbg(CNTR, "cntr: %s vl %d psval 0x%llx", entry->name, vl, *psval);
11868
11869 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_R, 0);
11870
11871 /* If its a synthetic counter there is more work we need to do */
11872 if (entry->flags & CNTR_SYNTH) {
11873 if (sval == CNTR_MAX) {
11874 /* No need to read already saturated */
11875 return CNTR_MAX;
11876 }
11877
11878 if (entry->flags & CNTR_32BIT) {
11879 /* 32bit counters can wrap multiple times */
11880 u64 upper = sval >> 32;
11881 u64 lower = (sval << 32) >> 32;
11882
11883 if (lower > val) { /* hw wrapped */
11884 if (upper == CNTR_32BIT_MAX)
11885 val = CNTR_MAX;
11886 else
11887 upper++;
11888 }
11889
11890 if (val != CNTR_MAX)
11891 val = (upper << 32) | val;
11892
11893 } else {
11894 /* If we rolled we are saturated */
11895 if ((val < sval) || (val > CNTR_MAX))
11896 val = CNTR_MAX;
11897 }
11898 }
11899
11900 *psval = val;
11901
11902 hfi1_cdbg(CNTR, "\tNew val=0x%llx", val);
11903
11904 return val;
11905}
11906
11907static u64 write_dev_port_cntr(struct hfi1_devdata *dd,
11908 struct cntr_entry *entry,
11909 u64 *psval, void *context, int vl, u64 data)
11910{
11911 u64 val;
11912
11913 if (entry->flags & CNTR_DISABLED) {
11914 dd_dev_err(dd, "Counter %s not enabled", entry->name);
11915 return 0;
11916 }
11917
11918 hfi1_cdbg(CNTR, "cntr: %s vl %d psval 0x%llx", entry->name, vl, *psval);
11919
11920 if (entry->flags & CNTR_SYNTH) {
11921 *psval = data;
11922 if (entry->flags & CNTR_32BIT) {
11923 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_W,
11924 (data << 32) >> 32);
11925 val = data; /* return the full 64bit value */
11926 } else {
11927 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_W,
11928 data);
11929 }
11930 } else {
11931 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_W, data);
11932 }
11933
11934 *psval = val;
11935
11936 hfi1_cdbg(CNTR, "\tNew val=0x%llx", val);
11937
11938 return val;
11939}
11940
11941u64 read_dev_cntr(struct hfi1_devdata *dd, int index, int vl)
11942{
11943 struct cntr_entry *entry;
11944 u64 *sval;
11945
11946 entry = &dev_cntrs[index];
11947 sval = dd->scntrs + entry->offset;
11948
11949 if (vl != CNTR_INVALID_VL)
11950 sval += vl;
11951
11952 return read_dev_port_cntr(dd, entry, sval, dd, vl);
11953}
11954
11955u64 write_dev_cntr(struct hfi1_devdata *dd, int index, int vl, u64 data)
11956{
11957 struct cntr_entry *entry;
11958 u64 *sval;
11959
11960 entry = &dev_cntrs[index];
11961 sval = dd->scntrs + entry->offset;
11962
11963 if (vl != CNTR_INVALID_VL)
11964 sval += vl;
11965
11966 return write_dev_port_cntr(dd, entry, sval, dd, vl, data);
11967}
11968
11969u64 read_port_cntr(struct hfi1_pportdata *ppd, int index, int vl)
11970{
11971 struct cntr_entry *entry;
11972 u64 *sval;
11973
11974 entry = &port_cntrs[index];
11975 sval = ppd->scntrs + entry->offset;
11976
11977 if (vl != CNTR_INVALID_VL)
11978 sval += vl;
11979
11980 if ((index >= C_RCV_HDR_OVF_FIRST + ppd->dd->num_rcv_contexts) &&
11981 (index <= C_RCV_HDR_OVF_LAST)) {
11982 /* We do not want to bother for disabled contexts */
11983 return 0;
11984 }
11985
11986 return read_dev_port_cntr(ppd->dd, entry, sval, ppd, vl);
11987}
11988
11989u64 write_port_cntr(struct hfi1_pportdata *ppd, int index, int vl, u64 data)
11990{
11991 struct cntr_entry *entry;
11992 u64 *sval;
11993
11994 entry = &port_cntrs[index];
11995 sval = ppd->scntrs + entry->offset;
11996
11997 if (vl != CNTR_INVALID_VL)
11998 sval += vl;
11999
12000 if ((index >= C_RCV_HDR_OVF_FIRST + ppd->dd->num_rcv_contexts) &&
12001 (index <= C_RCV_HDR_OVF_LAST)) {
12002 /* We do not want to bother for disabled contexts */
12003 return 0;
12004 }
12005
12006 return write_dev_port_cntr(ppd->dd, entry, sval, ppd, vl, data);
12007}
12008
12009static void update_synth_timer(unsigned long opaque)
12010{
12011 u64 cur_tx;
12012 u64 cur_rx;
12013 u64 total_flits;
12014 u8 update = 0;
12015 int i, j, vl;
12016 struct hfi1_pportdata *ppd;
12017 struct cntr_entry *entry;
12018
12019 struct hfi1_devdata *dd = (struct hfi1_devdata *)opaque;
12020
12021 /*
12022 * Rather than keep beating on the CSRs pick a minimal set that we can
12023 * check to watch for potential roll over. We can do this by looking at
12024 * the number of flits sent/recv. If the total flits exceeds 32bits then
12025 * we have to iterate all the counters and update.
12026 */
12027 entry = &dev_cntrs[C_DC_RCV_FLITS];
12028 cur_rx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL, CNTR_MODE_R, 0);
12029
12030 entry = &dev_cntrs[C_DC_XMIT_FLITS];
12031 cur_tx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL, CNTR_MODE_R, 0);
12032
12033 hfi1_cdbg(
12034 CNTR,
12035 "[%d] curr tx=0x%llx rx=0x%llx :: last tx=0x%llx rx=0x%llx\n",
12036 dd->unit, cur_tx, cur_rx, dd->last_tx, dd->last_rx);
12037
12038 if ((cur_tx < dd->last_tx) || (cur_rx < dd->last_rx)) {
12039 /*
12040 * May not be strictly necessary to update but it won't hurt and
12041 * simplifies the logic here.
12042 */
12043 update = 1;
12044 hfi1_cdbg(CNTR, "[%d] Tripwire counter rolled, updating",
12045 dd->unit);
12046 } else {
12047 total_flits = (cur_tx - dd->last_tx) + (cur_rx - dd->last_rx);
12048 hfi1_cdbg(CNTR,
12049 "[%d] total flits 0x%llx limit 0x%llx\n", dd->unit,
12050 total_flits, (u64)CNTR_32BIT_MAX);
12051 if (total_flits >= CNTR_32BIT_MAX) {
12052 hfi1_cdbg(CNTR, "[%d] 32bit limit hit, updating",
12053 dd->unit);
12054 update = 1;
12055 }
12056 }
12057
12058 if (update) {
12059 hfi1_cdbg(CNTR, "[%d] Updating dd and ppd counters", dd->unit);
12060 for (i = 0; i < DEV_CNTR_LAST; i++) {
12061 entry = &dev_cntrs[i];
12062 if (entry->flags & CNTR_VL) {
12063 for (vl = 0; vl < C_VL_COUNT; vl++)
12064 read_dev_cntr(dd, i, vl);
12065 } else {
12066 read_dev_cntr(dd, i, CNTR_INVALID_VL);
12067 }
12068 }
12069 ppd = (struct hfi1_pportdata *)(dd + 1);
12070 for (i = 0; i < dd->num_pports; i++, ppd++) {
12071 for (j = 0; j < PORT_CNTR_LAST; j++) {
12072 entry = &port_cntrs[j];
12073 if (entry->flags & CNTR_VL) {
12074 for (vl = 0; vl < C_VL_COUNT; vl++)
12075 read_port_cntr(ppd, j, vl);
12076 } else {
12077 read_port_cntr(ppd, j, CNTR_INVALID_VL);
12078 }
12079 }
12080 }
12081
12082 /*
12083 * We want the value in the register. The goal is to keep track
12084 * of the number of "ticks" not the counter value. In other
12085 * words if the register rolls we want to notice it and go ahead
12086 * and force an update.
12087 */
12088 entry = &dev_cntrs[C_DC_XMIT_FLITS];
12089 dd->last_tx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL,
12090 CNTR_MODE_R, 0);
12091
12092 entry = &dev_cntrs[C_DC_RCV_FLITS];
12093 dd->last_rx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL,
12094 CNTR_MODE_R, 0);
12095
12096 hfi1_cdbg(CNTR, "[%d] setting last tx/rx to 0x%llx 0x%llx",
12097 dd->unit, dd->last_tx, dd->last_rx);
12098
12099 } else {
12100 hfi1_cdbg(CNTR, "[%d] No update necessary", dd->unit);
12101 }
12102
Bart Van Assche48a0cc132016-06-03 12:09:56 -070012103 mod_timer(&dd->synth_stats_timer, jiffies + HZ * SYNTH_CNT_TIME);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012104}
12105
Jianxin Xiong09a79082016-10-25 13:12:40 -070012106#define C_MAX_NAME 16 /* 15 chars + one for /0 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012107static int init_cntrs(struct hfi1_devdata *dd)
12108{
Dean Luickc024c552016-01-11 18:30:57 -050012109 int i, rcv_ctxts, j;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012110 size_t sz;
12111 char *p;
12112 char name[C_MAX_NAME];
12113 struct hfi1_pportdata *ppd;
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012114 const char *bit_type_32 = ",32";
12115 const int bit_type_32_sz = strlen(bit_type_32);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012116
12117 /* set up the stats timer; the add_timer is done at the end */
Muhammad Falak R Wani24523a92015-10-25 16:13:23 +053012118 setup_timer(&dd->synth_stats_timer, update_synth_timer,
12119 (unsigned long)dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012120
12121 /***********************/
12122 /* per device counters */
12123 /***********************/
12124
12125 /* size names and determine how many we have*/
12126 dd->ndevcntrs = 0;
12127 sz = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012128
12129 for (i = 0; i < DEV_CNTR_LAST; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012130 if (dev_cntrs[i].flags & CNTR_DISABLED) {
12131 hfi1_dbg_early("\tSkipping %s\n", dev_cntrs[i].name);
12132 continue;
12133 }
12134
12135 if (dev_cntrs[i].flags & CNTR_VL) {
Dean Luickc024c552016-01-11 18:30:57 -050012136 dev_cntrs[i].offset = dd->ndevcntrs;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012137 for (j = 0; j < C_VL_COUNT; j++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012138 snprintf(name, C_MAX_NAME, "%s%d",
Jubin John17fb4f22016-02-14 20:21:52 -080012139 dev_cntrs[i].name, vl_from_idx(j));
Mike Marciniszyn77241052015-07-30 15:17:43 -040012140 sz += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012141 /* Add ",32" for 32-bit counters */
12142 if (dev_cntrs[i].flags & CNTR_32BIT)
12143 sz += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012144 sz++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012145 dd->ndevcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012146 }
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012147 } else if (dev_cntrs[i].flags & CNTR_SDMA) {
Dean Luickc024c552016-01-11 18:30:57 -050012148 dev_cntrs[i].offset = dd->ndevcntrs;
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012149 for (j = 0; j < dd->chip_sdma_engines; j++) {
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012150 snprintf(name, C_MAX_NAME, "%s%d",
12151 dev_cntrs[i].name, j);
12152 sz += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012153 /* Add ",32" for 32-bit counters */
12154 if (dev_cntrs[i].flags & CNTR_32BIT)
12155 sz += bit_type_32_sz;
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012156 sz++;
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012157 dd->ndevcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012158 }
12159 } else {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012160 /* +1 for newline. */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012161 sz += strlen(dev_cntrs[i].name) + 1;
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012162 /* Add ",32" for 32-bit counters */
12163 if (dev_cntrs[i].flags & CNTR_32BIT)
12164 sz += bit_type_32_sz;
Dean Luickc024c552016-01-11 18:30:57 -050012165 dev_cntrs[i].offset = dd->ndevcntrs;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012166 dd->ndevcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012167 }
12168 }
12169
12170 /* allocate space for the counter values */
Dean Luickc024c552016-01-11 18:30:57 -050012171 dd->cntrs = kcalloc(dd->ndevcntrs, sizeof(u64), GFP_KERNEL);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012172 if (!dd->cntrs)
12173 goto bail;
12174
Dean Luickc024c552016-01-11 18:30:57 -050012175 dd->scntrs = kcalloc(dd->ndevcntrs, sizeof(u64), GFP_KERNEL);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012176 if (!dd->scntrs)
12177 goto bail;
12178
Mike Marciniszyn77241052015-07-30 15:17:43 -040012179 /* allocate space for the counter names */
12180 dd->cntrnameslen = sz;
12181 dd->cntrnames = kmalloc(sz, GFP_KERNEL);
12182 if (!dd->cntrnames)
12183 goto bail;
12184
12185 /* fill in the names */
Dean Luickc024c552016-01-11 18:30:57 -050012186 for (p = dd->cntrnames, i = 0; i < DEV_CNTR_LAST; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012187 if (dev_cntrs[i].flags & CNTR_DISABLED) {
12188 /* Nothing */
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012189 } else if (dev_cntrs[i].flags & CNTR_VL) {
12190 for (j = 0; j < C_VL_COUNT; j++) {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012191 snprintf(name, C_MAX_NAME, "%s%d",
12192 dev_cntrs[i].name,
12193 vl_from_idx(j));
12194 memcpy(p, name, strlen(name));
12195 p += strlen(name);
12196
12197 /* Counter is 32 bits */
12198 if (dev_cntrs[i].flags & CNTR_32BIT) {
12199 memcpy(p, bit_type_32, bit_type_32_sz);
12200 p += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012201 }
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012202
Mike Marciniszyn77241052015-07-30 15:17:43 -040012203 *p++ = '\n';
12204 }
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012205 } else if (dev_cntrs[i].flags & CNTR_SDMA) {
12206 for (j = 0; j < dd->chip_sdma_engines; j++) {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012207 snprintf(name, C_MAX_NAME, "%s%d",
12208 dev_cntrs[i].name, j);
12209 memcpy(p, name, strlen(name));
12210 p += strlen(name);
12211
12212 /* Counter is 32 bits */
12213 if (dev_cntrs[i].flags & CNTR_32BIT) {
12214 memcpy(p, bit_type_32, bit_type_32_sz);
12215 p += bit_type_32_sz;
12216 }
12217
12218 *p++ = '\n';
12219 }
12220 } else {
12221 memcpy(p, dev_cntrs[i].name, strlen(dev_cntrs[i].name));
12222 p += strlen(dev_cntrs[i].name);
12223
12224 /* Counter is 32 bits */
12225 if (dev_cntrs[i].flags & CNTR_32BIT) {
12226 memcpy(p, bit_type_32, bit_type_32_sz);
12227 p += bit_type_32_sz;
12228 }
12229
12230 *p++ = '\n';
Mike Marciniszyn77241052015-07-30 15:17:43 -040012231 }
12232 }
12233
12234 /*********************/
12235 /* per port counters */
12236 /*********************/
12237
12238 /*
12239 * Go through the counters for the overflows and disable the ones we
12240 * don't need. This varies based on platform so we need to do it
12241 * dynamically here.
12242 */
12243 rcv_ctxts = dd->num_rcv_contexts;
12244 for (i = C_RCV_HDR_OVF_FIRST + rcv_ctxts;
12245 i <= C_RCV_HDR_OVF_LAST; i++) {
12246 port_cntrs[i].flags |= CNTR_DISABLED;
12247 }
12248
12249 /* size port counter names and determine how many we have*/
12250 sz = 0;
12251 dd->nportcntrs = 0;
12252 for (i = 0; i < PORT_CNTR_LAST; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012253 if (port_cntrs[i].flags & CNTR_DISABLED) {
12254 hfi1_dbg_early("\tSkipping %s\n", port_cntrs[i].name);
12255 continue;
12256 }
12257
12258 if (port_cntrs[i].flags & CNTR_VL) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012259 port_cntrs[i].offset = dd->nportcntrs;
12260 for (j = 0; j < C_VL_COUNT; j++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012261 snprintf(name, C_MAX_NAME, "%s%d",
Jubin John17fb4f22016-02-14 20:21:52 -080012262 port_cntrs[i].name, vl_from_idx(j));
Mike Marciniszyn77241052015-07-30 15:17:43 -040012263 sz += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012264 /* Add ",32" for 32-bit counters */
12265 if (port_cntrs[i].flags & CNTR_32BIT)
12266 sz += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012267 sz++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012268 dd->nportcntrs++;
12269 }
12270 } else {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012271 /* +1 for newline */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012272 sz += strlen(port_cntrs[i].name) + 1;
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012273 /* Add ",32" for 32-bit counters */
12274 if (port_cntrs[i].flags & CNTR_32BIT)
12275 sz += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012276 port_cntrs[i].offset = dd->nportcntrs;
12277 dd->nportcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012278 }
12279 }
12280
12281 /* allocate space for the counter names */
12282 dd->portcntrnameslen = sz;
12283 dd->portcntrnames = kmalloc(sz, GFP_KERNEL);
12284 if (!dd->portcntrnames)
12285 goto bail;
12286
12287 /* fill in port cntr names */
12288 for (p = dd->portcntrnames, i = 0; i < PORT_CNTR_LAST; i++) {
12289 if (port_cntrs[i].flags & CNTR_DISABLED)
12290 continue;
12291
12292 if (port_cntrs[i].flags & CNTR_VL) {
12293 for (j = 0; j < C_VL_COUNT; j++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012294 snprintf(name, C_MAX_NAME, "%s%d",
Jubin John17fb4f22016-02-14 20:21:52 -080012295 port_cntrs[i].name, vl_from_idx(j));
Mike Marciniszyn77241052015-07-30 15:17:43 -040012296 memcpy(p, name, strlen(name));
12297 p += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012298
12299 /* Counter is 32 bits */
12300 if (port_cntrs[i].flags & CNTR_32BIT) {
12301 memcpy(p, bit_type_32, bit_type_32_sz);
12302 p += bit_type_32_sz;
12303 }
12304
Mike Marciniszyn77241052015-07-30 15:17:43 -040012305 *p++ = '\n';
12306 }
12307 } else {
12308 memcpy(p, port_cntrs[i].name,
12309 strlen(port_cntrs[i].name));
12310 p += strlen(port_cntrs[i].name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012311
12312 /* Counter is 32 bits */
12313 if (port_cntrs[i].flags & CNTR_32BIT) {
12314 memcpy(p, bit_type_32, bit_type_32_sz);
12315 p += bit_type_32_sz;
12316 }
12317
Mike Marciniszyn77241052015-07-30 15:17:43 -040012318 *p++ = '\n';
12319 }
12320 }
12321
12322 /* allocate per port storage for counter values */
12323 ppd = (struct hfi1_pportdata *)(dd + 1);
12324 for (i = 0; i < dd->num_pports; i++, ppd++) {
12325 ppd->cntrs = kcalloc(dd->nportcntrs, sizeof(u64), GFP_KERNEL);
12326 if (!ppd->cntrs)
12327 goto bail;
12328
12329 ppd->scntrs = kcalloc(dd->nportcntrs, sizeof(u64), GFP_KERNEL);
12330 if (!ppd->scntrs)
12331 goto bail;
12332 }
12333
12334 /* CPU counters need to be allocated and zeroed */
12335 if (init_cpu_counters(dd))
12336 goto bail;
12337
12338 mod_timer(&dd->synth_stats_timer, jiffies + HZ * SYNTH_CNT_TIME);
12339 return 0;
12340bail:
12341 free_cntrs(dd);
12342 return -ENOMEM;
12343}
12344
Mike Marciniszyn77241052015-07-30 15:17:43 -040012345static u32 chip_to_opa_lstate(struct hfi1_devdata *dd, u32 chip_lstate)
12346{
12347 switch (chip_lstate) {
12348 default:
12349 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080012350 "Unknown logical state 0x%x, reporting IB_PORT_DOWN\n",
12351 chip_lstate);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012352 /* fall through */
12353 case LSTATE_DOWN:
12354 return IB_PORT_DOWN;
12355 case LSTATE_INIT:
12356 return IB_PORT_INIT;
12357 case LSTATE_ARMED:
12358 return IB_PORT_ARMED;
12359 case LSTATE_ACTIVE:
12360 return IB_PORT_ACTIVE;
12361 }
12362}
12363
12364u32 chip_to_opa_pstate(struct hfi1_devdata *dd, u32 chip_pstate)
12365{
12366 /* look at the HFI meta-states only */
12367 switch (chip_pstate & 0xf0) {
12368 default:
12369 dd_dev_err(dd, "Unexpected chip physical state of 0x%x\n",
Jubin John17fb4f22016-02-14 20:21:52 -080012370 chip_pstate);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012371 /* fall through */
12372 case PLS_DISABLED:
12373 return IB_PORTPHYSSTATE_DISABLED;
12374 case PLS_OFFLINE:
12375 return OPA_PORTPHYSSTATE_OFFLINE;
12376 case PLS_POLLING:
12377 return IB_PORTPHYSSTATE_POLLING;
12378 case PLS_CONFIGPHY:
12379 return IB_PORTPHYSSTATE_TRAINING;
12380 case PLS_LINKUP:
12381 return IB_PORTPHYSSTATE_LINKUP;
12382 case PLS_PHYTEST:
12383 return IB_PORTPHYSSTATE_PHY_TEST;
12384 }
12385}
12386
12387/* return the OPA port logical state name */
12388const char *opa_lstate_name(u32 lstate)
12389{
12390 static const char * const port_logical_names[] = {
12391 "PORT_NOP",
12392 "PORT_DOWN",
12393 "PORT_INIT",
12394 "PORT_ARMED",
12395 "PORT_ACTIVE",
12396 "PORT_ACTIVE_DEFER",
12397 };
12398 if (lstate < ARRAY_SIZE(port_logical_names))
12399 return port_logical_names[lstate];
12400 return "unknown";
12401}
12402
12403/* return the OPA port physical state name */
12404const char *opa_pstate_name(u32 pstate)
12405{
12406 static const char * const port_physical_names[] = {
12407 "PHYS_NOP",
12408 "reserved1",
12409 "PHYS_POLL",
12410 "PHYS_DISABLED",
12411 "PHYS_TRAINING",
12412 "PHYS_LINKUP",
12413 "PHYS_LINK_ERR_RECOVER",
12414 "PHYS_PHY_TEST",
12415 "reserved8",
12416 "PHYS_OFFLINE",
12417 "PHYS_GANGED",
12418 "PHYS_TEST",
12419 };
12420 if (pstate < ARRAY_SIZE(port_physical_names))
12421 return port_physical_names[pstate];
12422 return "unknown";
12423}
12424
12425/*
12426 * Read the hardware link state and set the driver's cached value of it.
12427 * Return the (new) current value.
12428 */
12429u32 get_logical_state(struct hfi1_pportdata *ppd)
12430{
12431 u32 new_state;
12432
12433 new_state = chip_to_opa_lstate(ppd->dd, read_logical_state(ppd->dd));
12434 if (new_state != ppd->lstate) {
12435 dd_dev_info(ppd->dd, "logical state changed to %s (0x%x)\n",
Jubin John17fb4f22016-02-14 20:21:52 -080012436 opa_lstate_name(new_state), new_state);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012437 ppd->lstate = new_state;
12438 }
12439 /*
12440 * Set port status flags in the page mapped into userspace
12441 * memory. Do it here to ensure a reliable state - this is
12442 * the only function called by all state handling code.
12443 * Always set the flags due to the fact that the cache value
12444 * might have been changed explicitly outside of this
12445 * function.
12446 */
12447 if (ppd->statusp) {
12448 switch (ppd->lstate) {
12449 case IB_PORT_DOWN:
12450 case IB_PORT_INIT:
12451 *ppd->statusp &= ~(HFI1_STATUS_IB_CONF |
12452 HFI1_STATUS_IB_READY);
12453 break;
12454 case IB_PORT_ARMED:
12455 *ppd->statusp |= HFI1_STATUS_IB_CONF;
12456 break;
12457 case IB_PORT_ACTIVE:
12458 *ppd->statusp |= HFI1_STATUS_IB_READY;
12459 break;
12460 }
12461 }
12462 return ppd->lstate;
12463}
12464
12465/**
12466 * wait_logical_linkstate - wait for an IB link state change to occur
12467 * @ppd: port device
12468 * @state: the state to wait for
12469 * @msecs: the number of milliseconds to wait
12470 *
12471 * Wait up to msecs milliseconds for IB link state change to occur.
12472 * For now, take the easy polling route.
12473 * Returns 0 if state reached, otherwise -ETIMEDOUT.
12474 */
12475static int wait_logical_linkstate(struct hfi1_pportdata *ppd, u32 state,
12476 int msecs)
12477{
12478 unsigned long timeout;
12479
12480 timeout = jiffies + msecs_to_jiffies(msecs);
12481 while (1) {
12482 if (get_logical_state(ppd) == state)
12483 return 0;
12484 if (time_after(jiffies, timeout))
12485 break;
12486 msleep(20);
12487 }
12488 dd_dev_err(ppd->dd, "timeout waiting for link state 0x%x\n", state);
12489
12490 return -ETIMEDOUT;
12491}
12492
12493u8 hfi1_ibphys_portstate(struct hfi1_pportdata *ppd)
12494{
Mike Marciniszyn77241052015-07-30 15:17:43 -040012495 u32 pstate;
12496 u32 ib_pstate;
12497
12498 pstate = read_physical_state(ppd->dd);
12499 ib_pstate = chip_to_opa_pstate(ppd->dd, pstate);
Dean Luickf45c8dc2016-02-03 14:35:31 -080012500 if (ppd->last_pstate != ib_pstate) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012501 dd_dev_info(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -080012502 "%s: physical state changed to %s (0x%x), phy 0x%x\n",
12503 __func__, opa_pstate_name(ib_pstate), ib_pstate,
12504 pstate);
Dean Luickf45c8dc2016-02-03 14:35:31 -080012505 ppd->last_pstate = ib_pstate;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012506 }
12507 return ib_pstate;
12508}
12509
Mike Marciniszyn77241052015-07-30 15:17:43 -040012510#define CLEAR_STATIC_RATE_CONTROL_SMASK(r) \
12511(r &= ~SEND_CTXT_CHECK_ENABLE_DISALLOW_PBC_STATIC_RATE_CONTROL_SMASK)
12512
12513#define SET_STATIC_RATE_CONTROL_SMASK(r) \
12514(r |= SEND_CTXT_CHECK_ENABLE_DISALLOW_PBC_STATIC_RATE_CONTROL_SMASK)
12515
12516int hfi1_init_ctxt(struct send_context *sc)
12517{
Jubin Johnd125a6c2016-02-14 20:19:49 -080012518 if (sc) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012519 struct hfi1_devdata *dd = sc->dd;
12520 u64 reg;
12521 u8 set = (sc->type == SC_USER ?
12522 HFI1_CAP_IS_USET(STATIC_RATE_CTRL) :
12523 HFI1_CAP_IS_KSET(STATIC_RATE_CTRL));
12524 reg = read_kctxt_csr(dd, sc->hw_context,
12525 SEND_CTXT_CHECK_ENABLE);
12526 if (set)
12527 CLEAR_STATIC_RATE_CONTROL_SMASK(reg);
12528 else
12529 SET_STATIC_RATE_CONTROL_SMASK(reg);
12530 write_kctxt_csr(dd, sc->hw_context,
12531 SEND_CTXT_CHECK_ENABLE, reg);
12532 }
12533 return 0;
12534}
12535
12536int hfi1_tempsense_rd(struct hfi1_devdata *dd, struct hfi1_temp *temp)
12537{
12538 int ret = 0;
12539 u64 reg;
12540
12541 if (dd->icode != ICODE_RTL_SILICON) {
12542 if (HFI1_CAP_IS_KSET(PRINT_UNIMPL))
12543 dd_dev_info(dd, "%s: tempsense not supported by HW\n",
12544 __func__);
12545 return -EINVAL;
12546 }
12547 reg = read_csr(dd, ASIC_STS_THERM);
12548 temp->curr = ((reg >> ASIC_STS_THERM_CURR_TEMP_SHIFT) &
12549 ASIC_STS_THERM_CURR_TEMP_MASK);
12550 temp->lo_lim = ((reg >> ASIC_STS_THERM_LO_TEMP_SHIFT) &
12551 ASIC_STS_THERM_LO_TEMP_MASK);
12552 temp->hi_lim = ((reg >> ASIC_STS_THERM_HI_TEMP_SHIFT) &
12553 ASIC_STS_THERM_HI_TEMP_MASK);
12554 temp->crit_lim = ((reg >> ASIC_STS_THERM_CRIT_TEMP_SHIFT) &
12555 ASIC_STS_THERM_CRIT_TEMP_MASK);
12556 /* triggers is a 3-bit value - 1 bit per trigger. */
12557 temp->triggers = (u8)((reg >> ASIC_STS_THERM_LOW_SHIFT) & 0x7);
12558
12559 return ret;
12560}
12561
12562/* ========================================================================= */
12563
12564/*
12565 * Enable/disable chip from delivering interrupts.
12566 */
12567void set_intr_state(struct hfi1_devdata *dd, u32 enable)
12568{
12569 int i;
12570
12571 /*
12572 * In HFI, the mask needs to be 1 to allow interrupts.
12573 */
12574 if (enable) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012575 /* enable all interrupts */
12576 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080012577 write_csr(dd, CCE_INT_MASK + (8 * i), ~(u64)0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012578
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080012579 init_qsfp_int(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012580 } else {
12581 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080012582 write_csr(dd, CCE_INT_MASK + (8 * i), 0ull);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012583 }
12584}
12585
12586/*
12587 * Clear all interrupt sources on the chip.
12588 */
12589static void clear_all_interrupts(struct hfi1_devdata *dd)
12590{
12591 int i;
12592
12593 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080012594 write_csr(dd, CCE_INT_CLEAR + (8 * i), ~(u64)0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012595
12596 write_csr(dd, CCE_ERR_CLEAR, ~(u64)0);
12597 write_csr(dd, MISC_ERR_CLEAR, ~(u64)0);
12598 write_csr(dd, RCV_ERR_CLEAR, ~(u64)0);
12599 write_csr(dd, SEND_ERR_CLEAR, ~(u64)0);
12600 write_csr(dd, SEND_PIO_ERR_CLEAR, ~(u64)0);
12601 write_csr(dd, SEND_DMA_ERR_CLEAR, ~(u64)0);
12602 write_csr(dd, SEND_EGRESS_ERR_CLEAR, ~(u64)0);
12603 for (i = 0; i < dd->chip_send_contexts; i++)
12604 write_kctxt_csr(dd, i, SEND_CTXT_ERR_CLEAR, ~(u64)0);
12605 for (i = 0; i < dd->chip_sdma_engines; i++)
12606 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_CLEAR, ~(u64)0);
12607
12608 write_csr(dd, DCC_ERR_FLG_CLR, ~(u64)0);
12609 write_csr(dd, DC_LCB_ERR_CLR, ~(u64)0);
12610 write_csr(dd, DC_DC8051_ERR_CLR, ~(u64)0);
12611}
12612
12613/* Move to pcie.c? */
12614static void disable_intx(struct pci_dev *pdev)
12615{
12616 pci_intx(pdev, 0);
12617}
12618
12619static void clean_up_interrupts(struct hfi1_devdata *dd)
12620{
12621 int i;
12622
12623 /* remove irqs - must happen before disabling/turning off */
12624 if (dd->num_msix_entries) {
12625 /* MSI-X */
12626 struct hfi1_msix_entry *me = dd->msix_entries;
12627
12628 for (i = 0; i < dd->num_msix_entries; i++, me++) {
Jubin Johnd125a6c2016-02-14 20:19:49 -080012629 if (!me->arg) /* => no irq, no affinity */
Mitko Haralanov957558c2016-02-03 14:33:40 -080012630 continue;
12631 hfi1_put_irq_affinity(dd, &dd->msix_entries[i]);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012632 free_irq(me->msix.vector, me->arg);
12633 }
12634 } else {
12635 /* INTx */
12636 if (dd->requested_intx_irq) {
12637 free_irq(dd->pcidev->irq, dd);
12638 dd->requested_intx_irq = 0;
12639 }
12640 }
12641
12642 /* turn off interrupts */
12643 if (dd->num_msix_entries) {
12644 /* MSI-X */
Amitoj Kaur Chawla6e5b6132015-11-01 16:14:32 +053012645 pci_disable_msix(dd->pcidev);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012646 } else {
12647 /* INTx */
12648 disable_intx(dd->pcidev);
12649 }
12650
12651 /* clean structures */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012652 kfree(dd->msix_entries);
12653 dd->msix_entries = NULL;
12654 dd->num_msix_entries = 0;
12655}
12656
12657/*
12658 * Remap the interrupt source from the general handler to the given MSI-X
12659 * interrupt.
12660 */
12661static void remap_intr(struct hfi1_devdata *dd, int isrc, int msix_intr)
12662{
12663 u64 reg;
12664 int m, n;
12665
12666 /* clear from the handled mask of the general interrupt */
12667 m = isrc / 64;
12668 n = isrc % 64;
12669 dd->gi_mask[m] &= ~((u64)1 << n);
12670
12671 /* direct the chip source to the given MSI-X interrupt */
12672 m = isrc / 8;
12673 n = isrc % 8;
Jubin John8638b772016-02-14 20:19:24 -080012674 reg = read_csr(dd, CCE_INT_MAP + (8 * m));
12675 reg &= ~((u64)0xff << (8 * n));
12676 reg |= ((u64)msix_intr & 0xff) << (8 * n);
12677 write_csr(dd, CCE_INT_MAP + (8 * m), reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012678}
12679
12680static void remap_sdma_interrupts(struct hfi1_devdata *dd,
12681 int engine, int msix_intr)
12682{
12683 /*
12684 * SDMA engine interrupt sources grouped by type, rather than
12685 * engine. Per-engine interrupts are as follows:
12686 * SDMA
12687 * SDMAProgress
12688 * SDMAIdle
12689 */
Jubin John8638b772016-02-14 20:19:24 -080012690 remap_intr(dd, IS_SDMA_START + 0 * TXE_NUM_SDMA_ENGINES + engine,
Jubin John17fb4f22016-02-14 20:21:52 -080012691 msix_intr);
Jubin John8638b772016-02-14 20:19:24 -080012692 remap_intr(dd, IS_SDMA_START + 1 * TXE_NUM_SDMA_ENGINES + engine,
Jubin John17fb4f22016-02-14 20:21:52 -080012693 msix_intr);
Jubin John8638b772016-02-14 20:19:24 -080012694 remap_intr(dd, IS_SDMA_START + 2 * TXE_NUM_SDMA_ENGINES + engine,
Jubin John17fb4f22016-02-14 20:21:52 -080012695 msix_intr);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012696}
12697
Mike Marciniszyn77241052015-07-30 15:17:43 -040012698static int request_intx_irq(struct hfi1_devdata *dd)
12699{
12700 int ret;
12701
Jubin John98050712015-11-16 21:59:27 -050012702 snprintf(dd->intx_name, sizeof(dd->intx_name), DRIVER_NAME "_%d",
12703 dd->unit);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012704 ret = request_irq(dd->pcidev->irq, general_interrupt,
Jubin John17fb4f22016-02-14 20:21:52 -080012705 IRQF_SHARED, dd->intx_name, dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012706 if (ret)
12707 dd_dev_err(dd, "unable to request INTx interrupt, err %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -080012708 ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012709 else
12710 dd->requested_intx_irq = 1;
12711 return ret;
12712}
12713
12714static int request_msix_irqs(struct hfi1_devdata *dd)
12715{
Mike Marciniszyn77241052015-07-30 15:17:43 -040012716 int first_general, last_general;
12717 int first_sdma, last_sdma;
12718 int first_rx, last_rx;
Mitko Haralanov957558c2016-02-03 14:33:40 -080012719 int i, ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012720
12721 /* calculate the ranges we are going to use */
12722 first_general = 0;
Jubin Johnf3ff8182016-02-14 20:20:50 -080012723 last_general = first_general + 1;
12724 first_sdma = last_general;
12725 last_sdma = first_sdma + dd->num_sdma;
12726 first_rx = last_sdma;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012727 last_rx = first_rx + dd->n_krcv_queues;
12728
12729 /*
Mike Marciniszyn77241052015-07-30 15:17:43 -040012730 * Sanity check - the code expects all SDMA chip source
12731 * interrupts to be in the same CSR, starting at bit 0. Verify
12732 * that this is true by checking the bit location of the start.
12733 */
12734 BUILD_BUG_ON(IS_SDMA_START % 64);
12735
12736 for (i = 0; i < dd->num_msix_entries; i++) {
12737 struct hfi1_msix_entry *me = &dd->msix_entries[i];
12738 const char *err_info;
12739 irq_handler_t handler;
Dean Luickf4f30031c2015-10-26 10:28:44 -040012740 irq_handler_t thread = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012741 void *arg;
12742 int idx;
12743 struct hfi1_ctxtdata *rcd = NULL;
12744 struct sdma_engine *sde = NULL;
12745
12746 /* obtain the arguments to request_irq */
12747 if (first_general <= i && i < last_general) {
12748 idx = i - first_general;
12749 handler = general_interrupt;
12750 arg = dd;
12751 snprintf(me->name, sizeof(me->name),
Jubin John98050712015-11-16 21:59:27 -050012752 DRIVER_NAME "_%d", dd->unit);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012753 err_info = "general";
Mitko Haralanov957558c2016-02-03 14:33:40 -080012754 me->type = IRQ_GENERAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012755 } else if (first_sdma <= i && i < last_sdma) {
12756 idx = i - first_sdma;
12757 sde = &dd->per_sdma[idx];
12758 handler = sdma_interrupt;
12759 arg = sde;
12760 snprintf(me->name, sizeof(me->name),
Jubin John98050712015-11-16 21:59:27 -050012761 DRIVER_NAME "_%d sdma%d", dd->unit, idx);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012762 err_info = "sdma";
12763 remap_sdma_interrupts(dd, idx, i);
Mitko Haralanov957558c2016-02-03 14:33:40 -080012764 me->type = IRQ_SDMA;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012765 } else if (first_rx <= i && i < last_rx) {
12766 idx = i - first_rx;
12767 rcd = dd->rcd[idx];
12768 /* no interrupt if no rcd */
12769 if (!rcd)
12770 continue;
12771 /*
12772 * Set the interrupt register and mask for this
12773 * context's interrupt.
12774 */
Jubin John8638b772016-02-14 20:19:24 -080012775 rcd->ireg = (IS_RCVAVAIL_START + idx) / 64;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012776 rcd->imask = ((u64)1) <<
Jubin John8638b772016-02-14 20:19:24 -080012777 ((IS_RCVAVAIL_START + idx) % 64);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012778 handler = receive_context_interrupt;
Dean Luickf4f30031c2015-10-26 10:28:44 -040012779 thread = receive_context_thread;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012780 arg = rcd;
12781 snprintf(me->name, sizeof(me->name),
Jubin John98050712015-11-16 21:59:27 -050012782 DRIVER_NAME "_%d kctxt%d", dd->unit, idx);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012783 err_info = "receive context";
Amitoj Kaur Chawla66c09332015-11-01 16:18:18 +053012784 remap_intr(dd, IS_RCVAVAIL_START + idx, i);
Mitko Haralanov957558c2016-02-03 14:33:40 -080012785 me->type = IRQ_RCVCTXT;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012786 } else {
12787 /* not in our expected range - complain, then
Jubin John4d114fd2016-02-14 20:21:43 -080012788 * ignore it
12789 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012790 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080012791 "Unexpected extra MSI-X interrupt %d\n", i);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012792 continue;
12793 }
12794 /* no argument, no interrupt */
Jubin Johnd125a6c2016-02-14 20:19:49 -080012795 if (!arg)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012796 continue;
12797 /* make sure the name is terminated */
Jubin John8638b772016-02-14 20:19:24 -080012798 me->name[sizeof(me->name) - 1] = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012799
Dean Luickf4f30031c2015-10-26 10:28:44 -040012800 ret = request_threaded_irq(me->msix.vector, handler, thread, 0,
Jubin John17fb4f22016-02-14 20:21:52 -080012801 me->name, arg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012802 if (ret) {
12803 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080012804 "unable to allocate %s interrupt, vector %d, index %d, err %d\n",
12805 err_info, me->msix.vector, idx, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012806 return ret;
12807 }
12808 /*
12809 * assign arg after request_irq call, so it will be
12810 * cleaned up
12811 */
12812 me->arg = arg;
12813
Mitko Haralanov957558c2016-02-03 14:33:40 -080012814 ret = hfi1_get_irq_affinity(dd, me);
12815 if (ret)
12816 dd_dev_err(dd,
12817 "unable to pin IRQ %d\n", ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012818 }
12819
Mike Marciniszyn77241052015-07-30 15:17:43 -040012820 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012821}
12822
12823/*
12824 * Set the general handler to accept all interrupts, remap all
12825 * chip interrupts back to MSI-X 0.
12826 */
12827static void reset_interrupts(struct hfi1_devdata *dd)
12828{
12829 int i;
12830
12831 /* all interrupts handled by the general handler */
12832 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
12833 dd->gi_mask[i] = ~(u64)0;
12834
12835 /* all chip interrupts map to MSI-X 0 */
12836 for (i = 0; i < CCE_NUM_INT_MAP_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080012837 write_csr(dd, CCE_INT_MAP + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012838}
12839
12840static int set_up_interrupts(struct hfi1_devdata *dd)
12841{
12842 struct hfi1_msix_entry *entries;
12843 u32 total, request;
12844 int i, ret;
12845 int single_interrupt = 0; /* we expect to have all the interrupts */
12846
12847 /*
12848 * Interrupt count:
12849 * 1 general, "slow path" interrupt (includes the SDMA engines
12850 * slow source, SDMACleanupDone)
12851 * N interrupts - one per used SDMA engine
12852 * M interrupt - one per kernel receive context
12853 */
12854 total = 1 + dd->num_sdma + dd->n_krcv_queues;
12855
12856 entries = kcalloc(total, sizeof(*entries), GFP_KERNEL);
12857 if (!entries) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012858 ret = -ENOMEM;
12859 goto fail;
12860 }
12861 /* 1-1 MSI-X entry assignment */
12862 for (i = 0; i < total; i++)
12863 entries[i].msix.entry = i;
12864
12865 /* ask for MSI-X interrupts */
12866 request = total;
12867 request_msix(dd, &request, entries);
12868
12869 if (request == 0) {
12870 /* using INTx */
12871 /* dd->num_msix_entries already zero */
12872 kfree(entries);
12873 single_interrupt = 1;
12874 dd_dev_err(dd, "MSI-X failed, using INTx interrupts\n");
12875 } else {
12876 /* using MSI-X */
12877 dd->num_msix_entries = request;
12878 dd->msix_entries = entries;
12879
12880 if (request != total) {
12881 /* using MSI-X, with reduced interrupts */
12882 dd_dev_err(
12883 dd,
12884 "cannot handle reduced interrupt case, want %u, got %u\n",
12885 total, request);
12886 ret = -EINVAL;
12887 goto fail;
12888 }
12889 dd_dev_info(dd, "%u MSI-X interrupts allocated\n", total);
12890 }
12891
12892 /* mask all interrupts */
12893 set_intr_state(dd, 0);
12894 /* clear all pending interrupts */
12895 clear_all_interrupts(dd);
12896
12897 /* reset general handler mask, chip MSI-X mappings */
12898 reset_interrupts(dd);
12899
12900 if (single_interrupt)
12901 ret = request_intx_irq(dd);
12902 else
12903 ret = request_msix_irqs(dd);
12904 if (ret)
12905 goto fail;
12906
12907 return 0;
12908
12909fail:
12910 clean_up_interrupts(dd);
12911 return ret;
12912}
12913
12914/*
12915 * Set up context values in dd. Sets:
12916 *
12917 * num_rcv_contexts - number of contexts being used
12918 * n_krcv_queues - number of kernel contexts
12919 * first_user_ctxt - first non-kernel context in array of contexts
12920 * freectxts - number of free user contexts
12921 * num_send_contexts - number of PIO send contexts being used
12922 */
12923static int set_up_context_variables(struct hfi1_devdata *dd)
12924{
Harish Chegondi429b6a72016-08-31 07:24:40 -070012925 unsigned long num_kernel_contexts;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012926 int total_contexts;
12927 int ret;
12928 unsigned ngroups;
Dean Luick8f000f72016-04-12 11:32:06 -070012929 int qos_rmt_count;
12930 int user_rmt_reduced;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012931
12932 /*
Dean Luick33a9eb52016-04-12 10:50:22 -070012933 * Kernel receive contexts:
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050012934 * - Context 0 - control context (VL15/multicast/error)
Dean Luick33a9eb52016-04-12 10:50:22 -070012935 * - Context 1 - first kernel context
12936 * - Context 2 - second kernel context
12937 * ...
Mike Marciniszyn77241052015-07-30 15:17:43 -040012938 */
12939 if (n_krcvqs)
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050012940 /*
Dean Luick33a9eb52016-04-12 10:50:22 -070012941 * n_krcvqs is the sum of module parameter kernel receive
12942 * contexts, krcvqs[]. It does not include the control
12943 * context, so add that.
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050012944 */
Dean Luick33a9eb52016-04-12 10:50:22 -070012945 num_kernel_contexts = n_krcvqs + 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012946 else
Harish Chegondi8784ac02016-07-25 13:38:50 -070012947 num_kernel_contexts = DEFAULT_KRCVQS + 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012948 /*
12949 * Every kernel receive context needs an ACK send context.
12950 * one send context is allocated for each VL{0-7} and VL15
12951 */
12952 if (num_kernel_contexts > (dd->chip_send_contexts - num_vls - 1)) {
12953 dd_dev_err(dd,
Harish Chegondi429b6a72016-08-31 07:24:40 -070012954 "Reducing # kernel rcv contexts to: %d, from %lu\n",
Mike Marciniszyn77241052015-07-30 15:17:43 -040012955 (int)(dd->chip_send_contexts - num_vls - 1),
Harish Chegondi429b6a72016-08-31 07:24:40 -070012956 num_kernel_contexts);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012957 num_kernel_contexts = dd->chip_send_contexts - num_vls - 1;
12958 }
12959 /*
Jubin John0852d242016-04-12 11:30:08 -070012960 * User contexts:
12961 * - default to 1 user context per real (non-HT) CPU core if
12962 * num_user_contexts is negative
Mike Marciniszyn77241052015-07-30 15:17:43 -040012963 */
Sebastian Sanchez2ce6bf22015-12-11 08:44:48 -050012964 if (num_user_contexts < 0)
Jubin John0852d242016-04-12 11:30:08 -070012965 num_user_contexts =
Dennis Dalessandro41973442016-07-25 07:52:36 -070012966 cpumask_weight(&node_affinity.real_cpu_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012967
12968 total_contexts = num_kernel_contexts + num_user_contexts;
12969
12970 /*
12971 * Adjust the counts given a global max.
12972 */
12973 if (total_contexts > dd->chip_rcv_contexts) {
12974 dd_dev_err(dd,
12975 "Reducing # user receive contexts to: %d, from %d\n",
12976 (int)(dd->chip_rcv_contexts - num_kernel_contexts),
12977 (int)num_user_contexts);
12978 num_user_contexts = dd->chip_rcv_contexts - num_kernel_contexts;
12979 /* recalculate */
12980 total_contexts = num_kernel_contexts + num_user_contexts;
12981 }
12982
Dean Luick8f000f72016-04-12 11:32:06 -070012983 /* each user context requires an entry in the RMT */
12984 qos_rmt_count = qos_rmt_entries(dd, NULL, NULL);
12985 if (qos_rmt_count + num_user_contexts > NUM_MAP_ENTRIES) {
12986 user_rmt_reduced = NUM_MAP_ENTRIES - qos_rmt_count;
12987 dd_dev_err(dd,
12988 "RMT size is reducing the number of user receive contexts from %d to %d\n",
12989 (int)num_user_contexts,
12990 user_rmt_reduced);
12991 /* recalculate */
12992 num_user_contexts = user_rmt_reduced;
12993 total_contexts = num_kernel_contexts + num_user_contexts;
12994 }
12995
Mike Marciniszyn77241052015-07-30 15:17:43 -040012996 /* the first N are kernel contexts, the rest are user contexts */
12997 dd->num_rcv_contexts = total_contexts;
12998 dd->n_krcv_queues = num_kernel_contexts;
12999 dd->first_user_ctxt = num_kernel_contexts;
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -080013000 dd->num_user_contexts = num_user_contexts;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013001 dd->freectxts = num_user_contexts;
13002 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013003 "rcv contexts: chip %d, used %d (kernel %d, user %d)\n",
13004 (int)dd->chip_rcv_contexts,
13005 (int)dd->num_rcv_contexts,
13006 (int)dd->n_krcv_queues,
13007 (int)dd->num_rcv_contexts - dd->n_krcv_queues);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013008
13009 /*
13010 * Receive array allocation:
13011 * All RcvArray entries are divided into groups of 8. This
13012 * is required by the hardware and will speed up writes to
13013 * consecutive entries by using write-combining of the entire
13014 * cacheline.
13015 *
13016 * The number of groups are evenly divided among all contexts.
13017 * any left over groups will be given to the first N user
13018 * contexts.
13019 */
13020 dd->rcv_entries.group_size = RCV_INCREMENT;
13021 ngroups = dd->chip_rcv_array_count / dd->rcv_entries.group_size;
13022 dd->rcv_entries.ngroups = ngroups / dd->num_rcv_contexts;
13023 dd->rcv_entries.nctxt_extra = ngroups -
13024 (dd->num_rcv_contexts * dd->rcv_entries.ngroups);
13025 dd_dev_info(dd, "RcvArray groups %u, ctxts extra %u\n",
13026 dd->rcv_entries.ngroups,
13027 dd->rcv_entries.nctxt_extra);
13028 if (dd->rcv_entries.ngroups * dd->rcv_entries.group_size >
13029 MAX_EAGER_ENTRIES * 2) {
13030 dd->rcv_entries.ngroups = (MAX_EAGER_ENTRIES * 2) /
13031 dd->rcv_entries.group_size;
13032 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013033 "RcvArray group count too high, change to %u\n",
13034 dd->rcv_entries.ngroups);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013035 dd->rcv_entries.nctxt_extra = 0;
13036 }
13037 /*
13038 * PIO send contexts
13039 */
13040 ret = init_sc_pools_and_sizes(dd);
13041 if (ret >= 0) { /* success */
13042 dd->num_send_contexts = ret;
13043 dd_dev_info(
13044 dd,
Jianxin Xiong44306f12016-04-12 11:30:28 -070013045 "send contexts: chip %d, used %d (kernel %d, ack %d, user %d, vl15 %d)\n",
Mike Marciniszyn77241052015-07-30 15:17:43 -040013046 dd->chip_send_contexts,
13047 dd->num_send_contexts,
13048 dd->sc_sizes[SC_KERNEL].count,
13049 dd->sc_sizes[SC_ACK].count,
Jianxin Xiong44306f12016-04-12 11:30:28 -070013050 dd->sc_sizes[SC_USER].count,
13051 dd->sc_sizes[SC_VL15].count);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013052 ret = 0; /* success */
13053 }
13054
13055 return ret;
13056}
13057
13058/*
13059 * Set the device/port partition key table. The MAD code
13060 * will ensure that, at least, the partial management
13061 * partition key is present in the table.
13062 */
13063static void set_partition_keys(struct hfi1_pportdata *ppd)
13064{
13065 struct hfi1_devdata *dd = ppd->dd;
13066 u64 reg = 0;
13067 int i;
13068
13069 dd_dev_info(dd, "Setting partition keys\n");
13070 for (i = 0; i < hfi1_get_npkeys(dd); i++) {
13071 reg |= (ppd->pkeys[i] &
13072 RCV_PARTITION_KEY_PARTITION_KEY_A_MASK) <<
13073 ((i % 4) *
13074 RCV_PARTITION_KEY_PARTITION_KEY_B_SHIFT);
13075 /* Each register holds 4 PKey values. */
13076 if ((i % 4) == 3) {
13077 write_csr(dd, RCV_PARTITION_KEY +
13078 ((i - 3) * 2), reg);
13079 reg = 0;
13080 }
13081 }
13082
13083 /* Always enable HW pkeys check when pkeys table is set */
13084 add_rcvctrl(dd, RCV_CTRL_RCV_PARTITION_KEY_ENABLE_SMASK);
13085}
13086
13087/*
13088 * These CSRs and memories are uninitialized on reset and must be
13089 * written before reading to set the ECC/parity bits.
13090 *
13091 * NOTE: All user context CSRs that are not mmaped write-only
13092 * (e.g. the TID flows) must be initialized even if the driver never
13093 * reads them.
13094 */
13095static void write_uninitialized_csrs_and_memories(struct hfi1_devdata *dd)
13096{
13097 int i, j;
13098
13099 /* CceIntMap */
13100 for (i = 0; i < CCE_NUM_INT_MAP_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080013101 write_csr(dd, CCE_INT_MAP + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013102
13103 /* SendCtxtCreditReturnAddr */
13104 for (i = 0; i < dd->chip_send_contexts; i++)
13105 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_RETURN_ADDR, 0);
13106
13107 /* PIO Send buffers */
13108 /* SDMA Send buffers */
Jubin John4d114fd2016-02-14 20:21:43 -080013109 /*
13110 * These are not normally read, and (presently) have no method
13111 * to be read, so are not pre-initialized
13112 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013113
13114 /* RcvHdrAddr */
13115 /* RcvHdrTailAddr */
13116 /* RcvTidFlowTable */
13117 for (i = 0; i < dd->chip_rcv_contexts; i++) {
13118 write_kctxt_csr(dd, i, RCV_HDR_ADDR, 0);
13119 write_kctxt_csr(dd, i, RCV_HDR_TAIL_ADDR, 0);
13120 for (j = 0; j < RXE_NUM_TID_FLOWS; j++)
Jubin John8638b772016-02-14 20:19:24 -080013121 write_uctxt_csr(dd, i, RCV_TID_FLOW_TABLE + (8 * j), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013122 }
13123
13124 /* RcvArray */
13125 for (i = 0; i < dd->chip_rcv_array_count; i++)
Jubin John8638b772016-02-14 20:19:24 -080013126 write_csr(dd, RCV_ARRAY + (8 * i),
Jubin John17fb4f22016-02-14 20:21:52 -080013127 RCV_ARRAY_RT_WRITE_ENABLE_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013128
13129 /* RcvQPMapTable */
13130 for (i = 0; i < 32; i++)
13131 write_csr(dd, RCV_QP_MAP_TABLE + (8 * i), 0);
13132}
13133
13134/*
13135 * Use the ctrl_bits in CceCtrl to clear the status_bits in CceStatus.
13136 */
13137static void clear_cce_status(struct hfi1_devdata *dd, u64 status_bits,
13138 u64 ctrl_bits)
13139{
13140 unsigned long timeout;
13141 u64 reg;
13142
13143 /* is the condition present? */
13144 reg = read_csr(dd, CCE_STATUS);
13145 if ((reg & status_bits) == 0)
13146 return;
13147
13148 /* clear the condition */
13149 write_csr(dd, CCE_CTRL, ctrl_bits);
13150
13151 /* wait for the condition to clear */
13152 timeout = jiffies + msecs_to_jiffies(CCE_STATUS_TIMEOUT);
13153 while (1) {
13154 reg = read_csr(dd, CCE_STATUS);
13155 if ((reg & status_bits) == 0)
13156 return;
13157 if (time_after(jiffies, timeout)) {
13158 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013159 "Timeout waiting for CceStatus to clear bits 0x%llx, remaining 0x%llx\n",
13160 status_bits, reg & status_bits);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013161 return;
13162 }
13163 udelay(1);
13164 }
13165}
13166
13167/* set CCE CSRs to chip reset defaults */
13168static void reset_cce_csrs(struct hfi1_devdata *dd)
13169{
13170 int i;
13171
13172 /* CCE_REVISION read-only */
13173 /* CCE_REVISION2 read-only */
13174 /* CCE_CTRL - bits clear automatically */
13175 /* CCE_STATUS read-only, use CceCtrl to clear */
13176 clear_cce_status(dd, ALL_FROZE, CCE_CTRL_SPC_UNFREEZE_SMASK);
13177 clear_cce_status(dd, ALL_TXE_PAUSE, CCE_CTRL_TXE_RESUME_SMASK);
13178 clear_cce_status(dd, ALL_RXE_PAUSE, CCE_CTRL_RXE_RESUME_SMASK);
13179 for (i = 0; i < CCE_NUM_SCRATCH; i++)
13180 write_csr(dd, CCE_SCRATCH + (8 * i), 0);
13181 /* CCE_ERR_STATUS read-only */
13182 write_csr(dd, CCE_ERR_MASK, 0);
13183 write_csr(dd, CCE_ERR_CLEAR, ~0ull);
13184 /* CCE_ERR_FORCE leave alone */
13185 for (i = 0; i < CCE_NUM_32_BIT_COUNTERS; i++)
13186 write_csr(dd, CCE_COUNTER_ARRAY32 + (8 * i), 0);
13187 write_csr(dd, CCE_DC_CTRL, CCE_DC_CTRL_RESETCSR);
13188 /* CCE_PCIE_CTRL leave alone */
13189 for (i = 0; i < CCE_NUM_MSIX_VECTORS; i++) {
13190 write_csr(dd, CCE_MSIX_TABLE_LOWER + (8 * i), 0);
13191 write_csr(dd, CCE_MSIX_TABLE_UPPER + (8 * i),
Jubin John17fb4f22016-02-14 20:21:52 -080013192 CCE_MSIX_TABLE_UPPER_RESETCSR);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013193 }
13194 for (i = 0; i < CCE_NUM_MSIX_PBAS; i++) {
13195 /* CCE_MSIX_PBA read-only */
13196 write_csr(dd, CCE_MSIX_INT_GRANTED, ~0ull);
13197 write_csr(dd, CCE_MSIX_VEC_CLR_WITHOUT_INT, ~0ull);
13198 }
13199 for (i = 0; i < CCE_NUM_INT_MAP_CSRS; i++)
13200 write_csr(dd, CCE_INT_MAP, 0);
13201 for (i = 0; i < CCE_NUM_INT_CSRS; i++) {
13202 /* CCE_INT_STATUS read-only */
13203 write_csr(dd, CCE_INT_MASK + (8 * i), 0);
13204 write_csr(dd, CCE_INT_CLEAR + (8 * i), ~0ull);
13205 /* CCE_INT_FORCE leave alone */
13206 /* CCE_INT_BLOCKED read-only */
13207 }
13208 for (i = 0; i < CCE_NUM_32_BIT_INT_COUNTERS; i++)
13209 write_csr(dd, CCE_INT_COUNTER_ARRAY32 + (8 * i), 0);
13210}
13211
Mike Marciniszyn77241052015-07-30 15:17:43 -040013212/* set MISC CSRs to chip reset defaults */
13213static void reset_misc_csrs(struct hfi1_devdata *dd)
13214{
13215 int i;
13216
13217 for (i = 0; i < 32; i++) {
13218 write_csr(dd, MISC_CFG_RSA_R2 + (8 * i), 0);
13219 write_csr(dd, MISC_CFG_RSA_SIGNATURE + (8 * i), 0);
13220 write_csr(dd, MISC_CFG_RSA_MODULUS + (8 * i), 0);
13221 }
Jubin John4d114fd2016-02-14 20:21:43 -080013222 /*
13223 * MISC_CFG_SHA_PRELOAD leave alone - always reads 0 and can
13224 * only be written 128-byte chunks
13225 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013226 /* init RSA engine to clear lingering errors */
13227 write_csr(dd, MISC_CFG_RSA_CMD, 1);
13228 write_csr(dd, MISC_CFG_RSA_MU, 0);
13229 write_csr(dd, MISC_CFG_FW_CTRL, 0);
13230 /* MISC_STS_8051_DIGEST read-only */
13231 /* MISC_STS_SBM_DIGEST read-only */
13232 /* MISC_STS_PCIE_DIGEST read-only */
13233 /* MISC_STS_FAB_DIGEST read-only */
13234 /* MISC_ERR_STATUS read-only */
13235 write_csr(dd, MISC_ERR_MASK, 0);
13236 write_csr(dd, MISC_ERR_CLEAR, ~0ull);
13237 /* MISC_ERR_FORCE leave alone */
13238}
13239
13240/* set TXE CSRs to chip reset defaults */
13241static void reset_txe_csrs(struct hfi1_devdata *dd)
13242{
13243 int i;
13244
13245 /*
13246 * TXE Kernel CSRs
13247 */
13248 write_csr(dd, SEND_CTRL, 0);
13249 __cm_reset(dd, 0); /* reset CM internal state */
13250 /* SEND_CONTEXTS read-only */
13251 /* SEND_DMA_ENGINES read-only */
13252 /* SEND_PIO_MEM_SIZE read-only */
13253 /* SEND_DMA_MEM_SIZE read-only */
13254 write_csr(dd, SEND_HIGH_PRIORITY_LIMIT, 0);
13255 pio_reset_all(dd); /* SEND_PIO_INIT_CTXT */
13256 /* SEND_PIO_ERR_STATUS read-only */
13257 write_csr(dd, SEND_PIO_ERR_MASK, 0);
13258 write_csr(dd, SEND_PIO_ERR_CLEAR, ~0ull);
13259 /* SEND_PIO_ERR_FORCE leave alone */
13260 /* SEND_DMA_ERR_STATUS read-only */
13261 write_csr(dd, SEND_DMA_ERR_MASK, 0);
13262 write_csr(dd, SEND_DMA_ERR_CLEAR, ~0ull);
13263 /* SEND_DMA_ERR_FORCE leave alone */
13264 /* SEND_EGRESS_ERR_STATUS read-only */
13265 write_csr(dd, SEND_EGRESS_ERR_MASK, 0);
13266 write_csr(dd, SEND_EGRESS_ERR_CLEAR, ~0ull);
13267 /* SEND_EGRESS_ERR_FORCE leave alone */
13268 write_csr(dd, SEND_BTH_QP, 0);
13269 write_csr(dd, SEND_STATIC_RATE_CONTROL, 0);
13270 write_csr(dd, SEND_SC2VLT0, 0);
13271 write_csr(dd, SEND_SC2VLT1, 0);
13272 write_csr(dd, SEND_SC2VLT2, 0);
13273 write_csr(dd, SEND_SC2VLT3, 0);
13274 write_csr(dd, SEND_LEN_CHECK0, 0);
13275 write_csr(dd, SEND_LEN_CHECK1, 0);
13276 /* SEND_ERR_STATUS read-only */
13277 write_csr(dd, SEND_ERR_MASK, 0);
13278 write_csr(dd, SEND_ERR_CLEAR, ~0ull);
13279 /* SEND_ERR_FORCE read-only */
13280 for (i = 0; i < VL_ARB_LOW_PRIO_TABLE_SIZE; i++)
Jubin John8638b772016-02-14 20:19:24 -080013281 write_csr(dd, SEND_LOW_PRIORITY_LIST + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013282 for (i = 0; i < VL_ARB_HIGH_PRIO_TABLE_SIZE; i++)
Jubin John8638b772016-02-14 20:19:24 -080013283 write_csr(dd, SEND_HIGH_PRIORITY_LIST + (8 * i), 0);
13284 for (i = 0; i < dd->chip_send_contexts / NUM_CONTEXTS_PER_SET; i++)
13285 write_csr(dd, SEND_CONTEXT_SET_CTRL + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013286 for (i = 0; i < TXE_NUM_32_BIT_COUNTER; i++)
Jubin John8638b772016-02-14 20:19:24 -080013287 write_csr(dd, SEND_COUNTER_ARRAY32 + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013288 for (i = 0; i < TXE_NUM_64_BIT_COUNTER; i++)
Jubin John8638b772016-02-14 20:19:24 -080013289 write_csr(dd, SEND_COUNTER_ARRAY64 + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013290 write_csr(dd, SEND_CM_CTRL, SEND_CM_CTRL_RESETCSR);
Jubin John17fb4f22016-02-14 20:21:52 -080013291 write_csr(dd, SEND_CM_GLOBAL_CREDIT, SEND_CM_GLOBAL_CREDIT_RESETCSR);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013292 /* SEND_CM_CREDIT_USED_STATUS read-only */
13293 write_csr(dd, SEND_CM_TIMER_CTRL, 0);
13294 write_csr(dd, SEND_CM_LOCAL_AU_TABLE0_TO3, 0);
13295 write_csr(dd, SEND_CM_LOCAL_AU_TABLE4_TO7, 0);
13296 write_csr(dd, SEND_CM_REMOTE_AU_TABLE0_TO3, 0);
13297 write_csr(dd, SEND_CM_REMOTE_AU_TABLE4_TO7, 0);
13298 for (i = 0; i < TXE_NUM_DATA_VL; i++)
Jubin John8638b772016-02-14 20:19:24 -080013299 write_csr(dd, SEND_CM_CREDIT_VL + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013300 write_csr(dd, SEND_CM_CREDIT_VL15, 0);
13301 /* SEND_CM_CREDIT_USED_VL read-only */
13302 /* SEND_CM_CREDIT_USED_VL15 read-only */
13303 /* SEND_EGRESS_CTXT_STATUS read-only */
13304 /* SEND_EGRESS_SEND_DMA_STATUS read-only */
13305 write_csr(dd, SEND_EGRESS_ERR_INFO, ~0ull);
13306 /* SEND_EGRESS_ERR_INFO read-only */
13307 /* SEND_EGRESS_ERR_SOURCE read-only */
13308
13309 /*
13310 * TXE Per-Context CSRs
13311 */
13312 for (i = 0; i < dd->chip_send_contexts; i++) {
13313 write_kctxt_csr(dd, i, SEND_CTXT_CTRL, 0);
13314 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_CTRL, 0);
13315 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_RETURN_ADDR, 0);
13316 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_FORCE, 0);
13317 write_kctxt_csr(dd, i, SEND_CTXT_ERR_MASK, 0);
13318 write_kctxt_csr(dd, i, SEND_CTXT_ERR_CLEAR, ~0ull);
13319 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_ENABLE, 0);
13320 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_VL, 0);
13321 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_JOB_KEY, 0);
13322 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_PARTITION_KEY, 0);
13323 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_SLID, 0);
13324 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_OPCODE, 0);
13325 }
13326
13327 /*
13328 * TXE Per-SDMA CSRs
13329 */
13330 for (i = 0; i < dd->chip_sdma_engines; i++) {
13331 write_kctxt_csr(dd, i, SEND_DMA_CTRL, 0);
13332 /* SEND_DMA_STATUS read-only */
13333 write_kctxt_csr(dd, i, SEND_DMA_BASE_ADDR, 0);
13334 write_kctxt_csr(dd, i, SEND_DMA_LEN_GEN, 0);
13335 write_kctxt_csr(dd, i, SEND_DMA_TAIL, 0);
13336 /* SEND_DMA_HEAD read-only */
13337 write_kctxt_csr(dd, i, SEND_DMA_HEAD_ADDR, 0);
13338 write_kctxt_csr(dd, i, SEND_DMA_PRIORITY_THLD, 0);
13339 /* SEND_DMA_IDLE_CNT read-only */
13340 write_kctxt_csr(dd, i, SEND_DMA_RELOAD_CNT, 0);
13341 write_kctxt_csr(dd, i, SEND_DMA_DESC_CNT, 0);
13342 /* SEND_DMA_DESC_FETCHED_CNT read-only */
13343 /* SEND_DMA_ENG_ERR_STATUS read-only */
13344 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_MASK, 0);
13345 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_CLEAR, ~0ull);
13346 /* SEND_DMA_ENG_ERR_FORCE leave alone */
13347 write_kctxt_csr(dd, i, SEND_DMA_CHECK_ENABLE, 0);
13348 write_kctxt_csr(dd, i, SEND_DMA_CHECK_VL, 0);
13349 write_kctxt_csr(dd, i, SEND_DMA_CHECK_JOB_KEY, 0);
13350 write_kctxt_csr(dd, i, SEND_DMA_CHECK_PARTITION_KEY, 0);
13351 write_kctxt_csr(dd, i, SEND_DMA_CHECK_SLID, 0);
13352 write_kctxt_csr(dd, i, SEND_DMA_CHECK_OPCODE, 0);
13353 write_kctxt_csr(dd, i, SEND_DMA_MEMORY, 0);
13354 }
13355}
13356
13357/*
13358 * Expect on entry:
13359 * o Packet ingress is disabled, i.e. RcvCtrl.RcvPortEnable == 0
13360 */
13361static void init_rbufs(struct hfi1_devdata *dd)
13362{
13363 u64 reg;
13364 int count;
13365
13366 /*
13367 * Wait for DMA to stop: RxRbufPktPending and RxPktInProgress are
13368 * clear.
13369 */
13370 count = 0;
13371 while (1) {
13372 reg = read_csr(dd, RCV_STATUS);
13373 if ((reg & (RCV_STATUS_RX_RBUF_PKT_PENDING_SMASK
13374 | RCV_STATUS_RX_PKT_IN_PROGRESS_SMASK)) == 0)
13375 break;
13376 /*
13377 * Give up after 1ms - maximum wait time.
13378 *
Harish Chegondie8a70af2016-09-25 07:42:01 -070013379 * RBuf size is 136KiB. Slowest possible is PCIe Gen1 x1 at
Mike Marciniszyn77241052015-07-30 15:17:43 -040013380 * 250MB/s bandwidth. Lower rate to 66% for overhead to get:
Harish Chegondie8a70af2016-09-25 07:42:01 -070013381 * 136 KB / (66% * 250MB/s) = 844us
Mike Marciniszyn77241052015-07-30 15:17:43 -040013382 */
13383 if (count++ > 500) {
13384 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013385 "%s: in-progress DMA not clearing: RcvStatus 0x%llx, continuing\n",
13386 __func__, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013387 break;
13388 }
13389 udelay(2); /* do not busy-wait the CSR */
13390 }
13391
13392 /* start the init - expect RcvCtrl to be 0 */
13393 write_csr(dd, RCV_CTRL, RCV_CTRL_RX_RBUF_INIT_SMASK);
13394
13395 /*
13396 * Read to force the write of Rcvtrl.RxRbufInit. There is a brief
13397 * period after the write before RcvStatus.RxRbufInitDone is valid.
13398 * The delay in the first run through the loop below is sufficient and
13399 * required before the first read of RcvStatus.RxRbufInintDone.
13400 */
13401 read_csr(dd, RCV_CTRL);
13402
13403 /* wait for the init to finish */
13404 count = 0;
13405 while (1) {
13406 /* delay is required first time through - see above */
13407 udelay(2); /* do not busy-wait the CSR */
13408 reg = read_csr(dd, RCV_STATUS);
13409 if (reg & (RCV_STATUS_RX_RBUF_INIT_DONE_SMASK))
13410 break;
13411
13412 /* give up after 100us - slowest possible at 33MHz is 73us */
13413 if (count++ > 50) {
13414 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013415 "%s: RcvStatus.RxRbufInit not set, continuing\n",
13416 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013417 break;
13418 }
13419 }
13420}
13421
13422/* set RXE CSRs to chip reset defaults */
13423static void reset_rxe_csrs(struct hfi1_devdata *dd)
13424{
13425 int i, j;
13426
13427 /*
13428 * RXE Kernel CSRs
13429 */
13430 write_csr(dd, RCV_CTRL, 0);
13431 init_rbufs(dd);
13432 /* RCV_STATUS read-only */
13433 /* RCV_CONTEXTS read-only */
13434 /* RCV_ARRAY_CNT read-only */
13435 /* RCV_BUF_SIZE read-only */
13436 write_csr(dd, RCV_BTH_QP, 0);
13437 write_csr(dd, RCV_MULTICAST, 0);
13438 write_csr(dd, RCV_BYPASS, 0);
13439 write_csr(dd, RCV_VL15, 0);
13440 /* this is a clear-down */
13441 write_csr(dd, RCV_ERR_INFO,
Jubin John17fb4f22016-02-14 20:21:52 -080013442 RCV_ERR_INFO_RCV_EXCESS_BUFFER_OVERRUN_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013443 /* RCV_ERR_STATUS read-only */
13444 write_csr(dd, RCV_ERR_MASK, 0);
13445 write_csr(dd, RCV_ERR_CLEAR, ~0ull);
13446 /* RCV_ERR_FORCE leave alone */
13447 for (i = 0; i < 32; i++)
13448 write_csr(dd, RCV_QP_MAP_TABLE + (8 * i), 0);
13449 for (i = 0; i < 4; i++)
13450 write_csr(dd, RCV_PARTITION_KEY + (8 * i), 0);
13451 for (i = 0; i < RXE_NUM_32_BIT_COUNTERS; i++)
13452 write_csr(dd, RCV_COUNTER_ARRAY32 + (8 * i), 0);
13453 for (i = 0; i < RXE_NUM_64_BIT_COUNTERS; i++)
13454 write_csr(dd, RCV_COUNTER_ARRAY64 + (8 * i), 0);
13455 for (i = 0; i < RXE_NUM_RSM_INSTANCES; i++) {
13456 write_csr(dd, RCV_RSM_CFG + (8 * i), 0);
13457 write_csr(dd, RCV_RSM_SELECT + (8 * i), 0);
13458 write_csr(dd, RCV_RSM_MATCH + (8 * i), 0);
13459 }
13460 for (i = 0; i < 32; i++)
13461 write_csr(dd, RCV_RSM_MAP_TABLE + (8 * i), 0);
13462
13463 /*
13464 * RXE Kernel and User Per-Context CSRs
13465 */
13466 for (i = 0; i < dd->chip_rcv_contexts; i++) {
13467 /* kernel */
13468 write_kctxt_csr(dd, i, RCV_CTXT_CTRL, 0);
13469 /* RCV_CTXT_STATUS read-only */
13470 write_kctxt_csr(dd, i, RCV_EGR_CTRL, 0);
13471 write_kctxt_csr(dd, i, RCV_TID_CTRL, 0);
13472 write_kctxt_csr(dd, i, RCV_KEY_CTRL, 0);
13473 write_kctxt_csr(dd, i, RCV_HDR_ADDR, 0);
13474 write_kctxt_csr(dd, i, RCV_HDR_CNT, 0);
13475 write_kctxt_csr(dd, i, RCV_HDR_ENT_SIZE, 0);
13476 write_kctxt_csr(dd, i, RCV_HDR_SIZE, 0);
13477 write_kctxt_csr(dd, i, RCV_HDR_TAIL_ADDR, 0);
13478 write_kctxt_csr(dd, i, RCV_AVAIL_TIME_OUT, 0);
13479 write_kctxt_csr(dd, i, RCV_HDR_OVFL_CNT, 0);
13480
13481 /* user */
13482 /* RCV_HDR_TAIL read-only */
13483 write_uctxt_csr(dd, i, RCV_HDR_HEAD, 0);
13484 /* RCV_EGR_INDEX_TAIL read-only */
13485 write_uctxt_csr(dd, i, RCV_EGR_INDEX_HEAD, 0);
13486 /* RCV_EGR_OFFSET_TAIL read-only */
13487 for (j = 0; j < RXE_NUM_TID_FLOWS; j++) {
Jubin John17fb4f22016-02-14 20:21:52 -080013488 write_uctxt_csr(dd, i,
13489 RCV_TID_FLOW_TABLE + (8 * j), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013490 }
13491 }
13492}
13493
13494/*
13495 * Set sc2vl tables.
13496 *
13497 * They power on to zeros, so to avoid send context errors
13498 * they need to be set:
13499 *
13500 * SC 0-7 -> VL 0-7 (respectively)
13501 * SC 15 -> VL 15
13502 * otherwise
13503 * -> VL 0
13504 */
13505static void init_sc2vl_tables(struct hfi1_devdata *dd)
13506{
13507 int i;
13508 /* init per architecture spec, constrained by hardware capability */
13509
13510 /* HFI maps sent packets */
13511 write_csr(dd, SEND_SC2VLT0, SC2VL_VAL(
13512 0,
13513 0, 0, 1, 1,
13514 2, 2, 3, 3,
13515 4, 4, 5, 5,
13516 6, 6, 7, 7));
13517 write_csr(dd, SEND_SC2VLT1, SC2VL_VAL(
13518 1,
13519 8, 0, 9, 0,
13520 10, 0, 11, 0,
13521 12, 0, 13, 0,
13522 14, 0, 15, 15));
13523 write_csr(dd, SEND_SC2VLT2, SC2VL_VAL(
13524 2,
13525 16, 0, 17, 0,
13526 18, 0, 19, 0,
13527 20, 0, 21, 0,
13528 22, 0, 23, 0));
13529 write_csr(dd, SEND_SC2VLT3, SC2VL_VAL(
13530 3,
13531 24, 0, 25, 0,
13532 26, 0, 27, 0,
13533 28, 0, 29, 0,
13534 30, 0, 31, 0));
13535
13536 /* DC maps received packets */
13537 write_csr(dd, DCC_CFG_SC_VL_TABLE_15_0, DC_SC_VL_VAL(
13538 15_0,
13539 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7,
13540 8, 0, 9, 0, 10, 0, 11, 0, 12, 0, 13, 0, 14, 0, 15, 15));
13541 write_csr(dd, DCC_CFG_SC_VL_TABLE_31_16, DC_SC_VL_VAL(
13542 31_16,
13543 16, 0, 17, 0, 18, 0, 19, 0, 20, 0, 21, 0, 22, 0, 23, 0,
13544 24, 0, 25, 0, 26, 0, 27, 0, 28, 0, 29, 0, 30, 0, 31, 0));
13545
13546 /* initialize the cached sc2vl values consistently with h/w */
13547 for (i = 0; i < 32; i++) {
13548 if (i < 8 || i == 15)
13549 *((u8 *)(dd->sc2vl) + i) = (u8)i;
13550 else
13551 *((u8 *)(dd->sc2vl) + i) = 0;
13552 }
13553}
13554
13555/*
13556 * Read chip sizes and then reset parts to sane, disabled, values. We cannot
13557 * depend on the chip going through a power-on reset - a driver may be loaded
13558 * and unloaded many times.
13559 *
13560 * Do not write any CSR values to the chip in this routine - there may be
13561 * a reset following the (possible) FLR in this routine.
13562 *
13563 */
13564static void init_chip(struct hfi1_devdata *dd)
13565{
13566 int i;
13567
13568 /*
13569 * Put the HFI CSRs in a known state.
13570 * Combine this with a DC reset.
13571 *
13572 * Stop the device from doing anything while we do a
13573 * reset. We know there are no other active users of
13574 * the device since we are now in charge. Turn off
13575 * off all outbound and inbound traffic and make sure
13576 * the device does not generate any interrupts.
13577 */
13578
13579 /* disable send contexts and SDMA engines */
13580 write_csr(dd, SEND_CTRL, 0);
13581 for (i = 0; i < dd->chip_send_contexts; i++)
13582 write_kctxt_csr(dd, i, SEND_CTXT_CTRL, 0);
13583 for (i = 0; i < dd->chip_sdma_engines; i++)
13584 write_kctxt_csr(dd, i, SEND_DMA_CTRL, 0);
13585 /* disable port (turn off RXE inbound traffic) and contexts */
13586 write_csr(dd, RCV_CTRL, 0);
13587 for (i = 0; i < dd->chip_rcv_contexts; i++)
13588 write_csr(dd, RCV_CTXT_CTRL, 0);
13589 /* mask all interrupt sources */
13590 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080013591 write_csr(dd, CCE_INT_MASK + (8 * i), 0ull);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013592
13593 /*
13594 * DC Reset: do a full DC reset before the register clear.
13595 * A recommended length of time to hold is one CSR read,
13596 * so reread the CceDcCtrl. Then, hold the DC in reset
13597 * across the clear.
13598 */
13599 write_csr(dd, CCE_DC_CTRL, CCE_DC_CTRL_DC_RESET_SMASK);
Jubin John50e5dcb2016-02-14 20:19:41 -080013600 (void)read_csr(dd, CCE_DC_CTRL);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013601
13602 if (use_flr) {
13603 /*
13604 * A FLR will reset the SPC core and part of the PCIe.
13605 * The parts that need to be restored have already been
13606 * saved.
13607 */
13608 dd_dev_info(dd, "Resetting CSRs with FLR\n");
13609
13610 /* do the FLR, the DC reset will remain */
13611 hfi1_pcie_flr(dd);
13612
13613 /* restore command and BARs */
13614 restore_pci_variables(dd);
13615
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050013616 if (is_ax(dd)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013617 dd_dev_info(dd, "Resetting CSRs with FLR\n");
13618 hfi1_pcie_flr(dd);
13619 restore_pci_variables(dd);
13620 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040013621 } else {
13622 dd_dev_info(dd, "Resetting CSRs with writes\n");
13623 reset_cce_csrs(dd);
13624 reset_txe_csrs(dd);
13625 reset_rxe_csrs(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013626 reset_misc_csrs(dd);
13627 }
13628 /* clear the DC reset */
13629 write_csr(dd, CCE_DC_CTRL, 0);
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040013630
Mike Marciniszyn77241052015-07-30 15:17:43 -040013631 /* Set the LED off */
Sebastian Sanchez773d04512016-02-09 14:29:40 -080013632 setextled(dd, 0);
13633
Mike Marciniszyn77241052015-07-30 15:17:43 -040013634 /*
13635 * Clear the QSFP reset.
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050013636 * An FLR enforces a 0 on all out pins. The driver does not touch
Mike Marciniszyn77241052015-07-30 15:17:43 -040013637 * ASIC_QSFPn_OUT otherwise. This leaves RESET_N low and
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050013638 * anything plugged constantly in reset, if it pays attention
Mike Marciniszyn77241052015-07-30 15:17:43 -040013639 * to RESET_N.
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050013640 * Prime examples of this are optical cables. Set all pins high.
Mike Marciniszyn77241052015-07-30 15:17:43 -040013641 * I2CCLK and I2CDAT will change per direction, and INT_N and
13642 * MODPRS_N are input only and their value is ignored.
13643 */
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050013644 write_csr(dd, ASIC_QSFP1_OUT, 0x1f);
13645 write_csr(dd, ASIC_QSFP2_OUT, 0x1f);
Dean Luicka2ee27a2016-03-05 08:49:50 -080013646 init_chip_resources(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013647}
13648
13649static void init_early_variables(struct hfi1_devdata *dd)
13650{
13651 int i;
13652
13653 /* assign link credit variables */
13654 dd->vau = CM_VAU;
13655 dd->link_credits = CM_GLOBAL_CREDITS;
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050013656 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -040013657 dd->link_credits--;
13658 dd->vcu = cu_to_vcu(hfi1_cu);
13659 /* enough room for 8 MAD packets plus header - 17K */
13660 dd->vl15_init = (8 * (2048 + 128)) / vau_to_au(dd->vau);
13661 if (dd->vl15_init > dd->link_credits)
13662 dd->vl15_init = dd->link_credits;
13663
13664 write_uninitialized_csrs_and_memories(dd);
13665
13666 if (HFI1_CAP_IS_KSET(PKEY_CHECK))
13667 for (i = 0; i < dd->num_pports; i++) {
13668 struct hfi1_pportdata *ppd = &dd->pport[i];
13669
13670 set_partition_keys(ppd);
13671 }
13672 init_sc2vl_tables(dd);
13673}
13674
13675static void init_kdeth_qp(struct hfi1_devdata *dd)
13676{
13677 /* user changed the KDETH_QP */
13678 if (kdeth_qp != 0 && kdeth_qp >= 0xff) {
13679 /* out of range or illegal value */
13680 dd_dev_err(dd, "Invalid KDETH queue pair prefix, ignoring");
13681 kdeth_qp = 0;
13682 }
13683 if (kdeth_qp == 0) /* not set, or failed range check */
13684 kdeth_qp = DEFAULT_KDETH_QP;
13685
13686 write_csr(dd, SEND_BTH_QP,
Jubin John17fb4f22016-02-14 20:21:52 -080013687 (kdeth_qp & SEND_BTH_QP_KDETH_QP_MASK) <<
13688 SEND_BTH_QP_KDETH_QP_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013689
13690 write_csr(dd, RCV_BTH_QP,
Jubin John17fb4f22016-02-14 20:21:52 -080013691 (kdeth_qp & RCV_BTH_QP_KDETH_QP_MASK) <<
13692 RCV_BTH_QP_KDETH_QP_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013693}
13694
13695/**
13696 * init_qpmap_table
13697 * @dd - device data
13698 * @first_ctxt - first context
13699 * @last_ctxt - first context
13700 *
13701 * This return sets the qpn mapping table that
13702 * is indexed by qpn[8:1].
13703 *
13704 * The routine will round robin the 256 settings
13705 * from first_ctxt to last_ctxt.
13706 *
13707 * The first/last looks ahead to having specialized
13708 * receive contexts for mgmt and bypass. Normal
13709 * verbs traffic will assumed to be on a range
13710 * of receive contexts.
13711 */
13712static void init_qpmap_table(struct hfi1_devdata *dd,
13713 u32 first_ctxt,
13714 u32 last_ctxt)
13715{
13716 u64 reg = 0;
13717 u64 regno = RCV_QP_MAP_TABLE;
13718 int i;
13719 u64 ctxt = first_ctxt;
13720
Dean Luick60d585ad2016-04-12 10:50:35 -070013721 for (i = 0; i < 256; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013722 reg |= ctxt << (8 * (i % 8));
Mike Marciniszyn77241052015-07-30 15:17:43 -040013723 ctxt++;
13724 if (ctxt > last_ctxt)
13725 ctxt = first_ctxt;
Dean Luick60d585ad2016-04-12 10:50:35 -070013726 if (i % 8 == 7) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013727 write_csr(dd, regno, reg);
13728 reg = 0;
13729 regno += 8;
13730 }
13731 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040013732
13733 add_rcvctrl(dd, RCV_CTRL_RCV_QP_MAP_ENABLE_SMASK
13734 | RCV_CTRL_RCV_BYPASS_ENABLE_SMASK);
13735}
13736
Dean Luick372cc85a2016-04-12 11:30:51 -070013737struct rsm_map_table {
13738 u64 map[NUM_MAP_REGS];
13739 unsigned int used;
13740};
13741
Dean Luickb12349a2016-04-12 11:31:33 -070013742struct rsm_rule_data {
13743 u8 offset;
13744 u8 pkt_type;
13745 u32 field1_off;
13746 u32 field2_off;
13747 u32 index1_off;
13748 u32 index1_width;
13749 u32 index2_off;
13750 u32 index2_width;
13751 u32 mask1;
13752 u32 value1;
13753 u32 mask2;
13754 u32 value2;
13755};
13756
Dean Luick372cc85a2016-04-12 11:30:51 -070013757/*
13758 * Return an initialized RMT map table for users to fill in. OK if it
13759 * returns NULL, indicating no table.
13760 */
13761static struct rsm_map_table *alloc_rsm_map_table(struct hfi1_devdata *dd)
13762{
13763 struct rsm_map_table *rmt;
13764 u8 rxcontext = is_ax(dd) ? 0 : 0xff; /* 0 is default if a0 ver. */
13765
13766 rmt = kmalloc(sizeof(*rmt), GFP_KERNEL);
13767 if (rmt) {
13768 memset(rmt->map, rxcontext, sizeof(rmt->map));
13769 rmt->used = 0;
13770 }
13771
13772 return rmt;
13773}
13774
13775/*
13776 * Write the final RMT map table to the chip and free the table. OK if
13777 * table is NULL.
13778 */
13779static void complete_rsm_map_table(struct hfi1_devdata *dd,
13780 struct rsm_map_table *rmt)
13781{
13782 int i;
13783
13784 if (rmt) {
13785 /* write table to chip */
13786 for (i = 0; i < NUM_MAP_REGS; i++)
13787 write_csr(dd, RCV_RSM_MAP_TABLE + (8 * i), rmt->map[i]);
13788
13789 /* enable RSM */
13790 add_rcvctrl(dd, RCV_CTRL_RCV_RSM_ENABLE_SMASK);
13791 }
13792}
13793
Dean Luickb12349a2016-04-12 11:31:33 -070013794/*
13795 * Add a receive side mapping rule.
13796 */
13797static void add_rsm_rule(struct hfi1_devdata *dd, u8 rule_index,
13798 struct rsm_rule_data *rrd)
13799{
13800 write_csr(dd, RCV_RSM_CFG + (8 * rule_index),
13801 (u64)rrd->offset << RCV_RSM_CFG_OFFSET_SHIFT |
13802 1ull << rule_index | /* enable bit */
13803 (u64)rrd->pkt_type << RCV_RSM_CFG_PACKET_TYPE_SHIFT);
13804 write_csr(dd, RCV_RSM_SELECT + (8 * rule_index),
13805 (u64)rrd->field1_off << RCV_RSM_SELECT_FIELD1_OFFSET_SHIFT |
13806 (u64)rrd->field2_off << RCV_RSM_SELECT_FIELD2_OFFSET_SHIFT |
13807 (u64)rrd->index1_off << RCV_RSM_SELECT_INDEX1_OFFSET_SHIFT |
13808 (u64)rrd->index1_width << RCV_RSM_SELECT_INDEX1_WIDTH_SHIFT |
13809 (u64)rrd->index2_off << RCV_RSM_SELECT_INDEX2_OFFSET_SHIFT |
13810 (u64)rrd->index2_width << RCV_RSM_SELECT_INDEX2_WIDTH_SHIFT);
13811 write_csr(dd, RCV_RSM_MATCH + (8 * rule_index),
13812 (u64)rrd->mask1 << RCV_RSM_MATCH_MASK1_SHIFT |
13813 (u64)rrd->value1 << RCV_RSM_MATCH_VALUE1_SHIFT |
13814 (u64)rrd->mask2 << RCV_RSM_MATCH_MASK2_SHIFT |
13815 (u64)rrd->value2 << RCV_RSM_MATCH_VALUE2_SHIFT);
13816}
13817
Dean Luick4a818be2016-04-12 11:31:11 -070013818/* return the number of RSM map table entries that will be used for QOS */
13819static int qos_rmt_entries(struct hfi1_devdata *dd, unsigned int *mp,
13820 unsigned int *np)
13821{
13822 int i;
13823 unsigned int m, n;
13824 u8 max_by_vl = 0;
13825
13826 /* is QOS active at all? */
13827 if (dd->n_krcv_queues <= MIN_KERNEL_KCTXTS ||
13828 num_vls == 1 ||
13829 krcvqsset <= 1)
13830 goto no_qos;
13831
13832 /* determine bits for qpn */
13833 for (i = 0; i < min_t(unsigned int, num_vls, krcvqsset); i++)
13834 if (krcvqs[i] > max_by_vl)
13835 max_by_vl = krcvqs[i];
13836 if (max_by_vl > 32)
13837 goto no_qos;
13838 m = ilog2(__roundup_pow_of_two(max_by_vl));
13839
13840 /* determine bits for vl */
13841 n = ilog2(__roundup_pow_of_two(num_vls));
13842
13843 /* reject if too much is used */
13844 if ((m + n) > 7)
13845 goto no_qos;
13846
13847 if (mp)
13848 *mp = m;
13849 if (np)
13850 *np = n;
13851
13852 return 1 << (m + n);
13853
13854no_qos:
13855 if (mp)
13856 *mp = 0;
13857 if (np)
13858 *np = 0;
13859 return 0;
13860}
13861
Mike Marciniszyn77241052015-07-30 15:17:43 -040013862/**
13863 * init_qos - init RX qos
13864 * @dd - device data
Dean Luick372cc85a2016-04-12 11:30:51 -070013865 * @rmt - RSM map table
Mike Marciniszyn77241052015-07-30 15:17:43 -040013866 *
Dean Luick33a9eb52016-04-12 10:50:22 -070013867 * This routine initializes Rule 0 and the RSM map table to implement
13868 * quality of service (qos).
Mike Marciniszyn77241052015-07-30 15:17:43 -040013869 *
Dean Luick33a9eb52016-04-12 10:50:22 -070013870 * If all of the limit tests succeed, qos is applied based on the array
13871 * interpretation of krcvqs where entry 0 is VL0.
Mike Marciniszyn77241052015-07-30 15:17:43 -040013872 *
Dean Luick33a9eb52016-04-12 10:50:22 -070013873 * The number of vl bits (n) and the number of qpn bits (m) are computed to
13874 * feed both the RSM map table and the single rule.
Mike Marciniszyn77241052015-07-30 15:17:43 -040013875 */
Dean Luick372cc85a2016-04-12 11:30:51 -070013876static void init_qos(struct hfi1_devdata *dd, struct rsm_map_table *rmt)
Mike Marciniszyn77241052015-07-30 15:17:43 -040013877{
Dean Luickb12349a2016-04-12 11:31:33 -070013878 struct rsm_rule_data rrd;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013879 unsigned qpns_per_vl, ctxt, i, qpn, n = 1, m;
Dean Luick372cc85a2016-04-12 11:30:51 -070013880 unsigned int rmt_entries;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013881 u64 reg;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013882
Dean Luick4a818be2016-04-12 11:31:11 -070013883 if (!rmt)
Mike Marciniszyn77241052015-07-30 15:17:43 -040013884 goto bail;
Dean Luick4a818be2016-04-12 11:31:11 -070013885 rmt_entries = qos_rmt_entries(dd, &m, &n);
13886 if (rmt_entries == 0)
Mike Marciniszyn77241052015-07-30 15:17:43 -040013887 goto bail;
Dean Luick4a818be2016-04-12 11:31:11 -070013888 qpns_per_vl = 1 << m;
13889
Dean Luick372cc85a2016-04-12 11:30:51 -070013890 /* enough room in the map table? */
13891 rmt_entries = 1 << (m + n);
13892 if (rmt->used + rmt_entries >= NUM_MAP_ENTRIES)
Easwar Hariharan859bcad2015-12-10 11:13:38 -050013893 goto bail;
Dean Luick4a818be2016-04-12 11:31:11 -070013894
Dean Luick372cc85a2016-04-12 11:30:51 -070013895 /* add qos entries to the the RSM map table */
Dean Luick33a9eb52016-04-12 10:50:22 -070013896 for (i = 0, ctxt = FIRST_KERNEL_KCTXT; i < num_vls; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013897 unsigned tctxt;
13898
13899 for (qpn = 0, tctxt = ctxt;
13900 krcvqs[i] && qpn < qpns_per_vl; qpn++) {
13901 unsigned idx, regoff, regidx;
13902
Dean Luick372cc85a2016-04-12 11:30:51 -070013903 /* generate the index the hardware will produce */
13904 idx = rmt->used + ((qpn << n) ^ i);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013905 regoff = (idx % 8) * 8;
13906 regidx = idx / 8;
Dean Luick372cc85a2016-04-12 11:30:51 -070013907 /* replace default with context number */
13908 reg = rmt->map[regidx];
Mike Marciniszyn77241052015-07-30 15:17:43 -040013909 reg &= ~(RCV_RSM_MAP_TABLE_RCV_CONTEXT_A_MASK
13910 << regoff);
13911 reg |= (u64)(tctxt++) << regoff;
Dean Luick372cc85a2016-04-12 11:30:51 -070013912 rmt->map[regidx] = reg;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013913 if (tctxt == ctxt + krcvqs[i])
13914 tctxt = ctxt;
13915 }
13916 ctxt += krcvqs[i];
13917 }
Dean Luickb12349a2016-04-12 11:31:33 -070013918
13919 rrd.offset = rmt->used;
13920 rrd.pkt_type = 2;
13921 rrd.field1_off = LRH_BTH_MATCH_OFFSET;
13922 rrd.field2_off = LRH_SC_MATCH_OFFSET;
13923 rrd.index1_off = LRH_SC_SELECT_OFFSET;
13924 rrd.index1_width = n;
13925 rrd.index2_off = QPN_SELECT_OFFSET;
13926 rrd.index2_width = m + n;
13927 rrd.mask1 = LRH_BTH_MASK;
13928 rrd.value1 = LRH_BTH_VALUE;
13929 rrd.mask2 = LRH_SC_MASK;
13930 rrd.value2 = LRH_SC_VALUE;
13931
13932 /* add rule 0 */
13933 add_rsm_rule(dd, 0, &rrd);
13934
Dean Luick372cc85a2016-04-12 11:30:51 -070013935 /* mark RSM map entries as used */
13936 rmt->used += rmt_entries;
Dean Luick33a9eb52016-04-12 10:50:22 -070013937 /* map everything else to the mcast/err/vl15 context */
13938 init_qpmap_table(dd, HFI1_CTRL_CTXT, HFI1_CTRL_CTXT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013939 dd->qos_shift = n + 1;
13940 return;
13941bail:
13942 dd->qos_shift = 1;
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050013943 init_qpmap_table(dd, FIRST_KERNEL_KCTXT, dd->n_krcv_queues - 1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013944}
13945
Dean Luick8f000f72016-04-12 11:32:06 -070013946static void init_user_fecn_handling(struct hfi1_devdata *dd,
13947 struct rsm_map_table *rmt)
13948{
13949 struct rsm_rule_data rrd;
13950 u64 reg;
13951 int i, idx, regoff, regidx;
13952 u8 offset;
13953
13954 /* there needs to be enough room in the map table */
13955 if (rmt->used + dd->num_user_contexts >= NUM_MAP_ENTRIES) {
13956 dd_dev_err(dd, "User FECN handling disabled - too many user contexts allocated\n");
13957 return;
13958 }
13959
13960 /*
13961 * RSM will extract the destination context as an index into the
13962 * map table. The destination contexts are a sequential block
13963 * in the range first_user_ctxt...num_rcv_contexts-1 (inclusive).
13964 * Map entries are accessed as offset + extracted value. Adjust
13965 * the added offset so this sequence can be placed anywhere in
13966 * the table - as long as the entries themselves do not wrap.
13967 * There are only enough bits in offset for the table size, so
13968 * start with that to allow for a "negative" offset.
13969 */
13970 offset = (u8)(NUM_MAP_ENTRIES + (int)rmt->used -
13971 (int)dd->first_user_ctxt);
13972
13973 for (i = dd->first_user_ctxt, idx = rmt->used;
13974 i < dd->num_rcv_contexts; i++, idx++) {
13975 /* replace with identity mapping */
13976 regoff = (idx % 8) * 8;
13977 regidx = idx / 8;
13978 reg = rmt->map[regidx];
13979 reg &= ~(RCV_RSM_MAP_TABLE_RCV_CONTEXT_A_MASK << regoff);
13980 reg |= (u64)i << regoff;
13981 rmt->map[regidx] = reg;
13982 }
13983
13984 /*
13985 * For RSM intercept of Expected FECN packets:
13986 * o packet type 0 - expected
13987 * o match on F (bit 95), using select/match 1, and
13988 * o match on SH (bit 133), using select/match 2.
13989 *
13990 * Use index 1 to extract the 8-bit receive context from DestQP
13991 * (start at bit 64). Use that as the RSM map table index.
13992 */
13993 rrd.offset = offset;
13994 rrd.pkt_type = 0;
13995 rrd.field1_off = 95;
13996 rrd.field2_off = 133;
13997 rrd.index1_off = 64;
13998 rrd.index1_width = 8;
13999 rrd.index2_off = 0;
14000 rrd.index2_width = 0;
14001 rrd.mask1 = 1;
14002 rrd.value1 = 1;
14003 rrd.mask2 = 1;
14004 rrd.value2 = 1;
14005
14006 /* add rule 1 */
14007 add_rsm_rule(dd, 1, &rrd);
14008
14009 rmt->used += dd->num_user_contexts;
14010}
14011
Mike Marciniszyn77241052015-07-30 15:17:43 -040014012static void init_rxe(struct hfi1_devdata *dd)
14013{
Dean Luick372cc85a2016-04-12 11:30:51 -070014014 struct rsm_map_table *rmt;
14015
Mike Marciniszyn77241052015-07-30 15:17:43 -040014016 /* enable all receive errors */
14017 write_csr(dd, RCV_ERR_MASK, ~0ull);
Dean Luick372cc85a2016-04-12 11:30:51 -070014018
14019 rmt = alloc_rsm_map_table(dd);
14020 /* set up QOS, including the QPN map table */
14021 init_qos(dd, rmt);
Dean Luick8f000f72016-04-12 11:32:06 -070014022 init_user_fecn_handling(dd, rmt);
Dean Luick372cc85a2016-04-12 11:30:51 -070014023 complete_rsm_map_table(dd, rmt);
14024 kfree(rmt);
14025
Mike Marciniszyn77241052015-07-30 15:17:43 -040014026 /*
14027 * make sure RcvCtrl.RcvWcb <= PCIe Device Control
14028 * Register Max_Payload_Size (PCI_EXP_DEVCTL in Linux PCIe config
14029 * space, PciCfgCap2.MaxPayloadSize in HFI). There is only one
14030 * invalid configuration: RcvCtrl.RcvWcb set to its max of 256 and
14031 * Max_PayLoad_Size set to its minimum of 128.
14032 *
14033 * Presently, RcvCtrl.RcvWcb is not modified from its default of 0
14034 * (64 bytes). Max_Payload_Size is possibly modified upward in
14035 * tune_pcie_caps() which is called after this routine.
14036 */
14037}
14038
14039static void init_other(struct hfi1_devdata *dd)
14040{
14041 /* enable all CCE errors */
14042 write_csr(dd, CCE_ERR_MASK, ~0ull);
14043 /* enable *some* Misc errors */
14044 write_csr(dd, MISC_ERR_MASK, DRIVER_MISC_MASK);
14045 /* enable all DC errors, except LCB */
14046 write_csr(dd, DCC_ERR_FLG_EN, ~0ull);
14047 write_csr(dd, DC_DC8051_ERR_EN, ~0ull);
14048}
14049
14050/*
14051 * Fill out the given AU table using the given CU. A CU is defined in terms
14052 * AUs. The table is a an encoding: given the index, how many AUs does that
14053 * represent?
14054 *
14055 * NOTE: Assumes that the register layout is the same for the
14056 * local and remote tables.
14057 */
14058static void assign_cm_au_table(struct hfi1_devdata *dd, u32 cu,
14059 u32 csr0to3, u32 csr4to7)
14060{
14061 write_csr(dd, csr0to3,
Jubin John17fb4f22016-02-14 20:21:52 -080014062 0ull << SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE0_SHIFT |
14063 1ull << SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE1_SHIFT |
14064 2ull * cu <<
14065 SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE2_SHIFT |
14066 4ull * cu <<
14067 SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE3_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014068 write_csr(dd, csr4to7,
Jubin John17fb4f22016-02-14 20:21:52 -080014069 8ull * cu <<
14070 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE4_SHIFT |
14071 16ull * cu <<
14072 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE5_SHIFT |
14073 32ull * cu <<
14074 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE6_SHIFT |
14075 64ull * cu <<
14076 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE7_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014077}
14078
14079static void assign_local_cm_au_table(struct hfi1_devdata *dd, u8 vcu)
14080{
14081 assign_cm_au_table(dd, vcu_to_cu(vcu), SEND_CM_LOCAL_AU_TABLE0_TO3,
Jubin John17fb4f22016-02-14 20:21:52 -080014082 SEND_CM_LOCAL_AU_TABLE4_TO7);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014083}
14084
14085void assign_remote_cm_au_table(struct hfi1_devdata *dd, u8 vcu)
14086{
14087 assign_cm_au_table(dd, vcu_to_cu(vcu), SEND_CM_REMOTE_AU_TABLE0_TO3,
Jubin John17fb4f22016-02-14 20:21:52 -080014088 SEND_CM_REMOTE_AU_TABLE4_TO7);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014089}
14090
14091static void init_txe(struct hfi1_devdata *dd)
14092{
14093 int i;
14094
14095 /* enable all PIO, SDMA, general, and Egress errors */
14096 write_csr(dd, SEND_PIO_ERR_MASK, ~0ull);
14097 write_csr(dd, SEND_DMA_ERR_MASK, ~0ull);
14098 write_csr(dd, SEND_ERR_MASK, ~0ull);
14099 write_csr(dd, SEND_EGRESS_ERR_MASK, ~0ull);
14100
14101 /* enable all per-context and per-SDMA engine errors */
14102 for (i = 0; i < dd->chip_send_contexts; i++)
14103 write_kctxt_csr(dd, i, SEND_CTXT_ERR_MASK, ~0ull);
14104 for (i = 0; i < dd->chip_sdma_engines; i++)
14105 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_MASK, ~0ull);
14106
14107 /* set the local CU to AU mapping */
14108 assign_local_cm_au_table(dd, dd->vcu);
14109
14110 /*
14111 * Set reasonable default for Credit Return Timer
14112 * Don't set on Simulator - causes it to choke.
14113 */
14114 if (dd->icode != ICODE_FUNCTIONAL_SIMULATOR)
14115 write_csr(dd, SEND_CM_TIMER_CTRL, HFI1_CREDIT_RETURN_RATE);
14116}
14117
14118int hfi1_set_ctxt_jkey(struct hfi1_devdata *dd, unsigned ctxt, u16 jkey)
14119{
14120 struct hfi1_ctxtdata *rcd = dd->rcd[ctxt];
14121 unsigned sctxt;
14122 int ret = 0;
14123 u64 reg;
14124
14125 if (!rcd || !rcd->sc) {
14126 ret = -EINVAL;
14127 goto done;
14128 }
14129 sctxt = rcd->sc->hw_context;
14130 reg = SEND_CTXT_CHECK_JOB_KEY_MASK_SMASK | /* mask is always 1's */
14131 ((jkey & SEND_CTXT_CHECK_JOB_KEY_VALUE_MASK) <<
14132 SEND_CTXT_CHECK_JOB_KEY_VALUE_SHIFT);
14133 /* JOB_KEY_ALLOW_PERMISSIVE is not allowed by default */
14134 if (HFI1_CAP_KGET_MASK(rcd->flags, ALLOW_PERM_JKEY))
14135 reg |= SEND_CTXT_CHECK_JOB_KEY_ALLOW_PERMISSIVE_SMASK;
14136 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_JOB_KEY, reg);
14137 /*
14138 * Enable send-side J_KEY integrity check, unless this is A0 h/w
Mike Marciniszyn77241052015-07-30 15:17:43 -040014139 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050014140 if (!is_ax(dd)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014141 reg = read_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE);
14142 reg |= SEND_CTXT_CHECK_ENABLE_CHECK_JOB_KEY_SMASK;
14143 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE, reg);
14144 }
14145
14146 /* Enable J_KEY check on receive context. */
14147 reg = RCV_KEY_CTRL_JOB_KEY_ENABLE_SMASK |
14148 ((jkey & RCV_KEY_CTRL_JOB_KEY_VALUE_MASK) <<
14149 RCV_KEY_CTRL_JOB_KEY_VALUE_SHIFT);
14150 write_kctxt_csr(dd, ctxt, RCV_KEY_CTRL, reg);
14151done:
14152 return ret;
14153}
14154
14155int hfi1_clear_ctxt_jkey(struct hfi1_devdata *dd, unsigned ctxt)
14156{
14157 struct hfi1_ctxtdata *rcd = dd->rcd[ctxt];
14158 unsigned sctxt;
14159 int ret = 0;
14160 u64 reg;
14161
14162 if (!rcd || !rcd->sc) {
14163 ret = -EINVAL;
14164 goto done;
14165 }
14166 sctxt = rcd->sc->hw_context;
14167 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_JOB_KEY, 0);
14168 /*
14169 * Disable send-side J_KEY integrity check, unless this is A0 h/w.
14170 * This check would not have been enabled for A0 h/w, see
14171 * set_ctxt_jkey().
14172 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050014173 if (!is_ax(dd)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014174 reg = read_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE);
14175 reg &= ~SEND_CTXT_CHECK_ENABLE_CHECK_JOB_KEY_SMASK;
14176 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE, reg);
14177 }
14178 /* Turn off the J_KEY on the receive side */
14179 write_kctxt_csr(dd, ctxt, RCV_KEY_CTRL, 0);
14180done:
14181 return ret;
14182}
14183
14184int hfi1_set_ctxt_pkey(struct hfi1_devdata *dd, unsigned ctxt, u16 pkey)
14185{
14186 struct hfi1_ctxtdata *rcd;
14187 unsigned sctxt;
14188 int ret = 0;
14189 u64 reg;
14190
Jubin Johne4909742016-02-14 20:22:00 -080014191 if (ctxt < dd->num_rcv_contexts) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014192 rcd = dd->rcd[ctxt];
Jubin Johne4909742016-02-14 20:22:00 -080014193 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014194 ret = -EINVAL;
14195 goto done;
14196 }
14197 if (!rcd || !rcd->sc) {
14198 ret = -EINVAL;
14199 goto done;
14200 }
14201 sctxt = rcd->sc->hw_context;
14202 reg = ((u64)pkey & SEND_CTXT_CHECK_PARTITION_KEY_VALUE_MASK) <<
14203 SEND_CTXT_CHECK_PARTITION_KEY_VALUE_SHIFT;
14204 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_PARTITION_KEY, reg);
14205 reg = read_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE);
14206 reg |= SEND_CTXT_CHECK_ENABLE_CHECK_PARTITION_KEY_SMASK;
Sebastian Sancheze38d1e42016-04-12 11:22:21 -070014207 reg &= ~SEND_CTXT_CHECK_ENABLE_DISALLOW_KDETH_PACKETS_SMASK;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014208 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE, reg);
14209done:
14210 return ret;
14211}
14212
14213int hfi1_clear_ctxt_pkey(struct hfi1_devdata *dd, unsigned ctxt)
14214{
14215 struct hfi1_ctxtdata *rcd;
14216 unsigned sctxt;
14217 int ret = 0;
14218 u64 reg;
14219
Jubin Johne4909742016-02-14 20:22:00 -080014220 if (ctxt < dd->num_rcv_contexts) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014221 rcd = dd->rcd[ctxt];
Jubin Johne4909742016-02-14 20:22:00 -080014222 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014223 ret = -EINVAL;
14224 goto done;
14225 }
14226 if (!rcd || !rcd->sc) {
14227 ret = -EINVAL;
14228 goto done;
14229 }
14230 sctxt = rcd->sc->hw_context;
14231 reg = read_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE);
14232 reg &= ~SEND_CTXT_CHECK_ENABLE_CHECK_PARTITION_KEY_SMASK;
14233 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_ENABLE, reg);
14234 write_kctxt_csr(dd, sctxt, SEND_CTXT_CHECK_PARTITION_KEY, 0);
14235done:
14236 return ret;
14237}
14238
14239/*
14240 * Start doing the clean up the the chip. Our clean up happens in multiple
14241 * stages and this is just the first.
14242 */
14243void hfi1_start_cleanup(struct hfi1_devdata *dd)
14244{
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -080014245 aspm_exit(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014246 free_cntrs(dd);
14247 free_rcverr(dd);
14248 clean_up_interrupts(dd);
Dean Luicka2ee27a2016-03-05 08:49:50 -080014249 finish_chip_resources(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014250}
14251
14252#define HFI_BASE_GUID(dev) \
14253 ((dev)->base_guid & ~(1ULL << GUID_HFI_INDEX_SHIFT))
14254
14255/*
Dean Luick78eb1292016-03-05 08:49:45 -080014256 * Information can be shared between the two HFIs on the same ASIC
14257 * in the same OS. This function finds the peer device and sets
14258 * up a shared structure.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014259 */
Dean Luick78eb1292016-03-05 08:49:45 -080014260static int init_asic_data(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014261{
14262 unsigned long flags;
14263 struct hfi1_devdata *tmp, *peer = NULL;
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014264 struct hfi1_asic_data *asic_data;
Dean Luick78eb1292016-03-05 08:49:45 -080014265 int ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014266
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014267 /* pre-allocate the asic structure in case we are the first device */
14268 asic_data = kzalloc(sizeof(*dd->asic_data), GFP_KERNEL);
14269 if (!asic_data)
14270 return -ENOMEM;
14271
Mike Marciniszyn77241052015-07-30 15:17:43 -040014272 spin_lock_irqsave(&hfi1_devs_lock, flags);
14273 /* Find our peer device */
14274 list_for_each_entry(tmp, &hfi1_dev_list, list) {
14275 if ((HFI_BASE_GUID(dd) == HFI_BASE_GUID(tmp)) &&
14276 dd->unit != tmp->unit) {
14277 peer = tmp;
14278 break;
14279 }
14280 }
14281
Dean Luick78eb1292016-03-05 08:49:45 -080014282 if (peer) {
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014283 /* use already allocated structure */
Dean Luick78eb1292016-03-05 08:49:45 -080014284 dd->asic_data = peer->asic_data;
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014285 kfree(asic_data);
Dean Luick78eb1292016-03-05 08:49:45 -080014286 } else {
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014287 dd->asic_data = asic_data;
Dean Luick78eb1292016-03-05 08:49:45 -080014288 mutex_init(&dd->asic_data->asic_resource_mutex);
14289 }
14290 dd->asic_data->dds[dd->hfi1_id] = dd; /* self back-pointer */
Mike Marciniszyn77241052015-07-30 15:17:43 -040014291 spin_unlock_irqrestore(&hfi1_devs_lock, flags);
Dean Luickdba715f2016-07-06 17:28:52 -040014292
14293 /* first one through - set up i2c devices */
14294 if (!peer)
14295 ret = set_up_i2c(dd, dd->asic_data);
14296
Dean Luick78eb1292016-03-05 08:49:45 -080014297 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014298}
14299
Dean Luick5d9157a2015-11-16 21:59:34 -050014300/*
14301 * Set dd->boardname. Use a generic name if a name is not returned from
14302 * EFI variable space.
14303 *
14304 * Return 0 on success, -ENOMEM if space could not be allocated.
14305 */
14306static int obtain_boardname(struct hfi1_devdata *dd)
14307{
14308 /* generic board description */
14309 const char generic[] =
14310 "Intel Omni-Path Host Fabric Interface Adapter 100 Series";
14311 unsigned long size;
14312 int ret;
14313
14314 ret = read_hfi1_efi_var(dd, "description", &size,
14315 (void **)&dd->boardname);
14316 if (ret) {
Dean Luick845f8762016-02-03 14:31:57 -080014317 dd_dev_info(dd, "Board description not found\n");
Dean Luick5d9157a2015-11-16 21:59:34 -050014318 /* use generic description */
14319 dd->boardname = kstrdup(generic, GFP_KERNEL);
14320 if (!dd->boardname)
14321 return -ENOMEM;
14322 }
14323 return 0;
14324}
14325
Kaike Wan24487dd2016-02-26 13:33:23 -080014326/*
14327 * Check the interrupt registers to make sure that they are mapped correctly.
14328 * It is intended to help user identify any mismapping by VMM when the driver
14329 * is running in a VM. This function should only be called before interrupt
14330 * is set up properly.
14331 *
14332 * Return 0 on success, -EINVAL on failure.
14333 */
14334static int check_int_registers(struct hfi1_devdata *dd)
14335{
14336 u64 reg;
14337 u64 all_bits = ~(u64)0;
14338 u64 mask;
14339
14340 /* Clear CceIntMask[0] to avoid raising any interrupts */
14341 mask = read_csr(dd, CCE_INT_MASK);
14342 write_csr(dd, CCE_INT_MASK, 0ull);
14343 reg = read_csr(dd, CCE_INT_MASK);
14344 if (reg)
14345 goto err_exit;
14346
14347 /* Clear all interrupt status bits */
14348 write_csr(dd, CCE_INT_CLEAR, all_bits);
14349 reg = read_csr(dd, CCE_INT_STATUS);
14350 if (reg)
14351 goto err_exit;
14352
14353 /* Set all interrupt status bits */
14354 write_csr(dd, CCE_INT_FORCE, all_bits);
14355 reg = read_csr(dd, CCE_INT_STATUS);
14356 if (reg != all_bits)
14357 goto err_exit;
14358
14359 /* Restore the interrupt mask */
14360 write_csr(dd, CCE_INT_CLEAR, all_bits);
14361 write_csr(dd, CCE_INT_MASK, mask);
14362
14363 return 0;
14364err_exit:
14365 write_csr(dd, CCE_INT_MASK, mask);
14366 dd_dev_err(dd, "Interrupt registers not properly mapped by VMM\n");
14367 return -EINVAL;
14368}
14369
Mike Marciniszyn77241052015-07-30 15:17:43 -040014370/**
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040014371 * Allocate and initialize the device structure for the hfi.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014372 * @dev: the pci_dev for hfi1_ib device
14373 * @ent: pci_device_id struct for this dev
14374 *
14375 * Also allocates, initializes, and returns the devdata struct for this
14376 * device instance
14377 *
14378 * This is global, and is called directly at init to set up the
14379 * chip-specific function pointers for later use.
14380 */
14381struct hfi1_devdata *hfi1_init_dd(struct pci_dev *pdev,
14382 const struct pci_device_id *ent)
14383{
14384 struct hfi1_devdata *dd;
14385 struct hfi1_pportdata *ppd;
14386 u64 reg;
14387 int i, ret;
14388 static const char * const inames[] = { /* implementation names */
14389 "RTL silicon",
14390 "RTL VCS simulation",
14391 "RTL FPGA emulation",
14392 "Functional simulator"
14393 };
Kaike Wan24487dd2016-02-26 13:33:23 -080014394 struct pci_dev *parent = pdev->bus->self;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014395
Jubin John17fb4f22016-02-14 20:21:52 -080014396 dd = hfi1_alloc_devdata(pdev, NUM_IB_PORTS *
14397 sizeof(struct hfi1_pportdata));
Mike Marciniszyn77241052015-07-30 15:17:43 -040014398 if (IS_ERR(dd))
14399 goto bail;
14400 ppd = dd->pport;
14401 for (i = 0; i < dd->num_pports; i++, ppd++) {
14402 int vl;
14403 /* init common fields */
14404 hfi1_init_pportdata(pdev, ppd, dd, 0, 1);
14405 /* DC supports 4 link widths */
14406 ppd->link_width_supported =
14407 OPA_LINK_WIDTH_1X | OPA_LINK_WIDTH_2X |
14408 OPA_LINK_WIDTH_3X | OPA_LINK_WIDTH_4X;
14409 ppd->link_width_downgrade_supported =
14410 ppd->link_width_supported;
14411 /* start out enabling only 4X */
14412 ppd->link_width_enabled = OPA_LINK_WIDTH_4X;
14413 ppd->link_width_downgrade_enabled =
14414 ppd->link_width_downgrade_supported;
14415 /* link width active is 0 when link is down */
14416 /* link width downgrade active is 0 when link is down */
14417
Jubin Johnd0d236e2016-02-14 20:20:15 -080014418 if (num_vls < HFI1_MIN_VLS_SUPPORTED ||
14419 num_vls > HFI1_MAX_VLS_SUPPORTED) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014420 hfi1_early_err(&pdev->dev,
14421 "Invalid num_vls %u, using %u VLs\n",
14422 num_vls, HFI1_MAX_VLS_SUPPORTED);
14423 num_vls = HFI1_MAX_VLS_SUPPORTED;
14424 }
14425 ppd->vls_supported = num_vls;
14426 ppd->vls_operational = ppd->vls_supported;
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080014427 ppd->actual_vls_operational = ppd->vls_supported;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014428 /* Set the default MTU. */
14429 for (vl = 0; vl < num_vls; vl++)
14430 dd->vld[vl].mtu = hfi1_max_mtu;
14431 dd->vld[15].mtu = MAX_MAD_PACKET;
14432 /*
14433 * Set the initial values to reasonable default, will be set
14434 * for real when link is up.
14435 */
14436 ppd->lstate = IB_PORT_DOWN;
14437 ppd->overrun_threshold = 0x4;
14438 ppd->phy_error_threshold = 0xf;
14439 ppd->port_crc_mode_enabled = link_crc_mask;
14440 /* initialize supported LTP CRC mode */
14441 ppd->port_ltp_crc_mode = cap_to_port_ltp(link_crc_mask) << 8;
14442 /* initialize enabled LTP CRC mode */
14443 ppd->port_ltp_crc_mode |= cap_to_port_ltp(link_crc_mask) << 4;
14444 /* start in offline */
14445 ppd->host_link_state = HLS_DN_OFFLINE;
14446 init_vl_arb_caches(ppd);
Dean Luickf45c8dc2016-02-03 14:35:31 -080014447 ppd->last_pstate = 0xff; /* invalid value */
Mike Marciniszyn77241052015-07-30 15:17:43 -040014448 }
14449
14450 dd->link_default = HLS_DN_POLL;
14451
14452 /*
14453 * Do remaining PCIe setup and save PCIe values in dd.
14454 * Any error printing is already done by the init code.
14455 * On return, we have the chip mapped.
14456 */
Easwar Hariharan26ea2542016-10-17 04:19:58 -070014457 ret = hfi1_pcie_ddinit(dd, pdev);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014458 if (ret < 0)
14459 goto bail_free;
14460
14461 /* verify that reads actually work, save revision for reset check */
14462 dd->revision = read_csr(dd, CCE_REVISION);
14463 if (dd->revision == ~(u64)0) {
14464 dd_dev_err(dd, "cannot read chip CSRs\n");
14465 ret = -EINVAL;
14466 goto bail_cleanup;
14467 }
14468 dd->majrev = (dd->revision >> CCE_REVISION_CHIP_REV_MAJOR_SHIFT)
14469 & CCE_REVISION_CHIP_REV_MAJOR_MASK;
14470 dd->minrev = (dd->revision >> CCE_REVISION_CHIP_REV_MINOR_SHIFT)
14471 & CCE_REVISION_CHIP_REV_MINOR_MASK;
14472
Jubin John4d114fd2016-02-14 20:21:43 -080014473 /*
Kaike Wan24487dd2016-02-26 13:33:23 -080014474 * Check interrupt registers mapping if the driver has no access to
14475 * the upstream component. In this case, it is likely that the driver
14476 * is running in a VM.
14477 */
14478 if (!parent) {
14479 ret = check_int_registers(dd);
14480 if (ret)
14481 goto bail_cleanup;
14482 }
14483
14484 /*
Jubin John4d114fd2016-02-14 20:21:43 -080014485 * obtain the hardware ID - NOT related to unit, which is a
14486 * software enumeration
14487 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040014488 reg = read_csr(dd, CCE_REVISION2);
14489 dd->hfi1_id = (reg >> CCE_REVISION2_HFI_ID_SHIFT)
14490 & CCE_REVISION2_HFI_ID_MASK;
14491 /* the variable size will remove unwanted bits */
14492 dd->icode = reg >> CCE_REVISION2_IMPL_CODE_SHIFT;
14493 dd->irev = reg >> CCE_REVISION2_IMPL_REVISION_SHIFT;
14494 dd_dev_info(dd, "Implementation: %s, revision 0x%x\n",
Jubin John17fb4f22016-02-14 20:21:52 -080014495 dd->icode < ARRAY_SIZE(inames) ?
14496 inames[dd->icode] : "unknown", (int)dd->irev);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014497
14498 /* speeds the hardware can support */
14499 dd->pport->link_speed_supported = OPA_LINK_SPEED_25G;
14500 /* speeds allowed to run at */
14501 dd->pport->link_speed_enabled = dd->pport->link_speed_supported;
14502 /* give a reasonable active value, will be set on link up */
14503 dd->pport->link_speed_active = OPA_LINK_SPEED_25G;
14504
14505 dd->chip_rcv_contexts = read_csr(dd, RCV_CONTEXTS);
14506 dd->chip_send_contexts = read_csr(dd, SEND_CONTEXTS);
14507 dd->chip_sdma_engines = read_csr(dd, SEND_DMA_ENGINES);
14508 dd->chip_pio_mem_size = read_csr(dd, SEND_PIO_MEM_SIZE);
14509 dd->chip_sdma_mem_size = read_csr(dd, SEND_DMA_MEM_SIZE);
14510 /* fix up link widths for emulation _p */
14511 ppd = dd->pport;
14512 if (dd->icode == ICODE_FPGA_EMULATION && is_emulator_p(dd)) {
14513 ppd->link_width_supported =
14514 ppd->link_width_enabled =
14515 ppd->link_width_downgrade_supported =
14516 ppd->link_width_downgrade_enabled =
14517 OPA_LINK_WIDTH_1X;
14518 }
14519 /* insure num_vls isn't larger than number of sdma engines */
14520 if (HFI1_CAP_IS_KSET(SDMA) && num_vls > dd->chip_sdma_engines) {
14521 dd_dev_err(dd, "num_vls %u too large, using %u VLs\n",
Dean Luick11a59092015-12-01 15:38:18 -050014522 num_vls, dd->chip_sdma_engines);
14523 num_vls = dd->chip_sdma_engines;
14524 ppd->vls_supported = dd->chip_sdma_engines;
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080014525 ppd->vls_operational = ppd->vls_supported;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014526 }
14527
14528 /*
14529 * Convert the ns parameter to the 64 * cclocks used in the CSR.
14530 * Limit the max if larger than the field holds. If timeout is
14531 * non-zero, then the calculated field will be at least 1.
14532 *
14533 * Must be after icode is set up - the cclock rate depends
14534 * on knowing the hardware being used.
14535 */
14536 dd->rcv_intr_timeout_csr = ns_to_cclock(dd, rcv_intr_timeout) / 64;
14537 if (dd->rcv_intr_timeout_csr >
14538 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_MASK)
14539 dd->rcv_intr_timeout_csr =
14540 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_MASK;
14541 else if (dd->rcv_intr_timeout_csr == 0 && rcv_intr_timeout)
14542 dd->rcv_intr_timeout_csr = 1;
14543
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040014544 /* needs to be done before we look for the peer device */
14545 read_guid(dd);
14546
Dean Luick78eb1292016-03-05 08:49:45 -080014547 /* set up shared ASIC data with peer device */
14548 ret = init_asic_data(dd);
14549 if (ret)
14550 goto bail_cleanup;
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040014551
Mike Marciniszyn77241052015-07-30 15:17:43 -040014552 /* obtain chip sizes, reset chip CSRs */
14553 init_chip(dd);
14554
14555 /* read in the PCIe link speed information */
14556 ret = pcie_speeds(dd);
14557 if (ret)
14558 goto bail_cleanup;
14559
Dean Luicke83eba22016-09-30 04:41:45 -070014560 /* call before get_platform_config(), after init_chip_resources() */
14561 ret = eprom_init(dd);
14562 if (ret)
14563 goto bail_free_rcverr;
14564
Easwar Hariharanc3838b32016-02-09 14:29:13 -080014565 /* Needs to be called before hfi1_firmware_init */
14566 get_platform_config(dd);
14567
Mike Marciniszyn77241052015-07-30 15:17:43 -040014568 /* read in firmware */
14569 ret = hfi1_firmware_init(dd);
14570 if (ret)
14571 goto bail_cleanup;
14572
14573 /*
14574 * In general, the PCIe Gen3 transition must occur after the
14575 * chip has been idled (so it won't initiate any PCIe transactions
14576 * e.g. an interrupt) and before the driver changes any registers
14577 * (the transition will reset the registers).
14578 *
14579 * In particular, place this call after:
14580 * - init_chip() - the chip will not initiate any PCIe transactions
14581 * - pcie_speeds() - reads the current link speed
14582 * - hfi1_firmware_init() - the needed firmware is ready to be
14583 * downloaded
14584 */
14585 ret = do_pcie_gen3_transition(dd);
14586 if (ret)
14587 goto bail_cleanup;
14588
14589 /* start setting dd values and adjusting CSRs */
14590 init_early_variables(dd);
14591
14592 parse_platform_config(dd);
14593
Dean Luick5d9157a2015-11-16 21:59:34 -050014594 ret = obtain_boardname(dd);
14595 if (ret)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014596 goto bail_cleanup;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014597
14598 snprintf(dd->boardversion, BOARD_VERS_MAX,
Dean Luick5d9157a2015-11-16 21:59:34 -050014599 "ChipABI %u.%u, ChipRev %u.%u, SW Compat %llu\n",
Mike Marciniszyn77241052015-07-30 15:17:43 -040014600 HFI1_CHIP_VERS_MAJ, HFI1_CHIP_VERS_MIN,
Mike Marciniszyn77241052015-07-30 15:17:43 -040014601 (u32)dd->majrev,
14602 (u32)dd->minrev,
14603 (dd->revision >> CCE_REVISION_SW_SHIFT)
14604 & CCE_REVISION_SW_MASK);
14605
14606 ret = set_up_context_variables(dd);
14607 if (ret)
14608 goto bail_cleanup;
14609
14610 /* set initial RXE CSRs */
14611 init_rxe(dd);
14612 /* set initial TXE CSRs */
14613 init_txe(dd);
14614 /* set initial non-RXE, non-TXE CSRs */
14615 init_other(dd);
14616 /* set up KDETH QP prefix in both RX and TX CSRs */
14617 init_kdeth_qp(dd);
14618
Dennis Dalessandro41973442016-07-25 07:52:36 -070014619 ret = hfi1_dev_affinity_init(dd);
14620 if (ret)
14621 goto bail_cleanup;
Mitko Haralanov957558c2016-02-03 14:33:40 -080014622
Mike Marciniszyn77241052015-07-30 15:17:43 -040014623 /* send contexts must be set up before receive contexts */
14624 ret = init_send_contexts(dd);
14625 if (ret)
14626 goto bail_cleanup;
14627
14628 ret = hfi1_create_ctxts(dd);
14629 if (ret)
14630 goto bail_cleanup;
14631
14632 dd->rcvhdrsize = DEFAULT_RCVHDRSIZE;
14633 /*
14634 * rcd[0] is guaranteed to be valid by this point. Also, all
14635 * context are using the same value, as per the module parameter.
14636 */
14637 dd->rhf_offset = dd->rcd[0]->rcvhdrqentsize - sizeof(u64) / sizeof(u32);
14638
14639 ret = init_pervl_scs(dd);
14640 if (ret)
14641 goto bail_cleanup;
14642
14643 /* sdma init */
14644 for (i = 0; i < dd->num_pports; ++i) {
14645 ret = sdma_init(dd, i);
14646 if (ret)
14647 goto bail_cleanup;
14648 }
14649
14650 /* use contexts created by hfi1_create_ctxts */
14651 ret = set_up_interrupts(dd);
14652 if (ret)
14653 goto bail_cleanup;
14654
14655 /* set up LCB access - must be after set_up_interrupts() */
14656 init_lcb_access(dd);
14657
Ira Weinyfc0b76c2016-07-27 21:09:40 -040014658 /*
14659 * Serial number is created from the base guid:
14660 * [27:24] = base guid [38:35]
14661 * [23: 0] = base guid [23: 0]
14662 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040014663 snprintf(dd->serial, SERIAL_MAX, "0x%08llx\n",
Ira Weinyfc0b76c2016-07-27 21:09:40 -040014664 (dd->base_guid & 0xFFFFFF) |
14665 ((dd->base_guid >> 11) & 0xF000000));
Mike Marciniszyn77241052015-07-30 15:17:43 -040014666
14667 dd->oui1 = dd->base_guid >> 56 & 0xFF;
14668 dd->oui2 = dd->base_guid >> 48 & 0xFF;
14669 dd->oui3 = dd->base_guid >> 40 & 0xFF;
14670
14671 ret = load_firmware(dd); /* asymmetric with dispose_firmware() */
14672 if (ret)
14673 goto bail_clear_intr;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014674
14675 thermal_init(dd);
14676
14677 ret = init_cntrs(dd);
14678 if (ret)
14679 goto bail_clear_intr;
14680
14681 ret = init_rcverr(dd);
14682 if (ret)
14683 goto bail_free_cntrs;
14684
Tadeusz Strukacd7c8f2016-10-25 08:57:55 -070014685 init_completion(&dd->user_comp);
14686
14687 /* The user refcount starts with one to inidicate an active device */
14688 atomic_set(&dd->user_refcount, 1);
14689
Mike Marciniszyn77241052015-07-30 15:17:43 -040014690 goto bail;
14691
14692bail_free_rcverr:
14693 free_rcverr(dd);
14694bail_free_cntrs:
14695 free_cntrs(dd);
14696bail_clear_intr:
14697 clean_up_interrupts(dd);
14698bail_cleanup:
14699 hfi1_pcie_ddcleanup(dd);
14700bail_free:
14701 hfi1_free_devdata(dd);
14702 dd = ERR_PTR(ret);
14703bail:
14704 return dd;
14705}
14706
14707static u16 delay_cycles(struct hfi1_pportdata *ppd, u32 desired_egress_rate,
14708 u32 dw_len)
14709{
14710 u32 delta_cycles;
14711 u32 current_egress_rate = ppd->current_egress_rate;
14712 /* rates here are in units of 10^6 bits/sec */
14713
14714 if (desired_egress_rate == -1)
14715 return 0; /* shouldn't happen */
14716
14717 if (desired_egress_rate >= current_egress_rate)
14718 return 0; /* we can't help go faster, only slower */
14719
14720 delta_cycles = egress_cycles(dw_len * 4, desired_egress_rate) -
14721 egress_cycles(dw_len * 4, current_egress_rate);
14722
14723 return (u16)delta_cycles;
14724}
14725
Mike Marciniszyn77241052015-07-30 15:17:43 -040014726/**
14727 * create_pbc - build a pbc for transmission
14728 * @flags: special case flags or-ed in built pbc
14729 * @srate: static rate
14730 * @vl: vl
14731 * @dwlen: dword length (header words + data words + pbc words)
14732 *
14733 * Create a PBC with the given flags, rate, VL, and length.
14734 *
14735 * NOTE: The PBC created will not insert any HCRC - all callers but one are
14736 * for verbs, which does not use this PSM feature. The lone other caller
14737 * is for the diagnostic interface which calls this if the user does not
14738 * supply their own PBC.
14739 */
14740u64 create_pbc(struct hfi1_pportdata *ppd, u64 flags, int srate_mbs, u32 vl,
14741 u32 dw_len)
14742{
14743 u64 pbc, delay = 0;
14744
14745 if (unlikely(srate_mbs))
14746 delay = delay_cycles(ppd, srate_mbs, dw_len);
14747
14748 pbc = flags
14749 | (delay << PBC_STATIC_RATE_CONTROL_COUNT_SHIFT)
14750 | ((u64)PBC_IHCRC_NONE << PBC_INSERT_HCRC_SHIFT)
14751 | (vl & PBC_VL_MASK) << PBC_VL_SHIFT
14752 | (dw_len & PBC_LENGTH_DWS_MASK)
14753 << PBC_LENGTH_DWS_SHIFT;
14754
14755 return pbc;
14756}
14757
14758#define SBUS_THERMAL 0x4f
14759#define SBUS_THERM_MONITOR_MODE 0x1
14760
14761#define THERM_FAILURE(dev, ret, reason) \
14762 dd_dev_err((dd), \
14763 "Thermal sensor initialization failed: %s (%d)\n", \
14764 (reason), (ret))
14765
14766/*
Jakub Pawlakcde10af2016-05-12 10:23:35 -070014767 * Initialize the thermal sensor.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014768 *
14769 * After initialization, enable polling of thermal sensor through
14770 * SBus interface. In order for this to work, the SBus Master
14771 * firmware has to be loaded due to the fact that the HW polling
14772 * logic uses SBus interrupts, which are not supported with
14773 * default firmware. Otherwise, no data will be returned through
14774 * the ASIC_STS_THERM CSR.
14775 */
14776static int thermal_init(struct hfi1_devdata *dd)
14777{
14778 int ret = 0;
14779
14780 if (dd->icode != ICODE_RTL_SILICON ||
Dean Luicka4536982016-03-05 08:50:11 -080014781 check_chip_resource(dd, CR_THERM_INIT, NULL))
Mike Marciniszyn77241052015-07-30 15:17:43 -040014782 return ret;
14783
Dean Luick576531f2016-03-05 08:50:01 -080014784 ret = acquire_chip_resource(dd, CR_SBUS, SBUS_TIMEOUT);
14785 if (ret) {
14786 THERM_FAILURE(dd, ret, "Acquire SBus");
14787 return ret;
14788 }
14789
Mike Marciniszyn77241052015-07-30 15:17:43 -040014790 dd_dev_info(dd, "Initializing thermal sensor\n");
Jareer Abdel-Qader4ef98982015-11-06 20:07:00 -050014791 /* Disable polling of thermal readings */
14792 write_csr(dd, ASIC_CFG_THERM_POLL_EN, 0x0);
14793 msleep(100);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014794 /* Thermal Sensor Initialization */
14795 /* Step 1: Reset the Thermal SBus Receiver */
14796 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x0,
14797 RESET_SBUS_RECEIVER, 0);
14798 if (ret) {
14799 THERM_FAILURE(dd, ret, "Bus Reset");
14800 goto done;
14801 }
14802 /* Step 2: Set Reset bit in Thermal block */
14803 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x0,
14804 WRITE_SBUS_RECEIVER, 0x1);
14805 if (ret) {
14806 THERM_FAILURE(dd, ret, "Therm Block Reset");
14807 goto done;
14808 }
14809 /* Step 3: Write clock divider value (100MHz -> 2MHz) */
14810 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x1,
14811 WRITE_SBUS_RECEIVER, 0x32);
14812 if (ret) {
14813 THERM_FAILURE(dd, ret, "Write Clock Div");
14814 goto done;
14815 }
14816 /* Step 4: Select temperature mode */
14817 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x3,
14818 WRITE_SBUS_RECEIVER,
14819 SBUS_THERM_MONITOR_MODE);
14820 if (ret) {
14821 THERM_FAILURE(dd, ret, "Write Mode Sel");
14822 goto done;
14823 }
14824 /* Step 5: De-assert block reset and start conversion */
14825 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x0,
14826 WRITE_SBUS_RECEIVER, 0x2);
14827 if (ret) {
14828 THERM_FAILURE(dd, ret, "Write Reset Deassert");
14829 goto done;
14830 }
14831 /* Step 5.1: Wait for first conversion (21.5ms per spec) */
14832 msleep(22);
14833
14834 /* Enable polling of thermal readings */
14835 write_csr(dd, ASIC_CFG_THERM_POLL_EN, 0x1);
Dean Luicka4536982016-03-05 08:50:11 -080014836
14837 /* Set initialized flag */
14838 ret = acquire_chip_resource(dd, CR_THERM_INIT, 0);
14839 if (ret)
14840 THERM_FAILURE(dd, ret, "Unable to set thermal init flag");
14841
Mike Marciniszyn77241052015-07-30 15:17:43 -040014842done:
Dean Luick576531f2016-03-05 08:50:01 -080014843 release_chip_resource(dd, CR_SBUS);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014844 return ret;
14845}
14846
14847static void handle_temp_err(struct hfi1_devdata *dd)
14848{
14849 struct hfi1_pportdata *ppd = &dd->pport[0];
14850 /*
14851 * Thermal Critical Interrupt
14852 * Put the device into forced freeze mode, take link down to
14853 * offline, and put DC into reset.
14854 */
14855 dd_dev_emerg(dd,
14856 "Critical temperature reached! Forcing device into freeze mode!\n");
14857 dd->flags |= HFI1_FORCED_FREEZE;
Jubin John8638b772016-02-14 20:19:24 -080014858 start_freeze_handling(ppd, FREEZE_SELF | FREEZE_ABORT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014859 /*
14860 * Shut DC down as much and as quickly as possible.
14861 *
14862 * Step 1: Take the link down to OFFLINE. This will cause the
14863 * 8051 to put the Serdes in reset. However, we don't want to
14864 * go through the entire link state machine since we want to
14865 * shutdown ASAP. Furthermore, this is not a graceful shutdown
14866 * but rather an attempt to save the chip.
14867 * Code below is almost the same as quiet_serdes() but avoids
14868 * all the extra work and the sleeps.
14869 */
14870 ppd->driver_link_ready = 0;
14871 ppd->link_enabled = 0;
Harish Chegondibf640092016-03-05 08:49:29 -080014872 set_physical_link_state(dd, (OPA_LINKDOWN_REASON_SMA_DISABLED << 8) |
14873 PLS_OFFLINE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014874 /*
14875 * Step 2: Shutdown LCB and 8051
14876 * After shutdown, do not restore DC_CFG_RESET value.
14877 */
14878 dc_shutdown(dd);
14879}